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