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