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