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