blob: 3bdb29615a9d7e2655601c7151b4496c80b1a74b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Robert Love0eeca282005-07-12 17:06:03 -040024#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/personality.h>
26#include <linux/security.h>
27#include <linux/syscalls.h>
28#include <linux/mount.h>
29#include <linux/audit.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080030#include <linux/capability.h>
Trond Myklebust834f2a42005-10-18 14:20:16 -070031#include <linux/file.h>
Ulrich Drepper5590ff02006-01-18 17:43:53 -080032#include <linux/fcntl.h>
33#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/namei.h>
35#include <asm/uaccess.h>
36
37#define ACC_MODE(x) ("\000\004\002\006"[(x)&O_ACCMODE])
38
39/* [Feb-1997 T. Schoebel-Theuer]
40 * Fundamental changes in the pathname lookup mechanisms (namei)
41 * were necessary because of omirr. The reason is that omirr needs
42 * to know the _real_ pathname, not the user-supplied one, in case
43 * of symlinks (and also when transname replacements occur).
44 *
45 * The new code replaces the old recursive symlink resolution with
46 * an iterative one (in case of non-nested symlink chains). It does
47 * this with calls to <fs>_follow_link().
48 * As a side effect, dir_namei(), _namei() and follow_link() are now
49 * replaced with a single function lookup_dentry() that can handle all
50 * the special cases of the former code.
51 *
52 * With the new dcache, the pathname is stored at each inode, at least as
53 * long as the refcount of the inode is positive. As a side effect, the
54 * size of the dcache depends on the inode cache and thus is dynamic.
55 *
56 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
57 * resolution to correspond with current state of the code.
58 *
59 * Note that the symlink resolution is not *completely* iterative.
60 * There is still a significant amount of tail- and mid- recursion in
61 * the algorithm. Also, note that <fs>_readlink() is not used in
62 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
63 * may return different results than <fs>_follow_link(). Many virtual
64 * filesystems (including /proc) exhibit this behavior.
65 */
66
67/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
68 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
69 * and the name already exists in form of a symlink, try to create the new
70 * name indicated by the symlink. The old code always complained that the
71 * name already exists, due to not following the symlink even if its target
72 * is nonexistent. The new semantics affects also mknod() and link() when
73 * the name is a symlink pointing to a non-existant name.
74 *
75 * I don't know which semantics is the right one, since I have no access
76 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
77 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
78 * "old" one. Personally, I think the new semantics is much more logical.
79 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
80 * file does succeed in both HP-UX and SunOs, but not in Solaris
81 * and in the old Linux semantics.
82 */
83
84/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
85 * semantics. See the comments in "open_namei" and "do_link" below.
86 *
87 * [10-Sep-98 Alan Modra] Another symlink change.
88 */
89
90/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
91 * inside the path - always follow.
92 * in the last component in creation/removal/renaming - never follow.
93 * if LOOKUP_FOLLOW passed - follow.
94 * if the pathname has trailing slashes - follow.
95 * otherwise - don't follow.
96 * (applied in that order).
97 *
98 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
99 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
100 * During the 2.4 we need to fix the userland stuff depending on it -
101 * hopefully we will be able to get rid of that wart in 2.5. So far only
102 * XEmacs seems to be relying on it...
103 */
104/*
105 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800106 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * any extra contention...
108 */
109
110/* In order to reduce some races, while at the same time doing additional
111 * checking and hopefully speeding things up, we copy filenames to the
112 * kernel data space before using them..
113 *
114 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
115 * PATH_MAX includes the nul terminator --RR.
116 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800117static int do_getname(const char __user *filename, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 int retval;
120 unsigned long len = PATH_MAX;
121
122 if (!segment_eq(get_fs(), KERNEL_DS)) {
123 if ((unsigned long) filename >= TASK_SIZE)
124 return -EFAULT;
125 if (TASK_SIZE - (unsigned long) filename < PATH_MAX)
126 len = TASK_SIZE - (unsigned long) filename;
127 }
128
129 retval = strncpy_from_user(page, filename, len);
130 if (retval > 0) {
131 if (retval < len)
132 return 0;
133 return -ENAMETOOLONG;
134 } else if (!retval)
135 retval = -ENOENT;
136 return retval;
137}
138
139char * getname(const char __user * filename)
140{
141 char *tmp, *result;
142
143 result = ERR_PTR(-ENOMEM);
144 tmp = __getname();
145 if (tmp) {
146 int retval = do_getname(filename, tmp);
147
148 result = tmp;
149 if (retval < 0) {
150 __putname(tmp);
151 result = ERR_PTR(retval);
152 }
153 }
154 audit_getname(result);
155 return result;
156}
157
158#ifdef CONFIG_AUDITSYSCALL
159void putname(const char *name)
160{
Al Viro5ac3a9c2006-07-16 06:38:45 -0400161 if (unlikely(!audit_dummy_context()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 audit_putname(name);
163 else
164 __putname(name);
165}
166EXPORT_SYMBOL(putname);
167#endif
168
169
170/**
171 * generic_permission - check for access rights on a Posix-like filesystem
172 * @inode: inode to check access rights for
173 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
174 * @check_acl: optional callback to check for Posix ACLs
175 *
176 * Used to check for read/write/execute permissions on a file.
177 * We use "fsuid" for this, letting us set arbitrary permissions
178 * for filesystem access without changing the "normal" uids which
179 * are used for other things..
180 */
181int generic_permission(struct inode *inode, int mask,
182 int (*check_acl)(struct inode *inode, int mask))
183{
184 umode_t mode = inode->i_mode;
185
186 if (current->fsuid == inode->i_uid)
187 mode >>= 6;
188 else {
189 if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
190 int error = check_acl(inode, mask);
191 if (error == -EACCES)
192 goto check_capabilities;
193 else if (error != -EAGAIN)
194 return error;
195 }
196
197 if (in_group_p(inode->i_gid))
198 mode >>= 3;
199 }
200
201 /*
202 * If the DACs are ok we don't need any capability check.
203 */
204 if (((mode & mask & (MAY_READ|MAY_WRITE|MAY_EXEC)) == mask))
205 return 0;
206
207 check_capabilities:
208 /*
209 * Read/write DACs are always overridable.
210 * Executable DACs are overridable if at least one exec bit is set.
211 */
212 if (!(mask & MAY_EXEC) ||
213 (inode->i_mode & S_IXUGO) || S_ISDIR(inode->i_mode))
214 if (capable(CAP_DAC_OVERRIDE))
215 return 0;
216
217 /*
218 * Searching includes executable on directories, else just read.
219 */
220 if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
221 if (capable(CAP_DAC_READ_SEARCH))
222 return 0;
223
224 return -EACCES;
225}
226
227int permission(struct inode *inode, int mask, struct nameidata *nd)
228{
Trond Myklebusta343bb72006-08-22 20:06:03 -0400229 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 int retval, submask;
231
232 if (mask & MAY_WRITE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 /*
235 * Nobody gets write access to a read-only fs.
236 */
237 if (IS_RDONLY(inode) &&
238 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
239 return -EROFS;
240
241 /*
242 * Nobody gets write access to an immutable file.
243 */
244 if (IS_IMMUTABLE(inode))
245 return -EACCES;
246 }
247
248
Trond Myklebusta343bb72006-08-22 20:06:03 -0400249 /*
250 * MAY_EXEC on regular files requires special handling: We override
Stas Sergeev317a40a2006-12-06 20:35:25 -0800251 * filesystem execute permissions if the mode bits aren't set or
252 * the fs is mounted with the "noexec" flag.
Trond Myklebusta343bb72006-08-22 20:06:03 -0400253 */
Stas Sergeev317a40a2006-12-06 20:35:25 -0800254 if ((mask & MAY_EXEC) && S_ISREG(mode) && (!(mode & S_IXUGO) ||
255 (nd && nd->mnt && (nd->mnt->mnt_flags & MNT_NOEXEC))))
Trond Myklebusta343bb72006-08-22 20:06:03 -0400256 return -EACCES;
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 /* Ordinary permission routines do not understand MAY_APPEND. */
259 submask = mask & ~MAY_APPEND;
260 if (inode->i_op && inode->i_op->permission)
261 retval = inode->i_op->permission(inode, submask, nd);
262 else
263 retval = generic_permission(inode, submask, NULL);
264 if (retval)
265 return retval;
266
267 return security_inode_permission(inode, mask, nd);
268}
269
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800270/**
271 * vfs_permission - check for access rights to a given path
272 * @nd: lookup result that describes the path
273 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
274 *
275 * Used to check for read/write/execute permissions on a path.
276 * We use "fsuid" for this, letting us set arbitrary permissions
277 * for filesystem access without changing the "normal" uids which
278 * are used for other things.
279 */
280int vfs_permission(struct nameidata *nd, int mask)
281{
282 return permission(nd->dentry->d_inode, mask, nd);
283}
284
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800285/**
286 * file_permission - check for additional access rights to a given file
287 * @file: file to check access rights for
288 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
289 *
290 * Used to check for read/write/execute permissions on an already opened
291 * file.
292 *
293 * Note:
294 * Do not use this function in new code. All access checks should
295 * be done using vfs_permission().
296 */
297int file_permission(struct file *file, int mask)
298{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800299 return permission(file->f_path.dentry->d_inode, mask, NULL);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800300}
301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302/*
303 * get_write_access() gets write permission for a file.
304 * put_write_access() releases this write permission.
305 * This is used for regular files.
306 * We cannot support write (and maybe mmap read-write shared) accesses and
307 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
308 * can have the following values:
309 * 0: no writers, no VM_DENYWRITE mappings
310 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
311 * > 0: (i_writecount) users are writing to the file.
312 *
313 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
314 * except for the cases where we don't hold i_writecount yet. Then we need to
315 * use {get,deny}_write_access() - these functions check the sign and refuse
316 * to do the change if sign is wrong. Exclusion between them is provided by
317 * the inode->i_lock spinlock.
318 */
319
320int get_write_access(struct inode * inode)
321{
322 spin_lock(&inode->i_lock);
323 if (atomic_read(&inode->i_writecount) < 0) {
324 spin_unlock(&inode->i_lock);
325 return -ETXTBSY;
326 }
327 atomic_inc(&inode->i_writecount);
328 spin_unlock(&inode->i_lock);
329
330 return 0;
331}
332
333int deny_write_access(struct file * file)
334{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800335 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337 spin_lock(&inode->i_lock);
338 if (atomic_read(&inode->i_writecount) > 0) {
339 spin_unlock(&inode->i_lock);
340 return -ETXTBSY;
341 }
342 atomic_dec(&inode->i_writecount);
343 spin_unlock(&inode->i_lock);
344
345 return 0;
346}
347
348void path_release(struct nameidata *nd)
349{
350 dput(nd->dentry);
351 mntput(nd->mnt);
352}
353
354/*
355 * umount() mustn't call path_release()/mntput() as that would clear
356 * mnt_expiry_mark
357 */
358void path_release_on_umount(struct nameidata *nd)
359{
360 dput(nd->dentry);
Miklos Szeredi751c4042005-07-07 17:57:30 -0700361 mntput_no_expire(nd->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
Trond Myklebust834f2a42005-10-18 14:20:16 -0700364/**
365 * release_open_intent - free up open intent resources
366 * @nd: pointer to nameidata
367 */
368void release_open_intent(struct nameidata *nd)
369{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800370 if (nd->intent.open.file->f_path.dentry == NULL)
Trond Myklebust834f2a42005-10-18 14:20:16 -0700371 put_filp(nd->intent.open.file);
372 else
373 fput(nd->intent.open.file);
374}
375
Ian Kentbcdc5e02006-09-27 01:50:44 -0700376static inline struct dentry *
377do_revalidate(struct dentry *dentry, struct nameidata *nd)
378{
379 int status = dentry->d_op->d_revalidate(dentry, nd);
380 if (unlikely(status <= 0)) {
381 /*
382 * The dentry failed validation.
383 * If d_revalidate returned 0 attempt to invalidate
384 * the dentry otherwise d_revalidate is asking us
385 * to return a fail status.
386 */
387 if (!status) {
388 if (!d_invalidate(dentry)) {
389 dput(dentry);
390 dentry = NULL;
391 }
392 } else {
393 dput(dentry);
394 dentry = ERR_PTR(status);
395 }
396 }
397 return dentry;
398}
399
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400/*
401 * Internal lookup() using the new generic dcache.
402 * SMP-safe
403 */
404static struct dentry * cached_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
405{
406 struct dentry * dentry = __d_lookup(parent, name);
407
408 /* lockess __d_lookup may fail due to concurrent d_move()
409 * in some unrelated directory, so try with d_lookup
410 */
411 if (!dentry)
412 dentry = d_lookup(parent, name);
413
Ian Kentbcdc5e02006-09-27 01:50:44 -0700414 if (dentry && dentry->d_op && dentry->d_op->d_revalidate)
415 dentry = do_revalidate(dentry, nd);
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 return dentry;
418}
419
420/*
421 * Short-cut version of permission(), for calling by
422 * path_walk(), when dcache lock is held. Combines parts
423 * of permission() and generic_permission(), and tests ONLY for
424 * MAY_EXEC permission.
425 *
426 * If appropriate, check DAC only. If not appropriate, or
427 * short-cut DAC fails, then call permission() to do more
428 * complete permission check.
429 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800430static int exec_permission_lite(struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 struct nameidata *nd)
432{
433 umode_t mode = inode->i_mode;
434
435 if (inode->i_op && inode->i_op->permission)
436 return -EAGAIN;
437
438 if (current->fsuid == inode->i_uid)
439 mode >>= 6;
440 else if (in_group_p(inode->i_gid))
441 mode >>= 3;
442
443 if (mode & MAY_EXEC)
444 goto ok;
445
446 if ((inode->i_mode & S_IXUGO) && capable(CAP_DAC_OVERRIDE))
447 goto ok;
448
449 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_OVERRIDE))
450 goto ok;
451
452 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_READ_SEARCH))
453 goto ok;
454
455 return -EACCES;
456ok:
457 return security_inode_permission(inode, MAY_EXEC, nd);
458}
459
460/*
461 * This is called when everything else fails, and we actually have
462 * to go to the low-level filesystem to find out what we should do..
463 *
464 * We get the directory semaphore, and after getting that we also
465 * make sure that nobody added the entry to the dcache in the meantime..
466 * SMP-safe
467 */
468static struct dentry * real_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
469{
470 struct dentry * result;
471 struct inode *dir = parent->d_inode;
472
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800473 mutex_lock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 /*
475 * First re-do the cached lookup just in case it was created
476 * while we waited for the directory semaphore..
477 *
478 * FIXME! This could use version numbering or similar to
479 * avoid unnecessary cache lookups.
480 *
481 * The "dcache_lock" is purely to protect the RCU list walker
482 * from concurrent renames at this point (we mustn't get false
483 * negatives from the RCU list walk here, unlike the optimistic
484 * fast walk).
485 *
486 * so doing d_lookup() (with seqlock), instead of lockfree __d_lookup
487 */
488 result = d_lookup(parent, name);
489 if (!result) {
490 struct dentry * dentry = d_alloc(parent, name);
491 result = ERR_PTR(-ENOMEM);
492 if (dentry) {
493 result = dir->i_op->lookup(dir, dentry, nd);
494 if (result)
495 dput(dentry);
496 else
497 result = dentry;
498 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800499 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 return result;
501 }
502
503 /*
504 * Uhhuh! Nasty case: the cache was re-populated while
505 * we waited on the semaphore. Need to revalidate.
506 */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800507 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 if (result->d_op && result->d_op->d_revalidate) {
Ian Kentbcdc5e02006-09-27 01:50:44 -0700509 result = do_revalidate(result, nd);
510 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 result = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513 return result;
514}
515
516static int __emul_lookup_dentry(const char *, struct nameidata *);
517
518/* SMP-safe */
Arjan van de Venf1662352006-01-14 13:21:31 -0800519static __always_inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520walk_init_root(const char *name, struct nameidata *nd)
521{
Andreas Mohre518ddb2006-09-29 02:01:22 -0700522 struct fs_struct *fs = current->fs;
523
524 read_lock(&fs->lock);
525 if (fs->altroot && !(nd->flags & LOOKUP_NOALT)) {
526 nd->mnt = mntget(fs->altrootmnt);
527 nd->dentry = dget(fs->altroot);
528 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if (__emul_lookup_dentry(name,nd))
530 return 0;
Andreas Mohre518ddb2006-09-29 02:01:22 -0700531 read_lock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 }
Andreas Mohre518ddb2006-09-29 02:01:22 -0700533 nd->mnt = mntget(fs->rootmnt);
534 nd->dentry = dget(fs->root);
535 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return 1;
537}
538
Arjan van de Venf1662352006-01-14 13:21:31 -0800539static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540{
541 int res = 0;
542 char *name;
543 if (IS_ERR(link))
544 goto fail;
545
546 if (*link == '/') {
547 path_release(nd);
548 if (!walk_init_root(link, nd))
549 /* weird __emul_prefix() stuff did it */
550 goto out;
551 }
552 res = link_path_walk(link, nd);
553out:
554 if (nd->depth || res || nd->last_type!=LAST_NORM)
555 return res;
556 /*
557 * If it is an iterative symlinks resolution in open_namei() we
558 * have to copy the last component. And all that crap because of
559 * bloody create() on broken symlinks. Furrfu...
560 */
561 name = __getname();
562 if (unlikely(!name)) {
563 path_release(nd);
564 return -ENOMEM;
565 }
566 strcpy(name, nd->last.name);
567 nd->last.name = name;
568 return 0;
569fail:
570 path_release(nd);
571 return PTR_ERR(link);
572}
573
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700574static inline void dput_path(struct path *path, struct nameidata *nd)
575{
576 dput(path->dentry);
577 if (path->mnt != nd->mnt)
578 mntput(path->mnt);
579}
580
581static inline void path_to_nameidata(struct path *path, struct nameidata *nd)
582{
583 dput(nd->dentry);
584 if (nd->mnt != path->mnt)
585 mntput(nd->mnt);
586 nd->mnt = path->mnt;
587 nd->dentry = path->dentry;
588}
589
Ian Kent051d3812006-03-27 01:14:53 -0800590static __always_inline int __do_follow_link(struct path *path, struct nameidata *nd)
591{
592 int error;
593 void *cookie;
594 struct dentry *dentry = path->dentry;
595
596 touch_atime(path->mnt, dentry);
597 nd_set_link(nd, NULL);
598
599 if (path->mnt != nd->mnt) {
600 path_to_nameidata(path, nd);
601 dget(dentry);
602 }
603 mntget(path->mnt);
604 cookie = dentry->d_inode->i_op->follow_link(dentry, nd);
605 error = PTR_ERR(cookie);
606 if (!IS_ERR(cookie)) {
607 char *s = nd_get_link(nd);
608 error = 0;
609 if (s)
610 error = __vfs_follow_link(nd, s);
611 if (dentry->d_inode->i_op->put_link)
612 dentry->d_inode->i_op->put_link(dentry, nd, cookie);
613 }
614 dput(dentry);
615 mntput(path->mnt);
616
617 return error;
618}
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620/*
621 * This limits recursive symlink follows to 8, while
622 * limiting consecutive symlinks to 40.
623 *
624 * Without that kind of total limit, nasty chains of consecutive
625 * symlinks can cause almost arbitrarily long lookups.
626 */
Al Viro90ebe562005-06-06 13:35:58 -0700627static inline int do_follow_link(struct path *path, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
629 int err = -ELOOP;
630 if (current->link_count >= MAX_NESTED_LINKS)
631 goto loop;
632 if (current->total_link_count >= 40)
633 goto loop;
634 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
635 cond_resched();
Al Viro90ebe562005-06-06 13:35:58 -0700636 err = security_inode_follow_link(path->dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (err)
638 goto loop;
639 current->link_count++;
640 current->total_link_count++;
641 nd->depth++;
Al Virocd4e91d2005-06-06 13:36:03 -0700642 err = __do_follow_link(path, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 current->link_count--;
644 nd->depth--;
645 return err;
646loop:
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700647 dput_path(path, nd);
Al Viro839d9f92005-06-06 13:36:02 -0700648 path_release(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return err;
650}
651
652int follow_up(struct vfsmount **mnt, struct dentry **dentry)
653{
654 struct vfsmount *parent;
655 struct dentry *mountpoint;
656 spin_lock(&vfsmount_lock);
657 parent=(*mnt)->mnt_parent;
658 if (parent == *mnt) {
659 spin_unlock(&vfsmount_lock);
660 return 0;
661 }
662 mntget(parent);
663 mountpoint=dget((*mnt)->mnt_mountpoint);
664 spin_unlock(&vfsmount_lock);
665 dput(*dentry);
666 *dentry = mountpoint;
667 mntput(*mnt);
668 *mnt = parent;
669 return 1;
670}
671
672/* no need for dcache_lock, as serialization is taken care in
673 * namespace.c
674 */
Al Viro463ffb22005-06-06 13:36:05 -0700675static int __follow_mount(struct path *path)
676{
677 int res = 0;
678 while (d_mountpoint(path->dentry)) {
679 struct vfsmount *mounted = lookup_mnt(path->mnt, path->dentry);
680 if (!mounted)
681 break;
682 dput(path->dentry);
683 if (res)
684 mntput(path->mnt);
685 path->mnt = mounted;
686 path->dentry = dget(mounted->mnt_root);
687 res = 1;
688 }
689 return res;
690}
691
Al Viro58c465e2005-06-06 13:36:13 -0700692static void follow_mount(struct vfsmount **mnt, struct dentry **dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 while (d_mountpoint(*dentry)) {
695 struct vfsmount *mounted = lookup_mnt(*mnt, *dentry);
696 if (!mounted)
697 break;
Al Viro58c465e2005-06-06 13:36:13 -0700698 dput(*dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 mntput(*mnt);
700 *mnt = mounted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 *dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
704
705/* no need for dcache_lock, as serialization is taken care in
706 * namespace.c
707 */
Al Viroe13b2102005-06-06 13:36:06 -0700708int follow_down(struct vfsmount **mnt, struct dentry **dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
710 struct vfsmount *mounted;
711
712 mounted = lookup_mnt(*mnt, *dentry);
713 if (mounted) {
Al Viroe13b2102005-06-06 13:36:06 -0700714 dput(*dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 mntput(*mnt);
716 *mnt = mounted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 *dentry = dget(mounted->mnt_root);
718 return 1;
719 }
720 return 0;
721}
722
Arjan van de Venf1662352006-01-14 13:21:31 -0800723static __always_inline void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Andreas Mohre518ddb2006-09-29 02:01:22 -0700725 struct fs_struct *fs = current->fs;
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 while(1) {
728 struct vfsmount *parent;
Al Viro58c465e2005-06-06 13:36:13 -0700729 struct dentry *old = nd->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
Andreas Mohre518ddb2006-09-29 02:01:22 -0700731 read_lock(&fs->lock);
732 if (nd->dentry == fs->root &&
733 nd->mnt == fs->rootmnt) {
734 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 break;
736 }
Andreas Mohre518ddb2006-09-29 02:01:22 -0700737 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 spin_lock(&dcache_lock);
Al Viro58c465e2005-06-06 13:36:13 -0700739 if (nd->dentry != nd->mnt->mnt_root) {
740 nd->dentry = dget(nd->dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 spin_unlock(&dcache_lock);
742 dput(old);
743 break;
744 }
745 spin_unlock(&dcache_lock);
746 spin_lock(&vfsmount_lock);
Al Viro58c465e2005-06-06 13:36:13 -0700747 parent = nd->mnt->mnt_parent;
748 if (parent == nd->mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 spin_unlock(&vfsmount_lock);
750 break;
751 }
752 mntget(parent);
Al Viro58c465e2005-06-06 13:36:13 -0700753 nd->dentry = dget(nd->mnt->mnt_mountpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 spin_unlock(&vfsmount_lock);
755 dput(old);
Al Viro58c465e2005-06-06 13:36:13 -0700756 mntput(nd->mnt);
757 nd->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 }
Al Viro58c465e2005-06-06 13:36:13 -0700759 follow_mount(&nd->mnt, &nd->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760}
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762/*
763 * It's more convoluted than I'd like it to be, but... it's still fairly
764 * small and for now I'd prefer to have fast path as straight as possible.
765 * It _is_ time-critical.
766 */
767static int do_lookup(struct nameidata *nd, struct qstr *name,
768 struct path *path)
769{
770 struct vfsmount *mnt = nd->mnt;
771 struct dentry *dentry = __d_lookup(nd->dentry, name);
772
773 if (!dentry)
774 goto need_lookup;
775 if (dentry->d_op && dentry->d_op->d_revalidate)
776 goto need_revalidate;
777done:
778 path->mnt = mnt;
779 path->dentry = dentry;
Al Viro634ee702005-06-06 13:36:13 -0700780 __follow_mount(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return 0;
782
783need_lookup:
784 dentry = real_lookup(nd->dentry, name, nd);
785 if (IS_ERR(dentry))
786 goto fail;
787 goto done;
788
789need_revalidate:
Ian Kentbcdc5e02006-09-27 01:50:44 -0700790 dentry = do_revalidate(dentry, nd);
791 if (!dentry)
792 goto need_lookup;
793 if (IS_ERR(dentry))
794 goto fail;
795 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
797fail:
798 return PTR_ERR(dentry);
799}
800
801/*
802 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +0100803 * This is the basic name resolution function, turning a pathname into
804 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 *
Prasanna Medaea3834d2005-04-29 16:00:17 +0100806 * Returns 0 and nd will have valid dentry and mnt on success.
807 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 */
809static fastcall int __link_path_walk(const char * name, struct nameidata *nd)
810{
811 struct path next;
812 struct inode *inode;
813 int err;
814 unsigned int lookup_flags = nd->flags;
815
816 while (*name=='/')
817 name++;
818 if (!*name)
819 goto return_reval;
820
821 inode = nd->dentry->d_inode;
822 if (nd->depth)
Trond Myklebustf55eab82006-02-04 23:28:01 -0800823 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 /* At this point we know we have a real path component. */
826 for(;;) {
827 unsigned long hash;
828 struct qstr this;
829 unsigned int c;
830
Trond Myklebustcdce5d62005-10-18 14:20:18 -0700831 nd->flags |= LOOKUP_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 err = exec_permission_lite(inode, nd);
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800833 if (err == -EAGAIN)
834 err = vfs_permission(nd, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (err)
836 break;
837
838 this.name = name;
839 c = *(const unsigned char *)name;
840
841 hash = init_name_hash();
842 do {
843 name++;
844 hash = partial_name_hash(c, hash);
845 c = *(const unsigned char *)name;
846 } while (c && (c != '/'));
847 this.len = name - (const char *) this.name;
848 this.hash = end_name_hash(hash);
849
850 /* remove trailing slashes? */
851 if (!c)
852 goto last_component;
853 while (*++name == '/');
854 if (!*name)
855 goto last_with_slashes;
856
857 /*
858 * "." and ".." are special - ".." especially so because it has
859 * to be able to know about the current root directory and
860 * parent relationships.
861 */
862 if (this.name[0] == '.') switch (this.len) {
863 default:
864 break;
865 case 2:
866 if (this.name[1] != '.')
867 break;
Al Viro58c465e2005-06-06 13:36:13 -0700868 follow_dotdot(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 inode = nd->dentry->d_inode;
870 /* fallthrough */
871 case 1:
872 continue;
873 }
874 /*
875 * See if the low-level filesystem might want
876 * to use its own hash..
877 */
878 if (nd->dentry->d_op && nd->dentry->d_op->d_hash) {
879 err = nd->dentry->d_op->d_hash(nd->dentry, &this);
880 if (err < 0)
881 break;
882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 /* This does the actual lookups.. */
884 err = do_lookup(nd, &this, &next);
885 if (err)
886 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 err = -ENOENT;
889 inode = next.dentry->d_inode;
890 if (!inode)
891 goto out_dput;
892 err = -ENOTDIR;
893 if (!inode->i_op)
894 goto out_dput;
895
896 if (inode->i_op->follow_link) {
Al Viro90ebe562005-06-06 13:35:58 -0700897 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 if (err)
899 goto return_err;
900 err = -ENOENT;
901 inode = nd->dentry->d_inode;
902 if (!inode)
903 break;
904 err = -ENOTDIR;
905 if (!inode->i_op)
906 break;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700907 } else
908 path_to_nameidata(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 err = -ENOTDIR;
910 if (!inode->i_op->lookup)
911 break;
912 continue;
913 /* here ends the main loop */
914
915last_with_slashes:
916 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
917last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -0800918 /* Clear LOOKUP_CONTINUE iff it was previously unset */
919 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (lookup_flags & LOOKUP_PARENT)
921 goto lookup_parent;
922 if (this.name[0] == '.') switch (this.len) {
923 default:
924 break;
925 case 2:
926 if (this.name[1] != '.')
927 break;
Al Viro58c465e2005-06-06 13:36:13 -0700928 follow_dotdot(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 inode = nd->dentry->d_inode;
930 /* fallthrough */
931 case 1:
932 goto return_reval;
933 }
934 if (nd->dentry->d_op && nd->dentry->d_op->d_hash) {
935 err = nd->dentry->d_op->d_hash(nd->dentry, &this);
936 if (err < 0)
937 break;
938 }
939 err = do_lookup(nd, &this, &next);
940 if (err)
941 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 inode = next.dentry->d_inode;
943 if ((lookup_flags & LOOKUP_FOLLOW)
944 && inode && inode->i_op && inode->i_op->follow_link) {
Al Viro90ebe562005-06-06 13:35:58 -0700945 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 if (err)
947 goto return_err;
948 inode = nd->dentry->d_inode;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700949 } else
950 path_to_nameidata(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 err = -ENOENT;
952 if (!inode)
953 break;
954 if (lookup_flags & LOOKUP_DIRECTORY) {
955 err = -ENOTDIR;
956 if (!inode->i_op || !inode->i_op->lookup)
957 break;
958 }
959 goto return_base;
960lookup_parent:
961 nd->last = this;
962 nd->last_type = LAST_NORM;
963 if (this.name[0] != '.')
964 goto return_base;
965 if (this.len == 1)
966 nd->last_type = LAST_DOT;
967 else if (this.len == 2 && this.name[1] == '.')
968 nd->last_type = LAST_DOTDOT;
969 else
970 goto return_base;
971return_reval:
972 /*
973 * We bypassed the ordinary revalidation routines.
974 * We may need to check the cached dentry for staleness.
975 */
976 if (nd->dentry && nd->dentry->d_sb &&
977 (nd->dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) {
978 err = -ESTALE;
979 /* Note: we do not d_invalidate() */
980 if (!nd->dentry->d_op->d_revalidate(nd->dentry, nd))
981 break;
982 }
983return_base:
984 return 0;
985out_dput:
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700986 dput_path(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 break;
988 }
989 path_release(nd);
990return_err:
991 return err;
992}
993
994/*
995 * Wrapper to retry pathname resolution whenever the underlying
996 * file system returns an ESTALE.
997 *
998 * Retry the whole path once, forcing real lookup requests
999 * instead of relying on the dcache.
1000 */
1001int fastcall link_path_walk(const char *name, struct nameidata *nd)
1002{
1003 struct nameidata save = *nd;
1004 int result;
1005
1006 /* make sure the stuff we saved doesn't go away */
1007 dget(save.dentry);
1008 mntget(save.mnt);
1009
1010 result = __link_path_walk(name, nd);
1011 if (result == -ESTALE) {
1012 *nd = save;
1013 dget(nd->dentry);
1014 mntget(nd->mnt);
1015 nd->flags |= LOOKUP_REVAL;
1016 result = __link_path_walk(name, nd);
1017 }
1018
1019 dput(save.dentry);
1020 mntput(save.mnt);
1021
1022 return result;
1023}
1024
1025int fastcall path_walk(const char * name, struct nameidata *nd)
1026{
1027 current->total_link_count = 0;
1028 return link_path_walk(name, nd);
1029}
1030
Prasanna Medaea3834d2005-04-29 16:00:17 +01001031/*
1032 * SMP-safe: Returns 1 and nd will have valid dentry and mnt, if
1033 * everything is done. Returns 0 and drops input nd, if lookup failed;
1034 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035static int __emul_lookup_dentry(const char *name, struct nameidata *nd)
1036{
1037 if (path_walk(name, nd))
1038 return 0; /* something went wrong... */
1039
1040 if (!nd->dentry->d_inode || S_ISDIR(nd->dentry->d_inode->i_mode)) {
1041 struct dentry *old_dentry = nd->dentry;
1042 struct vfsmount *old_mnt = nd->mnt;
1043 struct qstr last = nd->last;
1044 int last_type = nd->last_type;
Andreas Mohre518ddb2006-09-29 02:01:22 -07001045 struct fs_struct *fs = current->fs;
1046
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 /*
Andreas Mohre518ddb2006-09-29 02:01:22 -07001048 * NAME was not found in alternate root or it's a directory.
1049 * Try to find it in the normal root:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 */
1051 nd->last_type = LAST_ROOT;
Andreas Mohre518ddb2006-09-29 02:01:22 -07001052 read_lock(&fs->lock);
1053 nd->mnt = mntget(fs->rootmnt);
1054 nd->dentry = dget(fs->root);
1055 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (path_walk(name, nd) == 0) {
1057 if (nd->dentry->d_inode) {
1058 dput(old_dentry);
1059 mntput(old_mnt);
1060 return 1;
1061 }
1062 path_release(nd);
1063 }
1064 nd->dentry = old_dentry;
1065 nd->mnt = old_mnt;
1066 nd->last = last;
1067 nd->last_type = last_type;
1068 }
1069 return 1;
1070}
1071
1072void set_fs_altroot(void)
1073{
1074 char *emul = __emul_prefix();
1075 struct nameidata nd;
1076 struct vfsmount *mnt = NULL, *oldmnt;
1077 struct dentry *dentry = NULL, *olddentry;
1078 int err;
Andreas Mohre518ddb2006-09-29 02:01:22 -07001079 struct fs_struct *fs = current->fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 if (!emul)
1082 goto set_it;
1083 err = path_lookup(emul, LOOKUP_FOLLOW|LOOKUP_DIRECTORY|LOOKUP_NOALT, &nd);
1084 if (!err) {
1085 mnt = nd.mnt;
1086 dentry = nd.dentry;
1087 }
1088set_it:
Andreas Mohre518ddb2006-09-29 02:01:22 -07001089 write_lock(&fs->lock);
1090 oldmnt = fs->altrootmnt;
1091 olddentry = fs->altroot;
1092 fs->altrootmnt = mnt;
1093 fs->altroot = dentry;
1094 write_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (olddentry) {
1096 dput(olddentry);
1097 mntput(oldmnt);
1098 }
1099}
1100
Prasanna Medaea3834d2005-04-29 16:00:17 +01001101/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001102static int fastcall do_path_lookup(int dfd, const char *name,
1103 unsigned int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001105 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001106 int fput_needed;
1107 struct file *file;
Andreas Mohre518ddb2006-09-29 02:01:22 -07001108 struct fs_struct *fs = current->fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1111 nd->flags = flags;
1112 nd->depth = 0;
1113
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 if (*name=='/') {
Andreas Mohre518ddb2006-09-29 02:01:22 -07001115 read_lock(&fs->lock);
1116 if (fs->altroot && !(nd->flags & LOOKUP_NOALT)) {
1117 nd->mnt = mntget(fs->altrootmnt);
1118 nd->dentry = dget(fs->altroot);
1119 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (__emul_lookup_dentry(name,nd))
Prasanna Medaea3834d2005-04-29 16:00:17 +01001121 goto out; /* found in altroot */
Andreas Mohre518ddb2006-09-29 02:01:22 -07001122 read_lock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 }
Andreas Mohre518ddb2006-09-29 02:01:22 -07001124 nd->mnt = mntget(fs->rootmnt);
1125 nd->dentry = dget(fs->root);
1126 read_unlock(&fs->lock);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001127 } else if (dfd == AT_FDCWD) {
Andreas Mohre518ddb2006-09-29 02:01:22 -07001128 read_lock(&fs->lock);
1129 nd->mnt = mntget(fs->pwdmnt);
1130 nd->dentry = dget(fs->pwd);
1131 read_unlock(&fs->lock);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001132 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001133 struct dentry *dentry;
1134
1135 file = fget_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001136 retval = -EBADF;
1137 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001138 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001139
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001140 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001141
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001142 retval = -ENOTDIR;
1143 if (!S_ISDIR(dentry->d_inode->i_mode))
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001144 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001145
1146 retval = file_permission(file, MAY_EXEC);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001147 if (retval)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001148 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001149
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001150 nd->mnt = mntget(file->f_path.mnt);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001151 nd->dentry = dget(dentry);
1152
1153 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 }
Josef 'Jeff' Sipek2dfdd262007-05-09 02:33:41 -07001155
1156 retval = path_walk(name, nd);
Prasanna Medaea3834d2005-04-29 16:00:17 +01001157out:
Josef 'Jeff' Sipek62ce39c2007-05-09 02:33:41 -07001158 if (unlikely(!retval && !audit_dummy_context() && nd->dentry &&
Suzuki3bc84142006-02-07 12:58:36 -08001159 nd->dentry->d_inode))
Amy Griffis9c937dc2006-06-08 23:19:31 -04001160 audit_inode(name, nd->dentry->d_inode);
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001161out_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001162 return retval;
1163
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001164fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001165 fput_light(file, fput_needed);
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001166 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167}
1168
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001169int fastcall path_lookup(const char *name, unsigned int flags,
1170 struct nameidata *nd)
1171{
1172 return do_path_lookup(AT_FDCWD, name, flags, nd);
1173}
1174
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001175/**
1176 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1177 * @dentry: pointer to dentry of the base directory
1178 * @mnt: pointer to vfs mount of the base directory
1179 * @name: pointer to file name
1180 * @flags: lookup flags
1181 * @nd: pointer to nameidata
1182 */
1183int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1184 const char *name, unsigned int flags,
1185 struct nameidata *nd)
1186{
1187 int retval;
1188
1189 /* same as do_path_lookup */
1190 nd->last_type = LAST_ROOT;
1191 nd->flags = flags;
1192 nd->depth = 0;
1193
1194 nd->mnt = mntget(mnt);
1195 nd->dentry = dget(dentry);
1196
1197 retval = path_walk(name, nd);
1198 if (unlikely(!retval && !audit_dummy_context() && nd->dentry &&
1199 nd->dentry->d_inode))
1200 audit_inode(name, nd->dentry->d_inode);
1201
1202 return retval;
1203
1204}
1205
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001206static int __path_lookup_intent_open(int dfd, const char *name,
1207 unsigned int lookup_flags, struct nameidata *nd,
1208 int open_flags, int create_mode)
Trond Myklebust834f2a42005-10-18 14:20:16 -07001209{
1210 struct file *filp = get_empty_filp();
1211 int err;
1212
1213 if (filp == NULL)
1214 return -ENFILE;
1215 nd->intent.open.file = filp;
1216 nd->intent.open.flags = open_flags;
1217 nd->intent.open.create_mode = create_mode;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001218 err = do_path_lookup(dfd, name, lookup_flags|LOOKUP_OPEN, nd);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001219 if (IS_ERR(nd->intent.open.file)) {
1220 if (err == 0) {
1221 err = PTR_ERR(nd->intent.open.file);
1222 path_release(nd);
1223 }
1224 } else if (err != 0)
1225 release_open_intent(nd);
1226 return err;
1227}
1228
1229/**
1230 * path_lookup_open - lookup a file path with open intent
Martin Waitz7045f372006-02-01 03:06:57 -08001231 * @dfd: the directory to use as base, or AT_FDCWD
Trond Myklebust834f2a42005-10-18 14:20:16 -07001232 * @name: pointer to file name
1233 * @lookup_flags: lookup intent flags
1234 * @nd: pointer to nameidata
1235 * @open_flags: open intent flags
1236 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001237int path_lookup_open(int dfd, const char *name, unsigned int lookup_flags,
Trond Myklebust834f2a42005-10-18 14:20:16 -07001238 struct nameidata *nd, int open_flags)
1239{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001240 return __path_lookup_intent_open(dfd, name, lookup_flags, nd,
Trond Myklebust834f2a42005-10-18 14:20:16 -07001241 open_flags, 0);
1242}
1243
1244/**
1245 * path_lookup_create - lookup a file path with open + create intent
Martin Waitz7045f372006-02-01 03:06:57 -08001246 * @dfd: the directory to use as base, or AT_FDCWD
Trond Myklebust834f2a42005-10-18 14:20:16 -07001247 * @name: pointer to file name
1248 * @lookup_flags: lookup intent flags
1249 * @nd: pointer to nameidata
1250 * @open_flags: open intent flags
1251 * @create_mode: create intent flags
1252 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001253static int path_lookup_create(int dfd, const char *name,
1254 unsigned int lookup_flags, struct nameidata *nd,
1255 int open_flags, int create_mode)
Trond Myklebust834f2a42005-10-18 14:20:16 -07001256{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001257 return __path_lookup_intent_open(dfd, name, lookup_flags|LOOKUP_CREATE,
1258 nd, open_flags, create_mode);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001259}
1260
1261int __user_path_lookup_open(const char __user *name, unsigned int lookup_flags,
1262 struct nameidata *nd, int open_flags)
1263{
1264 char *tmp = getname(name);
1265 int err = PTR_ERR(tmp);
1266
1267 if (!IS_ERR(tmp)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001268 err = __path_lookup_intent_open(AT_FDCWD, tmp, lookup_flags, nd, open_flags, 0);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001269 putname(tmp);
1270 }
1271 return err;
1272}
1273
James Morris057f6c02007-04-26 00:12:05 -07001274static inline struct dentry *__lookup_hash_kern(struct qstr *name, struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275{
James Morris057f6c02007-04-26 00:12:05 -07001276 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 struct inode *inode;
1278 int err;
1279
1280 inode = base->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 /*
1283 * See if the low-level filesystem might want
1284 * to use its own hash..
1285 */
1286 if (base->d_op && base->d_op->d_hash) {
1287 err = base->d_op->d_hash(base, name);
1288 dentry = ERR_PTR(err);
1289 if (err < 0)
1290 goto out;
1291 }
1292
1293 dentry = cached_lookup(base, name, nd);
1294 if (!dentry) {
1295 struct dentry *new = d_alloc(base, name);
1296 dentry = ERR_PTR(-ENOMEM);
1297 if (!new)
1298 goto out;
1299 dentry = inode->i_op->lookup(inode, new, nd);
1300 if (!dentry)
1301 dentry = new;
1302 else
1303 dput(new);
1304 }
1305out:
1306 return dentry;
1307}
1308
James Morris057f6c02007-04-26 00:12:05 -07001309/*
1310 * Restricted form of lookup. Doesn't follow links, single-component only,
1311 * needs parent already locked. Doesn't follow mounts.
1312 * SMP-safe.
1313 */
1314static inline struct dentry * __lookup_hash(struct qstr *name, struct dentry *base, struct nameidata *nd)
1315{
1316 struct dentry *dentry;
1317 struct inode *inode;
1318 int err;
1319
1320 inode = base->d_inode;
1321
1322 err = permission(inode, MAY_EXEC, nd);
1323 dentry = ERR_PTR(err);
1324 if (err)
1325 goto out;
1326
1327 dentry = __lookup_hash_kern(name, base, nd);
1328out:
1329 return dentry;
1330}
1331
Adrian Bunka244e162006-03-31 02:32:11 -08001332static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333{
Christoph Hellwig49705b72005-11-08 21:35:06 -08001334 return __lookup_hash(&nd->last, nd->dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
1337/* SMP-safe */
James Morris057f6c02007-04-26 00:12:05 -07001338static inline int __lookup_one_len(const char *name, struct qstr *this, struct dentry *base, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
1340 unsigned long hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 unsigned int c;
1342
James Morris057f6c02007-04-26 00:12:05 -07001343 this->name = name;
1344 this->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 if (!len)
James Morris057f6c02007-04-26 00:12:05 -07001346 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 hash = init_name_hash();
1349 while (len--) {
1350 c = *(const unsigned char *)name++;
1351 if (c == '/' || c == '\0')
James Morris057f6c02007-04-26 00:12:05 -07001352 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 hash = partial_name_hash(c, hash);
1354 }
James Morris057f6c02007-04-26 00:12:05 -07001355 this->hash = end_name_hash(hash);
1356 return 0;
1357}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
James Morris057f6c02007-04-26 00:12:05 -07001359struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1360{
1361 int err;
1362 struct qstr this;
1363
1364 err = __lookup_one_len(name, &this, base, len);
1365 if (err)
1366 return ERR_PTR(err);
Christoph Hellwig49705b72005-11-08 21:35:06 -08001367 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001368}
1369
1370struct dentry *lookup_one_len_kern(const char *name, struct dentry *base, int len)
1371{
1372 int err;
1373 struct qstr this;
1374
1375 err = __lookup_one_len(name, &this, base, len);
1376 if (err)
1377 return ERR_PTR(err);
1378 return __lookup_hash_kern(&this, base, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379}
1380
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001381int fastcall __user_walk_fd(int dfd, const char __user *name, unsigned flags,
1382 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383{
1384 char *tmp = getname(name);
1385 int err = PTR_ERR(tmp);
1386
1387 if (!IS_ERR(tmp)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001388 err = do_path_lookup(dfd, tmp, flags, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 putname(tmp);
1390 }
1391 return err;
1392}
1393
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001394int fastcall __user_walk(const char __user *name, unsigned flags, struct nameidata *nd)
1395{
1396 return __user_walk_fd(AT_FDCWD, name, flags, nd);
1397}
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399/*
1400 * It's inline, so penalty for filesystems that don't use sticky bit is
1401 * minimal.
1402 */
1403static inline int check_sticky(struct inode *dir, struct inode *inode)
1404{
1405 if (!(dir->i_mode & S_ISVTX))
1406 return 0;
1407 if (inode->i_uid == current->fsuid)
1408 return 0;
1409 if (dir->i_uid == current->fsuid)
1410 return 0;
1411 return !capable(CAP_FOWNER);
1412}
1413
1414/*
1415 * Check whether we can remove a link victim from directory dir, check
1416 * whether the type of victim is right.
1417 * 1. We can't do it if dir is read-only (done in permission())
1418 * 2. We should have write and exec permissions on dir
1419 * 3. We can't remove anything from append-only dir
1420 * 4. We can't do anything with immutable dir (done in permission())
1421 * 5. If the sticky bit on dir is set we should either
1422 * a. be owner of dir, or
1423 * b. be owner of victim, or
1424 * c. have CAP_FOWNER capability
1425 * 6. If the victim is append-only or immutable we can't do antyhing with
1426 * links pointing to it.
1427 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1428 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1429 * 9. We can't remove a root or mountpoint.
1430 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1431 * nfs_async_unlink().
1432 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001433static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
1435 int error;
1436
1437 if (!victim->d_inode)
1438 return -ENOENT;
1439
1440 BUG_ON(victim->d_parent->d_inode != dir);
Amy Griffis73d3ec52006-07-13 13:16:39 -04001441 audit_inode_child(victim->d_name.name, victim->d_inode, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443 error = permission(dir,MAY_WRITE | MAY_EXEC, NULL);
1444 if (error)
1445 return error;
1446 if (IS_APPEND(dir))
1447 return -EPERM;
1448 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
1449 IS_IMMUTABLE(victim->d_inode))
1450 return -EPERM;
1451 if (isdir) {
1452 if (!S_ISDIR(victim->d_inode->i_mode))
1453 return -ENOTDIR;
1454 if (IS_ROOT(victim))
1455 return -EBUSY;
1456 } else if (S_ISDIR(victim->d_inode->i_mode))
1457 return -EISDIR;
1458 if (IS_DEADDIR(dir))
1459 return -ENOENT;
1460 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1461 return -EBUSY;
1462 return 0;
1463}
1464
1465/* Check whether we can create an object with dentry child in directory
1466 * dir.
1467 * 1. We can't do it if child already exists (open has special treatment for
1468 * this case, but since we are inlined it's OK)
1469 * 2. We can't do it if dir is read-only (done in permission())
1470 * 3. We should have write and exec permissions on dir
1471 * 4. We can't do it if dir is immutable (done in permission())
1472 */
1473static inline int may_create(struct inode *dir, struct dentry *child,
1474 struct nameidata *nd)
1475{
1476 if (child->d_inode)
1477 return -EEXIST;
1478 if (IS_DEADDIR(dir))
1479 return -ENOENT;
1480 return permission(dir,MAY_WRITE | MAY_EXEC, nd);
1481}
1482
1483/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 * O_DIRECTORY translates into forcing a directory lookup.
1485 */
1486static inline int lookup_flags(unsigned int f)
1487{
1488 unsigned long retval = LOOKUP_FOLLOW;
1489
1490 if (f & O_NOFOLLOW)
1491 retval &= ~LOOKUP_FOLLOW;
1492
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 if (f & O_DIRECTORY)
1494 retval |= LOOKUP_DIRECTORY;
1495
1496 return retval;
1497}
1498
1499/*
1500 * p1 and p2 should be directories on the same fs.
1501 */
1502struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1503{
1504 struct dentry *p;
1505
1506 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001507 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 return NULL;
1509 }
1510
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001511 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 for (p = p1; p->d_parent != p; p = p->d_parent) {
1514 if (p->d_parent == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001515 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1516 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 return p;
1518 }
1519 }
1520
1521 for (p = p2; p->d_parent != p; p = p->d_parent) {
1522 if (p->d_parent == p1) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001523 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1524 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 return p;
1526 }
1527 }
1528
Ingo Molnarf2eace22006-07-03 00:25:05 -07001529 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1530 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 return NULL;
1532}
1533
1534void unlock_rename(struct dentry *p1, struct dentry *p2)
1535{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001536 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001538 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001539 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 }
1541}
1542
1543int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1544 struct nameidata *nd)
1545{
1546 int error = may_create(dir, dentry, nd);
1547
1548 if (error)
1549 return error;
1550
1551 if (!dir->i_op || !dir->i_op->create)
1552 return -EACCES; /* shouldn't it be ENOSYS? */
1553 mode &= S_IALLUGO;
1554 mode |= S_IFREG;
1555 error = security_inode_create(dir, dentry, mode);
1556 if (error)
1557 return error;
1558 DQUOT_INIT(dir);
1559 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001560 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001561 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 return error;
1563}
1564
1565int may_open(struct nameidata *nd, int acc_mode, int flag)
1566{
1567 struct dentry *dentry = nd->dentry;
1568 struct inode *inode = dentry->d_inode;
1569 int error;
1570
1571 if (!inode)
1572 return -ENOENT;
1573
1574 if (S_ISLNK(inode->i_mode))
1575 return -ELOOP;
1576
1577 if (S_ISDIR(inode->i_mode) && (flag & FMODE_WRITE))
1578 return -EISDIR;
1579
Christoph Hellwige4543ed2005-11-08 21:35:04 -08001580 error = vfs_permission(nd, acc_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if (error)
1582 return error;
1583
1584 /*
1585 * FIFO's, sockets and device files are special: they don't
1586 * actually live on the filesystem itself, and as such you
1587 * can write to them even if the filesystem is read-only.
1588 */
1589 if (S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
1590 flag &= ~O_TRUNC;
1591 } else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) {
1592 if (nd->mnt->mnt_flags & MNT_NODEV)
1593 return -EACCES;
1594
1595 flag &= ~O_TRUNC;
1596 } else if (IS_RDONLY(inode) && (flag & FMODE_WRITE))
1597 return -EROFS;
1598 /*
1599 * An append-only file must be opened in append mode for writing.
1600 */
1601 if (IS_APPEND(inode)) {
1602 if ((flag & FMODE_WRITE) && !(flag & O_APPEND))
1603 return -EPERM;
1604 if (flag & O_TRUNC)
1605 return -EPERM;
1606 }
1607
1608 /* O_NOATIME can only be set by the owner or superuser */
1609 if (flag & O_NOATIME)
Satyam Sharma3bd858a2007-07-17 15:00:08 +05301610 if (!is_owner_or_cap(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 return -EPERM;
1612
1613 /*
1614 * Ensure there are no outstanding leases on the file.
1615 */
1616 error = break_lease(inode, flag);
1617 if (error)
1618 return error;
1619
1620 if (flag & O_TRUNC) {
1621 error = get_write_access(inode);
1622 if (error)
1623 return error;
1624
1625 /*
1626 * Refuse to truncate files with mandatory locks held on them.
1627 */
1628 error = locks_verify_locked(inode);
1629 if (!error) {
1630 DQUOT_INIT(inode);
1631
NeilBrown4a301312006-01-08 01:02:39 -08001632 error = do_truncate(dentry, 0, ATTR_MTIME|ATTR_CTIME, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 }
1634 put_write_access(inode);
1635 if (error)
1636 return error;
1637 } else
1638 if (flag & FMODE_WRITE)
1639 DQUOT_INIT(inode);
1640
1641 return 0;
1642}
1643
Dave Hansenaab520e2006-09-30 23:29:02 -07001644static int open_namei_create(struct nameidata *nd, struct path *path,
1645 int flag, int mode)
1646{
1647 int error;
1648 struct dentry *dir = nd->dentry;
1649
1650 if (!IS_POSIXACL(dir->d_inode))
1651 mode &= ~current->fs->umask;
1652 error = vfs_create(dir->d_inode, path->dentry, mode, nd);
1653 mutex_unlock(&dir->d_inode->i_mutex);
1654 dput(nd->dentry);
1655 nd->dentry = path->dentry;
1656 if (error)
1657 return error;
1658 /* Don't check for write permission, don't truncate */
1659 return may_open(nd, 0, flag & ~O_TRUNC);
1660}
1661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662/*
1663 * open_namei()
1664 *
1665 * namei for open - this is in fact almost the whole open-routine.
1666 *
1667 * Note that the low bits of "flag" aren't the same as in the open
1668 * system call - they are 00 - no permissions needed
1669 * 01 - read permission needed
1670 * 10 - write permission needed
1671 * 11 - read/write permissions needed
1672 * which is a lot more logical, and also allows the "no perm" needed
1673 * for symlinks (where the permissions are checked later).
1674 * SMP-safe
1675 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001676int open_namei(int dfd, const char *pathname, int flag,
1677 int mode, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
Trond Myklebust834f2a42005-10-18 14:20:16 -07001679 int acc_mode, error;
Al Viro4e7506e2005-06-06 13:36:00 -07001680 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 struct dentry *dir;
1682 int count = 0;
1683
1684 acc_mode = ACC_MODE(flag);
1685
Trond Myklebust834f2a42005-10-18 14:20:16 -07001686 /* O_TRUNC implies we need access checks for write permissions */
1687 if (flag & O_TRUNC)
1688 acc_mode |= MAY_WRITE;
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 /* Allow the LSM permission hook to distinguish append
1691 access from general write access. */
1692 if (flag & O_APPEND)
1693 acc_mode |= MAY_APPEND;
1694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 /*
1696 * The simplest case - just a plain lookup.
1697 */
1698 if (!(flag & O_CREAT)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001699 error = path_lookup_open(dfd, pathname, lookup_flags(flag),
1700 nd, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (error)
1702 return error;
1703 goto ok;
1704 }
1705
1706 /*
1707 * Create - we need to know the parent.
1708 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001709 error = path_lookup_create(dfd,pathname,LOOKUP_PARENT,nd,flag,mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 if (error)
1711 return error;
1712
1713 /*
1714 * We have the parent and last component. First of all, check
1715 * that we are not asked to creat(2) an obvious directory - that
1716 * will not do.
1717 */
1718 error = -EISDIR;
1719 if (nd->last_type != LAST_NORM || nd->last.name[nd->last.len])
1720 goto exit;
1721
1722 dir = nd->dentry;
1723 nd->flags &= ~LOOKUP_PARENT;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001724 mutex_lock(&dir->d_inode->i_mutex);
Christoph Hellwig49705b72005-11-08 21:35:06 -08001725 path.dentry = lookup_hash(nd);
Al Virod73ffe12005-06-06 13:36:01 -07001726 path.mnt = nd->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
1728do_last:
Al Viro4e7506e2005-06-06 13:36:00 -07001729 error = PTR_ERR(path.dentry);
1730 if (IS_ERR(path.dentry)) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001731 mutex_unlock(&dir->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 goto exit;
1733 }
1734
Oleg Drokin4af4c522006-03-25 03:06:54 -08001735 if (IS_ERR(nd->intent.open.file)) {
1736 mutex_unlock(&dir->d_inode->i_mutex);
1737 error = PTR_ERR(nd->intent.open.file);
1738 goto exit_dput;
1739 }
1740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 /* Negative dentry, just create the file */
Al Viro4e7506e2005-06-06 13:36:00 -07001742 if (!path.dentry->d_inode) {
Dave Hansenaab520e2006-09-30 23:29:02 -07001743 error = open_namei_create(nd, &path, flag, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 if (error)
1745 goto exit;
Dave Hansenaab520e2006-09-30 23:29:02 -07001746 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 }
1748
1749 /*
1750 * It already exists.
1751 */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001752 mutex_unlock(&dir->d_inode->i_mutex);
Amy Griffis4fc03b92007-02-13 14:15:01 -05001753 audit_inode(pathname, path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754
1755 error = -EEXIST;
1756 if (flag & O_EXCL)
1757 goto exit_dput;
1758
Al Viroe13b2102005-06-06 13:36:06 -07001759 if (__follow_mount(&path)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 error = -ELOOP;
Al Viroba7a4c12005-06-06 13:36:08 -07001761 if (flag & O_NOFOLLOW)
1762 goto exit_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04001764
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 error = -ENOENT;
Al Viro4e7506e2005-06-06 13:36:00 -07001766 if (!path.dentry->d_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 goto exit_dput;
Al Viro4e7506e2005-06-06 13:36:00 -07001768 if (path.dentry->d_inode->i_op && path.dentry->d_inode->i_op->follow_link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 goto do_link;
1770
Miklos Szeredi09dd17d2005-09-06 15:18:21 -07001771 path_to_nameidata(&path, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 error = -EISDIR;
Al Viro4e7506e2005-06-06 13:36:00 -07001773 if (path.dentry->d_inode && S_ISDIR(path.dentry->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 goto exit;
1775ok:
1776 error = may_open(nd, acc_mode, flag);
1777 if (error)
1778 goto exit;
1779 return 0;
1780
1781exit_dput:
Miklos Szeredi09dd17d2005-09-06 15:18:21 -07001782 dput_path(&path, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783exit:
Trond Myklebust834f2a42005-10-18 14:20:16 -07001784 if (!IS_ERR(nd->intent.open.file))
1785 release_open_intent(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 path_release(nd);
1787 return error;
1788
1789do_link:
1790 error = -ELOOP;
1791 if (flag & O_NOFOLLOW)
1792 goto exit_dput;
1793 /*
1794 * This is subtle. Instead of calling do_follow_link() we do the
1795 * thing by hands. The reason is that this way we have zero link_count
1796 * and path_walk() (called from ->follow_link) honoring LOOKUP_PARENT.
1797 * After that we have the parent and last component, i.e.
1798 * we are in the same situation as after the first path_walk().
1799 * Well, almost - if the last component is normal we get its copy
1800 * stored in nd->last.name and we will have to putname() it when we
1801 * are done. Procfs-like symlinks just set LAST_BIND.
1802 */
1803 nd->flags |= LOOKUP_PARENT;
Al Viro4e7506e2005-06-06 13:36:00 -07001804 error = security_inode_follow_link(path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 if (error)
1806 goto exit_dput;
Al Virocd4e91d2005-06-06 13:36:03 -07001807 error = __do_follow_link(&path, nd);
Kirill Korotaevde459212006-07-14 00:23:49 -07001808 if (error) {
1809 /* Does someone understand code flow here? Or it is only
1810 * me so stupid? Anathema to whoever designed this non-sense
1811 * with "intent.open".
1812 */
1813 release_open_intent(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 return error;
Kirill Korotaevde459212006-07-14 00:23:49 -07001815 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 nd->flags &= ~LOOKUP_PARENT;
Al Virod671d5e2005-06-06 13:36:04 -07001817 if (nd->last_type == LAST_BIND)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 goto ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 error = -EISDIR;
1820 if (nd->last_type != LAST_NORM)
1821 goto exit;
1822 if (nd->last.name[nd->last.len]) {
Linus Torvalds82984112005-10-06 21:54:21 -07001823 __putname(nd->last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 goto exit;
1825 }
1826 error = -ELOOP;
1827 if (count++==32) {
Linus Torvalds82984112005-10-06 21:54:21 -07001828 __putname(nd->last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 goto exit;
1830 }
1831 dir = nd->dentry;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001832 mutex_lock(&dir->d_inode->i_mutex);
Christoph Hellwig49705b72005-11-08 21:35:06 -08001833 path.dentry = lookup_hash(nd);
Al Virod671d5e2005-06-06 13:36:04 -07001834 path.mnt = nd->mnt;
Linus Torvalds82984112005-10-06 21:54:21 -07001835 __putname(nd->last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 goto do_last;
1837}
1838
1839/**
1840 * lookup_create - lookup a dentry, creating it if it doesn't exist
1841 * @nd: nameidata info
1842 * @is_dir: directory flag
1843 *
1844 * Simple function to lookup and return a dentry and create it
1845 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001846 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001847 * Returns with nd->dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 */
1849struct dentry *lookup_create(struct nameidata *nd, int is_dir)
1850{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001851 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852
Ingo Molnarf2eace22006-07-03 00:25:05 -07001853 mutex_lock_nested(&nd->dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001854 /*
1855 * Yucky last component or no last component at all?
1856 * (foo/., foo/.., /////)
1857 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 if (nd->last_type != LAST_NORM)
1859 goto fail;
1860 nd->flags &= ~LOOKUP_PARENT;
ASANO Masahiroa6349042006-08-22 20:06:02 -04001861 nd->flags |= LOOKUP_CREATE;
1862 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001863
1864 /*
1865 * Do the final lookup.
1866 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08001867 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 if (IS_ERR(dentry))
1869 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001870
1871 /*
1872 * Special case - lookup gave negative, but... we had foo/bar/
1873 * From the vfs_mknod() POV we just have a negative dentry -
1874 * all is fine. Let's be bastards - you had / on the end, you've
1875 * been asking for (non-existent) directory. -ENOENT for you.
1876 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 if (!is_dir && nd->last.name[nd->last.len] && !dentry->d_inode)
1878 goto enoent;
1879 return dentry;
1880enoent:
1881 dput(dentry);
1882 dentry = ERR_PTR(-ENOENT);
1883fail:
1884 return dentry;
1885}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07001886EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
1888int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1889{
1890 int error = may_create(dir, dentry, NULL);
1891
1892 if (error)
1893 return error;
1894
1895 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1896 return -EPERM;
1897
1898 if (!dir->i_op || !dir->i_op->mknod)
1899 return -EPERM;
1900
1901 error = security_inode_mknod(dir, dentry, mode, dev);
1902 if (error)
1903 return error;
1904
1905 DQUOT_INIT(dir);
1906 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001907 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001908 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 return error;
1910}
1911
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001912asmlinkage long sys_mknodat(int dfd, const char __user *filename, int mode,
1913 unsigned dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914{
1915 int error = 0;
1916 char * tmp;
1917 struct dentry * dentry;
1918 struct nameidata nd;
1919
1920 if (S_ISDIR(mode))
1921 return -EPERM;
1922 tmp = getname(filename);
1923 if (IS_ERR(tmp))
1924 return PTR_ERR(tmp);
1925
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001926 error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 if (error)
1928 goto out;
1929 dentry = lookup_create(&nd, 0);
1930 error = PTR_ERR(dentry);
1931
1932 if (!IS_POSIXACL(nd.dentry->d_inode))
1933 mode &= ~current->fs->umask;
1934 if (!IS_ERR(dentry)) {
1935 switch (mode & S_IFMT) {
1936 case 0: case S_IFREG:
1937 error = vfs_create(nd.dentry->d_inode,dentry,mode,&nd);
1938 break;
1939 case S_IFCHR: case S_IFBLK:
1940 error = vfs_mknod(nd.dentry->d_inode,dentry,mode,
1941 new_decode_dev(dev));
1942 break;
1943 case S_IFIFO: case S_IFSOCK:
1944 error = vfs_mknod(nd.dentry->d_inode,dentry,mode,0);
1945 break;
1946 case S_IFDIR:
1947 error = -EPERM;
1948 break;
1949 default:
1950 error = -EINVAL;
1951 }
1952 dput(dentry);
1953 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001954 mutex_unlock(&nd.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 path_release(&nd);
1956out:
1957 putname(tmp);
1958
1959 return error;
1960}
1961
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001962asmlinkage long sys_mknod(const char __user *filename, int mode, unsigned dev)
1963{
1964 return sys_mknodat(AT_FDCWD, filename, mode, dev);
1965}
1966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1968{
1969 int error = may_create(dir, dentry, NULL);
1970
1971 if (error)
1972 return error;
1973
1974 if (!dir->i_op || !dir->i_op->mkdir)
1975 return -EPERM;
1976
1977 mode &= (S_IRWXUGO|S_ISVTX);
1978 error = security_inode_mkdir(dir, dentry, mode);
1979 if (error)
1980 return error;
1981
1982 DQUOT_INIT(dir);
1983 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001984 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001985 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 return error;
1987}
1988
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001989asmlinkage long sys_mkdirat(int dfd, const char __user *pathname, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990{
1991 int error = 0;
1992 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07001993 struct dentry *dentry;
1994 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996 tmp = getname(pathname);
1997 error = PTR_ERR(tmp);
Dave Hansen6902d922006-09-30 23:29:01 -07001998 if (IS_ERR(tmp))
1999 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000
Dave Hansen6902d922006-09-30 23:29:01 -07002001 error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
2002 if (error)
2003 goto out;
2004 dentry = lookup_create(&nd, 1);
2005 error = PTR_ERR(dentry);
2006 if (IS_ERR(dentry))
2007 goto out_unlock;
2008
2009 if (!IS_POSIXACL(nd.dentry->d_inode))
2010 mode &= ~current->fs->umask;
2011 error = vfs_mkdir(nd.dentry->d_inode, dentry, mode);
2012 dput(dentry);
2013out_unlock:
2014 mutex_unlock(&nd.dentry->d_inode->i_mutex);
2015 path_release(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016out:
Dave Hansen6902d922006-09-30 23:29:01 -07002017 putname(tmp);
2018out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 return error;
2020}
2021
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002022asmlinkage long sys_mkdir(const char __user *pathname, int mode)
2023{
2024 return sys_mkdirat(AT_FDCWD, pathname, mode);
2025}
2026
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027/*
2028 * We try to drop the dentry early: we should have
2029 * a usage count of 2 if we're the only user of this
2030 * dentry, and if that is true (possibly after pruning
2031 * the dcache), then we drop the dentry now.
2032 *
2033 * A low-level filesystem can, if it choses, legally
2034 * do a
2035 *
2036 * if (!d_unhashed(dentry))
2037 * return -EBUSY;
2038 *
2039 * if it cannot handle the case of removing a directory
2040 * that is still in use by something else..
2041 */
2042void dentry_unhash(struct dentry *dentry)
2043{
2044 dget(dentry);
Vasily Averindc168422006-12-06 20:37:07 -08002045 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 spin_lock(&dcache_lock);
2047 spin_lock(&dentry->d_lock);
2048 if (atomic_read(&dentry->d_count) == 2)
2049 __d_drop(dentry);
2050 spin_unlock(&dentry->d_lock);
2051 spin_unlock(&dcache_lock);
2052}
2053
2054int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2055{
2056 int error = may_delete(dir, dentry, 1);
2057
2058 if (error)
2059 return error;
2060
2061 if (!dir->i_op || !dir->i_op->rmdir)
2062 return -EPERM;
2063
2064 DQUOT_INIT(dir);
2065
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002066 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 dentry_unhash(dentry);
2068 if (d_mountpoint(dentry))
2069 error = -EBUSY;
2070 else {
2071 error = security_inode_rmdir(dir, dentry);
2072 if (!error) {
2073 error = dir->i_op->rmdir(dir, dentry);
2074 if (!error)
2075 dentry->d_inode->i_flags |= S_DEAD;
2076 }
2077 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002078 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 d_delete(dentry);
2081 }
2082 dput(dentry);
2083
2084 return error;
2085}
2086
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002087static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088{
2089 int error = 0;
2090 char * name;
2091 struct dentry *dentry;
2092 struct nameidata nd;
2093
2094 name = getname(pathname);
2095 if(IS_ERR(name))
2096 return PTR_ERR(name);
2097
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002098 error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 if (error)
2100 goto exit;
2101
2102 switch(nd.last_type) {
2103 case LAST_DOTDOT:
2104 error = -ENOTEMPTY;
2105 goto exit1;
2106 case LAST_DOT:
2107 error = -EINVAL;
2108 goto exit1;
2109 case LAST_ROOT:
2110 error = -EBUSY;
2111 goto exit1;
2112 }
Ingo Molnarf2eace22006-07-03 00:25:05 -07002113 mutex_lock_nested(&nd.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002114 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002116 if (IS_ERR(dentry))
2117 goto exit2;
2118 error = vfs_rmdir(nd.dentry->d_inode, dentry);
2119 dput(dentry);
2120exit2:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002121 mutex_unlock(&nd.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122exit1:
2123 path_release(&nd);
2124exit:
2125 putname(name);
2126 return error;
2127}
2128
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002129asmlinkage long sys_rmdir(const char __user *pathname)
2130{
2131 return do_rmdir(AT_FDCWD, pathname);
2132}
2133
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134int vfs_unlink(struct inode *dir, struct dentry *dentry)
2135{
2136 int error = may_delete(dir, dentry, 0);
2137
2138 if (error)
2139 return error;
2140
2141 if (!dir->i_op || !dir->i_op->unlink)
2142 return -EPERM;
2143
2144 DQUOT_INIT(dir);
2145
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002146 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 if (d_mountpoint(dentry))
2148 error = -EBUSY;
2149 else {
2150 error = security_inode_unlink(dir, dentry);
2151 if (!error)
2152 error = dir->i_op->unlink(dir, dentry);
2153 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002154 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155
2156 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2157 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
2158 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 }
Robert Love0eeca282005-07-12 17:06:03 -04002160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 return error;
2162}
2163
2164/*
2165 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002166 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 * writeout happening, and we don't want to prevent access to the directory
2168 * while waiting on the I/O.
2169 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002170static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171{
2172 int error = 0;
2173 char * name;
2174 struct dentry *dentry;
2175 struct nameidata nd;
2176 struct inode *inode = NULL;
2177
2178 name = getname(pathname);
2179 if(IS_ERR(name))
2180 return PTR_ERR(name);
2181
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002182 error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 if (error)
2184 goto exit;
2185 error = -EISDIR;
2186 if (nd.last_type != LAST_NORM)
2187 goto exit1;
Ingo Molnarf2eace22006-07-03 00:25:05 -07002188 mutex_lock_nested(&nd.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002189 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 error = PTR_ERR(dentry);
2191 if (!IS_ERR(dentry)) {
2192 /* Why not before? Because we want correct error value */
2193 if (nd.last.name[nd.last.len])
2194 goto slashes;
2195 inode = dentry->d_inode;
2196 if (inode)
2197 atomic_inc(&inode->i_count);
2198 error = vfs_unlink(nd.dentry->d_inode, dentry);
2199 exit2:
2200 dput(dentry);
2201 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002202 mutex_unlock(&nd.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 if (inode)
2204 iput(inode); /* truncate the inode here */
2205exit1:
2206 path_release(&nd);
2207exit:
2208 putname(name);
2209 return error;
2210
2211slashes:
2212 error = !dentry->d_inode ? -ENOENT :
2213 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2214 goto exit2;
2215}
2216
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002217asmlinkage long sys_unlinkat(int dfd, const char __user *pathname, int flag)
2218{
2219 if ((flag & ~AT_REMOVEDIR) != 0)
2220 return -EINVAL;
2221
2222 if (flag & AT_REMOVEDIR)
2223 return do_rmdir(dfd, pathname);
2224
2225 return do_unlinkat(dfd, pathname);
2226}
2227
2228asmlinkage long sys_unlink(const char __user *pathname)
2229{
2230 return do_unlinkat(AT_FDCWD, pathname);
2231}
2232
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname, int mode)
2234{
2235 int error = may_create(dir, dentry, NULL);
2236
2237 if (error)
2238 return error;
2239
2240 if (!dir->i_op || !dir->i_op->symlink)
2241 return -EPERM;
2242
2243 error = security_inode_symlink(dir, dentry, oldname);
2244 if (error)
2245 return error;
2246
2247 DQUOT_INIT(dir);
2248 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002249 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002250 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 return error;
2252}
2253
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002254asmlinkage long sys_symlinkat(const char __user *oldname,
2255 int newdfd, const char __user *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
2257 int error = 0;
2258 char * from;
2259 char * to;
Dave Hansen6902d922006-09-30 23:29:01 -07002260 struct dentry *dentry;
2261 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
2263 from = getname(oldname);
2264 if(IS_ERR(from))
2265 return PTR_ERR(from);
2266 to = getname(newname);
2267 error = PTR_ERR(to);
Dave Hansen6902d922006-09-30 23:29:01 -07002268 if (IS_ERR(to))
2269 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Dave Hansen6902d922006-09-30 23:29:01 -07002271 error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
2272 if (error)
2273 goto out;
2274 dentry = lookup_create(&nd, 0);
2275 error = PTR_ERR(dentry);
2276 if (IS_ERR(dentry))
2277 goto out_unlock;
2278
2279 error = vfs_symlink(nd.dentry->d_inode, dentry, from, S_IALLUGO);
2280 dput(dentry);
2281out_unlock:
2282 mutex_unlock(&nd.dentry->d_inode->i_mutex);
2283 path_release(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284out:
Dave Hansen6902d922006-09-30 23:29:01 -07002285 putname(to);
2286out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 putname(from);
2288 return error;
2289}
2290
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002291asmlinkage long sys_symlink(const char __user *oldname, const char __user *newname)
2292{
2293 return sys_symlinkat(oldname, AT_FDCWD, newname);
2294}
2295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2297{
2298 struct inode *inode = old_dentry->d_inode;
2299 int error;
2300
2301 if (!inode)
2302 return -ENOENT;
2303
2304 error = may_create(dir, new_dentry, NULL);
2305 if (error)
2306 return error;
2307
2308 if (dir->i_sb != inode->i_sb)
2309 return -EXDEV;
2310
2311 /*
2312 * A link to an append-only or immutable file cannot be created.
2313 */
2314 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2315 return -EPERM;
2316 if (!dir->i_op || !dir->i_op->link)
2317 return -EPERM;
2318 if (S_ISDIR(old_dentry->d_inode->i_mode))
2319 return -EPERM;
2320
2321 error = security_inode_link(old_dentry, dir, new_dentry);
2322 if (error)
2323 return error;
2324
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002325 mutex_lock(&old_dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 DQUOT_INIT(dir);
2327 error = dir->i_op->link(old_dentry, dir, new_dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002328 mutex_unlock(&old_dentry->d_inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002329 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002330 fsnotify_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 return error;
2332}
2333
2334/*
2335 * Hardlinks are often used in delicate situations. We avoid
2336 * security-related surprises by not following symlinks on the
2337 * newname. --KAB
2338 *
2339 * We don't follow them on the oldname either to be compatible
2340 * with linux 2.0, and to avoid hard-linking to directories
2341 * and other special files. --ADM
2342 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002343asmlinkage long sys_linkat(int olddfd, const char __user *oldname,
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002344 int newdfd, const char __user *newname,
2345 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346{
2347 struct dentry *new_dentry;
2348 struct nameidata nd, old_nd;
2349 int error;
2350 char * to;
2351
Ulrich Drepper45c9b112006-06-25 05:49:11 -07002352 if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002353 return -EINVAL;
2354
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 to = getname(newname);
2356 if (IS_ERR(to))
2357 return PTR_ERR(to);
2358
Ulrich Drepper45c9b112006-06-25 05:49:11 -07002359 error = __user_walk_fd(olddfd, oldname,
2360 flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
2361 &old_nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 if (error)
2363 goto exit;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002364 error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 if (error)
2366 goto out;
2367 error = -EXDEV;
2368 if (old_nd.mnt != nd.mnt)
2369 goto out_release;
2370 new_dentry = lookup_create(&nd, 0);
2371 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002372 if (IS_ERR(new_dentry))
2373 goto out_unlock;
2374 error = vfs_link(old_nd.dentry, nd.dentry->d_inode, new_dentry);
2375 dput(new_dentry);
2376out_unlock:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002377 mutex_unlock(&nd.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378out_release:
2379 path_release(&nd);
2380out:
2381 path_release(&old_nd);
2382exit:
2383 putname(to);
2384
2385 return error;
2386}
2387
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002388asmlinkage long sys_link(const char __user *oldname, const char __user *newname)
2389{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002390 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002391}
2392
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393/*
2394 * The worst of all namespace operations - renaming directory. "Perverted"
2395 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2396 * Problems:
2397 * a) we can get into loop creation. Check is done in is_subdir().
2398 * b) race potential - two innocent renames can create a loop together.
2399 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002400 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 * story.
2402 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002403 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 * whether the target exists). Solution: try to be smart with locking
2405 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002406 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 * move will be locked. Thus we can rank directories by the tree
2408 * (ancestors first) and rank all non-directories after them.
2409 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002410 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 * HOWEVER, it relies on the assumption that any object with ->lookup()
2412 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2413 * we'd better make sure that there's no link(2) for them.
2414 * d) some filesystems don't support opened-but-unlinked directories,
2415 * either because of layout or because they are not ready to deal with
2416 * all cases correctly. The latter will be fixed (taking this sort of
2417 * stuff into VFS), but the former is not going away. Solution: the same
2418 * trick as in rmdir().
2419 * e) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002420 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002422 * ->i_mutex on parents, which works but leads to some truely excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 * locking].
2424 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07002425static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2426 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427{
2428 int error = 0;
2429 struct inode *target;
2430
2431 /*
2432 * If we are going to change the parent - check write permissions,
2433 * we'll need to flip '..'.
2434 */
2435 if (new_dir != old_dir) {
2436 error = permission(old_dentry->d_inode, MAY_WRITE, NULL);
2437 if (error)
2438 return error;
2439 }
2440
2441 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2442 if (error)
2443 return error;
2444
2445 target = new_dentry->d_inode;
2446 if (target) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002447 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 dentry_unhash(new_dentry);
2449 }
2450 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2451 error = -EBUSY;
2452 else
2453 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2454 if (target) {
2455 if (!error)
2456 target->i_flags |= S_DEAD;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002457 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 if (d_unhashed(new_dentry))
2459 d_rehash(new_dentry);
2460 dput(new_dentry);
2461 }
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002462 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07002463 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2464 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 return error;
2466}
2467
Adrian Bunk75c96f82005-05-05 16:16:09 -07002468static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
2469 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470{
2471 struct inode *target;
2472 int error;
2473
2474 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2475 if (error)
2476 return error;
2477
2478 dget(new_dentry);
2479 target = new_dentry->d_inode;
2480 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002481 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2483 error = -EBUSY;
2484 else
2485 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2486 if (!error) {
Mark Fasheh349457c2006-09-08 14:22:21 -07002487 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 d_move(old_dentry, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 }
2490 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002491 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 dput(new_dentry);
2493 return error;
2494}
2495
2496int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
2497 struct inode *new_dir, struct dentry *new_dentry)
2498{
2499 int error;
2500 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Robert Love0eeca282005-07-12 17:06:03 -04002501 const char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
2503 if (old_dentry->d_inode == new_dentry->d_inode)
2504 return 0;
2505
2506 error = may_delete(old_dir, old_dentry, is_dir);
2507 if (error)
2508 return error;
2509
2510 if (!new_dentry->d_inode)
2511 error = may_create(new_dir, new_dentry, NULL);
2512 else
2513 error = may_delete(new_dir, new_dentry, is_dir);
2514 if (error)
2515 return error;
2516
2517 if (!old_dir->i_op || !old_dir->i_op->rename)
2518 return -EPERM;
2519
2520 DQUOT_INIT(old_dir);
2521 DQUOT_INIT(new_dir);
2522
Robert Love0eeca282005-07-12 17:06:03 -04002523 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
2524
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 if (is_dir)
2526 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
2527 else
2528 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
2529 if (!error) {
Robert Love0eeca282005-07-12 17:06:03 -04002530 const char *new_name = old_dentry->d_name.name;
John McCutchan89204c42005-08-15 12:13:28 -04002531 fsnotify_move(old_dir, new_dir, old_name, new_name, is_dir,
2532 new_dentry->d_inode, old_dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 }
Robert Love0eeca282005-07-12 17:06:03 -04002534 fsnotify_oldname_free(old_name);
2535
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 return error;
2537}
2538
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002539static int do_rename(int olddfd, const char *oldname,
2540 int newdfd, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541{
2542 int error = 0;
2543 struct dentry * old_dir, * new_dir;
2544 struct dentry * old_dentry, *new_dentry;
2545 struct dentry * trap;
2546 struct nameidata oldnd, newnd;
2547
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002548 error = do_path_lookup(olddfd, oldname, LOOKUP_PARENT, &oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 if (error)
2550 goto exit;
2551
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002552 error = do_path_lookup(newdfd, newname, LOOKUP_PARENT, &newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 if (error)
2554 goto exit1;
2555
2556 error = -EXDEV;
2557 if (oldnd.mnt != newnd.mnt)
2558 goto exit2;
2559
2560 old_dir = oldnd.dentry;
2561 error = -EBUSY;
2562 if (oldnd.last_type != LAST_NORM)
2563 goto exit2;
2564
2565 new_dir = newnd.dentry;
2566 if (newnd.last_type != LAST_NORM)
2567 goto exit2;
2568
2569 trap = lock_rename(new_dir, old_dir);
2570
Christoph Hellwig49705b72005-11-08 21:35:06 -08002571 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 error = PTR_ERR(old_dentry);
2573 if (IS_ERR(old_dentry))
2574 goto exit3;
2575 /* source must exist */
2576 error = -ENOENT;
2577 if (!old_dentry->d_inode)
2578 goto exit4;
2579 /* unless the source is a directory trailing slashes give -ENOTDIR */
2580 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
2581 error = -ENOTDIR;
2582 if (oldnd.last.name[oldnd.last.len])
2583 goto exit4;
2584 if (newnd.last.name[newnd.last.len])
2585 goto exit4;
2586 }
2587 /* source should not be ancestor of target */
2588 error = -EINVAL;
2589 if (old_dentry == trap)
2590 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08002591 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 error = PTR_ERR(new_dentry);
2593 if (IS_ERR(new_dentry))
2594 goto exit4;
2595 /* target should not be an ancestor of source */
2596 error = -ENOTEMPTY;
2597 if (new_dentry == trap)
2598 goto exit5;
2599
2600 error = vfs_rename(old_dir->d_inode, old_dentry,
2601 new_dir->d_inode, new_dentry);
2602exit5:
2603 dput(new_dentry);
2604exit4:
2605 dput(old_dentry);
2606exit3:
2607 unlock_rename(new_dir, old_dir);
2608exit2:
2609 path_release(&newnd);
2610exit1:
2611 path_release(&oldnd);
2612exit:
2613 return error;
2614}
2615
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002616asmlinkage long sys_renameat(int olddfd, const char __user *oldname,
2617 int newdfd, const char __user *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618{
2619 int error;
2620 char * from;
2621 char * to;
2622
2623 from = getname(oldname);
2624 if(IS_ERR(from))
2625 return PTR_ERR(from);
2626 to = getname(newname);
2627 error = PTR_ERR(to);
2628 if (!IS_ERR(to)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002629 error = do_rename(olddfd, from, newdfd, to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 putname(to);
2631 }
2632 putname(from);
2633 return error;
2634}
2635
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002636asmlinkage long sys_rename(const char __user *oldname, const char __user *newname)
2637{
2638 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
2639}
2640
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
2642{
2643 int len;
2644
2645 len = PTR_ERR(link);
2646 if (IS_ERR(link))
2647 goto out;
2648
2649 len = strlen(link);
2650 if (len > (unsigned) buflen)
2651 len = buflen;
2652 if (copy_to_user(buffer, link, len))
2653 len = -EFAULT;
2654out:
2655 return len;
2656}
2657
2658/*
2659 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
2660 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
2661 * using) it for any given inode is up to filesystem.
2662 */
2663int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2664{
2665 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002666 void *cookie;
2667
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002669 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
2670 if (!IS_ERR(cookie)) {
2671 int res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 if (dentry->d_inode->i_op->put_link)
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002673 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
2674 cookie = ERR_PTR(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 }
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002676 return PTR_ERR(cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677}
2678
2679int vfs_follow_link(struct nameidata *nd, const char *link)
2680{
2681 return __vfs_follow_link(nd, link);
2682}
2683
2684/* get the link contents into pagecache */
2685static char *page_getlink(struct dentry * dentry, struct page **ppage)
2686{
2687 struct page * page;
2688 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07002689 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07002691 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 *ppage = page;
2693 return kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694}
2695
2696int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2697{
2698 struct page *page = NULL;
2699 char *s = page_getlink(dentry, &page);
2700 int res = vfs_readlink(dentry,buffer,buflen,s);
2701 if (page) {
2702 kunmap(page);
2703 page_cache_release(page);
2704 }
2705 return res;
2706}
2707
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002708void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002710 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002712 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713}
2714
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002715void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002717 struct page *page = cookie;
2718
2719 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 kunmap(page);
2721 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 }
2723}
2724
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002725int __page_symlink(struct inode *inode, const char *symname, int len,
2726 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727{
2728 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002729 struct page *page;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08002730 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 char *kaddr;
2732
NeilBrown7e53cac2006-03-25 03:07:57 -08002733retry:
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08002734 err = -ENOMEM;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002735 page = find_or_create_page(mapping, 0, gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 if (!page)
2737 goto fail;
2738 err = mapping->a_ops->prepare_write(NULL, page, 0, len-1);
NeilBrown7e53cac2006-03-25 03:07:57 -08002739 if (err == AOP_TRUNCATED_PAGE) {
2740 page_cache_release(page);
2741 goto retry;
2742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 if (err)
2744 goto fail_map;
2745 kaddr = kmap_atomic(page, KM_USER0);
2746 memcpy(kaddr, symname, len-1);
2747 kunmap_atomic(kaddr, KM_USER0);
NeilBrown7e53cac2006-03-25 03:07:57 -08002748 err = mapping->a_ops->commit_write(NULL, page, 0, len-1);
2749 if (err == AOP_TRUNCATED_PAGE) {
2750 page_cache_release(page);
2751 goto retry;
2752 }
2753 if (err)
2754 goto fail_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 /*
2756 * Notice that we are _not_ going to block here - end of page is
2757 * unmapped, so this will only try to map the rest of page, see
2758 * that it is unmapped (typically even will not look into inode -
2759 * ->i_size will be enough for everything) and zero it out.
2760 * OTOH it's obviously correct and should make the page up-to-date.
2761 */
2762 if (!PageUptodate(page)) {
2763 err = mapping->a_ops->readpage(NULL, page);
NeilBrown7e53cac2006-03-25 03:07:57 -08002764 if (err != AOP_TRUNCATED_PAGE)
2765 wait_on_page_locked(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 } else {
2767 unlock_page(page);
2768 }
2769 page_cache_release(page);
2770 if (err < 0)
2771 goto fail;
2772 mark_inode_dirty(inode);
2773 return 0;
2774fail_map:
2775 unlock_page(page);
2776 page_cache_release(page);
2777fail:
2778 return err;
2779}
2780
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002781int page_symlink(struct inode *inode, const char *symname, int len)
2782{
2783 return __page_symlink(inode, symname, len,
2784 mapping_gfp_mask(inode->i_mapping));
2785}
2786
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002787const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 .readlink = generic_readlink,
2789 .follow_link = page_follow_link_light,
2790 .put_link = page_put_link,
2791};
2792
2793EXPORT_SYMBOL(__user_walk);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002794EXPORT_SYMBOL(__user_walk_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795EXPORT_SYMBOL(follow_down);
2796EXPORT_SYMBOL(follow_up);
2797EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
2798EXPORT_SYMBOL(getname);
2799EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800EXPORT_SYMBOL(lookup_one_len);
2801EXPORT_SYMBOL(page_follow_link_light);
2802EXPORT_SYMBOL(page_put_link);
2803EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002804EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805EXPORT_SYMBOL(page_symlink);
2806EXPORT_SYMBOL(page_symlink_inode_operations);
2807EXPORT_SYMBOL(path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002808EXPORT_SYMBOL(vfs_path_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809EXPORT_SYMBOL(path_release);
2810EXPORT_SYMBOL(path_walk);
2811EXPORT_SYMBOL(permission);
Christoph Hellwige4543ed2005-11-08 21:35:04 -08002812EXPORT_SYMBOL(vfs_permission);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -08002813EXPORT_SYMBOL(file_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814EXPORT_SYMBOL(unlock_rename);
2815EXPORT_SYMBOL(vfs_create);
2816EXPORT_SYMBOL(vfs_follow_link);
2817EXPORT_SYMBOL(vfs_link);
2818EXPORT_SYMBOL(vfs_mkdir);
2819EXPORT_SYMBOL(vfs_mknod);
2820EXPORT_SYMBOL(generic_permission);
2821EXPORT_SYMBOL(vfs_readlink);
2822EXPORT_SYMBOL(vfs_rename);
2823EXPORT_SYMBOL(vfs_rmdir);
2824EXPORT_SYMBOL(vfs_symlink);
2825EXPORT_SYMBOL(vfs_unlink);
2826EXPORT_SYMBOL(dentry_unhash);
2827EXPORT_SYMBOL(generic_readlink);