namei: path_init() calling conventions change
[linux-2.6-block.git] / fs / namei.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/namei.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/*
8 * Some corrections by tytso.
9 */
10
11/* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
12 * lookup logic.
13 */
14/* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
15 */
16
17#include <linux/init.h>
630d9c47 18#include <linux/export.h>
44696908 19#include <linux/kernel.h>
1da177e4
LT
20#include <linux/slab.h>
21#include <linux/fs.h>
22#include <linux/namei.h>
1da177e4 23#include <linux/pagemap.h>
0eeca283 24#include <linux/fsnotify.h>
1da177e4
LT
25#include <linux/personality.h>
26#include <linux/security.h>
6146f0d5 27#include <linux/ima.h>
1da177e4
LT
28#include <linux/syscalls.h>
29#include <linux/mount.h>
30#include <linux/audit.h>
16f7e0fe 31#include <linux/capability.h>
834f2a4a 32#include <linux/file.h>
5590ff0d 33#include <linux/fcntl.h>
08ce5f16 34#include <linux/device_cgroup.h>
5ad4e53b 35#include <linux/fs_struct.h>
e77819e5 36#include <linux/posix_acl.h>
99d263d4 37#include <linux/hash.h>
1da177e4
LT
38#include <asm/uaccess.h>
39
e81e3f4d 40#include "internal.h"
c7105365 41#include "mount.h"
e81e3f4d 42
1da177e4
LT
43/* [Feb-1997 T. Schoebel-Theuer]
44 * Fundamental changes in the pathname lookup mechanisms (namei)
45 * were necessary because of omirr. The reason is that omirr needs
46 * to know the _real_ pathname, not the user-supplied one, in case
47 * of symlinks (and also when transname replacements occur).
48 *
49 * The new code replaces the old recursive symlink resolution with
50 * an iterative one (in case of non-nested symlink chains). It does
51 * this with calls to <fs>_follow_link().
52 * As a side effect, dir_namei(), _namei() and follow_link() are now
53 * replaced with a single function lookup_dentry() that can handle all
54 * the special cases of the former code.
55 *
56 * With the new dcache, the pathname is stored at each inode, at least as
57 * long as the refcount of the inode is positive. As a side effect, the
58 * size of the dcache depends on the inode cache and thus is dynamic.
59 *
60 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
61 * resolution to correspond with current state of the code.
62 *
63 * Note that the symlink resolution is not *completely* iterative.
64 * There is still a significant amount of tail- and mid- recursion in
65 * the algorithm. Also, note that <fs>_readlink() is not used in
66 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
67 * may return different results than <fs>_follow_link(). Many virtual
68 * filesystems (including /proc) exhibit this behavior.
69 */
70
71/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
72 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
73 * and the name already exists in form of a symlink, try to create the new
74 * name indicated by the symlink. The old code always complained that the
75 * name already exists, due to not following the symlink even if its target
76 * is nonexistent. The new semantics affects also mknod() and link() when
25985edc 77 * the name is a symlink pointing to a non-existent name.
1da177e4
LT
78 *
79 * I don't know which semantics is the right one, since I have no access
80 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
81 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
82 * "old" one. Personally, I think the new semantics is much more logical.
83 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
84 * file does succeed in both HP-UX and SunOs, but not in Solaris
85 * and in the old Linux semantics.
86 */
87
88/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
89 * semantics. See the comments in "open_namei" and "do_link" below.
90 *
91 * [10-Sep-98 Alan Modra] Another symlink change.
92 */
93
94/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
95 * inside the path - always follow.
96 * in the last component in creation/removal/renaming - never follow.
97 * if LOOKUP_FOLLOW passed - follow.
98 * if the pathname has trailing slashes - follow.
99 * otherwise - don't follow.
100 * (applied in that order).
101 *
102 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
103 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
104 * During the 2.4 we need to fix the userland stuff depending on it -
105 * hopefully we will be able to get rid of that wart in 2.5. So far only
106 * XEmacs seems to be relying on it...
107 */
108/*
109 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
a11f3a05 110 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
1da177e4
LT
111 * any extra contention...
112 */
113
114/* In order to reduce some races, while at the same time doing additional
115 * checking and hopefully speeding things up, we copy filenames to the
116 * kernel data space before using them..
117 *
118 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
119 * PATH_MAX includes the nul terminator --RR.
120 */
91a27b2a 121
fd2f7cb5 122#define EMBEDDED_NAME_MAX (PATH_MAX - offsetof(struct filename, iname))
7950e385 123
51f39a1f 124struct filename *
91a27b2a
JL
125getname_flags(const char __user *filename, int flags, int *empty)
126{
94b5d262 127 struct filename *result;
7950e385 128 char *kname;
94b5d262 129 int len;
4043cde8 130
7ac86265
JL
131 result = audit_reusename(filename);
132 if (result)
133 return result;
134
7950e385 135 result = __getname();
3f9f0aa6 136 if (unlikely(!result))
4043cde8
EP
137 return ERR_PTR(-ENOMEM);
138
7950e385
JL
139 /*
140 * First, try to embed the struct filename inside the names_cache
141 * allocation
142 */
fd2f7cb5 143 kname = (char *)result->iname;
91a27b2a 144 result->name = kname;
7950e385 145
94b5d262 146 len = strncpy_from_user(kname, filename, EMBEDDED_NAME_MAX);
91a27b2a 147 if (unlikely(len < 0)) {
94b5d262
AV
148 __putname(result);
149 return ERR_PTR(len);
91a27b2a 150 }
3f9f0aa6 151
7950e385
JL
152 /*
153 * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
154 * separate struct filename so we can dedicate the entire
155 * names_cache allocation for the pathname, and re-do the copy from
156 * userland.
157 */
94b5d262 158 if (unlikely(len == EMBEDDED_NAME_MAX)) {
fd2f7cb5 159 const size_t size = offsetof(struct filename, iname[1]);
7950e385
JL
160 kname = (char *)result;
161
fd2f7cb5
AV
162 /*
163 * size is chosen that way we to guarantee that
164 * result->iname[0] is within the same object and that
165 * kname can't be equal to result->iname, no matter what.
166 */
167 result = kzalloc(size, GFP_KERNEL);
94b5d262
AV
168 if (unlikely(!result)) {
169 __putname(kname);
170 return ERR_PTR(-ENOMEM);
7950e385
JL
171 }
172 result->name = kname;
94b5d262
AV
173 len = strncpy_from_user(kname, filename, PATH_MAX);
174 if (unlikely(len < 0)) {
175 __putname(kname);
176 kfree(result);
177 return ERR_PTR(len);
178 }
179 if (unlikely(len == PATH_MAX)) {
180 __putname(kname);
181 kfree(result);
182 return ERR_PTR(-ENAMETOOLONG);
183 }
7950e385
JL
184 }
185
94b5d262 186 result->refcnt = 1;
3f9f0aa6
LT
187 /* The empty path is special. */
188 if (unlikely(!len)) {
189 if (empty)
4043cde8 190 *empty = 1;
94b5d262
AV
191 if (!(flags & LOOKUP_EMPTY)) {
192 putname(result);
193 return ERR_PTR(-ENOENT);
194 }
1da177e4 195 }
3f9f0aa6 196
7950e385 197 result->uptr = filename;
c4ad8f98 198 result->aname = NULL;
7950e385
JL
199 audit_getname(result);
200 return result;
1da177e4
LT
201}
202
91a27b2a
JL
203struct filename *
204getname(const char __user * filename)
f52e0c11 205{
f7493e5d 206 return getname_flags(filename, 0, NULL);
f52e0c11
AV
207}
208
c4ad8f98
LT
209struct filename *
210getname_kernel(const char * filename)
211{
212 struct filename *result;
08518549 213 int len = strlen(filename) + 1;
c4ad8f98
LT
214
215 result = __getname();
216 if (unlikely(!result))
217 return ERR_PTR(-ENOMEM);
218
08518549 219 if (len <= EMBEDDED_NAME_MAX) {
fd2f7cb5 220 result->name = (char *)result->iname;
08518549
PM
221 } else if (len <= PATH_MAX) {
222 struct filename *tmp;
223
224 tmp = kmalloc(sizeof(*tmp), GFP_KERNEL);
225 if (unlikely(!tmp)) {
226 __putname(result);
227 return ERR_PTR(-ENOMEM);
228 }
229 tmp->name = (char *)result;
08518549
PM
230 result = tmp;
231 } else {
232 __putname(result);
233 return ERR_PTR(-ENAMETOOLONG);
234 }
235 memcpy((char *)result->name, filename, len);
c4ad8f98
LT
236 result->uptr = NULL;
237 result->aname = NULL;
55422d0b 238 result->refcnt = 1;
fd3522fd 239 audit_getname(result);
c4ad8f98 240
c4ad8f98
LT
241 return result;
242}
243
91a27b2a 244void putname(struct filename *name)
1da177e4 245{
55422d0b
PM
246 BUG_ON(name->refcnt <= 0);
247
248 if (--name->refcnt > 0)
249 return;
250
fd2f7cb5 251 if (name->name != name->iname) {
55422d0b
PM
252 __putname(name->name);
253 kfree(name);
254 } else
255 __putname(name);
1da177e4 256}
1da177e4 257
e77819e5
LT
258static int check_acl(struct inode *inode, int mask)
259{
84635d68 260#ifdef CONFIG_FS_POSIX_ACL
e77819e5
LT
261 struct posix_acl *acl;
262
e77819e5 263 if (mask & MAY_NOT_BLOCK) {
3567866b
AV
264 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
265 if (!acl)
e77819e5 266 return -EAGAIN;
3567866b
AV
267 /* no ->get_acl() calls in RCU mode... */
268 if (acl == ACL_NOT_CACHED)
269 return -ECHILD;
206b1d09 270 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
e77819e5
LT
271 }
272
2982baa2
CH
273 acl = get_acl(inode, ACL_TYPE_ACCESS);
274 if (IS_ERR(acl))
275 return PTR_ERR(acl);
e77819e5
LT
276 if (acl) {
277 int error = posix_acl_permission(inode, acl, mask);
278 posix_acl_release(acl);
279 return error;
280 }
84635d68 281#endif
e77819e5
LT
282
283 return -EAGAIN;
284}
285
5909ccaa 286/*
948409c7 287 * This does the basic permission checking
1da177e4 288 */
7e40145e 289static int acl_permission_check(struct inode *inode, int mask)
1da177e4 290{
26cf46be 291 unsigned int mode = inode->i_mode;
1da177e4 292
8e96e3b7 293 if (likely(uid_eq(current_fsuid(), inode->i_uid)))
1da177e4
LT
294 mode >>= 6;
295 else {
e77819e5 296 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
7e40145e 297 int error = check_acl(inode, mask);
b74c79e9
NP
298 if (error != -EAGAIN)
299 return error;
1da177e4
LT
300 }
301
302 if (in_group_p(inode->i_gid))
303 mode >>= 3;
304 }
305
306 /*
307 * If the DACs are ok we don't need any capability check.
308 */
9c2c7039 309 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
1da177e4 310 return 0;
5909ccaa
LT
311 return -EACCES;
312}
313
314/**
b74c79e9 315 * generic_permission - check for access rights on a Posix-like filesystem
5909ccaa 316 * @inode: inode to check access rights for
8fd90c8d 317 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
5909ccaa
LT
318 *
319 * Used to check for read/write/execute permissions on a file.
320 * We use "fsuid" for this, letting us set arbitrary permissions
321 * for filesystem access without changing the "normal" uids which
b74c79e9
NP
322 * are used for other things.
323 *
324 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
325 * request cannot be satisfied (eg. requires blocking or too much complexity).
326 * It would then be called again in ref-walk mode.
5909ccaa 327 */
2830ba7f 328int generic_permission(struct inode *inode, int mask)
5909ccaa
LT
329{
330 int ret;
331
332 /*
948409c7 333 * Do the basic permission checks.
5909ccaa 334 */
7e40145e 335 ret = acl_permission_check(inode, mask);
5909ccaa
LT
336 if (ret != -EACCES)
337 return ret;
1da177e4 338
d594e7ec
AV
339 if (S_ISDIR(inode->i_mode)) {
340 /* DACs are overridable for directories */
23adbe12 341 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
d594e7ec
AV
342 return 0;
343 if (!(mask & MAY_WRITE))
23adbe12
AL
344 if (capable_wrt_inode_uidgid(inode,
345 CAP_DAC_READ_SEARCH))
d594e7ec
AV
346 return 0;
347 return -EACCES;
348 }
1da177e4
LT
349 /*
350 * Read/write DACs are always overridable.
d594e7ec
AV
351 * Executable DACs are overridable when there is
352 * at least one exec bit set.
1da177e4 353 */
d594e7ec 354 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
23adbe12 355 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
1da177e4
LT
356 return 0;
357
358 /*
359 * Searching includes executable on directories, else just read.
360 */
7ea66001 361 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
d594e7ec 362 if (mask == MAY_READ)
23adbe12 363 if (capable_wrt_inode_uidgid(inode, CAP_DAC_READ_SEARCH))
1da177e4
LT
364 return 0;
365
366 return -EACCES;
367}
4d359507 368EXPORT_SYMBOL(generic_permission);
1da177e4 369
3ddcd056
LT
370/*
371 * We _really_ want to just do "generic_permission()" without
372 * even looking at the inode->i_op values. So we keep a cache
373 * flag in inode->i_opflags, that says "this has not special
374 * permission function, use the fast case".
375 */
376static inline int do_inode_permission(struct inode *inode, int mask)
377{
378 if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
379 if (likely(inode->i_op->permission))
380 return inode->i_op->permission(inode, mask);
381
382 /* This gets set once for the inode lifetime */
383 spin_lock(&inode->i_lock);
384 inode->i_opflags |= IOP_FASTPERM;
385 spin_unlock(&inode->i_lock);
386 }
387 return generic_permission(inode, mask);
388}
389
cb23beb5 390/**
0bdaea90
DH
391 * __inode_permission - Check for access rights to a given inode
392 * @inode: Inode to check permission on
393 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
cb23beb5 394 *
0bdaea90 395 * Check for read/write/execute permissions on an inode.
948409c7
AG
396 *
397 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
0bdaea90
DH
398 *
399 * This does not check for a read-only file system. You probably want
400 * inode_permission().
cb23beb5 401 */
0bdaea90 402int __inode_permission(struct inode *inode, int mask)
1da177e4 403{
e6305c43 404 int retval;
1da177e4 405
3ddcd056 406 if (unlikely(mask & MAY_WRITE)) {
1da177e4
LT
407 /*
408 * Nobody gets write access to an immutable file.
409 */
410 if (IS_IMMUTABLE(inode))
411 return -EACCES;
412 }
413
3ddcd056 414 retval = do_inode_permission(inode, mask);
1da177e4
LT
415 if (retval)
416 return retval;
417
08ce5f16
SH
418 retval = devcgroup_inode_permission(inode, mask);
419 if (retval)
420 return retval;
421
d09ca739 422 return security_inode_permission(inode, mask);
1da177e4 423}
bd5d0856 424EXPORT_SYMBOL(__inode_permission);
1da177e4 425
0bdaea90
DH
426/**
427 * sb_permission - Check superblock-level permissions
428 * @sb: Superblock of inode to check permission on
55852635 429 * @inode: Inode to check permission on
0bdaea90
DH
430 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
431 *
432 * Separate out file-system wide checks from inode-specific permission checks.
433 */
434static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
435{
436 if (unlikely(mask & MAY_WRITE)) {
437 umode_t mode = inode->i_mode;
438
439 /* Nobody gets write access to a read-only fs. */
440 if ((sb->s_flags & MS_RDONLY) &&
441 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
442 return -EROFS;
443 }
444 return 0;
445}
446
447/**
448 * inode_permission - Check for access rights to a given inode
449 * @inode: Inode to check permission on
450 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
451 *
452 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
453 * this, letting us set arbitrary permissions for filesystem access without
454 * changing the "normal" UIDs which are used for other things.
455 *
456 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
457 */
458int inode_permission(struct inode *inode, int mask)
459{
460 int retval;
461
462 retval = sb_permission(inode->i_sb, inode, mask);
463 if (retval)
464 return retval;
465 return __inode_permission(inode, mask);
466}
4d359507 467EXPORT_SYMBOL(inode_permission);
0bdaea90 468
5dd784d0
JB
469/**
470 * path_get - get a reference to a path
471 * @path: path to get the reference to
472 *
473 * Given a path increment the reference count to the dentry and the vfsmount.
474 */
dcf787f3 475void path_get(const struct path *path)
5dd784d0
JB
476{
477 mntget(path->mnt);
478 dget(path->dentry);
479}
480EXPORT_SYMBOL(path_get);
481
1d957f9b
JB
482/**
483 * path_put - put a reference to a path
484 * @path: path to put the reference to
485 *
486 * Given a path decrement the reference count to the dentry and the vfsmount.
487 */
dcf787f3 488void path_put(const struct path *path)
1da177e4 489{
1d957f9b
JB
490 dput(path->dentry);
491 mntput(path->mnt);
1da177e4 492}
1d957f9b 493EXPORT_SYMBOL(path_put);
1da177e4 494
894bc8c4 495#define EMBEDDED_LEVELS 2
1f55a6ec
AV
496struct nameidata {
497 struct path path;
1cf2665b 498 struct qstr last;
1f55a6ec
AV
499 struct path root;
500 struct inode *inode; /* path.dentry.d_inode */
501 unsigned int flags;
502 unsigned seq, m_seq;
503 int last_type;
504 unsigned depth;
756daf26 505 int total_link_count;
697fc6ca
AV
506 struct saved {
507 struct path link;
508 void *cookie;
509 const char *name;
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
1d8e03d3 1973static int 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);
95fa25d9 1979 return 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);
95fa25d9 1986 return PTR_ERR(s);
1bc4b813 1987 }
9ea57b72 1988 if (unlikely(!s))
95fa25d9 1989 return 0;
8eff733a 1990 return link_path_walk(s, nd);
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);
2020 err = link_path_walk(s, nd);
8bcb77fa 2021 if (!err) {
191d7f73 2022 while ((err = lookup_last(nd)) > 0) {
1d8e03d3 2023 err = trailing_symlink(nd);
6d7b5aae
AV
2024 if (err)
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);
2404 err = link_path_walk(s, nd);
8033426e 2405 if (unlikely(err))
115cbfdc 2406 goto out;
8033426e 2407
191d7f73 2408 while ((err = mountpoint_last(nd, path)) > 0) {
1d8e03d3 2409 err = trailing_symlink(nd);
8033426e
JL
2410 if (err)
2411 break;
8033426e
JL
2412 }
2413out:
46afd6f6 2414 path_cleanup(nd);
8033426e
JL
2415 return err;
2416}
2417
2d864651 2418static int
668696dc 2419filename_mountpoint(int dfd, struct filename *name, struct path *path,
2d864651
AV
2420 unsigned int flags)
2421{
756daf26 2422 struct nameidata nd, *saved;
cbaab2db 2423 int error;
668696dc
AV
2424 if (IS_ERR(name))
2425 return PTR_ERR(name);
756daf26 2426 saved = set_nameidata(&nd);
46afd6f6 2427 error = path_mountpoint(dfd, name, path, &nd, flags | LOOKUP_RCU);
2d864651 2428 if (unlikely(error == -ECHILD))
46afd6f6 2429 error = path_mountpoint(dfd, name, path, &nd, flags);
2d864651 2430 if (unlikely(error == -ESTALE))
46afd6f6 2431 error = path_mountpoint(dfd, name, path, &nd, flags | LOOKUP_REVAL);
2d864651 2432 if (likely(!error))
668696dc 2433 audit_inode(name, path->dentry, 0);
756daf26 2434 restore_nameidata(saved);
668696dc 2435 putname(name);
2d864651
AV
2436 return error;
2437}
2438
8033426e 2439/**
197df04c 2440 * user_path_mountpoint_at - lookup a path from userland in order to umount it
8033426e
JL
2441 * @dfd: directory file descriptor
2442 * @name: pathname from userland
2443 * @flags: lookup flags
2444 * @path: pointer to container to hold result
2445 *
2446 * A umount is a special case for path walking. We're not actually interested
2447 * in the inode in this situation, and ESTALE errors can be a problem. We
2448 * simply want track down the dentry and vfsmount attached at the mountpoint
2449 * and avoid revalidating the last component.
2450 *
2451 * Returns 0 and populates "path" on success.
2452 */
2453int
197df04c 2454user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
8033426e
JL
2455 struct path *path)
2456{
cbaab2db 2457 return filename_mountpoint(dfd, getname(name), path, flags);
8033426e
JL
2458}
2459
2d864651
AV
2460int
2461kern_path_mountpoint(int dfd, const char *name, struct path *path,
2462 unsigned int flags)
2463{
cbaab2db 2464 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
2d864651
AV
2465}
2466EXPORT_SYMBOL(kern_path_mountpoint);
2467
cbdf35bc 2468int __check_sticky(struct inode *dir, struct inode *inode)
1da177e4 2469{
8e96e3b7 2470 kuid_t fsuid = current_fsuid();
da9592ed 2471
8e96e3b7 2472 if (uid_eq(inode->i_uid, fsuid))
1da177e4 2473 return 0;
8e96e3b7 2474 if (uid_eq(dir->i_uid, fsuid))
1da177e4 2475 return 0;
23adbe12 2476 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
1da177e4 2477}
cbdf35bc 2478EXPORT_SYMBOL(__check_sticky);
1da177e4
LT
2479
2480/*
2481 * Check whether we can remove a link victim from directory dir, check
2482 * whether the type of victim is right.
2483 * 1. We can't do it if dir is read-only (done in permission())
2484 * 2. We should have write and exec permissions on dir
2485 * 3. We can't remove anything from append-only dir
2486 * 4. We can't do anything with immutable dir (done in permission())
2487 * 5. If the sticky bit on dir is set we should either
2488 * a. be owner of dir, or
2489 * b. be owner of victim, or
2490 * c. have CAP_FOWNER capability
2491 * 6. If the victim is append-only or immutable we can't do antyhing with
2492 * links pointing to it.
2493 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2494 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2495 * 9. We can't remove a root or mountpoint.
2496 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2497 * nfs_async_unlink().
2498 */
b18825a7 2499static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
1da177e4 2500{
b18825a7 2501 struct inode *inode = victim->d_inode;
1da177e4
LT
2502 int error;
2503
b18825a7 2504 if (d_is_negative(victim))
1da177e4 2505 return -ENOENT;
b18825a7 2506 BUG_ON(!inode);
1da177e4
LT
2507
2508 BUG_ON(victim->d_parent->d_inode != dir);
4fa6b5ec 2509 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
1da177e4 2510
f419a2e3 2511 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
2512 if (error)
2513 return error;
2514 if (IS_APPEND(dir))
2515 return -EPERM;
b18825a7
DH
2516
2517 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
2518 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode))
1da177e4
LT
2519 return -EPERM;
2520 if (isdir) {
44b1d530 2521 if (!d_is_dir(victim))
1da177e4
LT
2522 return -ENOTDIR;
2523 if (IS_ROOT(victim))
2524 return -EBUSY;
44b1d530 2525 } else if (d_is_dir(victim))
1da177e4
LT
2526 return -EISDIR;
2527 if (IS_DEADDIR(dir))
2528 return -ENOENT;
2529 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2530 return -EBUSY;
2531 return 0;
2532}
2533
2534/* Check whether we can create an object with dentry child in directory
2535 * dir.
2536 * 1. We can't do it if child already exists (open has special treatment for
2537 * this case, but since we are inlined it's OK)
2538 * 2. We can't do it if dir is read-only (done in permission())
2539 * 3. We should have write and exec permissions on dir
2540 * 4. We can't do it if dir is immutable (done in permission())
2541 */
a95164d9 2542static inline int may_create(struct inode *dir, struct dentry *child)
1da177e4 2543{
14e972b4 2544 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
1da177e4
LT
2545 if (child->d_inode)
2546 return -EEXIST;
2547 if (IS_DEADDIR(dir))
2548 return -ENOENT;
f419a2e3 2549 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
2550}
2551
1da177e4
LT
2552/*
2553 * p1 and p2 should be directories on the same fs.
2554 */
2555struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2556{
2557 struct dentry *p;
2558
2559 if (p1 == p2) {
f2eace23 2560 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1da177e4
LT
2561 return NULL;
2562 }
2563
a11f3a05 2564 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4 2565
e2761a11
OH
2566 p = d_ancestor(p2, p1);
2567 if (p) {
2568 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2569 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2570 return p;
1da177e4
LT
2571 }
2572
e2761a11
OH
2573 p = d_ancestor(p1, p2);
2574 if (p) {
2575 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2576 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2577 return p;
1da177e4
LT
2578 }
2579
f2eace23 2580 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
d1b72cc6 2581 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT2);
1da177e4
LT
2582 return NULL;
2583}
4d359507 2584EXPORT_SYMBOL(lock_rename);
1da177e4
LT
2585
2586void unlock_rename(struct dentry *p1, struct dentry *p2)
2587{
1b1dcc1b 2588 mutex_unlock(&p1->d_inode->i_mutex);
1da177e4 2589 if (p1 != p2) {
1b1dcc1b 2590 mutex_unlock(&p2->d_inode->i_mutex);
a11f3a05 2591 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4
LT
2592 }
2593}
4d359507 2594EXPORT_SYMBOL(unlock_rename);
1da177e4 2595
4acdaf27 2596int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
312b63fb 2597 bool want_excl)
1da177e4 2598{
a95164d9 2599 int error = may_create(dir, dentry);
1da177e4
LT
2600 if (error)
2601 return error;
2602
acfa4380 2603 if (!dir->i_op->create)
1da177e4
LT
2604 return -EACCES; /* shouldn't it be ENOSYS? */
2605 mode &= S_IALLUGO;
2606 mode |= S_IFREG;
2607 error = security_inode_create(dir, dentry, mode);
2608 if (error)
2609 return error;
312b63fb 2610 error = dir->i_op->create(dir, dentry, mode, want_excl);
a74574aa 2611 if (!error)
f38aa942 2612 fsnotify_create(dir, dentry);
1da177e4
LT
2613 return error;
2614}
4d359507 2615EXPORT_SYMBOL(vfs_create);
1da177e4 2616
73d049a4 2617static int may_open(struct path *path, int acc_mode, int flag)
1da177e4 2618{
3fb64190 2619 struct dentry *dentry = path->dentry;
1da177e4
LT
2620 struct inode *inode = dentry->d_inode;
2621 int error;
2622
bcda7652
AV
2623 /* O_PATH? */
2624 if (!acc_mode)
2625 return 0;
2626
1da177e4
LT
2627 if (!inode)
2628 return -ENOENT;
2629
c8fe8f30
CH
2630 switch (inode->i_mode & S_IFMT) {
2631 case S_IFLNK:
1da177e4 2632 return -ELOOP;
c8fe8f30
CH
2633 case S_IFDIR:
2634 if (acc_mode & MAY_WRITE)
2635 return -EISDIR;
2636 break;
2637 case S_IFBLK:
2638 case S_IFCHR:
3fb64190 2639 if (path->mnt->mnt_flags & MNT_NODEV)
1da177e4 2640 return -EACCES;
c8fe8f30
CH
2641 /*FALLTHRU*/
2642 case S_IFIFO:
2643 case S_IFSOCK:
1da177e4 2644 flag &= ~O_TRUNC;
c8fe8f30 2645 break;
4a3fd211 2646 }
b41572e9 2647
3fb64190 2648 error = inode_permission(inode, acc_mode);
b41572e9
DH
2649 if (error)
2650 return error;
6146f0d5 2651
1da177e4
LT
2652 /*
2653 * An append-only file must be opened in append mode for writing.
2654 */
2655 if (IS_APPEND(inode)) {
8737c930 2656 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
7715b521 2657 return -EPERM;
1da177e4 2658 if (flag & O_TRUNC)
7715b521 2659 return -EPERM;
1da177e4
LT
2660 }
2661
2662 /* O_NOATIME can only be set by the owner or superuser */
2e149670 2663 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
7715b521 2664 return -EPERM;
1da177e4 2665
f3c7691e 2666 return 0;
7715b521 2667}
1da177e4 2668
e1181ee6 2669static int handle_truncate(struct file *filp)
7715b521 2670{
e1181ee6 2671 struct path *path = &filp->f_path;
7715b521
AV
2672 struct inode *inode = path->dentry->d_inode;
2673 int error = get_write_access(inode);
2674 if (error)
2675 return error;
2676 /*
2677 * Refuse to truncate files with mandatory locks held on them.
2678 */
d7a06983 2679 error = locks_verify_locked(filp);
7715b521 2680 if (!error)
ea0d3ab2 2681 error = security_path_truncate(path);
7715b521
AV
2682 if (!error) {
2683 error = do_truncate(path->dentry, 0,
2684 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
e1181ee6 2685 filp);
7715b521
AV
2686 }
2687 put_write_access(inode);
acd0c935 2688 return error;
1da177e4
LT
2689}
2690
d57999e1
DH
2691static inline int open_to_namei_flags(int flag)
2692{
8a5e929d
AV
2693 if ((flag & O_ACCMODE) == 3)
2694 flag--;
d57999e1
DH
2695 return flag;
2696}
2697
d18e9008
MS
2698static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2699{
2700 int error = security_path_mknod(dir, dentry, mode, 0);
2701 if (error)
2702 return error;
2703
2704 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2705 if (error)
2706 return error;
2707
2708 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2709}
2710
1acf0af9
DH
2711/*
2712 * Attempt to atomically look up, create and open a file from a negative
2713 * dentry.
2714 *
2715 * Returns 0 if successful. The file will have been created and attached to
2716 * @file by the filesystem calling finish_open().
2717 *
2718 * Returns 1 if the file was looked up only or didn't need creating. The
2719 * caller will need to perform the open themselves. @path will have been
2720 * updated to point to the new dentry. This may be negative.
2721 *
2722 * Returns an error code otherwise.
2723 */
2675a4eb
AV
2724static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2725 struct path *path, struct file *file,
2726 const struct open_flags *op,
64894cf8 2727 bool got_write, bool need_lookup,
2675a4eb 2728 int *opened)
d18e9008
MS
2729{
2730 struct inode *dir = nd->path.dentry->d_inode;
2731 unsigned open_flag = open_to_namei_flags(op->open_flag);
2732 umode_t mode;
2733 int error;
2734 int acc_mode;
d18e9008
MS
2735 int create_error = 0;
2736 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
116cc022 2737 bool excl;
d18e9008
MS
2738
2739 BUG_ON(dentry->d_inode);
2740
2741 /* Don't create child dentry for a dead directory. */
2742 if (unlikely(IS_DEADDIR(dir))) {
2675a4eb 2743 error = -ENOENT;
d18e9008
MS
2744 goto out;
2745 }
2746
62b259d8 2747 mode = op->mode;
d18e9008
MS
2748 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2749 mode &= ~current_umask();
2750
116cc022
MS
2751 excl = (open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT);
2752 if (excl)
d18e9008 2753 open_flag &= ~O_TRUNC;
d18e9008
MS
2754
2755 /*
2756 * Checking write permission is tricky, bacuse we don't know if we are
2757 * going to actually need it: O_CREAT opens should work as long as the
2758 * file exists. But checking existence breaks atomicity. The trick is
2759 * to check access and if not granted clear O_CREAT from the flags.
2760 *
2761 * Another problem is returing the "right" error value (e.g. for an
2762 * O_EXCL open we want to return EEXIST not EROFS).
2763 */
64894cf8
AV
2764 if (((open_flag & (O_CREAT | O_TRUNC)) ||
2765 (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2766 if (!(open_flag & O_CREAT)) {
d18e9008
MS
2767 /*
2768 * No O_CREATE -> atomicity not a requirement -> fall
2769 * back to lookup + open
2770 */
2771 goto no_open;
2772 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2773 /* Fall back and fail with the right error */
64894cf8 2774 create_error = -EROFS;
d18e9008
MS
2775 goto no_open;
2776 } else {
2777 /* No side effects, safe to clear O_CREAT */
64894cf8 2778 create_error = -EROFS;
d18e9008
MS
2779 open_flag &= ~O_CREAT;
2780 }
2781 }
2782
2783 if (open_flag & O_CREAT) {
38227f78 2784 error = may_o_create(&nd->path, dentry, mode);
d18e9008
MS
2785 if (error) {
2786 create_error = error;
2787 if (open_flag & O_EXCL)
2788 goto no_open;
2789 open_flag &= ~O_CREAT;
2790 }
2791 }
2792
2793 if (nd->flags & LOOKUP_DIRECTORY)
2794 open_flag |= O_DIRECTORY;
2795
30d90494
AV
2796 file->f_path.dentry = DENTRY_NOT_SET;
2797 file->f_path.mnt = nd->path.mnt;
2798 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
47237687 2799 opened);
d9585277 2800 if (error < 0) {
d9585277
AV
2801 if (create_error && error == -ENOENT)
2802 error = create_error;
d18e9008
MS
2803 goto out;
2804 }
2805
d9585277 2806 if (error) { /* returned 1, that is */
30d90494 2807 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
2675a4eb 2808 error = -EIO;
d18e9008
MS
2809 goto out;
2810 }
30d90494 2811 if (file->f_path.dentry) {
d18e9008 2812 dput(dentry);
30d90494 2813 dentry = file->f_path.dentry;
d18e9008 2814 }
03da633a
AV
2815 if (*opened & FILE_CREATED)
2816 fsnotify_create(dir, dentry);
2817 if (!dentry->d_inode) {
2818 WARN_ON(*opened & FILE_CREATED);
2819 if (create_error) {
2820 error = create_error;
2821 goto out;
2822 }
2823 } else {
2824 if (excl && !(*opened & FILE_CREATED)) {
2825 error = -EEXIST;
2826 goto out;
2827 }
62b2ce96 2828 }
d18e9008
MS
2829 goto looked_up;
2830 }
2831
2832 /*
2833 * We didn't have the inode before the open, so check open permission
2834 * here.
2835 */
03da633a
AV
2836 acc_mode = op->acc_mode;
2837 if (*opened & FILE_CREATED) {
2838 WARN_ON(!(open_flag & O_CREAT));
2839 fsnotify_create(dir, dentry);
2840 acc_mode = MAY_OPEN;
2841 }
2675a4eb
AV
2842 error = may_open(&file->f_path, acc_mode, open_flag);
2843 if (error)
2844 fput(file);
d18e9008
MS
2845
2846out:
2847 dput(dentry);
2675a4eb 2848 return error;
d18e9008 2849
d18e9008
MS
2850no_open:
2851 if (need_lookup) {
72bd866a 2852 dentry = lookup_real(dir, dentry, nd->flags);
d18e9008 2853 if (IS_ERR(dentry))
2675a4eb 2854 return PTR_ERR(dentry);
d18e9008
MS
2855
2856 if (create_error) {
2857 int open_flag = op->open_flag;
2858
2675a4eb 2859 error = create_error;
d18e9008
MS
2860 if ((open_flag & O_EXCL)) {
2861 if (!dentry->d_inode)
2862 goto out;
2863 } else if (!dentry->d_inode) {
2864 goto out;
2865 } else if ((open_flag & O_TRUNC) &&
e36cb0b8 2866 d_is_reg(dentry)) {
d18e9008
MS
2867 goto out;
2868 }
2869 /* will fail later, go on to get the right error */
2870 }
2871 }
2872looked_up:
2873 path->dentry = dentry;
2874 path->mnt = nd->path.mnt;
2675a4eb 2875 return 1;
d18e9008
MS
2876}
2877
d58ffd35 2878/*
1acf0af9 2879 * Look up and maybe create and open the last component.
d58ffd35
MS
2880 *
2881 * Must be called with i_mutex held on parent.
2882 *
1acf0af9
DH
2883 * Returns 0 if the file was successfully atomically created (if necessary) and
2884 * opened. In this case the file will be returned attached to @file.
2885 *
2886 * Returns 1 if the file was not completely opened at this time, though lookups
2887 * and creations will have been performed and the dentry returned in @path will
2888 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
2889 * specified then a negative dentry may be returned.
2890 *
2891 * An error code is returned otherwise.
2892 *
2893 * FILE_CREATE will be set in @*opened if the dentry was created and will be
2894 * cleared otherwise prior to returning.
d58ffd35 2895 */
2675a4eb
AV
2896static int lookup_open(struct nameidata *nd, struct path *path,
2897 struct file *file,
2898 const struct open_flags *op,
64894cf8 2899 bool got_write, int *opened)
d58ffd35
MS
2900{
2901 struct dentry *dir = nd->path.dentry;
54ef4872 2902 struct inode *dir_inode = dir->d_inode;
d58ffd35
MS
2903 struct dentry *dentry;
2904 int error;
54ef4872 2905 bool need_lookup;
d58ffd35 2906
47237687 2907 *opened &= ~FILE_CREATED;
201f956e 2908 dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
d58ffd35 2909 if (IS_ERR(dentry))
2675a4eb 2910 return PTR_ERR(dentry);
d58ffd35 2911
d18e9008
MS
2912 /* Cached positive dentry: will open in f_op->open */
2913 if (!need_lookup && dentry->d_inode)
2914 goto out_no_open;
2915
2916 if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
64894cf8 2917 return atomic_open(nd, dentry, path, file, op, got_write,
47237687 2918 need_lookup, opened);
d18e9008
MS
2919 }
2920
54ef4872
MS
2921 if (need_lookup) {
2922 BUG_ON(dentry->d_inode);
2923
72bd866a 2924 dentry = lookup_real(dir_inode, dentry, nd->flags);
54ef4872 2925 if (IS_ERR(dentry))
2675a4eb 2926 return PTR_ERR(dentry);
54ef4872
MS
2927 }
2928
d58ffd35
MS
2929 /* Negative dentry, just create the file */
2930 if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
2931 umode_t mode = op->mode;
2932 if (!IS_POSIXACL(dir->d_inode))
2933 mode &= ~current_umask();
2934 /*
2935 * This write is needed to ensure that a
2936 * rw->ro transition does not occur between
2937 * the time when the file is created and when
2938 * a permanent write count is taken through
015c3bbc 2939 * the 'struct file' in finish_open().
d58ffd35 2940 */
64894cf8
AV
2941 if (!got_write) {
2942 error = -EROFS;
d58ffd35 2943 goto out_dput;
64894cf8 2944 }
47237687 2945 *opened |= FILE_CREATED;
d58ffd35
MS
2946 error = security_path_mknod(&nd->path, dentry, mode, 0);
2947 if (error)
2948 goto out_dput;
312b63fb
AV
2949 error = vfs_create(dir->d_inode, dentry, mode,
2950 nd->flags & LOOKUP_EXCL);
d58ffd35
MS
2951 if (error)
2952 goto out_dput;
2953 }
d18e9008 2954out_no_open:
d58ffd35
MS
2955 path->dentry = dentry;
2956 path->mnt = nd->path.mnt;
2675a4eb 2957 return 1;
d58ffd35
MS
2958
2959out_dput:
2960 dput(dentry);
2675a4eb 2961 return error;
d58ffd35
MS
2962}
2963
31e6b01f 2964/*
fe2d35ff 2965 * Handle the last step of open()
31e6b01f 2966 */
896475d5 2967static int do_last(struct nameidata *nd,
2675a4eb 2968 struct file *file, const struct open_flags *op,
669abf4e 2969 int *opened, struct filename *name)
fb1cc555 2970{
a1e28038 2971 struct dentry *dir = nd->path.dentry;
ca344a89 2972 int open_flag = op->open_flag;
77d660a8 2973 bool will_truncate = (open_flag & O_TRUNC) != 0;
64894cf8 2974 bool got_write = false;
bcda7652 2975 int acc_mode = op->acc_mode;
a1eb3315 2976 struct inode *inode;
16b1c1cd 2977 struct path save_parent = { .dentry = NULL, .mnt = NULL };
896475d5 2978 struct path path;
16b1c1cd 2979 bool retried = false;
16c2cd71 2980 int error;
1f36f774 2981
c3e380b0
AV
2982 nd->flags &= ~LOOKUP_PARENT;
2983 nd->flags |= op->intent;
2984
bc77daa7 2985 if (nd->last_type != LAST_NORM) {
fe2d35ff 2986 error = handle_dots(nd, nd->last_type);
70291aec
AV
2987 if (unlikely(error)) {
2988 terminate_walk(nd);
2675a4eb 2989 return error;
70291aec 2990 }
e83db167 2991 goto finish_open;
1f36f774 2992 }
67ee3ad2 2993
ca344a89 2994 if (!(open_flag & O_CREAT)) {
fe2d35ff
AV
2995 if (nd->last.name[nd->last.len])
2996 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2997 /* we _can_ be in RCU mode here */
896475d5 2998 error = lookup_fast(nd, &path, &inode);
71574865
MS
2999 if (likely(!error))
3000 goto finish_lookup;
3001
3002 if (error < 0)
2675a4eb 3003 goto out;
71574865
MS
3004
3005 BUG_ON(nd->inode != dir->d_inode);
b6183df7
MS
3006 } else {
3007 /* create side of things */
3008 /*
3009 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3010 * has been cleared when we got to the last component we are
3011 * about to look up
3012 */
3013 error = complete_walk(nd);
e8bb73df 3014 if (error)
2675a4eb 3015 return error;
fe2d35ff 3016
33e2208a 3017 audit_inode(name, dir, LOOKUP_PARENT);
b6183df7
MS
3018 error = -EISDIR;
3019 /* trailing slashes? */
3020 if (nd->last.name[nd->last.len])
2675a4eb 3021 goto out;
b6183df7 3022 }
a2c36b45 3023
16b1c1cd 3024retry_lookup:
64894cf8
AV
3025 if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
3026 error = mnt_want_write(nd->path.mnt);
3027 if (!error)
3028 got_write = true;
3029 /*
3030 * do _not_ fail yet - we might not need that or fail with
3031 * a different error; let lookup_open() decide; we'll be
3032 * dropping this one anyway.
3033 */
3034 }
a1e28038 3035 mutex_lock(&dir->d_inode->i_mutex);
896475d5 3036 error = lookup_open(nd, &path, file, op, got_write, opened);
d58ffd35 3037 mutex_unlock(&dir->d_inode->i_mutex);
a1e28038 3038
2675a4eb
AV
3039 if (error <= 0) {
3040 if (error)
d18e9008
MS
3041 goto out;
3042
47237687 3043 if ((*opened & FILE_CREATED) ||
496ad9aa 3044 !S_ISREG(file_inode(file)->i_mode))
77d660a8 3045 will_truncate = false;
d18e9008 3046
adb5c247 3047 audit_inode(name, file->f_path.dentry, 0);
d18e9008
MS
3048 goto opened;
3049 }
fb1cc555 3050
47237687 3051 if (*opened & FILE_CREATED) {
9b44f1b3 3052 /* Don't check for write permission, don't truncate */
ca344a89 3053 open_flag &= ~O_TRUNC;
77d660a8 3054 will_truncate = false;
bcda7652 3055 acc_mode = MAY_OPEN;
896475d5 3056 path_to_nameidata(&path, nd);
e83db167 3057 goto finish_open_created;
fb1cc555
AV
3058 }
3059
3060 /*
3134f37e 3061 * create/update audit record if it already exists.
fb1cc555 3062 */
896475d5
AV
3063 if (d_is_positive(path.dentry))
3064 audit_inode(name, path.dentry, 0);
fb1cc555 3065
d18e9008
MS
3066 /*
3067 * If atomic_open() acquired write access it is dropped now due to
3068 * possible mount and symlink following (this might be optimized away if
3069 * necessary...)
3070 */
64894cf8 3071 if (got_write) {
d18e9008 3072 mnt_drop_write(nd->path.mnt);
64894cf8 3073 got_write = false;
d18e9008
MS
3074 }
3075
fb1cc555 3076 error = -EEXIST;
f8310c59 3077 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))
fb1cc555
AV
3078 goto exit_dput;
3079
756daf26 3080 error = follow_managed(&path, nd);
9875cf80 3081 if (error < 0)
8402752e 3082 goto out;
a3fbbde7 3083
decf3400 3084 BUG_ON(nd->flags & LOOKUP_RCU);
896475d5 3085 inode = path.dentry->d_inode;
fb1cc555 3086 error = -ENOENT;
896475d5
AV
3087 if (d_is_negative(path.dentry)) {
3088 path_to_nameidata(&path, nd);
2675a4eb 3089 goto out;
54c33e7f 3090 }
766c4cbf 3091finish_lookup:
d63ff28f
AV
3092 if (nd->depth)
3093 put_link(nd);
3094 error = should_follow_link(nd, &path, nd->flags & LOOKUP_FOLLOW);
3095 if (unlikely(error)) {
3096 if (error < 0)
3097 goto out;
3098 return error;
d45ea867 3099 }
fb1cc555 3100
896475d5
AV
3101 if (unlikely(d_is_symlink(path.dentry)) && !(open_flag & O_PATH)) {
3102 path_to_nameidata(&path, nd);
a5cfe2d5
AV
3103 error = -ELOOP;
3104 goto out;
3105 }
3106
896475d5
AV
3107 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path.mnt) {
3108 path_to_nameidata(&path, nd);
16b1c1cd
MS
3109 } else {
3110 save_parent.dentry = nd->path.dentry;
896475d5
AV
3111 save_parent.mnt = mntget(path.mnt);
3112 nd->path.dentry = path.dentry;
16b1c1cd
MS
3113
3114 }
decf3400 3115 nd->inode = inode;
a3fbbde7 3116 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
bc77daa7 3117finish_open:
a3fbbde7 3118 error = complete_walk(nd);
16b1c1cd
MS
3119 if (error) {
3120 path_put(&save_parent);
2675a4eb 3121 return error;
16b1c1cd 3122 }
bc77daa7 3123 audit_inode(name, nd->path.dentry, 0);
fb1cc555 3124 error = -EISDIR;
44b1d530 3125 if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
2675a4eb 3126 goto out;
af2f5542 3127 error = -ENOTDIR;
44b1d530 3128 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
2675a4eb 3129 goto out;
4bbcbd3b 3130 if (!d_is_reg(nd->path.dentry))
77d660a8 3131 will_truncate = false;
6c0d46c4 3132
0f9d1a10
AV
3133 if (will_truncate) {
3134 error = mnt_want_write(nd->path.mnt);
3135 if (error)
2675a4eb 3136 goto out;
64894cf8 3137 got_write = true;
0f9d1a10 3138 }
e83db167 3139finish_open_created:
bcda7652 3140 error = may_open(&nd->path, acc_mode, open_flag);
ca344a89 3141 if (error)
2675a4eb 3142 goto out;
4aa7c634
MS
3143
3144 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3145 error = vfs_open(&nd->path, file, current_cred());
3146 if (!error) {
3147 *opened |= FILE_OPENED;
3148 } else {
30d90494 3149 if (error == -EOPENSTALE)
f60dc3db 3150 goto stale_open;
015c3bbc 3151 goto out;
f60dc3db 3152 }
a8277b9b 3153opened:
2675a4eb 3154 error = open_check_o_direct(file);
015c3bbc
MS
3155 if (error)
3156 goto exit_fput;
3034a146 3157 error = ima_file_check(file, op->acc_mode, *opened);
aa4caadb
MS
3158 if (error)
3159 goto exit_fput;
3160
3161 if (will_truncate) {
2675a4eb 3162 error = handle_truncate(file);
aa4caadb
MS
3163 if (error)
3164 goto exit_fput;
0f9d1a10 3165 }
ca344a89 3166out:
64894cf8 3167 if (got_write)
0f9d1a10 3168 mnt_drop_write(nd->path.mnt);
16b1c1cd 3169 path_put(&save_parent);
e276ae67 3170 terminate_walk(nd);
2675a4eb 3171 return error;
fb1cc555 3172
fb1cc555 3173exit_dput:
896475d5 3174 path_put_conditional(&path, nd);
ca344a89 3175 goto out;
015c3bbc 3176exit_fput:
2675a4eb
AV
3177 fput(file);
3178 goto out;
015c3bbc 3179
f60dc3db
MS
3180stale_open:
3181 /* If no saved parent or already retried then can't retry */
3182 if (!save_parent.dentry || retried)
3183 goto out;
3184
3185 BUG_ON(save_parent.dentry != dir);
3186 path_put(&nd->path);
3187 nd->path = save_parent;
3188 nd->inode = dir->d_inode;
3189 save_parent.mnt = NULL;
3190 save_parent.dentry = NULL;
64894cf8 3191 if (got_write) {
f60dc3db 3192 mnt_drop_write(nd->path.mnt);
64894cf8 3193 got_write = false;
f60dc3db
MS
3194 }
3195 retried = true;
3196 goto retry_lookup;
fb1cc555
AV
3197}
3198
60545d0d
AV
3199static int do_tmpfile(int dfd, struct filename *pathname,
3200 struct nameidata *nd, int flags,
3201 const struct open_flags *op,
3202 struct file *file, int *opened)
3203{
3204 static const struct qstr name = QSTR_INIT("/", 1);
3205 struct dentry *dentry, *child;
3206 struct inode *dir;
5eb6b495 3207 int error = path_lookupat(dfd, pathname,
60545d0d
AV
3208 flags | LOOKUP_DIRECTORY, nd);
3209 if (unlikely(error))
3210 return error;
3211 error = mnt_want_write(nd->path.mnt);
3212 if (unlikely(error))
3213 goto out;
3214 /* we want directory to be writable */
3215 error = inode_permission(nd->inode, MAY_WRITE | MAY_EXEC);
3216 if (error)
3217 goto out2;
3218 dentry = nd->path.dentry;
3219 dir = dentry->d_inode;
3220 if (!dir->i_op->tmpfile) {
3221 error = -EOPNOTSUPP;
3222 goto out2;
3223 }
3224 child = d_alloc(dentry, &name);
3225 if (unlikely(!child)) {
3226 error = -ENOMEM;
3227 goto out2;
3228 }
3229 nd->flags &= ~LOOKUP_DIRECTORY;
3230 nd->flags |= op->intent;
3231 dput(nd->path.dentry);
3232 nd->path.dentry = child;
3233 error = dir->i_op->tmpfile(dir, nd->path.dentry, op->mode);
3234 if (error)
3235 goto out2;
3236 audit_inode(pathname, nd->path.dentry, 0);
69a91c23
ER
3237 /* Don't check for other permissions, the inode was just created */
3238 error = may_open(&nd->path, MAY_OPEN, op->open_flag);
60545d0d
AV
3239 if (error)
3240 goto out2;
3241 file->f_path.mnt = nd->path.mnt;
3242 error = finish_open(file, nd->path.dentry, NULL, opened);
3243 if (error)
3244 goto out2;
3245 error = open_check_o_direct(file);
f4e0c30c 3246 if (error) {
60545d0d 3247 fput(file);
f4e0c30c
AV
3248 } else if (!(op->open_flag & O_EXCL)) {
3249 struct inode *inode = file_inode(file);
3250 spin_lock(&inode->i_lock);
3251 inode->i_state |= I_LINKABLE;
3252 spin_unlock(&inode->i_lock);
3253 }
60545d0d
AV
3254out2:
3255 mnt_drop_write(nd->path.mnt);
3256out:
3257 path_put(&nd->path);
3258 return error;
3259}
3260
669abf4e 3261static struct file *path_openat(int dfd, struct filename *pathname,
73d049a4 3262 struct nameidata *nd, const struct open_flags *op, int flags)
1da177e4 3263{
368ee9ba 3264 const char *s;
30d90494 3265 struct file *file;
47237687 3266 int opened = 0;
13aab428 3267 int error;
31e6b01f 3268
30d90494 3269 file = get_empty_filp();
1afc99be
AV
3270 if (IS_ERR(file))
3271 return file;
31e6b01f 3272
30d90494 3273 file->f_flags = op->open_flag;
31e6b01f 3274
bb458c64 3275 if (unlikely(file->f_flags & __O_TMPFILE)) {
60545d0d 3276 error = do_tmpfile(dfd, pathname, nd, flags, op, file, &opened);
f15133df 3277 goto out2;
60545d0d
AV
3278 }
3279
368ee9ba
AV
3280 s = path_init(dfd, pathname, flags, nd);
3281 if (IS_ERR(s)) {
3282 put_filp(file);
3283 return ERR_CAST(s);
3284 }
3285 error = link_path_walk(s, nd);
31e6b01f 3286 if (unlikely(error))
2675a4eb 3287 goto out;
1da177e4 3288
191d7f73 3289 while ((error = do_last(nd, file, op, &opened, pathname)) > 0) {
73d049a4 3290 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
1d8e03d3 3291 error = trailing_symlink(nd);
c3e380b0 3292 if (unlikely(error))
2675a4eb 3293 break;
806b681c 3294 }
10fa8e62 3295out:
893b7775 3296 path_cleanup(nd);
f15133df 3297out2:
2675a4eb
AV
3298 if (!(opened & FILE_OPENED)) {
3299 BUG_ON(!error);
30d90494 3300 put_filp(file);
16b1c1cd 3301 }
2675a4eb
AV
3302 if (unlikely(error)) {
3303 if (error == -EOPENSTALE) {
3304 if (flags & LOOKUP_RCU)
3305 error = -ECHILD;
3306 else
3307 error = -ESTALE;
3308 }
3309 file = ERR_PTR(error);
3310 }
3311 return file;
1da177e4
LT
3312}
3313
669abf4e 3314struct file *do_filp_open(int dfd, struct filename *pathname,
f9652e10 3315 const struct open_flags *op)
13aab428 3316{
756daf26 3317 struct nameidata nd, *saved_nd = set_nameidata(&nd);
f9652e10 3318 int flags = op->lookup_flags;
13aab428
AV
3319 struct file *filp;
3320
73d049a4 3321 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
13aab428 3322 if (unlikely(filp == ERR_PTR(-ECHILD)))
73d049a4 3323 filp = path_openat(dfd, pathname, &nd, op, flags);
13aab428 3324 if (unlikely(filp == ERR_PTR(-ESTALE)))
73d049a4 3325 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
756daf26 3326 restore_nameidata(saved_nd);
13aab428
AV
3327 return filp;
3328}
3329
73d049a4 3330struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
f9652e10 3331 const char *name, const struct open_flags *op)
73d049a4 3332{
756daf26 3333 struct nameidata nd, *saved_nd;
73d049a4 3334 struct file *file;
51689104 3335 struct filename *filename;
f9652e10 3336 int flags = op->lookup_flags | LOOKUP_ROOT;
73d049a4
AV
3337
3338 nd.root.mnt = mnt;
3339 nd.root.dentry = dentry;
3340
b18825a7 3341 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
73d049a4
AV
3342 return ERR_PTR(-ELOOP);
3343
51689104
PM
3344 filename = getname_kernel(name);
3345 if (unlikely(IS_ERR(filename)))
3346 return ERR_CAST(filename);
3347
756daf26 3348 saved_nd = set_nameidata(&nd);
51689104 3349 file = path_openat(-1, filename, &nd, op, flags | LOOKUP_RCU);
73d049a4 3350 if (unlikely(file == ERR_PTR(-ECHILD)))
51689104 3351 file = path_openat(-1, filename, &nd, op, flags);
73d049a4 3352 if (unlikely(file == ERR_PTR(-ESTALE)))
51689104 3353 file = path_openat(-1, filename, &nd, op, flags | LOOKUP_REVAL);
756daf26 3354 restore_nameidata(saved_nd);
51689104 3355 putname(filename);
73d049a4
AV
3356 return file;
3357}
3358
fa14a0b8 3359static struct dentry *filename_create(int dfd, struct filename *name,
1ac12b4b 3360 struct path *path, unsigned int lookup_flags)
1da177e4 3361{
c663e5d8 3362 struct dentry *dentry = ERR_PTR(-EEXIST);
ed75e95d 3363 struct nameidata nd;
c30dabfe 3364 int err2;
1ac12b4b
JL
3365 int error;
3366 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3367
3368 /*
3369 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3370 * other flags passed in are ignored!
3371 */
3372 lookup_flags &= LOOKUP_REVAL;
3373
8bcb77fa 3374 error = filename_parentat(dfd, name, lookup_flags, &nd);
ed75e95d
AV
3375 if (error)
3376 return ERR_PTR(error);
1da177e4 3377
c663e5d8
CH
3378 /*
3379 * Yucky last component or no last component at all?
3380 * (foo/., foo/.., /////)
3381 */
ed75e95d
AV
3382 if (nd.last_type != LAST_NORM)
3383 goto out;
3384 nd.flags &= ~LOOKUP_PARENT;
3385 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
c663e5d8 3386
c30dabfe
JK
3387 /* don't fail immediately if it's r/o, at least try to report other errors */
3388 err2 = mnt_want_write(nd.path.mnt);
c663e5d8
CH
3389 /*
3390 * Do the final lookup.
3391 */
ed75e95d 3392 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
6a9f40d6 3393 dentry = __lookup_hash(&nd.last, nd.path.dentry, nd.flags);
1da177e4 3394 if (IS_ERR(dentry))
a8104a9f 3395 goto unlock;
c663e5d8 3396
a8104a9f 3397 error = -EEXIST;
b18825a7 3398 if (d_is_positive(dentry))
a8104a9f 3399 goto fail;
b18825a7 3400
c663e5d8
CH
3401 /*
3402 * Special case - lookup gave negative, but... we had foo/bar/
3403 * From the vfs_mknod() POV we just have a negative dentry -
3404 * all is fine. Let's be bastards - you had / on the end, you've
3405 * been asking for (non-existent) directory. -ENOENT for you.
3406 */
ed75e95d 3407 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
a8104a9f 3408 error = -ENOENT;
ed75e95d 3409 goto fail;
e9baf6e5 3410 }
c30dabfe
JK
3411 if (unlikely(err2)) {
3412 error = err2;
a8104a9f 3413 goto fail;
c30dabfe 3414 }
ed75e95d 3415 *path = nd.path;
1da177e4 3416 return dentry;
1da177e4 3417fail:
a8104a9f
AV
3418 dput(dentry);
3419 dentry = ERR_PTR(error);
3420unlock:
ed75e95d 3421 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
c30dabfe
JK
3422 if (!err2)
3423 mnt_drop_write(nd.path.mnt);
ed75e95d
AV
3424out:
3425 path_put(&nd.path);
1da177e4
LT
3426 return dentry;
3427}
fa14a0b8
AV
3428
3429struct dentry *kern_path_create(int dfd, const char *pathname,
3430 struct path *path, unsigned int lookup_flags)
3431{
51689104
PM
3432 struct filename *filename = getname_kernel(pathname);
3433 struct dentry *res;
3434
3435 if (IS_ERR(filename))
3436 return ERR_CAST(filename);
3437 res = filename_create(dfd, filename, path, lookup_flags);
3438 putname(filename);
3439 return res;
fa14a0b8 3440}
dae6ad8f
AV
3441EXPORT_SYMBOL(kern_path_create);
3442
921a1650
AV
3443void done_path_create(struct path *path, struct dentry *dentry)
3444{
3445 dput(dentry);
3446 mutex_unlock(&path->dentry->d_inode->i_mutex);
a8104a9f 3447 mnt_drop_write(path->mnt);
921a1650
AV
3448 path_put(path);
3449}
3450EXPORT_SYMBOL(done_path_create);
3451
1ac12b4b
JL
3452struct dentry *user_path_create(int dfd, const char __user *pathname,
3453 struct path *path, unsigned int lookup_flags)
dae6ad8f 3454{
91a27b2a 3455 struct filename *tmp = getname(pathname);
dae6ad8f
AV
3456 struct dentry *res;
3457 if (IS_ERR(tmp))
3458 return ERR_CAST(tmp);
fa14a0b8 3459 res = filename_create(dfd, tmp, path, lookup_flags);
dae6ad8f
AV
3460 putname(tmp);
3461 return res;
3462}
3463EXPORT_SYMBOL(user_path_create);
3464
1a67aafb 3465int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
1da177e4 3466{
a95164d9 3467 int error = may_create(dir, dentry);
1da177e4
LT
3468
3469 if (error)
3470 return error;
3471
975d6b39 3472 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1da177e4
LT
3473 return -EPERM;
3474
acfa4380 3475 if (!dir->i_op->mknod)
1da177e4
LT
3476 return -EPERM;
3477
08ce5f16
SH
3478 error = devcgroup_inode_mknod(mode, dev);
3479 if (error)
3480 return error;
3481
1da177e4
LT
3482 error = security_inode_mknod(dir, dentry, mode, dev);
3483 if (error)
3484 return error;
3485
1da177e4 3486 error = dir->i_op->mknod(dir, dentry, mode, dev);
a74574aa 3487 if (!error)
f38aa942 3488 fsnotify_create(dir, dentry);
1da177e4
LT
3489 return error;
3490}
4d359507 3491EXPORT_SYMBOL(vfs_mknod);
1da177e4 3492
f69aac00 3493static int may_mknod(umode_t mode)
463c3197
DH
3494{
3495 switch (mode & S_IFMT) {
3496 case S_IFREG:
3497 case S_IFCHR:
3498 case S_IFBLK:
3499 case S_IFIFO:
3500 case S_IFSOCK:
3501 case 0: /* zero mode translates to S_IFREG */
3502 return 0;
3503 case S_IFDIR:
3504 return -EPERM;
3505 default:
3506 return -EINVAL;
3507 }
3508}
3509
8208a22b 3510SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
2e4d0924 3511 unsigned, dev)
1da177e4 3512{
2ad94ae6 3513 struct dentry *dentry;
dae6ad8f
AV
3514 struct path path;
3515 int error;
972567f1 3516 unsigned int lookup_flags = 0;
1da177e4 3517
8e4bfca1
AV
3518 error = may_mknod(mode);
3519 if (error)
3520 return error;
972567f1
JL
3521retry:
3522 dentry = user_path_create(dfd, filename, &path, lookup_flags);
dae6ad8f
AV
3523 if (IS_ERR(dentry))
3524 return PTR_ERR(dentry);
2ad94ae6 3525
dae6ad8f 3526 if (!IS_POSIXACL(path.dentry->d_inode))
ce3b0f8d 3527 mode &= ~current_umask();
dae6ad8f 3528 error = security_path_mknod(&path, dentry, mode, dev);
be6d3e56 3529 if (error)
a8104a9f 3530 goto out;
463c3197 3531 switch (mode & S_IFMT) {
1da177e4 3532 case 0: case S_IFREG:
312b63fb 3533 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
1da177e4
LT
3534 break;
3535 case S_IFCHR: case S_IFBLK:
dae6ad8f 3536 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
1da177e4
LT
3537 new_decode_dev(dev));
3538 break;
3539 case S_IFIFO: case S_IFSOCK:
dae6ad8f 3540 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
1da177e4 3541 break;
1da177e4 3542 }
a8104a9f 3543out:
921a1650 3544 done_path_create(&path, dentry);
972567f1
JL
3545 if (retry_estale(error, lookup_flags)) {
3546 lookup_flags |= LOOKUP_REVAL;
3547 goto retry;
3548 }
1da177e4
LT
3549 return error;
3550}
3551
8208a22b 3552SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
5590ff0d
UD
3553{
3554 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3555}
3556
18bb1db3 3557int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1da177e4 3558{
a95164d9 3559 int error = may_create(dir, dentry);
8de52778 3560 unsigned max_links = dir->i_sb->s_max_links;
1da177e4
LT
3561
3562 if (error)
3563 return error;
3564
acfa4380 3565 if (!dir->i_op->mkdir)
1da177e4
LT
3566 return -EPERM;
3567
3568 mode &= (S_IRWXUGO|S_ISVTX);
3569 error = security_inode_mkdir(dir, dentry, mode);
3570 if (error)
3571 return error;
3572
8de52778
AV
3573 if (max_links && dir->i_nlink >= max_links)
3574 return -EMLINK;
3575
1da177e4 3576 error = dir->i_op->mkdir(dir, dentry, mode);
a74574aa 3577 if (!error)
f38aa942 3578 fsnotify_mkdir(dir, dentry);
1da177e4
LT
3579 return error;
3580}
4d359507 3581EXPORT_SYMBOL(vfs_mkdir);
1da177e4 3582
a218d0fd 3583SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
1da177e4 3584{
6902d925 3585 struct dentry *dentry;
dae6ad8f
AV
3586 struct path path;
3587 int error;
b76d8b82 3588 unsigned int lookup_flags = LOOKUP_DIRECTORY;
1da177e4 3589
b76d8b82
JL
3590retry:
3591 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
6902d925 3592 if (IS_ERR(dentry))
dae6ad8f 3593 return PTR_ERR(dentry);
1da177e4 3594
dae6ad8f 3595 if (!IS_POSIXACL(path.dentry->d_inode))
ce3b0f8d 3596 mode &= ~current_umask();
dae6ad8f 3597 error = security_path_mkdir(&path, dentry, mode);
a8104a9f
AV
3598 if (!error)
3599 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
921a1650 3600 done_path_create(&path, dentry);
b76d8b82
JL
3601 if (retry_estale(error, lookup_flags)) {
3602 lookup_flags |= LOOKUP_REVAL;
3603 goto retry;
3604 }
1da177e4
LT
3605 return error;
3606}
3607
a218d0fd 3608SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
5590ff0d
UD
3609{
3610 return sys_mkdirat(AT_FDCWD, pathname, mode);
3611}
3612
1da177e4 3613/*
a71905f0 3614 * The dentry_unhash() helper will try to drop the dentry early: we
c0d02594 3615 * should have a usage count of 1 if we're the only user of this
a71905f0
SW
3616 * dentry, and if that is true (possibly after pruning the dcache),
3617 * then we drop the dentry now.
1da177e4
LT
3618 *
3619 * A low-level filesystem can, if it choses, legally
3620 * do a
3621 *
3622 * if (!d_unhashed(dentry))
3623 * return -EBUSY;
3624 *
3625 * if it cannot handle the case of removing a directory
3626 * that is still in use by something else..
3627 */
3628void dentry_unhash(struct dentry *dentry)
3629{
dc168427 3630 shrink_dcache_parent(dentry);
1da177e4 3631 spin_lock(&dentry->d_lock);
98474236 3632 if (dentry->d_lockref.count == 1)
1da177e4
LT
3633 __d_drop(dentry);
3634 spin_unlock(&dentry->d_lock);
1da177e4 3635}
4d359507 3636EXPORT_SYMBOL(dentry_unhash);
1da177e4
LT
3637
3638int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3639{
3640 int error = may_delete(dir, dentry, 1);
3641
3642 if (error)
3643 return error;
3644
acfa4380 3645 if (!dir->i_op->rmdir)
1da177e4
LT
3646 return -EPERM;
3647
1d2ef590 3648 dget(dentry);
1b1dcc1b 3649 mutex_lock(&dentry->d_inode->i_mutex);
912dbc15
SW
3650
3651 error = -EBUSY;
7af1364f 3652 if (is_local_mountpoint(dentry))
912dbc15
SW
3653 goto out;
3654
3655 error = security_inode_rmdir(dir, dentry);
3656 if (error)
3657 goto out;
3658
3cebde24 3659 shrink_dcache_parent(dentry);
912dbc15
SW
3660 error = dir->i_op->rmdir(dir, dentry);
3661 if (error)
3662 goto out;
3663
3664 dentry->d_inode->i_flags |= S_DEAD;
3665 dont_mount(dentry);
8ed936b5 3666 detach_mounts(dentry);
912dbc15
SW
3667
3668out:
1b1dcc1b 3669 mutex_unlock(&dentry->d_inode->i_mutex);
1d2ef590 3670 dput(dentry);
912dbc15 3671 if (!error)
1da177e4 3672 d_delete(dentry);
1da177e4
LT
3673 return error;
3674}
4d359507 3675EXPORT_SYMBOL(vfs_rmdir);
1da177e4 3676
5590ff0d 3677static long do_rmdir(int dfd, const char __user *pathname)
1da177e4
LT
3678{
3679 int error = 0;
91a27b2a 3680 struct filename *name;
1da177e4 3681 struct dentry *dentry;
f5beed75
AV
3682 struct path path;
3683 struct qstr last;
3684 int type;
c6ee9206
JL
3685 unsigned int lookup_flags = 0;
3686retry:
f5beed75
AV
3687 name = user_path_parent(dfd, pathname,
3688 &path, &last, &type, lookup_flags);
91a27b2a
JL
3689 if (IS_ERR(name))
3690 return PTR_ERR(name);
1da177e4 3691
f5beed75 3692 switch (type) {
0612d9fb
OH
3693 case LAST_DOTDOT:
3694 error = -ENOTEMPTY;
3695 goto exit1;
3696 case LAST_DOT:
3697 error = -EINVAL;
3698 goto exit1;
3699 case LAST_ROOT:
3700 error = -EBUSY;
3701 goto exit1;
1da177e4 3702 }
0612d9fb 3703
f5beed75 3704 error = mnt_want_write(path.mnt);
c30dabfe
JK
3705 if (error)
3706 goto exit1;
0612d9fb 3707
f5beed75
AV
3708 mutex_lock_nested(&path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3709 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
1da177e4 3710 error = PTR_ERR(dentry);
6902d925
DH
3711 if (IS_ERR(dentry))
3712 goto exit2;
e6bc45d6
TT
3713 if (!dentry->d_inode) {
3714 error = -ENOENT;
3715 goto exit3;
3716 }
f5beed75 3717 error = security_path_rmdir(&path, dentry);
be6d3e56 3718 if (error)
c30dabfe 3719 goto exit3;
f5beed75 3720 error = vfs_rmdir(path.dentry->d_inode, dentry);
0622753b 3721exit3:
6902d925
DH
3722 dput(dentry);
3723exit2:
f5beed75
AV
3724 mutex_unlock(&path.dentry->d_inode->i_mutex);
3725 mnt_drop_write(path.mnt);
1da177e4 3726exit1:
f5beed75 3727 path_put(&path);
1da177e4 3728 putname(name);
c6ee9206
JL
3729 if (retry_estale(error, lookup_flags)) {
3730 lookup_flags |= LOOKUP_REVAL;
3731 goto retry;
3732 }
1da177e4
LT
3733 return error;
3734}
3735
3cdad428 3736SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
5590ff0d
UD
3737{
3738 return do_rmdir(AT_FDCWD, pathname);
3739}
3740
b21996e3
BF
3741/**
3742 * vfs_unlink - unlink a filesystem object
3743 * @dir: parent directory
3744 * @dentry: victim
3745 * @delegated_inode: returns victim inode, if the inode is delegated.
3746 *
3747 * The caller must hold dir->i_mutex.
3748 *
3749 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3750 * return a reference to the inode in delegated_inode. The caller
3751 * should then break the delegation on that inode and retry. Because
3752 * breaking a delegation may take a long time, the caller should drop
3753 * dir->i_mutex before doing so.
3754 *
3755 * Alternatively, a caller may pass NULL for delegated_inode. This may
3756 * be appropriate for callers that expect the underlying filesystem not
3757 * to be NFS exported.
3758 */
3759int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
1da177e4 3760{
9accbb97 3761 struct inode *target = dentry->d_inode;
1da177e4
LT
3762 int error = may_delete(dir, dentry, 0);
3763
3764 if (error)
3765 return error;
3766
acfa4380 3767 if (!dir->i_op->unlink)
1da177e4
LT
3768 return -EPERM;
3769
9accbb97 3770 mutex_lock(&target->i_mutex);
8ed936b5 3771 if (is_local_mountpoint(dentry))
1da177e4
LT
3772 error = -EBUSY;
3773 else {
3774 error = security_inode_unlink(dir, dentry);
bec1052e 3775 if (!error) {
5a14696c
BF
3776 error = try_break_deleg(target, delegated_inode);
3777 if (error)
b21996e3 3778 goto out;
1da177e4 3779 error = dir->i_op->unlink(dir, dentry);
8ed936b5 3780 if (!error) {
d83c49f3 3781 dont_mount(dentry);
8ed936b5
EB
3782 detach_mounts(dentry);
3783 }
bec1052e 3784 }
1da177e4 3785 }
b21996e3 3786out:
9accbb97 3787 mutex_unlock(&target->i_mutex);
1da177e4
LT
3788
3789 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3790 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
9accbb97 3791 fsnotify_link_count(target);
e234f35c 3792 d_delete(dentry);
1da177e4 3793 }
0eeca283 3794
1da177e4
LT
3795 return error;
3796}
4d359507 3797EXPORT_SYMBOL(vfs_unlink);
1da177e4
LT
3798
3799/*
3800 * Make sure that the actual truncation of the file will occur outside its
1b1dcc1b 3801 * directory's i_mutex. Truncate can take a long time if there is a lot of
1da177e4
LT
3802 * writeout happening, and we don't want to prevent access to the directory
3803 * while waiting on the I/O.
3804 */
5590ff0d 3805static long do_unlinkat(int dfd, const char __user *pathname)
1da177e4 3806{
2ad94ae6 3807 int error;
91a27b2a 3808 struct filename *name;
1da177e4 3809 struct dentry *dentry;
f5beed75
AV
3810 struct path path;
3811 struct qstr last;
3812 int type;
1da177e4 3813 struct inode *inode = NULL;
b21996e3 3814 struct inode *delegated_inode = NULL;
5d18f813
JL
3815 unsigned int lookup_flags = 0;
3816retry:
f5beed75
AV
3817 name = user_path_parent(dfd, pathname,
3818 &path, &last, &type, lookup_flags);
91a27b2a
JL
3819 if (IS_ERR(name))
3820 return PTR_ERR(name);
2ad94ae6 3821
1da177e4 3822 error = -EISDIR;
f5beed75 3823 if (type != LAST_NORM)
1da177e4 3824 goto exit1;
0612d9fb 3825
f5beed75 3826 error = mnt_want_write(path.mnt);
c30dabfe
JK
3827 if (error)
3828 goto exit1;
b21996e3 3829retry_deleg:
f5beed75
AV
3830 mutex_lock_nested(&path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3831 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
1da177e4
LT
3832 error = PTR_ERR(dentry);
3833 if (!IS_ERR(dentry)) {
3834 /* Why not before? Because we want correct error value */
f5beed75 3835 if (last.name[last.len])
50338b88 3836 goto slashes;
1da177e4 3837 inode = dentry->d_inode;
b18825a7 3838 if (d_is_negative(dentry))
e6bc45d6
TT
3839 goto slashes;
3840 ihold(inode);
f5beed75 3841 error = security_path_unlink(&path, dentry);
be6d3e56 3842 if (error)
c30dabfe 3843 goto exit2;
f5beed75 3844 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
c30dabfe 3845exit2:
1da177e4
LT
3846 dput(dentry);
3847 }
f5beed75 3848 mutex_unlock(&path.dentry->d_inode->i_mutex);
1da177e4
LT
3849 if (inode)
3850 iput(inode); /* truncate the inode here */
b21996e3
BF
3851 inode = NULL;
3852 if (delegated_inode) {
5a14696c 3853 error = break_deleg_wait(&delegated_inode);
b21996e3
BF
3854 if (!error)
3855 goto retry_deleg;
3856 }
f5beed75 3857 mnt_drop_write(path.mnt);
1da177e4 3858exit1:
f5beed75 3859 path_put(&path);
1da177e4 3860 putname(name);
5d18f813
JL
3861 if (retry_estale(error, lookup_flags)) {
3862 lookup_flags |= LOOKUP_REVAL;
3863 inode = NULL;
3864 goto retry;
3865 }
1da177e4
LT
3866 return error;
3867
3868slashes:
b18825a7
DH
3869 if (d_is_negative(dentry))
3870 error = -ENOENT;
44b1d530 3871 else if (d_is_dir(dentry))
b18825a7
DH
3872 error = -EISDIR;
3873 else
3874 error = -ENOTDIR;
1da177e4
LT
3875 goto exit2;
3876}
3877
2e4d0924 3878SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
5590ff0d
UD
3879{
3880 if ((flag & ~AT_REMOVEDIR) != 0)
3881 return -EINVAL;
3882
3883 if (flag & AT_REMOVEDIR)
3884 return do_rmdir(dfd, pathname);
3885
3886 return do_unlinkat(dfd, pathname);
3887}
3888
3480b257 3889SYSCALL_DEFINE1(unlink, const char __user *, pathname)
5590ff0d
UD
3890{
3891 return do_unlinkat(AT_FDCWD, pathname);
3892}
3893
db2e747b 3894int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
1da177e4 3895{
a95164d9 3896 int error = may_create(dir, dentry);
1da177e4
LT
3897
3898 if (error)
3899 return error;
3900
acfa4380 3901 if (!dir->i_op->symlink)
1da177e4
LT
3902 return -EPERM;
3903
3904 error = security_inode_symlink(dir, dentry, oldname);
3905 if (error)
3906 return error;
3907
1da177e4 3908 error = dir->i_op->symlink(dir, dentry, oldname);
a74574aa 3909 if (!error)
f38aa942 3910 fsnotify_create(dir, dentry);
1da177e4
LT
3911 return error;
3912}
4d359507 3913EXPORT_SYMBOL(vfs_symlink);
1da177e4 3914
2e4d0924
HC
3915SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3916 int, newdfd, const char __user *, newname)
1da177e4 3917{
2ad94ae6 3918 int error;
91a27b2a 3919 struct filename *from;
6902d925 3920 struct dentry *dentry;
dae6ad8f 3921 struct path path;
f46d3567 3922 unsigned int lookup_flags = 0;
1da177e4
LT
3923
3924 from = getname(oldname);
2ad94ae6 3925 if (IS_ERR(from))
1da177e4 3926 return PTR_ERR(from);
f46d3567
JL
3927retry:
3928 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
6902d925
DH
3929 error = PTR_ERR(dentry);
3930 if (IS_ERR(dentry))
dae6ad8f 3931 goto out_putname;
6902d925 3932
91a27b2a 3933 error = security_path_symlink(&path, dentry, from->name);
a8104a9f 3934 if (!error)
91a27b2a 3935 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
921a1650 3936 done_path_create(&path, dentry);
f46d3567
JL
3937 if (retry_estale(error, lookup_flags)) {
3938 lookup_flags |= LOOKUP_REVAL;
3939 goto retry;
3940 }
6902d925 3941out_putname:
1da177e4
LT
3942 putname(from);
3943 return error;
3944}
3945
3480b257 3946SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
5590ff0d
UD
3947{
3948 return sys_symlinkat(oldname, AT_FDCWD, newname);
3949}
3950
146a8595
BF
3951/**
3952 * vfs_link - create a new link
3953 * @old_dentry: object to be linked
3954 * @dir: new parent
3955 * @new_dentry: where to create the new link
3956 * @delegated_inode: returns inode needing a delegation break
3957 *
3958 * The caller must hold dir->i_mutex
3959 *
3960 * If vfs_link discovers a delegation on the to-be-linked file in need
3961 * of breaking, it will return -EWOULDBLOCK and return a reference to the
3962 * inode in delegated_inode. The caller should then break the delegation
3963 * and retry. Because breaking a delegation may take a long time, the
3964 * caller should drop the i_mutex before doing so.
3965 *
3966 * Alternatively, a caller may pass NULL for delegated_inode. This may
3967 * be appropriate for callers that expect the underlying filesystem not
3968 * to be NFS exported.
3969 */
3970int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
1da177e4
LT
3971{
3972 struct inode *inode = old_dentry->d_inode;
8de52778 3973 unsigned max_links = dir->i_sb->s_max_links;
1da177e4
LT
3974 int error;
3975
3976 if (!inode)
3977 return -ENOENT;
3978
a95164d9 3979 error = may_create(dir, new_dentry);
1da177e4
LT
3980 if (error)
3981 return error;
3982
3983 if (dir->i_sb != inode->i_sb)
3984 return -EXDEV;
3985
3986 /*
3987 * A link to an append-only or immutable file cannot be created.
3988 */
3989 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3990 return -EPERM;
acfa4380 3991 if (!dir->i_op->link)
1da177e4 3992 return -EPERM;
7e79eedb 3993 if (S_ISDIR(inode->i_mode))
1da177e4
LT
3994 return -EPERM;
3995
3996 error = security_inode_link(old_dentry, dir, new_dentry);
3997 if (error)
3998 return error;
3999
7e79eedb 4000 mutex_lock(&inode->i_mutex);
aae8a97d 4001 /* Make sure we don't allow creating hardlink to an unlinked file */
f4e0c30c 4002 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
aae8a97d 4003 error = -ENOENT;
8de52778
AV
4004 else if (max_links && inode->i_nlink >= max_links)
4005 error = -EMLINK;
146a8595
BF
4006 else {
4007 error = try_break_deleg(inode, delegated_inode);
4008 if (!error)
4009 error = dir->i_op->link(old_dentry, dir, new_dentry);
4010 }
f4e0c30c
AV
4011
4012 if (!error && (inode->i_state & I_LINKABLE)) {
4013 spin_lock(&inode->i_lock);
4014 inode->i_state &= ~I_LINKABLE;
4015 spin_unlock(&inode->i_lock);
4016 }
7e79eedb 4017 mutex_unlock(&inode->i_mutex);
e31e14ec 4018 if (!error)
7e79eedb 4019 fsnotify_link(dir, inode, new_dentry);
1da177e4
LT
4020 return error;
4021}
4d359507 4022EXPORT_SYMBOL(vfs_link);
1da177e4
LT
4023
4024/*
4025 * Hardlinks are often used in delicate situations. We avoid
4026 * security-related surprises by not following symlinks on the
4027 * newname. --KAB
4028 *
4029 * We don't follow them on the oldname either to be compatible
4030 * with linux 2.0, and to avoid hard-linking to directories
4031 * and other special files. --ADM
4032 */
2e4d0924
HC
4033SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4034 int, newdfd, const char __user *, newname, int, flags)
1da177e4
LT
4035{
4036 struct dentry *new_dentry;
dae6ad8f 4037 struct path old_path, new_path;
146a8595 4038 struct inode *delegated_inode = NULL;
11a7b371 4039 int how = 0;
1da177e4 4040 int error;
1da177e4 4041
11a7b371 4042 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
c04030e1 4043 return -EINVAL;
11a7b371 4044 /*
f0cc6ffb
LT
4045 * To use null names we require CAP_DAC_READ_SEARCH
4046 * This ensures that not everyone will be able to create
4047 * handlink using the passed filedescriptor.
11a7b371 4048 */
f0cc6ffb
LT
4049 if (flags & AT_EMPTY_PATH) {
4050 if (!capable(CAP_DAC_READ_SEARCH))
4051 return -ENOENT;
11a7b371 4052 how = LOOKUP_EMPTY;
f0cc6ffb 4053 }
11a7b371
AK
4054
4055 if (flags & AT_SYMLINK_FOLLOW)
4056 how |= LOOKUP_FOLLOW;
442e31ca 4057retry:
11a7b371 4058 error = user_path_at(olddfd, oldname, how, &old_path);
1da177e4 4059 if (error)
2ad94ae6
AV
4060 return error;
4061
442e31ca
JL
4062 new_dentry = user_path_create(newdfd, newname, &new_path,
4063 (how & LOOKUP_REVAL));
1da177e4 4064 error = PTR_ERR(new_dentry);
6902d925 4065 if (IS_ERR(new_dentry))
dae6ad8f
AV
4066 goto out;
4067
4068 error = -EXDEV;
4069 if (old_path.mnt != new_path.mnt)
4070 goto out_dput;
800179c9
KC
4071 error = may_linkat(&old_path);
4072 if (unlikely(error))
4073 goto out_dput;
dae6ad8f 4074 error = security_path_link(old_path.dentry, &new_path, new_dentry);
be6d3e56 4075 if (error)
a8104a9f 4076 goto out_dput;
146a8595 4077 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
75c3f29d 4078out_dput:
921a1650 4079 done_path_create(&new_path, new_dentry);
146a8595
BF
4080 if (delegated_inode) {
4081 error = break_deleg_wait(&delegated_inode);
d22e6338
OD
4082 if (!error) {
4083 path_put(&old_path);
146a8595 4084 goto retry;
d22e6338 4085 }
146a8595 4086 }
442e31ca 4087 if (retry_estale(error, how)) {
d22e6338 4088 path_put(&old_path);
442e31ca
JL
4089 how |= LOOKUP_REVAL;
4090 goto retry;
4091 }
1da177e4 4092out:
2d8f3038 4093 path_put(&old_path);
1da177e4
LT
4094
4095 return error;
4096}
4097
3480b257 4098SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
5590ff0d 4099{
c04030e1 4100 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
5590ff0d
UD
4101}
4102
bc27027a
MS
4103/**
4104 * vfs_rename - rename a filesystem object
4105 * @old_dir: parent of source
4106 * @old_dentry: source
4107 * @new_dir: parent of destination
4108 * @new_dentry: destination
4109 * @delegated_inode: returns an inode needing a delegation break
520c8b16 4110 * @flags: rename flags
bc27027a
MS
4111 *
4112 * The caller must hold multiple mutexes--see lock_rename()).
4113 *
4114 * If vfs_rename discovers a delegation in need of breaking at either
4115 * the source or destination, it will return -EWOULDBLOCK and return a
4116 * reference to the inode in delegated_inode. The caller should then
4117 * break the delegation and retry. Because breaking a delegation may
4118 * take a long time, the caller should drop all locks before doing
4119 * so.
4120 *
4121 * Alternatively, a caller may pass NULL for delegated_inode. This may
4122 * be appropriate for callers that expect the underlying filesystem not
4123 * to be NFS exported.
4124 *
1da177e4
LT
4125 * The worst of all namespace operations - renaming directory. "Perverted"
4126 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4127 * Problems:
d03b29a2 4128 * a) we can get into loop creation.
1da177e4
LT
4129 * b) race potential - two innocent renames can create a loop together.
4130 * That's where 4.4 screws up. Current fix: serialization on
a11f3a05 4131 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
1da177e4 4132 * story.
6cedba89
BF
4133 * c) we have to lock _four_ objects - parents and victim (if it exists),
4134 * and source (if it is not a directory).
1b1dcc1b 4135 * And that - after we got ->i_mutex on parents (until then we don't know
1da177e4
LT
4136 * whether the target exists). Solution: try to be smart with locking
4137 * order for inodes. We rely on the fact that tree topology may change
a11f3a05 4138 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
1da177e4
LT
4139 * move will be locked. Thus we can rank directories by the tree
4140 * (ancestors first) and rank all non-directories after them.
4141 * That works since everybody except rename does "lock parent, lookup,
a11f3a05 4142 * lock child" and rename is under ->s_vfs_rename_mutex.
1da177e4
LT
4143 * HOWEVER, it relies on the assumption that any object with ->lookup()
4144 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4145 * we'd better make sure that there's no link(2) for them.
e4eaac06 4146 * d) conversion from fhandle to dentry may come in the wrong moment - when
1b1dcc1b 4147 * we are removing the target. Solution: we will have to grab ->i_mutex
1da177e4 4148 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
c41b20e7 4149 * ->i_mutex on parents, which works but leads to some truly excessive
1da177e4
LT
4150 * locking].
4151 */
bc27027a
MS
4152int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
4153 struct inode *new_dir, struct dentry *new_dentry,
520c8b16 4154 struct inode **delegated_inode, unsigned int flags)
1da177e4 4155{
bc27027a
MS
4156 int error;
4157 bool is_dir = d_is_dir(old_dentry);
4158 const unsigned char *old_name;
4159 struct inode *source = old_dentry->d_inode;
9055cba7 4160 struct inode *target = new_dentry->d_inode;
da1ce067
MS
4161 bool new_is_dir = false;
4162 unsigned max_links = new_dir->i_sb->s_max_links;
bc27027a
MS
4163
4164 if (source == target)
4165 return 0;
4166
4167 error = may_delete(old_dir, old_dentry, is_dir);
4168 if (error)
4169 return error;
4170
da1ce067 4171 if (!target) {
bc27027a 4172 error = may_create(new_dir, new_dentry);
da1ce067
MS
4173 } else {
4174 new_is_dir = d_is_dir(new_dentry);
4175
4176 if (!(flags & RENAME_EXCHANGE))
4177 error = may_delete(new_dir, new_dentry, is_dir);
4178 else
4179 error = may_delete(new_dir, new_dentry, new_is_dir);
4180 }
bc27027a
MS
4181 if (error)
4182 return error;
4183
7177a9c4 4184 if (!old_dir->i_op->rename && !old_dir->i_op->rename2)
bc27027a 4185 return -EPERM;
1da177e4 4186
520c8b16
MS
4187 if (flags && !old_dir->i_op->rename2)
4188 return -EINVAL;
4189
1da177e4
LT
4190 /*
4191 * If we are going to change the parent - check write permissions,
4192 * we'll need to flip '..'.
4193 */
da1ce067
MS
4194 if (new_dir != old_dir) {
4195 if (is_dir) {
4196 error = inode_permission(source, MAY_WRITE);
4197 if (error)
4198 return error;
4199 }
4200 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4201 error = inode_permission(target, MAY_WRITE);
4202 if (error)
4203 return error;
4204 }
1da177e4
LT
4205 }
4206
0b3974eb
MS
4207 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4208 flags);
1da177e4
LT
4209 if (error)
4210 return error;
4211
bc27027a 4212 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
1d2ef590 4213 dget(new_dentry);
da1ce067 4214 if (!is_dir || (flags & RENAME_EXCHANGE))
bc27027a
MS
4215 lock_two_nondirectories(source, target);
4216 else if (target)
1b1dcc1b 4217 mutex_lock(&target->i_mutex);
9055cba7
SW
4218
4219 error = -EBUSY;
7af1364f 4220 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
9055cba7
SW
4221 goto out;
4222
da1ce067 4223 if (max_links && new_dir != old_dir) {
bc27027a 4224 error = -EMLINK;
da1ce067 4225 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
bc27027a 4226 goto out;
da1ce067
MS
4227 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4228 old_dir->i_nlink >= max_links)
4229 goto out;
4230 }
4231 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4232 shrink_dcache_parent(new_dentry);
4233 if (!is_dir) {
bc27027a 4234 error = try_break_deleg(source, delegated_inode);
8e6d782c
BF
4235 if (error)
4236 goto out;
da1ce067
MS
4237 }
4238 if (target && !new_is_dir) {
4239 error = try_break_deleg(target, delegated_inode);
4240 if (error)
4241 goto out;
8e6d782c 4242 }
7177a9c4 4243 if (!old_dir->i_op->rename2) {
520c8b16
MS
4244 error = old_dir->i_op->rename(old_dir, old_dentry,
4245 new_dir, new_dentry);
4246 } else {
7177a9c4 4247 WARN_ON(old_dir->i_op->rename != NULL);
520c8b16
MS
4248 error = old_dir->i_op->rename2(old_dir, old_dentry,
4249 new_dir, new_dentry, flags);
4250 }
51892bbb
SW
4251 if (error)
4252 goto out;
4253
da1ce067 4254 if (!(flags & RENAME_EXCHANGE) && target) {
bc27027a
MS
4255 if (is_dir)
4256 target->i_flags |= S_DEAD;
51892bbb 4257 dont_mount(new_dentry);
8ed936b5 4258 detach_mounts(new_dentry);
bc27027a 4259 }
da1ce067
MS
4260 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4261 if (!(flags & RENAME_EXCHANGE))
4262 d_move(old_dentry, new_dentry);
4263 else
4264 d_exchange(old_dentry, new_dentry);
4265 }
51892bbb 4266out:
da1ce067 4267 if (!is_dir || (flags & RENAME_EXCHANGE))
bc27027a
MS
4268 unlock_two_nondirectories(source, target);
4269 else if (target)
4270 mutex_unlock(&target->i_mutex);
1da177e4 4271 dput(new_dentry);
da1ce067 4272 if (!error) {
123df294 4273 fsnotify_move(old_dir, new_dir, old_name, is_dir,
da1ce067
MS
4274 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4275 if (flags & RENAME_EXCHANGE) {
4276 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4277 new_is_dir, NULL, new_dentry);
4278 }
4279 }
0eeca283
RL
4280 fsnotify_oldname_free(old_name);
4281
1da177e4
LT
4282 return error;
4283}
4d359507 4284EXPORT_SYMBOL(vfs_rename);
1da177e4 4285
520c8b16
MS
4286SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4287 int, newdfd, const char __user *, newname, unsigned int, flags)
1da177e4 4288{
2ad94ae6
AV
4289 struct dentry *old_dentry, *new_dentry;
4290 struct dentry *trap;
f5beed75
AV
4291 struct path old_path, new_path;
4292 struct qstr old_last, new_last;
4293 int old_type, new_type;
8e6d782c 4294 struct inode *delegated_inode = NULL;
91a27b2a
JL
4295 struct filename *from;
4296 struct filename *to;
f5beed75 4297 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
c6a94284 4298 bool should_retry = false;
2ad94ae6 4299 int error;
520c8b16 4300
0d7a8555 4301 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
da1ce067
MS
4302 return -EINVAL;
4303
0d7a8555
MS
4304 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4305 (flags & RENAME_EXCHANGE))
520c8b16
MS
4306 return -EINVAL;
4307
0d7a8555
MS
4308 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4309 return -EPERM;
4310
f5beed75
AV
4311 if (flags & RENAME_EXCHANGE)
4312 target_flags = 0;
4313
c6a94284 4314retry:
f5beed75
AV
4315 from = user_path_parent(olddfd, oldname,
4316 &old_path, &old_last, &old_type, lookup_flags);
91a27b2a
JL
4317 if (IS_ERR(from)) {
4318 error = PTR_ERR(from);
1da177e4 4319 goto exit;
91a27b2a 4320 }
1da177e4 4321
f5beed75
AV
4322 to = user_path_parent(newdfd, newname,
4323 &new_path, &new_last, &new_type, lookup_flags);
91a27b2a
JL
4324 if (IS_ERR(to)) {
4325 error = PTR_ERR(to);
1da177e4 4326 goto exit1;
91a27b2a 4327 }
1da177e4
LT
4328
4329 error = -EXDEV;
f5beed75 4330 if (old_path.mnt != new_path.mnt)
1da177e4
LT
4331 goto exit2;
4332
1da177e4 4333 error = -EBUSY;
f5beed75 4334 if (old_type != LAST_NORM)
1da177e4
LT
4335 goto exit2;
4336
0a7c3937
MS
4337 if (flags & RENAME_NOREPLACE)
4338 error = -EEXIST;
f5beed75 4339 if (new_type != LAST_NORM)
1da177e4
LT
4340 goto exit2;
4341
f5beed75 4342 error = mnt_want_write(old_path.mnt);
c30dabfe
JK
4343 if (error)
4344 goto exit2;
4345
8e6d782c 4346retry_deleg:
f5beed75 4347 trap = lock_rename(new_path.dentry, old_path.dentry);
1da177e4 4348
f5beed75 4349 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
1da177e4
LT
4350 error = PTR_ERR(old_dentry);
4351 if (IS_ERR(old_dentry))
4352 goto exit3;
4353 /* source must exist */
4354 error = -ENOENT;
b18825a7 4355 if (d_is_negative(old_dentry))
1da177e4 4356 goto exit4;
f5beed75 4357 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
0a7c3937
MS
4358 error = PTR_ERR(new_dentry);
4359 if (IS_ERR(new_dentry))
4360 goto exit4;
4361 error = -EEXIST;
4362 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4363 goto exit5;
da1ce067
MS
4364 if (flags & RENAME_EXCHANGE) {
4365 error = -ENOENT;
4366 if (d_is_negative(new_dentry))
4367 goto exit5;
4368
4369 if (!d_is_dir(new_dentry)) {
4370 error = -ENOTDIR;
f5beed75 4371 if (new_last.name[new_last.len])
da1ce067
MS
4372 goto exit5;
4373 }
4374 }
1da177e4 4375 /* unless the source is a directory trailing slashes give -ENOTDIR */
44b1d530 4376 if (!d_is_dir(old_dentry)) {
1da177e4 4377 error = -ENOTDIR;
f5beed75 4378 if (old_last.name[old_last.len])
0a7c3937 4379 goto exit5;
f5beed75 4380 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
0a7c3937 4381 goto exit5;
1da177e4
LT
4382 }
4383 /* source should not be ancestor of target */
4384 error = -EINVAL;
4385 if (old_dentry == trap)
0a7c3937 4386 goto exit5;
1da177e4 4387 /* target should not be an ancestor of source */
da1ce067
MS
4388 if (!(flags & RENAME_EXCHANGE))
4389 error = -ENOTEMPTY;
1da177e4
LT
4390 if (new_dentry == trap)
4391 goto exit5;
4392
f5beed75
AV
4393 error = security_path_rename(&old_path, old_dentry,
4394 &new_path, new_dentry, flags);
be6d3e56 4395 if (error)
c30dabfe 4396 goto exit5;
f5beed75
AV
4397 error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4398 new_path.dentry->d_inode, new_dentry,
520c8b16 4399 &delegated_inode, flags);
1da177e4
LT
4400exit5:
4401 dput(new_dentry);
4402exit4:
4403 dput(old_dentry);
4404exit3:
f5beed75 4405 unlock_rename(new_path.dentry, old_path.dentry);
8e6d782c
BF
4406 if (delegated_inode) {
4407 error = break_deleg_wait(&delegated_inode);
4408 if (!error)
4409 goto retry_deleg;
4410 }
f5beed75 4411 mnt_drop_write(old_path.mnt);
1da177e4 4412exit2:
c6a94284
JL
4413 if (retry_estale(error, lookup_flags))
4414 should_retry = true;
f5beed75 4415 path_put(&new_path);
2ad94ae6 4416 putname(to);
1da177e4 4417exit1:
f5beed75 4418 path_put(&old_path);
1da177e4 4419 putname(from);
c6a94284
JL
4420 if (should_retry) {
4421 should_retry = false;
4422 lookup_flags |= LOOKUP_REVAL;
4423 goto retry;
4424 }
2ad94ae6 4425exit:
1da177e4
LT
4426 return error;
4427}
4428
520c8b16
MS
4429SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4430 int, newdfd, const char __user *, newname)
4431{
4432 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4433}
4434
a26eab24 4435SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
5590ff0d 4436{
520c8b16 4437 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
5590ff0d
UD
4438}
4439
787fb6bc
MS
4440int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4441{
4442 int error = may_create(dir, dentry);
4443 if (error)
4444 return error;
4445
4446 if (!dir->i_op->mknod)
4447 return -EPERM;
4448
4449 return dir->i_op->mknod(dir, dentry,
4450 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4451}
4452EXPORT_SYMBOL(vfs_whiteout);
4453
5d826c84 4454int readlink_copy(char __user *buffer, int buflen, const char *link)
1da177e4 4455{
5d826c84 4456 int len = PTR_ERR(link);
1da177e4
LT
4457 if (IS_ERR(link))
4458 goto out;
4459
4460 len = strlen(link);
4461 if (len > (unsigned) buflen)
4462 len = buflen;
4463 if (copy_to_user(buffer, link, len))
4464 len = -EFAULT;
4465out:
4466 return len;
4467}
5d826c84 4468EXPORT_SYMBOL(readlink_copy);
1da177e4
LT
4469
4470/*
4471 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
4472 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
4473 * using) it for any given inode is up to filesystem.
4474 */
4475int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4476{
cc314eef 4477 void *cookie;
d4dee48b 4478 const char *link = dentry->d_inode->i_link;
694a1764 4479 int res;
cc314eef 4480
d4dee48b 4481 if (!link) {
6e77137b 4482 link = dentry->d_inode->i_op->follow_link(dentry, &cookie);
d4dee48b
AV
4483 if (IS_ERR(link))
4484 return PTR_ERR(link);
4485 }
680baacb 4486 res = readlink_copy(buffer, buflen, link);
6e77137b 4487 if (dentry->d_inode->i_op->put_link)
680baacb 4488 dentry->d_inode->i_op->put_link(dentry, cookie);
694a1764 4489 return res;
1da177e4 4490}
4d359507 4491EXPORT_SYMBOL(generic_readlink);
1da177e4 4492
1da177e4
LT
4493/* get the link contents into pagecache */
4494static char *page_getlink(struct dentry * dentry, struct page **ppage)
4495{
ebd09abb
DG
4496 char *kaddr;
4497 struct page *page;
1da177e4 4498 struct address_space *mapping = dentry->d_inode->i_mapping;
090d2b18 4499 page = read_mapping_page(mapping, 0, NULL);
1da177e4 4500 if (IS_ERR(page))
6fe6900e 4501 return (char*)page;
1da177e4 4502 *ppage = page;
ebd09abb
DG
4503 kaddr = kmap(page);
4504 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
4505 return kaddr;
1da177e4
LT
4506}
4507
4508int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4509{
4510 struct page *page = NULL;
5d826c84 4511 int res = readlink_copy(buffer, buflen, page_getlink(dentry, &page));
1da177e4
LT
4512 if (page) {
4513 kunmap(page);
4514 page_cache_release(page);
4515 }
4516 return res;
4517}
4d359507 4518EXPORT_SYMBOL(page_readlink);
1da177e4 4519
6e77137b 4520const char *page_follow_link_light(struct dentry *dentry, void **cookie)
1da177e4 4521{
cc314eef 4522 struct page *page = NULL;
680baacb
AV
4523 char *res = page_getlink(dentry, &page);
4524 if (!IS_ERR(res))
4525 *cookie = page;
4526 return res;
1da177e4 4527}
4d359507 4528EXPORT_SYMBOL(page_follow_link_light);
1da177e4 4529
680baacb 4530void page_put_link(struct dentry *dentry, void *cookie)
1da177e4 4531{
cc314eef 4532 struct page *page = cookie;
680baacb
AV
4533 kunmap(page);
4534 page_cache_release(page);
1da177e4 4535}
4d359507 4536EXPORT_SYMBOL(page_put_link);
1da177e4 4537
54566b2c
NP
4538/*
4539 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4540 */
4541int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
1da177e4
LT
4542{
4543 struct address_space *mapping = inode->i_mapping;
0adb25d2 4544 struct page *page;
afddba49 4545 void *fsdata;
beb497ab 4546 int err;
1da177e4 4547 char *kaddr;
54566b2c
NP
4548 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4549 if (nofs)
4550 flags |= AOP_FLAG_NOFS;
1da177e4 4551
7e53cac4 4552retry:
afddba49 4553 err = pagecache_write_begin(NULL, mapping, 0, len-1,
54566b2c 4554 flags, &page, &fsdata);
1da177e4 4555 if (err)
afddba49
NP
4556 goto fail;
4557
e8e3c3d6 4558 kaddr = kmap_atomic(page);
1da177e4 4559 memcpy(kaddr, symname, len-1);
e8e3c3d6 4560 kunmap_atomic(kaddr);
afddba49
NP
4561
4562 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4563 page, fsdata);
1da177e4
LT
4564 if (err < 0)
4565 goto fail;
afddba49
NP
4566 if (err < len-1)
4567 goto retry;
4568
1da177e4
LT
4569 mark_inode_dirty(inode);
4570 return 0;
1da177e4
LT
4571fail:
4572 return err;
4573}
4d359507 4574EXPORT_SYMBOL(__page_symlink);
1da177e4 4575
0adb25d2
KK
4576int page_symlink(struct inode *inode, const char *symname, int len)
4577{
4578 return __page_symlink(inode, symname, len,
54566b2c 4579 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
0adb25d2 4580}
4d359507 4581EXPORT_SYMBOL(page_symlink);
0adb25d2 4582
92e1d5be 4583const struct inode_operations page_symlink_inode_operations = {
1da177e4
LT
4584 .readlink = generic_readlink,
4585 .follow_link = page_follow_link_light,
4586 .put_link = page_put_link,
4587};
1da177e4 4588EXPORT_SYMBOL(page_symlink_inode_operations);