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