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