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