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