update nd->inode in __do_follow_link() instead of after do_follow_link()
[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>
18#include <linux/module.h>
19#include <linux/slab.h>
20#include <linux/fs.h>
21#include <linux/namei.h>
1da177e4 22#include <linux/pagemap.h>
0eeca283 23#include <linux/fsnotify.h>
1da177e4
LT
24#include <linux/personality.h>
25#include <linux/security.h>
6146f0d5 26#include <linux/ima.h>
1da177e4
LT
27#include <linux/syscalls.h>
28#include <linux/mount.h>
29#include <linux/audit.h>
16f7e0fe 30#include <linux/capability.h>
834f2a4a 31#include <linux/file.h>
5590ff0d 32#include <linux/fcntl.h>
08ce5f16 33#include <linux/device_cgroup.h>
5ad4e53b 34#include <linux/fs_struct.h>
1da177e4
LT
35#include <asm/uaccess.h>
36
e81e3f4d
EP
37#include "internal.h"
38
1da177e4
LT
39/* [Feb-1997 T. Schoebel-Theuer]
40 * Fundamental changes in the pathname lookup mechanisms (namei)
41 * were necessary because of omirr. The reason is that omirr needs
42 * to know the _real_ pathname, not the user-supplied one, in case
43 * of symlinks (and also when transname replacements occur).
44 *
45 * The new code replaces the old recursive symlink resolution with
46 * an iterative one (in case of non-nested symlink chains). It does
47 * this with calls to <fs>_follow_link().
48 * As a side effect, dir_namei(), _namei() and follow_link() are now
49 * replaced with a single function lookup_dentry() that can handle all
50 * the special cases of the former code.
51 *
52 * With the new dcache, the pathname is stored at each inode, at least as
53 * long as the refcount of the inode is positive. As a side effect, the
54 * size of the dcache depends on the inode cache and thus is dynamic.
55 *
56 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
57 * resolution to correspond with current state of the code.
58 *
59 * Note that the symlink resolution is not *completely* iterative.
60 * There is still a significant amount of tail- and mid- recursion in
61 * the algorithm. Also, note that <fs>_readlink() is not used in
62 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
63 * may return different results than <fs>_follow_link(). Many virtual
64 * filesystems (including /proc) exhibit this behavior.
65 */
66
67/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
68 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
69 * and the name already exists in form of a symlink, try to create the new
70 * name indicated by the symlink. The old code always complained that the
71 * name already exists, due to not following the symlink even if its target
72 * is nonexistent. The new semantics affects also mknod() and link() when
73 * the name is a symlink pointing to a non-existant name.
74 *
75 * I don't know which semantics is the right one, since I have no access
76 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
77 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
78 * "old" one. Personally, I think the new semantics is much more logical.
79 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
80 * file does succeed in both HP-UX and SunOs, but not in Solaris
81 * and in the old Linux semantics.
82 */
83
84/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
85 * semantics. See the comments in "open_namei" and "do_link" below.
86 *
87 * [10-Sep-98 Alan Modra] Another symlink change.
88 */
89
90/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
91 * inside the path - always follow.
92 * in the last component in creation/removal/renaming - never follow.
93 * if LOOKUP_FOLLOW passed - follow.
94 * if the pathname has trailing slashes - follow.
95 * otherwise - don't follow.
96 * (applied in that order).
97 *
98 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
99 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
100 * During the 2.4 we need to fix the userland stuff depending on it -
101 * hopefully we will be able to get rid of that wart in 2.5. So far only
102 * XEmacs seems to be relying on it...
103 */
104/*
105 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
a11f3a05 106 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
1da177e4
LT
107 * any extra contention...
108 */
109
110/* In order to reduce some races, while at the same time doing additional
111 * checking and hopefully speeding things up, we copy filenames to the
112 * kernel data space before using them..
113 *
114 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
115 * PATH_MAX includes the nul terminator --RR.
116 */
858119e1 117static int do_getname(const char __user *filename, char *page)
1da177e4
LT
118{
119 int retval;
120 unsigned long len = PATH_MAX;
121
122 if (!segment_eq(get_fs(), KERNEL_DS)) {
123 if ((unsigned long) filename >= TASK_SIZE)
124 return -EFAULT;
125 if (TASK_SIZE - (unsigned long) filename < PATH_MAX)
126 len = TASK_SIZE - (unsigned long) filename;
127 }
128
129 retval = strncpy_from_user(page, filename, len);
130 if (retval > 0) {
131 if (retval < len)
132 return 0;
133 return -ENAMETOOLONG;
134 } else if (!retval)
135 retval = -ENOENT;
136 return retval;
137}
138
f52e0c11 139static char *getname_flags(const char __user * filename, int flags)
1da177e4
LT
140{
141 char *tmp, *result;
142
143 result = ERR_PTR(-ENOMEM);
144 tmp = __getname();
145 if (tmp) {
146 int retval = do_getname(filename, tmp);
147
148 result = tmp;
149 if (retval < 0) {
f52e0c11
AV
150 if (retval != -ENOENT || !(flags & LOOKUP_EMPTY)) {
151 __putname(tmp);
152 result = ERR_PTR(retval);
153 }
1da177e4
LT
154 }
155 }
156 audit_getname(result);
157 return result;
158}
159
f52e0c11
AV
160char *getname(const char __user * filename)
161{
162 return getname_flags(filename, 0);
163}
164
1da177e4
LT
165#ifdef CONFIG_AUDITSYSCALL
166void putname(const char *name)
167{
5ac3a9c2 168 if (unlikely(!audit_dummy_context()))
1da177e4
LT
169 audit_putname(name);
170 else
171 __putname(name);
172}
173EXPORT_SYMBOL(putname);
174#endif
175
5909ccaa
LT
176/*
177 * This does basic POSIX ACL permission checking
1da177e4 178 */
b74c79e9
NP
179static int acl_permission_check(struct inode *inode, int mask, unsigned int flags,
180 int (*check_acl)(struct inode *inode, int mask, unsigned int flags))
1da177e4
LT
181{
182 umode_t mode = inode->i_mode;
183
e6305c43
AV
184 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
185
da9592ed 186 if (current_fsuid() == inode->i_uid)
1da177e4
LT
187 mode >>= 6;
188 else {
189 if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
b74c79e9
NP
190 int error = check_acl(inode, mask, flags);
191 if (error != -EAGAIN)
192 return error;
1da177e4
LT
193 }
194
195 if (in_group_p(inode->i_gid))
196 mode >>= 3;
197 }
198
199 /*
200 * If the DACs are ok we don't need any capability check.
201 */
e6305c43 202 if ((mask & ~mode) == 0)
1da177e4 203 return 0;
5909ccaa
LT
204 return -EACCES;
205}
206
207/**
b74c79e9 208 * generic_permission - check for access rights on a Posix-like filesystem
5909ccaa
LT
209 * @inode: inode to check access rights for
210 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
211 * @check_acl: optional callback to check for Posix ACLs
39191628 212 * @flags: IPERM_FLAG_ flags.
5909ccaa
LT
213 *
214 * Used to check for read/write/execute permissions on a file.
215 * We use "fsuid" for this, letting us set arbitrary permissions
216 * for filesystem access without changing the "normal" uids which
b74c79e9
NP
217 * are used for other things.
218 *
219 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
220 * request cannot be satisfied (eg. requires blocking or too much complexity).
221 * It would then be called again in ref-walk mode.
5909ccaa 222 */
b74c79e9
NP
223int generic_permission(struct inode *inode, int mask, unsigned int flags,
224 int (*check_acl)(struct inode *inode, int mask, unsigned int flags))
5909ccaa
LT
225{
226 int ret;
227
228 /*
229 * Do the basic POSIX ACL permission checks.
230 */
b74c79e9 231 ret = acl_permission_check(inode, mask, flags, check_acl);
5909ccaa
LT
232 if (ret != -EACCES)
233 return ret;
1da177e4 234
1da177e4
LT
235 /*
236 * Read/write DACs are always overridable.
237 * Executable DACs are overridable if at least one exec bit is set.
238 */
f696a365 239 if (!(mask & MAY_EXEC) || execute_ok(inode))
1da177e4
LT
240 if (capable(CAP_DAC_OVERRIDE))
241 return 0;
242
243 /*
244 * Searching includes executable on directories, else just read.
245 */
7ea66001 246 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
1da177e4
LT
247 if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
248 if (capable(CAP_DAC_READ_SEARCH))
249 return 0;
250
251 return -EACCES;
252}
253
cb23beb5
CH
254/**
255 * inode_permission - check for access rights to a given inode
256 * @inode: inode to check permission on
257 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
258 *
259 * Used to check for read/write/execute permissions on an inode.
260 * We use "fsuid" for this, letting us set arbitrary permissions
261 * for filesystem access without changing the "normal" uids which
262 * are used for other things.
263 */
f419a2e3 264int inode_permission(struct inode *inode, int mask)
1da177e4 265{
e6305c43 266 int retval;
1da177e4
LT
267
268 if (mask & MAY_WRITE) {
22590e41 269 umode_t mode = inode->i_mode;
1da177e4
LT
270
271 /*
272 * Nobody gets write access to a read-only fs.
273 */
274 if (IS_RDONLY(inode) &&
275 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
276 return -EROFS;
277
278 /*
279 * Nobody gets write access to an immutable file.
280 */
281 if (IS_IMMUTABLE(inode))
282 return -EACCES;
283 }
284
acfa4380 285 if (inode->i_op->permission)
b74c79e9 286 retval = inode->i_op->permission(inode, mask, 0);
f696a365 287 else
b74c79e9
NP
288 retval = generic_permission(inode, mask, 0,
289 inode->i_op->check_acl);
f696a365 290
1da177e4
LT
291 if (retval)
292 return retval;
293
08ce5f16
SH
294 retval = devcgroup_inode_permission(inode, mask);
295 if (retval)
296 return retval;
297
d09ca739 298 return security_inode_permission(inode, mask);
1da177e4
LT
299}
300
8c744fb8
CH
301/**
302 * file_permission - check for additional access rights to a given file
303 * @file: file to check access rights for
304 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
305 *
306 * Used to check for read/write/execute permissions on an already opened
307 * file.
308 *
309 * Note:
310 * Do not use this function in new code. All access checks should
cb23beb5 311 * be done using inode_permission().
8c744fb8
CH
312 */
313int file_permission(struct file *file, int mask)
314{
f419a2e3 315 return inode_permission(file->f_path.dentry->d_inode, mask);
8c744fb8
CH
316}
317
1da177e4
LT
318/*
319 * get_write_access() gets write permission for a file.
320 * put_write_access() releases this write permission.
321 * This is used for regular files.
322 * We cannot support write (and maybe mmap read-write shared) accesses and
323 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
324 * can have the following values:
325 * 0: no writers, no VM_DENYWRITE mappings
326 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
327 * > 0: (i_writecount) users are writing to the file.
328 *
329 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
330 * except for the cases where we don't hold i_writecount yet. Then we need to
331 * use {get,deny}_write_access() - these functions check the sign and refuse
332 * to do the change if sign is wrong. Exclusion between them is provided by
333 * the inode->i_lock spinlock.
334 */
335
336int get_write_access(struct inode * inode)
337{
338 spin_lock(&inode->i_lock);
339 if (atomic_read(&inode->i_writecount) < 0) {
340 spin_unlock(&inode->i_lock);
341 return -ETXTBSY;
342 }
343 atomic_inc(&inode->i_writecount);
344 spin_unlock(&inode->i_lock);
345
346 return 0;
347}
348
349int deny_write_access(struct file * file)
350{
0f7fc9e4 351 struct inode *inode = file->f_path.dentry->d_inode;
1da177e4
LT
352
353 spin_lock(&inode->i_lock);
354 if (atomic_read(&inode->i_writecount) > 0) {
355 spin_unlock(&inode->i_lock);
356 return -ETXTBSY;
357 }
358 atomic_dec(&inode->i_writecount);
359 spin_unlock(&inode->i_lock);
360
361 return 0;
362}
363
5dd784d0
JB
364/**
365 * path_get - get a reference to a path
366 * @path: path to get the reference to
367 *
368 * Given a path increment the reference count to the dentry and the vfsmount.
369 */
370void path_get(struct path *path)
371{
372 mntget(path->mnt);
373 dget(path->dentry);
374}
375EXPORT_SYMBOL(path_get);
376
1d957f9b
JB
377/**
378 * path_put - put a reference to a path
379 * @path: path to put the reference to
380 *
381 * Given a path decrement the reference count to the dentry and the vfsmount.
382 */
383void path_put(struct path *path)
1da177e4 384{
1d957f9b
JB
385 dput(path->dentry);
386 mntput(path->mnt);
1da177e4 387}
1d957f9b 388EXPORT_SYMBOL(path_put);
1da177e4 389
31e6b01f
NP
390/**
391 * nameidata_drop_rcu - drop this nameidata out of rcu-walk
392 * @nd: nameidata pathwalk data to drop
39191628 393 * Returns: 0 on success, -ECHILD on failure
31e6b01f
NP
394 *
395 * Path walking has 2 modes, rcu-walk and ref-walk (see
396 * Documentation/filesystems/path-lookup.txt). __drop_rcu* functions attempt
397 * to drop out of rcu-walk mode and take normal reference counts on dentries
398 * and vfsmounts to transition to rcu-walk mode. __drop_rcu* functions take
399 * refcounts at the last known good point before rcu-walk got stuck, so
400 * ref-walk may continue from there. If this is not successful (eg. a seqcount
401 * has changed), then failure is returned and path walk restarts from the
402 * beginning in ref-walk mode.
403 *
404 * nameidata_drop_rcu attempts to drop the current nd->path and nd->root into
405 * ref-walk. Must be called from rcu-walk context.
406 */
407static int nameidata_drop_rcu(struct nameidata *nd)
408{
409 struct fs_struct *fs = current->fs;
410 struct dentry *dentry = nd->path.dentry;
5b6ca027 411 int want_root = 0;
31e6b01f
NP
412
413 BUG_ON(!(nd->flags & LOOKUP_RCU));
5b6ca027
AV
414 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
415 want_root = 1;
31e6b01f
NP
416 spin_lock(&fs->lock);
417 if (nd->root.mnt != fs->root.mnt ||
418 nd->root.dentry != fs->root.dentry)
419 goto err_root;
420 }
421 spin_lock(&dentry->d_lock);
422 if (!__d_rcu_to_refcount(dentry, nd->seq))
423 goto err;
424 BUG_ON(nd->inode != dentry->d_inode);
425 spin_unlock(&dentry->d_lock);
5b6ca027 426 if (want_root) {
31e6b01f
NP
427 path_get(&nd->root);
428 spin_unlock(&fs->lock);
429 }
430 mntget(nd->path.mnt);
431
432 rcu_read_unlock();
433 br_read_unlock(vfsmount_lock);
434 nd->flags &= ~LOOKUP_RCU;
435 return 0;
436err:
437 spin_unlock(&dentry->d_lock);
438err_root:
5b6ca027 439 if (want_root)
31e6b01f
NP
440 spin_unlock(&fs->lock);
441 return -ECHILD;
442}
443
444/* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing. */
445static inline int nameidata_drop_rcu_maybe(struct nameidata *nd)
446{
447 if (nd->flags & LOOKUP_RCU)
448 return nameidata_drop_rcu(nd);
449 return 0;
450}
451
452/**
453 * nameidata_dentry_drop_rcu - drop nameidata and dentry out of rcu-walk
454 * @nd: nameidata pathwalk data to drop
455 * @dentry: dentry to drop
39191628 456 * Returns: 0 on success, -ECHILD on failure
31e6b01f
NP
457 *
458 * nameidata_dentry_drop_rcu attempts to drop the current nd->path and nd->root,
459 * and dentry into ref-walk. @dentry must be a path found by a do_lookup call on
460 * @nd. Must be called from rcu-walk context.
461 */
462static int nameidata_dentry_drop_rcu(struct nameidata *nd, struct dentry *dentry)
463{
464 struct fs_struct *fs = current->fs;
465 struct dentry *parent = nd->path.dentry;
5b6ca027 466 int want_root = 0;
31e6b01f
NP
467
468 BUG_ON(!(nd->flags & LOOKUP_RCU));
5b6ca027
AV
469 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
470 want_root = 1;
31e6b01f
NP
471 spin_lock(&fs->lock);
472 if (nd->root.mnt != fs->root.mnt ||
473 nd->root.dentry != fs->root.dentry)
474 goto err_root;
475 }
476 spin_lock(&parent->d_lock);
477 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
478 if (!__d_rcu_to_refcount(dentry, nd->seq))
479 goto err;
480 /*
481 * If the sequence check on the child dentry passed, then the child has
482 * not been removed from its parent. This means the parent dentry must
483 * be valid and able to take a reference at this point.
484 */
485 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
486 BUG_ON(!parent->d_count);
487 parent->d_count++;
488 spin_unlock(&dentry->d_lock);
489 spin_unlock(&parent->d_lock);
5b6ca027 490 if (want_root) {
31e6b01f
NP
491 path_get(&nd->root);
492 spin_unlock(&fs->lock);
493 }
494 mntget(nd->path.mnt);
495
496 rcu_read_unlock();
497 br_read_unlock(vfsmount_lock);
498 nd->flags &= ~LOOKUP_RCU;
499 return 0;
500err:
501 spin_unlock(&dentry->d_lock);
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
509/* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing. */
510static inline int nameidata_dentry_drop_rcu_maybe(struct nameidata *nd, struct dentry *dentry)
511{
a7472bab
AV
512 if (nd->flags & LOOKUP_RCU) {
513 if (unlikely(nameidata_dentry_drop_rcu(nd, dentry))) {
514 nd->flags &= ~LOOKUP_RCU;
5b6ca027
AV
515 if (!(nd->flags & LOOKUP_ROOT))
516 nd->root.mnt = NULL;
a7472bab
AV
517 rcu_read_unlock();
518 br_read_unlock(vfsmount_lock);
519 return -ECHILD;
520 }
521 }
31e6b01f
NP
522 return 0;
523}
524
525/**
526 * nameidata_drop_rcu_last - drop nameidata ending path walk out of rcu-walk
527 * @nd: nameidata pathwalk data to drop
39191628 528 * Returns: 0 on success, -ECHILD on failure
31e6b01f
NP
529 *
530 * nameidata_drop_rcu_last attempts to drop the current nd->path into ref-walk.
531 * nd->path should be the final element of the lookup, so nd->root is discarded.
532 * Must be called from rcu-walk context.
533 */
534static int nameidata_drop_rcu_last(struct nameidata *nd)
535{
536 struct dentry *dentry = nd->path.dentry;
537
538 BUG_ON(!(nd->flags & LOOKUP_RCU));
539 nd->flags &= ~LOOKUP_RCU;
5b6ca027
AV
540 if (!(nd->flags & LOOKUP_ROOT))
541 nd->root.mnt = NULL;
31e6b01f
NP
542 spin_lock(&dentry->d_lock);
543 if (!__d_rcu_to_refcount(dentry, nd->seq))
544 goto err_unlock;
545 BUG_ON(nd->inode != dentry->d_inode);
546 spin_unlock(&dentry->d_lock);
547
548 mntget(nd->path.mnt);
549
550 rcu_read_unlock();
551 br_read_unlock(vfsmount_lock);
552
553 return 0;
554
555err_unlock:
556 spin_unlock(&dentry->d_lock);
557 rcu_read_unlock();
558 br_read_unlock(vfsmount_lock);
559 return -ECHILD;
560}
561
834f2a4a
TM
562/**
563 * release_open_intent - free up open intent resources
564 * @nd: pointer to nameidata
565 */
566void release_open_intent(struct nameidata *nd)
567{
2dab5974
LT
568 struct file *file = nd->intent.open.file;
569
570 if (file && !IS_ERR(file)) {
571 if (file->f_path.dentry == NULL)
572 put_filp(file);
573 else
574 fput(file);
575 }
834f2a4a
TM
576}
577
f60aef7e 578static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
34286d66 579{
f60aef7e 580 return dentry->d_op->d_revalidate(dentry, nd);
34286d66
NP
581}
582
f5e1c1c1 583static struct dentry *
bcdc5e01
IK
584do_revalidate(struct dentry *dentry, struct nameidata *nd)
585{
f5e1c1c1 586 int status = d_revalidate(dentry, nd);
bcdc5e01
IK
587 if (unlikely(status <= 0)) {
588 /*
589 * The dentry failed validation.
590 * If d_revalidate returned 0 attempt to invalidate
591 * the dentry otherwise d_revalidate is asking us
592 * to return a fail status.
593 */
34286d66 594 if (status < 0) {
f5e1c1c1 595 dput(dentry);
34286d66 596 dentry = ERR_PTR(status);
f5e1c1c1
AV
597 } else if (!d_invalidate(dentry)) {
598 dput(dentry);
599 dentry = NULL;
bcdc5e01
IK
600 }
601 }
602 return dentry;
603}
604
39159de2 605/*
16c2cd71 606 * handle_reval_path - force revalidation of a dentry
39159de2
JL
607 *
608 * In some situations the path walking code will trust dentries without
609 * revalidating them. This causes problems for filesystems that depend on
610 * d_revalidate to handle file opens (e.g. NFSv4). When FS_REVAL_DOT is set
611 * (which indicates that it's possible for the dentry to go stale), force
612 * a d_revalidate call before proceeding.
613 *
614 * Returns 0 if the revalidation was successful. If the revalidation fails,
615 * either return the error returned by d_revalidate or -ESTALE if the
616 * revalidation it just returned 0. If d_revalidate returns 0, we attempt to
617 * invalidate the dentry. It's up to the caller to handle putting references
618 * to the path if necessary.
619 */
16c2cd71 620static inline int handle_reval_path(struct nameidata *nd)
39159de2 621{
16c2cd71 622 struct dentry *dentry = nd->path.dentry;
39159de2 623 int status;
39159de2 624
16c2cd71
AV
625 if (likely(!(nd->flags & LOOKUP_JUMPED)))
626 return 0;
627
628 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
39159de2
JL
629 return 0;
630
16c2cd71
AV
631 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
632 return 0;
633
634 /* Note: we do not d_invalidate() */
34286d66 635 status = d_revalidate(dentry, nd);
39159de2
JL
636 if (status > 0)
637 return 0;
638
16c2cd71 639 if (!status)
39159de2 640 status = -ESTALE;
16c2cd71 641
39159de2
JL
642 return status;
643}
644
1da177e4 645/*
b75b5086
AV
646 * Short-cut version of permission(), for calling on directories
647 * during pathname resolution. Combines parts of permission()
648 * and generic_permission(), and tests ONLY for MAY_EXEC permission.
1da177e4
LT
649 *
650 * If appropriate, check DAC only. If not appropriate, or
b75b5086 651 * short-cut DAC fails, then call ->permission() to do more
1da177e4
LT
652 * complete permission check.
653 */
b74c79e9 654static inline int exec_permission(struct inode *inode, unsigned int flags)
1da177e4 655{
5909ccaa 656 int ret;
1da177e4 657
cb9179ea 658 if (inode->i_op->permission) {
b74c79e9
NP
659 ret = inode->i_op->permission(inode, MAY_EXEC, flags);
660 } else {
661 ret = acl_permission_check(inode, MAY_EXEC, flags,
662 inode->i_op->check_acl);
cb9179ea 663 }
b74c79e9 664 if (likely(!ret))
1da177e4 665 goto ok;
b74c79e9 666 if (ret == -ECHILD)
31e6b01f 667 return ret;
1da177e4 668
f1ac9f6b 669 if (capable(CAP_DAC_OVERRIDE) || capable(CAP_DAC_READ_SEARCH))
1da177e4
LT
670 goto ok;
671
5909ccaa 672 return ret;
1da177e4 673ok:
b74c79e9 674 return security_inode_exec_permission(inode, flags);
1da177e4
LT
675}
676
2a737871
AV
677static __always_inline void set_root(struct nameidata *nd)
678{
f7ad3c6b
MS
679 if (!nd->root.mnt)
680 get_fs_root(current->fs, &nd->root);
2a737871
AV
681}
682
6de88d72
AV
683static int link_path_walk(const char *, struct nameidata *);
684
31e6b01f
NP
685static __always_inline void set_root_rcu(struct nameidata *nd)
686{
687 if (!nd->root.mnt) {
688 struct fs_struct *fs = current->fs;
c28cc364
NP
689 unsigned seq;
690
691 do {
692 seq = read_seqcount_begin(&fs->seq);
693 nd->root = fs->root;
694 } while (read_seqcount_retry(&fs->seq, seq));
31e6b01f
NP
695 }
696}
697
f1662356 698static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
1da177e4 699{
31e6b01f
NP
700 int ret;
701
1da177e4
LT
702 if (IS_ERR(link))
703 goto fail;
704
705 if (*link == '/') {
2a737871 706 set_root(nd);
1d957f9b 707 path_put(&nd->path);
2a737871
AV
708 nd->path = nd->root;
709 path_get(&nd->root);
16c2cd71 710 nd->flags |= LOOKUP_JUMPED;
1da177e4 711 }
31e6b01f 712 nd->inode = nd->path.dentry->d_inode;
b4091d5f 713
31e6b01f
NP
714 ret = link_path_walk(link, nd);
715 return ret;
1da177e4 716fail:
1d957f9b 717 path_put(&nd->path);
1da177e4
LT
718 return PTR_ERR(link);
719}
720
1d957f9b 721static void path_put_conditional(struct path *path, struct nameidata *nd)
051d3812
IK
722{
723 dput(path->dentry);
4ac91378 724 if (path->mnt != nd->path.mnt)
051d3812
IK
725 mntput(path->mnt);
726}
727
7b9337aa
NP
728static inline void path_to_nameidata(const struct path *path,
729 struct nameidata *nd)
051d3812 730{
31e6b01f
NP
731 if (!(nd->flags & LOOKUP_RCU)) {
732 dput(nd->path.dentry);
733 if (nd->path.mnt != path->mnt)
734 mntput(nd->path.mnt);
9a229683 735 }
31e6b01f 736 nd->path.mnt = path->mnt;
4ac91378 737 nd->path.dentry = path->dentry;
051d3812
IK
738}
739
def4af30 740static __always_inline int
7b9337aa 741__do_follow_link(const struct path *link, struct nameidata *nd, void **p)
1da177e4
LT
742{
743 int error;
7b9337aa 744 struct dentry *dentry = link->dentry;
1da177e4 745
844a3917
AV
746 BUG_ON(nd->flags & LOOKUP_RCU);
747
7b9337aa 748 touch_atime(link->mnt, dentry);
1da177e4 749 nd_set_link(nd, NULL);
cd4e91d3 750
87556ef1
DH
751 if (link->mnt == nd->path.mnt)
752 mntget(link->mnt);
31e6b01f 753
36f3b4f6
AV
754 error = security_inode_follow_link(link->dentry, nd);
755 if (error) {
756 *p = ERR_PTR(error); /* no ->put_link(), please */
757 path_put(&nd->path);
758 return error;
759 }
760
86acdca1 761 nd->last_type = LAST_BIND;
def4af30
AV
762 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
763 error = PTR_ERR(*p);
764 if (!IS_ERR(*p)) {
1da177e4 765 char *s = nd_get_link(nd);
cc314eef 766 error = 0;
1da177e4
LT
767 if (s)
768 error = __vfs_follow_link(nd, s);
bcda7652 769 else if (nd->last_type == LAST_BIND) {
16c2cd71 770 nd->flags |= LOOKUP_JUMPED;
b21041d0
AV
771 nd->inode = nd->path.dentry->d_inode;
772 if (nd->inode->i_op->follow_link) {
bcda7652
AV
773 /* stepped on a _really_ weird one */
774 path_put(&nd->path);
775 error = -ELOOP;
776 }
777 }
1da177e4 778 }
1da177e4
LT
779 return error;
780}
781
782/*
783 * This limits recursive symlink follows to 8, while
784 * limiting consecutive symlinks to 40.
785 *
786 * Without that kind of total limit, nasty chains of consecutive
787 * symlinks can cause almost arbitrarily long lookups.
788 */
ce57dfc1 789static inline int do_follow_link(struct path *path, struct nameidata *nd)
1da177e4 790{
def4af30 791 void *cookie;
1da177e4 792 int err = -ELOOP;
844a3917 793
1da177e4
LT
794 if (current->link_count >= MAX_NESTED_LINKS)
795 goto loop;
796 if (current->total_link_count >= 40)
797 goto loop;
798 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
799 cond_resched();
1da177e4
LT
800 current->link_count++;
801 current->total_link_count++;
802 nd->depth++;
def4af30
AV
803 err = __do_follow_link(path, nd, &cookie);
804 if (!IS_ERR(cookie) && path->dentry->d_inode->i_op->put_link)
805 path->dentry->d_inode->i_op->put_link(path->dentry, nd, cookie);
258fa999 806 path_put(path);
839d9f93
AV
807 current->link_count--;
808 nd->depth--;
1da177e4
LT
809 return err;
810loop:
1d957f9b
JB
811 path_put_conditional(path, nd);
812 path_put(&nd->path);
1da177e4
LT
813 return err;
814}
815
31e6b01f
NP
816static int follow_up_rcu(struct path *path)
817{
818 struct vfsmount *parent;
819 struct dentry *mountpoint;
820
821 parent = path->mnt->mnt_parent;
822 if (parent == path->mnt)
823 return 0;
824 mountpoint = path->mnt->mnt_mountpoint;
825 path->dentry = mountpoint;
826 path->mnt = parent;
827 return 1;
828}
829
bab77ebf 830int follow_up(struct path *path)
1da177e4
LT
831{
832 struct vfsmount *parent;
833 struct dentry *mountpoint;
99b7db7b
NP
834
835 br_read_lock(vfsmount_lock);
bab77ebf
AV
836 parent = path->mnt->mnt_parent;
837 if (parent == path->mnt) {
99b7db7b 838 br_read_unlock(vfsmount_lock);
1da177e4
LT
839 return 0;
840 }
841 mntget(parent);
bab77ebf 842 mountpoint = dget(path->mnt->mnt_mountpoint);
99b7db7b 843 br_read_unlock(vfsmount_lock);
bab77ebf
AV
844 dput(path->dentry);
845 path->dentry = mountpoint;
846 mntput(path->mnt);
847 path->mnt = parent;
1da177e4
LT
848 return 1;
849}
850
b5c84bf6 851/*
9875cf80
DH
852 * Perform an automount
853 * - return -EISDIR to tell follow_managed() to stop and return the path we
854 * were called with.
1da177e4 855 */
9875cf80
DH
856static int follow_automount(struct path *path, unsigned flags,
857 bool *need_mntput)
31e6b01f 858{
9875cf80 859 struct vfsmount *mnt;
ea5b778a 860 int err;
9875cf80
DH
861
862 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
863 return -EREMOTE;
864
6f45b656
DH
865 /* We don't want to mount if someone supplied AT_NO_AUTOMOUNT
866 * and this is the terminal part of the path.
867 */
868 if ((flags & LOOKUP_NO_AUTOMOUNT) && !(flags & LOOKUP_CONTINUE))
869 return -EISDIR; /* we actually want to stop here */
870
9875cf80
DH
871 /* We want to mount if someone is trying to open/create a file of any
872 * type under the mountpoint, wants to traverse through the mountpoint
873 * or wants to open the mounted directory.
874 *
875 * We don't want to mount if someone's just doing a stat and they've
876 * set AT_SYMLINK_NOFOLLOW - unless they're stat'ing a directory and
877 * appended a '/' to the name.
878 */
879 if (!(flags & LOOKUP_FOLLOW) &&
880 !(flags & (LOOKUP_CONTINUE | LOOKUP_DIRECTORY |
881 LOOKUP_OPEN | LOOKUP_CREATE)))
882 return -EISDIR;
883
884 current->total_link_count++;
885 if (current->total_link_count >= 40)
886 return -ELOOP;
887
888 mnt = path->dentry->d_op->d_automount(path);
889 if (IS_ERR(mnt)) {
890 /*
891 * The filesystem is allowed to return -EISDIR here to indicate
892 * it doesn't want to automount. For instance, autofs would do
893 * this so that its userspace daemon can mount on this dentry.
894 *
895 * However, we can only permit this if it's a terminal point in
896 * the path being looked up; if it wasn't then the remainder of
897 * the path is inaccessible and we should say so.
898 */
899 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_CONTINUE))
900 return -EREMOTE;
901 return PTR_ERR(mnt);
31e6b01f 902 }
ea5b778a 903
9875cf80
DH
904 if (!mnt) /* mount collision */
905 return 0;
31e6b01f 906
19a167af 907 err = finish_automount(mnt, path);
9875cf80 908
ea5b778a
DH
909 switch (err) {
910 case -EBUSY:
911 /* Someone else made a mount here whilst we were busy */
19a167af 912 return 0;
ea5b778a 913 case 0:
ea5b778a
DH
914 dput(path->dentry);
915 if (*need_mntput)
916 mntput(path->mnt);
917 path->mnt = mnt;
918 path->dentry = dget(mnt->mnt_root);
919 *need_mntput = true;
920 return 0;
19a167af
AV
921 default:
922 return err;
ea5b778a 923 }
19a167af 924
463ffb2e
AV
925}
926
9875cf80
DH
927/*
928 * Handle a dentry that is managed in some way.
cc53ce53 929 * - Flagged for transit management (autofs)
9875cf80
DH
930 * - Flagged as mountpoint
931 * - Flagged as automount point
932 *
933 * This may only be called in refwalk mode.
934 *
935 * Serialization is taken care of in namespace.c
936 */
937static int follow_managed(struct path *path, unsigned flags)
1da177e4 938{
9875cf80
DH
939 unsigned managed;
940 bool need_mntput = false;
941 int ret;
942
943 /* Given that we're not holding a lock here, we retain the value in a
944 * local variable for each dentry as we look at it so that we don't see
945 * the components of that value change under us */
946 while (managed = ACCESS_ONCE(path->dentry->d_flags),
947 managed &= DCACHE_MANAGED_DENTRY,
948 unlikely(managed != 0)) {
cc53ce53
DH
949 /* Allow the filesystem to manage the transit without i_mutex
950 * being held. */
951 if (managed & DCACHE_MANAGE_TRANSIT) {
952 BUG_ON(!path->dentry->d_op);
953 BUG_ON(!path->dentry->d_op->d_manage);
ab90911f
DH
954 ret = path->dentry->d_op->d_manage(path->dentry,
955 false, false);
cc53ce53
DH
956 if (ret < 0)
957 return ret == -EISDIR ? 0 : ret;
958 }
959
9875cf80
DH
960 /* Transit to a mounted filesystem. */
961 if (managed & DCACHE_MOUNTED) {
962 struct vfsmount *mounted = lookup_mnt(path);
963 if (mounted) {
964 dput(path->dentry);
965 if (need_mntput)
966 mntput(path->mnt);
967 path->mnt = mounted;
968 path->dentry = dget(mounted->mnt_root);
969 need_mntput = true;
970 continue;
971 }
972
973 /* Something is mounted on this dentry in another
974 * namespace and/or whatever was mounted there in this
975 * namespace got unmounted before we managed to get the
976 * vfsmount_lock */
977 }
978
979 /* Handle an automount point */
980 if (managed & DCACHE_NEED_AUTOMOUNT) {
981 ret = follow_automount(path, flags, &need_mntput);
982 if (ret < 0)
983 return ret == -EISDIR ? 0 : ret;
984 continue;
985 }
986
987 /* We didn't change the current path point */
988 break;
1da177e4 989 }
9875cf80 990 return 0;
1da177e4
LT
991}
992
cc53ce53 993int follow_down_one(struct path *path)
1da177e4
LT
994{
995 struct vfsmount *mounted;
996
1c755af4 997 mounted = lookup_mnt(path);
1da177e4 998 if (mounted) {
9393bd07
AV
999 dput(path->dentry);
1000 mntput(path->mnt);
1001 path->mnt = mounted;
1002 path->dentry = dget(mounted->mnt_root);
1da177e4
LT
1003 return 1;
1004 }
1005 return 0;
1006}
1007
9875cf80
DH
1008/*
1009 * Skip to top of mountpoint pile in rcuwalk mode. We abort the rcu-walk if we
cc53ce53 1010 * meet a managed dentry and we're not walking to "..". True is returned to
9875cf80
DH
1011 * continue, false to abort.
1012 */
1013static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
1014 struct inode **inode, bool reverse_transit)
1015{
1016 while (d_mountpoint(path->dentry)) {
1017 struct vfsmount *mounted;
ab90911f
DH
1018 if (unlikely(path->dentry->d_flags & DCACHE_MANAGE_TRANSIT) &&
1019 !reverse_transit &&
1020 path->dentry->d_op->d_manage(path->dentry, false, true) < 0)
1021 return false;
9875cf80
DH
1022 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
1023 if (!mounted)
1024 break;
1025 path->mnt = mounted;
1026 path->dentry = mounted->mnt_root;
1027 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
1028 *inode = path->dentry->d_inode;
1029 }
1030
1031 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1032 return reverse_transit;
1033 return true;
1034}
1035
31e6b01f
NP
1036static int follow_dotdot_rcu(struct nameidata *nd)
1037{
1038 struct inode *inode = nd->inode;
1039
1040 set_root_rcu(nd);
1041
9875cf80 1042 while (1) {
31e6b01f
NP
1043 if (nd->path.dentry == nd->root.dentry &&
1044 nd->path.mnt == nd->root.mnt) {
1045 break;
1046 }
1047 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1048 struct dentry *old = nd->path.dentry;
1049 struct dentry *parent = old->d_parent;
1050 unsigned seq;
1051
1052 seq = read_seqcount_begin(&parent->d_seq);
1053 if (read_seqcount_retry(&old->d_seq, nd->seq))
ef7562d5 1054 goto failed;
31e6b01f
NP
1055 inode = parent->d_inode;
1056 nd->path.dentry = parent;
1057 nd->seq = seq;
1058 break;
1059 }
1060 if (!follow_up_rcu(&nd->path))
1061 break;
1062 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1063 inode = nd->path.dentry->d_inode;
1064 }
9875cf80 1065 __follow_mount_rcu(nd, &nd->path, &inode, true);
31e6b01f 1066 nd->inode = inode;
31e6b01f 1067 return 0;
ef7562d5
AV
1068
1069failed:
1070 nd->flags &= ~LOOKUP_RCU;
5b6ca027
AV
1071 if (!(nd->flags & LOOKUP_ROOT))
1072 nd->root.mnt = NULL;
ef7562d5
AV
1073 rcu_read_unlock();
1074 br_read_unlock(vfsmount_lock);
1075 return -ECHILD;
31e6b01f
NP
1076}
1077
cc53ce53
DH
1078/*
1079 * Follow down to the covering mount currently visible to userspace. At each
1080 * point, the filesystem owning that dentry may be queried as to whether the
1081 * caller is permitted to proceed or not.
1082 *
1083 * Care must be taken as namespace_sem may be held (indicated by mounting_here
1084 * being true).
1085 */
1086int follow_down(struct path *path, bool mounting_here)
1087{
1088 unsigned managed;
1089 int ret;
1090
1091 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1092 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1093 /* Allow the filesystem to manage the transit without i_mutex
1094 * being held.
1095 *
1096 * We indicate to the filesystem if someone is trying to mount
1097 * something here. This gives autofs the chance to deny anyone
1098 * other than its daemon the right to mount on its
1099 * superstructure.
1100 *
1101 * The filesystem may sleep at this point.
1102 */
1103 if (managed & DCACHE_MANAGE_TRANSIT) {
1104 BUG_ON(!path->dentry->d_op);
1105 BUG_ON(!path->dentry->d_op->d_manage);
ab90911f
DH
1106 ret = path->dentry->d_op->d_manage(
1107 path->dentry, mounting_here, false);
cc53ce53
DH
1108 if (ret < 0)
1109 return ret == -EISDIR ? 0 : ret;
1110 }
1111
1112 /* Transit to a mounted filesystem. */
1113 if (managed & DCACHE_MOUNTED) {
1114 struct vfsmount *mounted = lookup_mnt(path);
1115 if (!mounted)
1116 break;
1117 dput(path->dentry);
1118 mntput(path->mnt);
1119 path->mnt = mounted;
1120 path->dentry = dget(mounted->mnt_root);
1121 continue;
1122 }
1123
1124 /* Don't handle automount points here */
1125 break;
1126 }
1127 return 0;
1128}
1129
9875cf80
DH
1130/*
1131 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1132 */
1133static void follow_mount(struct path *path)
1134{
1135 while (d_mountpoint(path->dentry)) {
1136 struct vfsmount *mounted = lookup_mnt(path);
1137 if (!mounted)
1138 break;
1139 dput(path->dentry);
1140 mntput(path->mnt);
1141 path->mnt = mounted;
1142 path->dentry = dget(mounted->mnt_root);
1143 }
1144}
1145
31e6b01f 1146static void follow_dotdot(struct nameidata *nd)
1da177e4 1147{
2a737871 1148 set_root(nd);
e518ddb7 1149
1da177e4 1150 while(1) {
4ac91378 1151 struct dentry *old = nd->path.dentry;
1da177e4 1152
2a737871
AV
1153 if (nd->path.dentry == nd->root.dentry &&
1154 nd->path.mnt == nd->root.mnt) {
1da177e4
LT
1155 break;
1156 }
4ac91378 1157 if (nd->path.dentry != nd->path.mnt->mnt_root) {
3088dd70
AV
1158 /* rare case of legitimate dget_parent()... */
1159 nd->path.dentry = dget_parent(nd->path.dentry);
1da177e4
LT
1160 dput(old);
1161 break;
1162 }
3088dd70 1163 if (!follow_up(&nd->path))
1da177e4 1164 break;
1da177e4 1165 }
79ed0226 1166 follow_mount(&nd->path);
31e6b01f 1167 nd->inode = nd->path.dentry->d_inode;
1da177e4
LT
1168}
1169
baa03890
NP
1170/*
1171 * Allocate a dentry with name and parent, and perform a parent
1172 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1173 * on error. parent->d_inode->i_mutex must be held. d_lookup must
1174 * have verified that no child exists while under i_mutex.
1175 */
1176static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1177 struct qstr *name, struct nameidata *nd)
1178{
1179 struct inode *inode = parent->d_inode;
1180 struct dentry *dentry;
1181 struct dentry *old;
1182
1183 /* Don't create child dentry for a dead directory. */
1184 if (unlikely(IS_DEADDIR(inode)))
1185 return ERR_PTR(-ENOENT);
1186
1187 dentry = d_alloc(parent, name);
1188 if (unlikely(!dentry))
1189 return ERR_PTR(-ENOMEM);
1190
1191 old = inode->i_op->lookup(inode, dentry, nd);
1192 if (unlikely(old)) {
1193 dput(dentry);
1194 dentry = old;
1195 }
1196 return dentry;
1197}
1198
1da177e4
LT
1199/*
1200 * It's more convoluted than I'd like it to be, but... it's still fairly
1201 * small and for now I'd prefer to have fast path as straight as possible.
1202 * It _is_ time-critical.
1203 */
1204static int do_lookup(struct nameidata *nd, struct qstr *name,
31e6b01f 1205 struct path *path, struct inode **inode)
1da177e4 1206{
4ac91378 1207 struct vfsmount *mnt = nd->path.mnt;
31e6b01f 1208 struct dentry *dentry, *parent = nd->path.dentry;
5a18fff2
AV
1209 int need_reval = 1;
1210 int status = 1;
9875cf80
DH
1211 int err;
1212
b04f784e
NP
1213 /*
1214 * Rename seqlock is not required here because in the off chance
1215 * of a false negative due to a concurrent rename, we're going to
1216 * do the non-racy lookup, below.
1217 */
31e6b01f
NP
1218 if (nd->flags & LOOKUP_RCU) {
1219 unsigned seq;
31e6b01f
NP
1220 *inode = nd->inode;
1221 dentry = __d_lookup_rcu(parent, name, &seq, inode);
5a18fff2
AV
1222 if (!dentry)
1223 goto unlazy;
1224
31e6b01f
NP
1225 /* Memory barrier in read_seqcount_begin of child is enough */
1226 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1227 return -ECHILD;
31e6b01f 1228 nd->seq = seq;
5a18fff2 1229
24643087 1230 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
5a18fff2
AV
1231 status = d_revalidate(dentry, nd);
1232 if (unlikely(status <= 0)) {
1233 if (status != -ECHILD)
1234 need_reval = 0;
1235 goto unlazy;
1236 }
24643087 1237 }
31e6b01f
NP
1238 path->mnt = mnt;
1239 path->dentry = dentry;
9875cf80
DH
1240 if (likely(__follow_mount_rcu(nd, path, inode, false)))
1241 return 0;
5a18fff2
AV
1242unlazy:
1243 if (dentry) {
1244 if (nameidata_dentry_drop_rcu(nd, dentry))
1245 return -ECHILD;
1246 } else {
1247 if (nameidata_drop_rcu(nd))
1248 return -ECHILD;
1249 }
1250 } else {
1251 dentry = __d_lookup(parent, name);
9875cf80 1252 }
5a18fff2
AV
1253
1254retry:
1255 if (unlikely(!dentry)) {
1256 struct inode *dir = parent->d_inode;
1257 BUG_ON(nd->inode != dir);
1258
1259 mutex_lock(&dir->i_mutex);
1260 dentry = d_lookup(parent, name);
1261 if (likely(!dentry)) {
1262 dentry = d_alloc_and_lookup(parent, name, nd);
1263 if (IS_ERR(dentry)) {
1264 mutex_unlock(&dir->i_mutex);
1265 return PTR_ERR(dentry);
1266 }
1267 /* known good */
1268 need_reval = 0;
1269 status = 1;
1270 }
1271 mutex_unlock(&dir->i_mutex);
1272 }
1273 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1274 status = d_revalidate(dentry, nd);
1275 if (unlikely(status <= 0)) {
1276 if (status < 0) {
1277 dput(dentry);
1278 return status;
1279 }
1280 if (!d_invalidate(dentry)) {
1281 dput(dentry);
1282 dentry = NULL;
1283 need_reval = 1;
1284 goto retry;
1285 }
24643087 1286 }
5a18fff2 1287
9875cf80
DH
1288 path->mnt = mnt;
1289 path->dentry = dentry;
1290 err = follow_managed(path, nd->flags);
89312214
IK
1291 if (unlikely(err < 0)) {
1292 path_put_conditional(path, nd);
9875cf80 1293 return err;
89312214 1294 }
9875cf80 1295 *inode = path->dentry->d_inode;
1da177e4 1296 return 0;
1da177e4
LT
1297}
1298
52094c8a
AV
1299static inline int may_lookup(struct nameidata *nd)
1300{
1301 if (nd->flags & LOOKUP_RCU) {
1302 int err = exec_permission(nd->inode, IPERM_FLAG_RCU);
1303 if (err != -ECHILD)
1304 return err;
1305 if (nameidata_drop_rcu(nd))
1306 return -ECHILD;
1307 }
1308 return exec_permission(nd->inode, 0);
1309}
1310
9856fa1b
AV
1311static inline int handle_dots(struct nameidata *nd, int type)
1312{
1313 if (type == LAST_DOTDOT) {
1314 if (nd->flags & LOOKUP_RCU) {
1315 if (follow_dotdot_rcu(nd))
1316 return -ECHILD;
1317 } else
1318 follow_dotdot(nd);
1319 }
1320 return 0;
1321}
1322
951361f9
AV
1323static void terminate_walk(struct nameidata *nd)
1324{
1325 if (!(nd->flags & LOOKUP_RCU)) {
1326 path_put(&nd->path);
1327 } else {
1328 nd->flags &= ~LOOKUP_RCU;
5b6ca027
AV
1329 if (!(nd->flags & LOOKUP_ROOT))
1330 nd->root.mnt = NULL;
951361f9
AV
1331 rcu_read_unlock();
1332 br_read_unlock(vfsmount_lock);
1333 }
1334}
1335
ce57dfc1
AV
1336static inline int walk_component(struct nameidata *nd, struct path *path,
1337 struct qstr *name, int type, int follow)
1338{
1339 struct inode *inode;
1340 int err;
1341 /*
1342 * "." and ".." are special - ".." especially so because it has
1343 * to be able to know about the current root directory and
1344 * parent relationships.
1345 */
1346 if (unlikely(type != LAST_NORM))
1347 return handle_dots(nd, type);
1348 err = do_lookup(nd, name, path, &inode);
1349 if (unlikely(err)) {
1350 terminate_walk(nd);
1351 return err;
1352 }
1353 if (!inode) {
1354 path_to_nameidata(path, nd);
1355 terminate_walk(nd);
1356 return -ENOENT;
1357 }
1358 if (unlikely(inode->i_op->follow_link) && follow) {
1359 if (nameidata_dentry_drop_rcu_maybe(nd, path->dentry))
1360 return -ECHILD;
1361 BUG_ON(inode != path->dentry->d_inode);
1362 return 1;
1363 }
1364 path_to_nameidata(path, nd);
1365 nd->inode = inode;
1366 return 0;
1367}
1368
1da177e4
LT
1369/*
1370 * Name resolution.
ea3834d9
PM
1371 * This is the basic name resolution function, turning a pathname into
1372 * the final dentry. We expect 'base' to be positive and a directory.
1da177e4 1373 *
ea3834d9
PM
1374 * Returns 0 and nd will have valid dentry and mnt on success.
1375 * Returns error and drops reference to input namei data on failure.
1da177e4 1376 */
6de88d72 1377static int link_path_walk(const char *name, struct nameidata *nd)
1da177e4
LT
1378{
1379 struct path next;
1da177e4
LT
1380 int err;
1381 unsigned int lookup_flags = nd->flags;
1382
1383 while (*name=='/')
1384 name++;
1385 if (!*name)
086e183a 1386 return 0;
1da177e4 1387
1da177e4 1388 if (nd->depth)
f55eab82 1389 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
1da177e4
LT
1390
1391 /* At this point we know we have a real path component. */
1392 for(;;) {
1393 unsigned long hash;
1394 struct qstr this;
1395 unsigned int c;
fe479a58 1396 int type;
1da177e4 1397
cdce5d6b 1398 nd->flags |= LOOKUP_CONTINUE;
52094c8a
AV
1399
1400 err = may_lookup(nd);
1da177e4
LT
1401 if (err)
1402 break;
1403
1404 this.name = name;
1405 c = *(const unsigned char *)name;
1406
1407 hash = init_name_hash();
1408 do {
1409 name++;
1410 hash = partial_name_hash(c, hash);
1411 c = *(const unsigned char *)name;
1412 } while (c && (c != '/'));
1413 this.len = name - (const char *) this.name;
1414 this.hash = end_name_hash(hash);
1415
fe479a58
AV
1416 type = LAST_NORM;
1417 if (this.name[0] == '.') switch (this.len) {
1418 case 2:
16c2cd71 1419 if (this.name[1] == '.') {
fe479a58 1420 type = LAST_DOTDOT;
16c2cd71
AV
1421 nd->flags |= LOOKUP_JUMPED;
1422 }
fe479a58
AV
1423 break;
1424 case 1:
1425 type = LAST_DOT;
1426 }
5a202bcd
AV
1427 if (likely(type == LAST_NORM)) {
1428 struct dentry *parent = nd->path.dentry;
16c2cd71 1429 nd->flags &= ~LOOKUP_JUMPED;
5a202bcd
AV
1430 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1431 err = parent->d_op->d_hash(parent, nd->inode,
1432 &this);
1433 if (err < 0)
1434 break;
1435 }
1436 }
fe479a58 1437
1da177e4
LT
1438 /* remove trailing slashes? */
1439 if (!c)
1440 goto last_component;
1441 while (*++name == '/');
1442 if (!*name)
1443 goto last_with_slashes;
1444
ce57dfc1
AV
1445 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1446 if (err < 0)
1447 return err;
1da177e4 1448
ce57dfc1
AV
1449 if (err) {
1450 err = do_follow_link(&next, nd);
1da177e4 1451 if (err)
a7472bab 1452 return err;
31e6b01f 1453 }
1da177e4 1454 err = -ENOTDIR;
31e6b01f 1455 if (!nd->inode->i_op->lookup)
1da177e4
LT
1456 break;
1457 continue;
1458 /* here ends the main loop */
1459
1460last_with_slashes:
1461 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1462last_component:
f55eab82
TM
1463 /* Clear LOOKUP_CONTINUE iff it was previously unset */
1464 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
ce57dfc1
AV
1465 if (lookup_flags & LOOKUP_PARENT) {
1466 nd->last = this;
1467 nd->last_type = type;
1468 return 0;
1469 }
1470 err = walk_component(nd, &next, &this, type,
1471 lookup_flags & LOOKUP_FOLLOW);
1472 if (err < 0)
1473 return err;
1474 if (err) {
1475 err = do_follow_link(&next, nd);
1da177e4 1476 if (err)
a7472bab 1477 return err;
31e6b01f 1478 }
1da177e4
LT
1479 if (lookup_flags & LOOKUP_DIRECTORY) {
1480 err = -ENOTDIR;
31e6b01f 1481 if (!nd->inode->i_op->lookup)
1da177e4
LT
1482 break;
1483 }
086e183a 1484 return 0;
1da177e4 1485 }
951361f9 1486 terminate_walk(nd);
1da177e4
LT
1487 return err;
1488}
1489
70e9b357
AV
1490static int path_init(int dfd, const char *name, unsigned int flags,
1491 struct nameidata *nd, struct file **fp)
31e6b01f
NP
1492{
1493 int retval = 0;
1494 int fput_needed;
1495 struct file *file;
1496
1497 nd->last_type = LAST_ROOT; /* if there are only slashes... */
16c2cd71 1498 nd->flags = flags | LOOKUP_JUMPED;
31e6b01f 1499 nd->depth = 0;
5b6ca027
AV
1500 if (flags & LOOKUP_ROOT) {
1501 struct inode *inode = nd->root.dentry->d_inode;
73d049a4
AV
1502 if (*name) {
1503 if (!inode->i_op->lookup)
1504 return -ENOTDIR;
1505 retval = inode_permission(inode, MAY_EXEC);
1506 if (retval)
1507 return retval;
1508 }
5b6ca027
AV
1509 nd->path = nd->root;
1510 nd->inode = inode;
1511 if (flags & LOOKUP_RCU) {
1512 br_read_lock(vfsmount_lock);
1513 rcu_read_lock();
1514 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1515 } else {
1516 path_get(&nd->path);
1517 }
1518 return 0;
1519 }
1520
31e6b01f 1521 nd->root.mnt = NULL;
31e6b01f
NP
1522
1523 if (*name=='/') {
e41f7d4e
AV
1524 if (flags & LOOKUP_RCU) {
1525 br_read_lock(vfsmount_lock);
1526 rcu_read_lock();
1527 set_root_rcu(nd);
1528 } else {
1529 set_root(nd);
1530 path_get(&nd->root);
1531 }
1532 nd->path = nd->root;
31e6b01f 1533 } else if (dfd == AT_FDCWD) {
e41f7d4e
AV
1534 if (flags & LOOKUP_RCU) {
1535 struct fs_struct *fs = current->fs;
1536 unsigned seq;
31e6b01f 1537
e41f7d4e
AV
1538 br_read_lock(vfsmount_lock);
1539 rcu_read_lock();
c28cc364 1540
e41f7d4e
AV
1541 do {
1542 seq = read_seqcount_begin(&fs->seq);
1543 nd->path = fs->pwd;
1544 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1545 } while (read_seqcount_retry(&fs->seq, seq));
1546 } else {
1547 get_fs_pwd(current->fs, &nd->path);
1548 }
31e6b01f
NP
1549 } else {
1550 struct dentry *dentry;
1551
1abf0c71 1552 file = fget_raw_light(dfd, &fput_needed);
31e6b01f
NP
1553 retval = -EBADF;
1554 if (!file)
1555 goto out_fail;
1556
1557 dentry = file->f_path.dentry;
1558
f52e0c11
AV
1559 if (*name) {
1560 retval = -ENOTDIR;
1561 if (!S_ISDIR(dentry->d_inode->i_mode))
1562 goto fput_fail;
31e6b01f 1563
f52e0c11
AV
1564 retval = file_permission(file, MAY_EXEC);
1565 if (retval)
1566 goto fput_fail;
1567 }
31e6b01f
NP
1568
1569 nd->path = file->f_path;
e41f7d4e
AV
1570 if (flags & LOOKUP_RCU) {
1571 if (fput_needed)
70e9b357 1572 *fp = file;
e41f7d4e
AV
1573 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1574 br_read_lock(vfsmount_lock);
1575 rcu_read_lock();
1576 } else {
1577 path_get(&file->f_path);
1578 fput_light(file, fput_needed);
1579 }
31e6b01f 1580 }
31e6b01f 1581
31e6b01f 1582 nd->inode = nd->path.dentry->d_inode;
9b4a9b14 1583 return 0;
2dfdd266 1584
9b4a9b14
AV
1585fput_fail:
1586 fput_light(file, fput_needed);
1587out_fail:
1588 return retval;
1589}
1590
1591/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
ee0827cd 1592static int path_lookupat(int dfd, const char *name,
9b4a9b14
AV
1593 unsigned int flags, struct nameidata *nd)
1594{
70e9b357 1595 struct file *base = NULL;
31e6b01f
NP
1596 int retval;
1597
1598 /*
1599 * Path walking is largely split up into 2 different synchronisation
1600 * schemes, rcu-walk and ref-walk (explained in
1601 * Documentation/filesystems/path-lookup.txt). These share much of the
1602 * path walk code, but some things particularly setup, cleanup, and
1603 * following mounts are sufficiently divergent that functions are
1604 * duplicated. Typically there is a function foo(), and its RCU
1605 * analogue, foo_rcu().
1606 *
1607 * -ECHILD is the error number of choice (just to avoid clashes) that
1608 * is returned if some aspect of an rcu-walk fails. Such an error must
1609 * be handled by restarting a traditional ref-walk (which will always
1610 * be able to complete).
1611 */
70e9b357 1612 retval = path_init(dfd, name, flags, nd, &base);
ee0827cd 1613
31e6b01f
NP
1614 if (unlikely(retval))
1615 return retval;
ee0827cd
AV
1616
1617 current->total_link_count = 0;
1618 retval = link_path_walk(name, nd);
1619
1620 if (nd->flags & LOOKUP_RCU) {
4455ca62
AV
1621 /* went all way through without dropping RCU */
1622 BUG_ON(retval);
1623 if (nameidata_drop_rcu_last(nd))
1624 retval = -ECHILD;
ee0827cd
AV
1625 }
1626
16c2cd71
AV
1627 if (!retval)
1628 retval = handle_reval_path(nd);
1629
70e9b357
AV
1630 if (base)
1631 fput(base);
ee0827cd 1632
5b6ca027 1633 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
2a737871
AV
1634 path_put(&nd->root);
1635 nd->root.mnt = NULL;
1636 }
ee0827cd
AV
1637 return retval;
1638}
31e6b01f 1639
ee0827cd
AV
1640static int do_path_lookup(int dfd, const char *name,
1641 unsigned int flags, struct nameidata *nd)
1642{
1643 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1644 if (unlikely(retval == -ECHILD))
1645 retval = path_lookupat(dfd, name, flags, nd);
1646 if (unlikely(retval == -ESTALE))
1647 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
31e6b01f
NP
1648
1649 if (likely(!retval)) {
1650 if (unlikely(!audit_dummy_context())) {
1651 if (nd->path.dentry && nd->inode)
1652 audit_inode(name, nd->path.dentry);
1653 }
1654 }
170aa3d0 1655 return retval;
1da177e4
LT
1656}
1657
c9c6cac0 1658int kern_path_parent(const char *name, struct nameidata *nd)
5590ff0d 1659{
c9c6cac0 1660 return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
5590ff0d
UD
1661}
1662
d1811465
AV
1663int kern_path(const char *name, unsigned int flags, struct path *path)
1664{
1665 struct nameidata nd;
1666 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1667 if (!res)
1668 *path = nd.path;
1669 return res;
1670}
1671
16f18200
JJS
1672/**
1673 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1674 * @dentry: pointer to dentry of the base directory
1675 * @mnt: pointer to vfs mount of the base directory
1676 * @name: pointer to file name
1677 * @flags: lookup flags
1678 * @nd: pointer to nameidata
1679 */
1680int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1681 const char *name, unsigned int flags,
1682 struct nameidata *nd)
1683{
5b6ca027
AV
1684 nd->root.dentry = dentry;
1685 nd->root.mnt = mnt;
1686 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
1687 return do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, nd);
16f18200
JJS
1688}
1689
eead1911
CH
1690static struct dentry *__lookup_hash(struct qstr *name,
1691 struct dentry *base, struct nameidata *nd)
1da177e4 1692{
81fca444 1693 struct inode *inode = base->d_inode;
057f6c01 1694 struct dentry *dentry;
1da177e4
LT
1695 int err;
1696
b74c79e9 1697 err = exec_permission(inode, 0);
81fca444
CH
1698 if (err)
1699 return ERR_PTR(err);
1da177e4 1700
b04f784e
NP
1701 /*
1702 * Don't bother with __d_lookup: callers are for creat as
1703 * well as unlink, so a lot of the time it would cost
1704 * a double lookup.
6e6b1bd1 1705 */
b04f784e 1706 dentry = d_lookup(base, name);
6e6b1bd1 1707
fb045adb 1708 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE))
6e6b1bd1
AV
1709 dentry = do_revalidate(dentry, nd);
1710
baa03890
NP
1711 if (!dentry)
1712 dentry = d_alloc_and_lookup(base, name, nd);
5a202bcd 1713
1da177e4
LT
1714 return dentry;
1715}
1716
057f6c01
JM
1717/*
1718 * Restricted form of lookup. Doesn't follow links, single-component only,
1719 * needs parent already locked. Doesn't follow mounts.
1720 * SMP-safe.
1721 */
eead1911 1722static struct dentry *lookup_hash(struct nameidata *nd)
057f6c01 1723{
4ac91378 1724 return __lookup_hash(&nd->last, nd->path.dentry, nd);
1da177e4
LT
1725}
1726
eead1911 1727/**
a6b91919 1728 * lookup_one_len - filesystem helper to lookup single pathname component
eead1911
CH
1729 * @name: pathname component to lookup
1730 * @base: base directory to lookup from
1731 * @len: maximum length @len should be interpreted to
1732 *
a6b91919
RD
1733 * Note that this routine is purely a helper for filesystem usage and should
1734 * not be called by generic code. Also note that by using this function the
eead1911
CH
1735 * nameidata argument is passed to the filesystem methods and a filesystem
1736 * using this helper needs to be prepared for that.
1737 */
057f6c01
JM
1738struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1739{
057f6c01 1740 struct qstr this;
6a96ba54
AV
1741 unsigned long hash;
1742 unsigned int c;
057f6c01 1743
2f9092e1
DW
1744 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1745
6a96ba54
AV
1746 this.name = name;
1747 this.len = len;
1748 if (!len)
1749 return ERR_PTR(-EACCES);
1750
1751 hash = init_name_hash();
1752 while (len--) {
1753 c = *(const unsigned char *)name++;
1754 if (c == '/' || c == '\0')
1755 return ERR_PTR(-EACCES);
1756 hash = partial_name_hash(c, hash);
1757 }
1758 this.hash = end_name_hash(hash);
5a202bcd
AV
1759 /*
1760 * See if the low-level filesystem might want
1761 * to use its own hash..
1762 */
1763 if (base->d_flags & DCACHE_OP_HASH) {
1764 int err = base->d_op->d_hash(base, base->d_inode, &this);
1765 if (err < 0)
1766 return ERR_PTR(err);
1767 }
eead1911 1768
49705b77 1769 return __lookup_hash(&this, base, NULL);
057f6c01
JM
1770}
1771
2d8f3038
AV
1772int user_path_at(int dfd, const char __user *name, unsigned flags,
1773 struct path *path)
1da177e4 1774{
2d8f3038 1775 struct nameidata nd;
f52e0c11 1776 char *tmp = getname_flags(name, flags);
1da177e4 1777 int err = PTR_ERR(tmp);
1da177e4 1778 if (!IS_ERR(tmp)) {
2d8f3038
AV
1779
1780 BUG_ON(flags & LOOKUP_PARENT);
1781
1782 err = do_path_lookup(dfd, tmp, flags, &nd);
1da177e4 1783 putname(tmp);
2d8f3038
AV
1784 if (!err)
1785 *path = nd.path;
1da177e4
LT
1786 }
1787 return err;
1788}
1789
2ad94ae6
AV
1790static int user_path_parent(int dfd, const char __user *path,
1791 struct nameidata *nd, char **name)
1792{
1793 char *s = getname(path);
1794 int error;
1795
1796 if (IS_ERR(s))
1797 return PTR_ERR(s);
1798
1799 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1800 if (error)
1801 putname(s);
1802 else
1803 *name = s;
1804
1805 return error;
1806}
1807
1da177e4
LT
1808/*
1809 * It's inline, so penalty for filesystems that don't use sticky bit is
1810 * minimal.
1811 */
1812static inline int check_sticky(struct inode *dir, struct inode *inode)
1813{
da9592ed
DH
1814 uid_t fsuid = current_fsuid();
1815
1da177e4
LT
1816 if (!(dir->i_mode & S_ISVTX))
1817 return 0;
da9592ed 1818 if (inode->i_uid == fsuid)
1da177e4 1819 return 0;
da9592ed 1820 if (dir->i_uid == fsuid)
1da177e4
LT
1821 return 0;
1822 return !capable(CAP_FOWNER);
1823}
1824
1825/*
1826 * Check whether we can remove a link victim from directory dir, check
1827 * whether the type of victim is right.
1828 * 1. We can't do it if dir is read-only (done in permission())
1829 * 2. We should have write and exec permissions on dir
1830 * 3. We can't remove anything from append-only dir
1831 * 4. We can't do anything with immutable dir (done in permission())
1832 * 5. If the sticky bit on dir is set we should either
1833 * a. be owner of dir, or
1834 * b. be owner of victim, or
1835 * c. have CAP_FOWNER capability
1836 * 6. If the victim is append-only or immutable we can't do antyhing with
1837 * links pointing to it.
1838 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1839 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1840 * 9. We can't remove a root or mountpoint.
1841 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1842 * nfs_async_unlink().
1843 */
858119e1 1844static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
1da177e4
LT
1845{
1846 int error;
1847
1848 if (!victim->d_inode)
1849 return -ENOENT;
1850
1851 BUG_ON(victim->d_parent->d_inode != dir);
cccc6bba 1852 audit_inode_child(victim, dir);
1da177e4 1853
f419a2e3 1854 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
1855 if (error)
1856 return error;
1857 if (IS_APPEND(dir))
1858 return -EPERM;
1859 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
f9454548 1860 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
1da177e4
LT
1861 return -EPERM;
1862 if (isdir) {
1863 if (!S_ISDIR(victim->d_inode->i_mode))
1864 return -ENOTDIR;
1865 if (IS_ROOT(victim))
1866 return -EBUSY;
1867 } else if (S_ISDIR(victim->d_inode->i_mode))
1868 return -EISDIR;
1869 if (IS_DEADDIR(dir))
1870 return -ENOENT;
1871 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1872 return -EBUSY;
1873 return 0;
1874}
1875
1876/* Check whether we can create an object with dentry child in directory
1877 * dir.
1878 * 1. We can't do it if child already exists (open has special treatment for
1879 * this case, but since we are inlined it's OK)
1880 * 2. We can't do it if dir is read-only (done in permission())
1881 * 3. We should have write and exec permissions on dir
1882 * 4. We can't do it if dir is immutable (done in permission())
1883 */
a95164d9 1884static inline int may_create(struct inode *dir, struct dentry *child)
1da177e4
LT
1885{
1886 if (child->d_inode)
1887 return -EEXIST;
1888 if (IS_DEADDIR(dir))
1889 return -ENOENT;
f419a2e3 1890 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
1da177e4
LT
1891}
1892
1da177e4
LT
1893/*
1894 * p1 and p2 should be directories on the same fs.
1895 */
1896struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1897{
1898 struct dentry *p;
1899
1900 if (p1 == p2) {
f2eace23 1901 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1da177e4
LT
1902 return NULL;
1903 }
1904
a11f3a05 1905 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4 1906
e2761a11
OH
1907 p = d_ancestor(p2, p1);
1908 if (p) {
1909 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1910 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1911 return p;
1da177e4
LT
1912 }
1913
e2761a11
OH
1914 p = d_ancestor(p1, p2);
1915 if (p) {
1916 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1917 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1918 return p;
1da177e4
LT
1919 }
1920
f2eace23
IM
1921 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1922 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1da177e4
LT
1923 return NULL;
1924}
1925
1926void unlock_rename(struct dentry *p1, struct dentry *p2)
1927{
1b1dcc1b 1928 mutex_unlock(&p1->d_inode->i_mutex);
1da177e4 1929 if (p1 != p2) {
1b1dcc1b 1930 mutex_unlock(&p2->d_inode->i_mutex);
a11f3a05 1931 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
1da177e4
LT
1932 }
1933}
1934
1935int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1936 struct nameidata *nd)
1937{
a95164d9 1938 int error = may_create(dir, dentry);
1da177e4
LT
1939
1940 if (error)
1941 return error;
1942
acfa4380 1943 if (!dir->i_op->create)
1da177e4
LT
1944 return -EACCES; /* shouldn't it be ENOSYS? */
1945 mode &= S_IALLUGO;
1946 mode |= S_IFREG;
1947 error = security_inode_create(dir, dentry, mode);
1948 if (error)
1949 return error;
1da177e4 1950 error = dir->i_op->create(dir, dentry, mode, nd);
a74574aa 1951 if (!error)
f38aa942 1952 fsnotify_create(dir, dentry);
1da177e4
LT
1953 return error;
1954}
1955
73d049a4 1956static int may_open(struct path *path, int acc_mode, int flag)
1da177e4 1957{
3fb64190 1958 struct dentry *dentry = path->dentry;
1da177e4
LT
1959 struct inode *inode = dentry->d_inode;
1960 int error;
1961
bcda7652
AV
1962 /* O_PATH? */
1963 if (!acc_mode)
1964 return 0;
1965
1da177e4
LT
1966 if (!inode)
1967 return -ENOENT;
1968
c8fe8f30
CH
1969 switch (inode->i_mode & S_IFMT) {
1970 case S_IFLNK:
1da177e4 1971 return -ELOOP;
c8fe8f30
CH
1972 case S_IFDIR:
1973 if (acc_mode & MAY_WRITE)
1974 return -EISDIR;
1975 break;
1976 case S_IFBLK:
1977 case S_IFCHR:
3fb64190 1978 if (path->mnt->mnt_flags & MNT_NODEV)
1da177e4 1979 return -EACCES;
c8fe8f30
CH
1980 /*FALLTHRU*/
1981 case S_IFIFO:
1982 case S_IFSOCK:
1da177e4 1983 flag &= ~O_TRUNC;
c8fe8f30 1984 break;
4a3fd211 1985 }
b41572e9 1986
3fb64190 1987 error = inode_permission(inode, acc_mode);
b41572e9
DH
1988 if (error)
1989 return error;
6146f0d5 1990
1da177e4
LT
1991 /*
1992 * An append-only file must be opened in append mode for writing.
1993 */
1994 if (IS_APPEND(inode)) {
8737c930 1995 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
7715b521 1996 return -EPERM;
1da177e4 1997 if (flag & O_TRUNC)
7715b521 1998 return -EPERM;
1da177e4
LT
1999 }
2000
2001 /* O_NOATIME can only be set by the owner or superuser */
7715b521
AV
2002 if (flag & O_NOATIME && !is_owner_or_cap(inode))
2003 return -EPERM;
1da177e4
LT
2004
2005 /*
2006 * Ensure there are no outstanding leases on the file.
2007 */
b65a9cfc 2008 return break_lease(inode, flag);
7715b521 2009}
1da177e4 2010
e1181ee6 2011static int handle_truncate(struct file *filp)
7715b521 2012{
e1181ee6 2013 struct path *path = &filp->f_path;
7715b521
AV
2014 struct inode *inode = path->dentry->d_inode;
2015 int error = get_write_access(inode);
2016 if (error)
2017 return error;
2018 /*
2019 * Refuse to truncate files with mandatory locks held on them.
2020 */
2021 error = locks_verify_locked(inode);
2022 if (!error)
ea0d3ab2 2023 error = security_path_truncate(path);
7715b521
AV
2024 if (!error) {
2025 error = do_truncate(path->dentry, 0,
2026 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
e1181ee6 2027 filp);
7715b521
AV
2028 }
2029 put_write_access(inode);
acd0c935 2030 return error;
1da177e4
LT
2031}
2032
d57999e1
DH
2033/*
2034 * Note that while the flag value (low two bits) for sys_open means:
2035 * 00 - read-only
2036 * 01 - write-only
2037 * 10 - read-write
2038 * 11 - special
2039 * it is changed into
2040 * 00 - no permissions needed
2041 * 01 - read-permission
2042 * 10 - write-permission
2043 * 11 - read-write
2044 * for the internal routines (ie open_namei()/follow_link() etc)
2045 * This is more logical, and also allows the 00 "no perm needed"
2046 * to be used for symlinks (where the permissions are checked
2047 * later).
2048 *
2049*/
2050static inline int open_to_namei_flags(int flag)
2051{
2052 if ((flag+1) & O_ACCMODE)
2053 flag++;
2054 return flag;
2055}
2056
31e6b01f 2057/*
fe2d35ff 2058 * Handle the last step of open()
31e6b01f 2059 */
fb1cc555 2060static struct file *do_last(struct nameidata *nd, struct path *path,
c3e380b0 2061 const struct open_flags *op, const char *pathname)
fb1cc555 2062{
a1e28038 2063 struct dentry *dir = nd->path.dentry;
6c0d46c4 2064 struct dentry *dentry;
ca344a89 2065 int open_flag = op->open_flag;
6c0d46c4 2066 int will_truncate = open_flag & O_TRUNC;
ca344a89 2067 int want_write = 0;
bcda7652 2068 int acc_mode = op->acc_mode;
fb1cc555 2069 struct file *filp;
16c2cd71 2070 int error;
1f36f774 2071
c3e380b0
AV
2072 nd->flags &= ~LOOKUP_PARENT;
2073 nd->flags |= op->intent;
2074
1f36f774
AV
2075 switch (nd->last_type) {
2076 case LAST_DOTDOT:
176306f5 2077 case LAST_DOT:
fe2d35ff
AV
2078 error = handle_dots(nd, nd->last_type);
2079 if (error)
2080 return ERR_PTR(error);
1f36f774 2081 /* fallthrough */
1f36f774 2082 case LAST_ROOT:
fe2d35ff
AV
2083 if (nd->flags & LOOKUP_RCU) {
2084 if (nameidata_drop_rcu_last(nd))
2085 return ERR_PTR(-ECHILD);
2086 }
16c2cd71
AV
2087 error = handle_reval_path(nd);
2088 if (error)
2089 goto exit;
fe2d35ff 2090 audit_inode(pathname, nd->path.dentry);
ca344a89 2091 if (open_flag & O_CREAT) {
fe2d35ff
AV
2092 error = -EISDIR;
2093 goto exit;
2094 }
2095 goto ok;
1f36f774 2096 case LAST_BIND:
fe2d35ff 2097 /* can't be RCU mode here */
16c2cd71
AV
2098 error = handle_reval_path(nd);
2099 if (error)
2100 goto exit;
1f36f774 2101 audit_inode(pathname, dir);
67ee3ad2 2102 goto ok;
1f36f774 2103 }
67ee3ad2 2104
ca344a89 2105 if (!(open_flag & O_CREAT)) {
bcda7652 2106 int symlink_ok = 0;
fe2d35ff
AV
2107 if (nd->last.name[nd->last.len])
2108 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
bcda7652
AV
2109 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2110 symlink_ok = 1;
fe2d35ff 2111 /* we _can_ be in RCU mode here */
ce57dfc1
AV
2112 error = walk_component(nd, path, &nd->last, LAST_NORM,
2113 !symlink_ok);
2114 if (error < 0)
fe2d35ff 2115 return ERR_PTR(error);
ce57dfc1 2116 if (error) /* symlink */
fe2d35ff 2117 return NULL;
fe2d35ff
AV
2118 /* sayonara */
2119 if (nd->flags & LOOKUP_RCU) {
2120 if (nameidata_drop_rcu_last(nd))
2121 return ERR_PTR(-ECHILD);
2122 }
2123
2124 error = -ENOTDIR;
2125 if (nd->flags & LOOKUP_DIRECTORY) {
ce57dfc1 2126 if (!nd->inode->i_op->lookup)
fe2d35ff
AV
2127 goto exit;
2128 }
2129 audit_inode(pathname, nd->path.dentry);
2130 goto ok;
2131 }
2132
2133 /* create side of things */
2134
2135 if (nd->flags & LOOKUP_RCU) {
2136 if (nameidata_drop_rcu_last(nd))
2137 return ERR_PTR(-ECHILD);
2138 }
2139
2140 audit_inode(pathname, dir);
16c2cd71 2141 error = -EISDIR;
1f36f774 2142 /* trailing slashes? */
31e6b01f
NP
2143 if (nd->last.name[nd->last.len])
2144 goto exit;
a2c36b45 2145
a1e28038
AV
2146 mutex_lock(&dir->d_inode->i_mutex);
2147
6c0d46c4
AV
2148 dentry = lookup_hash(nd);
2149 error = PTR_ERR(dentry);
2150 if (IS_ERR(dentry)) {
fb1cc555
AV
2151 mutex_unlock(&dir->d_inode->i_mutex);
2152 goto exit;
2153 }
2154
6c0d46c4
AV
2155 path->dentry = dentry;
2156 path->mnt = nd->path.mnt;
2157
fb1cc555 2158 /* Negative dentry, just create the file */
6c0d46c4
AV
2159 if (!dentry->d_inode) {
2160 int mode = op->mode;
2161 if (!IS_POSIXACL(dir->d_inode))
2162 mode &= ~current_umask();
fb1cc555
AV
2163 /*
2164 * This write is needed to ensure that a
6c0d46c4 2165 * rw->ro transition does not occur between
fb1cc555
AV
2166 * the time when the file is created and when
2167 * a permanent write count is taken through
2168 * the 'struct file' in nameidata_to_filp().
2169 */
2170 error = mnt_want_write(nd->path.mnt);
2171 if (error)
2172 goto exit_mutex_unlock;
ca344a89 2173 want_write = 1;
9b44f1b3 2174 /* Don't check for write permission, don't truncate */
ca344a89 2175 open_flag &= ~O_TRUNC;
6c0d46c4 2176 will_truncate = 0;
bcda7652 2177 acc_mode = MAY_OPEN;
6c0d46c4
AV
2178 error = security_path_mknod(&nd->path, dentry, mode, 0);
2179 if (error)
2180 goto exit_mutex_unlock;
2181 error = vfs_create(dir->d_inode, dentry, mode, nd);
2182 if (error)
2183 goto exit_mutex_unlock;
2184 mutex_unlock(&dir->d_inode->i_mutex);
2185 dput(nd->path.dentry);
2186 nd->path.dentry = dentry;
ca344a89 2187 goto common;
fb1cc555
AV
2188 }
2189
2190 /*
2191 * It already exists.
2192 */
2193 mutex_unlock(&dir->d_inode->i_mutex);
2194 audit_inode(pathname, path->dentry);
2195
2196 error = -EEXIST;
ca344a89 2197 if (open_flag & O_EXCL)
fb1cc555
AV
2198 goto exit_dput;
2199
9875cf80
DH
2200 error = follow_managed(path, nd->flags);
2201 if (error < 0)
2202 goto exit_dput;
fb1cc555
AV
2203
2204 error = -ENOENT;
2205 if (!path->dentry->d_inode)
2206 goto exit_dput;
9e67f361
AV
2207
2208 if (path->dentry->d_inode->i_op->follow_link)
fb1cc555 2209 return NULL;
fb1cc555
AV
2210
2211 path_to_nameidata(path, nd);
31e6b01f 2212 nd->inode = path->dentry->d_inode;
fb1cc555 2213 error = -EISDIR;
31e6b01f 2214 if (S_ISDIR(nd->inode->i_mode))
fb1cc555 2215 goto exit;
67ee3ad2 2216ok:
6c0d46c4
AV
2217 if (!S_ISREG(nd->inode->i_mode))
2218 will_truncate = 0;
2219
0f9d1a10
AV
2220 if (will_truncate) {
2221 error = mnt_want_write(nd->path.mnt);
2222 if (error)
2223 goto exit;
ca344a89 2224 want_write = 1;
0f9d1a10 2225 }
ca344a89 2226common:
bcda7652 2227 error = may_open(&nd->path, acc_mode, open_flag);
ca344a89 2228 if (error)
0f9d1a10 2229 goto exit;
0f9d1a10
AV
2230 filp = nameidata_to_filp(nd);
2231 if (!IS_ERR(filp)) {
2232 error = ima_file_check(filp, op->acc_mode);
2233 if (error) {
2234 fput(filp);
2235 filp = ERR_PTR(error);
2236 }
2237 }
2238 if (!IS_ERR(filp)) {
2239 if (will_truncate) {
2240 error = handle_truncate(filp);
2241 if (error) {
2242 fput(filp);
2243 filp = ERR_PTR(error);
2244 }
2245 }
2246 }
ca344a89
AV
2247out:
2248 if (want_write)
0f9d1a10
AV
2249 mnt_drop_write(nd->path.mnt);
2250 path_put(&nd->path);
fb1cc555
AV
2251 return filp;
2252
2253exit_mutex_unlock:
2254 mutex_unlock(&dir->d_inode->i_mutex);
2255exit_dput:
2256 path_put_conditional(path, nd);
2257exit:
ca344a89
AV
2258 filp = ERR_PTR(error);
2259 goto out;
fb1cc555
AV
2260}
2261
13aab428 2262static struct file *path_openat(int dfd, const char *pathname,
73d049a4 2263 struct nameidata *nd, const struct open_flags *op, int flags)
1da177e4 2264{
fe2d35ff 2265 struct file *base = NULL;
4a3fd211 2266 struct file *filp;
9850c056 2267 struct path path;
1da177e4 2268 int count = 0;
13aab428 2269 int error;
31e6b01f
NP
2270
2271 filp = get_empty_filp();
2272 if (!filp)
2273 return ERR_PTR(-ENFILE);
2274
47c805dc 2275 filp->f_flags = op->open_flag;
73d049a4
AV
2276 nd->intent.open.file = filp;
2277 nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2278 nd->intent.open.create_mode = op->mode;
31e6b01f 2279
73d049a4 2280 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
31e6b01f 2281 if (unlikely(error))
13aab428 2282 goto out_filp;
31e6b01f 2283
fe2d35ff 2284 current->total_link_count = 0;
73d049a4 2285 error = link_path_walk(pathname, nd);
31e6b01f
NP
2286 if (unlikely(error))
2287 goto out_filp;
1da177e4 2288
73d049a4 2289 filp = do_last(nd, &path, op, pathname);
806b681c 2290 while (unlikely(!filp)) { /* trailing symlink */
7b9337aa
NP
2291 struct path link = path;
2292 struct inode *linki = link.dentry->d_inode;
def4af30 2293 void *cookie;
73d049a4
AV
2294 if (!(nd->flags & LOOKUP_FOLLOW) || count++ == 32) {
2295 path_put_conditional(&path, nd);
2296 path_put(&nd->path);
40b39136
AV
2297 filp = ERR_PTR(-ELOOP);
2298 break;
2299 }
806b681c
AV
2300 /*
2301 * This is subtle. Instead of calling do_follow_link() we do
2302 * the thing by hands. The reason is that this way we have zero
2303 * link_count and path_walk() (called from ->follow_link)
2304 * honoring LOOKUP_PARENT. After that we have the parent and
2305 * last component, i.e. we are in the same situation as after
2306 * the first path_walk(). Well, almost - if the last component
2307 * is normal we get its copy stored in nd->last.name and we will
2308 * have to putname() it when we are done. Procfs-like symlinks
2309 * just set LAST_BIND.
2310 */
73d049a4
AV
2311 nd->flags |= LOOKUP_PARENT;
2312 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
2313 error = __do_follow_link(&link, nd, &cookie);
c3e380b0 2314 if (unlikely(error))
f1afe9ef 2315 filp = ERR_PTR(error);
c3e380b0 2316 else
73d049a4 2317 filp = do_last(nd, &path, op, pathname);
f1afe9ef 2318 if (!IS_ERR(cookie) && linki->i_op->put_link)
73d049a4 2319 linki->i_op->put_link(link.dentry, nd, cookie);
7b9337aa 2320 path_put(&link);
806b681c 2321 }
10fa8e62 2322out:
73d049a4
AV
2323 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2324 path_put(&nd->root);
fe2d35ff
AV
2325 if (base)
2326 fput(base);
73d049a4 2327 release_open_intent(nd);
10fa8e62 2328 return filp;
1da177e4 2329
31e6b01f 2330out_filp:
806b681c 2331 filp = ERR_PTR(error);
10fa8e62 2332 goto out;
1da177e4
LT
2333}
2334
13aab428
AV
2335struct file *do_filp_open(int dfd, const char *pathname,
2336 const struct open_flags *op, int flags)
2337{
73d049a4 2338 struct nameidata nd;
13aab428
AV
2339 struct file *filp;
2340
73d049a4 2341 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
13aab428 2342 if (unlikely(filp == ERR_PTR(-ECHILD)))
73d049a4 2343 filp = path_openat(dfd, pathname, &nd, op, flags);
13aab428 2344 if (unlikely(filp == ERR_PTR(-ESTALE)))
73d049a4 2345 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
13aab428
AV
2346 return filp;
2347}
2348
73d049a4
AV
2349struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2350 const char *name, const struct open_flags *op, int flags)
2351{
2352 struct nameidata nd;
2353 struct file *file;
2354
2355 nd.root.mnt = mnt;
2356 nd.root.dentry = dentry;
2357
2358 flags |= LOOKUP_ROOT;
2359
bcda7652 2360 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
73d049a4
AV
2361 return ERR_PTR(-ELOOP);
2362
2363 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2364 if (unlikely(file == ERR_PTR(-ECHILD)))
2365 file = path_openat(-1, name, &nd, op, flags);
2366 if (unlikely(file == ERR_PTR(-ESTALE)))
2367 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2368 return file;
2369}
2370
1da177e4
LT
2371/**
2372 * lookup_create - lookup a dentry, creating it if it doesn't exist
2373 * @nd: nameidata info
2374 * @is_dir: directory flag
2375 *
2376 * Simple function to lookup and return a dentry and create it
2377 * if it doesn't exist. Is SMP-safe.
c663e5d8 2378 *
4ac91378 2379 * Returns with nd->path.dentry->d_inode->i_mutex locked.
1da177e4
LT
2380 */
2381struct dentry *lookup_create(struct nameidata *nd, int is_dir)
2382{
c663e5d8 2383 struct dentry *dentry = ERR_PTR(-EEXIST);
1da177e4 2384
4ac91378 2385 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
c663e5d8
CH
2386 /*
2387 * Yucky last component or no last component at all?
2388 * (foo/., foo/.., /////)
2389 */
1da177e4
LT
2390 if (nd->last_type != LAST_NORM)
2391 goto fail;
2392 nd->flags &= ~LOOKUP_PARENT;
3516586a 2393 nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
a634904a 2394 nd->intent.open.flags = O_EXCL;
c663e5d8
CH
2395
2396 /*
2397 * Do the final lookup.
2398 */
49705b77 2399 dentry = lookup_hash(nd);
1da177e4
LT
2400 if (IS_ERR(dentry))
2401 goto fail;
c663e5d8 2402
e9baf6e5
AV
2403 if (dentry->d_inode)
2404 goto eexist;
c663e5d8
CH
2405 /*
2406 * Special case - lookup gave negative, but... we had foo/bar/
2407 * From the vfs_mknod() POV we just have a negative dentry -
2408 * all is fine. Let's be bastards - you had / on the end, you've
2409 * been asking for (non-existent) directory. -ENOENT for you.
2410 */
e9baf6e5
AV
2411 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
2412 dput(dentry);
2413 dentry = ERR_PTR(-ENOENT);
2414 }
1da177e4 2415 return dentry;
e9baf6e5 2416eexist:
1da177e4 2417 dput(dentry);
e9baf6e5 2418 dentry = ERR_PTR(-EEXIST);
1da177e4
LT
2419fail:
2420 return dentry;
2421}
f81a0bff 2422EXPORT_SYMBOL_GPL(lookup_create);
1da177e4
LT
2423
2424int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2425{
a95164d9 2426 int error = may_create(dir, dentry);
1da177e4
LT
2427
2428 if (error)
2429 return error;
2430
2431 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
2432 return -EPERM;
2433
acfa4380 2434 if (!dir->i_op->mknod)
1da177e4
LT
2435 return -EPERM;
2436
08ce5f16
SH
2437 error = devcgroup_inode_mknod(mode, dev);
2438 if (error)
2439 return error;
2440
1da177e4
LT
2441 error = security_inode_mknod(dir, dentry, mode, dev);
2442 if (error)
2443 return error;
2444
1da177e4 2445 error = dir->i_op->mknod(dir, dentry, mode, dev);
a74574aa 2446 if (!error)
f38aa942 2447 fsnotify_create(dir, dentry);
1da177e4
LT
2448 return error;
2449}
2450
463c3197
DH
2451static int may_mknod(mode_t mode)
2452{
2453 switch (mode & S_IFMT) {
2454 case S_IFREG:
2455 case S_IFCHR:
2456 case S_IFBLK:
2457 case S_IFIFO:
2458 case S_IFSOCK:
2459 case 0: /* zero mode translates to S_IFREG */
2460 return 0;
2461 case S_IFDIR:
2462 return -EPERM;
2463 default:
2464 return -EINVAL;
2465 }
2466}
2467
2e4d0924
HC
2468SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2469 unsigned, dev)
1da177e4 2470{
2ad94ae6
AV
2471 int error;
2472 char *tmp;
2473 struct dentry *dentry;
1da177e4
LT
2474 struct nameidata nd;
2475
2476 if (S_ISDIR(mode))
2477 return -EPERM;
1da177e4 2478
2ad94ae6 2479 error = user_path_parent(dfd, filename, &nd, &tmp);
1da177e4 2480 if (error)
2ad94ae6
AV
2481 return error;
2482
1da177e4 2483 dentry = lookup_create(&nd, 0);
463c3197
DH
2484 if (IS_ERR(dentry)) {
2485 error = PTR_ERR(dentry);
2486 goto out_unlock;
2487 }
4ac91378 2488 if (!IS_POSIXACL(nd.path.dentry->d_inode))
ce3b0f8d 2489 mode &= ~current_umask();
463c3197
DH
2490 error = may_mknod(mode);
2491 if (error)
2492 goto out_dput;
2493 error = mnt_want_write(nd.path.mnt);
2494 if (error)
2495 goto out_dput;
be6d3e56
KT
2496 error = security_path_mknod(&nd.path, dentry, mode, dev);
2497 if (error)
2498 goto out_drop_write;
463c3197 2499 switch (mode & S_IFMT) {
1da177e4 2500 case 0: case S_IFREG:
4ac91378 2501 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
1da177e4
LT
2502 break;
2503 case S_IFCHR: case S_IFBLK:
4ac91378 2504 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
1da177e4
LT
2505 new_decode_dev(dev));
2506 break;
2507 case S_IFIFO: case S_IFSOCK:
4ac91378 2508 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
1da177e4 2509 break;
1da177e4 2510 }
be6d3e56 2511out_drop_write:
463c3197
DH
2512 mnt_drop_write(nd.path.mnt);
2513out_dput:
2514 dput(dentry);
2515out_unlock:
4ac91378 2516 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1d957f9b 2517 path_put(&nd.path);
1da177e4
LT
2518 putname(tmp);
2519
2520 return error;
2521}
2522
3480b257 2523SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
5590ff0d
UD
2524{
2525 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2526}
2527
1da177e4
LT
2528int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2529{
a95164d9 2530 int error = may_create(dir, dentry);
1da177e4
LT
2531
2532 if (error)
2533 return error;
2534
acfa4380 2535 if (!dir->i_op->mkdir)
1da177e4
LT
2536 return -EPERM;
2537
2538 mode &= (S_IRWXUGO|S_ISVTX);
2539 error = security_inode_mkdir(dir, dentry, mode);
2540 if (error)
2541 return error;
2542
1da177e4 2543 error = dir->i_op->mkdir(dir, dentry, mode);
a74574aa 2544 if (!error)
f38aa942 2545 fsnotify_mkdir(dir, dentry);
1da177e4
LT
2546 return error;
2547}
2548
2e4d0924 2549SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
1da177e4
LT
2550{
2551 int error = 0;
2552 char * tmp;
6902d925
DH
2553 struct dentry *dentry;
2554 struct nameidata nd;
1da177e4 2555
2ad94ae6
AV
2556 error = user_path_parent(dfd, pathname, &nd, &tmp);
2557 if (error)
6902d925 2558 goto out_err;
1da177e4 2559
6902d925
DH
2560 dentry = lookup_create(&nd, 1);
2561 error = PTR_ERR(dentry);
2562 if (IS_ERR(dentry))
2563 goto out_unlock;
1da177e4 2564
4ac91378 2565 if (!IS_POSIXACL(nd.path.dentry->d_inode))
ce3b0f8d 2566 mode &= ~current_umask();
463c3197
DH
2567 error = mnt_want_write(nd.path.mnt);
2568 if (error)
2569 goto out_dput;
be6d3e56
KT
2570 error = security_path_mkdir(&nd.path, dentry, mode);
2571 if (error)
2572 goto out_drop_write;
4ac91378 2573 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
be6d3e56 2574out_drop_write:
463c3197
DH
2575 mnt_drop_write(nd.path.mnt);
2576out_dput:
6902d925
DH
2577 dput(dentry);
2578out_unlock:
4ac91378 2579 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1d957f9b 2580 path_put(&nd.path);
6902d925
DH
2581 putname(tmp);
2582out_err:
1da177e4
LT
2583 return error;
2584}
2585
3cdad428 2586SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
5590ff0d
UD
2587{
2588 return sys_mkdirat(AT_FDCWD, pathname, mode);
2589}
2590
1da177e4
LT
2591/*
2592 * We try to drop the dentry early: we should have
2593 * a usage count of 2 if we're the only user of this
2594 * dentry, and if that is true (possibly after pruning
2595 * the dcache), then we drop the dentry now.
2596 *
2597 * A low-level filesystem can, if it choses, legally
2598 * do a
2599 *
2600 * if (!d_unhashed(dentry))
2601 * return -EBUSY;
2602 *
2603 * if it cannot handle the case of removing a directory
2604 * that is still in use by something else..
2605 */
2606void dentry_unhash(struct dentry *dentry)
2607{
2608 dget(dentry);
dc168427 2609 shrink_dcache_parent(dentry);
1da177e4 2610 spin_lock(&dentry->d_lock);
b7ab39f6 2611 if (dentry->d_count == 2)
1da177e4
LT
2612 __d_drop(dentry);
2613 spin_unlock(&dentry->d_lock);
1da177e4
LT
2614}
2615
2616int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2617{
2618 int error = may_delete(dir, dentry, 1);
2619
2620 if (error)
2621 return error;
2622
acfa4380 2623 if (!dir->i_op->rmdir)
1da177e4
LT
2624 return -EPERM;
2625
1b1dcc1b 2626 mutex_lock(&dentry->d_inode->i_mutex);
1da177e4
LT
2627 dentry_unhash(dentry);
2628 if (d_mountpoint(dentry))
2629 error = -EBUSY;
2630 else {
2631 error = security_inode_rmdir(dir, dentry);
2632 if (!error) {
2633 error = dir->i_op->rmdir(dir, dentry);
d83c49f3 2634 if (!error) {
1da177e4 2635 dentry->d_inode->i_flags |= S_DEAD;
d83c49f3
AV
2636 dont_mount(dentry);
2637 }
1da177e4
LT
2638 }
2639 }
1b1dcc1b 2640 mutex_unlock(&dentry->d_inode->i_mutex);
1da177e4 2641 if (!error) {
1da177e4
LT
2642 d_delete(dentry);
2643 }
2644 dput(dentry);
2645
2646 return error;
2647}
2648
5590ff0d 2649static long do_rmdir(int dfd, const char __user *pathname)
1da177e4
LT
2650{
2651 int error = 0;
2652 char * name;
2653 struct dentry *dentry;
2654 struct nameidata nd;
2655
2ad94ae6 2656 error = user_path_parent(dfd, pathname, &nd, &name);
1da177e4 2657 if (error)
2ad94ae6 2658 return error;
1da177e4
LT
2659
2660 switch(nd.last_type) {
0612d9fb
OH
2661 case LAST_DOTDOT:
2662 error = -ENOTEMPTY;
2663 goto exit1;
2664 case LAST_DOT:
2665 error = -EINVAL;
2666 goto exit1;
2667 case LAST_ROOT:
2668 error = -EBUSY;
2669 goto exit1;
1da177e4 2670 }
0612d9fb
OH
2671
2672 nd.flags &= ~LOOKUP_PARENT;
2673
4ac91378 2674 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
49705b77 2675 dentry = lookup_hash(&nd);
1da177e4 2676 error = PTR_ERR(dentry);
6902d925
DH
2677 if (IS_ERR(dentry))
2678 goto exit2;
0622753b
DH
2679 error = mnt_want_write(nd.path.mnt);
2680 if (error)
2681 goto exit3;
be6d3e56
KT
2682 error = security_path_rmdir(&nd.path, dentry);
2683 if (error)
2684 goto exit4;
4ac91378 2685 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
be6d3e56 2686exit4:
0622753b
DH
2687 mnt_drop_write(nd.path.mnt);
2688exit3:
6902d925
DH
2689 dput(dentry);
2690exit2:
4ac91378 2691 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1da177e4 2692exit1:
1d957f9b 2693 path_put(&nd.path);
1da177e4
LT
2694 putname(name);
2695 return error;
2696}
2697
3cdad428 2698SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
5590ff0d
UD
2699{
2700 return do_rmdir(AT_FDCWD, pathname);
2701}
2702
1da177e4
LT
2703int vfs_unlink(struct inode *dir, struct dentry *dentry)
2704{
2705 int error = may_delete(dir, dentry, 0);
2706
2707 if (error)
2708 return error;
2709
acfa4380 2710 if (!dir->i_op->unlink)
1da177e4
LT
2711 return -EPERM;
2712
1b1dcc1b 2713 mutex_lock(&dentry->d_inode->i_mutex);
1da177e4
LT
2714 if (d_mountpoint(dentry))
2715 error = -EBUSY;
2716 else {
2717 error = security_inode_unlink(dir, dentry);
bec1052e 2718 if (!error) {
1da177e4 2719 error = dir->i_op->unlink(dir, dentry);
bec1052e 2720 if (!error)
d83c49f3 2721 dont_mount(dentry);
bec1052e 2722 }
1da177e4 2723 }
1b1dcc1b 2724 mutex_unlock(&dentry->d_inode->i_mutex);
1da177e4
LT
2725
2726 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2727 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
ece95912 2728 fsnotify_link_count(dentry->d_inode);
e234f35c 2729 d_delete(dentry);
1da177e4 2730 }
0eeca283 2731
1da177e4
LT
2732 return error;
2733}
2734
2735/*
2736 * Make sure that the actual truncation of the file will occur outside its
1b1dcc1b 2737 * directory's i_mutex. Truncate can take a long time if there is a lot of
1da177e4
LT
2738 * writeout happening, and we don't want to prevent access to the directory
2739 * while waiting on the I/O.
2740 */
5590ff0d 2741static long do_unlinkat(int dfd, const char __user *pathname)
1da177e4 2742{
2ad94ae6
AV
2743 int error;
2744 char *name;
1da177e4
LT
2745 struct dentry *dentry;
2746 struct nameidata nd;
2747 struct inode *inode = NULL;
2748
2ad94ae6 2749 error = user_path_parent(dfd, pathname, &nd, &name);
1da177e4 2750 if (error)
2ad94ae6
AV
2751 return error;
2752
1da177e4
LT
2753 error = -EISDIR;
2754 if (nd.last_type != LAST_NORM)
2755 goto exit1;
0612d9fb
OH
2756
2757 nd.flags &= ~LOOKUP_PARENT;
2758
4ac91378 2759 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
49705b77 2760 dentry = lookup_hash(&nd);
1da177e4
LT
2761 error = PTR_ERR(dentry);
2762 if (!IS_ERR(dentry)) {
2763 /* Why not before? Because we want correct error value */
2764 if (nd.last.name[nd.last.len])
2765 goto slashes;
2766 inode = dentry->d_inode;
2767 if (inode)
7de9c6ee 2768 ihold(inode);
0622753b
DH
2769 error = mnt_want_write(nd.path.mnt);
2770 if (error)
2771 goto exit2;
be6d3e56
KT
2772 error = security_path_unlink(&nd.path, dentry);
2773 if (error)
2774 goto exit3;
4ac91378 2775 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
be6d3e56 2776exit3:
0622753b 2777 mnt_drop_write(nd.path.mnt);
1da177e4
LT
2778 exit2:
2779 dput(dentry);
2780 }
4ac91378 2781 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1da177e4
LT
2782 if (inode)
2783 iput(inode); /* truncate the inode here */
2784exit1:
1d957f9b 2785 path_put(&nd.path);
1da177e4
LT
2786 putname(name);
2787 return error;
2788
2789slashes:
2790 error = !dentry->d_inode ? -ENOENT :
2791 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2792 goto exit2;
2793}
2794
2e4d0924 2795SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
5590ff0d
UD
2796{
2797 if ((flag & ~AT_REMOVEDIR) != 0)
2798 return -EINVAL;
2799
2800 if (flag & AT_REMOVEDIR)
2801 return do_rmdir(dfd, pathname);
2802
2803 return do_unlinkat(dfd, pathname);
2804}
2805
3480b257 2806SYSCALL_DEFINE1(unlink, const char __user *, pathname)
5590ff0d
UD
2807{
2808 return do_unlinkat(AT_FDCWD, pathname);
2809}
2810
db2e747b 2811int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
1da177e4 2812{
a95164d9 2813 int error = may_create(dir, dentry);
1da177e4
LT
2814
2815 if (error)
2816 return error;
2817
acfa4380 2818 if (!dir->i_op->symlink)
1da177e4
LT
2819 return -EPERM;
2820
2821 error = security_inode_symlink(dir, dentry, oldname);
2822 if (error)
2823 return error;
2824
1da177e4 2825 error = dir->i_op->symlink(dir, dentry, oldname);
a74574aa 2826 if (!error)
f38aa942 2827 fsnotify_create(dir, dentry);
1da177e4
LT
2828 return error;
2829}
2830
2e4d0924
HC
2831SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2832 int, newdfd, const char __user *, newname)
1da177e4 2833{
2ad94ae6
AV
2834 int error;
2835 char *from;
2836 char *to;
6902d925
DH
2837 struct dentry *dentry;
2838 struct nameidata nd;
1da177e4
LT
2839
2840 from = getname(oldname);
2ad94ae6 2841 if (IS_ERR(from))
1da177e4 2842 return PTR_ERR(from);
1da177e4 2843
2ad94ae6 2844 error = user_path_parent(newdfd, newname, &nd, &to);
6902d925 2845 if (error)
2ad94ae6
AV
2846 goto out_putname;
2847
6902d925
DH
2848 dentry = lookup_create(&nd, 0);
2849 error = PTR_ERR(dentry);
2850 if (IS_ERR(dentry))
2851 goto out_unlock;
2852
75c3f29d
DH
2853 error = mnt_want_write(nd.path.mnt);
2854 if (error)
2855 goto out_dput;
be6d3e56
KT
2856 error = security_path_symlink(&nd.path, dentry, from);
2857 if (error)
2858 goto out_drop_write;
db2e747b 2859 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
be6d3e56 2860out_drop_write:
75c3f29d
DH
2861 mnt_drop_write(nd.path.mnt);
2862out_dput:
6902d925
DH
2863 dput(dentry);
2864out_unlock:
4ac91378 2865 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1d957f9b 2866 path_put(&nd.path);
6902d925
DH
2867 putname(to);
2868out_putname:
1da177e4
LT
2869 putname(from);
2870 return error;
2871}
2872
3480b257 2873SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
5590ff0d
UD
2874{
2875 return sys_symlinkat(oldname, AT_FDCWD, newname);
2876}
2877
1da177e4
LT
2878int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2879{
2880 struct inode *inode = old_dentry->d_inode;
2881 int error;
2882
2883 if (!inode)
2884 return -ENOENT;
2885
a95164d9 2886 error = may_create(dir, new_dentry);
1da177e4
LT
2887 if (error)
2888 return error;
2889
2890 if (dir->i_sb != inode->i_sb)
2891 return -EXDEV;
2892
2893 /*
2894 * A link to an append-only or immutable file cannot be created.
2895 */
2896 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2897 return -EPERM;
acfa4380 2898 if (!dir->i_op->link)
1da177e4 2899 return -EPERM;
7e79eedb 2900 if (S_ISDIR(inode->i_mode))
1da177e4
LT
2901 return -EPERM;
2902
2903 error = security_inode_link(old_dentry, dir, new_dentry);
2904 if (error)
2905 return error;
2906
7e79eedb 2907 mutex_lock(&inode->i_mutex);
aae8a97d
AK
2908 /* Make sure we don't allow creating hardlink to an unlinked file */
2909 if (inode->i_nlink == 0)
2910 error = -ENOENT;
2911 else
2912 error = dir->i_op->link(old_dentry, dir, new_dentry);
7e79eedb 2913 mutex_unlock(&inode->i_mutex);
e31e14ec 2914 if (!error)
7e79eedb 2915 fsnotify_link(dir, inode, new_dentry);
1da177e4
LT
2916 return error;
2917}
2918
2919/*
2920 * Hardlinks are often used in delicate situations. We avoid
2921 * security-related surprises by not following symlinks on the
2922 * newname. --KAB
2923 *
2924 * We don't follow them on the oldname either to be compatible
2925 * with linux 2.0, and to avoid hard-linking to directories
2926 * and other special files. --ADM
2927 */
2e4d0924
HC
2928SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2929 int, newdfd, const char __user *, newname, int, flags)
1da177e4
LT
2930{
2931 struct dentry *new_dentry;
2d8f3038
AV
2932 struct nameidata nd;
2933 struct path old_path;
11a7b371 2934 int how = 0;
1da177e4 2935 int error;
2ad94ae6 2936 char *to;
1da177e4 2937
11a7b371 2938 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
c04030e1 2939 return -EINVAL;
11a7b371
AK
2940 /*
2941 * To use null names we require CAP_DAC_READ_SEARCH
2942 * This ensures that not everyone will be able to create
2943 * handlink using the passed filedescriptor.
2944 */
2945 if (flags & AT_EMPTY_PATH) {
2946 if (!capable(CAP_DAC_READ_SEARCH))
2947 return -ENOENT;
2948 how = LOOKUP_EMPTY;
2949 }
2950
2951 if (flags & AT_SYMLINK_FOLLOW)
2952 how |= LOOKUP_FOLLOW;
c04030e1 2953
11a7b371 2954 error = user_path_at(olddfd, oldname, how, &old_path);
1da177e4 2955 if (error)
2ad94ae6
AV
2956 return error;
2957
2958 error = user_path_parent(newdfd, newname, &nd, &to);
1da177e4
LT
2959 if (error)
2960 goto out;
2961 error = -EXDEV;
2d8f3038 2962 if (old_path.mnt != nd.path.mnt)
1da177e4
LT
2963 goto out_release;
2964 new_dentry = lookup_create(&nd, 0);
2965 error = PTR_ERR(new_dentry);
6902d925
DH
2966 if (IS_ERR(new_dentry))
2967 goto out_unlock;
75c3f29d
DH
2968 error = mnt_want_write(nd.path.mnt);
2969 if (error)
2970 goto out_dput;
be6d3e56
KT
2971 error = security_path_link(old_path.dentry, &nd.path, new_dentry);
2972 if (error)
2973 goto out_drop_write;
2d8f3038 2974 error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
be6d3e56 2975out_drop_write:
75c3f29d
DH
2976 mnt_drop_write(nd.path.mnt);
2977out_dput:
6902d925
DH
2978 dput(new_dentry);
2979out_unlock:
4ac91378 2980 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1da177e4 2981out_release:
1d957f9b 2982 path_put(&nd.path);
2ad94ae6 2983 putname(to);
1da177e4 2984out:
2d8f3038 2985 path_put(&old_path);
1da177e4
LT
2986
2987 return error;
2988}
2989
3480b257 2990SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
5590ff0d 2991{
c04030e1 2992 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
5590ff0d
UD
2993}
2994
1da177e4
LT
2995/*
2996 * The worst of all namespace operations - renaming directory. "Perverted"
2997 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2998 * Problems:
2999 * a) we can get into loop creation. Check is done in is_subdir().
3000 * b) race potential - two innocent renames can create a loop together.
3001 * That's where 4.4 screws up. Current fix: serialization on
a11f3a05 3002 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
1da177e4
LT
3003 * story.
3004 * c) we have to lock _three_ objects - parents and victim (if it exists).
1b1dcc1b 3005 * And that - after we got ->i_mutex on parents (until then we don't know
1da177e4
LT
3006 * whether the target exists). Solution: try to be smart with locking
3007 * order for inodes. We rely on the fact that tree topology may change
a11f3a05 3008 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
1da177e4
LT
3009 * move will be locked. Thus we can rank directories by the tree
3010 * (ancestors first) and rank all non-directories after them.
3011 * That works since everybody except rename does "lock parent, lookup,
a11f3a05 3012 * lock child" and rename is under ->s_vfs_rename_mutex.
1da177e4
LT
3013 * HOWEVER, it relies on the assumption that any object with ->lookup()
3014 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3015 * we'd better make sure that there's no link(2) for them.
3016 * d) some filesystems don't support opened-but-unlinked directories,
3017 * either because of layout or because they are not ready to deal with
3018 * all cases correctly. The latter will be fixed (taking this sort of
3019 * stuff into VFS), but the former is not going away. Solution: the same
3020 * trick as in rmdir().
3021 * e) conversion from fhandle to dentry may come in the wrong moment - when
1b1dcc1b 3022 * we are removing the target. Solution: we will have to grab ->i_mutex
1da177e4 3023 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
c41b20e7 3024 * ->i_mutex on parents, which works but leads to some truly excessive
1da177e4
LT
3025 * locking].
3026 */
75c96f85
AB
3027static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3028 struct inode *new_dir, struct dentry *new_dentry)
1da177e4
LT
3029{
3030 int error = 0;
3031 struct inode *target;
3032
3033 /*
3034 * If we are going to change the parent - check write permissions,
3035 * we'll need to flip '..'.
3036 */
3037 if (new_dir != old_dir) {
f419a2e3 3038 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
1da177e4
LT
3039 if (error)
3040 return error;
3041 }
3042
3043 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3044 if (error)
3045 return error;
3046
3047 target = new_dentry->d_inode;
d83c49f3 3048 if (target)
1b1dcc1b 3049 mutex_lock(&target->i_mutex);
1da177e4
LT
3050 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3051 error = -EBUSY;
d83c49f3
AV
3052 else {
3053 if (target)
3054 dentry_unhash(new_dentry);
1da177e4 3055 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
d83c49f3 3056 }
1da177e4 3057 if (target) {
d83c49f3 3058 if (!error) {
1da177e4 3059 target->i_flags |= S_DEAD;
d83c49f3
AV
3060 dont_mount(new_dentry);
3061 }
1b1dcc1b 3062 mutex_unlock(&target->i_mutex);
1da177e4
LT
3063 if (d_unhashed(new_dentry))
3064 d_rehash(new_dentry);
3065 dput(new_dentry);
3066 }
e31e14ec 3067 if (!error)
349457cc
MF
3068 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3069 d_move(old_dentry,new_dentry);
1da177e4
LT
3070 return error;
3071}
3072
75c96f85
AB
3073static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3074 struct inode *new_dir, struct dentry *new_dentry)
1da177e4
LT
3075{
3076 struct inode *target;
3077 int error;
3078
3079 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3080 if (error)
3081 return error;
3082
3083 dget(new_dentry);
3084 target = new_dentry->d_inode;
3085 if (target)
1b1dcc1b 3086 mutex_lock(&target->i_mutex);
1da177e4
LT
3087 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3088 error = -EBUSY;
3089 else
3090 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3091 if (!error) {
bec1052e 3092 if (target)
d83c49f3 3093 dont_mount(new_dentry);
349457cc 3094 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
1da177e4 3095 d_move(old_dentry, new_dentry);
1da177e4
LT
3096 }
3097 if (target)
1b1dcc1b 3098 mutex_unlock(&target->i_mutex);
1da177e4
LT
3099 dput(new_dentry);
3100 return error;
3101}
3102
3103int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3104 struct inode *new_dir, struct dentry *new_dentry)
3105{
3106 int error;
3107 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
59b0df21 3108 const unsigned char *old_name;
1da177e4
LT
3109
3110 if (old_dentry->d_inode == new_dentry->d_inode)
3111 return 0;
3112
3113 error = may_delete(old_dir, old_dentry, is_dir);
3114 if (error)
3115 return error;
3116
3117 if (!new_dentry->d_inode)
a95164d9 3118 error = may_create(new_dir, new_dentry);
1da177e4
LT
3119 else
3120 error = may_delete(new_dir, new_dentry, is_dir);
3121 if (error)
3122 return error;
3123
acfa4380 3124 if (!old_dir->i_op->rename)
1da177e4
LT
3125 return -EPERM;
3126
0eeca283
RL
3127 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3128
1da177e4
LT
3129 if (is_dir)
3130 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3131 else
3132 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
123df294
AV
3133 if (!error)
3134 fsnotify_move(old_dir, new_dir, old_name, is_dir,
5a190ae6 3135 new_dentry->d_inode, old_dentry);
0eeca283
RL
3136 fsnotify_oldname_free(old_name);
3137
1da177e4
LT
3138 return error;
3139}
3140
2e4d0924
HC
3141SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3142 int, newdfd, const char __user *, newname)
1da177e4 3143{
2ad94ae6
AV
3144 struct dentry *old_dir, *new_dir;
3145 struct dentry *old_dentry, *new_dentry;
3146 struct dentry *trap;
1da177e4 3147 struct nameidata oldnd, newnd;
2ad94ae6
AV
3148 char *from;
3149 char *to;
3150 int error;
1da177e4 3151
2ad94ae6 3152 error = user_path_parent(olddfd, oldname, &oldnd, &from);
1da177e4
LT
3153 if (error)
3154 goto exit;
3155
2ad94ae6 3156 error = user_path_parent(newdfd, newname, &newnd, &to);
1da177e4
LT
3157 if (error)
3158 goto exit1;
3159
3160 error = -EXDEV;
4ac91378 3161 if (oldnd.path.mnt != newnd.path.mnt)
1da177e4
LT
3162 goto exit2;
3163
4ac91378 3164 old_dir = oldnd.path.dentry;
1da177e4
LT
3165 error = -EBUSY;
3166 if (oldnd.last_type != LAST_NORM)
3167 goto exit2;
3168
4ac91378 3169 new_dir = newnd.path.dentry;
1da177e4
LT
3170 if (newnd.last_type != LAST_NORM)
3171 goto exit2;
3172
0612d9fb
OH
3173 oldnd.flags &= ~LOOKUP_PARENT;
3174 newnd.flags &= ~LOOKUP_PARENT;
4e9ed2f8 3175 newnd.flags |= LOOKUP_RENAME_TARGET;
0612d9fb 3176
1da177e4
LT
3177 trap = lock_rename(new_dir, old_dir);
3178
49705b77 3179 old_dentry = lookup_hash(&oldnd);
1da177e4
LT
3180 error = PTR_ERR(old_dentry);
3181 if (IS_ERR(old_dentry))
3182 goto exit3;
3183 /* source must exist */
3184 error = -ENOENT;
3185 if (!old_dentry->d_inode)
3186 goto exit4;
3187 /* unless the source is a directory trailing slashes give -ENOTDIR */
3188 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3189 error = -ENOTDIR;
3190 if (oldnd.last.name[oldnd.last.len])
3191 goto exit4;
3192 if (newnd.last.name[newnd.last.len])
3193 goto exit4;
3194 }
3195 /* source should not be ancestor of target */
3196 error = -EINVAL;
3197 if (old_dentry == trap)
3198 goto exit4;
49705b77 3199 new_dentry = lookup_hash(&newnd);
1da177e4
LT
3200 error = PTR_ERR(new_dentry);
3201 if (IS_ERR(new_dentry))
3202 goto exit4;
3203 /* target should not be an ancestor of source */
3204 error = -ENOTEMPTY;
3205 if (new_dentry == trap)
3206 goto exit5;
3207
9079b1eb
DH
3208 error = mnt_want_write(oldnd.path.mnt);
3209 if (error)
3210 goto exit5;
be6d3e56
KT
3211 error = security_path_rename(&oldnd.path, old_dentry,
3212 &newnd.path, new_dentry);
3213 if (error)
3214 goto exit6;
1da177e4
LT
3215 error = vfs_rename(old_dir->d_inode, old_dentry,
3216 new_dir->d_inode, new_dentry);
be6d3e56 3217exit6:
9079b1eb 3218 mnt_drop_write(oldnd.path.mnt);
1da177e4
LT
3219exit5:
3220 dput(new_dentry);
3221exit4:
3222 dput(old_dentry);
3223exit3:
3224 unlock_rename(new_dir, old_dir);
3225exit2:
1d957f9b 3226 path_put(&newnd.path);
2ad94ae6 3227 putname(to);
1da177e4 3228exit1:
1d957f9b 3229 path_put(&oldnd.path);
1da177e4 3230 putname(from);
2ad94ae6 3231exit:
1da177e4
LT
3232 return error;
3233}
3234
a26eab24 3235SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
5590ff0d
UD
3236{
3237 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3238}
3239
1da177e4
LT
3240int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3241{
3242 int len;
3243
3244 len = PTR_ERR(link);
3245 if (IS_ERR(link))
3246 goto out;
3247
3248 len = strlen(link);
3249 if (len > (unsigned) buflen)
3250 len = buflen;
3251 if (copy_to_user(buffer, link, len))
3252 len = -EFAULT;
3253out:
3254 return len;
3255}
3256
3257/*
3258 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3259 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3260 * using) it for any given inode is up to filesystem.
3261 */
3262int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3263{
3264 struct nameidata nd;
cc314eef 3265 void *cookie;
694a1764 3266 int res;
cc314eef 3267
1da177e4 3268 nd.depth = 0;
cc314eef 3269 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
694a1764
MS
3270 if (IS_ERR(cookie))
3271 return PTR_ERR(cookie);
3272
3273 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3274 if (dentry->d_inode->i_op->put_link)
3275 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3276 return res;
1da177e4
LT
3277}
3278
3279int vfs_follow_link(struct nameidata *nd, const char *link)
3280{
3281 return __vfs_follow_link(nd, link);
3282}
3283
3284/* get the link contents into pagecache */
3285static char *page_getlink(struct dentry * dentry, struct page **ppage)
3286{
ebd09abb
DG
3287 char *kaddr;
3288 struct page *page;
1da177e4 3289 struct address_space *mapping = dentry->d_inode->i_mapping;
090d2b18 3290 page = read_mapping_page(mapping, 0, NULL);
1da177e4 3291 if (IS_ERR(page))
6fe6900e 3292 return (char*)page;
1da177e4 3293 *ppage = page;
ebd09abb
DG
3294 kaddr = kmap(page);
3295 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3296 return kaddr;
1da177e4
LT
3297}
3298
3299int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3300{
3301 struct page *page = NULL;
3302 char *s = page_getlink(dentry, &page);
3303 int res = vfs_readlink(dentry,buffer,buflen,s);
3304 if (page) {
3305 kunmap(page);
3306 page_cache_release(page);
3307 }
3308 return res;
3309}
3310
cc314eef 3311void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
1da177e4 3312{
cc314eef 3313 struct page *page = NULL;
1da177e4 3314 nd_set_link(nd, page_getlink(dentry, &page));
cc314eef 3315 return page;
1da177e4
LT
3316}
3317
cc314eef 3318void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
1da177e4 3319{
cc314eef
LT
3320 struct page *page = cookie;
3321
3322 if (page) {
1da177e4
LT
3323 kunmap(page);
3324 page_cache_release(page);
1da177e4
LT
3325 }
3326}
3327
54566b2c
NP
3328/*
3329 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3330 */
3331int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
1da177e4
LT
3332{
3333 struct address_space *mapping = inode->i_mapping;
0adb25d2 3334 struct page *page;
afddba49 3335 void *fsdata;
beb497ab 3336 int err;
1da177e4 3337 char *kaddr;
54566b2c
NP
3338 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3339 if (nofs)
3340 flags |= AOP_FLAG_NOFS;
1da177e4 3341
7e53cac4 3342retry:
afddba49 3343 err = pagecache_write_begin(NULL, mapping, 0, len-1,
54566b2c 3344 flags, &page, &fsdata);
1da177e4 3345 if (err)
afddba49
NP
3346 goto fail;
3347
1da177e4
LT
3348 kaddr = kmap_atomic(page, KM_USER0);
3349 memcpy(kaddr, symname, len-1);
3350 kunmap_atomic(kaddr, KM_USER0);
afddba49
NP
3351
3352 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3353 page, fsdata);
1da177e4
LT
3354 if (err < 0)
3355 goto fail;
afddba49
NP
3356 if (err < len-1)
3357 goto retry;
3358
1da177e4
LT
3359 mark_inode_dirty(inode);
3360 return 0;
1da177e4
LT
3361fail:
3362 return err;
3363}
3364
0adb25d2
KK
3365int page_symlink(struct inode *inode, const char *symname, int len)
3366{
3367 return __page_symlink(inode, symname, len,
54566b2c 3368 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
0adb25d2
KK
3369}
3370
92e1d5be 3371const struct inode_operations page_symlink_inode_operations = {
1da177e4
LT
3372 .readlink = generic_readlink,
3373 .follow_link = page_follow_link_light,
3374 .put_link = page_put_link,
3375};
3376
2d8f3038 3377EXPORT_SYMBOL(user_path_at);
cc53ce53 3378EXPORT_SYMBOL(follow_down_one);
1da177e4
LT
3379EXPORT_SYMBOL(follow_down);
3380EXPORT_SYMBOL(follow_up);
3381EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3382EXPORT_SYMBOL(getname);
3383EXPORT_SYMBOL(lock_rename);
1da177e4
LT
3384EXPORT_SYMBOL(lookup_one_len);
3385EXPORT_SYMBOL(page_follow_link_light);
3386EXPORT_SYMBOL(page_put_link);
3387EXPORT_SYMBOL(page_readlink);
0adb25d2 3388EXPORT_SYMBOL(__page_symlink);
1da177e4
LT
3389EXPORT_SYMBOL(page_symlink);
3390EXPORT_SYMBOL(page_symlink_inode_operations);
c9c6cac0 3391EXPORT_SYMBOL(kern_path_parent);
d1811465 3392EXPORT_SYMBOL(kern_path);
16f18200 3393EXPORT_SYMBOL(vfs_path_lookup);
f419a2e3 3394EXPORT_SYMBOL(inode_permission);
8c744fb8 3395EXPORT_SYMBOL(file_permission);
1da177e4
LT
3396EXPORT_SYMBOL(unlock_rename);
3397EXPORT_SYMBOL(vfs_create);
3398EXPORT_SYMBOL(vfs_follow_link);
3399EXPORT_SYMBOL(vfs_link);
3400EXPORT_SYMBOL(vfs_mkdir);
3401EXPORT_SYMBOL(vfs_mknod);
3402EXPORT_SYMBOL(generic_permission);
3403EXPORT_SYMBOL(vfs_readlink);
3404EXPORT_SYMBOL(vfs_rename);
3405EXPORT_SYMBOL(vfs_rmdir);
3406EXPORT_SYMBOL(vfs_symlink);
3407EXPORT_SYMBOL(vfs_unlink);
3408EXPORT_SYMBOL(dentry_unhash);
3409EXPORT_SYMBOL(generic_readlink);