blob: 396cb3e5c364692ff63a95c78b321440e1b9b482 [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
230int permission(struct inode *inode, int mask, struct nameidata *nd)
231{
Al Viroe6305c42008-07-15 21:03:57 -0400232 int retval;
Dave Hansenc7eb2662007-10-16 23:31:14 -0700233 struct vfsmount *mnt = NULL;
234
235 if (nd)
Jan Blunck4ac91372008-02-14 19:34:32 -0800236 mnt = nd->path.mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 if (mask & MAY_WRITE) {
Miklos Szeredi22590e42007-10-16 23:27:08 -0700239 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 /*
242 * Nobody gets write access to a read-only fs.
243 */
244 if (IS_RDONLY(inode) &&
245 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
246 return -EROFS;
247
248 /*
249 * Nobody gets write access to an immutable file.
250 */
251 if (IS_IMMUTABLE(inode))
252 return -EACCES;
253 }
254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 /* Ordinary permission routines do not understand MAY_APPEND. */
Miklos Szeredi22590e42007-10-16 23:27:08 -0700256 if (inode->i_op && inode->i_op->permission) {
Al Virob77b0642008-07-17 09:37:02 -0400257 retval = inode->i_op->permission(inode, mask);
Miklos Szeredi22590e42007-10-16 23:27:08 -0700258 if (!retval) {
259 /*
260 * Exec permission on a regular file is denied if none
261 * of the execute bits are set.
262 *
263 * This check should be done by the ->permission()
264 * method.
265 */
266 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode) &&
267 !(inode->i_mode & S_IXUGO))
268 return -EACCES;
269 }
270 } else {
Al Viroe6305c42008-07-15 21:03:57 -0400271 retval = generic_permission(inode, mask, NULL);
Miklos Szeredi22590e42007-10-16 23:27:08 -0700272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 if (retval)
274 return retval;
275
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700276 retval = devcgroup_inode_permission(inode, mask);
277 if (retval)
278 return retval;
279
Al Viroe6305c42008-07-15 21:03:57 -0400280 return security_inode_permission(inode,
Al Virob77b0642008-07-17 09:37:02 -0400281 mask & (MAY_READ|MAY_WRITE|MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282}
283
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800284/**
285 * vfs_permission - check for access rights to a given path
286 * @nd: lookup result that describes the path
287 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
288 *
289 * Used to check for read/write/execute permissions on a path.
290 * We use "fsuid" for this, letting us set arbitrary permissions
291 * for filesystem access without changing the "normal" uids which
292 * are used for other things.
293 */
294int vfs_permission(struct nameidata *nd, int mask)
295{
Jan Blunck4ac91372008-02-14 19:34:32 -0800296 return permission(nd->path.dentry->d_inode, mask, nd);
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800297}
298
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800299/**
300 * file_permission - check for additional access rights to a given file
301 * @file: file to check access rights for
302 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
303 *
304 * Used to check for read/write/execute permissions on an already opened
305 * file.
306 *
307 * Note:
308 * Do not use this function in new code. All access checks should
309 * be done using vfs_permission().
310 */
311int file_permission(struct file *file, int mask)
312{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800313 return permission(file->f_path.dentry->d_inode, mask, NULL);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800314}
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316/*
317 * get_write_access() gets write permission for a file.
318 * put_write_access() releases this write permission.
319 * This is used for regular files.
320 * We cannot support write (and maybe mmap read-write shared) accesses and
321 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
322 * can have the following values:
323 * 0: no writers, no VM_DENYWRITE mappings
324 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
325 * > 0: (i_writecount) users are writing to the file.
326 *
327 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
328 * except for the cases where we don't hold i_writecount yet. Then we need to
329 * use {get,deny}_write_access() - these functions check the sign and refuse
330 * to do the change if sign is wrong. Exclusion between them is provided by
331 * the inode->i_lock spinlock.
332 */
333
334int get_write_access(struct inode * inode)
335{
336 spin_lock(&inode->i_lock);
337 if (atomic_read(&inode->i_writecount) < 0) {
338 spin_unlock(&inode->i_lock);
339 return -ETXTBSY;
340 }
341 atomic_inc(&inode->i_writecount);
342 spin_unlock(&inode->i_lock);
343
344 return 0;
345}
346
347int deny_write_access(struct file * file)
348{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800349 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 spin_lock(&inode->i_lock);
352 if (atomic_read(&inode->i_writecount) > 0) {
353 spin_unlock(&inode->i_lock);
354 return -ETXTBSY;
355 }
356 atomic_dec(&inode->i_writecount);
357 spin_unlock(&inode->i_lock);
358
359 return 0;
360}
361
Jan Blunck1d957f92008-02-14 19:34:35 -0800362/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800363 * path_get - get a reference to a path
364 * @path: path to get the reference to
365 *
366 * Given a path increment the reference count to the dentry and the vfsmount.
367 */
368void path_get(struct path *path)
369{
370 mntget(path->mnt);
371 dget(path->dentry);
372}
373EXPORT_SYMBOL(path_get);
374
375/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800376 * path_put - put a reference to a path
377 * @path: path to put the reference to
378 *
379 * Given a path decrement the reference count to the dentry and the vfsmount.
380 */
381void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Jan Blunck1d957f92008-02-14 19:34:35 -0800383 dput(path->dentry);
384 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
Jan Blunck1d957f92008-02-14 19:34:35 -0800386EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Trond Myklebust834f2a42005-10-18 14:20:16 -0700388/**
389 * release_open_intent - free up open intent resources
390 * @nd: pointer to nameidata
391 */
392void release_open_intent(struct nameidata *nd)
393{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800394 if (nd->intent.open.file->f_path.dentry == NULL)
Trond Myklebust834f2a42005-10-18 14:20:16 -0700395 put_filp(nd->intent.open.file);
396 else
397 fput(nd->intent.open.file);
398}
399
Ian Kentbcdc5e02006-09-27 01:50:44 -0700400static inline struct dentry *
401do_revalidate(struct dentry *dentry, struct nameidata *nd)
402{
403 int status = dentry->d_op->d_revalidate(dentry, nd);
404 if (unlikely(status <= 0)) {
405 /*
406 * The dentry failed validation.
407 * If d_revalidate returned 0 attempt to invalidate
408 * the dentry otherwise d_revalidate is asking us
409 * to return a fail status.
410 */
411 if (!status) {
412 if (!d_invalidate(dentry)) {
413 dput(dentry);
414 dentry = NULL;
415 }
416 } else {
417 dput(dentry);
418 dentry = ERR_PTR(status);
419 }
420 }
421 return dentry;
422}
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424/*
425 * Internal lookup() using the new generic dcache.
426 * SMP-safe
427 */
428static struct dentry * cached_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
429{
430 struct dentry * dentry = __d_lookup(parent, name);
431
432 /* lockess __d_lookup may fail due to concurrent d_move()
433 * in some unrelated directory, so try with d_lookup
434 */
435 if (!dentry)
436 dentry = d_lookup(parent, name);
437
Ian Kentbcdc5e02006-09-27 01:50:44 -0700438 if (dentry && dentry->d_op && dentry->d_op->d_revalidate)
439 dentry = do_revalidate(dentry, nd);
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return dentry;
442}
443
444/*
445 * Short-cut version of permission(), for calling by
446 * path_walk(), when dcache lock is held. Combines parts
447 * of permission() and generic_permission(), and tests ONLY for
448 * MAY_EXEC permission.
449 *
450 * If appropriate, check DAC only. If not appropriate, or
451 * short-cut DAC fails, then call permission() to do more
452 * complete permission check.
453 */
Al Viro672b16b2008-07-17 09:45:01 -0400454static int exec_permission_lite(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 umode_t mode = inode->i_mode;
457
458 if (inode->i_op && inode->i_op->permission)
459 return -EAGAIN;
460
461 if (current->fsuid == inode->i_uid)
462 mode >>= 6;
463 else if (in_group_p(inode->i_gid))
464 mode >>= 3;
465
466 if (mode & MAY_EXEC)
467 goto ok;
468
469 if ((inode->i_mode & S_IXUGO) && capable(CAP_DAC_OVERRIDE))
470 goto ok;
471
472 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_OVERRIDE))
473 goto ok;
474
475 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_READ_SEARCH))
476 goto ok;
477
478 return -EACCES;
479ok:
Al Virob77b0642008-07-17 09:37:02 -0400480 return security_inode_permission(inode, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
483/*
484 * This is called when everything else fails, and we actually have
485 * to go to the low-level filesystem to find out what we should do..
486 *
487 * We get the directory semaphore, and after getting that we also
488 * make sure that nobody added the entry to the dcache in the meantime..
489 * SMP-safe
490 */
491static struct dentry * real_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
492{
493 struct dentry * result;
494 struct inode *dir = parent->d_inode;
495
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800496 mutex_lock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 /*
498 * First re-do the cached lookup just in case it was created
499 * while we waited for the directory semaphore..
500 *
501 * FIXME! This could use version numbering or similar to
502 * avoid unnecessary cache lookups.
503 *
504 * The "dcache_lock" is purely to protect the RCU list walker
505 * from concurrent renames at this point (we mustn't get false
506 * negatives from the RCU list walk here, unlike the optimistic
507 * fast walk).
508 *
509 * so doing d_lookup() (with seqlock), instead of lockfree __d_lookup
510 */
511 result = d_lookup(parent, name);
512 if (!result) {
Miklos Szeredid70b67c2008-07-02 21:30:15 +0200513 struct dentry *dentry;
514
515 /* Don't create child dentry for a dead directory. */
516 result = ERR_PTR(-ENOENT);
517 if (IS_DEADDIR(dir))
518 goto out_unlock;
519
520 dentry = d_alloc(parent, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 result = ERR_PTR(-ENOMEM);
522 if (dentry) {
523 result = dir->i_op->lookup(dir, dentry, nd);
524 if (result)
525 dput(dentry);
526 else
527 result = dentry;
528 }
Miklos Szeredid70b67c2008-07-02 21:30:15 +0200529out_unlock:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800530 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return result;
532 }
533
534 /*
535 * Uhhuh! Nasty case: the cache was re-populated while
536 * we waited on the semaphore. Need to revalidate.
537 */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800538 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (result->d_op && result->d_op->d_revalidate) {
Ian Kentbcdc5e02006-09-27 01:50:44 -0700540 result = do_revalidate(result, nd);
541 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 result = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 }
544 return result;
545}
546
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547/* SMP-safe */
Al Viro7f2da1e2008-05-10 20:44:54 -0400548static __always_inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549walk_init_root(const char *name, struct nameidata *nd)
550{
Andreas Mohre518ddb2006-09-29 02:01:22 -0700551 struct fs_struct *fs = current->fs;
552
553 read_lock(&fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -0800554 nd->path = fs->root;
555 path_get(&fs->root);
Andreas Mohre518ddb2006-09-29 02:01:22 -0700556 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557}
558
Al Viroa02f76c2008-02-23 15:14:28 +0000559/*
560 * Wrapper to retry pathname resolution whenever the underlying
561 * file system returns an ESTALE.
562 *
563 * Retry the whole path once, forcing real lookup requests
564 * instead of relying on the dcache.
565 */
566static __always_inline int link_path_walk(const char *name, struct nameidata *nd)
567{
568 struct path save = nd->path;
569 int result;
570
571 /* make sure the stuff we saved doesn't go away */
Jan Blunckc8e7f442008-06-09 16:40:35 -0700572 path_get(&save);
Al Viroa02f76c2008-02-23 15:14:28 +0000573
574 result = __link_path_walk(name, nd);
575 if (result == -ESTALE) {
576 /* nd->path had been dropped */
577 nd->path = save;
Jan Blunckc8e7f442008-06-09 16:40:35 -0700578 path_get(&nd->path);
Al Viroa02f76c2008-02-23 15:14:28 +0000579 nd->flags |= LOOKUP_REVAL;
580 result = __link_path_walk(name, nd);
581 }
582
583 path_put(&save);
584
585 return result;
586}
587
Arjan van de Venf1662352006-01-14 13:21:31 -0800588static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
590 int res = 0;
591 char *name;
592 if (IS_ERR(link))
593 goto fail;
594
595 if (*link == '/') {
Jan Blunck1d957f92008-02-14 19:34:35 -0800596 path_put(&nd->path);
Al Viro7f2da1e2008-05-10 20:44:54 -0400597 walk_init_root(link, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 }
599 res = link_path_walk(link, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (nd->depth || res || nd->last_type!=LAST_NORM)
601 return res;
602 /*
603 * If it is an iterative symlinks resolution in open_namei() we
604 * have to copy the last component. And all that crap because of
605 * bloody create() on broken symlinks. Furrfu...
606 */
607 name = __getname();
608 if (unlikely(!name)) {
Jan Blunck1d957f92008-02-14 19:34:35 -0800609 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 return -ENOMEM;
611 }
612 strcpy(name, nd->last.name);
613 nd->last.name = name;
614 return 0;
615fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800616 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return PTR_ERR(link);
618}
619
Jan Blunck1d957f92008-02-14 19:34:35 -0800620static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700621{
622 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800623 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700624 mntput(path->mnt);
625}
626
627static inline void path_to_nameidata(struct path *path, struct nameidata *nd)
628{
Jan Blunck4ac91372008-02-14 19:34:32 -0800629 dput(nd->path.dentry);
630 if (nd->path.mnt != path->mnt)
631 mntput(nd->path.mnt);
632 nd->path.mnt = path->mnt;
633 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700634}
635
Ian Kent051d3812006-03-27 01:14:53 -0800636static __always_inline int __do_follow_link(struct path *path, struct nameidata *nd)
637{
638 int error;
639 void *cookie;
640 struct dentry *dentry = path->dentry;
641
642 touch_atime(path->mnt, dentry);
643 nd_set_link(nd, NULL);
644
Jan Blunck4ac91372008-02-14 19:34:32 -0800645 if (path->mnt != nd->path.mnt) {
Ian Kent051d3812006-03-27 01:14:53 -0800646 path_to_nameidata(path, nd);
647 dget(dentry);
648 }
649 mntget(path->mnt);
650 cookie = dentry->d_inode->i_op->follow_link(dentry, nd);
651 error = PTR_ERR(cookie);
652 if (!IS_ERR(cookie)) {
653 char *s = nd_get_link(nd);
654 error = 0;
655 if (s)
656 error = __vfs_follow_link(nd, s);
657 if (dentry->d_inode->i_op->put_link)
658 dentry->d_inode->i_op->put_link(dentry, nd, cookie);
659 }
Jan Blunck09da59162008-02-14 19:34:37 -0800660 path_put(path);
Ian Kent051d3812006-03-27 01:14:53 -0800661
662 return error;
663}
664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665/*
666 * This limits recursive symlink follows to 8, while
667 * limiting consecutive symlinks to 40.
668 *
669 * Without that kind of total limit, nasty chains of consecutive
670 * symlinks can cause almost arbitrarily long lookups.
671 */
Al Viro90ebe562005-06-06 13:35:58 -0700672static inline int do_follow_link(struct path *path, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673{
674 int err = -ELOOP;
675 if (current->link_count >= MAX_NESTED_LINKS)
676 goto loop;
677 if (current->total_link_count >= 40)
678 goto loop;
679 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
680 cond_resched();
Al Viro90ebe562005-06-06 13:35:58 -0700681 err = security_inode_follow_link(path->dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (err)
683 goto loop;
684 current->link_count++;
685 current->total_link_count++;
686 nd->depth++;
Al Virocd4e91d2005-06-06 13:36:03 -0700687 err = __do_follow_link(path, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 current->link_count--;
689 nd->depth--;
690 return err;
691loop:
Jan Blunck1d957f92008-02-14 19:34:35 -0800692 path_put_conditional(path, nd);
693 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return err;
695}
696
697int follow_up(struct vfsmount **mnt, struct dentry **dentry)
698{
699 struct vfsmount *parent;
700 struct dentry *mountpoint;
701 spin_lock(&vfsmount_lock);
702 parent=(*mnt)->mnt_parent;
703 if (parent == *mnt) {
704 spin_unlock(&vfsmount_lock);
705 return 0;
706 }
707 mntget(parent);
708 mountpoint=dget((*mnt)->mnt_mountpoint);
709 spin_unlock(&vfsmount_lock);
710 dput(*dentry);
711 *dentry = mountpoint;
712 mntput(*mnt);
713 *mnt = parent;
714 return 1;
715}
716
717/* no need for dcache_lock, as serialization is taken care in
718 * namespace.c
719 */
Al Viro463ffb22005-06-06 13:36:05 -0700720static int __follow_mount(struct path *path)
721{
722 int res = 0;
723 while (d_mountpoint(path->dentry)) {
724 struct vfsmount *mounted = lookup_mnt(path->mnt, path->dentry);
725 if (!mounted)
726 break;
727 dput(path->dentry);
728 if (res)
729 mntput(path->mnt);
730 path->mnt = mounted;
731 path->dentry = dget(mounted->mnt_root);
732 res = 1;
733 }
734 return res;
735}
736
Al Viro58c465e2005-06-06 13:36:13 -0700737static void follow_mount(struct vfsmount **mnt, struct dentry **dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 while (d_mountpoint(*dentry)) {
740 struct vfsmount *mounted = lookup_mnt(*mnt, *dentry);
741 if (!mounted)
742 break;
Al Viro58c465e2005-06-06 13:36:13 -0700743 dput(*dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 mntput(*mnt);
745 *mnt = mounted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 *dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748}
749
750/* no need for dcache_lock, as serialization is taken care in
751 * namespace.c
752 */
Al Viroe13b2102005-06-06 13:36:06 -0700753int follow_down(struct vfsmount **mnt, struct dentry **dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
755 struct vfsmount *mounted;
756
757 mounted = lookup_mnt(*mnt, *dentry);
758 if (mounted) {
Al Viroe13b2102005-06-06 13:36:06 -0700759 dput(*dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 mntput(*mnt);
761 *mnt = mounted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 *dentry = dget(mounted->mnt_root);
763 return 1;
764 }
765 return 0;
766}
767
Arjan van de Venf1662352006-01-14 13:21:31 -0800768static __always_inline void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Andreas Mohre518ddb2006-09-29 02:01:22 -0700770 struct fs_struct *fs = current->fs;
771
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 while(1) {
773 struct vfsmount *parent;
Jan Blunck4ac91372008-02-14 19:34:32 -0800774 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Andreas Mohre518ddb2006-09-29 02:01:22 -0700776 read_lock(&fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -0800777 if (nd->path.dentry == fs->root.dentry &&
778 nd->path.mnt == fs->root.mnt) {
Andreas Mohre518ddb2006-09-29 02:01:22 -0700779 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 break;
781 }
Andreas Mohre518ddb2006-09-29 02:01:22 -0700782 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 spin_lock(&dcache_lock);
Jan Blunck4ac91372008-02-14 19:34:32 -0800784 if (nd->path.dentry != nd->path.mnt->mnt_root) {
785 nd->path.dentry = dget(nd->path.dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 spin_unlock(&dcache_lock);
787 dput(old);
788 break;
789 }
790 spin_unlock(&dcache_lock);
791 spin_lock(&vfsmount_lock);
Jan Blunck4ac91372008-02-14 19:34:32 -0800792 parent = nd->path.mnt->mnt_parent;
793 if (parent == nd->path.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 spin_unlock(&vfsmount_lock);
795 break;
796 }
797 mntget(parent);
Jan Blunck4ac91372008-02-14 19:34:32 -0800798 nd->path.dentry = dget(nd->path.mnt->mnt_mountpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 spin_unlock(&vfsmount_lock);
800 dput(old);
Jan Blunck4ac91372008-02-14 19:34:32 -0800801 mntput(nd->path.mnt);
802 nd->path.mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800804 follow_mount(&nd->path.mnt, &nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807/*
808 * It's more convoluted than I'd like it to be, but... it's still fairly
809 * small and for now I'd prefer to have fast path as straight as possible.
810 * It _is_ time-critical.
811 */
812static int do_lookup(struct nameidata *nd, struct qstr *name,
813 struct path *path)
814{
Jan Blunck4ac91372008-02-14 19:34:32 -0800815 struct vfsmount *mnt = nd->path.mnt;
816 struct dentry *dentry = __d_lookup(nd->path.dentry, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818 if (!dentry)
819 goto need_lookup;
820 if (dentry->d_op && dentry->d_op->d_revalidate)
821 goto need_revalidate;
822done:
823 path->mnt = mnt;
824 path->dentry = dentry;
Al Viro634ee702005-06-06 13:36:13 -0700825 __follow_mount(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 return 0;
827
828need_lookup:
Jan Blunck4ac91372008-02-14 19:34:32 -0800829 dentry = real_lookup(nd->path.dentry, name, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (IS_ERR(dentry))
831 goto fail;
832 goto done;
833
834need_revalidate:
Ian Kentbcdc5e02006-09-27 01:50:44 -0700835 dentry = do_revalidate(dentry, nd);
836 if (!dentry)
837 goto need_lookup;
838 if (IS_ERR(dentry))
839 goto fail;
840 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842fail:
843 return PTR_ERR(dentry);
844}
845
846/*
847 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +0100848 * This is the basic name resolution function, turning a pathname into
849 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 *
Prasanna Medaea3834d2005-04-29 16:00:17 +0100851 * Returns 0 and nd will have valid dentry and mnt on success.
852 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800854static int __link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
856 struct path next;
857 struct inode *inode;
858 int err;
859 unsigned int lookup_flags = nd->flags;
860
861 while (*name=='/')
862 name++;
863 if (!*name)
864 goto return_reval;
865
Jan Blunck4ac91372008-02-14 19:34:32 -0800866 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 if (nd->depth)
Trond Myklebustf55eab82006-02-04 23:28:01 -0800868 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 /* At this point we know we have a real path component. */
871 for(;;) {
872 unsigned long hash;
873 struct qstr this;
874 unsigned int c;
875
Trond Myklebustcdce5d62005-10-18 14:20:18 -0700876 nd->flags |= LOOKUP_CONTINUE;
Al Viro672b16b2008-07-17 09:45:01 -0400877 err = exec_permission_lite(inode);
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800878 if (err == -EAGAIN)
879 err = vfs_permission(nd, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (err)
881 break;
882
883 this.name = name;
884 c = *(const unsigned char *)name;
885
886 hash = init_name_hash();
887 do {
888 name++;
889 hash = partial_name_hash(c, hash);
890 c = *(const unsigned char *)name;
891 } while (c && (c != '/'));
892 this.len = name - (const char *) this.name;
893 this.hash = end_name_hash(hash);
894
895 /* remove trailing slashes? */
896 if (!c)
897 goto last_component;
898 while (*++name == '/');
899 if (!*name)
900 goto last_with_slashes;
901
902 /*
903 * "." and ".." are special - ".." especially so because it has
904 * to be able to know about the current root directory and
905 * parent relationships.
906 */
907 if (this.name[0] == '.') switch (this.len) {
908 default:
909 break;
910 case 2:
911 if (this.name[1] != '.')
912 break;
Al Viro58c465e2005-06-06 13:36:13 -0700913 follow_dotdot(nd);
Jan Blunck4ac91372008-02-14 19:34:32 -0800914 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 /* fallthrough */
916 case 1:
917 continue;
918 }
919 /*
920 * See if the low-level filesystem might want
921 * to use its own hash..
922 */
Jan Blunck4ac91372008-02-14 19:34:32 -0800923 if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) {
924 err = nd->path.dentry->d_op->d_hash(nd->path.dentry,
925 &this);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 if (err < 0)
927 break;
928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 /* This does the actual lookups.. */
930 err = do_lookup(nd, &this, &next);
931 if (err)
932 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
934 err = -ENOENT;
935 inode = next.dentry->d_inode;
936 if (!inode)
937 goto out_dput;
938 err = -ENOTDIR;
939 if (!inode->i_op)
940 goto out_dput;
941
942 if (inode->i_op->follow_link) {
Al Viro90ebe562005-06-06 13:35:58 -0700943 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if (err)
945 goto return_err;
946 err = -ENOENT;
Jan Blunck4ac91372008-02-14 19:34:32 -0800947 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 if (!inode)
949 break;
950 err = -ENOTDIR;
951 if (!inode->i_op)
952 break;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700953 } else
954 path_to_nameidata(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 err = -ENOTDIR;
956 if (!inode->i_op->lookup)
957 break;
958 continue;
959 /* here ends the main loop */
960
961last_with_slashes:
962 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
963last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -0800964 /* Clear LOOKUP_CONTINUE iff it was previously unset */
965 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (lookup_flags & LOOKUP_PARENT)
967 goto lookup_parent;
968 if (this.name[0] == '.') switch (this.len) {
969 default:
970 break;
971 case 2:
972 if (this.name[1] != '.')
973 break;
Al Viro58c465e2005-06-06 13:36:13 -0700974 follow_dotdot(nd);
Jan Blunck4ac91372008-02-14 19:34:32 -0800975 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 /* fallthrough */
977 case 1:
978 goto return_reval;
979 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800980 if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) {
981 err = nd->path.dentry->d_op->d_hash(nd->path.dentry,
982 &this);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983 if (err < 0)
984 break;
985 }
986 err = do_lookup(nd, &this, &next);
987 if (err)
988 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 inode = next.dentry->d_inode;
990 if ((lookup_flags & LOOKUP_FOLLOW)
991 && inode && inode->i_op && inode->i_op->follow_link) {
Al Viro90ebe562005-06-06 13:35:58 -0700992 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (err)
994 goto return_err;
Jan Blunck4ac91372008-02-14 19:34:32 -0800995 inode = nd->path.dentry->d_inode;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700996 } else
997 path_to_nameidata(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 err = -ENOENT;
999 if (!inode)
1000 break;
1001 if (lookup_flags & LOOKUP_DIRECTORY) {
1002 err = -ENOTDIR;
1003 if (!inode->i_op || !inode->i_op->lookup)
1004 break;
1005 }
1006 goto return_base;
1007lookup_parent:
1008 nd->last = this;
1009 nd->last_type = LAST_NORM;
1010 if (this.name[0] != '.')
1011 goto return_base;
1012 if (this.len == 1)
1013 nd->last_type = LAST_DOT;
1014 else if (this.len == 2 && this.name[1] == '.')
1015 nd->last_type = LAST_DOTDOT;
1016 else
1017 goto return_base;
1018return_reval:
1019 /*
1020 * We bypassed the ordinary revalidation routines.
1021 * We may need to check the cached dentry for staleness.
1022 */
Jan Blunck4ac91372008-02-14 19:34:32 -08001023 if (nd->path.dentry && nd->path.dentry->d_sb &&
1024 (nd->path.dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 err = -ESTALE;
1026 /* Note: we do not d_invalidate() */
Jan Blunck4ac91372008-02-14 19:34:32 -08001027 if (!nd->path.dentry->d_op->d_revalidate(
1028 nd->path.dentry, nd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 break;
1030 }
1031return_base:
1032 return 0;
1033out_dput:
Jan Blunck1d957f92008-02-14 19:34:35 -08001034 path_put_conditional(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 break;
1036 }
Jan Blunck1d957f92008-02-14 19:34:35 -08001037 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038return_err:
1039 return err;
1040}
1041
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001042static int path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043{
1044 current->total_link_count = 0;
1045 return link_path_walk(name, nd);
1046}
1047
Prasanna Medaea3834d2005-04-29 16:00:17 +01001048/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001049static int do_path_lookup(int dfd, const char *name,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001050 unsigned int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001052 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001053 int fput_needed;
1054 struct file *file;
Andreas Mohre518ddb2006-09-29 02:01:22 -07001055 struct fs_struct *fs = current->fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1058 nd->flags = flags;
1059 nd->depth = 0;
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 if (*name=='/') {
Andreas Mohre518ddb2006-09-29 02:01:22 -07001062 read_lock(&fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -08001063 nd->path = fs->root;
1064 path_get(&fs->root);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001065 read_unlock(&fs->lock);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001066 } else if (dfd == AT_FDCWD) {
Andreas Mohre518ddb2006-09-29 02:01:22 -07001067 read_lock(&fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -08001068 nd->path = fs->pwd;
1069 path_get(&fs->pwd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001070 read_unlock(&fs->lock);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001071 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001072 struct dentry *dentry;
1073
1074 file = fget_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001075 retval = -EBADF;
1076 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001077 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001078
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001079 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001080
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001081 retval = -ENOTDIR;
1082 if (!S_ISDIR(dentry->d_inode->i_mode))
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001083 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001084
1085 retval = file_permission(file, MAY_EXEC);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001086 if (retval)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001087 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001088
Jan Blunck5dd784d02008-02-14 19:34:38 -08001089 nd->path = file->f_path;
1090 path_get(&file->f_path);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001091
1092 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 }
Josef 'Jeff' Sipek2dfdd262007-05-09 02:33:41 -07001094
1095 retval = path_walk(name, nd);
Jan Blunck4ac91372008-02-14 19:34:32 -08001096 if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
1097 nd->path.dentry->d_inode))
1098 audit_inode(name, nd->path.dentry);
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001099out_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001100 return retval;
1101
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001102fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001103 fput_light(file, fput_needed);
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001104 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
1106
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001107int path_lookup(const char *name, unsigned int flags,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001108 struct nameidata *nd)
1109{
1110 return do_path_lookup(AT_FDCWD, name, flags, nd);
1111}
1112
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001113/**
1114 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1115 * @dentry: pointer to dentry of the base directory
1116 * @mnt: pointer to vfs mount of the base directory
1117 * @name: pointer to file name
1118 * @flags: lookup flags
1119 * @nd: pointer to nameidata
1120 */
1121int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1122 const char *name, unsigned int flags,
1123 struct nameidata *nd)
1124{
1125 int retval;
1126
1127 /* same as do_path_lookup */
1128 nd->last_type = LAST_ROOT;
1129 nd->flags = flags;
1130 nd->depth = 0;
1131
Jan Blunckc8e7f442008-06-09 16:40:35 -07001132 nd->path.dentry = dentry;
1133 nd->path.mnt = mnt;
1134 path_get(&nd->path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001135
1136 retval = path_walk(name, nd);
Jan Blunck4ac91372008-02-14 19:34:32 -08001137 if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
1138 nd->path.dentry->d_inode))
1139 audit_inode(name, nd->path.dentry);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001140
1141 return retval;
1142
1143}
1144
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001145static int __path_lookup_intent_open(int dfd, const char *name,
1146 unsigned int lookup_flags, struct nameidata *nd,
1147 int open_flags, int create_mode)
Trond Myklebust834f2a42005-10-18 14:20:16 -07001148{
1149 struct file *filp = get_empty_filp();
1150 int err;
1151
1152 if (filp == NULL)
1153 return -ENFILE;
1154 nd->intent.open.file = filp;
1155 nd->intent.open.flags = open_flags;
1156 nd->intent.open.create_mode = create_mode;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001157 err = do_path_lookup(dfd, name, lookup_flags|LOOKUP_OPEN, nd);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001158 if (IS_ERR(nd->intent.open.file)) {
1159 if (err == 0) {
1160 err = PTR_ERR(nd->intent.open.file);
Jan Blunck1d957f92008-02-14 19:34:35 -08001161 path_put(&nd->path);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001162 }
1163 } else if (err != 0)
1164 release_open_intent(nd);
1165 return err;
1166}
1167
1168/**
1169 * path_lookup_open - lookup a file path with open intent
Martin Waitz7045f372006-02-01 03:06:57 -08001170 * @dfd: the directory to use as base, or AT_FDCWD
Trond Myklebust834f2a42005-10-18 14:20:16 -07001171 * @name: pointer to file name
1172 * @lookup_flags: lookup intent flags
1173 * @nd: pointer to nameidata
1174 * @open_flags: open intent flags
1175 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001176int path_lookup_open(int dfd, const char *name, unsigned int lookup_flags,
Trond Myklebust834f2a42005-10-18 14:20:16 -07001177 struct nameidata *nd, int open_flags)
1178{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001179 return __path_lookup_intent_open(dfd, name, lookup_flags, nd,
Trond Myklebust834f2a42005-10-18 14:20:16 -07001180 open_flags, 0);
1181}
1182
1183/**
1184 * path_lookup_create - lookup a file path with open + create intent
Martin Waitz7045f372006-02-01 03:06:57 -08001185 * @dfd: the directory to use as base, or AT_FDCWD
Trond Myklebust834f2a42005-10-18 14:20:16 -07001186 * @name: pointer to file name
1187 * @lookup_flags: lookup intent flags
1188 * @nd: pointer to nameidata
1189 * @open_flags: open intent flags
1190 * @create_mode: create intent flags
1191 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001192static int path_lookup_create(int dfd, const char *name,
1193 unsigned int lookup_flags, struct nameidata *nd,
1194 int open_flags, int create_mode)
Trond Myklebust834f2a42005-10-18 14:20:16 -07001195{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001196 return __path_lookup_intent_open(dfd, name, lookup_flags|LOOKUP_CREATE,
1197 nd, open_flags, create_mode);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001198}
1199
1200int __user_path_lookup_open(const char __user *name, unsigned int lookup_flags,
1201 struct nameidata *nd, int open_flags)
1202{
1203 char *tmp = getname(name);
1204 int err = PTR_ERR(tmp);
1205
1206 if (!IS_ERR(tmp)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001207 err = __path_lookup_intent_open(AT_FDCWD, tmp, lookup_flags, nd, open_flags, 0);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001208 putname(tmp);
1209 }
1210 return err;
1211}
1212
Christoph Hellwigeead1912007-10-16 23:25:38 -07001213static struct dentry *__lookup_hash(struct qstr *name,
1214 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215{
James Morris057f6c02007-04-26 00:12:05 -07001216 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 struct inode *inode;
1218 int err;
1219
1220 inode = base->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 /*
1223 * See if the low-level filesystem might want
1224 * to use its own hash..
1225 */
1226 if (base->d_op && base->d_op->d_hash) {
1227 err = base->d_op->d_hash(base, name);
1228 dentry = ERR_PTR(err);
1229 if (err < 0)
1230 goto out;
1231 }
1232
1233 dentry = cached_lookup(base, name, nd);
1234 if (!dentry) {
Miklos Szeredid70b67c2008-07-02 21:30:15 +02001235 struct dentry *new;
1236
1237 /* Don't create child dentry for a dead directory. */
1238 dentry = ERR_PTR(-ENOENT);
1239 if (IS_DEADDIR(inode))
1240 goto out;
1241
1242 new = d_alloc(base, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 dentry = ERR_PTR(-ENOMEM);
1244 if (!new)
1245 goto out;
1246 dentry = inode->i_op->lookup(inode, new, nd);
1247 if (!dentry)
1248 dentry = new;
1249 else
1250 dput(new);
1251 }
1252out:
1253 return dentry;
1254}
1255
James Morris057f6c02007-04-26 00:12:05 -07001256/*
1257 * Restricted form of lookup. Doesn't follow links, single-component only,
1258 * needs parent already locked. Doesn't follow mounts.
1259 * SMP-safe.
1260 */
Adrian Bunka244e162006-03-31 02:32:11 -08001261static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Christoph Hellwigeead1912007-10-16 23:25:38 -07001263 int err;
1264
Jan Blunck4ac91372008-02-14 19:34:32 -08001265 err = permission(nd->path.dentry->d_inode, MAY_EXEC, nd);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001266 if (err)
1267 return ERR_PTR(err);
Jan Blunck4ac91372008-02-14 19:34:32 -08001268 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
Christoph Hellwigeead1912007-10-16 23:25:38 -07001271static int __lookup_one_len(const char *name, struct qstr *this,
1272 struct dentry *base, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273{
1274 unsigned long hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 unsigned int c;
1276
James Morris057f6c02007-04-26 00:12:05 -07001277 this->name = name;
1278 this->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 if (!len)
James Morris057f6c02007-04-26 00:12:05 -07001280 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281
1282 hash = init_name_hash();
1283 while (len--) {
1284 c = *(const unsigned char *)name++;
1285 if (c == '/' || c == '\0')
James Morris057f6c02007-04-26 00:12:05 -07001286 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 hash = partial_name_hash(c, hash);
1288 }
James Morris057f6c02007-04-26 00:12:05 -07001289 this->hash = end_name_hash(hash);
1290 return 0;
1291}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Christoph Hellwigeead1912007-10-16 23:25:38 -07001293/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001294 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001295 * @name: pathname component to lookup
1296 * @base: base directory to lookup from
1297 * @len: maximum length @len should be interpreted to
1298 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001299 * Note that this routine is purely a helper for filesystem usage and should
1300 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001301 * nameidata argument is passed to the filesystem methods and a filesystem
1302 * using this helper needs to be prepared for that.
1303 */
James Morris057f6c02007-04-26 00:12:05 -07001304struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1305{
1306 int err;
1307 struct qstr this;
1308
1309 err = __lookup_one_len(name, &this, base, len);
1310 if (err)
1311 return ERR_PTR(err);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001312
1313 err = permission(base->d_inode, MAY_EXEC, NULL);
1314 if (err)
1315 return ERR_PTR(err);
Christoph Hellwig49705b72005-11-08 21:35:06 -08001316 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001317}
1318
Christoph Hellwigeead1912007-10-16 23:25:38 -07001319/**
1320 * lookup_one_noperm - bad hack for sysfs
1321 * @name: pathname component to lookup
1322 * @base: base directory to lookup from
1323 *
1324 * This is a variant of lookup_one_len that doesn't perform any permission
1325 * checks. It's a horrible hack to work around the braindead sysfs
1326 * architecture and should not be used anywhere else.
1327 *
1328 * DON'T USE THIS FUNCTION EVER, thanks.
1329 */
1330struct dentry *lookup_one_noperm(const char *name, struct dentry *base)
James Morris057f6c02007-04-26 00:12:05 -07001331{
1332 int err;
1333 struct qstr this;
1334
Christoph Hellwigeead1912007-10-16 23:25:38 -07001335 err = __lookup_one_len(name, &this, base, strlen(name));
James Morris057f6c02007-04-26 00:12:05 -07001336 if (err)
1337 return ERR_PTR(err);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001338 return __lookup_hash(&this, base, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339}
1340
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001341int __user_walk_fd(int dfd, const char __user *name, unsigned flags,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001342 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343{
1344 char *tmp = getname(name);
1345 int err = PTR_ERR(tmp);
1346
1347 if (!IS_ERR(tmp)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001348 err = do_path_lookup(dfd, tmp, flags, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 putname(tmp);
1350 }
1351 return err;
1352}
1353
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001354int __user_walk(const char __user *name, unsigned flags, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001355{
1356 return __user_walk_fd(AT_FDCWD, name, flags, nd);
1357}
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359/*
1360 * It's inline, so penalty for filesystems that don't use sticky bit is
1361 * minimal.
1362 */
1363static inline int check_sticky(struct inode *dir, struct inode *inode)
1364{
1365 if (!(dir->i_mode & S_ISVTX))
1366 return 0;
1367 if (inode->i_uid == current->fsuid)
1368 return 0;
1369 if (dir->i_uid == current->fsuid)
1370 return 0;
1371 return !capable(CAP_FOWNER);
1372}
1373
1374/*
1375 * Check whether we can remove a link victim from directory dir, check
1376 * whether the type of victim is right.
1377 * 1. We can't do it if dir is read-only (done in permission())
1378 * 2. We should have write and exec permissions on dir
1379 * 3. We can't remove anything from append-only dir
1380 * 4. We can't do anything with immutable dir (done in permission())
1381 * 5. If the sticky bit on dir is set we should either
1382 * a. be owner of dir, or
1383 * b. be owner of victim, or
1384 * c. have CAP_FOWNER capability
1385 * 6. If the victim is append-only or immutable we can't do antyhing with
1386 * links pointing to it.
1387 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1388 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1389 * 9. We can't remove a root or mountpoint.
1390 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1391 * nfs_async_unlink().
1392 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001393static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394{
1395 int error;
1396
1397 if (!victim->d_inode)
1398 return -ENOENT;
1399
1400 BUG_ON(victim->d_parent->d_inode != dir);
Al Viro5a190ae2007-06-07 12:19:32 -04001401 audit_inode_child(victim->d_name.name, victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
1403 error = permission(dir,MAY_WRITE | MAY_EXEC, NULL);
1404 if (error)
1405 return error;
1406 if (IS_APPEND(dir))
1407 return -EPERM;
1408 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
1409 IS_IMMUTABLE(victim->d_inode))
1410 return -EPERM;
1411 if (isdir) {
1412 if (!S_ISDIR(victim->d_inode->i_mode))
1413 return -ENOTDIR;
1414 if (IS_ROOT(victim))
1415 return -EBUSY;
1416 } else if (S_ISDIR(victim->d_inode->i_mode))
1417 return -EISDIR;
1418 if (IS_DEADDIR(dir))
1419 return -ENOENT;
1420 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1421 return -EBUSY;
1422 return 0;
1423}
1424
1425/* Check whether we can create an object with dentry child in directory
1426 * dir.
1427 * 1. We can't do it if child already exists (open has special treatment for
1428 * this case, but since we are inlined it's OK)
1429 * 2. We can't do it if dir is read-only (done in permission())
1430 * 3. We should have write and exec permissions on dir
1431 * 4. We can't do it if dir is immutable (done in permission())
1432 */
1433static inline int may_create(struct inode *dir, struct dentry *child,
1434 struct nameidata *nd)
1435{
1436 if (child->d_inode)
1437 return -EEXIST;
1438 if (IS_DEADDIR(dir))
1439 return -ENOENT;
1440 return permission(dir,MAY_WRITE | MAY_EXEC, nd);
1441}
1442
1443/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 * O_DIRECTORY translates into forcing a directory lookup.
1445 */
1446static inline int lookup_flags(unsigned int f)
1447{
1448 unsigned long retval = LOOKUP_FOLLOW;
1449
1450 if (f & O_NOFOLLOW)
1451 retval &= ~LOOKUP_FOLLOW;
1452
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 if (f & O_DIRECTORY)
1454 retval |= LOOKUP_DIRECTORY;
1455
1456 return retval;
1457}
1458
1459/*
1460 * p1 and p2 should be directories on the same fs.
1461 */
1462struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1463{
1464 struct dentry *p;
1465
1466 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001467 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 return NULL;
1469 }
1470
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001471 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 for (p = p1; p->d_parent != p; p = p->d_parent) {
1474 if (p->d_parent == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001475 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1476 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 return p;
1478 }
1479 }
1480
1481 for (p = p2; p->d_parent != p; p = p->d_parent) {
1482 if (p->d_parent == p1) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001483 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1484 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 return p;
1486 }
1487 }
1488
Ingo Molnarf2eace22006-07-03 00:25:05 -07001489 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1490 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 return NULL;
1492}
1493
1494void unlock_rename(struct dentry *p1, struct dentry *p2)
1495{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001496 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001498 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001499 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
1501}
1502
1503int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1504 struct nameidata *nd)
1505{
1506 int error = may_create(dir, dentry, nd);
1507
1508 if (error)
1509 return error;
1510
1511 if (!dir->i_op || !dir->i_op->create)
1512 return -EACCES; /* shouldn't it be ENOSYS? */
1513 mode &= S_IALLUGO;
1514 mode |= S_IFREG;
1515 error = security_inode_create(dir, dentry, mode);
1516 if (error)
1517 return error;
1518 DQUOT_INIT(dir);
1519 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001520 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001521 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 return error;
1523}
1524
1525int may_open(struct nameidata *nd, int acc_mode, int flag)
1526{
Jan Blunck4ac91372008-02-14 19:34:32 -08001527 struct dentry *dentry = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 struct inode *inode = dentry->d_inode;
1529 int error;
1530
1531 if (!inode)
1532 return -ENOENT;
1533
1534 if (S_ISLNK(inode->i_mode))
1535 return -ELOOP;
1536
Linus Torvalds974a9f02008-01-12 14:06:34 -08001537 if (S_ISDIR(inode->i_mode) && (acc_mode & MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 return -EISDIR;
1539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 /*
1541 * FIFO's, sockets and device files are special: they don't
1542 * actually live on the filesystem itself, and as such you
1543 * can write to them even if the filesystem is read-only.
1544 */
1545 if (S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
1546 flag &= ~O_TRUNC;
1547 } else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001548 if (nd->path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 return -EACCES;
1550
1551 flag &= ~O_TRUNC;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001552 }
Dave Hansenb41572e2007-10-16 23:31:14 -07001553
1554 error = vfs_permission(nd, acc_mode);
1555 if (error)
1556 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 /*
1558 * An append-only file must be opened in append mode for writing.
1559 */
1560 if (IS_APPEND(inode)) {
1561 if ((flag & FMODE_WRITE) && !(flag & O_APPEND))
1562 return -EPERM;
1563 if (flag & O_TRUNC)
1564 return -EPERM;
1565 }
1566
1567 /* O_NOATIME can only be set by the owner or superuser */
1568 if (flag & O_NOATIME)
Satyam Sharma3bd858a2007-07-17 15:00:08 +05301569 if (!is_owner_or_cap(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 return -EPERM;
1571
1572 /*
1573 * Ensure there are no outstanding leases on the file.
1574 */
1575 error = break_lease(inode, flag);
1576 if (error)
1577 return error;
1578
1579 if (flag & O_TRUNC) {
1580 error = get_write_access(inode);
1581 if (error)
1582 return error;
1583
1584 /*
1585 * Refuse to truncate files with mandatory locks held on them.
1586 */
1587 error = locks_verify_locked(inode);
1588 if (!error) {
1589 DQUOT_INIT(inode);
Miklos Szeredid139d7f2007-10-18 03:07:00 -07001590
1591 error = do_truncate(dentry, 0,
1592 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
1593 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 }
1595 put_write_access(inode);
1596 if (error)
1597 return error;
1598 } else
1599 if (flag & FMODE_WRITE)
1600 DQUOT_INIT(inode);
1601
1602 return 0;
1603}
1604
Dave Hansend57999e2008-02-15 14:37:27 -08001605/*
1606 * Be careful about ever adding any more callers of this
1607 * function. Its flags must be in the namei format, not
1608 * what get passed to sys_open().
1609 */
1610static int __open_namei_create(struct nameidata *nd, struct path *path,
Dave Hansenaab520e2006-09-30 23:29:02 -07001611 int flag, int mode)
1612{
1613 int error;
Jan Blunck4ac91372008-02-14 19:34:32 -08001614 struct dentry *dir = nd->path.dentry;
Dave Hansenaab520e2006-09-30 23:29:02 -07001615
1616 if (!IS_POSIXACL(dir->d_inode))
1617 mode &= ~current->fs->umask;
1618 error = vfs_create(dir->d_inode, path->dentry, mode, nd);
1619 mutex_unlock(&dir->d_inode->i_mutex);
Jan Blunck4ac91372008-02-14 19:34:32 -08001620 dput(nd->path.dentry);
1621 nd->path.dentry = path->dentry;
Dave Hansenaab520e2006-09-30 23:29:02 -07001622 if (error)
1623 return error;
1624 /* Don't check for write permission, don't truncate */
1625 return may_open(nd, 0, flag & ~O_TRUNC);
1626}
1627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628/*
Dave Hansend57999e2008-02-15 14:37:27 -08001629 * Note that while the flag value (low two bits) for sys_open means:
1630 * 00 - read-only
1631 * 01 - write-only
1632 * 10 - read-write
1633 * 11 - special
1634 * it is changed into
1635 * 00 - no permissions needed
1636 * 01 - read-permission
1637 * 10 - write-permission
1638 * 11 - read-write
1639 * for the internal routines (ie open_namei()/follow_link() etc)
1640 * This is more logical, and also allows the 00 "no perm needed"
1641 * to be used for symlinks (where the permissions are checked
1642 * later).
1643 *
1644*/
1645static inline int open_to_namei_flags(int flag)
1646{
1647 if ((flag+1) & O_ACCMODE)
1648 flag++;
1649 return flag;
1650}
1651
Dave Hansen4a3fd212008-02-15 14:37:48 -08001652static int open_will_write_to_fs(int flag, struct inode *inode)
1653{
1654 /*
1655 * We'll never write to the fs underlying
1656 * a device file.
1657 */
1658 if (special_file(inode->i_mode))
1659 return 0;
1660 return (flag & O_TRUNC);
1661}
1662
Dave Hansend57999e2008-02-15 14:37:27 -08001663/*
Dave Hansen4a3fd212008-02-15 14:37:48 -08001664 * Note that the low bits of the passed in "open_flag"
1665 * are not the same as in the local variable "flag". See
1666 * open_to_namei_flags() for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001668struct file *do_filp_open(int dfd, const char *pathname,
1669 int open_flag, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670{
Dave Hansen4a3fd212008-02-15 14:37:48 -08001671 struct file *filp;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001672 struct nameidata nd;
Trond Myklebust834f2a42005-10-18 14:20:16 -07001673 int acc_mode, error;
Al Viro4e7506e2005-06-06 13:36:00 -07001674 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 struct dentry *dir;
1676 int count = 0;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001677 int will_write;
Dave Hansend57999e2008-02-15 14:37:27 -08001678 int flag = open_to_namei_flags(open_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
Al Virob77b0642008-07-17 09:37:02 -04001680 acc_mode = MAY_OPEN | ACC_MODE(flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681
Trond Myklebust834f2a42005-10-18 14:20:16 -07001682 /* O_TRUNC implies we need access checks for write permissions */
1683 if (flag & O_TRUNC)
1684 acc_mode |= MAY_WRITE;
1685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 /* Allow the LSM permission hook to distinguish append
1687 access from general write access. */
1688 if (flag & O_APPEND)
1689 acc_mode |= MAY_APPEND;
1690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 /*
1692 * The simplest case - just a plain lookup.
1693 */
1694 if (!(flag & O_CREAT)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001695 error = path_lookup_open(dfd, pathname, lookup_flags(flag),
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001696 &nd, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 if (error)
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001698 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 goto ok;
1700 }
1701
1702 /*
1703 * Create - we need to know the parent.
1704 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001705 error = path_lookup_create(dfd, pathname, LOOKUP_PARENT,
1706 &nd, flag, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 if (error)
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001708 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
1710 /*
1711 * We have the parent and last component. First of all, check
1712 * that we are not asked to creat(2) an obvious directory - that
1713 * will not do.
1714 */
1715 error = -EISDIR;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001716 if (nd.last_type != LAST_NORM || nd.last.name[nd.last.len])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 goto exit;
1718
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001719 dir = nd.path.dentry;
1720 nd.flags &= ~LOOKUP_PARENT;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001721 mutex_lock(&dir->d_inode->i_mutex);
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001722 path.dentry = lookup_hash(&nd);
1723 path.mnt = nd.path.mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
1725do_last:
Al Viro4e7506e2005-06-06 13:36:00 -07001726 error = PTR_ERR(path.dentry);
1727 if (IS_ERR(path.dentry)) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001728 mutex_unlock(&dir->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 goto exit;
1730 }
1731
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001732 if (IS_ERR(nd.intent.open.file)) {
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001733 error = PTR_ERR(nd.intent.open.file);
Dave Hansen4a3fd212008-02-15 14:37:48 -08001734 goto exit_mutex_unlock;
Oleg Drokin4af4c522006-03-25 03:06:54 -08001735 }
1736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 /* Negative dentry, just create the file */
Al Viro4e7506e2005-06-06 13:36:00 -07001738 if (!path.dentry->d_inode) {
Dave Hansen4a3fd212008-02-15 14:37:48 -08001739 /*
1740 * This write is needed to ensure that a
1741 * ro->rw transition does not occur between
1742 * the time when the file is created and when
1743 * a permanent write count is taken through
1744 * the 'struct file' in nameidata_to_filp().
1745 */
1746 error = mnt_want_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 if (error)
Dave Hansen4a3fd212008-02-15 14:37:48 -08001748 goto exit_mutex_unlock;
1749 error = __open_namei_create(&nd, &path, flag, mode);
1750 if (error) {
1751 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 goto exit;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001753 }
1754 filp = nameidata_to_filp(&nd, open_flag);
1755 mnt_drop_write(nd.path.mnt);
1756 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 }
1758
1759 /*
1760 * It already exists.
1761 */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001762 mutex_unlock(&dir->d_inode->i_mutex);
Al Viro5a190ae2007-06-07 12:19:32 -04001763 audit_inode(pathname, path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
1765 error = -EEXIST;
1766 if (flag & O_EXCL)
1767 goto exit_dput;
1768
Al Viroe13b2102005-06-06 13:36:06 -07001769 if (__follow_mount(&path)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 error = -ELOOP;
Al Viroba7a4c12005-06-06 13:36:08 -07001771 if (flag & O_NOFOLLOW)
1772 goto exit_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04001774
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 error = -ENOENT;
Al Viro4e7506e2005-06-06 13:36:00 -07001776 if (!path.dentry->d_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 goto exit_dput;
Al Viro4e7506e2005-06-06 13:36:00 -07001778 if (path.dentry->d_inode->i_op && path.dentry->d_inode->i_op->follow_link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 goto do_link;
1780
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001781 path_to_nameidata(&path, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 error = -EISDIR;
Al Viro4e7506e2005-06-06 13:36:00 -07001783 if (path.dentry->d_inode && S_ISDIR(path.dentry->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 goto exit;
1785ok:
Dave Hansen4a3fd212008-02-15 14:37:48 -08001786 /*
1787 * Consider:
1788 * 1. may_open() truncates a file
1789 * 2. a rw->ro mount transition occurs
1790 * 3. nameidata_to_filp() fails due to
1791 * the ro mount.
1792 * That would be inconsistent, and should
1793 * be avoided. Taking this mnt write here
1794 * ensures that (2) can not occur.
1795 */
1796 will_write = open_will_write_to_fs(flag, nd.path.dentry->d_inode);
1797 if (will_write) {
1798 error = mnt_want_write(nd.path.mnt);
1799 if (error)
1800 goto exit;
1801 }
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001802 error = may_open(&nd, acc_mode, flag);
Dave Hansen4a3fd212008-02-15 14:37:48 -08001803 if (error) {
1804 if (will_write)
1805 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 goto exit;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001807 }
1808 filp = nameidata_to_filp(&nd, open_flag);
1809 /*
1810 * It is now safe to drop the mnt write
1811 * because the filp has had a write taken
1812 * on its behalf.
1813 */
1814 if (will_write)
1815 mnt_drop_write(nd.path.mnt);
1816 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Dave Hansen4a3fd212008-02-15 14:37:48 -08001818exit_mutex_unlock:
1819 mutex_unlock(&dir->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820exit_dput:
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001821 path_put_conditional(&path, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822exit:
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001823 if (!IS_ERR(nd.intent.open.file))
1824 release_open_intent(&nd);
1825 path_put(&nd.path);
1826 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
1828do_link:
1829 error = -ELOOP;
1830 if (flag & O_NOFOLLOW)
1831 goto exit_dput;
1832 /*
1833 * This is subtle. Instead of calling do_follow_link() we do the
1834 * thing by hands. The reason is that this way we have zero link_count
1835 * and path_walk() (called from ->follow_link) honoring LOOKUP_PARENT.
1836 * After that we have the parent and last component, i.e.
1837 * we are in the same situation as after the first path_walk().
1838 * Well, almost - if the last component is normal we get its copy
1839 * stored in nd->last.name and we will have to putname() it when we
1840 * are done. Procfs-like symlinks just set LAST_BIND.
1841 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001842 nd.flags |= LOOKUP_PARENT;
1843 error = security_inode_follow_link(path.dentry, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 if (error)
1845 goto exit_dput;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001846 error = __do_follow_link(&path, &nd);
Kirill Korotaevde459212006-07-14 00:23:49 -07001847 if (error) {
1848 /* Does someone understand code flow here? Or it is only
1849 * me so stupid? Anathema to whoever designed this non-sense
1850 * with "intent.open".
1851 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001852 release_open_intent(&nd);
1853 return ERR_PTR(error);
Kirill Korotaevde459212006-07-14 00:23:49 -07001854 }
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001855 nd.flags &= ~LOOKUP_PARENT;
1856 if (nd.last_type == LAST_BIND)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 goto ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 error = -EISDIR;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001859 if (nd.last_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 goto exit;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001861 if (nd.last.name[nd.last.len]) {
1862 __putname(nd.last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 goto exit;
1864 }
1865 error = -ELOOP;
1866 if (count++==32) {
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001867 __putname(nd.last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 goto exit;
1869 }
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001870 dir = nd.path.dentry;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001871 mutex_lock(&dir->d_inode->i_mutex);
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001872 path.dentry = lookup_hash(&nd);
1873 path.mnt = nd.path.mnt;
1874 __putname(nd.last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 goto do_last;
1876}
1877
1878/**
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001879 * filp_open - open file and return file pointer
1880 *
1881 * @filename: path to open
1882 * @flags: open flags as per the open(2) second argument
1883 * @mode: mode for the new file if O_CREAT is set, else ignored
1884 *
1885 * This is the helper to open a file from kernelspace if you really
1886 * have to. But in generally you should not do this, so please move
1887 * along, nothing to see here..
1888 */
1889struct file *filp_open(const char *filename, int flags, int mode)
1890{
1891 return do_filp_open(AT_FDCWD, filename, flags, mode);
1892}
1893EXPORT_SYMBOL(filp_open);
1894
1895/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 * lookup_create - lookup a dentry, creating it if it doesn't exist
1897 * @nd: nameidata info
1898 * @is_dir: directory flag
1899 *
1900 * Simple function to lookup and return a dentry and create it
1901 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001902 *
Jan Blunck4ac91372008-02-14 19:34:32 -08001903 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 */
1905struct dentry *lookup_create(struct nameidata *nd, int is_dir)
1906{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001907 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Jan Blunck4ac91372008-02-14 19:34:32 -08001909 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001910 /*
1911 * Yucky last component or no last component at all?
1912 * (foo/., foo/.., /////)
1913 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 if (nd->last_type != LAST_NORM)
1915 goto fail;
1916 nd->flags &= ~LOOKUP_PARENT;
ASANO Masahiroa6349042006-08-22 20:06:02 -04001917 nd->flags |= LOOKUP_CREATE;
1918 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001919
1920 /*
1921 * Do the final lookup.
1922 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08001923 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 if (IS_ERR(dentry))
1925 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001926
Al Viroe9baf6e2008-05-15 04:49:12 -04001927 if (dentry->d_inode)
1928 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001929 /*
1930 * Special case - lookup gave negative, but... we had foo/bar/
1931 * From the vfs_mknod() POV we just have a negative dentry -
1932 * all is fine. Let's be bastards - you had / on the end, you've
1933 * been asking for (non-existent) directory. -ENOENT for you.
1934 */
Al Viroe9baf6e2008-05-15 04:49:12 -04001935 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
1936 dput(dentry);
1937 dentry = ERR_PTR(-ENOENT);
1938 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04001940eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04001942 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943fail:
1944 return dentry;
1945}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07001946EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947
1948int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1949{
1950 int error = may_create(dir, dentry, NULL);
1951
1952 if (error)
1953 return error;
1954
1955 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1956 return -EPERM;
1957
1958 if (!dir->i_op || !dir->i_op->mknod)
1959 return -EPERM;
1960
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07001961 error = devcgroup_inode_mknod(mode, dev);
1962 if (error)
1963 return error;
1964
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 error = security_inode_mknod(dir, dentry, mode, dev);
1966 if (error)
1967 return error;
1968
1969 DQUOT_INIT(dir);
1970 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001971 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001972 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 return error;
1974}
1975
Dave Hansen463c3192008-02-15 14:37:57 -08001976static int may_mknod(mode_t mode)
1977{
1978 switch (mode & S_IFMT) {
1979 case S_IFREG:
1980 case S_IFCHR:
1981 case S_IFBLK:
1982 case S_IFIFO:
1983 case S_IFSOCK:
1984 case 0: /* zero mode translates to S_IFREG */
1985 return 0;
1986 case S_IFDIR:
1987 return -EPERM;
1988 default:
1989 return -EINVAL;
1990 }
1991}
1992
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001993asmlinkage long sys_mknodat(int dfd, const char __user *filename, int mode,
1994 unsigned dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
1996 int error = 0;
1997 char * tmp;
1998 struct dentry * dentry;
1999 struct nameidata nd;
2000
2001 if (S_ISDIR(mode))
2002 return -EPERM;
2003 tmp = getname(filename);
2004 if (IS_ERR(tmp))
2005 return PTR_ERR(tmp);
2006
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002007 error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 if (error)
2009 goto out;
2010 dentry = lookup_create(&nd, 0);
Dave Hansen463c3192008-02-15 14:37:57 -08002011 if (IS_ERR(dentry)) {
2012 error = PTR_ERR(dentry);
2013 goto out_unlock;
2014 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002015 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 mode &= ~current->fs->umask;
Dave Hansen463c3192008-02-15 14:37:57 -08002017 error = may_mknod(mode);
2018 if (error)
2019 goto out_dput;
2020 error = mnt_want_write(nd.path.mnt);
2021 if (error)
2022 goto out_dput;
2023 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08002025 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 break;
2027 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002028 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 new_decode_dev(dev));
2030 break;
2031 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002032 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 }
Dave Hansen463c3192008-02-15 14:37:57 -08002035 mnt_drop_write(nd.path.mnt);
2036out_dput:
2037 dput(dentry);
2038out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002039 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002040 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041out:
2042 putname(tmp);
2043
2044 return error;
2045}
2046
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002047asmlinkage long sys_mknod(const char __user *filename, int mode, unsigned dev)
2048{
2049 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2050}
2051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2053{
2054 int error = may_create(dir, dentry, NULL);
2055
2056 if (error)
2057 return error;
2058
2059 if (!dir->i_op || !dir->i_op->mkdir)
2060 return -EPERM;
2061
2062 mode &= (S_IRWXUGO|S_ISVTX);
2063 error = security_inode_mkdir(dir, dentry, mode);
2064 if (error)
2065 return error;
2066
2067 DQUOT_INIT(dir);
2068 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002069 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002070 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 return error;
2072}
2073
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002074asmlinkage long sys_mkdirat(int dfd, const char __user *pathname, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
2076 int error = 0;
2077 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002078 struct dentry *dentry;
2079 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080
2081 tmp = getname(pathname);
2082 error = PTR_ERR(tmp);
Dave Hansen6902d922006-09-30 23:29:01 -07002083 if (IS_ERR(tmp))
2084 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Dave Hansen6902d922006-09-30 23:29:01 -07002086 error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
2087 if (error)
2088 goto out;
2089 dentry = lookup_create(&nd, 1);
2090 error = PTR_ERR(dentry);
2091 if (IS_ERR(dentry))
2092 goto out_unlock;
2093
Jan Blunck4ac91372008-02-14 19:34:32 -08002094 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Dave Hansen6902d922006-09-30 23:29:01 -07002095 mode &= ~current->fs->umask;
Dave Hansen463c3192008-02-15 14:37:57 -08002096 error = mnt_want_write(nd.path.mnt);
2097 if (error)
2098 goto out_dput;
Jan Blunck4ac91372008-02-14 19:34:32 -08002099 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Dave Hansen463c3192008-02-15 14:37:57 -08002100 mnt_drop_write(nd.path.mnt);
2101out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002102 dput(dentry);
2103out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002104 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002105 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106out:
Dave Hansen6902d922006-09-30 23:29:01 -07002107 putname(tmp);
2108out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 return error;
2110}
2111
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002112asmlinkage long sys_mkdir(const char __user *pathname, int mode)
2113{
2114 return sys_mkdirat(AT_FDCWD, pathname, mode);
2115}
2116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117/*
2118 * We try to drop the dentry early: we should have
2119 * a usage count of 2 if we're the only user of this
2120 * dentry, and if that is true (possibly after pruning
2121 * the dcache), then we drop the dentry now.
2122 *
2123 * A low-level filesystem can, if it choses, legally
2124 * do a
2125 *
2126 * if (!d_unhashed(dentry))
2127 * return -EBUSY;
2128 *
2129 * if it cannot handle the case of removing a directory
2130 * that is still in use by something else..
2131 */
2132void dentry_unhash(struct dentry *dentry)
2133{
2134 dget(dentry);
Vasily Averindc168422006-12-06 20:37:07 -08002135 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 spin_lock(&dcache_lock);
2137 spin_lock(&dentry->d_lock);
2138 if (atomic_read(&dentry->d_count) == 2)
2139 __d_drop(dentry);
2140 spin_unlock(&dentry->d_lock);
2141 spin_unlock(&dcache_lock);
2142}
2143
2144int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2145{
2146 int error = may_delete(dir, dentry, 1);
2147
2148 if (error)
2149 return error;
2150
2151 if (!dir->i_op || !dir->i_op->rmdir)
2152 return -EPERM;
2153
2154 DQUOT_INIT(dir);
2155
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002156 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 dentry_unhash(dentry);
2158 if (d_mountpoint(dentry))
2159 error = -EBUSY;
2160 else {
2161 error = security_inode_rmdir(dir, dentry);
2162 if (!error) {
2163 error = dir->i_op->rmdir(dir, dentry);
2164 if (!error)
2165 dentry->d_inode->i_flags |= S_DEAD;
2166 }
2167 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002168 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 d_delete(dentry);
2171 }
2172 dput(dentry);
2173
2174 return error;
2175}
2176
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002177static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
2179 int error = 0;
2180 char * name;
2181 struct dentry *dentry;
2182 struct nameidata nd;
2183
2184 name = getname(pathname);
2185 if(IS_ERR(name))
2186 return PTR_ERR(name);
2187
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002188 error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 if (error)
2190 goto exit;
2191
2192 switch(nd.last_type) {
2193 case LAST_DOTDOT:
2194 error = -ENOTEMPTY;
2195 goto exit1;
2196 case LAST_DOT:
2197 error = -EINVAL;
2198 goto exit1;
2199 case LAST_ROOT:
2200 error = -EBUSY;
2201 goto exit1;
2202 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002203 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002204 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002206 if (IS_ERR(dentry))
2207 goto exit2;
Dave Hansen06227532008-02-15 14:37:34 -08002208 error = mnt_want_write(nd.path.mnt);
2209 if (error)
2210 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002211 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08002212 mnt_drop_write(nd.path.mnt);
2213exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002214 dput(dentry);
2215exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002216 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002218 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219exit:
2220 putname(name);
2221 return error;
2222}
2223
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002224asmlinkage long sys_rmdir(const char __user *pathname)
2225{
2226 return do_rmdir(AT_FDCWD, pathname);
2227}
2228
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229int vfs_unlink(struct inode *dir, struct dentry *dentry)
2230{
2231 int error = may_delete(dir, dentry, 0);
2232
2233 if (error)
2234 return error;
2235
2236 if (!dir->i_op || !dir->i_op->unlink)
2237 return -EPERM;
2238
2239 DQUOT_INIT(dir);
2240
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002241 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 if (d_mountpoint(dentry))
2243 error = -EBUSY;
2244 else {
2245 error = security_inode_unlink(dir, dentry);
2246 if (!error)
2247 error = dir->i_op->unlink(dir, dentry);
2248 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002249 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
2251 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2252 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002253 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 }
Robert Love0eeca282005-07-12 17:06:03 -04002256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 return error;
2258}
2259
2260/*
2261 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002262 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 * writeout happening, and we don't want to prevent access to the directory
2264 * while waiting on the I/O.
2265 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002266static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267{
2268 int error = 0;
2269 char * name;
2270 struct dentry *dentry;
2271 struct nameidata nd;
2272 struct inode *inode = NULL;
2273
2274 name = getname(pathname);
2275 if(IS_ERR(name))
2276 return PTR_ERR(name);
2277
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002278 error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 if (error)
2280 goto exit;
2281 error = -EISDIR;
2282 if (nd.last_type != LAST_NORM)
2283 goto exit1;
Jan Blunck4ac91372008-02-14 19:34:32 -08002284 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002285 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 error = PTR_ERR(dentry);
2287 if (!IS_ERR(dentry)) {
2288 /* Why not before? Because we want correct error value */
2289 if (nd.last.name[nd.last.len])
2290 goto slashes;
2291 inode = dentry->d_inode;
2292 if (inode)
2293 atomic_inc(&inode->i_count);
Dave Hansen06227532008-02-15 14:37:34 -08002294 error = mnt_want_write(nd.path.mnt);
2295 if (error)
2296 goto exit2;
Jan Blunck4ac91372008-02-14 19:34:32 -08002297 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08002298 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 exit2:
2300 dput(dentry);
2301 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002302 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 if (inode)
2304 iput(inode); /* truncate the inode here */
2305exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002306 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307exit:
2308 putname(name);
2309 return error;
2310
2311slashes:
2312 error = !dentry->d_inode ? -ENOENT :
2313 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2314 goto exit2;
2315}
2316
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002317asmlinkage long sys_unlinkat(int dfd, const char __user *pathname, int flag)
2318{
2319 if ((flag & ~AT_REMOVEDIR) != 0)
2320 return -EINVAL;
2321
2322 if (flag & AT_REMOVEDIR)
2323 return do_rmdir(dfd, pathname);
2324
2325 return do_unlinkat(dfd, pathname);
2326}
2327
2328asmlinkage long sys_unlink(const char __user *pathname)
2329{
2330 return do_unlinkat(AT_FDCWD, pathname);
2331}
2332
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002333int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334{
2335 int error = may_create(dir, dentry, NULL);
2336
2337 if (error)
2338 return error;
2339
2340 if (!dir->i_op || !dir->i_op->symlink)
2341 return -EPERM;
2342
2343 error = security_inode_symlink(dir, dentry, oldname);
2344 if (error)
2345 return error;
2346
2347 DQUOT_INIT(dir);
2348 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002349 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002350 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 return error;
2352}
2353
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002354asmlinkage long sys_symlinkat(const char __user *oldname,
2355 int newdfd, const char __user *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356{
2357 int error = 0;
2358 char * from;
2359 char * to;
Dave Hansen6902d922006-09-30 23:29:01 -07002360 struct dentry *dentry;
2361 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362
2363 from = getname(oldname);
2364 if(IS_ERR(from))
2365 return PTR_ERR(from);
2366 to = getname(newname);
2367 error = PTR_ERR(to);
Dave Hansen6902d922006-09-30 23:29:01 -07002368 if (IS_ERR(to))
2369 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Dave Hansen6902d922006-09-30 23:29:01 -07002371 error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
2372 if (error)
2373 goto out;
2374 dentry = lookup_create(&nd, 0);
2375 error = PTR_ERR(dentry);
2376 if (IS_ERR(dentry))
2377 goto out_unlock;
2378
Dave Hansen75c3f292008-02-15 14:37:45 -08002379 error = mnt_want_write(nd.path.mnt);
2380 if (error)
2381 goto out_dput;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002382 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
Dave Hansen75c3f292008-02-15 14:37:45 -08002383 mnt_drop_write(nd.path.mnt);
2384out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002385 dput(dentry);
2386out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002387 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002388 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389out:
Dave Hansen6902d922006-09-30 23:29:01 -07002390 putname(to);
2391out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 putname(from);
2393 return error;
2394}
2395
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002396asmlinkage long sys_symlink(const char __user *oldname, const char __user *newname)
2397{
2398 return sys_symlinkat(oldname, AT_FDCWD, newname);
2399}
2400
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2402{
2403 struct inode *inode = old_dentry->d_inode;
2404 int error;
2405
2406 if (!inode)
2407 return -ENOENT;
2408
2409 error = may_create(dir, new_dentry, NULL);
2410 if (error)
2411 return error;
2412
2413 if (dir->i_sb != inode->i_sb)
2414 return -EXDEV;
2415
2416 /*
2417 * A link to an append-only or immutable file cannot be created.
2418 */
2419 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2420 return -EPERM;
2421 if (!dir->i_op || !dir->i_op->link)
2422 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002423 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 return -EPERM;
2425
2426 error = security_inode_link(old_dentry, dir, new_dentry);
2427 if (error)
2428 return error;
2429
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002430 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 DQUOT_INIT(dir);
2432 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002433 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002434 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002435 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 return error;
2437}
2438
2439/*
2440 * Hardlinks are often used in delicate situations. We avoid
2441 * security-related surprises by not following symlinks on the
2442 * newname. --KAB
2443 *
2444 * We don't follow them on the oldname either to be compatible
2445 * with linux 2.0, and to avoid hard-linking to directories
2446 * and other special files. --ADM
2447 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002448asmlinkage long sys_linkat(int olddfd, const char __user *oldname,
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002449 int newdfd, const char __user *newname,
2450 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
2452 struct dentry *new_dentry;
2453 struct nameidata nd, old_nd;
2454 int error;
2455 char * to;
2456
Ulrich Drepper45c9b112006-06-25 05:49:11 -07002457 if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002458 return -EINVAL;
2459
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 to = getname(newname);
2461 if (IS_ERR(to))
2462 return PTR_ERR(to);
2463
Ulrich Drepper45c9b112006-06-25 05:49:11 -07002464 error = __user_walk_fd(olddfd, oldname,
2465 flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
2466 &old_nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 if (error)
2468 goto exit;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002469 error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 if (error)
2471 goto out;
2472 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08002473 if (old_nd.path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 goto out_release;
2475 new_dentry = lookup_create(&nd, 0);
2476 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002477 if (IS_ERR(new_dentry))
2478 goto out_unlock;
Dave Hansen75c3f292008-02-15 14:37:45 -08002479 error = mnt_want_write(nd.path.mnt);
2480 if (error)
2481 goto out_dput;
Jan Blunck4ac91372008-02-14 19:34:32 -08002482 error = vfs_link(old_nd.path.dentry, nd.path.dentry->d_inode, new_dentry);
Dave Hansen75c3f292008-02-15 14:37:45 -08002483 mnt_drop_write(nd.path.mnt);
2484out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002485 dput(new_dentry);
2486out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002487 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08002489 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490out:
Jan Blunck1d957f92008-02-14 19:34:35 -08002491 path_put(&old_nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492exit:
2493 putname(to);
2494
2495 return error;
2496}
2497
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002498asmlinkage long sys_link(const char __user *oldname, const char __user *newname)
2499{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002500 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002501}
2502
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503/*
2504 * The worst of all namespace operations - renaming directory. "Perverted"
2505 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2506 * Problems:
2507 * a) we can get into loop creation. Check is done in is_subdir().
2508 * b) race potential - two innocent renames can create a loop together.
2509 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002510 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 * story.
2512 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002513 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 * whether the target exists). Solution: try to be smart with locking
2515 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002516 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 * move will be locked. Thus we can rank directories by the tree
2518 * (ancestors first) and rank all non-directories after them.
2519 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002520 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 * HOWEVER, it relies on the assumption that any object with ->lookup()
2522 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2523 * we'd better make sure that there's no link(2) for them.
2524 * d) some filesystems don't support opened-but-unlinked directories,
2525 * either because of layout or because they are not ready to deal with
2526 * all cases correctly. The latter will be fixed (taking this sort of
2527 * stuff into VFS), but the former is not going away. Solution: the same
2528 * trick as in rmdir().
2529 * e) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002530 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002532 * ->i_mutex on parents, which works but leads to some truely excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 * locking].
2534 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07002535static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2536 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537{
2538 int error = 0;
2539 struct inode *target;
2540
2541 /*
2542 * If we are going to change the parent - check write permissions,
2543 * we'll need to flip '..'.
2544 */
2545 if (new_dir != old_dir) {
2546 error = permission(old_dentry->d_inode, MAY_WRITE, NULL);
2547 if (error)
2548 return error;
2549 }
2550
2551 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2552 if (error)
2553 return error;
2554
2555 target = new_dentry->d_inode;
2556 if (target) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002557 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 dentry_unhash(new_dentry);
2559 }
2560 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2561 error = -EBUSY;
2562 else
2563 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2564 if (target) {
2565 if (!error)
2566 target->i_flags |= S_DEAD;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002567 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 if (d_unhashed(new_dentry))
2569 d_rehash(new_dentry);
2570 dput(new_dentry);
2571 }
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002572 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07002573 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2574 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 return error;
2576}
2577
Adrian Bunk75c96f82005-05-05 16:16:09 -07002578static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
2579 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580{
2581 struct inode *target;
2582 int error;
2583
2584 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2585 if (error)
2586 return error;
2587
2588 dget(new_dentry);
2589 target = new_dentry->d_inode;
2590 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002591 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2593 error = -EBUSY;
2594 else
2595 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2596 if (!error) {
Mark Fasheh349457c2006-09-08 14:22:21 -07002597 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 d_move(old_dentry, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 }
2600 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002601 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 dput(new_dentry);
2603 return error;
2604}
2605
2606int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
2607 struct inode *new_dir, struct dentry *new_dentry)
2608{
2609 int error;
2610 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Robert Love0eeca282005-07-12 17:06:03 -04002611 const char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
2613 if (old_dentry->d_inode == new_dentry->d_inode)
2614 return 0;
2615
2616 error = may_delete(old_dir, old_dentry, is_dir);
2617 if (error)
2618 return error;
2619
2620 if (!new_dentry->d_inode)
2621 error = may_create(new_dir, new_dentry, NULL);
2622 else
2623 error = may_delete(new_dir, new_dentry, is_dir);
2624 if (error)
2625 return error;
2626
2627 if (!old_dir->i_op || !old_dir->i_op->rename)
2628 return -EPERM;
2629
2630 DQUOT_INIT(old_dir);
2631 DQUOT_INIT(new_dir);
2632
Robert Love0eeca282005-07-12 17:06:03 -04002633 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
2634
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 if (is_dir)
2636 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
2637 else
2638 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
2639 if (!error) {
Robert Love0eeca282005-07-12 17:06:03 -04002640 const char *new_name = old_dentry->d_name.name;
John McCutchan89204c42005-08-15 12:13:28 -04002641 fsnotify_move(old_dir, new_dir, old_name, new_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04002642 new_dentry->d_inode, old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 }
Robert Love0eeca282005-07-12 17:06:03 -04002644 fsnotify_oldname_free(old_name);
2645
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 return error;
2647}
2648
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002649static int do_rename(int olddfd, const char *oldname,
2650 int newdfd, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651{
2652 int error = 0;
2653 struct dentry * old_dir, * new_dir;
2654 struct dentry * old_dentry, *new_dentry;
2655 struct dentry * trap;
2656 struct nameidata oldnd, newnd;
2657
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002658 error = do_path_lookup(olddfd, oldname, LOOKUP_PARENT, &oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 if (error)
2660 goto exit;
2661
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002662 error = do_path_lookup(newdfd, newname, LOOKUP_PARENT, &newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 if (error)
2664 goto exit1;
2665
2666 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08002667 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 goto exit2;
2669
Jan Blunck4ac91372008-02-14 19:34:32 -08002670 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 error = -EBUSY;
2672 if (oldnd.last_type != LAST_NORM)
2673 goto exit2;
2674
Jan Blunck4ac91372008-02-14 19:34:32 -08002675 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 if (newnd.last_type != LAST_NORM)
2677 goto exit2;
2678
2679 trap = lock_rename(new_dir, old_dir);
2680
Christoph Hellwig49705b72005-11-08 21:35:06 -08002681 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 error = PTR_ERR(old_dentry);
2683 if (IS_ERR(old_dentry))
2684 goto exit3;
2685 /* source must exist */
2686 error = -ENOENT;
2687 if (!old_dentry->d_inode)
2688 goto exit4;
2689 /* unless the source is a directory trailing slashes give -ENOTDIR */
2690 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
2691 error = -ENOTDIR;
2692 if (oldnd.last.name[oldnd.last.len])
2693 goto exit4;
2694 if (newnd.last.name[newnd.last.len])
2695 goto exit4;
2696 }
2697 /* source should not be ancestor of target */
2698 error = -EINVAL;
2699 if (old_dentry == trap)
2700 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08002701 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 error = PTR_ERR(new_dentry);
2703 if (IS_ERR(new_dentry))
2704 goto exit4;
2705 /* target should not be an ancestor of source */
2706 error = -ENOTEMPTY;
2707 if (new_dentry == trap)
2708 goto exit5;
2709
Dave Hansen9079b1e2008-02-15 14:37:49 -08002710 error = mnt_want_write(oldnd.path.mnt);
2711 if (error)
2712 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 error = vfs_rename(old_dir->d_inode, old_dentry,
2714 new_dir->d_inode, new_dentry);
Dave Hansen9079b1e2008-02-15 14:37:49 -08002715 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716exit5:
2717 dput(new_dentry);
2718exit4:
2719 dput(old_dentry);
2720exit3:
2721 unlock_rename(new_dir, old_dir);
2722exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08002723 path_put(&newnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002725 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726exit:
2727 return error;
2728}
2729
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002730asmlinkage long sys_renameat(int olddfd, const char __user *oldname,
2731 int newdfd, const char __user *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732{
2733 int error;
2734 char * from;
2735 char * to;
2736
2737 from = getname(oldname);
2738 if(IS_ERR(from))
2739 return PTR_ERR(from);
2740 to = getname(newname);
2741 error = PTR_ERR(to);
2742 if (!IS_ERR(to)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002743 error = do_rename(olddfd, from, newdfd, to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 putname(to);
2745 }
2746 putname(from);
2747 return error;
2748}
2749
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002750asmlinkage long sys_rename(const char __user *oldname, const char __user *newname)
2751{
2752 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
2753}
2754
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
2756{
2757 int len;
2758
2759 len = PTR_ERR(link);
2760 if (IS_ERR(link))
2761 goto out;
2762
2763 len = strlen(link);
2764 if (len > (unsigned) buflen)
2765 len = buflen;
2766 if (copy_to_user(buffer, link, len))
2767 len = -EFAULT;
2768out:
2769 return len;
2770}
2771
2772/*
2773 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
2774 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
2775 * using) it for any given inode is up to filesystem.
2776 */
2777int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2778{
2779 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002780 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07002781 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002782
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002784 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07002785 if (IS_ERR(cookie))
2786 return PTR_ERR(cookie);
2787
2788 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
2789 if (dentry->d_inode->i_op->put_link)
2790 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
2791 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792}
2793
2794int vfs_follow_link(struct nameidata *nd, const char *link)
2795{
2796 return __vfs_follow_link(nd, link);
2797}
2798
2799/* get the link contents into pagecache */
2800static char *page_getlink(struct dentry * dentry, struct page **ppage)
2801{
2802 struct page * page;
2803 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07002804 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07002806 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 *ppage = page;
2808 return kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809}
2810
2811int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2812{
2813 struct page *page = NULL;
2814 char *s = page_getlink(dentry, &page);
2815 int res = vfs_readlink(dentry,buffer,buflen,s);
2816 if (page) {
2817 kunmap(page);
2818 page_cache_release(page);
2819 }
2820 return res;
2821}
2822
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002823void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002825 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002827 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828}
2829
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002830void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002832 struct page *page = cookie;
2833
2834 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 kunmap(page);
2836 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 }
2838}
2839
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002840int __page_symlink(struct inode *inode, const char *symname, int len,
2841 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842{
2843 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002844 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07002845 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08002846 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 char *kaddr;
2848
NeilBrown7e53cac2006-03-25 03:07:57 -08002849retry:
Nick Pigginafddba42007-10-16 01:25:01 -07002850 err = pagecache_write_begin(NULL, mapping, 0, len-1,
2851 AOP_FLAG_UNINTERRUPTIBLE, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07002853 goto fail;
2854
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 kaddr = kmap_atomic(page, KM_USER0);
2856 memcpy(kaddr, symname, len-1);
2857 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07002858
2859 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
2860 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 if (err < 0)
2862 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07002863 if (err < len-1)
2864 goto retry;
2865
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 mark_inode_dirty(inode);
2867 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868fail:
2869 return err;
2870}
2871
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002872int page_symlink(struct inode *inode, const char *symname, int len)
2873{
2874 return __page_symlink(inode, symname, len,
2875 mapping_gfp_mask(inode->i_mapping));
2876}
2877
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002878const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 .readlink = generic_readlink,
2880 .follow_link = page_follow_link_light,
2881 .put_link = page_put_link,
2882};
2883
2884EXPORT_SYMBOL(__user_walk);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002885EXPORT_SYMBOL(__user_walk_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886EXPORT_SYMBOL(follow_down);
2887EXPORT_SYMBOL(follow_up);
2888EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
2889EXPORT_SYMBOL(getname);
2890EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891EXPORT_SYMBOL(lookup_one_len);
2892EXPORT_SYMBOL(page_follow_link_light);
2893EXPORT_SYMBOL(page_put_link);
2894EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002895EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896EXPORT_SYMBOL(page_symlink);
2897EXPORT_SYMBOL(page_symlink_inode_operations);
2898EXPORT_SYMBOL(path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002899EXPORT_SYMBOL(vfs_path_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900EXPORT_SYMBOL(permission);
Christoph Hellwige4543ed2005-11-08 21:35:04 -08002901EXPORT_SYMBOL(vfs_permission);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -08002902EXPORT_SYMBOL(file_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903EXPORT_SYMBOL(unlock_rename);
2904EXPORT_SYMBOL(vfs_create);
2905EXPORT_SYMBOL(vfs_follow_link);
2906EXPORT_SYMBOL(vfs_link);
2907EXPORT_SYMBOL(vfs_mkdir);
2908EXPORT_SYMBOL(vfs_mknod);
2909EXPORT_SYMBOL(generic_permission);
2910EXPORT_SYMBOL(vfs_readlink);
2911EXPORT_SYMBOL(vfs_rename);
2912EXPORT_SYMBOL(vfs_rmdir);
2913EXPORT_SYMBOL(vfs_symlink);
2914EXPORT_SYMBOL(vfs_unlink);
2915EXPORT_SYMBOL(dentry_unhash);
2916EXPORT_SYMBOL(generic_readlink);