namei: permit linking with CAP_FOWNER in userns
[deliverable/linux.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;
766c4cbf
AV
1558 if (negative)
1559 return -ENOENT;
12f8ad4b
LT
1560
1561 /*
1562 * This sequence count validates that the parent had no
1563 * changes while we did the lookup of the dentry above.
1564 *
1565 * The memory barrier in read_seqcount_begin of child is
1566 * enough, we can use __read_seqcount_retry here.
1567 */
31e6b01f
NP
1568 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1569 return -ECHILD;
5a18fff2 1570
254cf582 1571 *seqp = seq;
24643087 1572 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
4ce16ef3 1573 status = d_revalidate(dentry, nd->flags);
5a18fff2
AV
1574 if (unlikely(status <= 0)) {
1575 if (status != -ECHILD)
1576 need_reval = 0;
1577 goto unlazy;
1578 }
24643087 1579 }
31e6b01f
NP
1580 path->mnt = mnt;
1581 path->dentry = dentry;
254cf582 1582 if (likely(__follow_mount_rcu(nd, path, inode, seqp)))
b8faf035 1583 return 0;
5a18fff2 1584unlazy:
254cf582 1585 if (unlazy_walk(nd, dentry, seq))
19660af7 1586 return -ECHILD;
5a18fff2 1587 } else {
e97cdc87 1588 dentry = __d_lookup(parent, &nd->last);
9875cf80 1589 }
5a18fff2 1590
81e6f520
AV
1591 if (unlikely(!dentry))
1592 goto need_lookup;
1593
5a18fff2 1594 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
4ce16ef3 1595 status = d_revalidate(dentry, nd->flags);
5a18fff2
AV
1596 if (unlikely(status <= 0)) {
1597 if (status < 0) {
1598 dput(dentry);
1599 return status;
1600 }
5542aa2f
EB
1601 d_invalidate(dentry);
1602 dput(dentry);
1603 goto need_lookup;
24643087 1604 }
697f514d 1605
766c4cbf
AV
1606 if (unlikely(d_is_negative(dentry))) {
1607 dput(dentry);
1608 return -ENOENT;
1609 }
9875cf80
DH
1610 path->mnt = mnt;
1611 path->dentry = dentry;
756daf26 1612 err = follow_managed(path, nd);
8402752e 1613 if (likely(!err))
63afdfc7 1614 *inode = d_backing_inode(path->dentry);
8402752e 1615 return err;
81e6f520
AV
1616
1617need_lookup:
697f514d
MS
1618 return 1;
1619}
1620
1621/* Fast lookup failed, do it the slow way */
cc2a5271 1622static int lookup_slow(struct nameidata *nd, struct path *path)
697f514d
MS
1623{
1624 struct dentry *dentry, *parent;
697f514d
MS
1625
1626 parent = nd->path.dentry;
81e6f520
AV
1627 BUG_ON(nd->inode != parent->d_inode);
1628
1629 mutex_lock(&parent->d_inode->i_mutex);
cc2a5271 1630 dentry = __lookup_hash(&nd->last, parent, nd->flags);
81e6f520
AV
1631 mutex_unlock(&parent->d_inode->i_mutex);
1632 if (IS_ERR(dentry))
1633 return PTR_ERR(dentry);
697f514d
MS
1634 path->mnt = nd->path.mnt;
1635 path->dentry = dentry;
8402752e 1636 return follow_managed(path, nd);
1da177e4
LT
1637}
1638
52094c8a
AV
1639static inline int may_lookup(struct nameidata *nd)
1640{
1641 if (nd->flags & LOOKUP_RCU) {
4ad5abb3 1642 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
52094c8a
AV
1643 if (err != -ECHILD)
1644 return err;
6e9918b7 1645 if (unlazy_walk(nd, NULL, 0))
52094c8a
AV
1646 return -ECHILD;
1647 }
4ad5abb3 1648 return inode_permission(nd->inode, MAY_EXEC);
52094c8a
AV
1649}
1650
9856fa1b
AV
1651static inline int handle_dots(struct nameidata *nd, int type)
1652{
1653 if (type == LAST_DOTDOT) {
1654 if (nd->flags & LOOKUP_RCU) {
70291aec 1655 return follow_dotdot_rcu(nd);
9856fa1b 1656 } else
397d425d 1657 return follow_dotdot(nd);
9856fa1b
AV
1658 }
1659 return 0;
1660}
1661
181548c0
AV
1662static int pick_link(struct nameidata *nd, struct path *link,
1663 struct inode *inode, unsigned seq)
d63ff28f 1664{
626de996 1665 int error;
1cf2665b 1666 struct saved *last;
756daf26 1667 if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) {
626de996
AV
1668 path_to_nameidata(link, nd);
1669 return -ELOOP;
1670 }
bc40aee0 1671 if (!(nd->flags & LOOKUP_RCU)) {
7973387a
AV
1672 if (link->mnt == nd->path.mnt)
1673 mntget(link->mnt);
d63ff28f 1674 }
626de996
AV
1675 error = nd_alloc_stack(nd);
1676 if (unlikely(error)) {
bc40aee0
AV
1677 if (error == -ECHILD) {
1678 if (unlikely(unlazy_link(nd, link, seq)))
1679 return -ECHILD;
1680 error = nd_alloc_stack(nd);
1681 }
1682 if (error) {
1683 path_put(link);
1684 return error;
1685 }
626de996
AV
1686 }
1687
ab104923 1688 last = nd->stack + nd->depth++;
1cf2665b 1689 last->link = *link;
ab104923 1690 last->cookie = NULL;
181548c0 1691 last->inode = inode;
0450b2d1 1692 last->seq = seq;
d63ff28f
AV
1693 return 1;
1694}
1695
3ddcd056
LT
1696/*
1697 * Do we need to follow links? We _really_ want to be able
1698 * to do this check without having to look at inode->i_op,
1699 * so we keep a cache of "no, this doesn't need follow_link"
1700 * for the common case.
1701 */
254cf582 1702static inline int should_follow_link(struct nameidata *nd, struct path *link,
181548c0
AV
1703 int follow,
1704 struct inode *inode, unsigned seq)
3ddcd056 1705{
d63ff28f
AV
1706 if (likely(!d_is_symlink(link->dentry)))
1707 return 0;
1708 if (!follow)
1709 return 0;
181548c0 1710 return pick_link(nd, link, inode, seq);
3ddcd056
LT
1711}
1712
4693a547
AV
1713enum {WALK_GET = 1, WALK_PUT = 2};
1714
1715static int walk_component(struct nameidata *nd, int flags)
ce57dfc1 1716{
caa85634 1717 struct path path;
ce57dfc1 1718 struct inode *inode;
254cf582 1719 unsigned seq;
ce57dfc1
AV
1720 int err;
1721 /*
1722 * "." and ".." are special - ".." especially so because it has
1723 * to be able to know about the current root directory and
1724 * parent relationships.
1725 */
4693a547
AV
1726 if (unlikely(nd->last_type != LAST_NORM)) {
1727 err = handle_dots(nd, nd->last_type);
1728 if (flags & WALK_PUT)
1729 put_link(nd);
1730 return err;
1731 }
254cf582 1732 err = lookup_fast(nd, &path, &inode, &seq);
ce57dfc1 1733 if (unlikely(err)) {
697f514d 1734 if (err < 0)
f0a9ba70 1735 return err;
697f514d 1736
caa85634 1737 err = lookup_slow(nd, &path);
697f514d 1738 if (err < 0)
f0a9ba70 1739 return err;
697f514d 1740
63afdfc7 1741 inode = d_backing_inode(path.dentry);
254cf582 1742 seq = 0; /* we are already out of RCU mode */
766c4cbf 1743 err = -ENOENT;
caa85634 1744 if (d_is_negative(path.dentry))
766c4cbf 1745 goto out_path_put;
ce57dfc1 1746 }
697f514d 1747
4693a547
AV
1748 if (flags & WALK_PUT)
1749 put_link(nd);
181548c0 1750 err = should_follow_link(nd, &path, flags & WALK_GET, inode, seq);
d63ff28f
AV
1751 if (unlikely(err))
1752 return err;
caa85634 1753 path_to_nameidata(&path, nd);
ce57dfc1 1754 nd->inode = inode;
254cf582 1755 nd->seq = seq;
ce57dfc1 1756 return 0;
697f514d
MS
1757
1758out_path_put:
caa85634 1759 path_to_nameidata(&path, nd);
697f514d 1760 return err;
ce57dfc1
AV
1761}
1762
bfcfaa77
LT
1763/*
1764 * We can do the critical dentry name comparison and hashing
1765 * operations one word at a time, but we are limited to:
1766 *
1767 * - Architectures with fast unaligned word accesses. We could
1768 * do a "get_unaligned()" if this helps and is sufficiently
1769 * fast.
1770 *
bfcfaa77
LT
1771 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1772 * do not trap on the (extremely unlikely) case of a page
1773 * crossing operation.
1774 *
1775 * - Furthermore, we need an efficient 64-bit compile for the
1776 * 64-bit case in order to generate the "number of bytes in
1777 * the final mask". Again, that could be replaced with a
1778 * efficient population count instruction or similar.
1779 */
1780#ifdef CONFIG_DCACHE_WORD_ACCESS
1781
f68e556e 1782#include <asm/word-at-a-time.h>
bfcfaa77 1783
f68e556e 1784#ifdef CONFIG_64BIT
bfcfaa77
LT
1785
1786static inline unsigned int fold_hash(unsigned long hash)
1787{
99d263d4 1788 return hash_64(hash, 32);
bfcfaa77
LT
1789}
1790
1791#else /* 32-bit case */
1792
bfcfaa77
LT
1793#define fold_hash(x) (x)
1794
1795#endif
1796
1797unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1798{
1799 unsigned long a, mask;
1800 unsigned long hash = 0;
1801
1802 for (;;) {
e419b4cc 1803 a = load_unaligned_zeropad(name);
bfcfaa77
LT
1804 if (len < sizeof(unsigned long))
1805 break;
1806 hash += a;
f132c5be 1807 hash *= 9;
bfcfaa77
LT
1808 name += sizeof(unsigned long);
1809 len -= sizeof(unsigned long);
1810 if (!len)
1811 goto done;
1812 }
a5c21dce 1813 mask = bytemask_from_count(len);
bfcfaa77
LT
1814 hash += mask & a;
1815done:
1816 return fold_hash(hash);
1817}
1818EXPORT_SYMBOL(full_name_hash);
1819
bfcfaa77
LT
1820/*
1821 * Calculate the length and hash of the path component, and
d6bb3e90 1822 * return the "hash_len" as the result.
bfcfaa77 1823 */
d6bb3e90 1824static inline u64 hash_name(const char *name)
bfcfaa77 1825{
36126f8f
LT
1826 unsigned long a, b, adata, bdata, mask, hash, len;
1827 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
bfcfaa77
LT
1828
1829 hash = a = 0;
1830 len = -sizeof(unsigned long);
1831 do {
1832 hash = (hash + a) * 9;
1833 len += sizeof(unsigned long);
e419b4cc 1834 a = load_unaligned_zeropad(name+len);
36126f8f
LT
1835 b = a ^ REPEAT_BYTE('/');
1836 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
1837
1838 adata = prep_zero_mask(a, adata, &constants);
1839 bdata = prep_zero_mask(b, bdata, &constants);
1840
1841 mask = create_zero_mask(adata | bdata);
1842
1843 hash += a & zero_bytemask(mask);
9226b5b4 1844 len += find_zero(mask);
d6bb3e90 1845 return hashlen_create(fold_hash(hash), len);
bfcfaa77
LT
1846}
1847
1848#else
1849
0145acc2
LT
1850unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1851{
1852 unsigned long hash = init_name_hash();
1853 while (len--)
1854 hash = partial_name_hash(*name++, hash);
1855 return end_name_hash(hash);
1856}
ae942ae7 1857EXPORT_SYMBOL(full_name_hash);
0145acc2 1858
200e9ef7
LT
1859/*
1860 * We know there's a real path component here of at least
1861 * one character.
1862 */
d6bb3e90 1863static inline u64 hash_name(const char *name)
200e9ef7
LT
1864{
1865 unsigned long hash = init_name_hash();
1866 unsigned long len = 0, c;
1867
1868 c = (unsigned char)*name;
1869 do {
1870 len++;
1871 hash = partial_name_hash(c, hash);
1872 c = (unsigned char)name[len];
1873 } while (c && c != '/');
d6bb3e90 1874 return hashlen_create(end_name_hash(hash), len);
200e9ef7
LT
1875}
1876
bfcfaa77
LT
1877#endif
1878
1da177e4
LT
1879/*
1880 * Name resolution.
ea3834d9
PM
1881 * This is the basic name resolution function, turning a pathname into
1882 * the final dentry. We expect 'base' to be positive and a directory.
1da177e4 1883 *
ea3834d9
PM
1884 * Returns 0 and nd will have valid dentry and mnt on success.
1885 * Returns error and drops reference to input namei data on failure.
1da177e4 1886 */
6de88d72 1887static int link_path_walk(const char *name, struct nameidata *nd)
1da177e4 1888{
1da177e4 1889 int err;
32cd7468 1890
1da177e4
LT
1891 while (*name=='/')
1892 name++;
1893 if (!*name)
9e18f10a 1894 return 0;
1da177e4 1895
1da177e4
LT
1896 /* At this point we know we have a real path component. */
1897 for(;;) {
d6bb3e90 1898 u64 hash_len;
fe479a58 1899 int type;
1da177e4 1900
52094c8a 1901 err = may_lookup(nd);
1da177e4 1902 if (err)
3595e234 1903 return err;
1da177e4 1904
d6bb3e90 1905 hash_len = hash_name(name);
1da177e4 1906
fe479a58 1907 type = LAST_NORM;
d6bb3e90 1908 if (name[0] == '.') switch (hashlen_len(hash_len)) {
fe479a58 1909 case 2:
200e9ef7 1910 if (name[1] == '.') {
fe479a58 1911 type = LAST_DOTDOT;
16c2cd71
AV
1912 nd->flags |= LOOKUP_JUMPED;
1913 }
fe479a58
AV
1914 break;
1915 case 1:
1916 type = LAST_DOT;
1917 }
5a202bcd
AV
1918 if (likely(type == LAST_NORM)) {
1919 struct dentry *parent = nd->path.dentry;
16c2cd71 1920 nd->flags &= ~LOOKUP_JUMPED;
5a202bcd 1921 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
a060dc50 1922 struct qstr this = { { .hash_len = hash_len }, .name = name };
da53be12 1923 err = parent->d_op->d_hash(parent, &this);
5a202bcd 1924 if (err < 0)
3595e234 1925 return err;
d6bb3e90
LT
1926 hash_len = this.hash_len;
1927 name = this.name;
5a202bcd
AV
1928 }
1929 }
fe479a58 1930
d6bb3e90
LT
1931 nd->last.hash_len = hash_len;
1932 nd->last.name = name;
5f4a6a69
AV
1933 nd->last_type = type;
1934
d6bb3e90
LT
1935 name += hashlen_len(hash_len);
1936 if (!*name)
bdf6cbf1 1937 goto OK;
200e9ef7
LT
1938 /*
1939 * If it wasn't NUL, we know it was '/'. Skip that
1940 * slash, and continue until no more slashes.
1941 */
1942 do {
d6bb3e90
LT
1943 name++;
1944 } while (unlikely(*name == '/'));
8620c238
AV
1945 if (unlikely(!*name)) {
1946OK:
368ee9ba 1947 /* pathname body, done */
8620c238
AV
1948 if (!nd->depth)
1949 return 0;
1950 name = nd->stack[nd->depth - 1].name;
368ee9ba 1951 /* trailing symlink, done */
8620c238
AV
1952 if (!name)
1953 return 0;
1954 /* last component of nested symlink */
4693a547 1955 err = walk_component(nd, WALK_GET | WALK_PUT);
8620c238 1956 } else {
4693a547 1957 err = walk_component(nd, WALK_GET);
8620c238 1958 }
ce57dfc1 1959 if (err < 0)
3595e234 1960 return err;
1da177e4 1961
ce57dfc1 1962 if (err) {
626de996 1963 const char *s = get_link(nd);
5a460275 1964
3595e234
AV
1965 if (unlikely(IS_ERR(s)))
1966 return PTR_ERR(s);
d40bcc09
AV
1967 err = 0;
1968 if (unlikely(!s)) {
1969 /* jumped */
b9ff4429 1970 put_link(nd);
d40bcc09 1971 } else {
fab51e8a
AV
1972 nd->stack[nd->depth - 1].name = name;
1973 name = s;
1974 continue;
d40bcc09 1975 }
31e6b01f 1976 }
97242f99
AV
1977 if (unlikely(!d_can_lookup(nd->path.dentry))) {
1978 if (nd->flags & LOOKUP_RCU) {
1979 if (unlazy_walk(nd, NULL, 0))
1980 return -ECHILD;
1981 }
3595e234 1982 return -ENOTDIR;
97242f99 1983 }
1da177e4 1984 }
1da177e4
LT
1985}
1986
c8a53ee5 1987static const char *path_init(struct nameidata *nd, unsigned flags)
31e6b01f
NP
1988{
1989 int retval = 0;
c8a53ee5 1990 const char *s = nd->name->name;
31e6b01f
NP
1991
1992 nd->last_type = LAST_ROOT; /* if there are only slashes... */
980f3ea2 1993 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
31e6b01f 1994 nd->depth = 0;
368ee9ba 1995 nd->total_link_count = 0;
5b6ca027 1996 if (flags & LOOKUP_ROOT) {
b18825a7
DH
1997 struct dentry *root = nd->root.dentry;
1998 struct inode *inode = root->d_inode;
fd2f7cb5 1999 if (*s) {
44b1d530 2000 if (!d_can_lookup(root))
368ee9ba 2001 return ERR_PTR(-ENOTDIR);
73d049a4
AV
2002 retval = inode_permission(inode, MAY_EXEC);
2003 if (retval)
368ee9ba 2004 return ERR_PTR(retval);
73d049a4 2005 }
5b6ca027
AV
2006 nd->path = nd->root;
2007 nd->inode = inode;
2008 if (flags & LOOKUP_RCU) {
8b61e74f 2009 rcu_read_lock();
5b6ca027 2010 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
8f47a016 2011 nd->root_seq = nd->seq;
48a066e7 2012 nd->m_seq = read_seqbegin(&mount_lock);
5b6ca027
AV
2013 } else {
2014 path_get(&nd->path);
2015 }
368ee9ba 2016 return s;
5b6ca027
AV
2017 }
2018
31e6b01f 2019 nd->root.mnt = NULL;
31e6b01f 2020
48a066e7 2021 nd->m_seq = read_seqbegin(&mount_lock);
fd2f7cb5 2022 if (*s == '/') {
e41f7d4e 2023 if (flags & LOOKUP_RCU) {
8b61e74f 2024 rcu_read_lock();
06d7137e
AV
2025 set_root_rcu(nd);
2026 nd->seq = nd->root_seq;
e41f7d4e
AV
2027 } else {
2028 set_root(nd);
2029 path_get(&nd->root);
2030 }
2031 nd->path = nd->root;
c8a53ee5 2032 } else if (nd->dfd == AT_FDCWD) {
e41f7d4e
AV
2033 if (flags & LOOKUP_RCU) {
2034 struct fs_struct *fs = current->fs;
2035 unsigned seq;
31e6b01f 2036
8b61e74f 2037 rcu_read_lock();
c28cc364 2038
e41f7d4e
AV
2039 do {
2040 seq = read_seqcount_begin(&fs->seq);
2041 nd->path = fs->pwd;
2042 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
2043 } while (read_seqcount_retry(&fs->seq, seq));
2044 } else {
2045 get_fs_pwd(current->fs, &nd->path);
2046 }
31e6b01f 2047 } else {
582aa64a 2048 /* Caller must check execute permissions on the starting path component */
c8a53ee5 2049 struct fd f = fdget_raw(nd->dfd);
31e6b01f
NP
2050 struct dentry *dentry;
2051
2903ff01 2052 if (!f.file)
368ee9ba 2053 return ERR_PTR(-EBADF);
31e6b01f 2054
2903ff01 2055 dentry = f.file->f_path.dentry;
31e6b01f 2056
fd2f7cb5 2057 if (*s) {
44b1d530 2058 if (!d_can_lookup(dentry)) {
2903ff01 2059 fdput(f);
368ee9ba 2060 return ERR_PTR(-ENOTDIR);
2903ff01 2061 }
f52e0c11 2062 }
31e6b01f 2063
2903ff01 2064 nd->path = f.file->f_path;
e41f7d4e 2065 if (flags & LOOKUP_RCU) {
8b61e74f 2066 rcu_read_lock();
34a26b99
AV
2067 nd->inode = nd->path.dentry->d_inode;
2068 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
e41f7d4e 2069 } else {
2903ff01 2070 path_get(&nd->path);
34a26b99 2071 nd->inode = nd->path.dentry->d_inode;
e41f7d4e 2072 }
34a26b99 2073 fdput(f);
368ee9ba 2074 return s;
31e6b01f 2075 }
31e6b01f 2076
31e6b01f 2077 nd->inode = nd->path.dentry->d_inode;
4023bfc9 2078 if (!(flags & LOOKUP_RCU))
368ee9ba 2079 return s;
4023bfc9 2080 if (likely(!read_seqcount_retry(&nd->path.dentry->d_seq, nd->seq)))
368ee9ba 2081 return s;
4023bfc9
AV
2082 if (!(nd->flags & LOOKUP_ROOT))
2083 nd->root.mnt = NULL;
2084 rcu_read_unlock();
368ee9ba 2085 return ERR_PTR(-ECHILD);
9b4a9b14
AV
2086}
2087
3bdba28b 2088static const char *trailing_symlink(struct nameidata *nd)
95fa25d9
AV
2089{
2090 const char *s;
fec2fa24 2091 int error = may_follow_link(nd);
deb106c6 2092 if (unlikely(error))
3bdba28b 2093 return ERR_PTR(error);
95fa25d9 2094 nd->flags |= LOOKUP_PARENT;
fab51e8a 2095 nd->stack[0].name = NULL;
3b2e7f75 2096 s = get_link(nd);
deb106c6 2097 return s ? s : "";
95fa25d9
AV
2098}
2099
caa85634 2100static inline int lookup_last(struct nameidata *nd)
bd92d7fe
AV
2101{
2102 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2103 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2104
2105 nd->flags &= ~LOOKUP_PARENT;
deb106c6 2106 return walk_component(nd,
4693a547
AV
2107 nd->flags & LOOKUP_FOLLOW
2108 ? nd->depth
2109 ? WALK_PUT | WALK_GET
2110 : WALK_GET
2111 : 0);
bd92d7fe
AV
2112}
2113
9b4a9b14 2114/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
c8a53ee5 2115static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path)
9b4a9b14 2116{
c8a53ee5 2117 const char *s = path_init(nd, flags);
bd92d7fe 2118 int err;
31e6b01f 2119
368ee9ba
AV
2120 if (IS_ERR(s))
2121 return PTR_ERR(s);
3bdba28b
AV
2122 while (!(err = link_path_walk(s, nd))
2123 && ((err = lookup_last(nd)) > 0)) {
2124 s = trailing_symlink(nd);
2125 if (IS_ERR(s)) {
2126 err = PTR_ERR(s);
2127 break;
bd92d7fe
AV
2128 }
2129 }
9f1fafee
AV
2130 if (!err)
2131 err = complete_walk(nd);
bd92d7fe 2132
deb106c6
AV
2133 if (!err && nd->flags & LOOKUP_DIRECTORY)
2134 if (!d_can_lookup(nd->path.dentry))
bd23a539 2135 err = -ENOTDIR;
625b6d10
AV
2136 if (!err) {
2137 *path = nd->path;
2138 nd->path.mnt = NULL;
2139 nd->path.dentry = NULL;
2140 }
2141 terminate_walk(nd);
bd92d7fe 2142 return err;
ee0827cd 2143}
31e6b01f 2144
625b6d10 2145static int filename_lookup(int dfd, struct filename *name, unsigned flags,
9ad1aaa6 2146 struct path *path, struct path *root)
ee0827cd 2147{
894bc8c4 2148 int retval;
9883d185 2149 struct nameidata nd;
abc9f5be
AV
2150 if (IS_ERR(name))
2151 return PTR_ERR(name);
9ad1aaa6
AV
2152 if (unlikely(root)) {
2153 nd.root = *root;
2154 flags |= LOOKUP_ROOT;
2155 }
9883d185 2156 set_nameidata(&nd, dfd, name);
c8a53ee5 2157 retval = path_lookupat(&nd, flags | LOOKUP_RCU, path);
ee0827cd 2158 if (unlikely(retval == -ECHILD))
c8a53ee5 2159 retval = path_lookupat(&nd, flags, path);
ee0827cd 2160 if (unlikely(retval == -ESTALE))
c8a53ee5 2161 retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path);
31e6b01f 2162
f78570dd 2163 if (likely(!retval))
625b6d10 2164 audit_inode(name, path->dentry, flags & LOOKUP_PARENT);
9883d185 2165 restore_nameidata();
e4bd1c1a 2166 putname(name);
170aa3d0 2167 return retval;
1da177e4
LT
2168}
2169
8bcb77fa 2170/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
c8a53ee5 2171static int path_parentat(struct nameidata *nd, unsigned flags,
391172c4 2172 struct path *parent)
8bcb77fa 2173{
c8a53ee5 2174 const char *s = path_init(nd, flags);
368ee9ba
AV
2175 int err;
2176 if (IS_ERR(s))
2177 return PTR_ERR(s);
2178 err = link_path_walk(s, nd);
8bcb77fa
AV
2179 if (!err)
2180 err = complete_walk(nd);
391172c4
AV
2181 if (!err) {
2182 *parent = nd->path;
2183 nd->path.mnt = NULL;
2184 nd->path.dentry = NULL;
2185 }
2186 terminate_walk(nd);
8bcb77fa
AV
2187 return err;
2188}
2189
5c31b6ce 2190static struct filename *filename_parentat(int dfd, struct filename *name,
391172c4
AV
2191 unsigned int flags, struct path *parent,
2192 struct qstr *last, int *type)
8bcb77fa
AV
2193{
2194 int retval;
9883d185 2195 struct nameidata nd;
8bcb77fa 2196
5c31b6ce
AV
2197 if (IS_ERR(name))
2198 return name;
9883d185 2199 set_nameidata(&nd, dfd, name);
c8a53ee5 2200 retval = path_parentat(&nd, flags | LOOKUP_RCU, parent);
8bcb77fa 2201 if (unlikely(retval == -ECHILD))
c8a53ee5 2202 retval = path_parentat(&nd, flags, parent);
8bcb77fa 2203 if (unlikely(retval == -ESTALE))
c8a53ee5 2204 retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent);
391172c4
AV
2205 if (likely(!retval)) {
2206 *last = nd.last;
2207 *type = nd.last_type;
2208 audit_inode(name, parent->dentry, LOOKUP_PARENT);
5c31b6ce
AV
2209 } else {
2210 putname(name);
2211 name = ERR_PTR(retval);
391172c4 2212 }
9883d185 2213 restore_nameidata();
5c31b6ce 2214 return name;
8bcb77fa
AV
2215}
2216
79714f72
AV
2217/* does lookup, returns the object with parent locked */
2218struct dentry *kern_path_locked(const char *name, struct path *path)
5590ff0d 2219{
5c31b6ce
AV
2220 struct filename *filename;
2221 struct dentry *d;
391172c4
AV
2222 struct qstr last;
2223 int type;
51689104 2224
5c31b6ce
AV
2225 filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path,
2226 &last, &type);
51689104
PM
2227 if (IS_ERR(filename))
2228 return ERR_CAST(filename);
5c31b6ce 2229 if (unlikely(type != LAST_NORM)) {
391172c4 2230 path_put(path);
5c31b6ce
AV
2231 putname(filename);
2232 return ERR_PTR(-EINVAL);
79714f72 2233 }
391172c4
AV
2234 mutex_lock_nested(&path->dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2235 d = __lookup_hash(&last, path->dentry, 0);
79714f72 2236 if (IS_ERR(d)) {
391172c4
AV
2237 mutex_unlock(&path->dentry->d_inode->i_mutex);
2238 path_put(path);
79714f72 2239 }
51689104 2240 putname(filename);
79714f72 2241 return d;
5590ff0d
UD
2242}
2243
d1811465
AV
2244int kern_path(const char *name, unsigned int flags, struct path *path)
2245{
abc9f5be
AV
2246 return filename_lookup(AT_FDCWD, getname_kernel(name),
2247 flags, path, NULL);
d1811465 2248}
4d359507 2249EXPORT_SYMBOL(kern_path);
d1811465 2250
16f18200
JJS
2251/**
2252 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2253 * @dentry: pointer to dentry of the base directory
2254 * @mnt: pointer to vfs mount of the base directory
2255 * @name: pointer to file name
2256 * @flags: lookup flags
e0a01249 2257 * @path: pointer to struct path to fill
16f18200
JJS
2258 */
2259int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2260 const char *name, unsigned int flags,
e0a01249 2261 struct path *path)
16f18200 2262{
9ad1aaa6 2263 struct path root = {.mnt = mnt, .dentry = dentry};
9ad1aaa6 2264 /* the first argument of filename_lookup() is ignored with root */
abc9f5be
AV
2265 return filename_lookup(AT_FDCWD, getname_kernel(name),
2266 flags , path, &root);
16f18200 2267}
4d359507 2268EXPORT_SYMBOL(vfs_path_lookup);
16f18200 2269
eead1911 2270/**
a6b91919 2271 * lookup_one_len - filesystem helper to lookup single pathname component
eead1911
CH
2272 * @name: pathname component to lookup
2273 * @base: base directory to lookup from
2274 * @len: maximum length @len should be interpreted to
2275 *
a6b91919 2276 * Note that this routine is purely a helper for filesystem usage and should
9e7543e9 2277 * not be called by generic code.
eead1911 2278 */
057f6c01
JM
2279struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2280{
057f6c01 2281 struct qstr this;
6a96ba54 2282 unsigned int c;
cda309de 2283 int err;
057f6c01 2284
2f9092e1
DW
2285 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
2286
6a96ba54
AV
2287 this.name = name;
2288 this.len = len;
0145acc2 2289 this.hash = full_name_hash(name, len);
6a96ba54
AV
2290 if (!len)
2291 return ERR_PTR(-EACCES);
2292
21d8a15a
AV
2293 if (unlikely(name[0] == '.')) {
2294 if (len < 2 || (len == 2 && name[1] == '.'))
2295 return ERR_PTR(-EACCES);
2296 }
2297
6a96ba54
AV
2298 while (len--) {
2299 c = *(const unsigned char *)name++;
2300 if (c == '/' || c == '\0')
2301 return ERR_PTR(-EACCES);
6a96ba54 2302 }
5a202bcd
AV
2303 /*
2304 * See if the low-level filesystem might want
2305 * to use its own hash..
2306 */
2307 if (base->d_flags & DCACHE_OP_HASH) {
da53be12 2308 int err = base->d_op->d_hash(base, &this);
5a202bcd
AV
2309 if (err < 0)
2310 return ERR_PTR(err);
2311 }
eead1911 2312
cda309de
MS
2313 err = inode_permission(base->d_inode, MAY_EXEC);
2314 if (err)
2315 return ERR_PTR(err);
2316
72bd866a 2317 return __lookup_hash(&this, base, 0);
057f6c01 2318}
4d359507 2319EXPORT_SYMBOL(lookup_one_len);
057f6c01 2320
1fa1e7f6
AW
2321int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2322 struct path *path, int *empty)
1da177e4 2323{
abc9f5be
AV
2324 return filename_lookup(dfd, getname_flags(name, flags, empty),
2325 flags, path, NULL);
1da177e4 2326}
b853a161 2327EXPORT_SYMBOL(user_path_at_empty);
1fa1e7f6 2328
873f1eed
JL
2329/*
2330 * NB: most callers don't do anything directly with the reference to the
2331 * to struct filename, but the nd->last pointer points into the name string
2332 * allocated by getname. So we must hold the reference to it until all
2333 * path-walking is complete.
2334 */
a2ec4a2d 2335static inline struct filename *
f5beed75
AV
2336user_path_parent(int dfd, const char __user *path,
2337 struct path *parent,
2338 struct qstr *last,
2339 int *type,
9e790bd6 2340 unsigned int flags)
2ad94ae6 2341{
9e790bd6 2342 /* only LOOKUP_REVAL is allowed in extra flags */
5c31b6ce
AV
2343 return filename_parentat(dfd, getname(path), flags & LOOKUP_REVAL,
2344 parent, last, type);
2ad94ae6
AV
2345}
2346
8033426e 2347/**
197df04c 2348 * mountpoint_last - look up last component for umount
8033426e
JL
2349 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2350 * @path: pointer to container for result
2351 *
2352 * This is a special lookup_last function just for umount. In this case, we
2353 * need to resolve the path without doing any revalidation.
2354 *
2355 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2356 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2357 * in almost all cases, this lookup will be served out of the dcache. The only
2358 * cases where it won't are if nd->last refers to a symlink or the path is
2359 * bogus and it doesn't exist.
2360 *
2361 * Returns:
2362 * -error: if there was an error during lookup. This includes -ENOENT if the
2363 * lookup found a negative dentry. The nd->path reference will also be
2364 * put in this case.
2365 *
2366 * 0: if we successfully resolved nd->path and found it to not to be a
2367 * symlink that needs to be followed. "path" will also be populated.
2368 * The nd->path reference will also be put.
2369 *
2370 * 1: if we successfully resolved nd->last and found it to be a symlink
2371 * that needs to be followed. "path" will be populated with the path
2372 * to the link, and nd->path will *not* be put.
2373 */
2374static int
197df04c 2375mountpoint_last(struct nameidata *nd, struct path *path)
8033426e
JL
2376{
2377 int error = 0;
2378 struct dentry *dentry;
2379 struct dentry *dir = nd->path.dentry;
2380
35759521
AV
2381 /* If we're in rcuwalk, drop out of it to handle last component */
2382 if (nd->flags & LOOKUP_RCU) {
6e9918b7 2383 if (unlazy_walk(nd, NULL, 0))
deb106c6 2384 return -ECHILD;
8033426e
JL
2385 }
2386
2387 nd->flags &= ~LOOKUP_PARENT;
2388
2389 if (unlikely(nd->last_type != LAST_NORM)) {
2390 error = handle_dots(nd, nd->last_type);
35759521 2391 if (error)
deb106c6 2392 return error;
35759521
AV
2393 dentry = dget(nd->path.dentry);
2394 goto done;
8033426e
JL
2395 }
2396
2397 mutex_lock(&dir->d_inode->i_mutex);
2398 dentry = d_lookup(dir, &nd->last);
2399 if (!dentry) {
2400 /*
2401 * No cached dentry. Mounted dentries are pinned in the cache,
2402 * so that means that this dentry is probably a symlink or the
2403 * path doesn't actually point to a mounted dentry.
2404 */
2405 dentry = d_alloc(dir, &nd->last);
2406 if (!dentry) {
bcceeeba 2407 mutex_unlock(&dir->d_inode->i_mutex);
deb106c6 2408 return -ENOMEM;
8033426e 2409 }
35759521 2410 dentry = lookup_real(dir->d_inode, dentry, nd->flags);
bcceeeba
DJ
2411 if (IS_ERR(dentry)) {
2412 mutex_unlock(&dir->d_inode->i_mutex);
deb106c6 2413 return PTR_ERR(dentry);
bcceeeba 2414 }
8033426e
JL
2415 }
2416 mutex_unlock(&dir->d_inode->i_mutex);
2417
35759521 2418done:
698934df 2419 if (d_is_negative(dentry)) {
35759521 2420 dput(dentry);
deb106c6 2421 return -ENOENT;
8033426e 2422 }
191d7f73
AV
2423 if (nd->depth)
2424 put_link(nd);
35759521 2425 path->dentry = dentry;
295dc39d 2426 path->mnt = nd->path.mnt;
181548c0
AV
2427 error = should_follow_link(nd, path, nd->flags & LOOKUP_FOLLOW,
2428 d_backing_inode(dentry), 0);
deb106c6 2429 if (unlikely(error))
d63ff28f 2430 return error;
295dc39d 2431 mntget(path->mnt);
35759521 2432 follow_mount(path);
deb106c6 2433 return 0;
8033426e
JL
2434}
2435
2436/**
197df04c 2437 * path_mountpoint - look up a path to be umounted
2a78b857 2438 * @nd: lookup context
8033426e 2439 * @flags: lookup flags
c8a53ee5 2440 * @path: pointer to container for result
8033426e
JL
2441 *
2442 * Look up the given name, but don't attempt to revalidate the last component.
606d6fe3 2443 * Returns 0 and "path" will be valid on success; Returns error otherwise.
8033426e
JL
2444 */
2445static int
c8a53ee5 2446path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path)
8033426e 2447{
c8a53ee5 2448 const char *s = path_init(nd, flags);
368ee9ba
AV
2449 int err;
2450 if (IS_ERR(s))
2451 return PTR_ERR(s);
3bdba28b
AV
2452 while (!(err = link_path_walk(s, nd)) &&
2453 (err = mountpoint_last(nd, path)) > 0) {
2454 s = trailing_symlink(nd);
2455 if (IS_ERR(s)) {
2456 err = PTR_ERR(s);
8033426e 2457 break;
3bdba28b 2458 }
8033426e 2459 }
deb106c6 2460 terminate_walk(nd);
8033426e
JL
2461 return err;
2462}
2463
2d864651 2464static int
668696dc 2465filename_mountpoint(int dfd, struct filename *name, struct path *path,
2d864651
AV
2466 unsigned int flags)
2467{
9883d185 2468 struct nameidata nd;
cbaab2db 2469 int error;
668696dc
AV
2470 if (IS_ERR(name))
2471 return PTR_ERR(name);
9883d185 2472 set_nameidata(&nd, dfd, name);
c8a53ee5 2473 error = path_mountpoint(&nd, flags | LOOKUP_RCU, path);
2d864651 2474 if (unlikely(error == -ECHILD))
c8a53ee5 2475 error = path_mountpoint(&nd, flags, path);
2d864651 2476 if (unlikely(error == -ESTALE))
c8a53ee5 2477 error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path);
2d864651 2478 if (likely(!error))
668696dc 2479 audit_inode(name, path->dentry, 0);
9883d185 2480 restore_nameidata();
668696dc 2481 putname(name);
2d864651
AV
2482 return error;
2483}
2484
8033426e 2485/**
197df04c 2486 * user_path_mountpoint_at - lookup a path from userland in order to umount it
8033426e
JL
2487 * @dfd: directory file descriptor
2488 * @name: pathname from userland
2489 * @flags: lookup flags
2490 * @path: pointer to container to hold result
2491 *
2492 * A umount is a special case for path walking. We're not actually interested
2493 * in the inode in this situation, and ESTALE errors can be a problem. We
2494 * simply want track down the dentry and vfsmount attached at the mountpoint
2495 * and avoid revalidating the last component.
2496 *
2497 * Returns 0 and populates "path" on success.
2498 */
2499int
197df04c 2500user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
8033426e
JL
2501 struct path *path)
2502{
cbaab2db 2503 return filename_mountpoint(dfd, getname(name), path, flags);
8033426e
JL
2504}
2505
2d864651
AV
2506int
2507kern_path_mountpoint(int dfd, const char *name, struct path *path,
2508 unsigned int flags)
2509{
cbaab2db 2510 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
2d864651
AV
2511}
2512EXPORT_SYMBOL(kern_path_mountpoint);
2513
cbdf35bc 2514int __check_sticky(struct inode *dir, struct inode *inode)
1da177e4 2515{
8e96e3b7 2516 kuid_t fsuid = current_fsuid();
da9592ed 2517
8e96e3b7 2518 if (uid_eq(inode->i_uid, fsuid))
1da177e4 2519 return 0;
8e96e3b7 2520 if (uid_eq(dir->i_uid, fsuid))
1da177e4 2521 return 0;
23adbe12 2522 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
1da177e4 2523}
cbdf35bc 2524EXPORT_SYMBOL(__check_sticky);
1da177e4
LT
2525
2526/*
2527 * Check whether we can remove a link victim from directory dir, check
2528 * whether the type of victim is right.
2529 * 1. We can't do it if dir is read-only (done in permission())
2530 * 2. We should have write and exec permissions on dir
2531 * 3. We can't remove anything from append-only dir
2532 * 4. We can't do anything with immutable dir (done in permission())
2533 * 5. If the sticky bit on dir is set we should either
2534 * a. be owner of dir, or
2535 * b. be owner of victim, or
2536 * c. have CAP_FOWNER capability
2537 * 6. If the victim is append-only or immutable we can't do antyhing with
2538 * links pointing to it.
2539 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2540 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2541 * 9. We can't remove a root or mountpoint.
2542 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2543 * nfs_async_unlink().
2544 */
b18825a7 2545static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
1da177e4 2546{
63afdfc7 2547 struct inode *inode = d_backing_inode(victim);
1da177e4
LT
2548 int error;
2549
b18825a7 2550 if (d_is_negative(victim))
1da177e4 2551 return -ENOENT;
b18825a7 2552 BUG_ON(!inode);
1da177e4
LT
2553
2554 BUG_ON(victim->d_parent->d_inode != dir);
4fa6b5ec 2555 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
1da177e4 2556
f419a2e3 2557 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
2558 if (error)
2559 return error;
2560 if (IS_APPEND(dir))
2561 return -EPERM;
b18825a7
DH
2562
2563 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
2564 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode))
1da177e4
LT
2565 return -EPERM;
2566 if (isdir) {
44b1d530 2567 if (!d_is_dir(victim))
1da177e4
LT
2568 return -ENOTDIR;
2569 if (IS_ROOT(victim))
2570 return -EBUSY;
44b1d530 2571 } else if (d_is_dir(victim))
1da177e4
LT
2572 return -EISDIR;
2573 if (IS_DEADDIR(dir))
2574 return -ENOENT;
2575 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2576 return -EBUSY;
2577 return 0;
2578}
2579
2580/* Check whether we can create an object with dentry child in directory
2581 * dir.
2582 * 1. We can't do it if child already exists (open has special treatment for
2583 * this case, but since we are inlined it's OK)
2584 * 2. We can't do it if dir is read-only (done in permission())
2585 * 3. We should have write and exec permissions on dir
2586 * 4. We can't do it if dir is immutable (done in permission())
2587 */
a95164d9 2588static inline int may_create(struct inode *dir, struct dentry *child)
1da177e4 2589{
14e972b4 2590 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
1da177e4
LT
2591 if (child->d_inode)
2592 return -EEXIST;
2593 if (IS_DEADDIR(dir))
2594 return -ENOENT;
f419a2e3 2595 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
2596}
2597
1da177e4
LT
2598/*
2599 * p1 and p2 should be directories on the same fs.
2600 */
2601struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2602{
2603 struct dentry *p;
2604
2605 if (p1 == p2) {
f2eace23 2606 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1da177e4
LT
2607 return NULL;
2608 }
2609
a11f3a05 2610 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4 2611
e2761a11
OH
2612 p = d_ancestor(p2, p1);
2613 if (p) {
2614 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2615 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2616 return p;
1da177e4
LT
2617 }
2618
e2761a11
OH
2619 p = d_ancestor(p1, p2);
2620 if (p) {
2621 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2622 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2623 return p;
1da177e4
LT
2624 }
2625
f2eace23 2626 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
d1b72cc6 2627 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT2);
1da177e4
LT
2628 return NULL;
2629}
4d359507 2630EXPORT_SYMBOL(lock_rename);
1da177e4
LT
2631
2632void unlock_rename(struct dentry *p1, struct dentry *p2)
2633{
1b1dcc1b 2634 mutex_unlock(&p1->d_inode->i_mutex);
1da177e4 2635 if (p1 != p2) {
1b1dcc1b 2636 mutex_unlock(&p2->d_inode->i_mutex);
a11f3a05 2637 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4
LT
2638 }
2639}
4d359507 2640EXPORT_SYMBOL(unlock_rename);
1da177e4 2641
4acdaf27 2642int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
312b63fb 2643 bool want_excl)
1da177e4 2644{
a95164d9 2645 int error = may_create(dir, dentry);
1da177e4
LT
2646 if (error)
2647 return error;
2648
acfa4380 2649 if (!dir->i_op->create)
1da177e4
LT
2650 return -EACCES; /* shouldn't it be ENOSYS? */
2651 mode &= S_IALLUGO;
2652 mode |= S_IFREG;
2653 error = security_inode_create(dir, dentry, mode);
2654 if (error)
2655 return error;
312b63fb 2656 error = dir->i_op->create(dir, dentry, mode, want_excl);
a74574aa 2657 if (!error)
f38aa942 2658 fsnotify_create(dir, dentry);
1da177e4
LT
2659 return error;
2660}
4d359507 2661EXPORT_SYMBOL(vfs_create);
1da177e4 2662
73d049a4 2663static int may_open(struct path *path, int acc_mode, int flag)
1da177e4 2664{
3fb64190 2665 struct dentry *dentry = path->dentry;
1da177e4
LT
2666 struct inode *inode = dentry->d_inode;
2667 int error;
2668
bcda7652
AV
2669 /* O_PATH? */
2670 if (!acc_mode)
2671 return 0;
2672
1da177e4
LT
2673 if (!inode)
2674 return -ENOENT;
2675
c8fe8f30
CH
2676 switch (inode->i_mode & S_IFMT) {
2677 case S_IFLNK:
1da177e4 2678 return -ELOOP;
c8fe8f30
CH
2679 case S_IFDIR:
2680 if (acc_mode & MAY_WRITE)
2681 return -EISDIR;
2682 break;
2683 case S_IFBLK:
2684 case S_IFCHR:
3fb64190 2685 if (path->mnt->mnt_flags & MNT_NODEV)
1da177e4 2686 return -EACCES;
c8fe8f30
CH
2687 /*FALLTHRU*/
2688 case S_IFIFO:
2689 case S_IFSOCK:
1da177e4 2690 flag &= ~O_TRUNC;
c8fe8f30 2691 break;
4a3fd211 2692 }
b41572e9 2693
3fb64190 2694 error = inode_permission(inode, acc_mode);
b41572e9
DH
2695 if (error)
2696 return error;
6146f0d5 2697
1da177e4
LT
2698 /*
2699 * An append-only file must be opened in append mode for writing.
2700 */
2701 if (IS_APPEND(inode)) {
8737c930 2702 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
7715b521 2703 return -EPERM;
1da177e4 2704 if (flag & O_TRUNC)
7715b521 2705 return -EPERM;
1da177e4
LT
2706 }
2707
2708 /* O_NOATIME can only be set by the owner or superuser */
2e149670 2709 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
7715b521 2710 return -EPERM;
1da177e4 2711
f3c7691e 2712 return 0;
7715b521 2713}
1da177e4 2714
e1181ee6 2715static int handle_truncate(struct file *filp)
7715b521 2716{
e1181ee6 2717 struct path *path = &filp->f_path;
7715b521
AV
2718 struct inode *inode = path->dentry->d_inode;
2719 int error = get_write_access(inode);
2720 if (error)
2721 return error;
2722 /*
2723 * Refuse to truncate files with mandatory locks held on them.
2724 */
d7a06983 2725 error = locks_verify_locked(filp);
7715b521 2726 if (!error)
ea0d3ab2 2727 error = security_path_truncate(path);
7715b521
AV
2728 if (!error) {
2729 error = do_truncate(path->dentry, 0,
2730 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
e1181ee6 2731 filp);
7715b521
AV
2732 }
2733 put_write_access(inode);
acd0c935 2734 return error;
1da177e4
LT
2735}
2736
d57999e1
DH
2737static inline int open_to_namei_flags(int flag)
2738{
8a5e929d
AV
2739 if ((flag & O_ACCMODE) == 3)
2740 flag--;
d57999e1
DH
2741 return flag;
2742}
2743
d18e9008
MS
2744static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2745{
2746 int error = security_path_mknod(dir, dentry, mode, 0);
2747 if (error)
2748 return error;
2749
2750 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2751 if (error)
2752 return error;
2753
2754 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2755}
2756
1acf0af9
DH
2757/*
2758 * Attempt to atomically look up, create and open a file from a negative
2759 * dentry.
2760 *
2761 * Returns 0 if successful. The file will have been created and attached to
2762 * @file by the filesystem calling finish_open().
2763 *
2764 * Returns 1 if the file was looked up only or didn't need creating. The
2765 * caller will need to perform the open themselves. @path will have been
2766 * updated to point to the new dentry. This may be negative.
2767 *
2768 * Returns an error code otherwise.
2769 */
2675a4eb
AV
2770static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2771 struct path *path, struct file *file,
2772 const struct open_flags *op,
64894cf8 2773 bool got_write, bool need_lookup,
2675a4eb 2774 int *opened)
d18e9008
MS
2775{
2776 struct inode *dir = nd->path.dentry->d_inode;
2777 unsigned open_flag = open_to_namei_flags(op->open_flag);
2778 umode_t mode;
2779 int error;
2780 int acc_mode;
d18e9008
MS
2781 int create_error = 0;
2782 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
116cc022 2783 bool excl;
d18e9008
MS
2784
2785 BUG_ON(dentry->d_inode);
2786
2787 /* Don't create child dentry for a dead directory. */
2788 if (unlikely(IS_DEADDIR(dir))) {
2675a4eb 2789 error = -ENOENT;
d18e9008
MS
2790 goto out;
2791 }
2792
62b259d8 2793 mode = op->mode;
d18e9008
MS
2794 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2795 mode &= ~current_umask();
2796
116cc022
MS
2797 excl = (open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT);
2798 if (excl)
d18e9008 2799 open_flag &= ~O_TRUNC;
d18e9008
MS
2800
2801 /*
2802 * Checking write permission is tricky, bacuse we don't know if we are
2803 * going to actually need it: O_CREAT opens should work as long as the
2804 * file exists. But checking existence breaks atomicity. The trick is
2805 * to check access and if not granted clear O_CREAT from the flags.
2806 *
2807 * Another problem is returing the "right" error value (e.g. for an
2808 * O_EXCL open we want to return EEXIST not EROFS).
2809 */
64894cf8
AV
2810 if (((open_flag & (O_CREAT | O_TRUNC)) ||
2811 (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2812 if (!(open_flag & O_CREAT)) {
d18e9008
MS
2813 /*
2814 * No O_CREATE -> atomicity not a requirement -> fall
2815 * back to lookup + open
2816 */
2817 goto no_open;
2818 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2819 /* Fall back and fail with the right error */
64894cf8 2820 create_error = -EROFS;
d18e9008
MS
2821 goto no_open;
2822 } else {
2823 /* No side effects, safe to clear O_CREAT */
64894cf8 2824 create_error = -EROFS;
d18e9008
MS
2825 open_flag &= ~O_CREAT;
2826 }
2827 }
2828
2829 if (open_flag & O_CREAT) {
38227f78 2830 error = may_o_create(&nd->path, dentry, mode);
d18e9008
MS
2831 if (error) {
2832 create_error = error;
2833 if (open_flag & O_EXCL)
2834 goto no_open;
2835 open_flag &= ~O_CREAT;
2836 }
2837 }
2838
2839 if (nd->flags & LOOKUP_DIRECTORY)
2840 open_flag |= O_DIRECTORY;
2841
30d90494
AV
2842 file->f_path.dentry = DENTRY_NOT_SET;
2843 file->f_path.mnt = nd->path.mnt;
2844 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
47237687 2845 opened);
d9585277 2846 if (error < 0) {
d9585277
AV
2847 if (create_error && error == -ENOENT)
2848 error = create_error;
d18e9008
MS
2849 goto out;
2850 }
2851
d9585277 2852 if (error) { /* returned 1, that is */
30d90494 2853 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
2675a4eb 2854 error = -EIO;
d18e9008
MS
2855 goto out;
2856 }
30d90494 2857 if (file->f_path.dentry) {
d18e9008 2858 dput(dentry);
30d90494 2859 dentry = file->f_path.dentry;
d18e9008 2860 }
03da633a
AV
2861 if (*opened & FILE_CREATED)
2862 fsnotify_create(dir, dentry);
2863 if (!dentry->d_inode) {
2864 WARN_ON(*opened & FILE_CREATED);
2865 if (create_error) {
2866 error = create_error;
2867 goto out;
2868 }
2869 } else {
2870 if (excl && !(*opened & FILE_CREATED)) {
2871 error = -EEXIST;
2872 goto out;
2873 }
62b2ce96 2874 }
d18e9008
MS
2875 goto looked_up;
2876 }
2877
2878 /*
2879 * We didn't have the inode before the open, so check open permission
2880 * here.
2881 */
03da633a
AV
2882 acc_mode = op->acc_mode;
2883 if (*opened & FILE_CREATED) {
2884 WARN_ON(!(open_flag & O_CREAT));
2885 fsnotify_create(dir, dentry);
2886 acc_mode = MAY_OPEN;
2887 }
2675a4eb
AV
2888 error = may_open(&file->f_path, acc_mode, open_flag);
2889 if (error)
2890 fput(file);
d18e9008
MS
2891
2892out:
2893 dput(dentry);
2675a4eb 2894 return error;
d18e9008 2895
d18e9008
MS
2896no_open:
2897 if (need_lookup) {
72bd866a 2898 dentry = lookup_real(dir, dentry, nd->flags);
d18e9008 2899 if (IS_ERR(dentry))
2675a4eb 2900 return PTR_ERR(dentry);
d18e9008
MS
2901
2902 if (create_error) {
2903 int open_flag = op->open_flag;
2904
2675a4eb 2905 error = create_error;
d18e9008
MS
2906 if ((open_flag & O_EXCL)) {
2907 if (!dentry->d_inode)
2908 goto out;
2909 } else if (!dentry->d_inode) {
2910 goto out;
2911 } else if ((open_flag & O_TRUNC) &&
e36cb0b8 2912 d_is_reg(dentry)) {
d18e9008
MS
2913 goto out;
2914 }
2915 /* will fail later, go on to get the right error */
2916 }
2917 }
2918looked_up:
2919 path->dentry = dentry;
2920 path->mnt = nd->path.mnt;
2675a4eb 2921 return 1;
d18e9008
MS
2922}
2923
d58ffd35 2924/*
1acf0af9 2925 * Look up and maybe create and open the last component.
d58ffd35
MS
2926 *
2927 * Must be called with i_mutex held on parent.
2928 *
1acf0af9
DH
2929 * Returns 0 if the file was successfully atomically created (if necessary) and
2930 * opened. In this case the file will be returned attached to @file.
2931 *
2932 * Returns 1 if the file was not completely opened at this time, though lookups
2933 * and creations will have been performed and the dentry returned in @path will
2934 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
2935 * specified then a negative dentry may be returned.
2936 *
2937 * An error code is returned otherwise.
2938 *
2939 * FILE_CREATE will be set in @*opened if the dentry was created and will be
2940 * cleared otherwise prior to returning.
d58ffd35 2941 */
2675a4eb
AV
2942static int lookup_open(struct nameidata *nd, struct path *path,
2943 struct file *file,
2944 const struct open_flags *op,
64894cf8 2945 bool got_write, int *opened)
d58ffd35
MS
2946{
2947 struct dentry *dir = nd->path.dentry;
54ef4872 2948 struct inode *dir_inode = dir->d_inode;
d58ffd35
MS
2949 struct dentry *dentry;
2950 int error;
54ef4872 2951 bool need_lookup;
d58ffd35 2952
47237687 2953 *opened &= ~FILE_CREATED;
201f956e 2954 dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
d58ffd35 2955 if (IS_ERR(dentry))
2675a4eb 2956 return PTR_ERR(dentry);
d58ffd35 2957
d18e9008
MS
2958 /* Cached positive dentry: will open in f_op->open */
2959 if (!need_lookup && dentry->d_inode)
2960 goto out_no_open;
2961
2962 if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
64894cf8 2963 return atomic_open(nd, dentry, path, file, op, got_write,
47237687 2964 need_lookup, opened);
d18e9008
MS
2965 }
2966
54ef4872
MS
2967 if (need_lookup) {
2968 BUG_ON(dentry->d_inode);
2969
72bd866a 2970 dentry = lookup_real(dir_inode, dentry, nd->flags);
54ef4872 2971 if (IS_ERR(dentry))
2675a4eb 2972 return PTR_ERR(dentry);
54ef4872
MS
2973 }
2974
d58ffd35
MS
2975 /* Negative dentry, just create the file */
2976 if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
2977 umode_t mode = op->mode;
2978 if (!IS_POSIXACL(dir->d_inode))
2979 mode &= ~current_umask();
2980 /*
2981 * This write is needed to ensure that a
2982 * rw->ro transition does not occur between
2983 * the time when the file is created and when
2984 * a permanent write count is taken through
015c3bbc 2985 * the 'struct file' in finish_open().
d58ffd35 2986 */
64894cf8
AV
2987 if (!got_write) {
2988 error = -EROFS;
d58ffd35 2989 goto out_dput;
64894cf8 2990 }
47237687 2991 *opened |= FILE_CREATED;
d58ffd35
MS
2992 error = security_path_mknod(&nd->path, dentry, mode, 0);
2993 if (error)
2994 goto out_dput;
312b63fb
AV
2995 error = vfs_create(dir->d_inode, dentry, mode,
2996 nd->flags & LOOKUP_EXCL);
d58ffd35
MS
2997 if (error)
2998 goto out_dput;
2999 }
d18e9008 3000out_no_open:
d58ffd35
MS
3001 path->dentry = dentry;
3002 path->mnt = nd->path.mnt;
2675a4eb 3003 return 1;
d58ffd35
MS
3004
3005out_dput:
3006 dput(dentry);
2675a4eb 3007 return error;
d58ffd35
MS
3008}
3009
31e6b01f 3010/*
fe2d35ff 3011 * Handle the last step of open()
31e6b01f 3012 */
896475d5 3013static int do_last(struct nameidata *nd,
2675a4eb 3014 struct file *file, const struct open_flags *op,
76ae2a5a 3015 int *opened)
fb1cc555 3016{
a1e28038 3017 struct dentry *dir = nd->path.dentry;
ca344a89 3018 int open_flag = op->open_flag;
77d660a8 3019 bool will_truncate = (open_flag & O_TRUNC) != 0;
64894cf8 3020 bool got_write = false;
bcda7652 3021 int acc_mode = op->acc_mode;
254cf582 3022 unsigned seq;
a1eb3315 3023 struct inode *inode;
16b1c1cd 3024 struct path save_parent = { .dentry = NULL, .mnt = NULL };
896475d5 3025 struct path path;
16b1c1cd 3026 bool retried = false;
16c2cd71 3027 int error;
1f36f774 3028
c3e380b0
AV
3029 nd->flags &= ~LOOKUP_PARENT;
3030 nd->flags |= op->intent;
3031
bc77daa7 3032 if (nd->last_type != LAST_NORM) {
fe2d35ff 3033 error = handle_dots(nd, nd->last_type);
deb106c6 3034 if (unlikely(error))
2675a4eb 3035 return error;
e83db167 3036 goto finish_open;
1f36f774 3037 }
67ee3ad2 3038
ca344a89 3039 if (!(open_flag & O_CREAT)) {
fe2d35ff
AV
3040 if (nd->last.name[nd->last.len])
3041 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3042 /* we _can_ be in RCU mode here */
254cf582 3043 error = lookup_fast(nd, &path, &inode, &seq);
71574865
MS
3044 if (likely(!error))
3045 goto finish_lookup;
3046
3047 if (error < 0)
deb106c6 3048 return error;
71574865
MS
3049
3050 BUG_ON(nd->inode != dir->d_inode);
b6183df7
MS
3051 } else {
3052 /* create side of things */
3053 /*
3054 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3055 * has been cleared when we got to the last component we are
3056 * about to look up
3057 */
3058 error = complete_walk(nd);
e8bb73df 3059 if (error)
2675a4eb 3060 return error;
fe2d35ff 3061
76ae2a5a 3062 audit_inode(nd->name, dir, LOOKUP_PARENT);
b6183df7 3063 /* trailing slashes? */
deb106c6
AV
3064 if (unlikely(nd->last.name[nd->last.len]))
3065 return -EISDIR;
b6183df7 3066 }
a2c36b45 3067
16b1c1cd 3068retry_lookup:
64894cf8
AV
3069 if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
3070 error = mnt_want_write(nd->path.mnt);
3071 if (!error)
3072 got_write = true;
3073 /*
3074 * do _not_ fail yet - we might not need that or fail with
3075 * a different error; let lookup_open() decide; we'll be
3076 * dropping this one anyway.
3077 */
3078 }
a1e28038 3079 mutex_lock(&dir->d_inode->i_mutex);
896475d5 3080 error = lookup_open(nd, &path, file, op, got_write, opened);
d58ffd35 3081 mutex_unlock(&dir->d_inode->i_mutex);
a1e28038 3082
2675a4eb
AV
3083 if (error <= 0) {
3084 if (error)
d18e9008
MS
3085 goto out;
3086
47237687 3087 if ((*opened & FILE_CREATED) ||
496ad9aa 3088 !S_ISREG(file_inode(file)->i_mode))
77d660a8 3089 will_truncate = false;
d18e9008 3090
76ae2a5a 3091 audit_inode(nd->name, file->f_path.dentry, 0);
d18e9008
MS
3092 goto opened;
3093 }
fb1cc555 3094
47237687 3095 if (*opened & FILE_CREATED) {
9b44f1b3 3096 /* Don't check for write permission, don't truncate */
ca344a89 3097 open_flag &= ~O_TRUNC;
77d660a8 3098 will_truncate = false;
bcda7652 3099 acc_mode = MAY_OPEN;
896475d5 3100 path_to_nameidata(&path, nd);
e83db167 3101 goto finish_open_created;
fb1cc555
AV
3102 }
3103
3104 /*
3134f37e 3105 * create/update audit record if it already exists.
fb1cc555 3106 */
896475d5 3107 if (d_is_positive(path.dentry))
76ae2a5a 3108 audit_inode(nd->name, path.dentry, 0);
fb1cc555 3109
d18e9008
MS
3110 /*
3111 * If atomic_open() acquired write access it is dropped now due to
3112 * possible mount and symlink following (this might be optimized away if
3113 * necessary...)
3114 */
64894cf8 3115 if (got_write) {
d18e9008 3116 mnt_drop_write(nd->path.mnt);
64894cf8 3117 got_write = false;
d18e9008
MS
3118 }
3119
deb106c6
AV
3120 if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
3121 path_to_nameidata(&path, nd);
3122 return -EEXIST;
3123 }
fb1cc555 3124
756daf26 3125 error = follow_managed(&path, nd);
deb106c6
AV
3126 if (unlikely(error < 0))
3127 return error;
a3fbbde7 3128
decf3400 3129 BUG_ON(nd->flags & LOOKUP_RCU);
63afdfc7 3130 inode = d_backing_inode(path.dentry);
254cf582 3131 seq = 0; /* out of RCU mode, so the value doesn't matter */
deb106c6 3132 if (unlikely(d_is_negative(path.dentry))) {
896475d5 3133 path_to_nameidata(&path, nd);
deb106c6 3134 return -ENOENT;
54c33e7f 3135 }
766c4cbf 3136finish_lookup:
d63ff28f
AV
3137 if (nd->depth)
3138 put_link(nd);
181548c0
AV
3139 error = should_follow_link(nd, &path, nd->flags & LOOKUP_FOLLOW,
3140 inode, seq);
deb106c6 3141 if (unlikely(error))
d63ff28f 3142 return error;
fb1cc555 3143
896475d5
AV
3144 if (unlikely(d_is_symlink(path.dentry)) && !(open_flag & O_PATH)) {
3145 path_to_nameidata(&path, nd);
deb106c6 3146 return -ELOOP;
a5cfe2d5
AV
3147 }
3148
896475d5
AV
3149 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path.mnt) {
3150 path_to_nameidata(&path, nd);
16b1c1cd
MS
3151 } else {
3152 save_parent.dentry = nd->path.dentry;
896475d5
AV
3153 save_parent.mnt = mntget(path.mnt);
3154 nd->path.dentry = path.dentry;
16b1c1cd
MS
3155
3156 }
decf3400 3157 nd->inode = inode;
254cf582 3158 nd->seq = seq;
a3fbbde7 3159 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
bc77daa7 3160finish_open:
a3fbbde7 3161 error = complete_walk(nd);
16b1c1cd
MS
3162 if (error) {
3163 path_put(&save_parent);
2675a4eb 3164 return error;
16b1c1cd 3165 }
76ae2a5a 3166 audit_inode(nd->name, nd->path.dentry, 0);
fb1cc555 3167 error = -EISDIR;
44b1d530 3168 if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
2675a4eb 3169 goto out;
af2f5542 3170 error = -ENOTDIR;
44b1d530 3171 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
2675a4eb 3172 goto out;
4bbcbd3b 3173 if (!d_is_reg(nd->path.dentry))
77d660a8 3174 will_truncate = false;
6c0d46c4 3175
0f9d1a10
AV
3176 if (will_truncate) {
3177 error = mnt_want_write(nd->path.mnt);
3178 if (error)
2675a4eb 3179 goto out;
64894cf8 3180 got_write = true;
0f9d1a10 3181 }
e83db167 3182finish_open_created:
bcda7652 3183 error = may_open(&nd->path, acc_mode, open_flag);
ca344a89 3184 if (error)
2675a4eb 3185 goto out;
4aa7c634
MS
3186
3187 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3188 error = vfs_open(&nd->path, file, current_cred());
3189 if (!error) {
3190 *opened |= FILE_OPENED;
3191 } else {
30d90494 3192 if (error == -EOPENSTALE)
f60dc3db 3193 goto stale_open;
015c3bbc 3194 goto out;
f60dc3db 3195 }
a8277b9b 3196opened:
2675a4eb 3197 error = open_check_o_direct(file);
015c3bbc
MS
3198 if (error)
3199 goto exit_fput;
3034a146 3200 error = ima_file_check(file, op->acc_mode, *opened);
aa4caadb
MS
3201 if (error)
3202 goto exit_fput;
3203
3204 if (will_truncate) {
2675a4eb 3205 error = handle_truncate(file);
aa4caadb
MS
3206 if (error)
3207 goto exit_fput;
0f9d1a10 3208 }
ca344a89 3209out:
64894cf8 3210 if (got_write)
0f9d1a10 3211 mnt_drop_write(nd->path.mnt);
16b1c1cd 3212 path_put(&save_parent);
2675a4eb 3213 return error;
fb1cc555 3214
015c3bbc 3215exit_fput:
2675a4eb
AV
3216 fput(file);
3217 goto out;
015c3bbc 3218
f60dc3db
MS
3219stale_open:
3220 /* If no saved parent or already retried then can't retry */
3221 if (!save_parent.dentry || retried)
3222 goto out;
3223
3224 BUG_ON(save_parent.dentry != dir);
3225 path_put(&nd->path);
3226 nd->path = save_parent;
3227 nd->inode = dir->d_inode;
3228 save_parent.mnt = NULL;
3229 save_parent.dentry = NULL;
64894cf8 3230 if (got_write) {
f60dc3db 3231 mnt_drop_write(nd->path.mnt);
64894cf8 3232 got_write = false;
f60dc3db
MS
3233 }
3234 retried = true;
3235 goto retry_lookup;
fb1cc555
AV
3236}
3237
c8a53ee5 3238static int do_tmpfile(struct nameidata *nd, unsigned flags,
60545d0d
AV
3239 const struct open_flags *op,
3240 struct file *file, int *opened)
3241{
3242 static const struct qstr name = QSTR_INIT("/", 1);
625b6d10 3243 struct dentry *child;
60545d0d 3244 struct inode *dir;
625b6d10 3245 struct path path;
c8a53ee5 3246 int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
60545d0d
AV
3247 if (unlikely(error))
3248 return error;
625b6d10 3249 error = mnt_want_write(path.mnt);
60545d0d
AV
3250 if (unlikely(error))
3251 goto out;
625b6d10 3252 dir = path.dentry->d_inode;
60545d0d 3253 /* we want directory to be writable */
625b6d10 3254 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
60545d0d
AV
3255 if (error)
3256 goto out2;
60545d0d
AV
3257 if (!dir->i_op->tmpfile) {
3258 error = -EOPNOTSUPP;
3259 goto out2;
3260 }
625b6d10 3261 child = d_alloc(path.dentry, &name);
60545d0d
AV
3262 if (unlikely(!child)) {
3263 error = -ENOMEM;
3264 goto out2;
3265 }
625b6d10
AV
3266 dput(path.dentry);
3267 path.dentry = child;
3268 error = dir->i_op->tmpfile(dir, child, op->mode);
60545d0d
AV
3269 if (error)
3270 goto out2;
c8a53ee5 3271 audit_inode(nd->name, child, 0);
69a91c23 3272 /* Don't check for other permissions, the inode was just created */
625b6d10 3273 error = may_open(&path, MAY_OPEN, op->open_flag);
60545d0d
AV
3274 if (error)
3275 goto out2;
625b6d10
AV
3276 file->f_path.mnt = path.mnt;
3277 error = finish_open(file, child, NULL, opened);
60545d0d
AV
3278 if (error)
3279 goto out2;
3280 error = open_check_o_direct(file);
f4e0c30c 3281 if (error) {
60545d0d 3282 fput(file);
f4e0c30c
AV
3283 } else if (!(op->open_flag & O_EXCL)) {
3284 struct inode *inode = file_inode(file);
3285 spin_lock(&inode->i_lock);
3286 inode->i_state |= I_LINKABLE;
3287 spin_unlock(&inode->i_lock);
3288 }
60545d0d 3289out2:
625b6d10 3290 mnt_drop_write(path.mnt);
60545d0d 3291out:
625b6d10 3292 path_put(&path);
60545d0d
AV
3293 return error;
3294}
3295
c8a53ee5
AV
3296static struct file *path_openat(struct nameidata *nd,
3297 const struct open_flags *op, unsigned flags)
1da177e4 3298{
368ee9ba 3299 const char *s;
30d90494 3300 struct file *file;
47237687 3301 int opened = 0;
13aab428 3302 int error;
31e6b01f 3303
30d90494 3304 file = get_empty_filp();
1afc99be
AV
3305 if (IS_ERR(file))
3306 return file;
31e6b01f 3307
30d90494 3308 file->f_flags = op->open_flag;
31e6b01f 3309
bb458c64 3310 if (unlikely(file->f_flags & __O_TMPFILE)) {
c8a53ee5 3311 error = do_tmpfile(nd, flags, op, file, &opened);
f15133df 3312 goto out2;
60545d0d
AV
3313 }
3314
c8a53ee5 3315 s = path_init(nd, flags);
368ee9ba
AV
3316 if (IS_ERR(s)) {
3317 put_filp(file);
3318 return ERR_CAST(s);
3319 }
3bdba28b 3320 while (!(error = link_path_walk(s, nd)) &&
76ae2a5a 3321 (error = do_last(nd, file, op, &opened)) > 0) {
73d049a4 3322 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
3bdba28b
AV
3323 s = trailing_symlink(nd);
3324 if (IS_ERR(s)) {
3325 error = PTR_ERR(s);
2675a4eb 3326 break;
3bdba28b 3327 }
806b681c 3328 }
deb106c6 3329 terminate_walk(nd);
f15133df 3330out2:
2675a4eb
AV
3331 if (!(opened & FILE_OPENED)) {
3332 BUG_ON(!error);
30d90494 3333 put_filp(file);
16b1c1cd 3334 }
2675a4eb
AV
3335 if (unlikely(error)) {
3336 if (error == -EOPENSTALE) {
3337 if (flags & LOOKUP_RCU)
3338 error = -ECHILD;
3339 else
3340 error = -ESTALE;
3341 }
3342 file = ERR_PTR(error);
3343 }
3344 return file;
1da177e4
LT
3345}
3346
669abf4e 3347struct file *do_filp_open(int dfd, struct filename *pathname,
f9652e10 3348 const struct open_flags *op)
13aab428 3349{
9883d185 3350 struct nameidata nd;
f9652e10 3351 int flags = op->lookup_flags;
13aab428
AV
3352 struct file *filp;
3353
9883d185 3354 set_nameidata(&nd, dfd, pathname);
c8a53ee5 3355 filp = path_openat(&nd, op, flags | LOOKUP_RCU);
13aab428 3356 if (unlikely(filp == ERR_PTR(-ECHILD)))
c8a53ee5 3357 filp = path_openat(&nd, op, flags);
13aab428 3358 if (unlikely(filp == ERR_PTR(-ESTALE)))
c8a53ee5 3359 filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
9883d185 3360 restore_nameidata();
13aab428
AV
3361 return filp;
3362}
3363
73d049a4 3364struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
f9652e10 3365 const char *name, const struct open_flags *op)
73d049a4 3366{
9883d185 3367 struct nameidata nd;
73d049a4 3368 struct file *file;
51689104 3369 struct filename *filename;
f9652e10 3370 int flags = op->lookup_flags | LOOKUP_ROOT;
73d049a4
AV
3371
3372 nd.root.mnt = mnt;
3373 nd.root.dentry = dentry;
3374
b18825a7 3375 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
73d049a4
AV
3376 return ERR_PTR(-ELOOP);
3377
51689104
PM
3378 filename = getname_kernel(name);
3379 if (unlikely(IS_ERR(filename)))
3380 return ERR_CAST(filename);
3381
9883d185 3382 set_nameidata(&nd, -1, filename);
c8a53ee5 3383 file = path_openat(&nd, op, flags | LOOKUP_RCU);
73d049a4 3384 if (unlikely(file == ERR_PTR(-ECHILD)))
c8a53ee5 3385 file = path_openat(&nd, op, flags);
73d049a4 3386 if (unlikely(file == ERR_PTR(-ESTALE)))
c8a53ee5 3387 file = path_openat(&nd, op, flags | LOOKUP_REVAL);
9883d185 3388 restore_nameidata();
51689104 3389 putname(filename);
73d049a4
AV
3390 return file;
3391}
3392
fa14a0b8 3393static struct dentry *filename_create(int dfd, struct filename *name,
1ac12b4b 3394 struct path *path, unsigned int lookup_flags)
1da177e4 3395{
c663e5d8 3396 struct dentry *dentry = ERR_PTR(-EEXIST);
391172c4
AV
3397 struct qstr last;
3398 int type;
c30dabfe 3399 int err2;
1ac12b4b
JL
3400 int error;
3401 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3402
3403 /*
3404 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3405 * other flags passed in are ignored!
3406 */
3407 lookup_flags &= LOOKUP_REVAL;
3408
5c31b6ce
AV
3409 name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
3410 if (IS_ERR(name))
3411 return ERR_CAST(name);
1da177e4 3412
c663e5d8
CH
3413 /*
3414 * Yucky last component or no last component at all?
3415 * (foo/., foo/.., /////)
3416 */
5c31b6ce 3417 if (unlikely(type != LAST_NORM))
ed75e95d 3418 goto out;
c663e5d8 3419
c30dabfe 3420 /* don't fail immediately if it's r/o, at least try to report other errors */
391172c4 3421 err2 = mnt_want_write(path->mnt);
c663e5d8
CH
3422 /*
3423 * Do the final lookup.
3424 */
391172c4
AV
3425 lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
3426 mutex_lock_nested(&path->dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3427 dentry = __lookup_hash(&last, path->dentry, lookup_flags);
1da177e4 3428 if (IS_ERR(dentry))
a8104a9f 3429 goto unlock;
c663e5d8 3430
a8104a9f 3431 error = -EEXIST;
b18825a7 3432 if (d_is_positive(dentry))
a8104a9f 3433 goto fail;
b18825a7 3434
c663e5d8
CH
3435 /*
3436 * Special case - lookup gave negative, but... we had foo/bar/
3437 * From the vfs_mknod() POV we just have a negative dentry -
3438 * all is fine. Let's be bastards - you had / on the end, you've
3439 * been asking for (non-existent) directory. -ENOENT for you.
3440 */
391172c4 3441 if (unlikely(!is_dir && last.name[last.len])) {
a8104a9f 3442 error = -ENOENT;
ed75e95d 3443 goto fail;
e9baf6e5 3444 }
c30dabfe
JK
3445 if (unlikely(err2)) {
3446 error = err2;
a8104a9f 3447 goto fail;
c30dabfe 3448 }
181c37b6 3449 putname(name);
1da177e4 3450 return dentry;
1da177e4 3451fail:
a8104a9f
AV
3452 dput(dentry);
3453 dentry = ERR_PTR(error);
3454unlock:
391172c4 3455 mutex_unlock(&path->dentry->d_inode->i_mutex);
c30dabfe 3456 if (!err2)
391172c4 3457 mnt_drop_write(path->mnt);
ed75e95d 3458out:
391172c4 3459 path_put(path);
181c37b6 3460 putname(name);
1da177e4
LT
3461 return dentry;
3462}
fa14a0b8
AV
3463
3464struct dentry *kern_path_create(int dfd, const char *pathname,
3465 struct path *path, unsigned int lookup_flags)
3466{
181c37b6
AV
3467 return filename_create(dfd, getname_kernel(pathname),
3468 path, lookup_flags);
fa14a0b8 3469}
dae6ad8f
AV
3470EXPORT_SYMBOL(kern_path_create);
3471
921a1650
AV
3472void done_path_create(struct path *path, struct dentry *dentry)
3473{
3474 dput(dentry);
3475 mutex_unlock(&path->dentry->d_inode->i_mutex);
a8104a9f 3476 mnt_drop_write(path->mnt);
921a1650
AV
3477 path_put(path);
3478}
3479EXPORT_SYMBOL(done_path_create);
3480
520ae687 3481inline struct dentry *user_path_create(int dfd, const char __user *pathname,
1ac12b4b 3482 struct path *path, unsigned int lookup_flags)
dae6ad8f 3483{
181c37b6 3484 return filename_create(dfd, getname(pathname), path, lookup_flags);
dae6ad8f
AV
3485}
3486EXPORT_SYMBOL(user_path_create);
3487
1a67aafb 3488int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
1da177e4 3489{
a95164d9 3490 int error = may_create(dir, dentry);
1da177e4
LT
3491
3492 if (error)
3493 return error;
3494
975d6b39 3495 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1da177e4
LT
3496 return -EPERM;
3497
acfa4380 3498 if (!dir->i_op->mknod)
1da177e4
LT
3499 return -EPERM;
3500
08ce5f16
SH
3501 error = devcgroup_inode_mknod(mode, dev);
3502 if (error)
3503 return error;
3504
1da177e4
LT
3505 error = security_inode_mknod(dir, dentry, mode, dev);
3506 if (error)
3507 return error;
3508
1da177e4 3509 error = dir->i_op->mknod(dir, dentry, mode, dev);
a74574aa 3510 if (!error)
f38aa942 3511 fsnotify_create(dir, dentry);
1da177e4
LT
3512 return error;
3513}
4d359507 3514EXPORT_SYMBOL(vfs_mknod);
1da177e4 3515
f69aac00 3516static int may_mknod(umode_t mode)
463c3197
DH
3517{
3518 switch (mode & S_IFMT) {
3519 case S_IFREG:
3520 case S_IFCHR:
3521 case S_IFBLK:
3522 case S_IFIFO:
3523 case S_IFSOCK:
3524 case 0: /* zero mode translates to S_IFREG */
3525 return 0;
3526 case S_IFDIR:
3527 return -EPERM;
3528 default:
3529 return -EINVAL;
3530 }
3531}
3532
8208a22b 3533SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
2e4d0924 3534 unsigned, dev)
1da177e4 3535{
2ad94ae6 3536 struct dentry *dentry;
dae6ad8f
AV
3537 struct path path;
3538 int error;
972567f1 3539 unsigned int lookup_flags = 0;
1da177e4 3540
8e4bfca1
AV
3541 error = may_mknod(mode);
3542 if (error)
3543 return error;
972567f1
JL
3544retry:
3545 dentry = user_path_create(dfd, filename, &path, lookup_flags);
dae6ad8f
AV
3546 if (IS_ERR(dentry))
3547 return PTR_ERR(dentry);
2ad94ae6 3548
dae6ad8f 3549 if (!IS_POSIXACL(path.dentry->d_inode))
ce3b0f8d 3550 mode &= ~current_umask();
dae6ad8f 3551 error = security_path_mknod(&path, dentry, mode, dev);
be6d3e56 3552 if (error)
a8104a9f 3553 goto out;
463c3197 3554 switch (mode & S_IFMT) {
1da177e4 3555 case 0: case S_IFREG:
312b63fb 3556 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
1da177e4
LT
3557 break;
3558 case S_IFCHR: case S_IFBLK:
dae6ad8f 3559 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
1da177e4
LT
3560 new_decode_dev(dev));
3561 break;
3562 case S_IFIFO: case S_IFSOCK:
dae6ad8f 3563 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
1da177e4 3564 break;
1da177e4 3565 }
a8104a9f 3566out:
921a1650 3567 done_path_create(&path, dentry);
972567f1
JL
3568 if (retry_estale(error, lookup_flags)) {
3569 lookup_flags |= LOOKUP_REVAL;
3570 goto retry;
3571 }
1da177e4
LT
3572 return error;
3573}
3574
8208a22b 3575SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
5590ff0d
UD
3576{
3577 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3578}
3579
18bb1db3 3580int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1da177e4 3581{
a95164d9 3582 int error = may_create(dir, dentry);
8de52778 3583 unsigned max_links = dir->i_sb->s_max_links;
1da177e4
LT
3584
3585 if (error)
3586 return error;
3587
acfa4380 3588 if (!dir->i_op->mkdir)
1da177e4
LT
3589 return -EPERM;
3590
3591 mode &= (S_IRWXUGO|S_ISVTX);
3592 error = security_inode_mkdir(dir, dentry, mode);
3593 if (error)
3594 return error;
3595
8de52778
AV
3596 if (max_links && dir->i_nlink >= max_links)
3597 return -EMLINK;
3598
1da177e4 3599 error = dir->i_op->mkdir(dir, dentry, mode);
a74574aa 3600 if (!error)
f38aa942 3601 fsnotify_mkdir(dir, dentry);
1da177e4
LT
3602 return error;
3603}
4d359507 3604EXPORT_SYMBOL(vfs_mkdir);
1da177e4 3605
a218d0fd 3606SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
1da177e4 3607{
6902d925 3608 struct dentry *dentry;
dae6ad8f
AV
3609 struct path path;
3610 int error;
b76d8b82 3611 unsigned int lookup_flags = LOOKUP_DIRECTORY;
1da177e4 3612
b76d8b82
JL
3613retry:
3614 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
6902d925 3615 if (IS_ERR(dentry))
dae6ad8f 3616 return PTR_ERR(dentry);
1da177e4 3617
dae6ad8f 3618 if (!IS_POSIXACL(path.dentry->d_inode))
ce3b0f8d 3619 mode &= ~current_umask();
dae6ad8f 3620 error = security_path_mkdir(&path, dentry, mode);
a8104a9f
AV
3621 if (!error)
3622 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
921a1650 3623 done_path_create(&path, dentry);
b76d8b82
JL
3624 if (retry_estale(error, lookup_flags)) {
3625 lookup_flags |= LOOKUP_REVAL;
3626 goto retry;
3627 }
1da177e4
LT
3628 return error;
3629}
3630
a218d0fd 3631SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
5590ff0d
UD
3632{
3633 return sys_mkdirat(AT_FDCWD, pathname, mode);
3634}
3635
1da177e4 3636/*
a71905f0 3637 * The dentry_unhash() helper will try to drop the dentry early: we
c0d02594 3638 * should have a usage count of 1 if we're the only user of this
a71905f0
SW
3639 * dentry, and if that is true (possibly after pruning the dcache),
3640 * then we drop the dentry now.
1da177e4
LT
3641 *
3642 * A low-level filesystem can, if it choses, legally
3643 * do a
3644 *
3645 * if (!d_unhashed(dentry))
3646 * return -EBUSY;
3647 *
3648 * if it cannot handle the case of removing a directory
3649 * that is still in use by something else..
3650 */
3651void dentry_unhash(struct dentry *dentry)
3652{
dc168427 3653 shrink_dcache_parent(dentry);
1da177e4 3654 spin_lock(&dentry->d_lock);
98474236 3655 if (dentry->d_lockref.count == 1)
1da177e4
LT
3656 __d_drop(dentry);
3657 spin_unlock(&dentry->d_lock);
1da177e4 3658}
4d359507 3659EXPORT_SYMBOL(dentry_unhash);
1da177e4
LT
3660
3661int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3662{
3663 int error = may_delete(dir, dentry, 1);
3664
3665 if (error)
3666 return error;
3667
acfa4380 3668 if (!dir->i_op->rmdir)
1da177e4
LT
3669 return -EPERM;
3670
1d2ef590 3671 dget(dentry);
1b1dcc1b 3672 mutex_lock(&dentry->d_inode->i_mutex);
912dbc15
SW
3673
3674 error = -EBUSY;
7af1364f 3675 if (is_local_mountpoint(dentry))
912dbc15
SW
3676 goto out;
3677
3678 error = security_inode_rmdir(dir, dentry);
3679 if (error)
3680 goto out;
3681
3cebde24 3682 shrink_dcache_parent(dentry);
912dbc15
SW
3683 error = dir->i_op->rmdir(dir, dentry);
3684 if (error)
3685 goto out;
3686
3687 dentry->d_inode->i_flags |= S_DEAD;
3688 dont_mount(dentry);
8ed936b5 3689 detach_mounts(dentry);
912dbc15
SW
3690
3691out:
1b1dcc1b 3692 mutex_unlock(&dentry->d_inode->i_mutex);
1d2ef590 3693 dput(dentry);
912dbc15 3694 if (!error)
1da177e4 3695 d_delete(dentry);
1da177e4
LT
3696 return error;
3697}
4d359507 3698EXPORT_SYMBOL(vfs_rmdir);
1da177e4 3699
5590ff0d 3700static long do_rmdir(int dfd, const char __user *pathname)
1da177e4
LT
3701{
3702 int error = 0;
91a27b2a 3703 struct filename *name;
1da177e4 3704 struct dentry *dentry;
f5beed75
AV
3705 struct path path;
3706 struct qstr last;
3707 int type;
c6ee9206
JL
3708 unsigned int lookup_flags = 0;
3709retry:
f5beed75
AV
3710 name = user_path_parent(dfd, pathname,
3711 &path, &last, &type, lookup_flags);
91a27b2a
JL
3712 if (IS_ERR(name))
3713 return PTR_ERR(name);
1da177e4 3714
f5beed75 3715 switch (type) {
0612d9fb
OH
3716 case LAST_DOTDOT:
3717 error = -ENOTEMPTY;
3718 goto exit1;
3719 case LAST_DOT:
3720 error = -EINVAL;
3721 goto exit1;
3722 case LAST_ROOT:
3723 error = -EBUSY;
3724 goto exit1;
1da177e4 3725 }
0612d9fb 3726
f5beed75 3727 error = mnt_want_write(path.mnt);
c30dabfe
JK
3728 if (error)
3729 goto exit1;
0612d9fb 3730
f5beed75
AV
3731 mutex_lock_nested(&path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3732 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
1da177e4 3733 error = PTR_ERR(dentry);
6902d925
DH
3734 if (IS_ERR(dentry))
3735 goto exit2;
e6bc45d6
TT
3736 if (!dentry->d_inode) {
3737 error = -ENOENT;
3738 goto exit3;
3739 }
f5beed75 3740 error = security_path_rmdir(&path, dentry);
be6d3e56 3741 if (error)
c30dabfe 3742 goto exit3;
f5beed75 3743 error = vfs_rmdir(path.dentry->d_inode, dentry);
0622753b 3744exit3:
6902d925
DH
3745 dput(dentry);
3746exit2:
f5beed75
AV
3747 mutex_unlock(&path.dentry->d_inode->i_mutex);
3748 mnt_drop_write(path.mnt);
1da177e4 3749exit1:
f5beed75 3750 path_put(&path);
1da177e4 3751 putname(name);
c6ee9206
JL
3752 if (retry_estale(error, lookup_flags)) {
3753 lookup_flags |= LOOKUP_REVAL;
3754 goto retry;
3755 }
1da177e4
LT
3756 return error;
3757}
3758
3cdad428 3759SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
5590ff0d
UD
3760{
3761 return do_rmdir(AT_FDCWD, pathname);
3762}
3763
b21996e3
BF
3764/**
3765 * vfs_unlink - unlink a filesystem object
3766 * @dir: parent directory
3767 * @dentry: victim
3768 * @delegated_inode: returns victim inode, if the inode is delegated.
3769 *
3770 * The caller must hold dir->i_mutex.
3771 *
3772 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3773 * return a reference to the inode in delegated_inode. The caller
3774 * should then break the delegation on that inode and retry. Because
3775 * breaking a delegation may take a long time, the caller should drop
3776 * dir->i_mutex before doing so.
3777 *
3778 * Alternatively, a caller may pass NULL for delegated_inode. This may
3779 * be appropriate for callers that expect the underlying filesystem not
3780 * to be NFS exported.
3781 */
3782int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
1da177e4 3783{
9accbb97 3784 struct inode *target = dentry->d_inode;
1da177e4
LT
3785 int error = may_delete(dir, dentry, 0);
3786
3787 if (error)
3788 return error;
3789
acfa4380 3790 if (!dir->i_op->unlink)
1da177e4
LT
3791 return -EPERM;
3792
9accbb97 3793 mutex_lock(&target->i_mutex);
8ed936b5 3794 if (is_local_mountpoint(dentry))
1da177e4
LT
3795 error = -EBUSY;
3796 else {
3797 error = security_inode_unlink(dir, dentry);
bec1052e 3798 if (!error) {
5a14696c
BF
3799 error = try_break_deleg(target, delegated_inode);
3800 if (error)
b21996e3 3801 goto out;
1da177e4 3802 error = dir->i_op->unlink(dir, dentry);
8ed936b5 3803 if (!error) {
d83c49f3 3804 dont_mount(dentry);
8ed936b5
EB
3805 detach_mounts(dentry);
3806 }
bec1052e 3807 }
1da177e4 3808 }
b21996e3 3809out:
9accbb97 3810 mutex_unlock(&target->i_mutex);
1da177e4
LT
3811
3812 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3813 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
9accbb97 3814 fsnotify_link_count(target);
e234f35c 3815 d_delete(dentry);
1da177e4 3816 }
0eeca283 3817
1da177e4
LT
3818 return error;
3819}
4d359507 3820EXPORT_SYMBOL(vfs_unlink);
1da177e4
LT
3821
3822/*
3823 * Make sure that the actual truncation of the file will occur outside its
1b1dcc1b 3824 * directory's i_mutex. Truncate can take a long time if there is a lot of
1da177e4
LT
3825 * writeout happening, and we don't want to prevent access to the directory
3826 * while waiting on the I/O.
3827 */
5590ff0d 3828static long do_unlinkat(int dfd, const char __user *pathname)
1da177e4 3829{
2ad94ae6 3830 int error;
91a27b2a 3831 struct filename *name;
1da177e4 3832 struct dentry *dentry;
f5beed75
AV
3833 struct path path;
3834 struct qstr last;
3835 int type;
1da177e4 3836 struct inode *inode = NULL;
b21996e3 3837 struct inode *delegated_inode = NULL;
5d18f813
JL
3838 unsigned int lookup_flags = 0;
3839retry:
f5beed75
AV
3840 name = user_path_parent(dfd, pathname,
3841 &path, &last, &type, lookup_flags);
91a27b2a
JL
3842 if (IS_ERR(name))
3843 return PTR_ERR(name);
2ad94ae6 3844
1da177e4 3845 error = -EISDIR;
f5beed75 3846 if (type != LAST_NORM)
1da177e4 3847 goto exit1;
0612d9fb 3848
f5beed75 3849 error = mnt_want_write(path.mnt);
c30dabfe
JK
3850 if (error)
3851 goto exit1;
b21996e3 3852retry_deleg:
f5beed75
AV
3853 mutex_lock_nested(&path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3854 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
1da177e4
LT
3855 error = PTR_ERR(dentry);
3856 if (!IS_ERR(dentry)) {
3857 /* Why not before? Because we want correct error value */
f5beed75 3858 if (last.name[last.len])
50338b88 3859 goto slashes;
1da177e4 3860 inode = dentry->d_inode;
b18825a7 3861 if (d_is_negative(dentry))
e6bc45d6
TT
3862 goto slashes;
3863 ihold(inode);
f5beed75 3864 error = security_path_unlink(&path, dentry);
be6d3e56 3865 if (error)
c30dabfe 3866 goto exit2;
f5beed75 3867 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
c30dabfe 3868exit2:
1da177e4
LT
3869 dput(dentry);
3870 }
f5beed75 3871 mutex_unlock(&path.dentry->d_inode->i_mutex);
1da177e4
LT
3872 if (inode)
3873 iput(inode); /* truncate the inode here */
b21996e3
BF
3874 inode = NULL;
3875 if (delegated_inode) {
5a14696c 3876 error = break_deleg_wait(&delegated_inode);
b21996e3
BF
3877 if (!error)
3878 goto retry_deleg;
3879 }
f5beed75 3880 mnt_drop_write(path.mnt);
1da177e4 3881exit1:
f5beed75 3882 path_put(&path);
1da177e4 3883 putname(name);
5d18f813
JL
3884 if (retry_estale(error, lookup_flags)) {
3885 lookup_flags |= LOOKUP_REVAL;
3886 inode = NULL;
3887 goto retry;
3888 }
1da177e4
LT
3889 return error;
3890
3891slashes:
b18825a7
DH
3892 if (d_is_negative(dentry))
3893 error = -ENOENT;
44b1d530 3894 else if (d_is_dir(dentry))
b18825a7
DH
3895 error = -EISDIR;
3896 else
3897 error = -ENOTDIR;
1da177e4
LT
3898 goto exit2;
3899}
3900
2e4d0924 3901SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
5590ff0d
UD
3902{
3903 if ((flag & ~AT_REMOVEDIR) != 0)
3904 return -EINVAL;
3905
3906 if (flag & AT_REMOVEDIR)
3907 return do_rmdir(dfd, pathname);
3908
3909 return do_unlinkat(dfd, pathname);
3910}
3911
3480b257 3912SYSCALL_DEFINE1(unlink, const char __user *, pathname)
5590ff0d
UD
3913{
3914 return do_unlinkat(AT_FDCWD, pathname);
3915}
3916
db2e747b 3917int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
1da177e4 3918{
a95164d9 3919 int error = may_create(dir, dentry);
1da177e4
LT
3920
3921 if (error)
3922 return error;
3923
acfa4380 3924 if (!dir->i_op->symlink)
1da177e4
LT
3925 return -EPERM;
3926
3927 error = security_inode_symlink(dir, dentry, oldname);
3928 if (error)
3929 return error;
3930
1da177e4 3931 error = dir->i_op->symlink(dir, dentry, oldname);
a74574aa 3932 if (!error)
f38aa942 3933 fsnotify_create(dir, dentry);
1da177e4
LT
3934 return error;
3935}
4d359507 3936EXPORT_SYMBOL(vfs_symlink);
1da177e4 3937
2e4d0924
HC
3938SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3939 int, newdfd, const char __user *, newname)
1da177e4 3940{
2ad94ae6 3941 int error;
91a27b2a 3942 struct filename *from;
6902d925 3943 struct dentry *dentry;
dae6ad8f 3944 struct path path;
f46d3567 3945 unsigned int lookup_flags = 0;
1da177e4
LT
3946
3947 from = getname(oldname);
2ad94ae6 3948 if (IS_ERR(from))
1da177e4 3949 return PTR_ERR(from);
f46d3567
JL
3950retry:
3951 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
6902d925
DH
3952 error = PTR_ERR(dentry);
3953 if (IS_ERR(dentry))
dae6ad8f 3954 goto out_putname;
6902d925 3955
91a27b2a 3956 error = security_path_symlink(&path, dentry, from->name);
a8104a9f 3957 if (!error)
91a27b2a 3958 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
921a1650 3959 done_path_create(&path, dentry);
f46d3567
JL
3960 if (retry_estale(error, lookup_flags)) {
3961 lookup_flags |= LOOKUP_REVAL;
3962 goto retry;
3963 }
6902d925 3964out_putname:
1da177e4
LT
3965 putname(from);
3966 return error;
3967}
3968
3480b257 3969SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
5590ff0d
UD
3970{
3971 return sys_symlinkat(oldname, AT_FDCWD, newname);
3972}
3973
146a8595
BF
3974/**
3975 * vfs_link - create a new link
3976 * @old_dentry: object to be linked
3977 * @dir: new parent
3978 * @new_dentry: where to create the new link
3979 * @delegated_inode: returns inode needing a delegation break
3980 *
3981 * The caller must hold dir->i_mutex
3982 *
3983 * If vfs_link discovers a delegation on the to-be-linked file in need
3984 * of breaking, it will return -EWOULDBLOCK and return a reference to the
3985 * inode in delegated_inode. The caller should then break the delegation
3986 * and retry. Because breaking a delegation may take a long time, the
3987 * caller should drop the i_mutex before doing so.
3988 *
3989 * Alternatively, a caller may pass NULL for delegated_inode. This may
3990 * be appropriate for callers that expect the underlying filesystem not
3991 * to be NFS exported.
3992 */
3993int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
1da177e4
LT
3994{
3995 struct inode *inode = old_dentry->d_inode;
8de52778 3996 unsigned max_links = dir->i_sb->s_max_links;
1da177e4
LT
3997 int error;
3998
3999 if (!inode)
4000 return -ENOENT;
4001
a95164d9 4002 error = may_create(dir, new_dentry);
1da177e4
LT
4003 if (error)
4004 return error;
4005
4006 if (dir->i_sb != inode->i_sb)
4007 return -EXDEV;
4008
4009 /*
4010 * A link to an append-only or immutable file cannot be created.
4011 */
4012 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4013 return -EPERM;
acfa4380 4014 if (!dir->i_op->link)
1da177e4 4015 return -EPERM;
7e79eedb 4016 if (S_ISDIR(inode->i_mode))
1da177e4
LT
4017 return -EPERM;
4018
4019 error = security_inode_link(old_dentry, dir, new_dentry);
4020 if (error)
4021 return error;
4022
7e79eedb 4023 mutex_lock(&inode->i_mutex);
aae8a97d 4024 /* Make sure we don't allow creating hardlink to an unlinked file */
f4e0c30c 4025 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
aae8a97d 4026 error = -ENOENT;
8de52778
AV
4027 else if (max_links && inode->i_nlink >= max_links)
4028 error = -EMLINK;
146a8595
BF
4029 else {
4030 error = try_break_deleg(inode, delegated_inode);
4031 if (!error)
4032 error = dir->i_op->link(old_dentry, dir, new_dentry);
4033 }
f4e0c30c
AV
4034
4035 if (!error && (inode->i_state & I_LINKABLE)) {
4036 spin_lock(&inode->i_lock);
4037 inode->i_state &= ~I_LINKABLE;
4038 spin_unlock(&inode->i_lock);
4039 }
7e79eedb 4040 mutex_unlock(&inode->i_mutex);
e31e14ec 4041 if (!error)
7e79eedb 4042 fsnotify_link(dir, inode, new_dentry);
1da177e4
LT
4043 return error;
4044}
4d359507 4045EXPORT_SYMBOL(vfs_link);
1da177e4
LT
4046
4047/*
4048 * Hardlinks are often used in delicate situations. We avoid
4049 * security-related surprises by not following symlinks on the
4050 * newname. --KAB
4051 *
4052 * We don't follow them on the oldname either to be compatible
4053 * with linux 2.0, and to avoid hard-linking to directories
4054 * and other special files. --ADM
4055 */
2e4d0924
HC
4056SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4057 int, newdfd, const char __user *, newname, int, flags)
1da177e4
LT
4058{
4059 struct dentry *new_dentry;
dae6ad8f 4060 struct path old_path, new_path;
146a8595 4061 struct inode *delegated_inode = NULL;
11a7b371 4062 int how = 0;
1da177e4 4063 int error;
1da177e4 4064
11a7b371 4065 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
c04030e1 4066 return -EINVAL;
11a7b371 4067 /*
f0cc6ffb
LT
4068 * To use null names we require CAP_DAC_READ_SEARCH
4069 * This ensures that not everyone will be able to create
4070 * handlink using the passed filedescriptor.
11a7b371 4071 */
f0cc6ffb
LT
4072 if (flags & AT_EMPTY_PATH) {
4073 if (!capable(CAP_DAC_READ_SEARCH))
4074 return -ENOENT;
11a7b371 4075 how = LOOKUP_EMPTY;
f0cc6ffb 4076 }
11a7b371
AK
4077
4078 if (flags & AT_SYMLINK_FOLLOW)
4079 how |= LOOKUP_FOLLOW;
442e31ca 4080retry:
11a7b371 4081 error = user_path_at(olddfd, oldname, how, &old_path);
1da177e4 4082 if (error)
2ad94ae6
AV
4083 return error;
4084
442e31ca
JL
4085 new_dentry = user_path_create(newdfd, newname, &new_path,
4086 (how & LOOKUP_REVAL));
1da177e4 4087 error = PTR_ERR(new_dentry);
6902d925 4088 if (IS_ERR(new_dentry))
dae6ad8f
AV
4089 goto out;
4090
4091 error = -EXDEV;
4092 if (old_path.mnt != new_path.mnt)
4093 goto out_dput;
800179c9
KC
4094 error = may_linkat(&old_path);
4095 if (unlikely(error))
4096 goto out_dput;
dae6ad8f 4097 error = security_path_link(old_path.dentry, &new_path, new_dentry);
be6d3e56 4098 if (error)
a8104a9f 4099 goto out_dput;
146a8595 4100 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
75c3f29d 4101out_dput:
921a1650 4102 done_path_create(&new_path, new_dentry);
146a8595
BF
4103 if (delegated_inode) {
4104 error = break_deleg_wait(&delegated_inode);
d22e6338
OD
4105 if (!error) {
4106 path_put(&old_path);
146a8595 4107 goto retry;
d22e6338 4108 }
146a8595 4109 }
442e31ca 4110 if (retry_estale(error, how)) {
d22e6338 4111 path_put(&old_path);
442e31ca
JL
4112 how |= LOOKUP_REVAL;
4113 goto retry;
4114 }
1da177e4 4115out:
2d8f3038 4116 path_put(&old_path);
1da177e4
LT
4117
4118 return error;
4119}
4120
3480b257 4121SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
5590ff0d 4122{
c04030e1 4123 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
5590ff0d
UD
4124}
4125
bc27027a
MS
4126/**
4127 * vfs_rename - rename a filesystem object
4128 * @old_dir: parent of source
4129 * @old_dentry: source
4130 * @new_dir: parent of destination
4131 * @new_dentry: destination
4132 * @delegated_inode: returns an inode needing a delegation break
520c8b16 4133 * @flags: rename flags
bc27027a
MS
4134 *
4135 * The caller must hold multiple mutexes--see lock_rename()).
4136 *
4137 * If vfs_rename discovers a delegation in need of breaking at either
4138 * the source or destination, it will return -EWOULDBLOCK and return a
4139 * reference to the inode in delegated_inode. The caller should then
4140 * break the delegation and retry. Because breaking a delegation may
4141 * take a long time, the caller should drop all locks before doing
4142 * so.
4143 *
4144 * Alternatively, a caller may pass NULL for delegated_inode. This may
4145 * be appropriate for callers that expect the underlying filesystem not
4146 * to be NFS exported.
4147 *
1da177e4
LT
4148 * The worst of all namespace operations - renaming directory. "Perverted"
4149 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4150 * Problems:
d03b29a2 4151 * a) we can get into loop creation.
1da177e4
LT
4152 * b) race potential - two innocent renames can create a loop together.
4153 * That's where 4.4 screws up. Current fix: serialization on
a11f3a05 4154 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
1da177e4 4155 * story.
6cedba89
BF
4156 * c) we have to lock _four_ objects - parents and victim (if it exists),
4157 * and source (if it is not a directory).
1b1dcc1b 4158 * And that - after we got ->i_mutex on parents (until then we don't know
1da177e4
LT
4159 * whether the target exists). Solution: try to be smart with locking
4160 * order for inodes. We rely on the fact that tree topology may change
a11f3a05 4161 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
1da177e4
LT
4162 * move will be locked. Thus we can rank directories by the tree
4163 * (ancestors first) and rank all non-directories after them.
4164 * That works since everybody except rename does "lock parent, lookup,
a11f3a05 4165 * lock child" and rename is under ->s_vfs_rename_mutex.
1da177e4
LT
4166 * HOWEVER, it relies on the assumption that any object with ->lookup()
4167 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4168 * we'd better make sure that there's no link(2) for them.
e4eaac06 4169 * d) conversion from fhandle to dentry may come in the wrong moment - when
1b1dcc1b 4170 * we are removing the target. Solution: we will have to grab ->i_mutex
1da177e4 4171 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
c41b20e7 4172 * ->i_mutex on parents, which works but leads to some truly excessive
1da177e4
LT
4173 * locking].
4174 */
bc27027a
MS
4175int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
4176 struct inode *new_dir, struct dentry *new_dentry,
520c8b16 4177 struct inode **delegated_inode, unsigned int flags)
1da177e4 4178{
bc27027a
MS
4179 int error;
4180 bool is_dir = d_is_dir(old_dentry);
4181 const unsigned char *old_name;
4182 struct inode *source = old_dentry->d_inode;
9055cba7 4183 struct inode *target = new_dentry->d_inode;
da1ce067
MS
4184 bool new_is_dir = false;
4185 unsigned max_links = new_dir->i_sb->s_max_links;
bc27027a
MS
4186
4187 if (source == target)
4188 return 0;
4189
4190 error = may_delete(old_dir, old_dentry, is_dir);
4191 if (error)
4192 return error;
4193
da1ce067 4194 if (!target) {
bc27027a 4195 error = may_create(new_dir, new_dentry);
da1ce067
MS
4196 } else {
4197 new_is_dir = d_is_dir(new_dentry);
4198
4199 if (!(flags & RENAME_EXCHANGE))
4200 error = may_delete(new_dir, new_dentry, is_dir);
4201 else
4202 error = may_delete(new_dir, new_dentry, new_is_dir);
4203 }
bc27027a
MS
4204 if (error)
4205 return error;
4206
7177a9c4 4207 if (!old_dir->i_op->rename && !old_dir->i_op->rename2)
bc27027a 4208 return -EPERM;
1da177e4 4209
520c8b16
MS
4210 if (flags && !old_dir->i_op->rename2)
4211 return -EINVAL;
4212
1da177e4
LT
4213 /*
4214 * If we are going to change the parent - check write permissions,
4215 * we'll need to flip '..'.
4216 */
da1ce067
MS
4217 if (new_dir != old_dir) {
4218 if (is_dir) {
4219 error = inode_permission(source, MAY_WRITE);
4220 if (error)
4221 return error;
4222 }
4223 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4224 error = inode_permission(target, MAY_WRITE);
4225 if (error)
4226 return error;
4227 }
1da177e4
LT
4228 }
4229
0b3974eb
MS
4230 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4231 flags);
1da177e4
LT
4232 if (error)
4233 return error;
4234
bc27027a 4235 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
1d2ef590 4236 dget(new_dentry);
da1ce067 4237 if (!is_dir || (flags & RENAME_EXCHANGE))
bc27027a
MS
4238 lock_two_nondirectories(source, target);
4239 else if (target)
1b1dcc1b 4240 mutex_lock(&target->i_mutex);
9055cba7
SW
4241
4242 error = -EBUSY;
7af1364f 4243 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
9055cba7
SW
4244 goto out;
4245
da1ce067 4246 if (max_links && new_dir != old_dir) {
bc27027a 4247 error = -EMLINK;
da1ce067 4248 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
bc27027a 4249 goto out;
da1ce067
MS
4250 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4251 old_dir->i_nlink >= max_links)
4252 goto out;
4253 }
4254 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4255 shrink_dcache_parent(new_dentry);
4256 if (!is_dir) {
bc27027a 4257 error = try_break_deleg(source, delegated_inode);
8e6d782c
BF
4258 if (error)
4259 goto out;
da1ce067
MS
4260 }
4261 if (target && !new_is_dir) {
4262 error = try_break_deleg(target, delegated_inode);
4263 if (error)
4264 goto out;
8e6d782c 4265 }
7177a9c4 4266 if (!old_dir->i_op->rename2) {
520c8b16
MS
4267 error = old_dir->i_op->rename(old_dir, old_dentry,
4268 new_dir, new_dentry);
4269 } else {
7177a9c4 4270 WARN_ON(old_dir->i_op->rename != NULL);
520c8b16
MS
4271 error = old_dir->i_op->rename2(old_dir, old_dentry,
4272 new_dir, new_dentry, flags);
4273 }
51892bbb
SW
4274 if (error)
4275 goto out;
4276
da1ce067 4277 if (!(flags & RENAME_EXCHANGE) && target) {
bc27027a
MS
4278 if (is_dir)
4279 target->i_flags |= S_DEAD;
51892bbb 4280 dont_mount(new_dentry);
8ed936b5 4281 detach_mounts(new_dentry);
bc27027a 4282 }
da1ce067
MS
4283 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4284 if (!(flags & RENAME_EXCHANGE))
4285 d_move(old_dentry, new_dentry);
4286 else
4287 d_exchange(old_dentry, new_dentry);
4288 }
51892bbb 4289out:
da1ce067 4290 if (!is_dir || (flags & RENAME_EXCHANGE))
bc27027a
MS
4291 unlock_two_nondirectories(source, target);
4292 else if (target)
4293 mutex_unlock(&target->i_mutex);
1da177e4 4294 dput(new_dentry);
da1ce067 4295 if (!error) {
123df294 4296 fsnotify_move(old_dir, new_dir, old_name, is_dir,
da1ce067
MS
4297 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4298 if (flags & RENAME_EXCHANGE) {
4299 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4300 new_is_dir, NULL, new_dentry);
4301 }
4302 }
0eeca283
RL
4303 fsnotify_oldname_free(old_name);
4304
1da177e4
LT
4305 return error;
4306}
4d359507 4307EXPORT_SYMBOL(vfs_rename);
1da177e4 4308
520c8b16
MS
4309SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4310 int, newdfd, const char __user *, newname, unsigned int, flags)
1da177e4 4311{
2ad94ae6
AV
4312 struct dentry *old_dentry, *new_dentry;
4313 struct dentry *trap;
f5beed75
AV
4314 struct path old_path, new_path;
4315 struct qstr old_last, new_last;
4316 int old_type, new_type;
8e6d782c 4317 struct inode *delegated_inode = NULL;
91a27b2a
JL
4318 struct filename *from;
4319 struct filename *to;
f5beed75 4320 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
c6a94284 4321 bool should_retry = false;
2ad94ae6 4322 int error;
520c8b16 4323
0d7a8555 4324 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
da1ce067
MS
4325 return -EINVAL;
4326
0d7a8555
MS
4327 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4328 (flags & RENAME_EXCHANGE))
520c8b16
MS
4329 return -EINVAL;
4330
0d7a8555
MS
4331 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4332 return -EPERM;
4333
f5beed75
AV
4334 if (flags & RENAME_EXCHANGE)
4335 target_flags = 0;
4336
c6a94284 4337retry:
f5beed75
AV
4338 from = user_path_parent(olddfd, oldname,
4339 &old_path, &old_last, &old_type, lookup_flags);
91a27b2a
JL
4340 if (IS_ERR(from)) {
4341 error = PTR_ERR(from);
1da177e4 4342 goto exit;
91a27b2a 4343 }
1da177e4 4344
f5beed75
AV
4345 to = user_path_parent(newdfd, newname,
4346 &new_path, &new_last, &new_type, lookup_flags);
91a27b2a
JL
4347 if (IS_ERR(to)) {
4348 error = PTR_ERR(to);
1da177e4 4349 goto exit1;
91a27b2a 4350 }
1da177e4
LT
4351
4352 error = -EXDEV;
f5beed75 4353 if (old_path.mnt != new_path.mnt)
1da177e4
LT
4354 goto exit2;
4355
1da177e4 4356 error = -EBUSY;
f5beed75 4357 if (old_type != LAST_NORM)
1da177e4
LT
4358 goto exit2;
4359
0a7c3937
MS
4360 if (flags & RENAME_NOREPLACE)
4361 error = -EEXIST;
f5beed75 4362 if (new_type != LAST_NORM)
1da177e4
LT
4363 goto exit2;
4364
f5beed75 4365 error = mnt_want_write(old_path.mnt);
c30dabfe
JK
4366 if (error)
4367 goto exit2;
4368
8e6d782c 4369retry_deleg:
f5beed75 4370 trap = lock_rename(new_path.dentry, old_path.dentry);
1da177e4 4371
f5beed75 4372 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
1da177e4
LT
4373 error = PTR_ERR(old_dentry);
4374 if (IS_ERR(old_dentry))
4375 goto exit3;
4376 /* source must exist */
4377 error = -ENOENT;
b18825a7 4378 if (d_is_negative(old_dentry))
1da177e4 4379 goto exit4;
f5beed75 4380 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
0a7c3937
MS
4381 error = PTR_ERR(new_dentry);
4382 if (IS_ERR(new_dentry))
4383 goto exit4;
4384 error = -EEXIST;
4385 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4386 goto exit5;
da1ce067
MS
4387 if (flags & RENAME_EXCHANGE) {
4388 error = -ENOENT;
4389 if (d_is_negative(new_dentry))
4390 goto exit5;
4391
4392 if (!d_is_dir(new_dentry)) {
4393 error = -ENOTDIR;
f5beed75 4394 if (new_last.name[new_last.len])
da1ce067
MS
4395 goto exit5;
4396 }
4397 }
1da177e4 4398 /* unless the source is a directory trailing slashes give -ENOTDIR */
44b1d530 4399 if (!d_is_dir(old_dentry)) {
1da177e4 4400 error = -ENOTDIR;
f5beed75 4401 if (old_last.name[old_last.len])
0a7c3937 4402 goto exit5;
f5beed75 4403 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
0a7c3937 4404 goto exit5;
1da177e4
LT
4405 }
4406 /* source should not be ancestor of target */
4407 error = -EINVAL;
4408 if (old_dentry == trap)
0a7c3937 4409 goto exit5;
1da177e4 4410 /* target should not be an ancestor of source */
da1ce067
MS
4411 if (!(flags & RENAME_EXCHANGE))
4412 error = -ENOTEMPTY;
1da177e4
LT
4413 if (new_dentry == trap)
4414 goto exit5;
4415
f5beed75
AV
4416 error = security_path_rename(&old_path, old_dentry,
4417 &new_path, new_dentry, flags);
be6d3e56 4418 if (error)
c30dabfe 4419 goto exit5;
f5beed75
AV
4420 error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4421 new_path.dentry->d_inode, new_dentry,
520c8b16 4422 &delegated_inode, flags);
1da177e4
LT
4423exit5:
4424 dput(new_dentry);
4425exit4:
4426 dput(old_dentry);
4427exit3:
f5beed75 4428 unlock_rename(new_path.dentry, old_path.dentry);
8e6d782c
BF
4429 if (delegated_inode) {
4430 error = break_deleg_wait(&delegated_inode);
4431 if (!error)
4432 goto retry_deleg;
4433 }
f5beed75 4434 mnt_drop_write(old_path.mnt);
1da177e4 4435exit2:
c6a94284
JL
4436 if (retry_estale(error, lookup_flags))
4437 should_retry = true;
f5beed75 4438 path_put(&new_path);
2ad94ae6 4439 putname(to);
1da177e4 4440exit1:
f5beed75 4441 path_put(&old_path);
1da177e4 4442 putname(from);
c6a94284
JL
4443 if (should_retry) {
4444 should_retry = false;
4445 lookup_flags |= LOOKUP_REVAL;
4446 goto retry;
4447 }
2ad94ae6 4448exit:
1da177e4
LT
4449 return error;
4450}
4451
520c8b16
MS
4452SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4453 int, newdfd, const char __user *, newname)
4454{
4455 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4456}
4457
a26eab24 4458SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
5590ff0d 4459{
520c8b16 4460 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
5590ff0d
UD
4461}
4462
787fb6bc
MS
4463int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4464{
4465 int error = may_create(dir, dentry);
4466 if (error)
4467 return error;
4468
4469 if (!dir->i_op->mknod)
4470 return -EPERM;
4471
4472 return dir->i_op->mknod(dir, dentry,
4473 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4474}
4475EXPORT_SYMBOL(vfs_whiteout);
4476
5d826c84 4477int readlink_copy(char __user *buffer, int buflen, const char *link)
1da177e4 4478{
5d826c84 4479 int len = PTR_ERR(link);
1da177e4
LT
4480 if (IS_ERR(link))
4481 goto out;
4482
4483 len = strlen(link);
4484 if (len > (unsigned) buflen)
4485 len = buflen;
4486 if (copy_to_user(buffer, link, len))
4487 len = -EFAULT;
4488out:
4489 return len;
4490}
5d826c84 4491EXPORT_SYMBOL(readlink_copy);
1da177e4
LT
4492
4493/*
4494 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
4495 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
4496 * using) it for any given inode is up to filesystem.
4497 */
4498int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4499{
cc314eef 4500 void *cookie;
5f2c4179
AV
4501 struct inode *inode = d_inode(dentry);
4502 const char *link = inode->i_link;
694a1764 4503 int res;
cc314eef 4504
d4dee48b 4505 if (!link) {
5f2c4179 4506 link = inode->i_op->follow_link(dentry, &cookie);
d4dee48b
AV
4507 if (IS_ERR(link))
4508 return PTR_ERR(link);
4509 }
680baacb 4510 res = readlink_copy(buffer, buflen, link);
5f2c4179
AV
4511 if (inode->i_op->put_link)
4512 inode->i_op->put_link(inode, cookie);
694a1764 4513 return res;
1da177e4 4514}
4d359507 4515EXPORT_SYMBOL(generic_readlink);
1da177e4 4516
1da177e4
LT
4517/* get the link contents into pagecache */
4518static char *page_getlink(struct dentry * dentry, struct page **ppage)
4519{
ebd09abb
DG
4520 char *kaddr;
4521 struct page *page;
1da177e4 4522 struct address_space *mapping = dentry->d_inode->i_mapping;
090d2b18 4523 page = read_mapping_page(mapping, 0, NULL);
1da177e4 4524 if (IS_ERR(page))
6fe6900e 4525 return (char*)page;
1da177e4 4526 *ppage = page;
ebd09abb
DG
4527 kaddr = kmap(page);
4528 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
4529 return kaddr;
1da177e4
LT
4530}
4531
4532int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4533{
4534 struct page *page = NULL;
5d826c84 4535 int res = readlink_copy(buffer, buflen, page_getlink(dentry, &page));
1da177e4
LT
4536 if (page) {
4537 kunmap(page);
4538 page_cache_release(page);
4539 }
4540 return res;
4541}
4d359507 4542EXPORT_SYMBOL(page_readlink);
1da177e4 4543
6e77137b 4544const char *page_follow_link_light(struct dentry *dentry, void **cookie)
1da177e4 4545{
cc314eef 4546 struct page *page = NULL;
680baacb
AV
4547 char *res = page_getlink(dentry, &page);
4548 if (!IS_ERR(res))
4549 *cookie = page;
4550 return res;
1da177e4 4551}
4d359507 4552EXPORT_SYMBOL(page_follow_link_light);
1da177e4 4553
5f2c4179 4554void page_put_link(struct inode *unused, void *cookie)
1da177e4 4555{
cc314eef 4556 struct page *page = cookie;
680baacb
AV
4557 kunmap(page);
4558 page_cache_release(page);
1da177e4 4559}
4d359507 4560EXPORT_SYMBOL(page_put_link);
1da177e4 4561
54566b2c
NP
4562/*
4563 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4564 */
4565int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
1da177e4
LT
4566{
4567 struct address_space *mapping = inode->i_mapping;
0adb25d2 4568 struct page *page;
afddba49 4569 void *fsdata;
beb497ab 4570 int err;
1da177e4 4571 char *kaddr;
54566b2c
NP
4572 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4573 if (nofs)
4574 flags |= AOP_FLAG_NOFS;
1da177e4 4575
7e53cac4 4576retry:
afddba49 4577 err = pagecache_write_begin(NULL, mapping, 0, len-1,
54566b2c 4578 flags, &page, &fsdata);
1da177e4 4579 if (err)
afddba49
NP
4580 goto fail;
4581
e8e3c3d6 4582 kaddr = kmap_atomic(page);
1da177e4 4583 memcpy(kaddr, symname, len-1);
e8e3c3d6 4584 kunmap_atomic(kaddr);
afddba49
NP
4585
4586 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4587 page, fsdata);
1da177e4
LT
4588 if (err < 0)
4589 goto fail;
afddba49
NP
4590 if (err < len-1)
4591 goto retry;
4592
1da177e4
LT
4593 mark_inode_dirty(inode);
4594 return 0;
1da177e4
LT
4595fail:
4596 return err;
4597}
4d359507 4598EXPORT_SYMBOL(__page_symlink);
1da177e4 4599
0adb25d2
KK
4600int page_symlink(struct inode *inode, const char *symname, int len)
4601{
4602 return __page_symlink(inode, symname, len,
54566b2c 4603 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
0adb25d2 4604}
4d359507 4605EXPORT_SYMBOL(page_symlink);
0adb25d2 4606
92e1d5be 4607const struct inode_operations page_symlink_inode_operations = {
1da177e4
LT
4608 .readlink = generic_readlink,
4609 .follow_link = page_follow_link_light,
4610 .put_link = page_put_link,
4611};
1da177e4 4612EXPORT_SYMBOL(page_symlink_inode_operations);
This page took 1.31164 seconds and 5 git commands to generate.