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