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