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