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