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