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