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