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