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