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