blob: 38ceb6e06ebae1ff0709d7b25b333faab2109efb [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>
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070033#include <linux/device_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/uaccess.h>
35
36#define ACC_MODE(x) ("\000\004\002\006"[(x)&O_ACCMODE])
37
38/* [Feb-1997 T. Schoebel-Theuer]
39 * Fundamental changes in the pathname lookup mechanisms (namei)
40 * were necessary because of omirr. The reason is that omirr needs
41 * to know the _real_ pathname, not the user-supplied one, in case
42 * of symlinks (and also when transname replacements occur).
43 *
44 * The new code replaces the old recursive symlink resolution with
45 * an iterative one (in case of non-nested symlink chains). It does
46 * this with calls to <fs>_follow_link().
47 * As a side effect, dir_namei(), _namei() and follow_link() are now
48 * replaced with a single function lookup_dentry() that can handle all
49 * the special cases of the former code.
50 *
51 * With the new dcache, the pathname is stored at each inode, at least as
52 * long as the refcount of the inode is positive. As a side effect, the
53 * size of the dcache depends on the inode cache and thus is dynamic.
54 *
55 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
56 * resolution to correspond with current state of the code.
57 *
58 * Note that the symlink resolution is not *completely* iterative.
59 * There is still a significant amount of tail- and mid- recursion in
60 * the algorithm. Also, note that <fs>_readlink() is not used in
61 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
62 * may return different results than <fs>_follow_link(). Many virtual
63 * filesystems (including /proc) exhibit this behavior.
64 */
65
66/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
67 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
68 * and the name already exists in form of a symlink, try to create the new
69 * name indicated by the symlink. The old code always complained that the
70 * name already exists, due to not following the symlink even if its target
71 * is nonexistent. The new semantics affects also mknod() and link() when
72 * the name is a symlink pointing to a non-existant name.
73 *
74 * I don't know which semantics is the right one, since I have no access
75 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
76 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
77 * "old" one. Personally, I think the new semantics is much more logical.
78 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
79 * file does succeed in both HP-UX and SunOs, but not in Solaris
80 * and in the old Linux semantics.
81 */
82
83/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
84 * semantics. See the comments in "open_namei" and "do_link" below.
85 *
86 * [10-Sep-98 Alan Modra] Another symlink change.
87 */
88
89/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
90 * inside the path - always follow.
91 * in the last component in creation/removal/renaming - never follow.
92 * if LOOKUP_FOLLOW passed - follow.
93 * if the pathname has trailing slashes - follow.
94 * otherwise - don't follow.
95 * (applied in that order).
96 *
97 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
98 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
99 * During the 2.4 we need to fix the userland stuff depending on it -
100 * hopefully we will be able to get rid of that wart in 2.5. So far only
101 * XEmacs seems to be relying on it...
102 */
103/*
104 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800105 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 * any extra contention...
107 */
108
Al Viroa02f76c2008-02-23 15:14:28 +0000109static int __link_path_walk(const char *name, struct nameidata *nd);
Josef 'Jeff' Sipekc4a78082007-07-19 01:48:22 -0700110
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111/* In order to reduce some races, while at the same time doing additional
112 * checking and hopefully speeding things up, we copy filenames to the
113 * kernel data space before using them..
114 *
115 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
116 * PATH_MAX includes the nul terminator --RR.
117 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800118static int do_getname(const char __user *filename, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 int retval;
121 unsigned long len = PATH_MAX;
122
123 if (!segment_eq(get_fs(), KERNEL_DS)) {
124 if ((unsigned long) filename >= TASK_SIZE)
125 return -EFAULT;
126 if (TASK_SIZE - (unsigned long) filename < PATH_MAX)
127 len = TASK_SIZE - (unsigned long) filename;
128 }
129
130 retval = strncpy_from_user(page, filename, len);
131 if (retval > 0) {
132 if (retval < len)
133 return 0;
134 return -ENAMETOOLONG;
135 } else if (!retval)
136 retval = -ENOENT;
137 return retval;
138}
139
140char * getname(const char __user * filename)
141{
142 char *tmp, *result;
143
144 result = ERR_PTR(-ENOMEM);
145 tmp = __getname();
146 if (tmp) {
147 int retval = do_getname(filename, tmp);
148
149 result = tmp;
150 if (retval < 0) {
151 __putname(tmp);
152 result = ERR_PTR(retval);
153 }
154 }
155 audit_getname(result);
156 return result;
157}
158
159#ifdef CONFIG_AUDITSYSCALL
160void putname(const char *name)
161{
Al Viro5ac3a9c2006-07-16 06:38:45 -0400162 if (unlikely(!audit_dummy_context()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 audit_putname(name);
164 else
165 __putname(name);
166}
167EXPORT_SYMBOL(putname);
168#endif
169
170
171/**
172 * generic_permission - check for access rights on a Posix-like filesystem
173 * @inode: inode to check access rights for
174 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
175 * @check_acl: optional callback to check for Posix ACLs
176 *
177 * Used to check for read/write/execute permissions on a file.
178 * We use "fsuid" for this, letting us set arbitrary permissions
179 * for filesystem access without changing the "normal" uids which
180 * are used for other things..
181 */
182int generic_permission(struct inode *inode, int mask,
183 int (*check_acl)(struct inode *inode, int mask))
184{
185 umode_t mode = inode->i_mode;
186
Al Viroe6305c42008-07-15 21:03:57 -0400187 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 if (current->fsuid == inode->i_uid)
190 mode >>= 6;
191 else {
192 if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
193 int error = check_acl(inode, mask);
194 if (error == -EACCES)
195 goto check_capabilities;
196 else if (error != -EAGAIN)
197 return error;
198 }
199
200 if (in_group_p(inode->i_gid))
201 mode >>= 3;
202 }
203
204 /*
205 * If the DACs are ok we don't need any capability check.
206 */
Al Viroe6305c42008-07-15 21:03:57 -0400207 if ((mask & ~mode) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return 0;
209
210 check_capabilities:
211 /*
212 * Read/write DACs are always overridable.
213 * Executable DACs are overridable if at least one exec bit is set.
214 */
215 if (!(mask & MAY_EXEC) ||
216 (inode->i_mode & S_IXUGO) || S_ISDIR(inode->i_mode))
217 if (capable(CAP_DAC_OVERRIDE))
218 return 0;
219
220 /*
221 * Searching includes executable on directories, else just read.
222 */
223 if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
224 if (capable(CAP_DAC_READ_SEARCH))
225 return 0;
226
227 return -EACCES;
228}
229
Al Virof419a2e2008-07-22 00:07:17 -0400230int inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Al Viroe6305c42008-07-15 21:03:57 -0400232 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 if (mask & MAY_WRITE) {
Miklos Szeredi22590e42007-10-16 23:27:08 -0700235 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237 /*
238 * Nobody gets write access to a read-only fs.
239 */
240 if (IS_RDONLY(inode) &&
241 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
242 return -EROFS;
243
244 /*
245 * Nobody gets write access to an immutable file.
246 */
247 if (IS_IMMUTABLE(inode))
248 return -EACCES;
249 }
250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 /* Ordinary permission routines do not understand MAY_APPEND. */
Miklos Szeredi22590e42007-10-16 23:27:08 -0700252 if (inode->i_op && inode->i_op->permission) {
Al Virob77b0642008-07-17 09:37:02 -0400253 retval = inode->i_op->permission(inode, mask);
Miklos Szeredi22590e42007-10-16 23:27:08 -0700254 if (!retval) {
255 /*
256 * Exec permission on a regular file is denied if none
257 * of the execute bits are set.
258 *
259 * This check should be done by the ->permission()
260 * method.
261 */
262 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode) &&
263 !(inode->i_mode & S_IXUGO))
264 return -EACCES;
265 }
266 } else {
Al Viroe6305c42008-07-15 21:03:57 -0400267 retval = generic_permission(inode, mask, NULL);
Miklos Szeredi22590e42007-10-16 23:27:08 -0700268 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if (retval)
270 return retval;
271
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700272 retval = devcgroup_inode_permission(inode, mask);
273 if (retval)
274 return retval;
275
Al Viroe6305c42008-07-15 21:03:57 -0400276 return security_inode_permission(inode,
Al Virob77b0642008-07-17 09:37:02 -0400277 mask & (MAY_READ|MAY_WRITE|MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800280/**
281 * vfs_permission - check for access rights to a given path
282 * @nd: lookup result that describes the path
283 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
284 *
285 * Used to check for read/write/execute permissions on a path.
286 * We use "fsuid" for this, letting us set arbitrary permissions
287 * for filesystem access without changing the "normal" uids which
288 * are used for other things.
289 */
290int vfs_permission(struct nameidata *nd, int mask)
291{
Al Virof419a2e2008-07-22 00:07:17 -0400292 return inode_permission(nd->path.dentry->d_inode, mask);
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800293}
294
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800295/**
296 * file_permission - check for additional access rights to a given file
297 * @file: file to check access rights for
298 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
299 *
300 * Used to check for read/write/execute permissions on an already opened
301 * file.
302 *
303 * Note:
304 * Do not use this function in new code. All access checks should
305 * be done using vfs_permission().
306 */
307int file_permission(struct file *file, int mask)
308{
Al Virof419a2e2008-07-22 00:07:17 -0400309 return inode_permission(file->f_path.dentry->d_inode, mask);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800310}
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312/*
313 * get_write_access() gets write permission for a file.
314 * put_write_access() releases this write permission.
315 * This is used for regular files.
316 * We cannot support write (and maybe mmap read-write shared) accesses and
317 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
318 * can have the following values:
319 * 0: no writers, no VM_DENYWRITE mappings
320 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
321 * > 0: (i_writecount) users are writing to the file.
322 *
323 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
324 * except for the cases where we don't hold i_writecount yet. Then we need to
325 * use {get,deny}_write_access() - these functions check the sign and refuse
326 * to do the change if sign is wrong. Exclusion between them is provided by
327 * the inode->i_lock spinlock.
328 */
329
330int get_write_access(struct inode * inode)
331{
332 spin_lock(&inode->i_lock);
333 if (atomic_read(&inode->i_writecount) < 0) {
334 spin_unlock(&inode->i_lock);
335 return -ETXTBSY;
336 }
337 atomic_inc(&inode->i_writecount);
338 spin_unlock(&inode->i_lock);
339
340 return 0;
341}
342
343int deny_write_access(struct file * file)
344{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800345 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
347 spin_lock(&inode->i_lock);
348 if (atomic_read(&inode->i_writecount) > 0) {
349 spin_unlock(&inode->i_lock);
350 return -ETXTBSY;
351 }
352 atomic_dec(&inode->i_writecount);
353 spin_unlock(&inode->i_lock);
354
355 return 0;
356}
357
Jan Blunck1d957f92008-02-14 19:34:35 -0800358/**
Jan Blunck5dd784d2008-02-14 19:34:38 -0800359 * path_get - get a reference to a path
360 * @path: path to get the reference to
361 *
362 * Given a path increment the reference count to the dentry and the vfsmount.
363 */
364void path_get(struct path *path)
365{
366 mntget(path->mnt);
367 dget(path->dentry);
368}
369EXPORT_SYMBOL(path_get);
370
371/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800372 * path_put - put a reference to a path
373 * @path: path to put the reference to
374 *
375 * Given a path decrement the reference count to the dentry and the vfsmount.
376 */
377void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Jan Blunck1d957f92008-02-14 19:34:35 -0800379 dput(path->dentry);
380 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381}
Jan Blunck1d957f92008-02-14 19:34:35 -0800382EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Trond Myklebust834f2a42005-10-18 14:20:16 -0700384/**
385 * release_open_intent - free up open intent resources
386 * @nd: pointer to nameidata
387 */
388void release_open_intent(struct nameidata *nd)
389{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800390 if (nd->intent.open.file->f_path.dentry == NULL)
Trond Myklebust834f2a42005-10-18 14:20:16 -0700391 put_filp(nd->intent.open.file);
392 else
393 fput(nd->intent.open.file);
394}
395
Ian Kentbcdc5e02006-09-27 01:50:44 -0700396static inline struct dentry *
397do_revalidate(struct dentry *dentry, struct nameidata *nd)
398{
399 int status = dentry->d_op->d_revalidate(dentry, nd);
400 if (unlikely(status <= 0)) {
401 /*
402 * The dentry failed validation.
403 * If d_revalidate returned 0 attempt to invalidate
404 * the dentry otherwise d_revalidate is asking us
405 * to return a fail status.
406 */
407 if (!status) {
408 if (!d_invalidate(dentry)) {
409 dput(dentry);
410 dentry = NULL;
411 }
412 } else {
413 dput(dentry);
414 dentry = ERR_PTR(status);
415 }
416 }
417 return dentry;
418}
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420/*
421 * Internal lookup() using the new generic dcache.
422 * SMP-safe
423 */
424static struct dentry * cached_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
425{
426 struct dentry * dentry = __d_lookup(parent, name);
427
428 /* lockess __d_lookup may fail due to concurrent d_move()
429 * in some unrelated directory, so try with d_lookup
430 */
431 if (!dentry)
432 dentry = d_lookup(parent, name);
433
Ian Kentbcdc5e02006-09-27 01:50:44 -0700434 if (dentry && dentry->d_op && dentry->d_op->d_revalidate)
435 dentry = do_revalidate(dentry, nd);
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 return dentry;
438}
439
440/*
441 * Short-cut version of permission(), for calling by
442 * path_walk(), when dcache lock is held. Combines parts
443 * of permission() and generic_permission(), and tests ONLY for
444 * MAY_EXEC permission.
445 *
446 * If appropriate, check DAC only. If not appropriate, or
447 * short-cut DAC fails, then call permission() to do more
448 * complete permission check.
449 */
Al Viro672b16b2008-07-17 09:45:01 -0400450static int exec_permission_lite(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{
452 umode_t mode = inode->i_mode;
453
454 if (inode->i_op && inode->i_op->permission)
455 return -EAGAIN;
456
457 if (current->fsuid == inode->i_uid)
458 mode >>= 6;
459 else if (in_group_p(inode->i_gid))
460 mode >>= 3;
461
462 if (mode & MAY_EXEC)
463 goto ok;
464
465 if ((inode->i_mode & S_IXUGO) && capable(CAP_DAC_OVERRIDE))
466 goto ok;
467
468 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_OVERRIDE))
469 goto ok;
470
471 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_READ_SEARCH))
472 goto ok;
473
474 return -EACCES;
475ok:
Al Virob77b0642008-07-17 09:37:02 -0400476 return security_inode_permission(inode, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
479/*
480 * This is called when everything else fails, and we actually have
481 * to go to the low-level filesystem to find out what we should do..
482 *
483 * We get the directory semaphore, and after getting that we also
484 * make sure that nobody added the entry to the dcache in the meantime..
485 * SMP-safe
486 */
487static struct dentry * real_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
488{
489 struct dentry * result;
490 struct inode *dir = parent->d_inode;
491
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800492 mutex_lock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 /*
494 * First re-do the cached lookup just in case it was created
495 * while we waited for the directory semaphore..
496 *
497 * FIXME! This could use version numbering or similar to
498 * avoid unnecessary cache lookups.
499 *
500 * The "dcache_lock" is purely to protect the RCU list walker
501 * from concurrent renames at this point (we mustn't get false
502 * negatives from the RCU list walk here, unlike the optimistic
503 * fast walk).
504 *
505 * so doing d_lookup() (with seqlock), instead of lockfree __d_lookup
506 */
507 result = d_lookup(parent, name);
508 if (!result) {
Miklos Szeredid70b67c2008-07-02 21:30:15 +0200509 struct dentry *dentry;
510
511 /* Don't create child dentry for a dead directory. */
512 result = ERR_PTR(-ENOENT);
513 if (IS_DEADDIR(dir))
514 goto out_unlock;
515
516 dentry = d_alloc(parent, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 result = ERR_PTR(-ENOMEM);
518 if (dentry) {
519 result = dir->i_op->lookup(dir, dentry, nd);
520 if (result)
521 dput(dentry);
522 else
523 result = dentry;
524 }
Miklos Szeredid70b67c2008-07-02 21:30:15 +0200525out_unlock:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800526 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return result;
528 }
529
530 /*
531 * Uhhuh! Nasty case: the cache was re-populated while
532 * we waited on the semaphore. Need to revalidate.
533 */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800534 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (result->d_op && result->d_op->d_revalidate) {
Ian Kentbcdc5e02006-09-27 01:50:44 -0700536 result = do_revalidate(result, nd);
537 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 result = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540 return result;
541}
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543/* SMP-safe */
Al Viro7f2da1e2008-05-10 20:44:54 -0400544static __always_inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545walk_init_root(const char *name, struct nameidata *nd)
546{
Andreas Mohre518ddb2006-09-29 02:01:22 -0700547 struct fs_struct *fs = current->fs;
548
549 read_lock(&fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -0800550 nd->path = fs->root;
551 path_get(&fs->root);
Andreas Mohre518ddb2006-09-29 02:01:22 -0700552 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553}
554
Al Viroa02f76c2008-02-23 15:14:28 +0000555/*
556 * Wrapper to retry pathname resolution whenever the underlying
557 * file system returns an ESTALE.
558 *
559 * Retry the whole path once, forcing real lookup requests
560 * instead of relying on the dcache.
561 */
562static __always_inline int link_path_walk(const char *name, struct nameidata *nd)
563{
564 struct path save = nd->path;
565 int result;
566
567 /* make sure the stuff we saved doesn't go away */
Jan Blunckc8e7f442008-06-09 16:40:35 -0700568 path_get(&save);
Al Viroa02f76c2008-02-23 15:14:28 +0000569
570 result = __link_path_walk(name, nd);
571 if (result == -ESTALE) {
572 /* nd->path had been dropped */
573 nd->path = save;
Jan Blunckc8e7f442008-06-09 16:40:35 -0700574 path_get(&nd->path);
Al Viroa02f76c2008-02-23 15:14:28 +0000575 nd->flags |= LOOKUP_REVAL;
576 result = __link_path_walk(name, nd);
577 }
578
579 path_put(&save);
580
581 return result;
582}
583
Arjan van de Venf1662352006-01-14 13:21:31 -0800584static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
586 int res = 0;
587 char *name;
588 if (IS_ERR(link))
589 goto fail;
590
591 if (*link == '/') {
Jan Blunck1d957f92008-02-14 19:34:35 -0800592 path_put(&nd->path);
Al Viro7f2da1e2008-05-10 20:44:54 -0400593 walk_init_root(link, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 }
595 res = link_path_walk(link, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (nd->depth || res || nd->last_type!=LAST_NORM)
597 return res;
598 /*
599 * If it is an iterative symlinks resolution in open_namei() we
600 * have to copy the last component. And all that crap because of
601 * bloody create() on broken symlinks. Furrfu...
602 */
603 name = __getname();
604 if (unlikely(!name)) {
Jan Blunck1d957f92008-02-14 19:34:35 -0800605 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return -ENOMEM;
607 }
608 strcpy(name, nd->last.name);
609 nd->last.name = name;
610 return 0;
611fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800612 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return PTR_ERR(link);
614}
615
Jan Blunck1d957f92008-02-14 19:34:35 -0800616static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700617{
618 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800619 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700620 mntput(path->mnt);
621}
622
623static inline void path_to_nameidata(struct path *path, struct nameidata *nd)
624{
Jan Blunck4ac91372008-02-14 19:34:32 -0800625 dput(nd->path.dentry);
626 if (nd->path.mnt != path->mnt)
627 mntput(nd->path.mnt);
628 nd->path.mnt = path->mnt;
629 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700630}
631
Ian Kent051d3812006-03-27 01:14:53 -0800632static __always_inline int __do_follow_link(struct path *path, struct nameidata *nd)
633{
634 int error;
635 void *cookie;
636 struct dentry *dentry = path->dentry;
637
638 touch_atime(path->mnt, dentry);
639 nd_set_link(nd, NULL);
640
Jan Blunck4ac91372008-02-14 19:34:32 -0800641 if (path->mnt != nd->path.mnt) {
Ian Kent051d3812006-03-27 01:14:53 -0800642 path_to_nameidata(path, nd);
643 dget(dentry);
644 }
645 mntget(path->mnt);
646 cookie = dentry->d_inode->i_op->follow_link(dentry, nd);
647 error = PTR_ERR(cookie);
648 if (!IS_ERR(cookie)) {
649 char *s = nd_get_link(nd);
650 error = 0;
651 if (s)
652 error = __vfs_follow_link(nd, s);
653 if (dentry->d_inode->i_op->put_link)
654 dentry->d_inode->i_op->put_link(dentry, nd, cookie);
655 }
Jan Blunck09da59162008-02-14 19:34:37 -0800656 path_put(path);
Ian Kent051d3812006-03-27 01:14:53 -0800657
658 return error;
659}
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661/*
662 * This limits recursive symlink follows to 8, while
663 * limiting consecutive symlinks to 40.
664 *
665 * Without that kind of total limit, nasty chains of consecutive
666 * symlinks can cause almost arbitrarily long lookups.
667 */
Al Viro90ebe562005-06-06 13:35:58 -0700668static inline int do_follow_link(struct path *path, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
670 int err = -ELOOP;
671 if (current->link_count >= MAX_NESTED_LINKS)
672 goto loop;
673 if (current->total_link_count >= 40)
674 goto loop;
675 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
676 cond_resched();
Al Viro90ebe562005-06-06 13:35:58 -0700677 err = security_inode_follow_link(path->dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (err)
679 goto loop;
680 current->link_count++;
681 current->total_link_count++;
682 nd->depth++;
Al Virocd4e91d2005-06-06 13:36:03 -0700683 err = __do_follow_link(path, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 current->link_count--;
685 nd->depth--;
686 return err;
687loop:
Jan Blunck1d957f92008-02-14 19:34:35 -0800688 path_put_conditional(path, nd);
689 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return err;
691}
692
693int follow_up(struct vfsmount **mnt, struct dentry **dentry)
694{
695 struct vfsmount *parent;
696 struct dentry *mountpoint;
697 spin_lock(&vfsmount_lock);
698 parent=(*mnt)->mnt_parent;
699 if (parent == *mnt) {
700 spin_unlock(&vfsmount_lock);
701 return 0;
702 }
703 mntget(parent);
704 mountpoint=dget((*mnt)->mnt_mountpoint);
705 spin_unlock(&vfsmount_lock);
706 dput(*dentry);
707 *dentry = mountpoint;
708 mntput(*mnt);
709 *mnt = parent;
710 return 1;
711}
712
713/* no need for dcache_lock, as serialization is taken care in
714 * namespace.c
715 */
Al Viro463ffb22005-06-06 13:36:05 -0700716static int __follow_mount(struct path *path)
717{
718 int res = 0;
719 while (d_mountpoint(path->dentry)) {
720 struct vfsmount *mounted = lookup_mnt(path->mnt, path->dentry);
721 if (!mounted)
722 break;
723 dput(path->dentry);
724 if (res)
725 mntput(path->mnt);
726 path->mnt = mounted;
727 path->dentry = dget(mounted->mnt_root);
728 res = 1;
729 }
730 return res;
731}
732
Al Viro58c465e2005-06-06 13:36:13 -0700733static void follow_mount(struct vfsmount **mnt, struct dentry **dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 while (d_mountpoint(*dentry)) {
736 struct vfsmount *mounted = lookup_mnt(*mnt, *dentry);
737 if (!mounted)
738 break;
Al Viro58c465e2005-06-06 13:36:13 -0700739 dput(*dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 mntput(*mnt);
741 *mnt = mounted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 *dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
746/* no need for dcache_lock, as serialization is taken care in
747 * namespace.c
748 */
Al Viroe13b2102005-06-06 13:36:06 -0700749int follow_down(struct vfsmount **mnt, struct dentry **dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
751 struct vfsmount *mounted;
752
753 mounted = lookup_mnt(*mnt, *dentry);
754 if (mounted) {
Al Viroe13b2102005-06-06 13:36:06 -0700755 dput(*dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 mntput(*mnt);
757 *mnt = mounted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 *dentry = dget(mounted->mnt_root);
759 return 1;
760 }
761 return 0;
762}
763
Arjan van de Venf1662352006-01-14 13:21:31 -0800764static __always_inline void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Andreas Mohre518ddb2006-09-29 02:01:22 -0700766 struct fs_struct *fs = current->fs;
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 while(1) {
769 struct vfsmount *parent;
Jan Blunck4ac91372008-02-14 19:34:32 -0800770 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Andreas Mohre518ddb2006-09-29 02:01:22 -0700772 read_lock(&fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -0800773 if (nd->path.dentry == fs->root.dentry &&
774 nd->path.mnt == fs->root.mnt) {
Andreas Mohre518ddb2006-09-29 02:01:22 -0700775 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 break;
777 }
Andreas Mohre518ddb2006-09-29 02:01:22 -0700778 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 spin_lock(&dcache_lock);
Jan Blunck4ac91372008-02-14 19:34:32 -0800780 if (nd->path.dentry != nd->path.mnt->mnt_root) {
781 nd->path.dentry = dget(nd->path.dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 spin_unlock(&dcache_lock);
783 dput(old);
784 break;
785 }
786 spin_unlock(&dcache_lock);
787 spin_lock(&vfsmount_lock);
Jan Blunck4ac91372008-02-14 19:34:32 -0800788 parent = nd->path.mnt->mnt_parent;
789 if (parent == nd->path.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 spin_unlock(&vfsmount_lock);
791 break;
792 }
793 mntget(parent);
Jan Blunck4ac91372008-02-14 19:34:32 -0800794 nd->path.dentry = dget(nd->path.mnt->mnt_mountpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 spin_unlock(&vfsmount_lock);
796 dput(old);
Jan Blunck4ac91372008-02-14 19:34:32 -0800797 mntput(nd->path.mnt);
798 nd->path.mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800800 follow_mount(&nd->path.mnt, &nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801}
802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803/*
804 * It's more convoluted than I'd like it to be, but... it's still fairly
805 * small and for now I'd prefer to have fast path as straight as possible.
806 * It _is_ time-critical.
807 */
808static int do_lookup(struct nameidata *nd, struct qstr *name,
809 struct path *path)
810{
Jan Blunck4ac91372008-02-14 19:34:32 -0800811 struct vfsmount *mnt = nd->path.mnt;
812 struct dentry *dentry = __d_lookup(nd->path.dentry, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 if (!dentry)
815 goto need_lookup;
816 if (dentry->d_op && dentry->d_op->d_revalidate)
817 goto need_revalidate;
818done:
819 path->mnt = mnt;
820 path->dentry = dentry;
Al Viro634ee702005-06-06 13:36:13 -0700821 __follow_mount(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 return 0;
823
824need_lookup:
Jan Blunck4ac91372008-02-14 19:34:32 -0800825 dentry = real_lookup(nd->path.dentry, name, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 if (IS_ERR(dentry))
827 goto fail;
828 goto done;
829
830need_revalidate:
Ian Kentbcdc5e02006-09-27 01:50:44 -0700831 dentry = do_revalidate(dentry, nd);
832 if (!dentry)
833 goto need_lookup;
834 if (IS_ERR(dentry))
835 goto fail;
836 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838fail:
839 return PTR_ERR(dentry);
840}
841
842/*
843 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +0100844 * This is the basic name resolution function, turning a pathname into
845 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 *
Prasanna Medaea3834d2005-04-29 16:00:17 +0100847 * Returns 0 and nd will have valid dentry and mnt on success.
848 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800850static int __link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
852 struct path next;
853 struct inode *inode;
854 int err;
855 unsigned int lookup_flags = nd->flags;
856
857 while (*name=='/')
858 name++;
859 if (!*name)
860 goto return_reval;
861
Jan Blunck4ac91372008-02-14 19:34:32 -0800862 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 if (nd->depth)
Trond Myklebustf55eab82006-02-04 23:28:01 -0800864 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 /* At this point we know we have a real path component. */
867 for(;;) {
868 unsigned long hash;
869 struct qstr this;
870 unsigned int c;
871
Trond Myklebustcdce5d62005-10-18 14:20:18 -0700872 nd->flags |= LOOKUP_CONTINUE;
Al Viro672b16b2008-07-17 09:45:01 -0400873 err = exec_permission_lite(inode);
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800874 if (err == -EAGAIN)
875 err = vfs_permission(nd, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (err)
877 break;
878
879 this.name = name;
880 c = *(const unsigned char *)name;
881
882 hash = init_name_hash();
883 do {
884 name++;
885 hash = partial_name_hash(c, hash);
886 c = *(const unsigned char *)name;
887 } while (c && (c != '/'));
888 this.len = name - (const char *) this.name;
889 this.hash = end_name_hash(hash);
890
891 /* remove trailing slashes? */
892 if (!c)
893 goto last_component;
894 while (*++name == '/');
895 if (!*name)
896 goto last_with_slashes;
897
898 /*
899 * "." and ".." are special - ".." especially so because it has
900 * to be able to know about the current root directory and
901 * parent relationships.
902 */
903 if (this.name[0] == '.') switch (this.len) {
904 default:
905 break;
906 case 2:
907 if (this.name[1] != '.')
908 break;
Al Viro58c465e2005-06-06 13:36:13 -0700909 follow_dotdot(nd);
Jan Blunck4ac91372008-02-14 19:34:32 -0800910 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /* fallthrough */
912 case 1:
913 continue;
914 }
915 /*
916 * See if the low-level filesystem might want
917 * to use its own hash..
918 */
Jan Blunck4ac91372008-02-14 19:34:32 -0800919 if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) {
920 err = nd->path.dentry->d_op->d_hash(nd->path.dentry,
921 &this);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (err < 0)
923 break;
924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 /* This does the actual lookups.. */
926 err = do_lookup(nd, &this, &next);
927 if (err)
928 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 err = -ENOENT;
931 inode = next.dentry->d_inode;
932 if (!inode)
933 goto out_dput;
934 err = -ENOTDIR;
935 if (!inode->i_op)
936 goto out_dput;
937
938 if (inode->i_op->follow_link) {
Al Viro90ebe562005-06-06 13:35:58 -0700939 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (err)
941 goto return_err;
942 err = -ENOENT;
Jan Blunck4ac91372008-02-14 19:34:32 -0800943 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if (!inode)
945 break;
946 err = -ENOTDIR;
947 if (!inode->i_op)
948 break;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700949 } else
950 path_to_nameidata(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 err = -ENOTDIR;
952 if (!inode->i_op->lookup)
953 break;
954 continue;
955 /* here ends the main loop */
956
957last_with_slashes:
958 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
959last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -0800960 /* Clear LOOKUP_CONTINUE iff it was previously unset */
961 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (lookup_flags & LOOKUP_PARENT)
963 goto lookup_parent;
964 if (this.name[0] == '.') switch (this.len) {
965 default:
966 break;
967 case 2:
968 if (this.name[1] != '.')
969 break;
Al Viro58c465e2005-06-06 13:36:13 -0700970 follow_dotdot(nd);
Jan Blunck4ac91372008-02-14 19:34:32 -0800971 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 /* fallthrough */
973 case 1:
974 goto return_reval;
975 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800976 if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) {
977 err = nd->path.dentry->d_op->d_hash(nd->path.dentry,
978 &this);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if (err < 0)
980 break;
981 }
982 err = do_lookup(nd, &this, &next);
983 if (err)
984 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 inode = next.dentry->d_inode;
986 if ((lookup_flags & LOOKUP_FOLLOW)
987 && inode && inode->i_op && inode->i_op->follow_link) {
Al Viro90ebe562005-06-06 13:35:58 -0700988 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 if (err)
990 goto return_err;
Jan Blunck4ac91372008-02-14 19:34:32 -0800991 inode = nd->path.dentry->d_inode;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700992 } else
993 path_to_nameidata(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 err = -ENOENT;
995 if (!inode)
996 break;
997 if (lookup_flags & LOOKUP_DIRECTORY) {
998 err = -ENOTDIR;
999 if (!inode->i_op || !inode->i_op->lookup)
1000 break;
1001 }
1002 goto return_base;
1003lookup_parent:
1004 nd->last = this;
1005 nd->last_type = LAST_NORM;
1006 if (this.name[0] != '.')
1007 goto return_base;
1008 if (this.len == 1)
1009 nd->last_type = LAST_DOT;
1010 else if (this.len == 2 && this.name[1] == '.')
1011 nd->last_type = LAST_DOTDOT;
1012 else
1013 goto return_base;
1014return_reval:
1015 /*
1016 * We bypassed the ordinary revalidation routines.
1017 * We may need to check the cached dentry for staleness.
1018 */
Jan Blunck4ac91372008-02-14 19:34:32 -08001019 if (nd->path.dentry && nd->path.dentry->d_sb &&
1020 (nd->path.dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 err = -ESTALE;
1022 /* Note: we do not d_invalidate() */
Jan Blunck4ac91372008-02-14 19:34:32 -08001023 if (!nd->path.dentry->d_op->d_revalidate(
1024 nd->path.dentry, nd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 break;
1026 }
1027return_base:
1028 return 0;
1029out_dput:
Jan Blunck1d957f92008-02-14 19:34:35 -08001030 path_put_conditional(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 break;
1032 }
Jan Blunck1d957f92008-02-14 19:34:35 -08001033 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034return_err:
1035 return err;
1036}
1037
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001038static int path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039{
1040 current->total_link_count = 0;
1041 return link_path_walk(name, nd);
1042}
1043
Prasanna Medaea3834d2005-04-29 16:00:17 +01001044/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001045static int do_path_lookup(int dfd, const char *name,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001046 unsigned int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001048 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001049 int fput_needed;
1050 struct file *file;
Andreas Mohre518ddb2006-09-29 02:01:22 -07001051 struct fs_struct *fs = current->fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1054 nd->flags = flags;
1055 nd->depth = 0;
1056
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 if (*name=='/') {
Andreas Mohre518ddb2006-09-29 02:01:22 -07001058 read_lock(&fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -08001059 nd->path = fs->root;
1060 path_get(&fs->root);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001061 read_unlock(&fs->lock);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001062 } else if (dfd == AT_FDCWD) {
Andreas Mohre518ddb2006-09-29 02:01:22 -07001063 read_lock(&fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -08001064 nd->path = fs->pwd;
1065 path_get(&fs->pwd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001066 read_unlock(&fs->lock);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001067 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001068 struct dentry *dentry;
1069
1070 file = fget_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001071 retval = -EBADF;
1072 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001073 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001074
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001075 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001076
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001077 retval = -ENOTDIR;
1078 if (!S_ISDIR(dentry->d_inode->i_mode))
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001079 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001080
1081 retval = file_permission(file, MAY_EXEC);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001082 if (retval)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001083 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001084
Jan Blunck5dd784d2008-02-14 19:34:38 -08001085 nd->path = file->f_path;
1086 path_get(&file->f_path);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001087
1088 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 }
Josef 'Jeff' Sipek2dfdd262007-05-09 02:33:41 -07001090
1091 retval = path_walk(name, nd);
Jan Blunck4ac91372008-02-14 19:34:32 -08001092 if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
1093 nd->path.dentry->d_inode))
1094 audit_inode(name, nd->path.dentry);
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001095out_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001096 return retval;
1097
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001098fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001099 fput_light(file, fput_needed);
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001100 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
1102
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001103int path_lookup(const char *name, unsigned int flags,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001104 struct nameidata *nd)
1105{
1106 return do_path_lookup(AT_FDCWD, name, flags, nd);
1107}
1108
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001109/**
1110 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1111 * @dentry: pointer to dentry of the base directory
1112 * @mnt: pointer to vfs mount of the base directory
1113 * @name: pointer to file name
1114 * @flags: lookup flags
1115 * @nd: pointer to nameidata
1116 */
1117int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1118 const char *name, unsigned int flags,
1119 struct nameidata *nd)
1120{
1121 int retval;
1122
1123 /* same as do_path_lookup */
1124 nd->last_type = LAST_ROOT;
1125 nd->flags = flags;
1126 nd->depth = 0;
1127
Jan Blunckc8e7f442008-06-09 16:40:35 -07001128 nd->path.dentry = dentry;
1129 nd->path.mnt = mnt;
1130 path_get(&nd->path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001131
1132 retval = path_walk(name, nd);
Jan Blunck4ac91372008-02-14 19:34:32 -08001133 if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
1134 nd->path.dentry->d_inode))
1135 audit_inode(name, nd->path.dentry);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001136
1137 return retval;
1138
1139}
1140
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001141static int __path_lookup_intent_open(int dfd, const char *name,
1142 unsigned int lookup_flags, struct nameidata *nd,
1143 int open_flags, int create_mode)
Trond Myklebust834f2a42005-10-18 14:20:16 -07001144{
1145 struct file *filp = get_empty_filp();
1146 int err;
1147
1148 if (filp == NULL)
1149 return -ENFILE;
1150 nd->intent.open.file = filp;
1151 nd->intent.open.flags = open_flags;
1152 nd->intent.open.create_mode = create_mode;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001153 err = do_path_lookup(dfd, name, lookup_flags|LOOKUP_OPEN, nd);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001154 if (IS_ERR(nd->intent.open.file)) {
1155 if (err == 0) {
1156 err = PTR_ERR(nd->intent.open.file);
Jan Blunck1d957f92008-02-14 19:34:35 -08001157 path_put(&nd->path);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001158 }
1159 } else if (err != 0)
1160 release_open_intent(nd);
1161 return err;
1162}
1163
1164/**
1165 * path_lookup_open - lookup a file path with open intent
Martin Waitz7045f372006-02-01 03:06:57 -08001166 * @dfd: the directory to use as base, or AT_FDCWD
Trond Myklebust834f2a42005-10-18 14:20:16 -07001167 * @name: pointer to file name
1168 * @lookup_flags: lookup intent flags
1169 * @nd: pointer to nameidata
1170 * @open_flags: open intent flags
1171 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001172int path_lookup_open(int dfd, const char *name, unsigned int lookup_flags,
Trond Myklebust834f2a42005-10-18 14:20:16 -07001173 struct nameidata *nd, int open_flags)
1174{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001175 return __path_lookup_intent_open(dfd, name, lookup_flags, nd,
Trond Myklebust834f2a42005-10-18 14:20:16 -07001176 open_flags, 0);
1177}
1178
1179/**
1180 * path_lookup_create - lookup a file path with open + create intent
Martin Waitz7045f372006-02-01 03:06:57 -08001181 * @dfd: the directory to use as base, or AT_FDCWD
Trond Myklebust834f2a42005-10-18 14:20:16 -07001182 * @name: pointer to file name
1183 * @lookup_flags: lookup intent flags
1184 * @nd: pointer to nameidata
1185 * @open_flags: open intent flags
1186 * @create_mode: create intent flags
1187 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001188static int path_lookup_create(int dfd, const char *name,
1189 unsigned int lookup_flags, struct nameidata *nd,
1190 int open_flags, int create_mode)
Trond Myklebust834f2a42005-10-18 14:20:16 -07001191{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001192 return __path_lookup_intent_open(dfd, name, lookup_flags|LOOKUP_CREATE,
1193 nd, open_flags, create_mode);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001194}
1195
1196int __user_path_lookup_open(const char __user *name, unsigned int lookup_flags,
1197 struct nameidata *nd, int open_flags)
1198{
1199 char *tmp = getname(name);
1200 int err = PTR_ERR(tmp);
1201
1202 if (!IS_ERR(tmp)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001203 err = __path_lookup_intent_open(AT_FDCWD, tmp, lookup_flags, nd, open_flags, 0);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001204 putname(tmp);
1205 }
1206 return err;
1207}
1208
Christoph Hellwigeead1912007-10-16 23:25:38 -07001209static struct dentry *__lookup_hash(struct qstr *name,
1210 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
James Morris057f6c02007-04-26 00:12:05 -07001212 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 struct inode *inode;
1214 int err;
1215
1216 inode = base->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
1218 /*
1219 * See if the low-level filesystem might want
1220 * to use its own hash..
1221 */
1222 if (base->d_op && base->d_op->d_hash) {
1223 err = base->d_op->d_hash(base, name);
1224 dentry = ERR_PTR(err);
1225 if (err < 0)
1226 goto out;
1227 }
1228
1229 dentry = cached_lookup(base, name, nd);
1230 if (!dentry) {
Miklos Szeredid70b67c2008-07-02 21:30:15 +02001231 struct dentry *new;
1232
1233 /* Don't create child dentry for a dead directory. */
1234 dentry = ERR_PTR(-ENOENT);
1235 if (IS_DEADDIR(inode))
1236 goto out;
1237
1238 new = d_alloc(base, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 dentry = ERR_PTR(-ENOMEM);
1240 if (!new)
1241 goto out;
1242 dentry = inode->i_op->lookup(inode, new, nd);
1243 if (!dentry)
1244 dentry = new;
1245 else
1246 dput(new);
1247 }
1248out:
1249 return dentry;
1250}
1251
James Morris057f6c02007-04-26 00:12:05 -07001252/*
1253 * Restricted form of lookup. Doesn't follow links, single-component only,
1254 * needs parent already locked. Doesn't follow mounts.
1255 * SMP-safe.
1256 */
Adrian Bunka244e162006-03-31 02:32:11 -08001257static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
Christoph Hellwigeead1912007-10-16 23:25:38 -07001259 int err;
1260
Al Virof419a2e2008-07-22 00:07:17 -04001261 err = inode_permission(nd->path.dentry->d_inode, MAY_EXEC);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001262 if (err)
1263 return ERR_PTR(err);
Jan Blunck4ac91372008-02-14 19:34:32 -08001264 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265}
1266
Christoph Hellwigeead1912007-10-16 23:25:38 -07001267static int __lookup_one_len(const char *name, struct qstr *this,
1268 struct dentry *base, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
1270 unsigned long hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 unsigned int c;
1272
James Morris057f6c02007-04-26 00:12:05 -07001273 this->name = name;
1274 this->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 if (!len)
James Morris057f6c02007-04-26 00:12:05 -07001276 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277
1278 hash = init_name_hash();
1279 while (len--) {
1280 c = *(const unsigned char *)name++;
1281 if (c == '/' || c == '\0')
James Morris057f6c02007-04-26 00:12:05 -07001282 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 hash = partial_name_hash(c, hash);
1284 }
James Morris057f6c02007-04-26 00:12:05 -07001285 this->hash = end_name_hash(hash);
1286 return 0;
1287}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Christoph Hellwigeead1912007-10-16 23:25:38 -07001289/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001290 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001291 * @name: pathname component to lookup
1292 * @base: base directory to lookup from
1293 * @len: maximum length @len should be interpreted to
1294 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001295 * Note that this routine is purely a helper for filesystem usage and should
1296 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001297 * nameidata argument is passed to the filesystem methods and a filesystem
1298 * using this helper needs to be prepared for that.
1299 */
James Morris057f6c02007-04-26 00:12:05 -07001300struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1301{
1302 int err;
1303 struct qstr this;
1304
1305 err = __lookup_one_len(name, &this, base, len);
1306 if (err)
1307 return ERR_PTR(err);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001308
Al Virof419a2e2008-07-22 00:07:17 -04001309 err = inode_permission(base->d_inode, MAY_EXEC);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001310 if (err)
1311 return ERR_PTR(err);
Christoph Hellwig49705b72005-11-08 21:35:06 -08001312 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001313}
1314
Christoph Hellwigeead1912007-10-16 23:25:38 -07001315/**
1316 * lookup_one_noperm - bad hack for sysfs
1317 * @name: pathname component to lookup
1318 * @base: base directory to lookup from
1319 *
1320 * This is a variant of lookup_one_len that doesn't perform any permission
1321 * checks. It's a horrible hack to work around the braindead sysfs
1322 * architecture and should not be used anywhere else.
1323 *
1324 * DON'T USE THIS FUNCTION EVER, thanks.
1325 */
1326struct dentry *lookup_one_noperm(const char *name, struct dentry *base)
James Morris057f6c02007-04-26 00:12:05 -07001327{
1328 int err;
1329 struct qstr this;
1330
Christoph Hellwigeead1912007-10-16 23:25:38 -07001331 err = __lookup_one_len(name, &this, base, strlen(name));
James Morris057f6c02007-04-26 00:12:05 -07001332 if (err)
1333 return ERR_PTR(err);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001334 return __lookup_hash(&this, base, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335}
1336
Al Viro2d8f3032008-07-22 09:59:21 -04001337int user_path_at(int dfd, const char __user *name, unsigned flags,
1338 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339{
Al Viro2d8f3032008-07-22 09:59:21 -04001340 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 char *tmp = getname(name);
1342 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001344
1345 BUG_ON(flags & LOOKUP_PARENT);
1346
1347 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001349 if (!err)
1350 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
1352 return err;
1353}
1354
Al Viro2ad94ae2008-07-21 09:32:51 -04001355static int user_path_parent(int dfd, const char __user *path,
1356 struct nameidata *nd, char **name)
1357{
1358 char *s = getname(path);
1359 int error;
1360
1361 if (IS_ERR(s))
1362 return PTR_ERR(s);
1363
1364 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1365 if (error)
1366 putname(s);
1367 else
1368 *name = s;
1369
1370 return error;
1371}
1372
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373/*
1374 * It's inline, so penalty for filesystems that don't use sticky bit is
1375 * minimal.
1376 */
1377static inline int check_sticky(struct inode *dir, struct inode *inode)
1378{
1379 if (!(dir->i_mode & S_ISVTX))
1380 return 0;
1381 if (inode->i_uid == current->fsuid)
1382 return 0;
1383 if (dir->i_uid == current->fsuid)
1384 return 0;
1385 return !capable(CAP_FOWNER);
1386}
1387
1388/*
1389 * Check whether we can remove a link victim from directory dir, check
1390 * whether the type of victim is right.
1391 * 1. We can't do it if dir is read-only (done in permission())
1392 * 2. We should have write and exec permissions on dir
1393 * 3. We can't remove anything from append-only dir
1394 * 4. We can't do anything with immutable dir (done in permission())
1395 * 5. If the sticky bit on dir is set we should either
1396 * a. be owner of dir, or
1397 * b. be owner of victim, or
1398 * c. have CAP_FOWNER capability
1399 * 6. If the victim is append-only or immutable we can't do antyhing with
1400 * links pointing to it.
1401 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1402 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1403 * 9. We can't remove a root or mountpoint.
1404 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1405 * nfs_async_unlink().
1406 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001407static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408{
1409 int error;
1410
1411 if (!victim->d_inode)
1412 return -ENOENT;
1413
1414 BUG_ON(victim->d_parent->d_inode != dir);
Al Viro5a190ae2007-06-07 12:19:32 -04001415 audit_inode_child(victim->d_name.name, victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Al Virof419a2e2008-07-22 00:07:17 -04001417 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 if (error)
1419 return error;
1420 if (IS_APPEND(dir))
1421 return -EPERM;
1422 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
1423 IS_IMMUTABLE(victim->d_inode))
1424 return -EPERM;
1425 if (isdir) {
1426 if (!S_ISDIR(victim->d_inode->i_mode))
1427 return -ENOTDIR;
1428 if (IS_ROOT(victim))
1429 return -EBUSY;
1430 } else if (S_ISDIR(victim->d_inode->i_mode))
1431 return -EISDIR;
1432 if (IS_DEADDIR(dir))
1433 return -ENOENT;
1434 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1435 return -EBUSY;
1436 return 0;
1437}
1438
1439/* Check whether we can create an object with dentry child in directory
1440 * dir.
1441 * 1. We can't do it if child already exists (open has special treatment for
1442 * this case, but since we are inlined it's OK)
1443 * 2. We can't do it if dir is read-only (done in permission())
1444 * 3. We should have write and exec permissions on dir
1445 * 4. We can't do it if dir is immutable (done in permission())
1446 */
1447static inline int may_create(struct inode *dir, struct dentry *child,
1448 struct nameidata *nd)
1449{
1450 if (child->d_inode)
1451 return -EEXIST;
1452 if (IS_DEADDIR(dir))
1453 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001454 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455}
1456
1457/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 * O_DIRECTORY translates into forcing a directory lookup.
1459 */
1460static inline int lookup_flags(unsigned int f)
1461{
1462 unsigned long retval = LOOKUP_FOLLOW;
1463
1464 if (f & O_NOFOLLOW)
1465 retval &= ~LOOKUP_FOLLOW;
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 if (f & O_DIRECTORY)
1468 retval |= LOOKUP_DIRECTORY;
1469
1470 return retval;
1471}
1472
1473/*
1474 * p1 and p2 should be directories on the same fs.
1475 */
1476struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1477{
1478 struct dentry *p;
1479
1480 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001481 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 return NULL;
1483 }
1484
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001485 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486
1487 for (p = p1; p->d_parent != p; p = p->d_parent) {
1488 if (p->d_parent == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001489 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1490 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 return p;
1492 }
1493 }
1494
1495 for (p = p2; p->d_parent != p; p = p->d_parent) {
1496 if (p->d_parent == p1) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001497 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1498 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 return p;
1500 }
1501 }
1502
Ingo Molnarf2eace22006-07-03 00:25:05 -07001503 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1504 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 return NULL;
1506}
1507
1508void unlock_rename(struct dentry *p1, struct dentry *p2)
1509{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001510 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001512 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001513 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 }
1515}
1516
1517int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1518 struct nameidata *nd)
1519{
1520 int error = may_create(dir, dentry, nd);
1521
1522 if (error)
1523 return error;
1524
1525 if (!dir->i_op || !dir->i_op->create)
1526 return -EACCES; /* shouldn't it be ENOSYS? */
1527 mode &= S_IALLUGO;
1528 mode |= S_IFREG;
1529 error = security_inode_create(dir, dentry, mode);
1530 if (error)
1531 return error;
1532 DQUOT_INIT(dir);
1533 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001534 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001535 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 return error;
1537}
1538
1539int may_open(struct nameidata *nd, int acc_mode, int flag)
1540{
Jan Blunck4ac91372008-02-14 19:34:32 -08001541 struct dentry *dentry = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 struct inode *inode = dentry->d_inode;
1543 int error;
1544
1545 if (!inode)
1546 return -ENOENT;
1547
1548 if (S_ISLNK(inode->i_mode))
1549 return -ELOOP;
1550
Linus Torvalds974a9f02008-01-12 14:06:34 -08001551 if (S_ISDIR(inode->i_mode) && (acc_mode & MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 return -EISDIR;
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 /*
1555 * FIFO's, sockets and device files are special: they don't
1556 * actually live on the filesystem itself, and as such you
1557 * can write to them even if the filesystem is read-only.
1558 */
1559 if (S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
1560 flag &= ~O_TRUNC;
1561 } else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001562 if (nd->path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 return -EACCES;
1564
1565 flag &= ~O_TRUNC;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001566 }
Dave Hansenb41572e2007-10-16 23:31:14 -07001567
1568 error = vfs_permission(nd, acc_mode);
1569 if (error)
1570 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 /*
1572 * An append-only file must be opened in append mode for writing.
1573 */
1574 if (IS_APPEND(inode)) {
1575 if ((flag & FMODE_WRITE) && !(flag & O_APPEND))
1576 return -EPERM;
1577 if (flag & O_TRUNC)
1578 return -EPERM;
1579 }
1580
1581 /* O_NOATIME can only be set by the owner or superuser */
1582 if (flag & O_NOATIME)
Satyam Sharma3bd858a2007-07-17 15:00:08 +05301583 if (!is_owner_or_cap(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 return -EPERM;
1585
1586 /*
1587 * Ensure there are no outstanding leases on the file.
1588 */
1589 error = break_lease(inode, flag);
1590 if (error)
1591 return error;
1592
1593 if (flag & O_TRUNC) {
1594 error = get_write_access(inode);
1595 if (error)
1596 return error;
1597
1598 /*
1599 * Refuse to truncate files with mandatory locks held on them.
1600 */
1601 error = locks_verify_locked(inode);
1602 if (!error) {
1603 DQUOT_INIT(inode);
Miklos Szeredid139d7f2007-10-18 03:07:00 -07001604
1605 error = do_truncate(dentry, 0,
1606 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
1607 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 }
1609 put_write_access(inode);
1610 if (error)
1611 return error;
1612 } else
1613 if (flag & FMODE_WRITE)
1614 DQUOT_INIT(inode);
1615
1616 return 0;
1617}
1618
Dave Hansend57999e2008-02-15 14:37:27 -08001619/*
1620 * Be careful about ever adding any more callers of this
1621 * function. Its flags must be in the namei format, not
1622 * what get passed to sys_open().
1623 */
1624static int __open_namei_create(struct nameidata *nd, struct path *path,
Dave Hansenaab520e2006-09-30 23:29:02 -07001625 int flag, int mode)
1626{
1627 int error;
Jan Blunck4ac91372008-02-14 19:34:32 -08001628 struct dentry *dir = nd->path.dentry;
Dave Hansenaab520e2006-09-30 23:29:02 -07001629
1630 if (!IS_POSIXACL(dir->d_inode))
1631 mode &= ~current->fs->umask;
1632 error = vfs_create(dir->d_inode, path->dentry, mode, nd);
1633 mutex_unlock(&dir->d_inode->i_mutex);
Jan Blunck4ac91372008-02-14 19:34:32 -08001634 dput(nd->path.dentry);
1635 nd->path.dentry = path->dentry;
Dave Hansenaab520e2006-09-30 23:29:02 -07001636 if (error)
1637 return error;
1638 /* Don't check for write permission, don't truncate */
1639 return may_open(nd, 0, flag & ~O_TRUNC);
1640}
1641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642/*
Dave Hansend57999e2008-02-15 14:37:27 -08001643 * Note that while the flag value (low two bits) for sys_open means:
1644 * 00 - read-only
1645 * 01 - write-only
1646 * 10 - read-write
1647 * 11 - special
1648 * it is changed into
1649 * 00 - no permissions needed
1650 * 01 - read-permission
1651 * 10 - write-permission
1652 * 11 - read-write
1653 * for the internal routines (ie open_namei()/follow_link() etc)
1654 * This is more logical, and also allows the 00 "no perm needed"
1655 * to be used for symlinks (where the permissions are checked
1656 * later).
1657 *
1658*/
1659static inline int open_to_namei_flags(int flag)
1660{
1661 if ((flag+1) & O_ACCMODE)
1662 flag++;
1663 return flag;
1664}
1665
Dave Hansen4a3fd212008-02-15 14:37:48 -08001666static int open_will_write_to_fs(int flag, struct inode *inode)
1667{
1668 /*
1669 * We'll never write to the fs underlying
1670 * a device file.
1671 */
1672 if (special_file(inode->i_mode))
1673 return 0;
1674 return (flag & O_TRUNC);
1675}
1676
Dave Hansend57999e2008-02-15 14:37:27 -08001677/*
Dave Hansen4a3fd212008-02-15 14:37:48 -08001678 * Note that the low bits of the passed in "open_flag"
1679 * are not the same as in the local variable "flag". See
1680 * open_to_namei_flags() for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001682struct file *do_filp_open(int dfd, const char *pathname,
1683 int open_flag, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684{
Dave Hansen4a3fd212008-02-15 14:37:48 -08001685 struct file *filp;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001686 struct nameidata nd;
Trond Myklebust834f2a42005-10-18 14:20:16 -07001687 int acc_mode, error;
Al Viro4e7506e2005-06-06 13:36:00 -07001688 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 struct dentry *dir;
1690 int count = 0;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001691 int will_write;
Dave Hansend57999e2008-02-15 14:37:27 -08001692 int flag = open_to_namei_flags(open_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
Al Virob77b0642008-07-17 09:37:02 -04001694 acc_mode = MAY_OPEN | ACC_MODE(flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Trond Myklebust834f2a42005-10-18 14:20:16 -07001696 /* O_TRUNC implies we need access checks for write permissions */
1697 if (flag & O_TRUNC)
1698 acc_mode |= MAY_WRITE;
1699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 /* Allow the LSM permission hook to distinguish append
1701 access from general write access. */
1702 if (flag & O_APPEND)
1703 acc_mode |= MAY_APPEND;
1704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 /*
1706 * The simplest case - just a plain lookup.
1707 */
1708 if (!(flag & O_CREAT)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001709 error = path_lookup_open(dfd, pathname, lookup_flags(flag),
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001710 &nd, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 if (error)
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001712 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 goto ok;
1714 }
1715
1716 /*
1717 * Create - we need to know the parent.
1718 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001719 error = path_lookup_create(dfd, pathname, LOOKUP_PARENT,
1720 &nd, flag, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 if (error)
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001722 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
1724 /*
1725 * We have the parent and last component. First of all, check
1726 * that we are not asked to creat(2) an obvious directory - that
1727 * will not do.
1728 */
1729 error = -EISDIR;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001730 if (nd.last_type != LAST_NORM || nd.last.name[nd.last.len])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 goto exit;
1732
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001733 dir = nd.path.dentry;
1734 nd.flags &= ~LOOKUP_PARENT;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001735 mutex_lock(&dir->d_inode->i_mutex);
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001736 path.dentry = lookup_hash(&nd);
1737 path.mnt = nd.path.mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739do_last:
Al Viro4e7506e2005-06-06 13:36:00 -07001740 error = PTR_ERR(path.dentry);
1741 if (IS_ERR(path.dentry)) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001742 mutex_unlock(&dir->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 goto exit;
1744 }
1745
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001746 if (IS_ERR(nd.intent.open.file)) {
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001747 error = PTR_ERR(nd.intent.open.file);
Dave Hansen4a3fd212008-02-15 14:37:48 -08001748 goto exit_mutex_unlock;
Oleg Drokin4af4c522006-03-25 03:06:54 -08001749 }
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 /* Negative dentry, just create the file */
Al Viro4e7506e2005-06-06 13:36:00 -07001752 if (!path.dentry->d_inode) {
Dave Hansen4a3fd212008-02-15 14:37:48 -08001753 /*
1754 * This write is needed to ensure that a
1755 * ro->rw transition does not occur between
1756 * the time when the file is created and when
1757 * a permanent write count is taken through
1758 * the 'struct file' in nameidata_to_filp().
1759 */
1760 error = mnt_want_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 if (error)
Dave Hansen4a3fd212008-02-15 14:37:48 -08001762 goto exit_mutex_unlock;
1763 error = __open_namei_create(&nd, &path, flag, mode);
1764 if (error) {
1765 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 goto exit;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001767 }
1768 filp = nameidata_to_filp(&nd, open_flag);
1769 mnt_drop_write(nd.path.mnt);
1770 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 }
1772
1773 /*
1774 * It already exists.
1775 */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001776 mutex_unlock(&dir->d_inode->i_mutex);
Al Viro5a190ae2007-06-07 12:19:32 -04001777 audit_inode(pathname, path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779 error = -EEXIST;
1780 if (flag & O_EXCL)
1781 goto exit_dput;
1782
Al Viroe13b2102005-06-06 13:36:06 -07001783 if (__follow_mount(&path)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 error = -ELOOP;
Al Viroba7a4c12005-06-06 13:36:08 -07001785 if (flag & O_NOFOLLOW)
1786 goto exit_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04001788
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 error = -ENOENT;
Al Viro4e7506e2005-06-06 13:36:00 -07001790 if (!path.dentry->d_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 goto exit_dput;
Al Viro4e7506e2005-06-06 13:36:00 -07001792 if (path.dentry->d_inode->i_op && path.dentry->d_inode->i_op->follow_link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 goto do_link;
1794
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001795 path_to_nameidata(&path, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 error = -EISDIR;
Al Viro4e7506e2005-06-06 13:36:00 -07001797 if (path.dentry->d_inode && S_ISDIR(path.dentry->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 goto exit;
1799ok:
Dave Hansen4a3fd212008-02-15 14:37:48 -08001800 /*
1801 * Consider:
1802 * 1. may_open() truncates a file
1803 * 2. a rw->ro mount transition occurs
1804 * 3. nameidata_to_filp() fails due to
1805 * the ro mount.
1806 * That would be inconsistent, and should
1807 * be avoided. Taking this mnt write here
1808 * ensures that (2) can not occur.
1809 */
1810 will_write = open_will_write_to_fs(flag, nd.path.dentry->d_inode);
1811 if (will_write) {
1812 error = mnt_want_write(nd.path.mnt);
1813 if (error)
1814 goto exit;
1815 }
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001816 error = may_open(&nd, acc_mode, flag);
Dave Hansen4a3fd212008-02-15 14:37:48 -08001817 if (error) {
1818 if (will_write)
1819 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 goto exit;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001821 }
1822 filp = nameidata_to_filp(&nd, open_flag);
1823 /*
1824 * It is now safe to drop the mnt write
1825 * because the filp has had a write taken
1826 * on its behalf.
1827 */
1828 if (will_write)
1829 mnt_drop_write(nd.path.mnt);
1830 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Dave Hansen4a3fd212008-02-15 14:37:48 -08001832exit_mutex_unlock:
1833 mutex_unlock(&dir->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834exit_dput:
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001835 path_put_conditional(&path, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836exit:
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001837 if (!IS_ERR(nd.intent.open.file))
1838 release_open_intent(&nd);
1839 path_put(&nd.path);
1840 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
1842do_link:
1843 error = -ELOOP;
1844 if (flag & O_NOFOLLOW)
1845 goto exit_dput;
1846 /*
1847 * This is subtle. Instead of calling do_follow_link() we do the
1848 * thing by hands. The reason is that this way we have zero link_count
1849 * and path_walk() (called from ->follow_link) honoring LOOKUP_PARENT.
1850 * After that we have the parent and last component, i.e.
1851 * we are in the same situation as after the first path_walk().
1852 * Well, almost - if the last component is normal we get its copy
1853 * stored in nd->last.name and we will have to putname() it when we
1854 * are done. Procfs-like symlinks just set LAST_BIND.
1855 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001856 nd.flags |= LOOKUP_PARENT;
1857 error = security_inode_follow_link(path.dentry, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 if (error)
1859 goto exit_dput;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001860 error = __do_follow_link(&path, &nd);
Kirill Korotaevde459212006-07-14 00:23:49 -07001861 if (error) {
1862 /* Does someone understand code flow here? Or it is only
1863 * me so stupid? Anathema to whoever designed this non-sense
1864 * with "intent.open".
1865 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001866 release_open_intent(&nd);
1867 return ERR_PTR(error);
Kirill Korotaevde459212006-07-14 00:23:49 -07001868 }
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001869 nd.flags &= ~LOOKUP_PARENT;
1870 if (nd.last_type == LAST_BIND)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 goto ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 error = -EISDIR;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001873 if (nd.last_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 goto exit;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001875 if (nd.last.name[nd.last.len]) {
1876 __putname(nd.last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 goto exit;
1878 }
1879 error = -ELOOP;
1880 if (count++==32) {
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001881 __putname(nd.last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 goto exit;
1883 }
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001884 dir = nd.path.dentry;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001885 mutex_lock(&dir->d_inode->i_mutex);
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001886 path.dentry = lookup_hash(&nd);
1887 path.mnt = nd.path.mnt;
1888 __putname(nd.last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 goto do_last;
1890}
1891
1892/**
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001893 * filp_open - open file and return file pointer
1894 *
1895 * @filename: path to open
1896 * @flags: open flags as per the open(2) second argument
1897 * @mode: mode for the new file if O_CREAT is set, else ignored
1898 *
1899 * This is the helper to open a file from kernelspace if you really
1900 * have to. But in generally you should not do this, so please move
1901 * along, nothing to see here..
1902 */
1903struct file *filp_open(const char *filename, int flags, int mode)
1904{
1905 return do_filp_open(AT_FDCWD, filename, flags, mode);
1906}
1907EXPORT_SYMBOL(filp_open);
1908
1909/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 * lookup_create - lookup a dentry, creating it if it doesn't exist
1911 * @nd: nameidata info
1912 * @is_dir: directory flag
1913 *
1914 * Simple function to lookup and return a dentry and create it
1915 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001916 *
Jan Blunck4ac91372008-02-14 19:34:32 -08001917 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 */
1919struct dentry *lookup_create(struct nameidata *nd, int is_dir)
1920{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001921 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
Jan Blunck4ac91372008-02-14 19:34:32 -08001923 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001924 /*
1925 * Yucky last component or no last component at all?
1926 * (foo/., foo/.., /////)
1927 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 if (nd->last_type != LAST_NORM)
1929 goto fail;
1930 nd->flags &= ~LOOKUP_PARENT;
ASANO Masahiroa6349042006-08-22 20:06:02 -04001931 nd->flags |= LOOKUP_CREATE;
1932 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001933
1934 /*
1935 * Do the final lookup.
1936 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08001937 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 if (IS_ERR(dentry))
1939 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001940
Al Viroe9baf6e2008-05-15 04:49:12 -04001941 if (dentry->d_inode)
1942 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001943 /*
1944 * Special case - lookup gave negative, but... we had foo/bar/
1945 * From the vfs_mknod() POV we just have a negative dentry -
1946 * all is fine. Let's be bastards - you had / on the end, you've
1947 * been asking for (non-existent) directory. -ENOENT for you.
1948 */
Al Viroe9baf6e2008-05-15 04:49:12 -04001949 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
1950 dput(dentry);
1951 dentry = ERR_PTR(-ENOENT);
1952 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04001954eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04001956 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957fail:
1958 return dentry;
1959}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07001960EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
1962int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1963{
1964 int error = may_create(dir, dentry, NULL);
1965
1966 if (error)
1967 return error;
1968
1969 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1970 return -EPERM;
1971
1972 if (!dir->i_op || !dir->i_op->mknod)
1973 return -EPERM;
1974
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07001975 error = devcgroup_inode_mknod(mode, dev);
1976 if (error)
1977 return error;
1978
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 error = security_inode_mknod(dir, dentry, mode, dev);
1980 if (error)
1981 return error;
1982
1983 DQUOT_INIT(dir);
1984 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001985 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001986 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 return error;
1988}
1989
Dave Hansen463c3192008-02-15 14:37:57 -08001990static int may_mknod(mode_t mode)
1991{
1992 switch (mode & S_IFMT) {
1993 case S_IFREG:
1994 case S_IFCHR:
1995 case S_IFBLK:
1996 case S_IFIFO:
1997 case S_IFSOCK:
1998 case 0: /* zero mode translates to S_IFREG */
1999 return 0;
2000 case S_IFDIR:
2001 return -EPERM;
2002 default:
2003 return -EINVAL;
2004 }
2005}
2006
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002007asmlinkage long sys_mknodat(int dfd, const char __user *filename, int mode,
2008 unsigned dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009{
Al Viro2ad94ae2008-07-21 09:32:51 -04002010 int error;
2011 char *tmp;
2012 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 struct nameidata nd;
2014
2015 if (S_ISDIR(mode))
2016 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017
Al Viro2ad94ae2008-07-21 09:32:51 -04002018 error = user_path_parent(dfd, filename, &nd, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002020 return error;
2021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 dentry = lookup_create(&nd, 0);
Dave Hansen463c3192008-02-15 14:37:57 -08002023 if (IS_ERR(dentry)) {
2024 error = PTR_ERR(dentry);
2025 goto out_unlock;
2026 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002027 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 mode &= ~current->fs->umask;
Dave Hansen463c3192008-02-15 14:37:57 -08002029 error = may_mknod(mode);
2030 if (error)
2031 goto out_dput;
2032 error = mnt_want_write(nd.path.mnt);
2033 if (error)
2034 goto out_dput;
2035 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08002037 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 break;
2039 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002040 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 new_decode_dev(dev));
2042 break;
2043 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002044 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 }
Dave Hansen463c3192008-02-15 14:37:57 -08002047 mnt_drop_write(nd.path.mnt);
2048out_dput:
2049 dput(dentry);
2050out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002051 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002052 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 putname(tmp);
2054
2055 return error;
2056}
2057
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002058asmlinkage long sys_mknod(const char __user *filename, int mode, unsigned dev)
2059{
2060 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2061}
2062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2064{
2065 int error = may_create(dir, dentry, NULL);
2066
2067 if (error)
2068 return error;
2069
2070 if (!dir->i_op || !dir->i_op->mkdir)
2071 return -EPERM;
2072
2073 mode &= (S_IRWXUGO|S_ISVTX);
2074 error = security_inode_mkdir(dir, dentry, mode);
2075 if (error)
2076 return error;
2077
2078 DQUOT_INIT(dir);
2079 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002080 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002081 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 return error;
2083}
2084
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002085asmlinkage long sys_mkdirat(int dfd, const char __user *pathname, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086{
2087 int error = 0;
2088 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002089 struct dentry *dentry;
2090 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Al Viro2ad94ae2008-07-21 09:32:51 -04002092 error = user_path_parent(dfd, pathname, &nd, &tmp);
2093 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002094 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095
Dave Hansen6902d922006-09-30 23:29:01 -07002096 dentry = lookup_create(&nd, 1);
2097 error = PTR_ERR(dentry);
2098 if (IS_ERR(dentry))
2099 goto out_unlock;
2100
Jan Blunck4ac91372008-02-14 19:34:32 -08002101 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Dave Hansen6902d922006-09-30 23:29:01 -07002102 mode &= ~current->fs->umask;
Dave Hansen463c3192008-02-15 14:37:57 -08002103 error = mnt_want_write(nd.path.mnt);
2104 if (error)
2105 goto out_dput;
Jan Blunck4ac91372008-02-14 19:34:32 -08002106 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Dave Hansen463c3192008-02-15 14:37:57 -08002107 mnt_drop_write(nd.path.mnt);
2108out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002109 dput(dentry);
2110out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002111 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002112 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002113 putname(tmp);
2114out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 return error;
2116}
2117
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002118asmlinkage long sys_mkdir(const char __user *pathname, int mode)
2119{
2120 return sys_mkdirat(AT_FDCWD, pathname, mode);
2121}
2122
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123/*
2124 * We try to drop the dentry early: we should have
2125 * a usage count of 2 if we're the only user of this
2126 * dentry, and if that is true (possibly after pruning
2127 * the dcache), then we drop the dentry now.
2128 *
2129 * A low-level filesystem can, if it choses, legally
2130 * do a
2131 *
2132 * if (!d_unhashed(dentry))
2133 * return -EBUSY;
2134 *
2135 * if it cannot handle the case of removing a directory
2136 * that is still in use by something else..
2137 */
2138void dentry_unhash(struct dentry *dentry)
2139{
2140 dget(dentry);
Vasily Averindc168422006-12-06 20:37:07 -08002141 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 spin_lock(&dcache_lock);
2143 spin_lock(&dentry->d_lock);
2144 if (atomic_read(&dentry->d_count) == 2)
2145 __d_drop(dentry);
2146 spin_unlock(&dentry->d_lock);
2147 spin_unlock(&dcache_lock);
2148}
2149
2150int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2151{
2152 int error = may_delete(dir, dentry, 1);
2153
2154 if (error)
2155 return error;
2156
2157 if (!dir->i_op || !dir->i_op->rmdir)
2158 return -EPERM;
2159
2160 DQUOT_INIT(dir);
2161
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002162 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 dentry_unhash(dentry);
2164 if (d_mountpoint(dentry))
2165 error = -EBUSY;
2166 else {
2167 error = security_inode_rmdir(dir, dentry);
2168 if (!error) {
2169 error = dir->i_op->rmdir(dir, dentry);
2170 if (!error)
2171 dentry->d_inode->i_flags |= S_DEAD;
2172 }
2173 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002174 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 d_delete(dentry);
2177 }
2178 dput(dentry);
2179
2180 return error;
2181}
2182
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002183static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184{
2185 int error = 0;
2186 char * name;
2187 struct dentry *dentry;
2188 struct nameidata nd;
2189
Al Viro2ad94ae2008-07-21 09:32:51 -04002190 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002192 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
2194 switch(nd.last_type) {
2195 case LAST_DOTDOT:
2196 error = -ENOTEMPTY;
2197 goto exit1;
2198 case LAST_DOT:
2199 error = -EINVAL;
2200 goto exit1;
2201 case LAST_ROOT:
2202 error = -EBUSY;
2203 goto exit1;
2204 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002205 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002206 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002208 if (IS_ERR(dentry))
2209 goto exit2;
Dave Hansen06227532008-02-15 14:37:34 -08002210 error = mnt_want_write(nd.path.mnt);
2211 if (error)
2212 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002213 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08002214 mnt_drop_write(nd.path.mnt);
2215exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002216 dput(dentry);
2217exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002218 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002220 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 putname(name);
2222 return error;
2223}
2224
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002225asmlinkage long sys_rmdir(const char __user *pathname)
2226{
2227 return do_rmdir(AT_FDCWD, pathname);
2228}
2229
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230int vfs_unlink(struct inode *dir, struct dentry *dentry)
2231{
2232 int error = may_delete(dir, dentry, 0);
2233
2234 if (error)
2235 return error;
2236
2237 if (!dir->i_op || !dir->i_op->unlink)
2238 return -EPERM;
2239
2240 DQUOT_INIT(dir);
2241
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002242 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 if (d_mountpoint(dentry))
2244 error = -EBUSY;
2245 else {
2246 error = security_inode_unlink(dir, dentry);
2247 if (!error)
2248 error = dir->i_op->unlink(dir, dentry);
2249 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002250 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
2252 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2253 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002254 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 }
Robert Love0eeca282005-07-12 17:06:03 -04002257
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 return error;
2259}
2260
2261/*
2262 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002263 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 * writeout happening, and we don't want to prevent access to the directory
2265 * while waiting on the I/O.
2266 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002267static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268{
Al Viro2ad94ae2008-07-21 09:32:51 -04002269 int error;
2270 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 struct dentry *dentry;
2272 struct nameidata nd;
2273 struct inode *inode = NULL;
2274
Al Viro2ad94ae2008-07-21 09:32:51 -04002275 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002277 return error;
2278
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 error = -EISDIR;
2280 if (nd.last_type != LAST_NORM)
2281 goto exit1;
Jan Blunck4ac91372008-02-14 19:34:32 -08002282 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002283 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 error = PTR_ERR(dentry);
2285 if (!IS_ERR(dentry)) {
2286 /* Why not before? Because we want correct error value */
2287 if (nd.last.name[nd.last.len])
2288 goto slashes;
2289 inode = dentry->d_inode;
2290 if (inode)
2291 atomic_inc(&inode->i_count);
Dave Hansen06227532008-02-15 14:37:34 -08002292 error = mnt_want_write(nd.path.mnt);
2293 if (error)
2294 goto exit2;
Jan Blunck4ac91372008-02-14 19:34:32 -08002295 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08002296 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 exit2:
2298 dput(dentry);
2299 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002300 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 if (inode)
2302 iput(inode); /* truncate the inode here */
2303exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002304 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 putname(name);
2306 return error;
2307
2308slashes:
2309 error = !dentry->d_inode ? -ENOENT :
2310 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2311 goto exit2;
2312}
2313
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002314asmlinkage long sys_unlinkat(int dfd, const char __user *pathname, int flag)
2315{
2316 if ((flag & ~AT_REMOVEDIR) != 0)
2317 return -EINVAL;
2318
2319 if (flag & AT_REMOVEDIR)
2320 return do_rmdir(dfd, pathname);
2321
2322 return do_unlinkat(dfd, pathname);
2323}
2324
2325asmlinkage long sys_unlink(const char __user *pathname)
2326{
2327 return do_unlinkat(AT_FDCWD, pathname);
2328}
2329
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002330int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331{
2332 int error = may_create(dir, dentry, NULL);
2333
2334 if (error)
2335 return error;
2336
2337 if (!dir->i_op || !dir->i_op->symlink)
2338 return -EPERM;
2339
2340 error = security_inode_symlink(dir, dentry, oldname);
2341 if (error)
2342 return error;
2343
2344 DQUOT_INIT(dir);
2345 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002346 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002347 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 return error;
2349}
2350
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002351asmlinkage long sys_symlinkat(const char __user *oldname,
2352 int newdfd, const char __user *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353{
Al Viro2ad94ae2008-07-21 09:32:51 -04002354 int error;
2355 char *from;
2356 char *to;
Dave Hansen6902d922006-09-30 23:29:01 -07002357 struct dentry *dentry;
2358 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
2360 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002361 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002363
2364 error = user_path_parent(newdfd, newname, &nd, &to);
2365 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002366 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Dave Hansen6902d922006-09-30 23:29:01 -07002368 dentry = lookup_create(&nd, 0);
2369 error = PTR_ERR(dentry);
2370 if (IS_ERR(dentry))
2371 goto out_unlock;
2372
Dave Hansen75c3f292008-02-15 14:37:45 -08002373 error = mnt_want_write(nd.path.mnt);
2374 if (error)
2375 goto out_dput;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002376 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
Dave Hansen75c3f292008-02-15 14:37:45 -08002377 mnt_drop_write(nd.path.mnt);
2378out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002379 dput(dentry);
2380out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002381 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002382 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002383 putname(to);
2384out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 putname(from);
2386 return error;
2387}
2388
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002389asmlinkage long sys_symlink(const char __user *oldname, const char __user *newname)
2390{
2391 return sys_symlinkat(oldname, AT_FDCWD, newname);
2392}
2393
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2395{
2396 struct inode *inode = old_dentry->d_inode;
2397 int error;
2398
2399 if (!inode)
2400 return -ENOENT;
2401
2402 error = may_create(dir, new_dentry, NULL);
2403 if (error)
2404 return error;
2405
2406 if (dir->i_sb != inode->i_sb)
2407 return -EXDEV;
2408
2409 /*
2410 * A link to an append-only or immutable file cannot be created.
2411 */
2412 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2413 return -EPERM;
2414 if (!dir->i_op || !dir->i_op->link)
2415 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002416 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 return -EPERM;
2418
2419 error = security_inode_link(old_dentry, dir, new_dentry);
2420 if (error)
2421 return error;
2422
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002423 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 DQUOT_INIT(dir);
2425 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002426 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002427 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002428 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 return error;
2430}
2431
2432/*
2433 * Hardlinks are often used in delicate situations. We avoid
2434 * security-related surprises by not following symlinks on the
2435 * newname. --KAB
2436 *
2437 * We don't follow them on the oldname either to be compatible
2438 * with linux 2.0, and to avoid hard-linking to directories
2439 * and other special files. --ADM
2440 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002441asmlinkage long sys_linkat(int olddfd, const char __user *oldname,
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002442 int newdfd, const char __user *newname,
2443 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444{
2445 struct dentry *new_dentry;
Al Viro2d8f3032008-07-22 09:59:21 -04002446 struct nameidata nd;
2447 struct path old_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 int error;
Al Viro2ad94ae2008-07-21 09:32:51 -04002449 char *to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
Ulrich Drepper45c9b112006-06-25 05:49:11 -07002451 if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002452 return -EINVAL;
2453
Al Viro2d8f3032008-07-22 09:59:21 -04002454 error = user_path_at(olddfd, oldname,
2455 flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
2456 &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002458 return error;
2459
2460 error = user_path_parent(newdfd, newname, &nd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 if (error)
2462 goto out;
2463 error = -EXDEV;
Al Viro2d8f3032008-07-22 09:59:21 -04002464 if (old_path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 goto out_release;
2466 new_dentry = lookup_create(&nd, 0);
2467 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002468 if (IS_ERR(new_dentry))
2469 goto out_unlock;
Dave Hansen75c3f292008-02-15 14:37:45 -08002470 error = mnt_want_write(nd.path.mnt);
2471 if (error)
2472 goto out_dput;
Al Viro2d8f3032008-07-22 09:59:21 -04002473 error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
Dave Hansen75c3f292008-02-15 14:37:45 -08002474 mnt_drop_write(nd.path.mnt);
2475out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002476 dput(new_dentry);
2477out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002478 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08002480 path_put(&nd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002481 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482out:
Al Viro2d8f3032008-07-22 09:59:21 -04002483 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484
2485 return error;
2486}
2487
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002488asmlinkage long sys_link(const char __user *oldname, const char __user *newname)
2489{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002490 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002491}
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493/*
2494 * The worst of all namespace operations - renaming directory. "Perverted"
2495 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2496 * Problems:
2497 * a) we can get into loop creation. Check is done in is_subdir().
2498 * b) race potential - two innocent renames can create a loop together.
2499 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002500 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 * story.
2502 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002503 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 * whether the target exists). Solution: try to be smart with locking
2505 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002506 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 * move will be locked. Thus we can rank directories by the tree
2508 * (ancestors first) and rank all non-directories after them.
2509 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002510 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 * HOWEVER, it relies on the assumption that any object with ->lookup()
2512 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2513 * we'd better make sure that there's no link(2) for them.
2514 * d) some filesystems don't support opened-but-unlinked directories,
2515 * either because of layout or because they are not ready to deal with
2516 * all cases correctly. The latter will be fixed (taking this sort of
2517 * stuff into VFS), but the former is not going away. Solution: the same
2518 * trick as in rmdir().
2519 * e) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002520 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002522 * ->i_mutex on parents, which works but leads to some truely excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 * locking].
2524 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07002525static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2526 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527{
2528 int error = 0;
2529 struct inode *target;
2530
2531 /*
2532 * If we are going to change the parent - check write permissions,
2533 * we'll need to flip '..'.
2534 */
2535 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04002536 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 if (error)
2538 return error;
2539 }
2540
2541 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2542 if (error)
2543 return error;
2544
2545 target = new_dentry->d_inode;
2546 if (target) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002547 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 dentry_unhash(new_dentry);
2549 }
2550 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2551 error = -EBUSY;
2552 else
2553 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2554 if (target) {
2555 if (!error)
2556 target->i_flags |= S_DEAD;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002557 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 if (d_unhashed(new_dentry))
2559 d_rehash(new_dentry);
2560 dput(new_dentry);
2561 }
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002562 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07002563 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2564 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 return error;
2566}
2567
Adrian Bunk75c96f82005-05-05 16:16:09 -07002568static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
2569 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570{
2571 struct inode *target;
2572 int error;
2573
2574 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2575 if (error)
2576 return error;
2577
2578 dget(new_dentry);
2579 target = new_dentry->d_inode;
2580 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002581 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2583 error = -EBUSY;
2584 else
2585 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2586 if (!error) {
Mark Fasheh349457c2006-09-08 14:22:21 -07002587 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 d_move(old_dentry, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 }
2590 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002591 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 dput(new_dentry);
2593 return error;
2594}
2595
2596int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
2597 struct inode *new_dir, struct dentry *new_dentry)
2598{
2599 int error;
2600 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Robert Love0eeca282005-07-12 17:06:03 -04002601 const char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
2603 if (old_dentry->d_inode == new_dentry->d_inode)
2604 return 0;
2605
2606 error = may_delete(old_dir, old_dentry, is_dir);
2607 if (error)
2608 return error;
2609
2610 if (!new_dentry->d_inode)
2611 error = may_create(new_dir, new_dentry, NULL);
2612 else
2613 error = may_delete(new_dir, new_dentry, is_dir);
2614 if (error)
2615 return error;
2616
2617 if (!old_dir->i_op || !old_dir->i_op->rename)
2618 return -EPERM;
2619
2620 DQUOT_INIT(old_dir);
2621 DQUOT_INIT(new_dir);
2622
Robert Love0eeca282005-07-12 17:06:03 -04002623 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
2624
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 if (is_dir)
2626 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
2627 else
2628 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
2629 if (!error) {
Robert Love0eeca282005-07-12 17:06:03 -04002630 const char *new_name = old_dentry->d_name.name;
John McCutchan89204c42005-08-15 12:13:28 -04002631 fsnotify_move(old_dir, new_dir, old_name, new_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04002632 new_dentry->d_inode, old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 }
Robert Love0eeca282005-07-12 17:06:03 -04002634 fsnotify_oldname_free(old_name);
2635
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 return error;
2637}
2638
Al Viro2ad94ae2008-07-21 09:32:51 -04002639asmlinkage long sys_renameat(int olddfd, const char __user *oldname,
2640 int newdfd, const char __user *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641{
Al Viro2ad94ae2008-07-21 09:32:51 -04002642 struct dentry *old_dir, *new_dir;
2643 struct dentry *old_dentry, *new_dentry;
2644 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04002646 char *from;
2647 char *to;
2648 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
Al Viro2ad94ae2008-07-21 09:32:51 -04002650 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 if (error)
2652 goto exit;
2653
Al Viro2ad94ae2008-07-21 09:32:51 -04002654 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 if (error)
2656 goto exit1;
2657
2658 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08002659 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 goto exit2;
2661
Jan Blunck4ac91372008-02-14 19:34:32 -08002662 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 error = -EBUSY;
2664 if (oldnd.last_type != LAST_NORM)
2665 goto exit2;
2666
Jan Blunck4ac91372008-02-14 19:34:32 -08002667 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 if (newnd.last_type != LAST_NORM)
2669 goto exit2;
2670
2671 trap = lock_rename(new_dir, old_dir);
2672
Christoph Hellwig49705b72005-11-08 21:35:06 -08002673 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 error = PTR_ERR(old_dentry);
2675 if (IS_ERR(old_dentry))
2676 goto exit3;
2677 /* source must exist */
2678 error = -ENOENT;
2679 if (!old_dentry->d_inode)
2680 goto exit4;
2681 /* unless the source is a directory trailing slashes give -ENOTDIR */
2682 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
2683 error = -ENOTDIR;
2684 if (oldnd.last.name[oldnd.last.len])
2685 goto exit4;
2686 if (newnd.last.name[newnd.last.len])
2687 goto exit4;
2688 }
2689 /* source should not be ancestor of target */
2690 error = -EINVAL;
2691 if (old_dentry == trap)
2692 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08002693 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 error = PTR_ERR(new_dentry);
2695 if (IS_ERR(new_dentry))
2696 goto exit4;
2697 /* target should not be an ancestor of source */
2698 error = -ENOTEMPTY;
2699 if (new_dentry == trap)
2700 goto exit5;
2701
Dave Hansen9079b1e2008-02-15 14:37:49 -08002702 error = mnt_want_write(oldnd.path.mnt);
2703 if (error)
2704 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 error = vfs_rename(old_dir->d_inode, old_dentry,
2706 new_dir->d_inode, new_dentry);
Dave Hansen9079b1e2008-02-15 14:37:49 -08002707 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708exit5:
2709 dput(new_dentry);
2710exit4:
2711 dput(old_dentry);
2712exit3:
2713 unlock_rename(new_dir, old_dir);
2714exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08002715 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002716 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002718 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002720exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 return error;
2722}
2723
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002724asmlinkage long sys_rename(const char __user *oldname, const char __user *newname)
2725{
2726 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
2727}
2728
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
2730{
2731 int len;
2732
2733 len = PTR_ERR(link);
2734 if (IS_ERR(link))
2735 goto out;
2736
2737 len = strlen(link);
2738 if (len > (unsigned) buflen)
2739 len = buflen;
2740 if (copy_to_user(buffer, link, len))
2741 len = -EFAULT;
2742out:
2743 return len;
2744}
2745
2746/*
2747 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
2748 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
2749 * using) it for any given inode is up to filesystem.
2750 */
2751int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2752{
2753 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002754 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07002755 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002758 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07002759 if (IS_ERR(cookie))
2760 return PTR_ERR(cookie);
2761
2762 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
2763 if (dentry->d_inode->i_op->put_link)
2764 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
2765 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766}
2767
2768int vfs_follow_link(struct nameidata *nd, const char *link)
2769{
2770 return __vfs_follow_link(nd, link);
2771}
2772
2773/* get the link contents into pagecache */
2774static char *page_getlink(struct dentry * dentry, struct page **ppage)
2775{
2776 struct page * page;
2777 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07002778 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07002780 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 *ppage = page;
2782 return kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783}
2784
2785int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2786{
2787 struct page *page = NULL;
2788 char *s = page_getlink(dentry, &page);
2789 int res = vfs_readlink(dentry,buffer,buflen,s);
2790 if (page) {
2791 kunmap(page);
2792 page_cache_release(page);
2793 }
2794 return res;
2795}
2796
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002797void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002799 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002801 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802}
2803
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002804void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002806 struct page *page = cookie;
2807
2808 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 kunmap(page);
2810 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 }
2812}
2813
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002814int __page_symlink(struct inode *inode, const char *symname, int len,
2815 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816{
2817 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002818 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07002819 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08002820 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 char *kaddr;
2822
NeilBrown7e53cac2006-03-25 03:07:57 -08002823retry:
Nick Pigginafddba42007-10-16 01:25:01 -07002824 err = pagecache_write_begin(NULL, mapping, 0, len-1,
2825 AOP_FLAG_UNINTERRUPTIBLE, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07002827 goto fail;
2828
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 kaddr = kmap_atomic(page, KM_USER0);
2830 memcpy(kaddr, symname, len-1);
2831 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07002832
2833 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
2834 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 if (err < 0)
2836 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07002837 if (err < len-1)
2838 goto retry;
2839
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 mark_inode_dirty(inode);
2841 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842fail:
2843 return err;
2844}
2845
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002846int page_symlink(struct inode *inode, const char *symname, int len)
2847{
2848 return __page_symlink(inode, symname, len,
2849 mapping_gfp_mask(inode->i_mapping));
2850}
2851
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002852const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 .readlink = generic_readlink,
2854 .follow_link = page_follow_link_light,
2855 .put_link = page_put_link,
2856};
2857
Al Viro2d8f3032008-07-22 09:59:21 -04002858EXPORT_SYMBOL(user_path_at);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859EXPORT_SYMBOL(follow_down);
2860EXPORT_SYMBOL(follow_up);
2861EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
2862EXPORT_SYMBOL(getname);
2863EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864EXPORT_SYMBOL(lookup_one_len);
2865EXPORT_SYMBOL(page_follow_link_light);
2866EXPORT_SYMBOL(page_put_link);
2867EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002868EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869EXPORT_SYMBOL(page_symlink);
2870EXPORT_SYMBOL(page_symlink_inode_operations);
2871EXPORT_SYMBOL(path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002872EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04002873EXPORT_SYMBOL(inode_permission);
Christoph Hellwige4543ed2005-11-08 21:35:04 -08002874EXPORT_SYMBOL(vfs_permission);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -08002875EXPORT_SYMBOL(file_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876EXPORT_SYMBOL(unlock_rename);
2877EXPORT_SYMBOL(vfs_create);
2878EXPORT_SYMBOL(vfs_follow_link);
2879EXPORT_SYMBOL(vfs_link);
2880EXPORT_SYMBOL(vfs_mkdir);
2881EXPORT_SYMBOL(vfs_mknod);
2882EXPORT_SYMBOL(generic_permission);
2883EXPORT_SYMBOL(vfs_readlink);
2884EXPORT_SYMBOL(vfs_rename);
2885EXPORT_SYMBOL(vfs_rmdir);
2886EXPORT_SYMBOL(vfs_symlink);
2887EXPORT_SYMBOL(vfs_unlink);
2888EXPORT_SYMBOL(dentry_unhash);
2889EXPORT_SYMBOL(generic_readlink);