]> git.ipfire.org Git - people/ms/linux.git/blame - fs/namei.c
do_last(): collapse the call of path_to_nameidata()
[people/ms/linux.git] / fs / namei.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2/*
3 * linux/fs/namei.c
4 *
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 */
7
8/*
9 * Some corrections by tytso.
10 */
11
12/* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
13 * lookup logic.
14 */
15/* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
16 */
17
18#include <linux/init.h>
630d9c47 19#include <linux/export.h>
44696908 20#include <linux/kernel.h>
1da177e4
LT
21#include <linux/slab.h>
22#include <linux/fs.h>
23#include <linux/namei.h>
1da177e4 24#include <linux/pagemap.h>
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
bd7c4b50
AV
1388static inline int handle_mounts(struct path *path, struct nameidata *nd,
1389 struct inode **inode, unsigned int *seqp)
1390{
1391 int ret = follow_managed(path, nd);
1392
1393 if (likely(ret >= 0)) {
1394 *inode = d_backing_inode(path->dentry);
1395 *seqp = 0; /* out of RCU mode, so the value doesn't matter */
1396 }
1397 return ret;
1398}
1399
31e6b01f
NP
1400static int follow_dotdot_rcu(struct nameidata *nd)
1401{
4023bfc9 1402 struct inode *inode = nd->inode;
31e6b01f 1403
9875cf80 1404 while (1) {
adb21d2b
AS
1405 if (path_equal(&nd->path, &nd->root)) {
1406 if (unlikely(nd->flags & LOOKUP_BENEATH))
1407 return -ECHILD;
31e6b01f 1408 break;
adb21d2b 1409 }
31e6b01f
NP
1410 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1411 struct dentry *old = nd->path.dentry;
1412 struct dentry *parent = old->d_parent;
1413 unsigned seq;
1414
4023bfc9 1415 inode = parent->d_inode;
31e6b01f 1416 seq = read_seqcount_begin(&parent->d_seq);
aed434ad
AV
1417 if (unlikely(read_seqcount_retry(&old->d_seq, nd->seq)))
1418 return -ECHILD;
31e6b01f
NP
1419 nd->path.dentry = parent;
1420 nd->seq = seq;
397d425d 1421 if (unlikely(!path_connected(&nd->path)))
2b98149c 1422 return -ECHILD;
31e6b01f 1423 break;
aed434ad
AV
1424 } else {
1425 struct mount *mnt = real_mount(nd->path.mnt);
1426 struct mount *mparent = mnt->mnt_parent;
1427 struct dentry *mountpoint = mnt->mnt_mountpoint;
1428 struct inode *inode2 = mountpoint->d_inode;
1429 unsigned seq = read_seqcount_begin(&mountpoint->d_seq);
1430 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1431 return -ECHILD;
1432 if (&mparent->mnt == nd->path.mnt)
1433 break;
72ba2929
AS
1434 if (unlikely(nd->flags & LOOKUP_NO_XDEV))
1435 return -ECHILD;
aed434ad
AV
1436 /* we know that mountpoint was pinned */
1437 nd->path.dentry = mountpoint;
1438 nd->path.mnt = &mparent->mnt;
1439 inode = inode2;
1440 nd->seq = seq;
31e6b01f 1441 }
31e6b01f 1442 }
aed434ad 1443 while (unlikely(d_mountpoint(nd->path.dentry))) {
b37199e6
AV
1444 struct mount *mounted;
1445 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
aed434ad
AV
1446 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1447 return -ECHILD;
b37199e6
AV
1448 if (!mounted)
1449 break;
72ba2929
AS
1450 if (unlikely(nd->flags & LOOKUP_NO_XDEV))
1451 return -ECHILD;
b37199e6
AV
1452 nd->path.mnt = &mounted->mnt;
1453 nd->path.dentry = mounted->mnt.mnt_root;
4023bfc9 1454 inode = nd->path.dentry->d_inode;
b37199e6 1455 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
b37199e6 1456 }
4023bfc9 1457 nd->inode = inode;
31e6b01f
NP
1458 return 0;
1459}
1460
cc53ce53
DH
1461/*
1462 * Follow down to the covering mount currently visible to userspace. At each
1463 * point, the filesystem owning that dentry may be queried as to whether the
1464 * caller is permitted to proceed or not.
cc53ce53 1465 */
7cc90cc3 1466int follow_down(struct path *path)
cc53ce53
DH
1467{
1468 unsigned managed;
1469 int ret;
1470
6aa7de05 1471 while (managed = READ_ONCE(path->dentry->d_flags),
cc53ce53
DH
1472 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1473 /* Allow the filesystem to manage the transit without i_mutex
1474 * being held.
1475 *
1476 * We indicate to the filesystem if someone is trying to mount
1477 * something here. This gives autofs the chance to deny anyone
1478 * other than its daemon the right to mount on its
1479 * superstructure.
1480 *
1481 * The filesystem may sleep at this point.
1482 */
1483 if (managed & DCACHE_MANAGE_TRANSIT) {
1484 BUG_ON(!path->dentry->d_op);
1485 BUG_ON(!path->dentry->d_op->d_manage);
fb5f51c7 1486 ret = path->dentry->d_op->d_manage(path, false);
cc53ce53
DH
1487 if (ret < 0)
1488 return ret == -EISDIR ? 0 : ret;
1489 }
1490
1491 /* Transit to a mounted filesystem. */
1492 if (managed & DCACHE_MOUNTED) {
1493 struct vfsmount *mounted = lookup_mnt(path);
1494 if (!mounted)
1495 break;
1496 dput(path->dentry);
1497 mntput(path->mnt);
1498 path->mnt = mounted;
1499 path->dentry = dget(mounted->mnt_root);
1500 continue;
1501 }
1502
1503 /* Don't handle automount points here */
1504 break;
1505 }
1506 return 0;
1507}
4d359507 1508EXPORT_SYMBOL(follow_down);
cc53ce53 1509
9875cf80
DH
1510/*
1511 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1512 */
1513static void follow_mount(struct path *path)
1514{
1515 while (d_mountpoint(path->dentry)) {
1516 struct vfsmount *mounted = lookup_mnt(path);
1517 if (!mounted)
1518 break;
1519 dput(path->dentry);
1520 mntput(path->mnt);
1521 path->mnt = mounted;
1522 path->dentry = dget(mounted->mnt_root);
1523 }
1524}
1525
eedf265a
EB
1526static int path_parent_directory(struct path *path)
1527{
1528 struct dentry *old = path->dentry;
1529 /* rare case of legitimate dget_parent()... */
1530 path->dentry = dget_parent(path->dentry);
1531 dput(old);
1532 if (unlikely(!path_connected(path)))
1533 return -ENOENT;
1534 return 0;
1535}
1536
397d425d 1537static int follow_dotdot(struct nameidata *nd)
1da177e4 1538{
adb21d2b
AS
1539 while (1) {
1540 if (path_equal(&nd->path, &nd->root)) {
1541 if (unlikely(nd->flags & LOOKUP_BENEATH))
1542 return -EXDEV;
1da177e4 1543 break;
adb21d2b 1544 }
4ac91378 1545 if (nd->path.dentry != nd->path.mnt->mnt_root) {
eedf265a
EB
1546 int ret = path_parent_directory(&nd->path);
1547 if (ret)
1548 return ret;
1da177e4
LT
1549 break;
1550 }
3088dd70 1551 if (!follow_up(&nd->path))
1da177e4 1552 break;
72ba2929
AS
1553 if (unlikely(nd->flags & LOOKUP_NO_XDEV))
1554 return -EXDEV;
1da177e4 1555 }
79ed0226 1556 follow_mount(&nd->path);
31e6b01f 1557 nd->inode = nd->path.dentry->d_inode;
397d425d 1558 return 0;
1da177e4
LT
1559}
1560
baa03890 1561/*
f4fdace9
OD
1562 * This looks up the name in dcache and possibly revalidates the found dentry.
1563 * NULL is returned if the dentry does not exist in the cache.
baa03890 1564 */
e3c13928
AV
1565static struct dentry *lookup_dcache(const struct qstr *name,
1566 struct dentry *dir,
6c51e513 1567 unsigned int flags)
baa03890 1568{
a89f8337 1569 struct dentry *dentry = d_lookup(dir, name);
bad61189 1570 if (dentry) {
a89f8337
AV
1571 int error = d_revalidate(dentry, flags);
1572 if (unlikely(error <= 0)) {
1573 if (!error)
1574 d_invalidate(dentry);
1575 dput(dentry);
1576 return ERR_PTR(error);
bad61189
MS
1577 }
1578 }
baa03890
NP
1579 return dentry;
1580}
1581
44396f4b 1582/*
a03ece5f
AV
1583 * Parent directory has inode locked exclusive. This is one
1584 * and only case when ->lookup() gets called on non in-lookup
1585 * dentries - as the matter of fact, this only gets called
1586 * when directory is guaranteed to have no in-lookup children
1587 * at all.
44396f4b 1588 */
e3c13928 1589static struct dentry *__lookup_hash(const struct qstr *name,
72bd866a 1590 struct dentry *base, unsigned int flags)
a3255546 1591{
6c51e513 1592 struct dentry *dentry = lookup_dcache(name, base, flags);
a03ece5f
AV
1593 struct dentry *old;
1594 struct inode *dir = base->d_inode;
a3255546 1595
6c51e513 1596 if (dentry)
bad61189 1597 return dentry;
a3255546 1598
a03ece5f
AV
1599 /* Don't create child dentry for a dead directory. */
1600 if (unlikely(IS_DEADDIR(dir)))
1601 return ERR_PTR(-ENOENT);
1602
6c51e513
AV
1603 dentry = d_alloc(base, name);
1604 if (unlikely(!dentry))
1605 return ERR_PTR(-ENOMEM);
1606
a03ece5f
AV
1607 old = dir->i_op->lookup(dir, dentry, flags);
1608 if (unlikely(old)) {
1609 dput(dentry);
1610 dentry = old;
1611 }
1612 return dentry;
a3255546
AV
1613}
1614
e97cdc87 1615static int lookup_fast(struct nameidata *nd,
254cf582
AV
1616 struct path *path, struct inode **inode,
1617 unsigned *seqp)
1da177e4 1618{
4ac91378 1619 struct vfsmount *mnt = nd->path.mnt;
31e6b01f 1620 struct dentry *dentry, *parent = nd->path.dentry;
5a18fff2 1621 int status = 1;
9875cf80 1622
b04f784e
NP
1623 /*
1624 * Rename seqlock is not required here because in the off chance
5d0f49c1
AV
1625 * of a false negative due to a concurrent rename, the caller is
1626 * going to fall back to non-racy lookup.
b04f784e 1627 */
31e6b01f
NP
1628 if (nd->flags & LOOKUP_RCU) {
1629 unsigned seq;
766c4cbf 1630 bool negative;
da53be12 1631 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
5d0f49c1 1632 if (unlikely(!dentry)) {
4675ac39 1633 if (unlazy_walk(nd))
5d0f49c1 1634 return -ECHILD;
e9742b53 1635 return 0;
5d0f49c1 1636 }
5a18fff2 1637
12f8ad4b
LT
1638 /*
1639 * This sequence count validates that the inode matches
1640 * the dentry name information from lookup.
1641 */
63afdfc7 1642 *inode = d_backing_inode(dentry);
766c4cbf 1643 negative = d_is_negative(dentry);
5d0f49c1 1644 if (unlikely(read_seqcount_retry(&dentry->d_seq, seq)))
12f8ad4b
LT
1645 return -ECHILD;
1646
1647 /*
1648 * This sequence count validates that the parent had no
1649 * changes while we did the lookup of the dentry above.
1650 *
1651 * The memory barrier in read_seqcount_begin of child is
1652 * enough, we can use __read_seqcount_retry here.
1653 */
5d0f49c1 1654 if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq)))
31e6b01f 1655 return -ECHILD;
5a18fff2 1656
254cf582 1657 *seqp = seq;
a89f8337 1658 status = d_revalidate(dentry, nd->flags);
209a7fb2 1659 if (likely(status > 0)) {
5d0f49c1
AV
1660 /*
1661 * Note: do negative dentry check after revalidation in
1662 * case that drops it.
1663 */
1664 if (unlikely(negative))
1665 return -ENOENT;
1666 path->mnt = mnt;
1667 path->dentry = dentry;
1668 if (likely(__follow_mount_rcu(nd, path, inode, seqp)))
e9742b53 1669 return 1;
24643087 1670 }
4675ac39 1671 if (unlazy_child(nd, dentry, seq))
209a7fb2
AV
1672 return -ECHILD;
1673 if (unlikely(status == -ECHILD))
1674 /* we'd been told to redo it in non-rcu mode */
1675 status = d_revalidate(dentry, nd->flags);
5a18fff2 1676 } else {
e97cdc87 1677 dentry = __d_lookup(parent, &nd->last);
5d0f49c1 1678 if (unlikely(!dentry))
e9742b53 1679 return 0;
a89f8337 1680 status = d_revalidate(dentry, nd->flags);
9875cf80 1681 }
5a18fff2 1682 if (unlikely(status <= 0)) {
e9742b53 1683 if (!status)
5d0f49c1 1684 d_invalidate(dentry);
5542aa2f 1685 dput(dentry);
5d0f49c1 1686 return status;
24643087 1687 }
5d0f49c1 1688
9875cf80
DH
1689 path->mnt = mnt;
1690 path->dentry = dentry;
bd7c4b50 1691 return handle_mounts(path, nd, inode, seqp);
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{
31d66bcd
AV
1841 if (!(flags & WALK_MORE) && nd->depth)
1842 put_link(nd);
8f64fb1c
AV
1843 if (likely(!d_is_symlink(path->dentry)) ||
1844 !(flags & WALK_FOLLOW || nd->flags & LOOKUP_FOLLOW)) {
1845 /* not a symlink or should not follow */
1846 path_to_nameidata(path, nd);
1847 nd->inode = inode;
1848 nd->seq = seq;
d63ff28f 1849 return 0;
8f64fb1c 1850 }
a7f77542
AV
1851 /* make sure that d_is_symlink above matches inode */
1852 if (nd->flags & LOOKUP_RCU) {
8f64fb1c 1853 if (read_seqcount_retry(&path->dentry->d_seq, seq))
a7f77542
AV
1854 return -ECHILD;
1855 }
8f64fb1c 1856 return pick_link(nd, path, inode, seq);
3ddcd056
LT
1857}
1858
4693a547 1859static int walk_component(struct nameidata *nd, int flags)
ce57dfc1 1860{
caa85634 1861 struct path path;
ce57dfc1 1862 struct inode *inode;
254cf582 1863 unsigned seq;
ce57dfc1
AV
1864 int err;
1865 /*
1866 * "." and ".." are special - ".." especially so because it has
1867 * to be able to know about the current root directory and
1868 * parent relationships.
1869 */
4693a547
AV
1870 if (unlikely(nd->last_type != LAST_NORM)) {
1871 err = handle_dots(nd, nd->last_type);
1c4ff1a8 1872 if (!(flags & WALK_MORE) && nd->depth)
4693a547
AV
1873 put_link(nd);
1874 return err;
1875 }
254cf582 1876 err = lookup_fast(nd, &path, &inode, &seq);
e9742b53 1877 if (unlikely(err <= 0)) {
697f514d 1878 if (err < 0)
f0a9ba70 1879 return err;
e3c13928
AV
1880 path.dentry = lookup_slow(&nd->last, nd->path.dentry,
1881 nd->flags);
1882 if (IS_ERR(path.dentry))
1883 return PTR_ERR(path.dentry);
7500c38a 1884
e3c13928 1885 path.mnt = nd->path.mnt;
bd7c4b50 1886 err = handle_mounts(&path, nd, &inode, &seq);
e3c13928 1887 if (unlikely(err < 0))
f0a9ba70 1888 return err;
ce57dfc1 1889 }
697f514d 1890
8f64fb1c 1891 return step_into(nd, &path, flags, inode, seq);
ce57dfc1
AV
1892}
1893
bfcfaa77
LT
1894/*
1895 * We can do the critical dentry name comparison and hashing
1896 * operations one word at a time, but we are limited to:
1897 *
1898 * - Architectures with fast unaligned word accesses. We could
1899 * do a "get_unaligned()" if this helps and is sufficiently
1900 * fast.
1901 *
bfcfaa77
LT
1902 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1903 * do not trap on the (extremely unlikely) case of a page
1904 * crossing operation.
1905 *
1906 * - Furthermore, we need an efficient 64-bit compile for the
1907 * 64-bit case in order to generate the "number of bytes in
1908 * the final mask". Again, that could be replaced with a
1909 * efficient population count instruction or similar.
1910 */
1911#ifdef CONFIG_DCACHE_WORD_ACCESS
1912
f68e556e 1913#include <asm/word-at-a-time.h>
bfcfaa77 1914
468a9428 1915#ifdef HASH_MIX
bfcfaa77 1916
468a9428 1917/* Architecture provides HASH_MIX and fold_hash() in <asm/hash.h> */
bfcfaa77 1918
468a9428 1919#elif defined(CONFIG_64BIT)
0fed3ac8 1920/*
2a18da7a
GS
1921 * Register pressure in the mixing function is an issue, particularly
1922 * on 32-bit x86, but almost any function requires one state value and
1923 * one temporary. Instead, use a function designed for two state values
1924 * and no temporaries.
1925 *
1926 * This function cannot create a collision in only two iterations, so
1927 * we have two iterations to achieve avalanche. In those two iterations,
1928 * we have six layers of mixing, which is enough to spread one bit's
1929 * influence out to 2^6 = 64 state bits.
1930 *
1931 * Rotate constants are scored by considering either 64 one-bit input
1932 * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the
1933 * probability of that delta causing a change to each of the 128 output
1934 * bits, using a sample of random initial states.
1935 *
1936 * The Shannon entropy of the computed probabilities is then summed
1937 * to produce a score. Ideally, any input change has a 50% chance of
1938 * toggling any given output bit.
1939 *
1940 * Mixing scores (in bits) for (12,45):
1941 * Input delta: 1-bit 2-bit
1942 * 1 round: 713.3 42542.6
1943 * 2 rounds: 2753.7 140389.8
1944 * 3 rounds: 5954.1 233458.2
1945 * 4 rounds: 7862.6 256672.2
1946 * Perfect: 8192 258048
1947 * (64*128) (64*63/2 * 128)
0fed3ac8 1948 */
2a18da7a
GS
1949#define HASH_MIX(x, y, a) \
1950 ( x ^= (a), \
1951 y ^= x, x = rol64(x,12),\
1952 x += y, y = rol64(y,45),\
1953 y *= 9 )
bfcfaa77 1954
0fed3ac8 1955/*
2a18da7a
GS
1956 * Fold two longs into one 32-bit hash value. This must be fast, but
1957 * latency isn't quite as critical, as there is a fair bit of additional
1958 * work done before the hash value is used.
0fed3ac8 1959 */
2a18da7a 1960static inline unsigned int fold_hash(unsigned long x, unsigned long y)
0fed3ac8 1961{
2a18da7a
GS
1962 y ^= x * GOLDEN_RATIO_64;
1963 y *= GOLDEN_RATIO_64;
1964 return y >> 32;
0fed3ac8
GS
1965}
1966
bfcfaa77
LT
1967#else /* 32-bit case */
1968
2a18da7a
GS
1969/*
1970 * Mixing scores (in bits) for (7,20):
1971 * Input delta: 1-bit 2-bit
1972 * 1 round: 330.3 9201.6
1973 * 2 rounds: 1246.4 25475.4
1974 * 3 rounds: 1907.1 31295.1
1975 * 4 rounds: 2042.3 31718.6
1976 * Perfect: 2048 31744
1977 * (32*64) (32*31/2 * 64)
1978 */
1979#define HASH_MIX(x, y, a) \
1980 ( x ^= (a), \
1981 y ^= x, x = rol32(x, 7),\
1982 x += y, y = rol32(y,20),\
1983 y *= 9 )
bfcfaa77 1984
2a18da7a 1985static inline unsigned int fold_hash(unsigned long x, unsigned long y)
0fed3ac8 1986{
2a18da7a
GS
1987 /* Use arch-optimized multiply if one exists */
1988 return __hash_32(y ^ __hash_32(x));
0fed3ac8
GS
1989}
1990
bfcfaa77
LT
1991#endif
1992
2a18da7a
GS
1993/*
1994 * Return the hash of a string of known length. This is carfully
1995 * designed to match hash_name(), which is the more critical function.
1996 * In particular, we must end by hashing a final word containing 0..7
1997 * payload bytes, to match the way that hash_name() iterates until it
1998 * finds the delimiter after the name.
1999 */
8387ff25 2000unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
bfcfaa77 2001{
8387ff25 2002 unsigned long a, x = 0, y = (unsigned long)salt;
bfcfaa77
LT
2003
2004 for (;;) {
fcfd2fbf
GS
2005 if (!len)
2006 goto done;
e419b4cc 2007 a = load_unaligned_zeropad(name);
bfcfaa77
LT
2008 if (len < sizeof(unsigned long))
2009 break;
2a18da7a 2010 HASH_MIX(x, y, a);
bfcfaa77
LT
2011 name += sizeof(unsigned long);
2012 len -= sizeof(unsigned long);
bfcfaa77 2013 }
2a18da7a 2014 x ^= a & bytemask_from_count(len);
bfcfaa77 2015done:
2a18da7a 2016 return fold_hash(x, y);
bfcfaa77
LT
2017}
2018EXPORT_SYMBOL(full_name_hash);
2019
fcfd2fbf 2020/* Return the "hash_len" (hash and length) of a null-terminated string */
8387ff25 2021u64 hashlen_string(const void *salt, const char *name)
fcfd2fbf 2022{
8387ff25
LT
2023 unsigned long a = 0, x = 0, y = (unsigned long)salt;
2024 unsigned long adata, mask, len;
fcfd2fbf
GS
2025 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
2026
8387ff25
LT
2027 len = 0;
2028 goto inside;
2029
fcfd2fbf 2030 do {
2a18da7a 2031 HASH_MIX(x, y, a);
fcfd2fbf 2032 len += sizeof(unsigned long);
8387ff25 2033inside:
fcfd2fbf
GS
2034 a = load_unaligned_zeropad(name+len);
2035 } while (!has_zero(a, &adata, &constants));
2036
2037 adata = prep_zero_mask(a, adata, &constants);
2038 mask = create_zero_mask(adata);
2a18da7a 2039 x ^= a & zero_bytemask(mask);
fcfd2fbf 2040
2a18da7a 2041 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
fcfd2fbf
GS
2042}
2043EXPORT_SYMBOL(hashlen_string);
2044
bfcfaa77
LT
2045/*
2046 * Calculate the length and hash of the path component, and
d6bb3e90 2047 * return the "hash_len" as the result.
bfcfaa77 2048 */
8387ff25 2049static inline u64 hash_name(const void *salt, const char *name)
bfcfaa77 2050{
8387ff25
LT
2051 unsigned long a = 0, b, x = 0, y = (unsigned long)salt;
2052 unsigned long adata, bdata, mask, len;
36126f8f 2053 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
bfcfaa77 2054
8387ff25
LT
2055 len = 0;
2056 goto inside;
2057
bfcfaa77 2058 do {
2a18da7a 2059 HASH_MIX(x, y, a);
bfcfaa77 2060 len += sizeof(unsigned long);
8387ff25 2061inside:
e419b4cc 2062 a = load_unaligned_zeropad(name+len);
36126f8f
LT
2063 b = a ^ REPEAT_BYTE('/');
2064 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
2065
2066 adata = prep_zero_mask(a, adata, &constants);
2067 bdata = prep_zero_mask(b, bdata, &constants);
36126f8f 2068 mask = create_zero_mask(adata | bdata);
2a18da7a 2069 x ^= a & zero_bytemask(mask);
36126f8f 2070
2a18da7a 2071 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
bfcfaa77
LT
2072}
2073
2a18da7a 2074#else /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */
bfcfaa77 2075
fcfd2fbf 2076/* Return the hash of a string of known length */
8387ff25 2077unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
0145acc2 2078{
8387ff25 2079 unsigned long hash = init_name_hash(salt);
0145acc2 2080 while (len--)
fcfd2fbf 2081 hash = partial_name_hash((unsigned char)*name++, hash);
0145acc2
LT
2082 return end_name_hash(hash);
2083}
ae942ae7 2084EXPORT_SYMBOL(full_name_hash);
0145acc2 2085
fcfd2fbf 2086/* Return the "hash_len" (hash and length) of a null-terminated string */
8387ff25 2087u64 hashlen_string(const void *salt, const char *name)
fcfd2fbf 2088{
8387ff25 2089 unsigned long hash = init_name_hash(salt);
fcfd2fbf
GS
2090 unsigned long len = 0, c;
2091
2092 c = (unsigned char)*name;
e0ab7af9 2093 while (c) {
fcfd2fbf
GS
2094 len++;
2095 hash = partial_name_hash(c, hash);
2096 c = (unsigned char)name[len];
e0ab7af9 2097 }
fcfd2fbf
GS
2098 return hashlen_create(end_name_hash(hash), len);
2099}
f2a031b6 2100EXPORT_SYMBOL(hashlen_string);
fcfd2fbf 2101
200e9ef7
LT
2102/*
2103 * We know there's a real path component here of at least
2104 * one character.
2105 */
8387ff25 2106static inline u64 hash_name(const void *salt, const char *name)
200e9ef7 2107{
8387ff25 2108 unsigned long hash = init_name_hash(salt);
200e9ef7
LT
2109 unsigned long len = 0, c;
2110
2111 c = (unsigned char)*name;
2112 do {
2113 len++;
2114 hash = partial_name_hash(c, hash);
2115 c = (unsigned char)name[len];
2116 } while (c && c != '/');
d6bb3e90 2117 return hashlen_create(end_name_hash(hash), len);
200e9ef7
LT
2118}
2119
bfcfaa77
LT
2120#endif
2121
1da177e4
LT
2122/*
2123 * Name resolution.
ea3834d9
PM
2124 * This is the basic name resolution function, turning a pathname into
2125 * the final dentry. We expect 'base' to be positive and a directory.
1da177e4 2126 *
ea3834d9
PM
2127 * Returns 0 and nd will have valid dentry and mnt on success.
2128 * Returns error and drops reference to input namei data on failure.
1da177e4 2129 */
6de88d72 2130static int link_path_walk(const char *name, struct nameidata *nd)
1da177e4 2131{
1da177e4 2132 int err;
32cd7468 2133
9b5858e9
AV
2134 if (IS_ERR(name))
2135 return PTR_ERR(name);
1da177e4
LT
2136 while (*name=='/')
2137 name++;
2138 if (!*name)
9e18f10a 2139 return 0;
1da177e4 2140
1da177e4
LT
2141 /* At this point we know we have a real path component. */
2142 for(;;) {
d6bb3e90 2143 u64 hash_len;
fe479a58 2144 int type;
1da177e4 2145
52094c8a 2146 err = may_lookup(nd);
2a18da7a 2147 if (err)
3595e234 2148 return err;
1da177e4 2149
8387ff25 2150 hash_len = hash_name(nd->path.dentry, name);
1da177e4 2151
fe479a58 2152 type = LAST_NORM;
d6bb3e90 2153 if (name[0] == '.') switch (hashlen_len(hash_len)) {
fe479a58 2154 case 2:
200e9ef7 2155 if (name[1] == '.') {
fe479a58 2156 type = LAST_DOTDOT;
16c2cd71
AV
2157 nd->flags |= LOOKUP_JUMPED;
2158 }
fe479a58
AV
2159 break;
2160 case 1:
2161 type = LAST_DOT;
2162 }
5a202bcd
AV
2163 if (likely(type == LAST_NORM)) {
2164 struct dentry *parent = nd->path.dentry;
16c2cd71 2165 nd->flags &= ~LOOKUP_JUMPED;
5a202bcd 2166 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
a060dc50 2167 struct qstr this = { { .hash_len = hash_len }, .name = name };
da53be12 2168 err = parent->d_op->d_hash(parent, &this);
5a202bcd 2169 if (err < 0)
3595e234 2170 return err;
d6bb3e90
LT
2171 hash_len = this.hash_len;
2172 name = this.name;
5a202bcd
AV
2173 }
2174 }
fe479a58 2175
d6bb3e90
LT
2176 nd->last.hash_len = hash_len;
2177 nd->last.name = name;
5f4a6a69
AV
2178 nd->last_type = type;
2179
d6bb3e90
LT
2180 name += hashlen_len(hash_len);
2181 if (!*name)
bdf6cbf1 2182 goto OK;
200e9ef7
LT
2183 /*
2184 * If it wasn't NUL, we know it was '/'. Skip that
2185 * slash, and continue until no more slashes.
2186 */
2187 do {
d6bb3e90
LT
2188 name++;
2189 } while (unlikely(*name == '/'));
8620c238
AV
2190 if (unlikely(!*name)) {
2191OK:
368ee9ba 2192 /* pathname body, done */
8620c238
AV
2193 if (!nd->depth)
2194 return 0;
2195 name = nd->stack[nd->depth - 1].name;
368ee9ba 2196 /* trailing symlink, done */
8620c238
AV
2197 if (!name)
2198 return 0;
2199 /* last component of nested symlink */
8f64fb1c 2200 err = walk_component(nd, WALK_FOLLOW);
1c4ff1a8
AV
2201 } else {
2202 /* not the last component */
8f64fb1c 2203 err = walk_component(nd, WALK_FOLLOW | WALK_MORE);
8620c238 2204 }
ce57dfc1 2205 if (err < 0)
3595e234 2206 return err;
1da177e4 2207
ce57dfc1 2208 if (err) {
626de996 2209 const char *s = get_link(nd);
5a460275 2210
a1c83681 2211 if (IS_ERR(s))
3595e234 2212 return PTR_ERR(s);
d40bcc09
AV
2213 err = 0;
2214 if (unlikely(!s)) {
2215 /* jumped */
b9ff4429 2216 put_link(nd);
d40bcc09 2217 } else {
fab51e8a
AV
2218 nd->stack[nd->depth - 1].name = name;
2219 name = s;
2220 continue;
d40bcc09 2221 }
31e6b01f 2222 }
97242f99
AV
2223 if (unlikely(!d_can_lookup(nd->path.dentry))) {
2224 if (nd->flags & LOOKUP_RCU) {
4675ac39 2225 if (unlazy_walk(nd))
97242f99
AV
2226 return -ECHILD;
2227 }
3595e234 2228 return -ENOTDIR;
97242f99 2229 }
1da177e4 2230 }
1da177e4
LT
2231}
2232
edc2b1da 2233/* must be paired with terminate_walk() */
c8a53ee5 2234static const char *path_init(struct nameidata *nd, unsigned flags)
31e6b01f 2235{
740a1678 2236 int error;
c8a53ee5 2237 const char *s = nd->name->name;
31e6b01f 2238
c0eb027e
LT
2239 if (!*s)
2240 flags &= ~LOOKUP_RCU;
edc2b1da
AV
2241 if (flags & LOOKUP_RCU)
2242 rcu_read_lock();
c0eb027e 2243
31e6b01f 2244 nd->last_type = LAST_ROOT; /* if there are only slashes... */
980f3ea2 2245 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
31e6b01f 2246 nd->depth = 0;
ab87f9a5
AS
2247
2248 nd->m_seq = __read_seqcount_begin(&mount_lock.seqcount);
2249 nd->r_seq = __read_seqcount_begin(&rename_lock.seqcount);
2250 smp_rmb();
2251
5b6ca027 2252 if (flags & LOOKUP_ROOT) {
b18825a7
DH
2253 struct dentry *root = nd->root.dentry;
2254 struct inode *inode = root->d_inode;
93893862
AV
2255 if (*s && unlikely(!d_can_lookup(root)))
2256 return ERR_PTR(-ENOTDIR);
5b6ca027
AV
2257 nd->path = nd->root;
2258 nd->inode = inode;
2259 if (flags & LOOKUP_RCU) {
ab87f9a5 2260 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
8f47a016 2261 nd->root_seq = nd->seq;
5b6ca027
AV
2262 } else {
2263 path_get(&nd->path);
2264 }
368ee9ba 2265 return s;
5b6ca027
AV
2266 }
2267
31e6b01f 2268 nd->root.mnt = NULL;
248fb5b9
AV
2269 nd->path.mnt = NULL;
2270 nd->path.dentry = NULL;
31e6b01f 2271
8db52c7e
AS
2272 /* Absolute pathname -- fetch the root (LOOKUP_IN_ROOT uses nd->dfd). */
2273 if (*s == '/' && !(flags & LOOKUP_IN_ROOT)) {
740a1678
AS
2274 error = nd_jump_root(nd);
2275 if (unlikely(error))
2276 return ERR_PTR(error);
2277 return s;
8db52c7e
AS
2278 }
2279
2280 /* Relative pathname -- get the starting-point it is relative to. */
2281 if (nd->dfd == AT_FDCWD) {
e41f7d4e
AV
2282 if (flags & LOOKUP_RCU) {
2283 struct fs_struct *fs = current->fs;
2284 unsigned seq;
31e6b01f 2285
e41f7d4e
AV
2286 do {
2287 seq = read_seqcount_begin(&fs->seq);
2288 nd->path = fs->pwd;
ef55d917 2289 nd->inode = nd->path.dentry->d_inode;
e41f7d4e
AV
2290 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
2291 } while (read_seqcount_retry(&fs->seq, seq));
2292 } else {
2293 get_fs_pwd(current->fs, &nd->path);
ef55d917 2294 nd->inode = nd->path.dentry->d_inode;
e41f7d4e 2295 }
31e6b01f 2296 } else {
582aa64a 2297 /* Caller must check execute permissions on the starting path component */
c8a53ee5 2298 struct fd f = fdget_raw(nd->dfd);
31e6b01f
NP
2299 struct dentry *dentry;
2300
2903ff01 2301 if (!f.file)
368ee9ba 2302 return ERR_PTR(-EBADF);
31e6b01f 2303
2903ff01 2304 dentry = f.file->f_path.dentry;
31e6b01f 2305
edc2b1da
AV
2306 if (*s && unlikely(!d_can_lookup(dentry))) {
2307 fdput(f);
2308 return ERR_PTR(-ENOTDIR);
f52e0c11 2309 }
31e6b01f 2310
2903ff01 2311 nd->path = f.file->f_path;
e41f7d4e 2312 if (flags & LOOKUP_RCU) {
34a26b99
AV
2313 nd->inode = nd->path.dentry->d_inode;
2314 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
e41f7d4e 2315 } else {
2903ff01 2316 path_get(&nd->path);
34a26b99 2317 nd->inode = nd->path.dentry->d_inode;
e41f7d4e 2318 }
34a26b99 2319 fdput(f);
31e6b01f 2320 }
8db52c7e 2321
adb21d2b
AS
2322 /* For scoped-lookups we need to set the root to the dirfd as well. */
2323 if (flags & LOOKUP_IS_SCOPED) {
2324 nd->root = nd->path;
2325 if (flags & LOOKUP_RCU) {
2326 nd->root_seq = nd->seq;
2327 } else {
2328 path_get(&nd->root);
2329 nd->flags |= LOOKUP_ROOT_GRABBED;
2330 }
2331 }
2332 return s;
9b4a9b14
AV
2333}
2334
3bdba28b 2335static const char *trailing_symlink(struct nameidata *nd)
95fa25d9
AV
2336{
2337 const char *s;
fec2fa24 2338 int error = may_follow_link(nd);
deb106c6 2339 if (unlikely(error))
3bdba28b 2340 return ERR_PTR(error);
95fa25d9 2341 nd->flags |= LOOKUP_PARENT;
fab51e8a 2342 nd->stack[0].name = NULL;
3b2e7f75 2343 s = get_link(nd);
deb106c6 2344 return s ? s : "";
95fa25d9
AV
2345}
2346
caa85634 2347static inline int lookup_last(struct nameidata *nd)
bd92d7fe
AV
2348{
2349 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2350 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2351
2352 nd->flags &= ~LOOKUP_PARENT;
1c4ff1a8 2353 return walk_component(nd, 0);
bd92d7fe
AV
2354}
2355
4f757f3c
AV
2356static int handle_lookup_down(struct nameidata *nd)
2357{
2358 struct path path = nd->path;
2359 struct inode *inode = nd->inode;
2360 unsigned seq = nd->seq;
2361 int err;
2362
2363 if (nd->flags & LOOKUP_RCU) {
2364 /*
2365 * don't bother with unlazy_walk on failure - we are
2366 * at the very beginning of walk, so we lose nothing
2367 * if we simply redo everything in non-RCU mode
2368 */
2369 if (unlikely(!__follow_mount_rcu(nd, &path, &inode, &seq)))
2370 return -ECHILD;
2371 } else {
2372 dget(path.dentry);
bd7c4b50 2373 err = handle_mounts(&path, nd, &inode, &seq);
4f757f3c
AV
2374 if (unlikely(err < 0))
2375 return err;
4f757f3c
AV
2376 }
2377 path_to_nameidata(&path, nd);
2378 nd->inode = inode;
2379 nd->seq = seq;
2380 return 0;
2381}
2382
9b4a9b14 2383/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
c8a53ee5 2384static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path)
9b4a9b14 2385{
c8a53ee5 2386 const char *s = path_init(nd, flags);
bd92d7fe 2387 int err;
31e6b01f 2388
9b5858e9 2389 if (unlikely(flags & LOOKUP_DOWN) && !IS_ERR(s)) {
4f757f3c 2390 err = handle_lookup_down(nd);
5f336e72
AV
2391 if (unlikely(err < 0))
2392 s = ERR_PTR(err);
4f757f3c
AV
2393 }
2394
3bdba28b
AV
2395 while (!(err = link_path_walk(s, nd))
2396 && ((err = lookup_last(nd)) > 0)) {
2397 s = trailing_symlink(nd);
bd92d7fe 2398 }
9f1fafee
AV
2399 if (!err)
2400 err = complete_walk(nd);
bd92d7fe 2401
deb106c6
AV
2402 if (!err && nd->flags & LOOKUP_DIRECTORY)
2403 if (!d_can_lookup(nd->path.dentry))
bd23a539 2404 err = -ENOTDIR;
625b6d10
AV
2405 if (!err) {
2406 *path = nd->path;
2407 nd->path.mnt = NULL;
2408 nd->path.dentry = NULL;
2409 }
2410 terminate_walk(nd);
bd92d7fe 2411 return err;
ee0827cd 2412}
31e6b01f 2413
31d921c7
DH
2414int filename_lookup(int dfd, struct filename *name, unsigned flags,
2415 struct path *path, struct path *root)
ee0827cd 2416{
894bc8c4 2417 int retval;
9883d185 2418 struct nameidata nd;
abc9f5be
AV
2419 if (IS_ERR(name))
2420 return PTR_ERR(name);
9ad1aaa6
AV
2421 if (unlikely(root)) {
2422 nd.root = *root;
2423 flags |= LOOKUP_ROOT;
2424 }
9883d185 2425 set_nameidata(&nd, dfd, name);
c8a53ee5 2426 retval = path_lookupat(&nd, flags | LOOKUP_RCU, path);
ee0827cd 2427 if (unlikely(retval == -ECHILD))
c8a53ee5 2428 retval = path_lookupat(&nd, flags, path);
ee0827cd 2429 if (unlikely(retval == -ESTALE))
c8a53ee5 2430 retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path);
31e6b01f 2431
f78570dd 2432 if (likely(!retval))
ff0ebee2 2433 audit_inode(name, path->dentry, 0);
9883d185 2434 restore_nameidata();
e4bd1c1a 2435 putname(name);
170aa3d0 2436 return retval;
1da177e4
LT
2437}
2438
8bcb77fa 2439/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
c8a53ee5 2440static int path_parentat(struct nameidata *nd, unsigned flags,
391172c4 2441 struct path *parent)
8bcb77fa 2442{
c8a53ee5 2443 const char *s = path_init(nd, flags);
9b5858e9 2444 int err = link_path_walk(s, nd);
8bcb77fa
AV
2445 if (!err)
2446 err = complete_walk(nd);
391172c4
AV
2447 if (!err) {
2448 *parent = nd->path;
2449 nd->path.mnt = NULL;
2450 nd->path.dentry = NULL;
2451 }
2452 terminate_walk(nd);
8bcb77fa
AV
2453 return err;
2454}
2455
5c31b6ce 2456static struct filename *filename_parentat(int dfd, struct filename *name,
391172c4
AV
2457 unsigned int flags, struct path *parent,
2458 struct qstr *last, int *type)
8bcb77fa
AV
2459{
2460 int retval;
9883d185 2461 struct nameidata nd;
8bcb77fa 2462
5c31b6ce
AV
2463 if (IS_ERR(name))
2464 return name;
9883d185 2465 set_nameidata(&nd, dfd, name);
c8a53ee5 2466 retval = path_parentat(&nd, flags | LOOKUP_RCU, parent);
8bcb77fa 2467 if (unlikely(retval == -ECHILD))
c8a53ee5 2468 retval = path_parentat(&nd, flags, parent);
8bcb77fa 2469 if (unlikely(retval == -ESTALE))
c8a53ee5 2470 retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent);
391172c4
AV
2471 if (likely(!retval)) {
2472 *last = nd.last;
2473 *type = nd.last_type;
c9b07eab 2474 audit_inode(name, parent->dentry, AUDIT_INODE_PARENT);
5c31b6ce
AV
2475 } else {
2476 putname(name);
2477 name = ERR_PTR(retval);
391172c4 2478 }
9883d185 2479 restore_nameidata();
5c31b6ce 2480 return name;
8bcb77fa
AV
2481}
2482
79714f72
AV
2483/* does lookup, returns the object with parent locked */
2484struct dentry *kern_path_locked(const char *name, struct path *path)
5590ff0d 2485{
5c31b6ce
AV
2486 struct filename *filename;
2487 struct dentry *d;
391172c4
AV
2488 struct qstr last;
2489 int type;
51689104 2490
5c31b6ce
AV
2491 filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path,
2492 &last, &type);
51689104
PM
2493 if (IS_ERR(filename))
2494 return ERR_CAST(filename);
5c31b6ce 2495 if (unlikely(type != LAST_NORM)) {
391172c4 2496 path_put(path);
5c31b6ce
AV
2497 putname(filename);
2498 return ERR_PTR(-EINVAL);
79714f72 2499 }
5955102c 2500 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
391172c4 2501 d = __lookup_hash(&last, path->dentry, 0);
79714f72 2502 if (IS_ERR(d)) {
5955102c 2503 inode_unlock(path->dentry->d_inode);
391172c4 2504 path_put(path);
79714f72 2505 }
51689104 2506 putname(filename);
79714f72 2507 return d;
5590ff0d
UD
2508}
2509
d1811465
AV
2510int kern_path(const char *name, unsigned int flags, struct path *path)
2511{
abc9f5be
AV
2512 return filename_lookup(AT_FDCWD, getname_kernel(name),
2513 flags, path, NULL);
d1811465 2514}
4d359507 2515EXPORT_SYMBOL(kern_path);
d1811465 2516
16f18200
JJS
2517/**
2518 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2519 * @dentry: pointer to dentry of the base directory
2520 * @mnt: pointer to vfs mount of the base directory
2521 * @name: pointer to file name
2522 * @flags: lookup flags
e0a01249 2523 * @path: pointer to struct path to fill
16f18200
JJS
2524 */
2525int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2526 const char *name, unsigned int flags,
e0a01249 2527 struct path *path)
16f18200 2528{
9ad1aaa6 2529 struct path root = {.mnt = mnt, .dentry = dentry};
9ad1aaa6 2530 /* the first argument of filename_lookup() is ignored with root */
abc9f5be
AV
2531 return filename_lookup(AT_FDCWD, getname_kernel(name),
2532 flags , path, &root);
16f18200 2533}
4d359507 2534EXPORT_SYMBOL(vfs_path_lookup);
16f18200 2535
3c95f0dc
AV
2536static int lookup_one_len_common(const char *name, struct dentry *base,
2537 int len, struct qstr *this)
057f6c01 2538{
3c95f0dc
AV
2539 this->name = name;
2540 this->len = len;
2541 this->hash = full_name_hash(base, name, len);
6a96ba54 2542 if (!len)
3c95f0dc 2543 return -EACCES;
6a96ba54 2544
21d8a15a
AV
2545 if (unlikely(name[0] == '.')) {
2546 if (len < 2 || (len == 2 && name[1] == '.'))
3c95f0dc 2547 return -EACCES;
21d8a15a
AV
2548 }
2549
6a96ba54 2550 while (len--) {
3c95f0dc 2551 unsigned int c = *(const unsigned char *)name++;
6a96ba54 2552 if (c == '/' || c == '\0')
3c95f0dc 2553 return -EACCES;
6a96ba54 2554 }
5a202bcd
AV
2555 /*
2556 * See if the low-level filesystem might want
2557 * to use its own hash..
2558 */
2559 if (base->d_flags & DCACHE_OP_HASH) {
3c95f0dc 2560 int err = base->d_op->d_hash(base, this);
5a202bcd 2561 if (err < 0)
3c95f0dc 2562 return err;
5a202bcd 2563 }
eead1911 2564
3c95f0dc
AV
2565 return inode_permission(base->d_inode, MAY_EXEC);
2566}
2567
0da0b7fd
DH
2568/**
2569 * try_lookup_one_len - filesystem helper to lookup single pathname component
2570 * @name: pathname component to lookup
2571 * @base: base directory to lookup from
2572 * @len: maximum length @len should be interpreted to
2573 *
2574 * Look up a dentry by name in the dcache, returning NULL if it does not
2575 * currently exist. The function does not try to create a dentry.
2576 *
2577 * Note that this routine is purely a helper for filesystem usage and should
2578 * not be called by generic code.
2579 *
2580 * The caller must hold base->i_mutex.
2581 */
2582struct dentry *try_lookup_one_len(const char *name, struct dentry *base, int len)
2583{
2584 struct qstr this;
2585 int err;
2586
2587 WARN_ON_ONCE(!inode_is_locked(base->d_inode));
2588
2589 err = lookup_one_len_common(name, base, len, &this);
2590 if (err)
2591 return ERR_PTR(err);
2592
2593 return lookup_dcache(&this, base, 0);
2594}
2595EXPORT_SYMBOL(try_lookup_one_len);
2596
3c95f0dc
AV
2597/**
2598 * lookup_one_len - filesystem helper to lookup single pathname component
2599 * @name: pathname component to lookup
2600 * @base: base directory to lookup from
2601 * @len: maximum length @len should be interpreted to
2602 *
2603 * Note that this routine is purely a helper for filesystem usage and should
2604 * not be called by generic code.
2605 *
2606 * The caller must hold base->i_mutex.
2607 */
2608struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2609{
8613a209 2610 struct dentry *dentry;
3c95f0dc
AV
2611 struct qstr this;
2612 int err;
2613
2614 WARN_ON_ONCE(!inode_is_locked(base->d_inode));
2615
2616 err = lookup_one_len_common(name, base, len, &this);
cda309de
MS
2617 if (err)
2618 return ERR_PTR(err);
2619
8613a209
AV
2620 dentry = lookup_dcache(&this, base, 0);
2621 return dentry ? dentry : __lookup_slow(&this, base, 0);
057f6c01 2622}
4d359507 2623EXPORT_SYMBOL(lookup_one_len);
057f6c01 2624
bbddca8e
N
2625/**
2626 * lookup_one_len_unlocked - filesystem helper to lookup single pathname component
2627 * @name: pathname component to lookup
2628 * @base: base directory to lookup from
2629 * @len: maximum length @len should be interpreted to
2630 *
2631 * Note that this routine is purely a helper for filesystem usage and should
2632 * not be called by generic code.
2633 *
2634 * Unlike lookup_one_len, it should be called without the parent
2635 * i_mutex held, and will take the i_mutex itself if necessary.
2636 */
2637struct dentry *lookup_one_len_unlocked(const char *name,
2638 struct dentry *base, int len)
2639{
2640 struct qstr this;
bbddca8e 2641 int err;
20d00ee8 2642 struct dentry *ret;
bbddca8e 2643
3c95f0dc 2644 err = lookup_one_len_common(name, base, len, &this);
bbddca8e
N
2645 if (err)
2646 return ERR_PTR(err);
2647
20d00ee8
LT
2648 ret = lookup_dcache(&this, base, 0);
2649 if (!ret)
2650 ret = lookup_slow(&this, base, 0);
2651 return ret;
bbddca8e
N
2652}
2653EXPORT_SYMBOL(lookup_one_len_unlocked);
2654
6c2d4798
AV
2655/*
2656 * Like lookup_one_len_unlocked(), except that it yields ERR_PTR(-ENOENT)
2657 * on negatives. Returns known positive or ERR_PTR(); that's what
2658 * most of the users want. Note that pinned negative with unlocked parent
2659 * _can_ become positive at any time, so callers of lookup_one_len_unlocked()
2660 * need to be very careful; pinned positives have ->d_inode stable, so
2661 * this one avoids such problems.
2662 */
2663struct dentry *lookup_positive_unlocked(const char *name,
2664 struct dentry *base, int len)
2665{
2666 struct dentry *ret = lookup_one_len_unlocked(name, base, len);
2fa6b1e0 2667 if (!IS_ERR(ret) && d_flags_negative(smp_load_acquire(&ret->d_flags))) {
6c2d4798
AV
2668 dput(ret);
2669 ret = ERR_PTR(-ENOENT);
2670 }
2671 return ret;
2672}
2673EXPORT_SYMBOL(lookup_positive_unlocked);
2674
eedf265a
EB
2675#ifdef CONFIG_UNIX98_PTYS
2676int path_pts(struct path *path)
2677{
2678 /* Find something mounted on "pts" in the same directory as
2679 * the input path.
2680 */
2681 struct dentry *child, *parent;
2682 struct qstr this;
2683 int ret;
2684
2685 ret = path_parent_directory(path);
2686 if (ret)
2687 return ret;
2688
2689 parent = path->dentry;
2690 this.name = "pts";
2691 this.len = 3;
2692 child = d_hash_and_lookup(parent, &this);
2693 if (!child)
2694 return -ENOENT;
2695
2696 path->dentry = child;
2697 dput(parent);
2698 follow_mount(path);
2699 return 0;
2700}
2701#endif
2702
1fa1e7f6
AW
2703int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2704 struct path *path, int *empty)
1da177e4 2705{
abc9f5be
AV
2706 return filename_lookup(dfd, getname_flags(name, flags, empty),
2707 flags, path, NULL);
1da177e4 2708}
b853a161 2709EXPORT_SYMBOL(user_path_at_empty);
1fa1e7f6 2710
8033426e 2711/**
197df04c 2712 * path_mountpoint - look up a path to be umounted
2a78b857 2713 * @nd: lookup context
8033426e 2714 * @flags: lookup flags
c8a53ee5 2715 * @path: pointer to container for result
8033426e
JL
2716 *
2717 * Look up the given name, but don't attempt to revalidate the last component.
606d6fe3 2718 * Returns 0 and "path" will be valid on success; Returns error otherwise.
8033426e
JL
2719 */
2720static int
c8a53ee5 2721path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path)
8033426e 2722{
c8a53ee5 2723 const char *s = path_init(nd, flags);
368ee9ba 2724 int err;
9b5858e9 2725
3bdba28b 2726 while (!(err = link_path_walk(s, nd)) &&
c64cd6e3 2727 (err = lookup_last(nd)) > 0) {
3bdba28b 2728 s = trailing_symlink(nd);
8033426e 2729 }
c64cd6e3
AV
2730 if (!err && (nd->flags & LOOKUP_RCU))
2731 err = unlazy_walk(nd);
2732 if (!err)
2733 err = handle_lookup_down(nd);
ba8f4613
AV
2734 if (!err) {
2735 *path = nd->path;
2736 nd->path.mnt = NULL;
2737 nd->path.dentry = NULL;
ba8f4613 2738 }
deb106c6 2739 terminate_walk(nd);
8033426e
JL
2740 return err;
2741}
2742
2d864651 2743static int
668696dc 2744filename_mountpoint(int dfd, struct filename *name, struct path *path,
2d864651
AV
2745 unsigned int flags)
2746{
9883d185 2747 struct nameidata nd;
cbaab2db 2748 int error;
668696dc
AV
2749 if (IS_ERR(name))
2750 return PTR_ERR(name);
9883d185 2751 set_nameidata(&nd, dfd, name);
c8a53ee5 2752 error = path_mountpoint(&nd, flags | LOOKUP_RCU, path);
2d864651 2753 if (unlikely(error == -ECHILD))
c8a53ee5 2754 error = path_mountpoint(&nd, flags, path);
2d864651 2755 if (unlikely(error == -ESTALE))
c8a53ee5 2756 error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path);
2d864651 2757 if (likely(!error))
c9b07eab 2758 audit_inode(name, path->dentry, AUDIT_INODE_NOEVAL);
9883d185 2759 restore_nameidata();
668696dc 2760 putname(name);
2d864651
AV
2761 return error;
2762}
2763
8033426e 2764/**
197df04c 2765 * user_path_mountpoint_at - lookup a path from userland in order to umount it
8033426e
JL
2766 * @dfd: directory file descriptor
2767 * @name: pathname from userland
2768 * @flags: lookup flags
2769 * @path: pointer to container to hold result
2770 *
2771 * A umount is a special case for path walking. We're not actually interested
2772 * in the inode in this situation, and ESTALE errors can be a problem. We
2773 * simply want track down the dentry and vfsmount attached at the mountpoint
2774 * and avoid revalidating the last component.
2775 *
2776 * Returns 0 and populates "path" on success.
2777 */
2778int
197df04c 2779user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
8033426e
JL
2780 struct path *path)
2781{
cbaab2db 2782 return filename_mountpoint(dfd, getname(name), path, flags);
8033426e
JL
2783}
2784
2d864651
AV
2785int
2786kern_path_mountpoint(int dfd, const char *name, struct path *path,
2787 unsigned int flags)
2788{
cbaab2db 2789 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
2d864651
AV
2790}
2791EXPORT_SYMBOL(kern_path_mountpoint);
2792
cbdf35bc 2793int __check_sticky(struct inode *dir, struct inode *inode)
1da177e4 2794{
8e96e3b7 2795 kuid_t fsuid = current_fsuid();
da9592ed 2796
8e96e3b7 2797 if (uid_eq(inode->i_uid, fsuid))
1da177e4 2798 return 0;
8e96e3b7 2799 if (uid_eq(dir->i_uid, fsuid))
1da177e4 2800 return 0;
23adbe12 2801 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
1da177e4 2802}
cbdf35bc 2803EXPORT_SYMBOL(__check_sticky);
1da177e4
LT
2804
2805/*
2806 * Check whether we can remove a link victim from directory dir, check
2807 * whether the type of victim is right.
2808 * 1. We can't do it if dir is read-only (done in permission())
2809 * 2. We should have write and exec permissions on dir
2810 * 3. We can't remove anything from append-only dir
2811 * 4. We can't do anything with immutable dir (done in permission())
2812 * 5. If the sticky bit on dir is set we should either
2813 * a. be owner of dir, or
2814 * b. be owner of victim, or
2815 * c. have CAP_FOWNER capability
2816 * 6. If the victim is append-only or immutable we can't do antyhing with
2817 * links pointing to it.
0bd23d09
EB
2818 * 7. If the victim has an unknown uid or gid we can't change the inode.
2819 * 8. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2820 * 9. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2821 * 10. We can't remove a root or mountpoint.
2822 * 11. We don't allow removal of NFS sillyrenamed files; it's handled by
1da177e4
LT
2823 * nfs_async_unlink().
2824 */
b18825a7 2825static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
1da177e4 2826{
63afdfc7 2827 struct inode *inode = d_backing_inode(victim);
1da177e4
LT
2828 int error;
2829
b18825a7 2830 if (d_is_negative(victim))
1da177e4 2831 return -ENOENT;
b18825a7 2832 BUG_ON(!inode);
1da177e4
LT
2833
2834 BUG_ON(victim->d_parent->d_inode != dir);
593d1ce8
EB
2835
2836 /* Inode writeback is not safe when the uid or gid are invalid. */
2837 if (!uid_valid(inode->i_uid) || !gid_valid(inode->i_gid))
2838 return -EOVERFLOW;
2839
4fa6b5ec 2840 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
1da177e4 2841
f419a2e3 2842 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
2843 if (error)
2844 return error;
2845 if (IS_APPEND(dir))
2846 return -EPERM;
b18825a7
DH
2847
2848 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
0bd23d09 2849 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode) || HAS_UNMAPPED_ID(inode))
1da177e4
LT
2850 return -EPERM;
2851 if (isdir) {
44b1d530 2852 if (!d_is_dir(victim))
1da177e4
LT
2853 return -ENOTDIR;
2854 if (IS_ROOT(victim))
2855 return -EBUSY;
44b1d530 2856 } else if (d_is_dir(victim))
1da177e4
LT
2857 return -EISDIR;
2858 if (IS_DEADDIR(dir))
2859 return -ENOENT;
2860 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2861 return -EBUSY;
2862 return 0;
2863}
2864
2865/* Check whether we can create an object with dentry child in directory
2866 * dir.
2867 * 1. We can't do it if child already exists (open has special treatment for
2868 * this case, but since we are inlined it's OK)
2869 * 2. We can't do it if dir is read-only (done in permission())
036d5236
EB
2870 * 3. We can't do it if the fs can't represent the fsuid or fsgid.
2871 * 4. We should have write and exec permissions on dir
2872 * 5. We can't do it if dir is immutable (done in permission())
1da177e4 2873 */
a95164d9 2874static inline int may_create(struct inode *dir, struct dentry *child)
1da177e4 2875{
036d5236 2876 struct user_namespace *s_user_ns;
14e972b4 2877 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
1da177e4
LT
2878 if (child->d_inode)
2879 return -EEXIST;
2880 if (IS_DEADDIR(dir))
2881 return -ENOENT;
036d5236
EB
2882 s_user_ns = dir->i_sb->s_user_ns;
2883 if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
2884 !kgid_has_mapping(s_user_ns, current_fsgid()))
2885 return -EOVERFLOW;
f419a2e3 2886 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
2887}
2888
1da177e4
LT
2889/*
2890 * p1 and p2 should be directories on the same fs.
2891 */
2892struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2893{
2894 struct dentry *p;
2895
2896 if (p1 == p2) {
5955102c 2897 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
1da177e4
LT
2898 return NULL;
2899 }
2900
fc64005c 2901 mutex_lock(&p1->d_sb->s_vfs_rename_mutex);
1da177e4 2902
e2761a11
OH
2903 p = d_ancestor(p2, p1);
2904 if (p) {
5955102c
AV
2905 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT);
2906 inode_lock_nested(p1->d_inode, I_MUTEX_CHILD);
e2761a11 2907 return p;
1da177e4
LT
2908 }
2909
e2761a11
OH
2910 p = d_ancestor(p1, p2);
2911 if (p) {
5955102c
AV
2912 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2913 inode_lock_nested(p2->d_inode, I_MUTEX_CHILD);
e2761a11 2914 return p;
1da177e4
LT
2915 }
2916
5955102c
AV
2917 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2918 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2);
1da177e4
LT
2919 return NULL;
2920}
4d359507 2921EXPORT_SYMBOL(lock_rename);
1da177e4
LT
2922
2923void unlock_rename(struct dentry *p1, struct dentry *p2)
2924{
5955102c 2925 inode_unlock(p1->d_inode);
1da177e4 2926 if (p1 != p2) {
5955102c 2927 inode_unlock(p2->d_inode);
fc64005c 2928 mutex_unlock(&p1->d_sb->s_vfs_rename_mutex);
1da177e4
LT
2929 }
2930}
4d359507 2931EXPORT_SYMBOL(unlock_rename);
1da177e4 2932
4acdaf27 2933int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
312b63fb 2934 bool want_excl)
1da177e4 2935{
a95164d9 2936 int error = may_create(dir, dentry);
1da177e4
LT
2937 if (error)
2938 return error;
2939
acfa4380 2940 if (!dir->i_op->create)
1da177e4
LT
2941 return -EACCES; /* shouldn't it be ENOSYS? */
2942 mode &= S_IALLUGO;
2943 mode |= S_IFREG;
2944 error = security_inode_create(dir, dentry, mode);
2945 if (error)
2946 return error;
312b63fb 2947 error = dir->i_op->create(dir, dentry, mode, want_excl);
a74574aa 2948 if (!error)
f38aa942 2949 fsnotify_create(dir, dentry);
1da177e4
LT
2950 return error;
2951}
4d359507 2952EXPORT_SYMBOL(vfs_create);
1da177e4 2953
8e6c848e
AV
2954int vfs_mkobj(struct dentry *dentry, umode_t mode,
2955 int (*f)(struct dentry *, umode_t, void *),
2956 void *arg)
2957{
2958 struct inode *dir = dentry->d_parent->d_inode;
2959 int error = may_create(dir, dentry);
2960 if (error)
2961 return error;
2962
2963 mode &= S_IALLUGO;
2964 mode |= S_IFREG;
2965 error = security_inode_create(dir, dentry, mode);
2966 if (error)
2967 return error;
2968 error = f(dentry, mode, arg);
2969 if (!error)
2970 fsnotify_create(dir, dentry);
2971 return error;
2972}
2973EXPORT_SYMBOL(vfs_mkobj);
2974
a2982cc9
EB
2975bool may_open_dev(const struct path *path)
2976{
2977 return !(path->mnt->mnt_flags & MNT_NODEV) &&
2978 !(path->mnt->mnt_sb->s_iflags & SB_I_NODEV);
2979}
2980
f0bb5aaf 2981static int may_open(const struct path *path, int acc_mode, int flag)
1da177e4 2982{
3fb64190 2983 struct dentry *dentry = path->dentry;
1da177e4
LT
2984 struct inode *inode = dentry->d_inode;
2985 int error;
2986
2987 if (!inode)
2988 return -ENOENT;
2989
c8fe8f30
CH
2990 switch (inode->i_mode & S_IFMT) {
2991 case S_IFLNK:
1da177e4 2992 return -ELOOP;
c8fe8f30
CH
2993 case S_IFDIR:
2994 if (acc_mode & MAY_WRITE)
2995 return -EISDIR;
2996 break;
2997 case S_IFBLK:
2998 case S_IFCHR:
a2982cc9 2999 if (!may_open_dev(path))
1da177e4 3000 return -EACCES;
c8fe8f30
CH
3001 /*FALLTHRU*/
3002 case S_IFIFO:
3003 case S_IFSOCK:
1da177e4 3004 flag &= ~O_TRUNC;
c8fe8f30 3005 break;
4a3fd211 3006 }
b41572e9 3007
62fb4a15 3008 error = inode_permission(inode, MAY_OPEN | acc_mode);
b41572e9
DH
3009 if (error)
3010 return error;
6146f0d5 3011
1da177e4
LT
3012 /*
3013 * An append-only file must be opened in append mode for writing.
3014 */
3015 if (IS_APPEND(inode)) {
8737c930 3016 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
7715b521 3017 return -EPERM;
1da177e4 3018 if (flag & O_TRUNC)
7715b521 3019 return -EPERM;
1da177e4
LT
3020 }
3021
3022 /* O_NOATIME can only be set by the owner or superuser */
2e149670 3023 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
7715b521 3024 return -EPERM;
1da177e4 3025
f3c7691e 3026 return 0;
7715b521 3027}
1da177e4 3028
e1181ee6 3029static int handle_truncate(struct file *filp)
7715b521 3030{
f0bb5aaf 3031 const struct path *path = &filp->f_path;
7715b521
AV
3032 struct inode *inode = path->dentry->d_inode;
3033 int error = get_write_access(inode);
3034 if (error)
3035 return error;
3036 /*
3037 * Refuse to truncate files with mandatory locks held on them.
3038 */
d7a06983 3039 error = locks_verify_locked(filp);
7715b521 3040 if (!error)
ea0d3ab2 3041 error = security_path_truncate(path);
7715b521
AV
3042 if (!error) {
3043 error = do_truncate(path->dentry, 0,
3044 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
e1181ee6 3045 filp);
7715b521
AV
3046 }
3047 put_write_access(inode);
acd0c935 3048 return error;
1da177e4
LT
3049}
3050
d57999e1
DH
3051static inline int open_to_namei_flags(int flag)
3052{
8a5e929d
AV
3053 if ((flag & O_ACCMODE) == 3)
3054 flag--;
d57999e1
DH
3055 return flag;
3056}
3057
d3607752 3058static int may_o_create(const struct path *dir, struct dentry *dentry, umode_t mode)
d18e9008 3059{
1328c727 3060 struct user_namespace *s_user_ns;
d18e9008
MS
3061 int error = security_path_mknod(dir, dentry, mode, 0);
3062 if (error)
3063 return error;
3064
1328c727
SF
3065 s_user_ns = dir->dentry->d_sb->s_user_ns;
3066 if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
3067 !kgid_has_mapping(s_user_ns, current_fsgid()))
3068 return -EOVERFLOW;
3069
d18e9008
MS
3070 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
3071 if (error)
3072 return error;
3073
3074 return security_inode_create(dir->dentry->d_inode, dentry, mode);
3075}
3076
1acf0af9
DH
3077/*
3078 * Attempt to atomically look up, create and open a file from a negative
3079 * dentry.
3080 *
3081 * Returns 0 if successful. The file will have been created and attached to
3082 * @file by the filesystem calling finish_open().
3083 *
00a07c15
AV
3084 * If the file was looked up only or didn't need creating, FMODE_OPENED won't
3085 * be set. The caller will need to perform the open themselves. @path will
3086 * have been updated to point to the new dentry. This may be negative.
1acf0af9
DH
3087 *
3088 * Returns an error code otherwise.
3089 */
239eb983
AV
3090static struct dentry *atomic_open(struct nameidata *nd, struct dentry *dentry,
3091 struct file *file,
3092 const struct open_flags *op,
3093 int open_flag, umode_t mode)
d18e9008 3094{
384f26e2 3095 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
d18e9008 3096 struct inode *dir = nd->path.dentry->d_inode;
d18e9008 3097 int error;
d18e9008 3098
384f26e2 3099 if (!(~open_flag & (O_EXCL | O_CREAT))) /* both O_EXCL and O_CREAT */
d18e9008 3100 open_flag &= ~O_TRUNC;
d18e9008 3101
d18e9008
MS
3102 if (nd->flags & LOOKUP_DIRECTORY)
3103 open_flag |= O_DIRECTORY;
3104
30d90494
AV
3105 file->f_path.dentry = DENTRY_NOT_SET;
3106 file->f_path.mnt = nd->path.mnt;
0fb1ea09 3107 error = dir->i_op->atomic_open(dir, dentry, file,
44907d79 3108 open_to_namei_flags(open_flag), mode);
6fbd0714 3109 d_lookup_done(dentry);
384f26e2 3110 if (!error) {
64e1ac4d
AV
3111 if (file->f_mode & FMODE_OPENED) {
3112 /*
3113 * We didn't have the inode before the open, so check open
3114 * permission here.
3115 */
3116 int acc_mode = op->acc_mode;
3117 if (file->f_mode & FMODE_CREATED) {
3118 WARN_ON(!(open_flag & O_CREAT));
3119 fsnotify_create(dir, dentry);
3120 acc_mode = 0;
3121 }
3122 error = may_open(&file->f_path, acc_mode, open_flag);
3123 if (WARN_ON(error > 0))
3124 error = -EINVAL;
3125 } else if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
2675a4eb 3126 error = -EIO;
03da633a 3127 } else {
384f26e2
AV
3128 if (file->f_path.dentry) {
3129 dput(dentry);
3130 dentry = file->f_path.dentry;
03da633a 3131 }
73a09dd9 3132 if (file->f_mode & FMODE_CREATED)
384f26e2 3133 fsnotify_create(dir, dentry);
239eb983 3134 if (unlikely(d_is_negative(dentry)))
a01e718f 3135 error = -ENOENT;
62b2ce96 3136 }
d18e9008 3137 }
239eb983
AV
3138 if (error) {
3139 dput(dentry);
3140 dentry = ERR_PTR(error);
3141 }
3142 return dentry;
d18e9008
MS
3143}
3144
d58ffd35 3145/*
1acf0af9 3146 * Look up and maybe create and open the last component.
d58ffd35 3147 *
00a07c15 3148 * Must be called with parent locked (exclusive in O_CREAT case).
1acf0af9 3149 *
00a07c15
AV
3150 * Returns 0 on success, that is, if
3151 * the file was successfully atomically created (if necessary) and opened, or
3152 * the file was not completely opened at this time, though lookups and
3153 * creations were performed.
3154 * These case are distinguished by presence of FMODE_OPENED on file->f_mode.
3155 * In the latter case dentry returned in @path might be negative if O_CREAT
3156 * hadn't been specified.
1acf0af9 3157 *
00a07c15 3158 * An error code is returned on failure.
d58ffd35 3159 */
da5ebf5a
AV
3160static struct dentry *lookup_open(struct nameidata *nd, struct file *file,
3161 const struct open_flags *op,
3162 bool got_write)
d58ffd35
MS
3163{
3164 struct dentry *dir = nd->path.dentry;
54ef4872 3165 struct inode *dir_inode = dir->d_inode;
1643b43f 3166 int open_flag = op->open_flag;
d58ffd35 3167 struct dentry *dentry;
1643b43f 3168 int error, create_error = 0;
1643b43f 3169 umode_t mode = op->mode;
6fbd0714 3170 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
d58ffd35 3171
ce8644fc 3172 if (unlikely(IS_DEADDIR(dir_inode)))
da5ebf5a 3173 return ERR_PTR(-ENOENT);
d58ffd35 3174
73a09dd9 3175 file->f_mode &= ~FMODE_CREATED;
6fbd0714
AV
3176 dentry = d_lookup(dir, &nd->last);
3177 for (;;) {
3178 if (!dentry) {
3179 dentry = d_alloc_parallel(dir, &nd->last, &wq);
3180 if (IS_ERR(dentry))
da5ebf5a 3181 return dentry;
6fbd0714
AV
3182 }
3183 if (d_in_lookup(dentry))
3184 break;
d58ffd35 3185
6fbd0714
AV
3186 error = d_revalidate(dentry, nd->flags);
3187 if (likely(error > 0))
3188 break;
3189 if (error)
3190 goto out_dput;
3191 d_invalidate(dentry);
3192 dput(dentry);
3193 dentry = NULL;
3194 }
3195 if (dentry->d_inode) {
6c51e513 3196 /* Cached positive dentry: will open in f_op->open */
da5ebf5a 3197 return dentry;
6c51e513 3198 }
d18e9008 3199
1643b43f
AV
3200 /*
3201 * Checking write permission is tricky, bacuse we don't know if we are
3202 * going to actually need it: O_CREAT opens should work as long as the
3203 * file exists. But checking existence breaks atomicity. The trick is
3204 * to check access and if not granted clear O_CREAT from the flags.
3205 *
3206 * Another problem is returing the "right" error value (e.g. for an
3207 * O_EXCL open we want to return EEXIST not EROFS).
3208 */
3209 if (open_flag & O_CREAT) {
3210 if (!IS_POSIXACL(dir->d_inode))
3211 mode &= ~current_umask();
3212 if (unlikely(!got_write)) {
3213 create_error = -EROFS;
3214 open_flag &= ~O_CREAT;
3215 if (open_flag & (O_EXCL | O_TRUNC))
3216 goto no_open;
3217 /* No side effects, safe to clear O_CREAT */
3218 } else {
3219 create_error = may_o_create(&nd->path, dentry, mode);
3220 if (create_error) {
3221 open_flag &= ~O_CREAT;
3222 if (open_flag & O_EXCL)
3223 goto no_open;
3224 }
3225 }
3226 } else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) &&
3227 unlikely(!got_write)) {
3228 /*
3229 * No O_CREATE -> atomicity not a requirement -> fall
3230 * back to lookup + open
3231 */
3232 goto no_open;
d18e9008
MS
3233 }
3234
6ac08709 3235 if (dir_inode->i_op->atomic_open) {
239eb983 3236 dentry = atomic_open(nd, dentry, file, op, open_flag, mode);
da5ebf5a
AV
3237 if (unlikely(create_error) && dentry == ERR_PTR(-ENOENT))
3238 dentry = ERR_PTR(create_error);
3239 return dentry;
d18e9008 3240 }
54ef4872 3241
1643b43f 3242no_open:
6fbd0714 3243 if (d_in_lookup(dentry)) {
12fa5e24
AV
3244 struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry,
3245 nd->flags);
6fbd0714 3246 d_lookup_done(dentry);
12fa5e24
AV
3247 if (unlikely(res)) {
3248 if (IS_ERR(res)) {
3249 error = PTR_ERR(res);
3250 goto out_dput;
3251 }
3252 dput(dentry);
3253 dentry = res;
3254 }
54ef4872
MS
3255 }
3256
d58ffd35 3257 /* Negative dentry, just create the file */
1643b43f 3258 if (!dentry->d_inode && (open_flag & O_CREAT)) {
73a09dd9 3259 file->f_mode |= FMODE_CREATED;
ce8644fc 3260 audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE);
ce8644fc
AV
3261 if (!dir_inode->i_op->create) {
3262 error = -EACCES;
d58ffd35 3263 goto out_dput;
ce8644fc
AV
3264 }
3265 error = dir_inode->i_op->create(dir_inode, dentry, mode,
1643b43f 3266 open_flag & O_EXCL);
d58ffd35
MS
3267 if (error)
3268 goto out_dput;
ce8644fc 3269 fsnotify_create(dir_inode, dentry);
d58ffd35 3270 }
1643b43f
AV
3271 if (unlikely(create_error) && !dentry->d_inode) {
3272 error = create_error;
3273 goto out_dput;
d58ffd35 3274 }
da5ebf5a 3275 return dentry;
d58ffd35
MS
3276
3277out_dput:
3278 dput(dentry);
da5ebf5a 3279 return ERR_PTR(error);
d58ffd35
MS
3280}
3281
31e6b01f 3282/*
fe2d35ff 3283 * Handle the last step of open()
31e6b01f 3284 */
896475d5 3285static int do_last(struct nameidata *nd,
3ec2eef1 3286 struct file *file, const struct open_flags *op)
fb1cc555 3287{
a1e28038 3288 struct dentry *dir = nd->path.dentry;
6404674a
AV
3289 kuid_t dir_uid = nd->inode->i_uid;
3290 umode_t dir_mode = nd->inode->i_mode;
ca344a89 3291 int open_flag = op->open_flag;
77d660a8 3292 bool will_truncate = (open_flag & O_TRUNC) != 0;
64894cf8 3293 bool got_write = false;
bcda7652 3294 int acc_mode = op->acc_mode;
254cf582 3295 unsigned seq;
a1eb3315 3296 struct inode *inode;
896475d5 3297 struct path path;
da5ebf5a 3298 struct dentry *dentry;
16c2cd71 3299 int error;
1f36f774 3300
c3e380b0
AV
3301 nd->flags &= ~LOOKUP_PARENT;
3302 nd->flags |= op->intent;
3303
bc77daa7 3304 if (nd->last_type != LAST_NORM) {
fe2d35ff 3305 error = handle_dots(nd, nd->last_type);
deb106c6 3306 if (unlikely(error))
2675a4eb 3307 return error;
e83db167 3308 goto finish_open;
1f36f774 3309 }
67ee3ad2 3310
ca344a89 3311 if (!(open_flag & O_CREAT)) {
fe2d35ff
AV
3312 if (nd->last.name[nd->last.len])
3313 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3314 /* we _can_ be in RCU mode here */
254cf582 3315 error = lookup_fast(nd, &path, &inode, &seq);
e9742b53 3316 if (likely(error > 0))
71574865
MS
3317 goto finish_lookup;
3318
3319 if (error < 0)
deb106c6 3320 return error;
71574865
MS
3321
3322 BUG_ON(nd->inode != dir->d_inode);
6583fe22 3323 BUG_ON(nd->flags & LOOKUP_RCU);
b6183df7
MS
3324 } else {
3325 /* create side of things */
3326 /*
3327 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3328 * has been cleared when we got to the last component we are
3329 * about to look up
3330 */
3331 error = complete_walk(nd);
e8bb73df 3332 if (error)
2675a4eb 3333 return error;
fe2d35ff 3334
c9b07eab 3335 audit_inode(nd->name, dir, AUDIT_INODE_PARENT);
b6183df7 3336 /* trailing slashes? */
deb106c6
AV
3337 if (unlikely(nd->last.name[nd->last.len]))
3338 return -EISDIR;
b6183df7 3339 }
a2c36b45 3340
9cf843e3 3341 if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
64894cf8
AV
3342 error = mnt_want_write(nd->path.mnt);
3343 if (!error)
3344 got_write = true;
3345 /*
3346 * do _not_ fail yet - we might not need that or fail with
3347 * a different error; let lookup_open() decide; we'll be
3348 * dropping this one anyway.
3349 */
3350 }
9cf843e3
AV
3351 if (open_flag & O_CREAT)
3352 inode_lock(dir->d_inode);
3353 else
3354 inode_lock_shared(dir->d_inode);
da5ebf5a 3355 dentry = lookup_open(nd, file, op, got_write);
9cf843e3
AV
3356 if (open_flag & O_CREAT)
3357 inode_unlock(dir->d_inode);
3358 else
3359 inode_unlock_shared(dir->d_inode);
a1e28038 3360
da5ebf5a
AV
3361 if (IS_ERR(dentry)) {
3362 error = PTR_ERR(dentry);
00a07c15 3363 goto out;
da5ebf5a 3364 }
d18e9008 3365
00a07c15 3366 if (file->f_mode & FMODE_OPENED) {
73a09dd9 3367 if ((file->f_mode & FMODE_CREATED) ||
496ad9aa 3368 !S_ISREG(file_inode(file)->i_mode))
77d660a8 3369 will_truncate = false;
d18e9008 3370
76ae2a5a 3371 audit_inode(nd->name, file->f_path.dentry, 0);
da5ebf5a 3372 dput(dentry);
d18e9008
MS
3373 goto opened;
3374 }
fb1cc555 3375
73a09dd9 3376 if (file->f_mode & FMODE_CREATED) {
9b44f1b3 3377 /* Don't check for write permission, don't truncate */
ca344a89 3378 open_flag &= ~O_TRUNC;
77d660a8 3379 will_truncate = false;
62fb4a15 3380 acc_mode = 0;
e73cabff
AV
3381 dput(nd->path.dentry);
3382 nd->path.dentry = dentry;
e83db167 3383 goto finish_open_created;
fb1cc555
AV
3384 }
3385
d18e9008
MS
3386 /*
3387 * If atomic_open() acquired write access it is dropped now due to
3388 * possible mount and symlink following (this might be optimized away if
3389 * necessary...)
3390 */
64894cf8 3391 if (got_write) {
d18e9008 3392 mnt_drop_write(nd->path.mnt);
64894cf8 3393 got_write = false;
d18e9008
MS
3394 }
3395
e73cabff
AV
3396 path.mnt = nd->path.mnt;
3397 path.dentry = dentry;
bd7c4b50 3398 error = handle_mounts(&path, nd, &inode, &seq);
e6ec03a2
AV
3399 if (unlikely(error < 0))
3400 return error;
766c4cbf 3401finish_lookup:
8f64fb1c 3402 error = step_into(nd, &path, 0, inode, seq);
deb106c6 3403 if (unlikely(error))
d63ff28f 3404 return error;
31d1726d
AV
3405
3406 if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
3407 audit_inode(nd->name, nd->path.dentry, 0);
3408 return -EEXIST;
3409 }
bc77daa7 3410finish_open:
8f64fb1c 3411 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
a3fbbde7 3412 error = complete_walk(nd);
fac7d191 3413 if (error)
2675a4eb 3414 return error;
76ae2a5a 3415 audit_inode(nd->name, nd->path.dentry, 0);
30aba665
SM
3416 if (open_flag & O_CREAT) {
3417 error = -EISDIR;
3418 if (d_is_dir(nd->path.dentry))
3419 goto out;
d0cb5018 3420 error = may_create_in_sticky(dir_mode, dir_uid,
30aba665
SM
3421 d_backing_inode(nd->path.dentry));
3422 if (unlikely(error))
3423 goto out;
3424 }
af2f5542 3425 error = -ENOTDIR;
44b1d530 3426 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
2675a4eb 3427 goto out;
4bbcbd3b 3428 if (!d_is_reg(nd->path.dentry))
77d660a8 3429 will_truncate = false;
6c0d46c4 3430
0f9d1a10
AV
3431 if (will_truncate) {
3432 error = mnt_want_write(nd->path.mnt);
3433 if (error)
2675a4eb 3434 goto out;
64894cf8 3435 got_write = true;
0f9d1a10 3436 }
e83db167 3437finish_open_created:
6ac08709
AV
3438 error = may_open(&nd->path, acc_mode, open_flag);
3439 if (error)
3440 goto out;
aad888f8 3441 BUG_ON(file->f_mode & FMODE_OPENED); /* once it's opened, it's opened */
ae2bb293 3442 error = vfs_open(&nd->path, file);
fac7d191 3443 if (error)
015c3bbc 3444 goto out;
a8277b9b 3445opened:
6035a27b 3446 error = ima_file_check(file, op->acc_mode);
fe9ec829 3447 if (!error && will_truncate)
2675a4eb 3448 error = handle_truncate(file);
ca344a89 3449out:
c80567c8
AV
3450 if (unlikely(error > 0)) {
3451 WARN_ON(1);
3452 error = -EINVAL;
3453 }
64894cf8 3454 if (got_write)
0f9d1a10 3455 mnt_drop_write(nd->path.mnt);
2675a4eb 3456 return error;
fb1cc555
AV
3457}
3458
af7bd4dc
AG
3459struct dentry *vfs_tmpfile(struct dentry *dentry, umode_t mode, int open_flag)
3460{
af7bd4dc
AG
3461 struct dentry *child = NULL;
3462 struct inode *dir = dentry->d_inode;
3463 struct inode *inode;
3464 int error;
3465
3466 /* we want directory to be writable */
3467 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
3468 if (error)
3469 goto out_err;
3470 error = -EOPNOTSUPP;
3471 if (!dir->i_op->tmpfile)
3472 goto out_err;
3473 error = -ENOMEM;
cdf01226 3474 child = d_alloc(dentry, &slash_name);
af7bd4dc
AG
3475 if (unlikely(!child))
3476 goto out_err;
3477 error = dir->i_op->tmpfile(dir, child, mode);
3478 if (error)
3479 goto out_err;
3480 error = -ENOENT;
3481 inode = child->d_inode;
3482 if (unlikely(!inode))
3483 goto out_err;
3484 if (!(open_flag & O_EXCL)) {
3485 spin_lock(&inode->i_lock);
3486 inode->i_state |= I_LINKABLE;
3487 spin_unlock(&inode->i_lock);
3488 }
fdb2410f 3489 ima_post_create_tmpfile(inode);
af7bd4dc
AG
3490 return child;
3491
3492out_err:
3493 dput(child);
3494 return ERR_PTR(error);
3495}
3496EXPORT_SYMBOL(vfs_tmpfile);
3497
c8a53ee5 3498static int do_tmpfile(struct nameidata *nd, unsigned flags,
60545d0d 3499 const struct open_flags *op,
3ec2eef1 3500 struct file *file)
60545d0d 3501{
625b6d10 3502 struct dentry *child;
625b6d10 3503 struct path path;
c8a53ee5 3504 int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
60545d0d
AV
3505 if (unlikely(error))
3506 return error;
625b6d10 3507 error = mnt_want_write(path.mnt);
60545d0d
AV
3508 if (unlikely(error))
3509 goto out;
af7bd4dc
AG
3510 child = vfs_tmpfile(path.dentry, op->mode, op->open_flag);
3511 error = PTR_ERR(child);
684e73be 3512 if (IS_ERR(child))
60545d0d 3513 goto out2;
625b6d10
AV
3514 dput(path.dentry);
3515 path.dentry = child;
c8a53ee5 3516 audit_inode(nd->name, child, 0);
69a91c23 3517 /* Don't check for other permissions, the inode was just created */
62fb4a15 3518 error = may_open(&path, 0, op->open_flag);
60545d0d
AV
3519 if (error)
3520 goto out2;
625b6d10 3521 file->f_path.mnt = path.mnt;
be12af3e 3522 error = finish_open(file, child, NULL);
60545d0d 3523out2:
625b6d10 3524 mnt_drop_write(path.mnt);
60545d0d 3525out:
625b6d10 3526 path_put(&path);
60545d0d
AV
3527 return error;
3528}
3529
6ac08709
AV
3530static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file)
3531{
3532 struct path path;
3533 int error = path_lookupat(nd, flags, &path);
3534 if (!error) {
3535 audit_inode(nd->name, path.dentry, 0);
ae2bb293 3536 error = vfs_open(&path, file);
6ac08709
AV
3537 path_put(&path);
3538 }
3539 return error;
3540}
3541
c8a53ee5
AV
3542static struct file *path_openat(struct nameidata *nd,
3543 const struct open_flags *op, unsigned flags)
1da177e4 3544{
30d90494 3545 struct file *file;
13aab428 3546 int error;
31e6b01f 3547
ea73ea72 3548 file = alloc_empty_file(op->open_flag, current_cred());
1afc99be
AV
3549 if (IS_ERR(file))
3550 return file;
31e6b01f 3551
bb458c64 3552 if (unlikely(file->f_flags & __O_TMPFILE)) {
3ec2eef1 3553 error = do_tmpfile(nd, flags, op, file);
5f336e72 3554 } else if (unlikely(file->f_flags & O_PATH)) {
6ac08709 3555 error = do_o_path(nd, flags, file);
5f336e72
AV
3556 } else {
3557 const char *s = path_init(nd, flags);
3558 while (!(error = link_path_walk(s, nd)) &&
3559 (error = do_last(nd, file, op)) > 0) {
3560 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
3561 s = trailing_symlink(nd);
3562 }
3563 terminate_walk(nd);
806b681c 3564 }
7c1c01ec 3565 if (likely(!error)) {
aad888f8 3566 if (likely(file->f_mode & FMODE_OPENED))
7c1c01ec
AV
3567 return file;
3568 WARN_ON(1);
3569 error = -EINVAL;
16b1c1cd 3570 }
7c1c01ec
AV
3571 fput(file);
3572 if (error == -EOPENSTALE) {
3573 if (flags & LOOKUP_RCU)
3574 error = -ECHILD;
3575 else
3576 error = -ESTALE;
2675a4eb 3577 }
7c1c01ec 3578 return ERR_PTR(error);
1da177e4
LT
3579}
3580
669abf4e 3581struct file *do_filp_open(int dfd, struct filename *pathname,
f9652e10 3582 const struct open_flags *op)
13aab428 3583{
9883d185 3584 struct nameidata nd;
f9652e10 3585 int flags = op->lookup_flags;
13aab428
AV
3586 struct file *filp;
3587
9883d185 3588 set_nameidata(&nd, dfd, pathname);
c8a53ee5 3589 filp = path_openat(&nd, op, flags | LOOKUP_RCU);
13aab428 3590 if (unlikely(filp == ERR_PTR(-ECHILD)))
c8a53ee5 3591 filp = path_openat(&nd, op, flags);
13aab428 3592 if (unlikely(filp == ERR_PTR(-ESTALE)))
c8a53ee5 3593 filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
9883d185 3594 restore_nameidata();
13aab428
AV
3595 return filp;
3596}
3597
73d049a4 3598struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
f9652e10 3599 const char *name, const struct open_flags *op)
73d049a4 3600{
9883d185 3601 struct nameidata nd;
73d049a4 3602 struct file *file;
51689104 3603 struct filename *filename;
f9652e10 3604 int flags = op->lookup_flags | LOOKUP_ROOT;
73d049a4
AV
3605
3606 nd.root.mnt = mnt;
3607 nd.root.dentry = dentry;
3608
b18825a7 3609 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
73d049a4
AV
3610 return ERR_PTR(-ELOOP);
3611
51689104 3612 filename = getname_kernel(name);
a1c83681 3613 if (IS_ERR(filename))
51689104
PM
3614 return ERR_CAST(filename);
3615
9883d185 3616 set_nameidata(&nd, -1, filename);
c8a53ee5 3617 file = path_openat(&nd, op, flags | LOOKUP_RCU);
73d049a4 3618 if (unlikely(file == ERR_PTR(-ECHILD)))
c8a53ee5 3619 file = path_openat(&nd, op, flags);
73d049a4 3620 if (unlikely(file == ERR_PTR(-ESTALE)))
c8a53ee5 3621 file = path_openat(&nd, op, flags | LOOKUP_REVAL);
9883d185 3622 restore_nameidata();
51689104 3623 putname(filename);
73d049a4
AV
3624 return file;
3625}
3626
fa14a0b8 3627static struct dentry *filename_create(int dfd, struct filename *name,
1ac12b4b 3628 struct path *path, unsigned int lookup_flags)
1da177e4 3629{
c663e5d8 3630 struct dentry *dentry = ERR_PTR(-EEXIST);
391172c4
AV
3631 struct qstr last;
3632 int type;
c30dabfe 3633 int err2;
1ac12b4b
JL
3634 int error;
3635 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3636
3637 /*
3638 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3639 * other flags passed in are ignored!
3640 */
3641 lookup_flags &= LOOKUP_REVAL;
3642
5c31b6ce
AV
3643 name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
3644 if (IS_ERR(name))
3645 return ERR_CAST(name);
1da177e4 3646
c663e5d8
CH
3647 /*
3648 * Yucky last component or no last component at all?
3649 * (foo/., foo/.., /////)
3650 */
5c31b6ce 3651 if (unlikely(type != LAST_NORM))
ed75e95d 3652 goto out;
c663e5d8 3653
c30dabfe 3654 /* don't fail immediately if it's r/o, at least try to report other errors */
391172c4 3655 err2 = mnt_want_write(path->mnt);
c663e5d8
CH
3656 /*
3657 * Do the final lookup.
3658 */
391172c4 3659 lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
5955102c 3660 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
391172c4 3661 dentry = __lookup_hash(&last, path->dentry, lookup_flags);
1da177e4 3662 if (IS_ERR(dentry))
a8104a9f 3663 goto unlock;
c663e5d8 3664
a8104a9f 3665 error = -EEXIST;
b18825a7 3666 if (d_is_positive(dentry))
a8104a9f 3667 goto fail;
b18825a7 3668
c663e5d8
CH
3669 /*
3670 * Special case - lookup gave negative, but... we had foo/bar/
3671 * From the vfs_mknod() POV we just have a negative dentry -
3672 * all is fine. Let's be bastards - you had / on the end, you've
3673 * been asking for (non-existent) directory. -ENOENT for you.
3674 */
391172c4 3675 if (unlikely(!is_dir && last.name[last.len])) {
a8104a9f 3676 error = -ENOENT;
ed75e95d 3677 goto fail;
e9baf6e5 3678 }
c30dabfe
JK
3679 if (unlikely(err2)) {
3680 error = err2;
a8104a9f 3681 goto fail;
c30dabfe 3682 }
181c37b6 3683 putname(name);
1da177e4 3684 return dentry;
1da177e4 3685fail:
a8104a9f
AV
3686 dput(dentry);
3687 dentry = ERR_PTR(error);
3688unlock:
5955102c 3689 inode_unlock(path->dentry->d_inode);
c30dabfe 3690 if (!err2)
391172c4 3691 mnt_drop_write(path->mnt);
ed75e95d 3692out:
391172c4 3693 path_put(path);
181c37b6 3694 putname(name);
1da177e4
LT
3695 return dentry;
3696}
fa14a0b8
AV
3697
3698struct dentry *kern_path_create(int dfd, const char *pathname,
3699 struct path *path, unsigned int lookup_flags)
3700{
181c37b6
AV
3701 return filename_create(dfd, getname_kernel(pathname),
3702 path, lookup_flags);
fa14a0b8 3703}
dae6ad8f
AV
3704EXPORT_SYMBOL(kern_path_create);
3705
921a1650
AV
3706void done_path_create(struct path *path, struct dentry *dentry)
3707{
3708 dput(dentry);
5955102c 3709 inode_unlock(path->dentry->d_inode);
a8104a9f 3710 mnt_drop_write(path->mnt);
921a1650
AV
3711 path_put(path);
3712}
3713EXPORT_SYMBOL(done_path_create);
3714
520ae687 3715inline struct dentry *user_path_create(int dfd, const char __user *pathname,
1ac12b4b 3716 struct path *path, unsigned int lookup_flags)
dae6ad8f 3717{
181c37b6 3718 return filename_create(dfd, getname(pathname), path, lookup_flags);
dae6ad8f
AV
3719}
3720EXPORT_SYMBOL(user_path_create);
3721
1a67aafb 3722int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
1da177e4 3723{
a95164d9 3724 int error = may_create(dir, dentry);
1da177e4
LT
3725
3726 if (error)
3727 return error;
3728
94f82008 3729 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1da177e4
LT
3730 return -EPERM;
3731
acfa4380 3732 if (!dir->i_op->mknod)
1da177e4
LT
3733 return -EPERM;
3734
08ce5f16
SH
3735 error = devcgroup_inode_mknod(mode, dev);
3736 if (error)
3737 return error;
3738
1da177e4
LT
3739 error = security_inode_mknod(dir, dentry, mode, dev);
3740 if (error)
3741 return error;
3742
1da177e4 3743 error = dir->i_op->mknod(dir, dentry, mode, dev);
a74574aa 3744 if (!error)
f38aa942 3745 fsnotify_create(dir, dentry);
1da177e4
LT
3746 return error;
3747}
4d359507 3748EXPORT_SYMBOL(vfs_mknod);
1da177e4 3749
f69aac00 3750static int may_mknod(umode_t mode)
463c3197
DH
3751{
3752 switch (mode & S_IFMT) {
3753 case S_IFREG:
3754 case S_IFCHR:
3755 case S_IFBLK:
3756 case S_IFIFO:
3757 case S_IFSOCK:
3758 case 0: /* zero mode translates to S_IFREG */
3759 return 0;
3760 case S_IFDIR:
3761 return -EPERM;
3762 default:
3763 return -EINVAL;
3764 }
3765}
3766
87c4e192
DB
3767long do_mknodat(int dfd, const char __user *filename, umode_t mode,
3768 unsigned int dev)
1da177e4 3769{
2ad94ae6 3770 struct dentry *dentry;
dae6ad8f
AV
3771 struct path path;
3772 int error;
972567f1 3773 unsigned int lookup_flags = 0;
1da177e4 3774
8e4bfca1
AV
3775 error = may_mknod(mode);
3776 if (error)
3777 return error;
972567f1
JL
3778retry:
3779 dentry = user_path_create(dfd, filename, &path, lookup_flags);
dae6ad8f
AV
3780 if (IS_ERR(dentry))
3781 return PTR_ERR(dentry);
2ad94ae6 3782
dae6ad8f 3783 if (!IS_POSIXACL(path.dentry->d_inode))
ce3b0f8d 3784 mode &= ~current_umask();
dae6ad8f 3785 error = security_path_mknod(&path, dentry, mode, dev);
be6d3e56 3786 if (error)
a8104a9f 3787 goto out;
463c3197 3788 switch (mode & S_IFMT) {
1da177e4 3789 case 0: case S_IFREG:
312b63fb 3790 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
05d1a717
MZ
3791 if (!error)
3792 ima_post_path_mknod(dentry);
1da177e4
LT
3793 break;
3794 case S_IFCHR: case S_IFBLK:
dae6ad8f 3795 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
1da177e4
LT
3796 new_decode_dev(dev));
3797 break;
3798 case S_IFIFO: case S_IFSOCK:
dae6ad8f 3799 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
1da177e4 3800 break;
1da177e4 3801 }
a8104a9f 3802out:
921a1650 3803 done_path_create(&path, dentry);
972567f1
JL
3804 if (retry_estale(error, lookup_flags)) {
3805 lookup_flags |= LOOKUP_REVAL;
3806 goto retry;
3807 }
1da177e4
LT
3808 return error;
3809}
3810
87c4e192
DB
3811SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
3812 unsigned int, dev)
3813{
3814 return do_mknodat(dfd, filename, mode, dev);
3815}
3816
8208a22b 3817SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
5590ff0d 3818{
87c4e192 3819 return do_mknodat(AT_FDCWD, filename, mode, dev);
5590ff0d
UD
3820}
3821
18bb1db3 3822int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1da177e4 3823{
a95164d9 3824 int error = may_create(dir, dentry);
8de52778 3825 unsigned max_links = dir->i_sb->s_max_links;
1da177e4
LT
3826
3827 if (error)
3828 return error;
3829
acfa4380 3830 if (!dir->i_op->mkdir)
1da177e4
LT
3831 return -EPERM;
3832
3833 mode &= (S_IRWXUGO|S_ISVTX);
3834 error = security_inode_mkdir(dir, dentry, mode);
3835 if (error)
3836 return error;
3837
8de52778
AV
3838 if (max_links && dir->i_nlink >= max_links)
3839 return -EMLINK;
3840
1da177e4 3841 error = dir->i_op->mkdir(dir, dentry, mode);
a74574aa 3842 if (!error)
f38aa942 3843 fsnotify_mkdir(dir, dentry);
1da177e4
LT
3844 return error;
3845}
4d359507 3846EXPORT_SYMBOL(vfs_mkdir);
1da177e4 3847
0101db7a 3848long do_mkdirat(int dfd, const char __user *pathname, umode_t mode)
1da177e4 3849{
6902d925 3850 struct dentry *dentry;
dae6ad8f
AV
3851 struct path path;
3852 int error;
b76d8b82 3853 unsigned int lookup_flags = LOOKUP_DIRECTORY;
1da177e4 3854
b76d8b82
JL
3855retry:
3856 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
6902d925 3857 if (IS_ERR(dentry))
dae6ad8f 3858 return PTR_ERR(dentry);
1da177e4 3859
dae6ad8f 3860 if (!IS_POSIXACL(path.dentry->d_inode))
ce3b0f8d 3861 mode &= ~current_umask();
dae6ad8f 3862 error = security_path_mkdir(&path, dentry, mode);
a8104a9f
AV
3863 if (!error)
3864 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
921a1650 3865 done_path_create(&path, dentry);
b76d8b82
JL
3866 if (retry_estale(error, lookup_flags)) {
3867 lookup_flags |= LOOKUP_REVAL;
3868 goto retry;
3869 }
1da177e4
LT
3870 return error;
3871}
3872
0101db7a
DB
3873SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
3874{
3875 return do_mkdirat(dfd, pathname, mode);
3876}
3877
a218d0fd 3878SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
5590ff0d 3879{
0101db7a 3880 return do_mkdirat(AT_FDCWD, pathname, mode);
5590ff0d
UD
3881}
3882
1da177e4
LT
3883int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3884{
3885 int error = may_delete(dir, dentry, 1);
3886
3887 if (error)
3888 return error;
3889
acfa4380 3890 if (!dir->i_op->rmdir)
1da177e4
LT
3891 return -EPERM;
3892
1d2ef590 3893 dget(dentry);
5955102c 3894 inode_lock(dentry->d_inode);
912dbc15
SW
3895
3896 error = -EBUSY;
7af1364f 3897 if (is_local_mountpoint(dentry))
912dbc15
SW
3898 goto out;
3899
3900 error = security_inode_rmdir(dir, dentry);
3901 if (error)
3902 goto out;
3903
3904 error = dir->i_op->rmdir(dir, dentry);
3905 if (error)
3906 goto out;
3907
8767712f 3908 shrink_dcache_parent(dentry);
912dbc15
SW
3909 dentry->d_inode->i_flags |= S_DEAD;
3910 dont_mount(dentry);
8ed936b5 3911 detach_mounts(dentry);
116b9731 3912 fsnotify_rmdir(dir, dentry);
912dbc15
SW
3913
3914out:
5955102c 3915 inode_unlock(dentry->d_inode);
1d2ef590 3916 dput(dentry);
912dbc15 3917 if (!error)
1da177e4 3918 d_delete(dentry);
1da177e4
LT
3919 return error;
3920}
4d359507 3921EXPORT_SYMBOL(vfs_rmdir);
1da177e4 3922
f459dffa 3923long do_rmdir(int dfd, const char __user *pathname)
1da177e4
LT
3924{
3925 int error = 0;
91a27b2a 3926 struct filename *name;
1da177e4 3927 struct dentry *dentry;
f5beed75
AV
3928 struct path path;
3929 struct qstr last;
3930 int type;
c6ee9206
JL
3931 unsigned int lookup_flags = 0;
3932retry:
c1d4dd27
AV
3933 name = filename_parentat(dfd, getname(pathname), lookup_flags,
3934 &path, &last, &type);
91a27b2a
JL
3935 if (IS_ERR(name))
3936 return PTR_ERR(name);
1da177e4 3937
f5beed75 3938 switch (type) {
0612d9fb
OH
3939 case LAST_DOTDOT:
3940 error = -ENOTEMPTY;
3941 goto exit1;
3942 case LAST_DOT:
3943 error = -EINVAL;
3944 goto exit1;
3945 case LAST_ROOT:
3946 error = -EBUSY;
3947 goto exit1;
1da177e4 3948 }
0612d9fb 3949
f5beed75 3950 error = mnt_want_write(path.mnt);
c30dabfe
JK
3951 if (error)
3952 goto exit1;
0612d9fb 3953
5955102c 3954 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
f5beed75 3955 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
1da177e4 3956 error = PTR_ERR(dentry);
6902d925
DH
3957 if (IS_ERR(dentry))
3958 goto exit2;
e6bc45d6
TT
3959 if (!dentry->d_inode) {
3960 error = -ENOENT;
3961 goto exit3;
3962 }
f5beed75 3963 error = security_path_rmdir(&path, dentry);
be6d3e56 3964 if (error)
c30dabfe 3965 goto exit3;
f5beed75 3966 error = vfs_rmdir(path.dentry->d_inode, dentry);
0622753b 3967exit3:
6902d925
DH
3968 dput(dentry);
3969exit2:
5955102c 3970 inode_unlock(path.dentry->d_inode);
f5beed75 3971 mnt_drop_write(path.mnt);
1da177e4 3972exit1:
f5beed75 3973 path_put(&path);
1da177e4 3974 putname(name);
c6ee9206
JL
3975 if (retry_estale(error, lookup_flags)) {
3976 lookup_flags |= LOOKUP_REVAL;
3977 goto retry;
3978 }
1da177e4
LT
3979 return error;
3980}
3981
3cdad428 3982SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
5590ff0d
UD
3983{
3984 return do_rmdir(AT_FDCWD, pathname);
3985}
3986
b21996e3
BF
3987/**
3988 * vfs_unlink - unlink a filesystem object
3989 * @dir: parent directory
3990 * @dentry: victim
3991 * @delegated_inode: returns victim inode, if the inode is delegated.
3992 *
3993 * The caller must hold dir->i_mutex.
3994 *
3995 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3996 * return a reference to the inode in delegated_inode. The caller
3997 * should then break the delegation on that inode and retry. Because
3998 * breaking a delegation may take a long time, the caller should drop
3999 * dir->i_mutex before doing so.
4000 *
4001 * Alternatively, a caller may pass NULL for delegated_inode. This may
4002 * be appropriate for callers that expect the underlying filesystem not
4003 * to be NFS exported.
4004 */
4005int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
1da177e4 4006{
9accbb97 4007 struct inode *target = dentry->d_inode;
1da177e4
LT
4008 int error = may_delete(dir, dentry, 0);
4009
4010 if (error)
4011 return error;
4012
acfa4380 4013 if (!dir->i_op->unlink)
1da177e4
LT
4014 return -EPERM;
4015
5955102c 4016 inode_lock(target);
8ed936b5 4017 if (is_local_mountpoint(dentry))
1da177e4
LT
4018 error = -EBUSY;
4019 else {
4020 error = security_inode_unlink(dir, dentry);
bec1052e 4021 if (!error) {
5a14696c
BF
4022 error = try_break_deleg(target, delegated_inode);
4023 if (error)
b21996e3 4024 goto out;
1da177e4 4025 error = dir->i_op->unlink(dir, dentry);
8ed936b5 4026 if (!error) {
d83c49f3 4027 dont_mount(dentry);
8ed936b5 4028 detach_mounts(dentry);
116b9731 4029 fsnotify_unlink(dir, dentry);
8ed936b5 4030 }
bec1052e 4031 }
1da177e4 4032 }
b21996e3 4033out:
5955102c 4034 inode_unlock(target);
1da177e4
LT
4035
4036 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
4037 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
9accbb97 4038 fsnotify_link_count(target);
e234f35c 4039 d_delete(dentry);
1da177e4 4040 }
0eeca283 4041
1da177e4
LT
4042 return error;
4043}
4d359507 4044EXPORT_SYMBOL(vfs_unlink);
1da177e4
LT
4045
4046/*
4047 * Make sure that the actual truncation of the file will occur outside its
1b1dcc1b 4048 * directory's i_mutex. Truncate can take a long time if there is a lot of
1da177e4
LT
4049 * writeout happening, and we don't want to prevent access to the directory
4050 * while waiting on the I/O.
4051 */
da2f1362 4052long do_unlinkat(int dfd, struct filename *name)
1da177e4 4053{
2ad94ae6 4054 int error;
1da177e4 4055 struct dentry *dentry;
f5beed75
AV
4056 struct path path;
4057 struct qstr last;
4058 int type;
1da177e4 4059 struct inode *inode = NULL;
b21996e3 4060 struct inode *delegated_inode = NULL;
5d18f813
JL
4061 unsigned int lookup_flags = 0;
4062retry:
da2f1362 4063 name = filename_parentat(dfd, name, lookup_flags, &path, &last, &type);
91a27b2a
JL
4064 if (IS_ERR(name))
4065 return PTR_ERR(name);
2ad94ae6 4066
1da177e4 4067 error = -EISDIR;
f5beed75 4068 if (type != LAST_NORM)
1da177e4 4069 goto exit1;
0612d9fb 4070
f5beed75 4071 error = mnt_want_write(path.mnt);
c30dabfe
JK
4072 if (error)
4073 goto exit1;
b21996e3 4074retry_deleg:
5955102c 4075 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
f5beed75 4076 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
1da177e4
LT
4077 error = PTR_ERR(dentry);
4078 if (!IS_ERR(dentry)) {
4079 /* Why not before? Because we want correct error value */
f5beed75 4080 if (last.name[last.len])
50338b88 4081 goto slashes;
1da177e4 4082 inode = dentry->d_inode;
b18825a7 4083 if (d_is_negative(dentry))
e6bc45d6
TT
4084 goto slashes;
4085 ihold(inode);
f5beed75 4086 error = security_path_unlink(&path, dentry);
be6d3e56 4087 if (error)
c30dabfe 4088 goto exit2;
f5beed75 4089 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
c30dabfe 4090exit2:
1da177e4
LT
4091 dput(dentry);
4092 }
5955102c 4093 inode_unlock(path.dentry->d_inode);
1da177e4
LT
4094 if (inode)
4095 iput(inode); /* truncate the inode here */
b21996e3
BF
4096 inode = NULL;
4097 if (delegated_inode) {
5a14696c 4098 error = break_deleg_wait(&delegated_inode);
b21996e3
BF
4099 if (!error)
4100 goto retry_deleg;
4101 }
f5beed75 4102 mnt_drop_write(path.mnt);
1da177e4 4103exit1:
f5beed75 4104 path_put(&path);
5d18f813
JL
4105 if (retry_estale(error, lookup_flags)) {
4106 lookup_flags |= LOOKUP_REVAL;
4107 inode = NULL;
4108 goto retry;
4109 }
da2f1362 4110 putname(name);
1da177e4
LT
4111 return error;
4112
4113slashes:
b18825a7
DH
4114 if (d_is_negative(dentry))
4115 error = -ENOENT;
44b1d530 4116 else if (d_is_dir(dentry))
b18825a7
DH
4117 error = -EISDIR;
4118 else
4119 error = -ENOTDIR;
1da177e4
LT
4120 goto exit2;
4121}
4122
2e4d0924 4123SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
5590ff0d
UD
4124{
4125 if ((flag & ~AT_REMOVEDIR) != 0)
4126 return -EINVAL;
4127
4128 if (flag & AT_REMOVEDIR)
4129 return do_rmdir(dfd, pathname);
4130
da2f1362 4131 return do_unlinkat(dfd, getname(pathname));
5590ff0d
UD
4132}
4133
3480b257 4134SYSCALL_DEFINE1(unlink, const char __user *, pathname)
5590ff0d 4135{
da2f1362 4136 return do_unlinkat(AT_FDCWD, getname(pathname));
5590ff0d
UD
4137}
4138
db2e747b 4139int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
1da177e4 4140{
a95164d9 4141 int error = may_create(dir, dentry);
1da177e4
LT
4142
4143 if (error)
4144 return error;
4145
acfa4380 4146 if (!dir->i_op->symlink)
1da177e4
LT
4147 return -EPERM;
4148
4149 error = security_inode_symlink(dir, dentry, oldname);
4150 if (error)
4151 return error;
4152
1da177e4 4153 error = dir->i_op->symlink(dir, dentry, oldname);
a74574aa 4154 if (!error)
f38aa942 4155 fsnotify_create(dir, dentry);
1da177e4
LT
4156 return error;
4157}
4d359507 4158EXPORT_SYMBOL(vfs_symlink);
1da177e4 4159
b724e846
DB
4160long do_symlinkat(const char __user *oldname, int newdfd,
4161 const char __user *newname)
1da177e4 4162{
2ad94ae6 4163 int error;
91a27b2a 4164 struct filename *from;
6902d925 4165 struct dentry *dentry;
dae6ad8f 4166 struct path path;
f46d3567 4167 unsigned int lookup_flags = 0;
1da177e4
LT
4168
4169 from = getname(oldname);
2ad94ae6 4170 if (IS_ERR(from))
1da177e4 4171 return PTR_ERR(from);
f46d3567
JL
4172retry:
4173 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
6902d925
DH
4174 error = PTR_ERR(dentry);
4175 if (IS_ERR(dentry))
dae6ad8f 4176 goto out_putname;
6902d925 4177
91a27b2a 4178 error = security_path_symlink(&path, dentry, from->name);
a8104a9f 4179 if (!error)
91a27b2a 4180 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
921a1650 4181 done_path_create(&path, dentry);
f46d3567
JL
4182 if (retry_estale(error, lookup_flags)) {
4183 lookup_flags |= LOOKUP_REVAL;
4184 goto retry;
4185 }
6902d925 4186out_putname:
1da177e4
LT
4187 putname(from);
4188 return error;
4189}
4190
b724e846
DB
4191SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
4192 int, newdfd, const char __user *, newname)
4193{
4194 return do_symlinkat(oldname, newdfd, newname);
4195}
4196
3480b257 4197SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
5590ff0d 4198{
b724e846 4199 return do_symlinkat(oldname, AT_FDCWD, newname);
5590ff0d
UD
4200}
4201
146a8595
BF
4202/**
4203 * vfs_link - create a new link
4204 * @old_dentry: object to be linked
4205 * @dir: new parent
4206 * @new_dentry: where to create the new link
4207 * @delegated_inode: returns inode needing a delegation break
4208 *
4209 * The caller must hold dir->i_mutex
4210 *
4211 * If vfs_link discovers a delegation on the to-be-linked file in need
4212 * of breaking, it will return -EWOULDBLOCK and return a reference to the
4213 * inode in delegated_inode. The caller should then break the delegation
4214 * and retry. Because breaking a delegation may take a long time, the
4215 * caller should drop the i_mutex before doing so.
4216 *
4217 * Alternatively, a caller may pass NULL for delegated_inode. This may
4218 * be appropriate for callers that expect the underlying filesystem not
4219 * to be NFS exported.
4220 */
4221int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
1da177e4
LT
4222{
4223 struct inode *inode = old_dentry->d_inode;
8de52778 4224 unsigned max_links = dir->i_sb->s_max_links;
1da177e4
LT
4225 int error;
4226
4227 if (!inode)
4228 return -ENOENT;
4229
a95164d9 4230 error = may_create(dir, new_dentry);
1da177e4
LT
4231 if (error)
4232 return error;
4233
4234 if (dir->i_sb != inode->i_sb)
4235 return -EXDEV;
4236
4237 /*
4238 * A link to an append-only or immutable file cannot be created.
4239 */
4240 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4241 return -EPERM;
0bd23d09
EB
4242 /*
4243 * Updating the link count will likely cause i_uid and i_gid to
4244 * be writen back improperly if their true value is unknown to
4245 * the vfs.
4246 */
4247 if (HAS_UNMAPPED_ID(inode))
4248 return -EPERM;
acfa4380 4249 if (!dir->i_op->link)
1da177e4 4250 return -EPERM;
7e79eedb 4251 if (S_ISDIR(inode->i_mode))
1da177e4
LT
4252 return -EPERM;
4253
4254 error = security_inode_link(old_dentry, dir, new_dentry);
4255 if (error)
4256 return error;
4257
5955102c 4258 inode_lock(inode);
aae8a97d 4259 /* Make sure we don't allow creating hardlink to an unlinked file */
f4e0c30c 4260 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
aae8a97d 4261 error = -ENOENT;
8de52778
AV
4262 else if (max_links && inode->i_nlink >= max_links)
4263 error = -EMLINK;
146a8595
BF
4264 else {
4265 error = try_break_deleg(inode, delegated_inode);
4266 if (!error)
4267 error = dir->i_op->link(old_dentry, dir, new_dentry);
4268 }
f4e0c30c
AV
4269
4270 if (!error && (inode->i_state & I_LINKABLE)) {
4271 spin_lock(&inode->i_lock);
4272 inode->i_state &= ~I_LINKABLE;
4273 spin_unlock(&inode->i_lock);
4274 }
5955102c 4275 inode_unlock(inode);
e31e14ec 4276 if (!error)
7e79eedb 4277 fsnotify_link(dir, inode, new_dentry);
1da177e4
LT
4278 return error;
4279}
4d359507 4280EXPORT_SYMBOL(vfs_link);
1da177e4
LT
4281
4282/*
4283 * Hardlinks are often used in delicate situations. We avoid
4284 * security-related surprises by not following symlinks on the
4285 * newname. --KAB
4286 *
4287 * We don't follow them on the oldname either to be compatible
4288 * with linux 2.0, and to avoid hard-linking to directories
4289 * and other special files. --ADM
4290 */
46ea89eb
DB
4291int do_linkat(int olddfd, const char __user *oldname, int newdfd,
4292 const char __user *newname, int flags)
1da177e4
LT
4293{
4294 struct dentry *new_dentry;
dae6ad8f 4295 struct path old_path, new_path;
146a8595 4296 struct inode *delegated_inode = NULL;
11a7b371 4297 int how = 0;
1da177e4 4298 int error;
1da177e4 4299
11a7b371 4300 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
c04030e1 4301 return -EINVAL;
11a7b371 4302 /*
f0cc6ffb
LT
4303 * To use null names we require CAP_DAC_READ_SEARCH
4304 * This ensures that not everyone will be able to create
4305 * handlink using the passed filedescriptor.
11a7b371 4306 */
f0cc6ffb
LT
4307 if (flags & AT_EMPTY_PATH) {
4308 if (!capable(CAP_DAC_READ_SEARCH))
4309 return -ENOENT;
11a7b371 4310 how = LOOKUP_EMPTY;
f0cc6ffb 4311 }
11a7b371
AK
4312
4313 if (flags & AT_SYMLINK_FOLLOW)
4314 how |= LOOKUP_FOLLOW;
442e31ca 4315retry:
11a7b371 4316 error = user_path_at(olddfd, oldname, how, &old_path);
1da177e4 4317 if (error)
2ad94ae6
AV
4318 return error;
4319
442e31ca
JL
4320 new_dentry = user_path_create(newdfd, newname, &new_path,
4321 (how & LOOKUP_REVAL));
1da177e4 4322 error = PTR_ERR(new_dentry);
6902d925 4323 if (IS_ERR(new_dentry))
dae6ad8f
AV
4324 goto out;
4325
4326 error = -EXDEV;
4327 if (old_path.mnt != new_path.mnt)
4328 goto out_dput;
800179c9
KC
4329 error = may_linkat(&old_path);
4330 if (unlikely(error))
4331 goto out_dput;
dae6ad8f 4332 error = security_path_link(old_path.dentry, &new_path, new_dentry);
be6d3e56 4333 if (error)
a8104a9f 4334 goto out_dput;
146a8595 4335 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
75c3f29d 4336out_dput:
921a1650 4337 done_path_create(&new_path, new_dentry);
146a8595
BF
4338 if (delegated_inode) {
4339 error = break_deleg_wait(&delegated_inode);
d22e6338
OD
4340 if (!error) {
4341 path_put(&old_path);
146a8595 4342 goto retry;
d22e6338 4343 }
146a8595 4344 }
442e31ca 4345 if (retry_estale(error, how)) {
d22e6338 4346 path_put(&old_path);
442e31ca
JL
4347 how |= LOOKUP_REVAL;
4348 goto retry;
4349 }
1da177e4 4350out:
2d8f3038 4351 path_put(&old_path);
1da177e4
LT
4352
4353 return error;
4354}
4355
46ea89eb
DB
4356SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4357 int, newdfd, const char __user *, newname, int, flags)
4358{
4359 return do_linkat(olddfd, oldname, newdfd, newname, flags);
4360}
4361
3480b257 4362SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
5590ff0d 4363{
46ea89eb 4364 return do_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
5590ff0d
UD
4365}
4366
bc27027a
MS
4367/**
4368 * vfs_rename - rename a filesystem object
4369 * @old_dir: parent of source
4370 * @old_dentry: source
4371 * @new_dir: parent of destination
4372 * @new_dentry: destination
4373 * @delegated_inode: returns an inode needing a delegation break
520c8b16 4374 * @flags: rename flags
bc27027a
MS
4375 *
4376 * The caller must hold multiple mutexes--see lock_rename()).
4377 *
4378 * If vfs_rename discovers a delegation in need of breaking at either
4379 * the source or destination, it will return -EWOULDBLOCK and return a
4380 * reference to the inode in delegated_inode. The caller should then
4381 * break the delegation and retry. Because breaking a delegation may
4382 * take a long time, the caller should drop all locks before doing
4383 * so.
4384 *
4385 * Alternatively, a caller may pass NULL for delegated_inode. This may
4386 * be appropriate for callers that expect the underlying filesystem not
4387 * to be NFS exported.
4388 *
1da177e4
LT
4389 * The worst of all namespace operations - renaming directory. "Perverted"
4390 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4391 * Problems:
0117d427 4392 *
d03b29a2 4393 * a) we can get into loop creation.
1da177e4
LT
4394 * b) race potential - two innocent renames can create a loop together.
4395 * That's where 4.4 screws up. Current fix: serialization on
a11f3a05 4396 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
1da177e4 4397 * story.
6cedba89
BF
4398 * c) we have to lock _four_ objects - parents and victim (if it exists),
4399 * and source (if it is not a directory).
1b1dcc1b 4400 * And that - after we got ->i_mutex on parents (until then we don't know
1da177e4
LT
4401 * whether the target exists). Solution: try to be smart with locking
4402 * order for inodes. We rely on the fact that tree topology may change
a11f3a05 4403 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
1da177e4
LT
4404 * move will be locked. Thus we can rank directories by the tree
4405 * (ancestors first) and rank all non-directories after them.
4406 * That works since everybody except rename does "lock parent, lookup,
a11f3a05 4407 * lock child" and rename is under ->s_vfs_rename_mutex.
1da177e4
LT
4408 * HOWEVER, it relies on the assumption that any object with ->lookup()
4409 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4410 * we'd better make sure that there's no link(2) for them.
e4eaac06 4411 * d) conversion from fhandle to dentry may come in the wrong moment - when
1b1dcc1b 4412 * we are removing the target. Solution: we will have to grab ->i_mutex
1da177e4 4413 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
c41b20e7 4414 * ->i_mutex on parents, which works but leads to some truly excessive
1da177e4
LT
4415 * locking].
4416 */
bc27027a
MS
4417int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
4418 struct inode *new_dir, struct dentry *new_dentry,
520c8b16 4419 struct inode **delegated_inode, unsigned int flags)
1da177e4 4420{
bc27027a
MS
4421 int error;
4422 bool is_dir = d_is_dir(old_dentry);
bc27027a 4423 struct inode *source = old_dentry->d_inode;
9055cba7 4424 struct inode *target = new_dentry->d_inode;
da1ce067
MS
4425 bool new_is_dir = false;
4426 unsigned max_links = new_dir->i_sb->s_max_links;
49d31c2f 4427 struct name_snapshot old_name;
bc27027a 4428
8d3e2936 4429 if (source == target)
bc27027a
MS
4430 return 0;
4431
4432 error = may_delete(old_dir, old_dentry, is_dir);
4433 if (error)
4434 return error;
4435
da1ce067 4436 if (!target) {
bc27027a 4437 error = may_create(new_dir, new_dentry);
da1ce067
MS
4438 } else {
4439 new_is_dir = d_is_dir(new_dentry);
4440
4441 if (!(flags & RENAME_EXCHANGE))
4442 error = may_delete(new_dir, new_dentry, is_dir);
4443 else
4444 error = may_delete(new_dir, new_dentry, new_is_dir);
4445 }
bc27027a
MS
4446 if (error)
4447 return error;
4448
2773bf00 4449 if (!old_dir->i_op->rename)
bc27027a 4450 return -EPERM;
1da177e4
LT
4451
4452 /*
4453 * If we are going to change the parent - check write permissions,
4454 * we'll need to flip '..'.
4455 */
da1ce067
MS
4456 if (new_dir != old_dir) {
4457 if (is_dir) {
4458 error = inode_permission(source, MAY_WRITE);
4459 if (error)
4460 return error;
4461 }
4462 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4463 error = inode_permission(target, MAY_WRITE);
4464 if (error)
4465 return error;
4466 }
1da177e4
LT
4467 }
4468
0b3974eb
MS
4469 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4470 flags);
1da177e4
LT
4471 if (error)
4472 return error;
4473
49d31c2f 4474 take_dentry_name_snapshot(&old_name, old_dentry);
1d2ef590 4475 dget(new_dentry);
da1ce067 4476 if (!is_dir || (flags & RENAME_EXCHANGE))
bc27027a
MS
4477 lock_two_nondirectories(source, target);
4478 else if (target)
5955102c 4479 inode_lock(target);
9055cba7
SW
4480
4481 error = -EBUSY;
7af1364f 4482 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
9055cba7
SW
4483 goto out;
4484
da1ce067 4485 if (max_links && new_dir != old_dir) {
bc27027a 4486 error = -EMLINK;
da1ce067 4487 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
bc27027a 4488 goto out;
da1ce067
MS
4489 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4490 old_dir->i_nlink >= max_links)
4491 goto out;
4492 }
da1ce067 4493 if (!is_dir) {
bc27027a 4494 error = try_break_deleg(source, delegated_inode);
8e6d782c
BF
4495 if (error)
4496 goto out;
da1ce067
MS
4497 }
4498 if (target && !new_is_dir) {
4499 error = try_break_deleg(target, delegated_inode);
4500 if (error)
4501 goto out;
8e6d782c 4502 }
2773bf00 4503 error = old_dir->i_op->rename(old_dir, old_dentry,
18fc84da 4504 new_dir, new_dentry, flags);
51892bbb
SW
4505 if (error)
4506 goto out;
4507
da1ce067 4508 if (!(flags & RENAME_EXCHANGE) && target) {
8767712f
AV
4509 if (is_dir) {
4510 shrink_dcache_parent(new_dentry);
bc27027a 4511 target->i_flags |= S_DEAD;
8767712f 4512 }
51892bbb 4513 dont_mount(new_dentry);
8ed936b5 4514 detach_mounts(new_dentry);
bc27027a 4515 }
da1ce067
MS
4516 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4517 if (!(flags & RENAME_EXCHANGE))
4518 d_move(old_dentry, new_dentry);
4519 else
4520 d_exchange(old_dentry, new_dentry);
4521 }
51892bbb 4522out:
da1ce067 4523 if (!is_dir || (flags & RENAME_EXCHANGE))
bc27027a
MS
4524 unlock_two_nondirectories(source, target);
4525 else if (target)
5955102c 4526 inode_unlock(target);
1da177e4 4527 dput(new_dentry);
da1ce067 4528 if (!error) {
f4ec3a3d 4529 fsnotify_move(old_dir, new_dir, &old_name.name, is_dir,
da1ce067
MS
4530 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4531 if (flags & RENAME_EXCHANGE) {
f4ec3a3d 4532 fsnotify_move(new_dir, old_dir, &old_dentry->d_name,
da1ce067
MS
4533 new_is_dir, NULL, new_dentry);
4534 }
4535 }
49d31c2f 4536 release_dentry_name_snapshot(&old_name);
0eeca283 4537
1da177e4
LT
4538 return error;
4539}
4d359507 4540EXPORT_SYMBOL(vfs_rename);
1da177e4 4541
ee81feb6
DB
4542static int do_renameat2(int olddfd, const char __user *oldname, int newdfd,
4543 const char __user *newname, unsigned int flags)
1da177e4 4544{
2ad94ae6
AV
4545 struct dentry *old_dentry, *new_dentry;
4546 struct dentry *trap;
f5beed75
AV
4547 struct path old_path, new_path;
4548 struct qstr old_last, new_last;
4549 int old_type, new_type;
8e6d782c 4550 struct inode *delegated_inode = NULL;
91a27b2a
JL
4551 struct filename *from;
4552 struct filename *to;
f5beed75 4553 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
c6a94284 4554 bool should_retry = false;
2ad94ae6 4555 int error;
520c8b16 4556
0d7a8555 4557 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
da1ce067
MS
4558 return -EINVAL;
4559
0d7a8555
MS
4560 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4561 (flags & RENAME_EXCHANGE))
520c8b16
MS
4562 return -EINVAL;
4563
0d7a8555
MS
4564 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4565 return -EPERM;
4566
f5beed75
AV
4567 if (flags & RENAME_EXCHANGE)
4568 target_flags = 0;
4569
c6a94284 4570retry:
c1d4dd27
AV
4571 from = filename_parentat(olddfd, getname(oldname), lookup_flags,
4572 &old_path, &old_last, &old_type);
91a27b2a
JL
4573 if (IS_ERR(from)) {
4574 error = PTR_ERR(from);
1da177e4 4575 goto exit;
91a27b2a 4576 }
1da177e4 4577
c1d4dd27
AV
4578 to = filename_parentat(newdfd, getname(newname), lookup_flags,
4579 &new_path, &new_last, &new_type);
91a27b2a
JL
4580 if (IS_ERR(to)) {
4581 error = PTR_ERR(to);
1da177e4 4582 goto exit1;
91a27b2a 4583 }
1da177e4
LT
4584
4585 error = -EXDEV;
f5beed75 4586 if (old_path.mnt != new_path.mnt)
1da177e4
LT
4587 goto exit2;
4588
1da177e4 4589 error = -EBUSY;
f5beed75 4590 if (old_type != LAST_NORM)
1da177e4
LT
4591 goto exit2;
4592
0a7c3937
MS
4593 if (flags & RENAME_NOREPLACE)
4594 error = -EEXIST;
f5beed75 4595 if (new_type != LAST_NORM)
1da177e4
LT
4596 goto exit2;
4597
f5beed75 4598 error = mnt_want_write(old_path.mnt);
c30dabfe
JK
4599 if (error)
4600 goto exit2;
4601
8e6d782c 4602retry_deleg:
f5beed75 4603 trap = lock_rename(new_path.dentry, old_path.dentry);
1da177e4 4604
f5beed75 4605 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
1da177e4
LT
4606 error = PTR_ERR(old_dentry);
4607 if (IS_ERR(old_dentry))
4608 goto exit3;
4609 /* source must exist */
4610 error = -ENOENT;
b18825a7 4611 if (d_is_negative(old_dentry))
1da177e4 4612 goto exit4;
f5beed75 4613 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
0a7c3937
MS
4614 error = PTR_ERR(new_dentry);
4615 if (IS_ERR(new_dentry))
4616 goto exit4;
4617 error = -EEXIST;
4618 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4619 goto exit5;
da1ce067
MS
4620 if (flags & RENAME_EXCHANGE) {
4621 error = -ENOENT;
4622 if (d_is_negative(new_dentry))
4623 goto exit5;
4624
4625 if (!d_is_dir(new_dentry)) {
4626 error = -ENOTDIR;
f5beed75 4627 if (new_last.name[new_last.len])
da1ce067
MS
4628 goto exit5;
4629 }
4630 }
1da177e4 4631 /* unless the source is a directory trailing slashes give -ENOTDIR */
44b1d530 4632 if (!d_is_dir(old_dentry)) {
1da177e4 4633 error = -ENOTDIR;
f5beed75 4634 if (old_last.name[old_last.len])
0a7c3937 4635 goto exit5;
f5beed75 4636 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
0a7c3937 4637 goto exit5;
1da177e4
LT
4638 }
4639 /* source should not be ancestor of target */
4640 error = -EINVAL;
4641 if (old_dentry == trap)
0a7c3937 4642 goto exit5;
1da177e4 4643 /* target should not be an ancestor of source */
da1ce067
MS
4644 if (!(flags & RENAME_EXCHANGE))
4645 error = -ENOTEMPTY;
1da177e4
LT
4646 if (new_dentry == trap)
4647 goto exit5;
4648
f5beed75
AV
4649 error = security_path_rename(&old_path, old_dentry,
4650 &new_path, new_dentry, flags);
be6d3e56 4651 if (error)
c30dabfe 4652 goto exit5;
f5beed75
AV
4653 error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4654 new_path.dentry->d_inode, new_dentry,
520c8b16 4655 &delegated_inode, flags);
1da177e4
LT
4656exit5:
4657 dput(new_dentry);
4658exit4:
4659 dput(old_dentry);
4660exit3:
f5beed75 4661 unlock_rename(new_path.dentry, old_path.dentry);
8e6d782c
BF
4662 if (delegated_inode) {
4663 error = break_deleg_wait(&delegated_inode);
4664 if (!error)
4665 goto retry_deleg;
4666 }
f5beed75 4667 mnt_drop_write(old_path.mnt);
1da177e4 4668exit2:
c6a94284
JL
4669 if (retry_estale(error, lookup_flags))
4670 should_retry = true;
f5beed75 4671 path_put(&new_path);
2ad94ae6 4672 putname(to);
1da177e4 4673exit1:
f5beed75 4674 path_put(&old_path);
1da177e4 4675 putname(from);
c6a94284
JL
4676 if (should_retry) {
4677 should_retry = false;
4678 lookup_flags |= LOOKUP_REVAL;
4679 goto retry;
4680 }
2ad94ae6 4681exit:
1da177e4
LT
4682 return error;
4683}
4684
ee81feb6
DB
4685SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4686 int, newdfd, const char __user *, newname, unsigned int, flags)
4687{
4688 return do_renameat2(olddfd, oldname, newdfd, newname, flags);
4689}
4690
520c8b16
MS
4691SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4692 int, newdfd, const char __user *, newname)
4693{
ee81feb6 4694 return do_renameat2(olddfd, oldname, newdfd, newname, 0);
520c8b16
MS
4695}
4696
a26eab24 4697SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
5590ff0d 4698{
ee81feb6 4699 return do_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
5590ff0d
UD
4700}
4701
787fb6bc
MS
4702int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4703{
4704 int error = may_create(dir, dentry);
4705 if (error)
4706 return error;
4707
4708 if (!dir->i_op->mknod)
4709 return -EPERM;
4710
4711 return dir->i_op->mknod(dir, dentry,
4712 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4713}
4714EXPORT_SYMBOL(vfs_whiteout);
4715
5d826c84 4716int readlink_copy(char __user *buffer, int buflen, const char *link)
1da177e4 4717{
5d826c84 4718 int len = PTR_ERR(link);
1da177e4
LT
4719 if (IS_ERR(link))
4720 goto out;
4721
4722 len = strlen(link);
4723 if (len > (unsigned) buflen)
4724 len = buflen;
4725 if (copy_to_user(buffer, link, len))
4726 len = -EFAULT;
4727out:
4728 return len;
4729}
4730
fd4a0edf
MS
4731/**
4732 * vfs_readlink - copy symlink body into userspace buffer
4733 * @dentry: dentry on which to get symbolic link
4734 * @buffer: user memory pointer
4735 * @buflen: size of buffer
4736 *
4737 * Does not touch atime. That's up to the caller if necessary
4738 *
4739 * Does not call security hook.
4740 */
4741int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4742{
4743 struct inode *inode = d_inode(dentry);
f2df5da6
AV
4744 DEFINE_DELAYED_CALL(done);
4745 const char *link;
4746 int res;
fd4a0edf 4747
76fca90e
MS
4748 if (unlikely(!(inode->i_opflags & IOP_DEFAULT_READLINK))) {
4749 if (unlikely(inode->i_op->readlink))
4750 return inode->i_op->readlink(dentry, buffer, buflen);
4751
4752 if (!d_is_symlink(dentry))
4753 return -EINVAL;
4754
4755 spin_lock(&inode->i_lock);
4756 inode->i_opflags |= IOP_DEFAULT_READLINK;
4757 spin_unlock(&inode->i_lock);
4758 }
fd4a0edf 4759
4c4f7c19 4760 link = READ_ONCE(inode->i_link);
f2df5da6
AV
4761 if (!link) {
4762 link = inode->i_op->get_link(dentry, inode, &done);
4763 if (IS_ERR(link))
4764 return PTR_ERR(link);
4765 }
4766 res = readlink_copy(buffer, buflen, link);
4767 do_delayed_call(&done);
4768 return res;
fd4a0edf
MS
4769}
4770EXPORT_SYMBOL(vfs_readlink);
1da177e4 4771
d60874cd
MS
4772/**
4773 * vfs_get_link - get symlink body
4774 * @dentry: dentry on which to get symbolic link
4775 * @done: caller needs to free returned data with this
4776 *
4777 * Calls security hook and i_op->get_link() on the supplied inode.
4778 *
4779 * It does not touch atime. That's up to the caller if necessary.
4780 *
4781 * Does not work on "special" symlinks like /proc/$$/fd/N
4782 */
4783const char *vfs_get_link(struct dentry *dentry, struct delayed_call *done)
4784{
4785 const char *res = ERR_PTR(-EINVAL);
4786 struct inode *inode = d_inode(dentry);
4787
4788 if (d_is_symlink(dentry)) {
4789 res = ERR_PTR(security_inode_readlink(dentry));
4790 if (!res)
4791 res = inode->i_op->get_link(dentry, inode, done);
4792 }
4793 return res;
4794}
4795EXPORT_SYMBOL(vfs_get_link);
4796
1da177e4 4797/* get the link contents into pagecache */
6b255391 4798const char *page_get_link(struct dentry *dentry, struct inode *inode,
fceef393 4799 struct delayed_call *callback)
1da177e4 4800{
ebd09abb
DG
4801 char *kaddr;
4802 struct page *page;
6b255391
AV
4803 struct address_space *mapping = inode->i_mapping;
4804
d3883d4f
AV
4805 if (!dentry) {
4806 page = find_get_page(mapping, 0);
4807 if (!page)
4808 return ERR_PTR(-ECHILD);
4809 if (!PageUptodate(page)) {
4810 put_page(page);
4811 return ERR_PTR(-ECHILD);
4812 }
4813 } else {
4814 page = read_mapping_page(mapping, 0, NULL);
4815 if (IS_ERR(page))
4816 return (char*)page;
4817 }
fceef393 4818 set_delayed_call(callback, page_put_link, page);
21fc61c7
AV
4819 BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM);
4820 kaddr = page_address(page);
6b255391 4821 nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1);
ebd09abb 4822 return kaddr;
1da177e4
LT
4823}
4824
6b255391 4825EXPORT_SYMBOL(page_get_link);
1da177e4 4826
fceef393 4827void page_put_link(void *arg)
1da177e4 4828{
fceef393 4829 put_page(arg);
1da177e4 4830}
4d359507 4831EXPORT_SYMBOL(page_put_link);
1da177e4 4832
aa80deab
AV
4833int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4834{
fceef393 4835 DEFINE_DELAYED_CALL(done);
6b255391
AV
4836 int res = readlink_copy(buffer, buflen,
4837 page_get_link(dentry, d_inode(dentry),
fceef393
AV
4838 &done));
4839 do_delayed_call(&done);
aa80deab
AV
4840 return res;
4841}
4842EXPORT_SYMBOL(page_readlink);
4843
54566b2c
NP
4844/*
4845 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4846 */
4847int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
1da177e4
LT
4848{
4849 struct address_space *mapping = inode->i_mapping;
0adb25d2 4850 struct page *page;
afddba49 4851 void *fsdata;
beb497ab 4852 int err;
c718a975 4853 unsigned int flags = 0;
54566b2c
NP
4854 if (nofs)
4855 flags |= AOP_FLAG_NOFS;
1da177e4 4856
7e53cac4 4857retry:
afddba49 4858 err = pagecache_write_begin(NULL, mapping, 0, len-1,
54566b2c 4859 flags, &page, &fsdata);
1da177e4 4860 if (err)
afddba49
NP
4861 goto fail;
4862
21fc61c7 4863 memcpy(page_address(page), symname, len-1);
afddba49
NP
4864
4865 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4866 page, fsdata);
1da177e4
LT
4867 if (err < 0)
4868 goto fail;
afddba49
NP
4869 if (err < len-1)
4870 goto retry;
4871
1da177e4
LT
4872 mark_inode_dirty(inode);
4873 return 0;
1da177e4
LT
4874fail:
4875 return err;
4876}
4d359507 4877EXPORT_SYMBOL(__page_symlink);
1da177e4 4878
0adb25d2
KK
4879int page_symlink(struct inode *inode, const char *symname, int len)
4880{
4881 return __page_symlink(inode, symname, len,
c62d2555 4882 !mapping_gfp_constraint(inode->i_mapping, __GFP_FS));
0adb25d2 4883}
4d359507 4884EXPORT_SYMBOL(page_symlink);
0adb25d2 4885
92e1d5be 4886const struct inode_operations page_symlink_inode_operations = {
6b255391 4887 .get_link = page_get_link,
1da177e4 4888};
1da177e4 4889EXPORT_SYMBOL(page_symlink_inode_operations);