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