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