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