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