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