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