blob: 6d75430358ac654fb0eb3ed56d1203bf42c3fb19 [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
Miklos Szeredi22590e42007-10-16 23:27:08 -0700255 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode)) {
256 /*
257 * MAY_EXEC on regular files is denied if the fs is mounted
258 * with the "noexec" flag.
259 */
Dave Hansenc7eb2662007-10-16 23:31:14 -0700260 if (mnt && (mnt->mnt_flags & MNT_NOEXEC))
Miklos Szeredi22590e42007-10-16 23:27:08 -0700261 return -EACCES;
262 }
Trond Myklebusta343bb72006-08-22 20:06:03 -0400263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 /* Ordinary permission routines do not understand MAY_APPEND. */
Miklos Szeredi22590e42007-10-16 23:27:08 -0700265 if (inode->i_op && inode->i_op->permission) {
Al Virob77b0642008-07-17 09:37:02 -0400266 retval = inode->i_op->permission(inode, mask);
Miklos Szeredi22590e42007-10-16 23:27:08 -0700267 if (!retval) {
268 /*
269 * Exec permission on a regular file is denied if none
270 * of the execute bits are set.
271 *
272 * This check should be done by the ->permission()
273 * method.
274 */
275 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode) &&
276 !(inode->i_mode & S_IXUGO))
277 return -EACCES;
278 }
279 } else {
Al Viroe6305c42008-07-15 21:03:57 -0400280 retval = generic_permission(inode, mask, NULL);
Miklos Szeredi22590e42007-10-16 23:27:08 -0700281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 if (retval)
283 return retval;
284
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700285 retval = devcgroup_inode_permission(inode, mask);
286 if (retval)
287 return retval;
288
Al Viroe6305c42008-07-15 21:03:57 -0400289 return security_inode_permission(inode,
Al Virob77b0642008-07-17 09:37:02 -0400290 mask & (MAY_READ|MAY_WRITE|MAY_EXEC));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291}
292
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800293/**
294 * vfs_permission - check for access rights to a given path
295 * @nd: lookup result that describes the path
296 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
297 *
298 * Used to check for read/write/execute permissions on a path.
299 * We use "fsuid" for this, letting us set arbitrary permissions
300 * for filesystem access without changing the "normal" uids which
301 * are used for other things.
302 */
303int vfs_permission(struct nameidata *nd, int mask)
304{
Jan Blunck4ac91372008-02-14 19:34:32 -0800305 return permission(nd->path.dentry->d_inode, mask, nd);
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800306}
307
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800308/**
309 * file_permission - check for additional access rights to a given file
310 * @file: file to check access rights for
311 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
312 *
313 * Used to check for read/write/execute permissions on an already opened
314 * file.
315 *
316 * Note:
317 * Do not use this function in new code. All access checks should
318 * be done using vfs_permission().
319 */
320int file_permission(struct file *file, int mask)
321{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800322 return permission(file->f_path.dentry->d_inode, mask, NULL);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800323}
324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325/*
326 * get_write_access() gets write permission for a file.
327 * put_write_access() releases this write permission.
328 * This is used for regular files.
329 * We cannot support write (and maybe mmap read-write shared) accesses and
330 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
331 * can have the following values:
332 * 0: no writers, no VM_DENYWRITE mappings
333 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
334 * > 0: (i_writecount) users are writing to the file.
335 *
336 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
337 * except for the cases where we don't hold i_writecount yet. Then we need to
338 * use {get,deny}_write_access() - these functions check the sign and refuse
339 * to do the change if sign is wrong. Exclusion between them is provided by
340 * the inode->i_lock spinlock.
341 */
342
343int get_write_access(struct inode * inode)
344{
345 spin_lock(&inode->i_lock);
346 if (atomic_read(&inode->i_writecount) < 0) {
347 spin_unlock(&inode->i_lock);
348 return -ETXTBSY;
349 }
350 atomic_inc(&inode->i_writecount);
351 spin_unlock(&inode->i_lock);
352
353 return 0;
354}
355
356int deny_write_access(struct file * file)
357{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800358 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 spin_lock(&inode->i_lock);
361 if (atomic_read(&inode->i_writecount) > 0) {
362 spin_unlock(&inode->i_lock);
363 return -ETXTBSY;
364 }
365 atomic_dec(&inode->i_writecount);
366 spin_unlock(&inode->i_lock);
367
368 return 0;
369}
370
Jan Blunck1d957f92008-02-14 19:34:35 -0800371/**
Jan Blunck5dd784d2008-02-14 19:34:38 -0800372 * path_get - get a reference to a path
373 * @path: path to get the reference to
374 *
375 * Given a path increment the reference count to the dentry and the vfsmount.
376 */
377void path_get(struct path *path)
378{
379 mntget(path->mnt);
380 dget(path->dentry);
381}
382EXPORT_SYMBOL(path_get);
383
384/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800385 * path_put - put a reference to a path
386 * @path: path to put the reference to
387 *
388 * Given a path decrement the reference count to the dentry and the vfsmount.
389 */
390void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Jan Blunck1d957f92008-02-14 19:34:35 -0800392 dput(path->dentry);
393 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394}
Jan Blunck1d957f92008-02-14 19:34:35 -0800395EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Trond Myklebust834f2a42005-10-18 14:20:16 -0700397/**
398 * release_open_intent - free up open intent resources
399 * @nd: pointer to nameidata
400 */
401void release_open_intent(struct nameidata *nd)
402{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800403 if (nd->intent.open.file->f_path.dentry == NULL)
Trond Myklebust834f2a42005-10-18 14:20:16 -0700404 put_filp(nd->intent.open.file);
405 else
406 fput(nd->intent.open.file);
407}
408
Ian Kentbcdc5e02006-09-27 01:50:44 -0700409static inline struct dentry *
410do_revalidate(struct dentry *dentry, struct nameidata *nd)
411{
412 int status = dentry->d_op->d_revalidate(dentry, nd);
413 if (unlikely(status <= 0)) {
414 /*
415 * The dentry failed validation.
416 * If d_revalidate returned 0 attempt to invalidate
417 * the dentry otherwise d_revalidate is asking us
418 * to return a fail status.
419 */
420 if (!status) {
421 if (!d_invalidate(dentry)) {
422 dput(dentry);
423 dentry = NULL;
424 }
425 } else {
426 dput(dentry);
427 dentry = ERR_PTR(status);
428 }
429 }
430 return dentry;
431}
432
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433/*
434 * Internal lookup() using the new generic dcache.
435 * SMP-safe
436 */
437static struct dentry * cached_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
438{
439 struct dentry * dentry = __d_lookup(parent, name);
440
441 /* lockess __d_lookup may fail due to concurrent d_move()
442 * in some unrelated directory, so try with d_lookup
443 */
444 if (!dentry)
445 dentry = d_lookup(parent, name);
446
Ian Kentbcdc5e02006-09-27 01:50:44 -0700447 if (dentry && dentry->d_op && dentry->d_op->d_revalidate)
448 dentry = do_revalidate(dentry, nd);
449
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 return dentry;
451}
452
453/*
454 * Short-cut version of permission(), for calling by
455 * path_walk(), when dcache lock is held. Combines parts
456 * of permission() and generic_permission(), and tests ONLY for
457 * MAY_EXEC permission.
458 *
459 * If appropriate, check DAC only. If not appropriate, or
460 * short-cut DAC fails, then call permission() to do more
461 * complete permission check.
462 */
Al Viro672b16b2008-07-17 09:45:01 -0400463static int exec_permission_lite(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464{
465 umode_t mode = inode->i_mode;
466
467 if (inode->i_op && inode->i_op->permission)
468 return -EAGAIN;
469
470 if (current->fsuid == inode->i_uid)
471 mode >>= 6;
472 else if (in_group_p(inode->i_gid))
473 mode >>= 3;
474
475 if (mode & MAY_EXEC)
476 goto ok;
477
478 if ((inode->i_mode & S_IXUGO) && capable(CAP_DAC_OVERRIDE))
479 goto ok;
480
481 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_OVERRIDE))
482 goto ok;
483
484 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_READ_SEARCH))
485 goto ok;
486
487 return -EACCES;
488ok:
Al Virob77b0642008-07-17 09:37:02 -0400489 return security_inode_permission(inode, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492/*
493 * This is called when everything else fails, and we actually have
494 * to go to the low-level filesystem to find out what we should do..
495 *
496 * We get the directory semaphore, and after getting that we also
497 * make sure that nobody added the entry to the dcache in the meantime..
498 * SMP-safe
499 */
500static struct dentry * real_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
501{
502 struct dentry * result;
503 struct inode *dir = parent->d_inode;
504
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800505 mutex_lock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 /*
507 * First re-do the cached lookup just in case it was created
508 * while we waited for the directory semaphore..
509 *
510 * FIXME! This could use version numbering or similar to
511 * avoid unnecessary cache lookups.
512 *
513 * The "dcache_lock" is purely to protect the RCU list walker
514 * from concurrent renames at this point (we mustn't get false
515 * negatives from the RCU list walk here, unlike the optimistic
516 * fast walk).
517 *
518 * so doing d_lookup() (with seqlock), instead of lockfree __d_lookup
519 */
520 result = d_lookup(parent, name);
521 if (!result) {
Miklos Szeredid70b67c2008-07-02 21:30:15 +0200522 struct dentry *dentry;
523
524 /* Don't create child dentry for a dead directory. */
525 result = ERR_PTR(-ENOENT);
526 if (IS_DEADDIR(dir))
527 goto out_unlock;
528
529 dentry = d_alloc(parent, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 result = ERR_PTR(-ENOMEM);
531 if (dentry) {
532 result = dir->i_op->lookup(dir, dentry, nd);
533 if (result)
534 dput(dentry);
535 else
536 result = dentry;
537 }
Miklos Szeredid70b67c2008-07-02 21:30:15 +0200538out_unlock:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800539 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 return result;
541 }
542
543 /*
544 * Uhhuh! Nasty case: the cache was re-populated while
545 * we waited on the semaphore. Need to revalidate.
546 */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800547 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (result->d_op && result->d_op->d_revalidate) {
Ian Kentbcdc5e02006-09-27 01:50:44 -0700549 result = do_revalidate(result, nd);
550 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 result = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553 return result;
554}
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556/* SMP-safe */
Al Viro7f2da1e2008-05-10 20:44:54 -0400557static __always_inline void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558walk_init_root(const char *name, struct nameidata *nd)
559{
Andreas Mohre518ddb2006-09-29 02:01:22 -0700560 struct fs_struct *fs = current->fs;
561
562 read_lock(&fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -0800563 nd->path = fs->root;
564 path_get(&fs->root);
Andreas Mohre518ddb2006-09-29 02:01:22 -0700565 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Al Viroa02f76c2008-02-23 15:14:28 +0000568/*
569 * Wrapper to retry pathname resolution whenever the underlying
570 * file system returns an ESTALE.
571 *
572 * Retry the whole path once, forcing real lookup requests
573 * instead of relying on the dcache.
574 */
575static __always_inline int link_path_walk(const char *name, struct nameidata *nd)
576{
577 struct path save = nd->path;
578 int result;
579
580 /* make sure the stuff we saved doesn't go away */
Jan Blunckc8e7f442008-06-09 16:40:35 -0700581 path_get(&save);
Al Viroa02f76c2008-02-23 15:14:28 +0000582
583 result = __link_path_walk(name, nd);
584 if (result == -ESTALE) {
585 /* nd->path had been dropped */
586 nd->path = save;
Jan Blunckc8e7f442008-06-09 16:40:35 -0700587 path_get(&nd->path);
Al Viroa02f76c2008-02-23 15:14:28 +0000588 nd->flags |= LOOKUP_REVAL;
589 result = __link_path_walk(name, nd);
590 }
591
592 path_put(&save);
593
594 return result;
595}
596
Arjan van de Venf1662352006-01-14 13:21:31 -0800597static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
599 int res = 0;
600 char *name;
601 if (IS_ERR(link))
602 goto fail;
603
604 if (*link == '/') {
Jan Blunck1d957f92008-02-14 19:34:35 -0800605 path_put(&nd->path);
Al Viro7f2da1e2008-05-10 20:44:54 -0400606 walk_init_root(link, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608 res = link_path_walk(link, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (nd->depth || res || nd->last_type!=LAST_NORM)
610 return res;
611 /*
612 * If it is an iterative symlinks resolution in open_namei() we
613 * have to copy the last component. And all that crap because of
614 * bloody create() on broken symlinks. Furrfu...
615 */
616 name = __getname();
617 if (unlikely(!name)) {
Jan Blunck1d957f92008-02-14 19:34:35 -0800618 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 return -ENOMEM;
620 }
621 strcpy(name, nd->last.name);
622 nd->last.name = name;
623 return 0;
624fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800625 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return PTR_ERR(link);
627}
628
Jan Blunck1d957f92008-02-14 19:34:35 -0800629static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700630{
631 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800632 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700633 mntput(path->mnt);
634}
635
636static inline void path_to_nameidata(struct path *path, struct nameidata *nd)
637{
Jan Blunck4ac91372008-02-14 19:34:32 -0800638 dput(nd->path.dentry);
639 if (nd->path.mnt != path->mnt)
640 mntput(nd->path.mnt);
641 nd->path.mnt = path->mnt;
642 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700643}
644
Ian Kent051d3812006-03-27 01:14:53 -0800645static __always_inline int __do_follow_link(struct path *path, struct nameidata *nd)
646{
647 int error;
648 void *cookie;
649 struct dentry *dentry = path->dentry;
650
651 touch_atime(path->mnt, dentry);
652 nd_set_link(nd, NULL);
653
Jan Blunck4ac91372008-02-14 19:34:32 -0800654 if (path->mnt != nd->path.mnt) {
Ian Kent051d3812006-03-27 01:14:53 -0800655 path_to_nameidata(path, nd);
656 dget(dentry);
657 }
658 mntget(path->mnt);
659 cookie = dentry->d_inode->i_op->follow_link(dentry, nd);
660 error = PTR_ERR(cookie);
661 if (!IS_ERR(cookie)) {
662 char *s = nd_get_link(nd);
663 error = 0;
664 if (s)
665 error = __vfs_follow_link(nd, s);
666 if (dentry->d_inode->i_op->put_link)
667 dentry->d_inode->i_op->put_link(dentry, nd, cookie);
668 }
Jan Blunck09da59162008-02-14 19:34:37 -0800669 path_put(path);
Ian Kent051d3812006-03-27 01:14:53 -0800670
671 return error;
672}
673
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674/*
675 * This limits recursive symlink follows to 8, while
676 * limiting consecutive symlinks to 40.
677 *
678 * Without that kind of total limit, nasty chains of consecutive
679 * symlinks can cause almost arbitrarily long lookups.
680 */
Al Viro90ebe562005-06-06 13:35:58 -0700681static inline int do_follow_link(struct path *path, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 int err = -ELOOP;
684 if (current->link_count >= MAX_NESTED_LINKS)
685 goto loop;
686 if (current->total_link_count >= 40)
687 goto loop;
688 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
689 cond_resched();
Al Viro90ebe562005-06-06 13:35:58 -0700690 err = security_inode_follow_link(path->dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (err)
692 goto loop;
693 current->link_count++;
694 current->total_link_count++;
695 nd->depth++;
Al Virocd4e91d2005-06-06 13:36:03 -0700696 err = __do_follow_link(path, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 current->link_count--;
698 nd->depth--;
699 return err;
700loop:
Jan Blunck1d957f92008-02-14 19:34:35 -0800701 path_put_conditional(path, nd);
702 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return err;
704}
705
706int follow_up(struct vfsmount **mnt, struct dentry **dentry)
707{
708 struct vfsmount *parent;
709 struct dentry *mountpoint;
710 spin_lock(&vfsmount_lock);
711 parent=(*mnt)->mnt_parent;
712 if (parent == *mnt) {
713 spin_unlock(&vfsmount_lock);
714 return 0;
715 }
716 mntget(parent);
717 mountpoint=dget((*mnt)->mnt_mountpoint);
718 spin_unlock(&vfsmount_lock);
719 dput(*dentry);
720 *dentry = mountpoint;
721 mntput(*mnt);
722 *mnt = parent;
723 return 1;
724}
725
726/* no need for dcache_lock, as serialization is taken care in
727 * namespace.c
728 */
Al Viro463ffb22005-06-06 13:36:05 -0700729static int __follow_mount(struct path *path)
730{
731 int res = 0;
732 while (d_mountpoint(path->dentry)) {
733 struct vfsmount *mounted = lookup_mnt(path->mnt, path->dentry);
734 if (!mounted)
735 break;
736 dput(path->dentry);
737 if (res)
738 mntput(path->mnt);
739 path->mnt = mounted;
740 path->dentry = dget(mounted->mnt_root);
741 res = 1;
742 }
743 return res;
744}
745
Al Viro58c465e2005-06-06 13:36:13 -0700746static void follow_mount(struct vfsmount **mnt, struct dentry **dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 while (d_mountpoint(*dentry)) {
749 struct vfsmount *mounted = lookup_mnt(*mnt, *dentry);
750 if (!mounted)
751 break;
Al Viro58c465e2005-06-06 13:36:13 -0700752 dput(*dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 mntput(*mnt);
754 *mnt = mounted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 *dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757}
758
759/* no need for dcache_lock, as serialization is taken care in
760 * namespace.c
761 */
Al Viroe13b2102005-06-06 13:36:06 -0700762int follow_down(struct vfsmount **mnt, struct dentry **dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
764 struct vfsmount *mounted;
765
766 mounted = lookup_mnt(*mnt, *dentry);
767 if (mounted) {
Al Viroe13b2102005-06-06 13:36:06 -0700768 dput(*dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 mntput(*mnt);
770 *mnt = mounted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 *dentry = dget(mounted->mnt_root);
772 return 1;
773 }
774 return 0;
775}
776
Arjan van de Venf1662352006-01-14 13:21:31 -0800777static __always_inline void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Andreas Mohre518ddb2006-09-29 02:01:22 -0700779 struct fs_struct *fs = current->fs;
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 while(1) {
782 struct vfsmount *parent;
Jan Blunck4ac91372008-02-14 19:34:32 -0800783 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
Andreas Mohre518ddb2006-09-29 02:01:22 -0700785 read_lock(&fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -0800786 if (nd->path.dentry == fs->root.dentry &&
787 nd->path.mnt == fs->root.mnt) {
Andreas Mohre518ddb2006-09-29 02:01:22 -0700788 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 break;
790 }
Andreas Mohre518ddb2006-09-29 02:01:22 -0700791 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 spin_lock(&dcache_lock);
Jan Blunck4ac91372008-02-14 19:34:32 -0800793 if (nd->path.dentry != nd->path.mnt->mnt_root) {
794 nd->path.dentry = dget(nd->path.dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 spin_unlock(&dcache_lock);
796 dput(old);
797 break;
798 }
799 spin_unlock(&dcache_lock);
800 spin_lock(&vfsmount_lock);
Jan Blunck4ac91372008-02-14 19:34:32 -0800801 parent = nd->path.mnt->mnt_parent;
802 if (parent == nd->path.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 spin_unlock(&vfsmount_lock);
804 break;
805 }
806 mntget(parent);
Jan Blunck4ac91372008-02-14 19:34:32 -0800807 nd->path.dentry = dget(nd->path.mnt->mnt_mountpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 spin_unlock(&vfsmount_lock);
809 dput(old);
Jan Blunck4ac91372008-02-14 19:34:32 -0800810 mntput(nd->path.mnt);
811 nd->path.mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800813 follow_mount(&nd->path.mnt, &nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814}
815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816/*
817 * It's more convoluted than I'd like it to be, but... it's still fairly
818 * small and for now I'd prefer to have fast path as straight as possible.
819 * It _is_ time-critical.
820 */
821static int do_lookup(struct nameidata *nd, struct qstr *name,
822 struct path *path)
823{
Jan Blunck4ac91372008-02-14 19:34:32 -0800824 struct vfsmount *mnt = nd->path.mnt;
825 struct dentry *dentry = __d_lookup(nd->path.dentry, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826
827 if (!dentry)
828 goto need_lookup;
829 if (dentry->d_op && dentry->d_op->d_revalidate)
830 goto need_revalidate;
831done:
832 path->mnt = mnt;
833 path->dentry = dentry;
Al Viro634ee702005-06-06 13:36:13 -0700834 __follow_mount(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 return 0;
836
837need_lookup:
Jan Blunck4ac91372008-02-14 19:34:32 -0800838 dentry = real_lookup(nd->path.dentry, name, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (IS_ERR(dentry))
840 goto fail;
841 goto done;
842
843need_revalidate:
Ian Kentbcdc5e02006-09-27 01:50:44 -0700844 dentry = do_revalidate(dentry, nd);
845 if (!dentry)
846 goto need_lookup;
847 if (IS_ERR(dentry))
848 goto fail;
849 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851fail:
852 return PTR_ERR(dentry);
853}
854
855/*
856 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +0100857 * This is the basic name resolution function, turning a pathname into
858 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 *
Prasanna Medaea3834d2005-04-29 16:00:17 +0100860 * Returns 0 and nd will have valid dentry and mnt on success.
861 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800863static int __link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
865 struct path next;
866 struct inode *inode;
867 int err;
868 unsigned int lookup_flags = nd->flags;
869
870 while (*name=='/')
871 name++;
872 if (!*name)
873 goto return_reval;
874
Jan Blunck4ac91372008-02-14 19:34:32 -0800875 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (nd->depth)
Trond Myklebustf55eab82006-02-04 23:28:01 -0800877 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 /* At this point we know we have a real path component. */
880 for(;;) {
881 unsigned long hash;
882 struct qstr this;
883 unsigned int c;
884
Trond Myklebustcdce5d62005-10-18 14:20:18 -0700885 nd->flags |= LOOKUP_CONTINUE;
Al Viro672b16b2008-07-17 09:45:01 -0400886 err = exec_permission_lite(inode);
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800887 if (err == -EAGAIN)
888 err = vfs_permission(nd, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (err)
890 break;
891
892 this.name = name;
893 c = *(const unsigned char *)name;
894
895 hash = init_name_hash();
896 do {
897 name++;
898 hash = partial_name_hash(c, hash);
899 c = *(const unsigned char *)name;
900 } while (c && (c != '/'));
901 this.len = name - (const char *) this.name;
902 this.hash = end_name_hash(hash);
903
904 /* remove trailing slashes? */
905 if (!c)
906 goto last_component;
907 while (*++name == '/');
908 if (!*name)
909 goto last_with_slashes;
910
911 /*
912 * "." and ".." are special - ".." especially so because it has
913 * to be able to know about the current root directory and
914 * parent relationships.
915 */
916 if (this.name[0] == '.') switch (this.len) {
917 default:
918 break;
919 case 2:
920 if (this.name[1] != '.')
921 break;
Al Viro58c465e2005-06-06 13:36:13 -0700922 follow_dotdot(nd);
Jan Blunck4ac91372008-02-14 19:34:32 -0800923 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 /* fallthrough */
925 case 1:
926 continue;
927 }
928 /*
929 * See if the low-level filesystem might want
930 * to use its own hash..
931 */
Jan Blunck4ac91372008-02-14 19:34:32 -0800932 if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) {
933 err = nd->path.dentry->d_op->d_hash(nd->path.dentry,
934 &this);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (err < 0)
936 break;
937 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 /* This does the actual lookups.. */
939 err = do_lookup(nd, &this, &next);
940 if (err)
941 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 err = -ENOENT;
944 inode = next.dentry->d_inode;
945 if (!inode)
946 goto out_dput;
947 err = -ENOTDIR;
948 if (!inode->i_op)
949 goto out_dput;
950
951 if (inode->i_op->follow_link) {
Al Viro90ebe562005-06-06 13:35:58 -0700952 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (err)
954 goto return_err;
955 err = -ENOENT;
Jan Blunck4ac91372008-02-14 19:34:32 -0800956 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 if (!inode)
958 break;
959 err = -ENOTDIR;
960 if (!inode->i_op)
961 break;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700962 } else
963 path_to_nameidata(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 err = -ENOTDIR;
965 if (!inode->i_op->lookup)
966 break;
967 continue;
968 /* here ends the main loop */
969
970last_with_slashes:
971 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
972last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -0800973 /* Clear LOOKUP_CONTINUE iff it was previously unset */
974 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 if (lookup_flags & LOOKUP_PARENT)
976 goto lookup_parent;
977 if (this.name[0] == '.') switch (this.len) {
978 default:
979 break;
980 case 2:
981 if (this.name[1] != '.')
982 break;
Al Viro58c465e2005-06-06 13:36:13 -0700983 follow_dotdot(nd);
Jan Blunck4ac91372008-02-14 19:34:32 -0800984 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 /* fallthrough */
986 case 1:
987 goto return_reval;
988 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800989 if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) {
990 err = nd->path.dentry->d_op->d_hash(nd->path.dentry,
991 &this);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 if (err < 0)
993 break;
994 }
995 err = do_lookup(nd, &this, &next);
996 if (err)
997 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 inode = next.dentry->d_inode;
999 if ((lookup_flags & LOOKUP_FOLLOW)
1000 && inode && inode->i_op && inode->i_op->follow_link) {
Al Viro90ebe562005-06-06 13:35:58 -07001001 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (err)
1003 goto return_err;
Jan Blunck4ac91372008-02-14 19:34:32 -08001004 inode = nd->path.dentry->d_inode;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -07001005 } else
1006 path_to_nameidata(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 err = -ENOENT;
1008 if (!inode)
1009 break;
1010 if (lookup_flags & LOOKUP_DIRECTORY) {
1011 err = -ENOTDIR;
1012 if (!inode->i_op || !inode->i_op->lookup)
1013 break;
1014 }
1015 goto return_base;
1016lookup_parent:
1017 nd->last = this;
1018 nd->last_type = LAST_NORM;
1019 if (this.name[0] != '.')
1020 goto return_base;
1021 if (this.len == 1)
1022 nd->last_type = LAST_DOT;
1023 else if (this.len == 2 && this.name[1] == '.')
1024 nd->last_type = LAST_DOTDOT;
1025 else
1026 goto return_base;
1027return_reval:
1028 /*
1029 * We bypassed the ordinary revalidation routines.
1030 * We may need to check the cached dentry for staleness.
1031 */
Jan Blunck4ac91372008-02-14 19:34:32 -08001032 if (nd->path.dentry && nd->path.dentry->d_sb &&
1033 (nd->path.dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 err = -ESTALE;
1035 /* Note: we do not d_invalidate() */
Jan Blunck4ac91372008-02-14 19:34:32 -08001036 if (!nd->path.dentry->d_op->d_revalidate(
1037 nd->path.dentry, nd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 break;
1039 }
1040return_base:
1041 return 0;
1042out_dput:
Jan Blunck1d957f92008-02-14 19:34:35 -08001043 path_put_conditional(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 break;
1045 }
Jan Blunck1d957f92008-02-14 19:34:35 -08001046 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047return_err:
1048 return err;
1049}
1050
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001051static int path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
1053 current->total_link_count = 0;
1054 return link_path_walk(name, nd);
1055}
1056
Prasanna Medaea3834d2005-04-29 16:00:17 +01001057/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001058static int do_path_lookup(int dfd, const char *name,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001059 unsigned int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001061 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001062 int fput_needed;
1063 struct file *file;
Andreas Mohre518ddb2006-09-29 02:01:22 -07001064 struct fs_struct *fs = current->fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1067 nd->flags = flags;
1068 nd->depth = 0;
1069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 if (*name=='/') {
Andreas Mohre518ddb2006-09-29 02:01:22 -07001071 read_lock(&fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -08001072 nd->path = fs->root;
1073 path_get(&fs->root);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001074 read_unlock(&fs->lock);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001075 } else if (dfd == AT_FDCWD) {
Andreas Mohre518ddb2006-09-29 02:01:22 -07001076 read_lock(&fs->lock);
Jan Blunck6ac08c32008-02-14 19:34:38 -08001077 nd->path = fs->pwd;
1078 path_get(&fs->pwd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001079 read_unlock(&fs->lock);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001080 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001081 struct dentry *dentry;
1082
1083 file = fget_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001084 retval = -EBADF;
1085 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001086 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001087
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001088 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001089
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001090 retval = -ENOTDIR;
1091 if (!S_ISDIR(dentry->d_inode->i_mode))
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001092 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001093
1094 retval = file_permission(file, MAY_EXEC);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001095 if (retval)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001096 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001097
Jan Blunck5dd784d2008-02-14 19:34:38 -08001098 nd->path = file->f_path;
1099 path_get(&file->f_path);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001100
1101 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
Josef 'Jeff' Sipek2dfdd262007-05-09 02:33:41 -07001103
1104 retval = path_walk(name, nd);
Jan Blunck4ac91372008-02-14 19:34:32 -08001105 if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
1106 nd->path.dentry->d_inode))
1107 audit_inode(name, nd->path.dentry);
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001108out_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001109 return retval;
1110
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001111fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001112 fput_light(file, fput_needed);
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001113 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114}
1115
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001116int path_lookup(const char *name, unsigned int flags,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001117 struct nameidata *nd)
1118{
1119 return do_path_lookup(AT_FDCWD, name, flags, nd);
1120}
1121
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001122/**
1123 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1124 * @dentry: pointer to dentry of the base directory
1125 * @mnt: pointer to vfs mount of the base directory
1126 * @name: pointer to file name
1127 * @flags: lookup flags
1128 * @nd: pointer to nameidata
1129 */
1130int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1131 const char *name, unsigned int flags,
1132 struct nameidata *nd)
1133{
1134 int retval;
1135
1136 /* same as do_path_lookup */
1137 nd->last_type = LAST_ROOT;
1138 nd->flags = flags;
1139 nd->depth = 0;
1140
Jan Blunckc8e7f442008-06-09 16:40:35 -07001141 nd->path.dentry = dentry;
1142 nd->path.mnt = mnt;
1143 path_get(&nd->path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001144
1145 retval = path_walk(name, nd);
Jan Blunck4ac91372008-02-14 19:34:32 -08001146 if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
1147 nd->path.dentry->d_inode))
1148 audit_inode(name, nd->path.dentry);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001149
1150 return retval;
1151
1152}
1153
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001154static int __path_lookup_intent_open(int dfd, const char *name,
1155 unsigned int lookup_flags, struct nameidata *nd,
1156 int open_flags, int create_mode)
Trond Myklebust834f2a42005-10-18 14:20:16 -07001157{
1158 struct file *filp = get_empty_filp();
1159 int err;
1160
1161 if (filp == NULL)
1162 return -ENFILE;
1163 nd->intent.open.file = filp;
1164 nd->intent.open.flags = open_flags;
1165 nd->intent.open.create_mode = create_mode;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001166 err = do_path_lookup(dfd, name, lookup_flags|LOOKUP_OPEN, nd);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001167 if (IS_ERR(nd->intent.open.file)) {
1168 if (err == 0) {
1169 err = PTR_ERR(nd->intent.open.file);
Jan Blunck1d957f92008-02-14 19:34:35 -08001170 path_put(&nd->path);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001171 }
1172 } else if (err != 0)
1173 release_open_intent(nd);
1174 return err;
1175}
1176
1177/**
1178 * path_lookup_open - lookup a file path with open intent
Martin Waitz7045f372006-02-01 03:06:57 -08001179 * @dfd: the directory to use as base, or AT_FDCWD
Trond Myklebust834f2a42005-10-18 14:20:16 -07001180 * @name: pointer to file name
1181 * @lookup_flags: lookup intent flags
1182 * @nd: pointer to nameidata
1183 * @open_flags: open intent flags
1184 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001185int path_lookup_open(int dfd, const char *name, unsigned int lookup_flags,
Trond Myklebust834f2a42005-10-18 14:20:16 -07001186 struct nameidata *nd, int open_flags)
1187{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001188 return __path_lookup_intent_open(dfd, name, lookup_flags, nd,
Trond Myklebust834f2a42005-10-18 14:20:16 -07001189 open_flags, 0);
1190}
1191
1192/**
1193 * path_lookup_create - lookup a file path with open + create intent
Martin Waitz7045f372006-02-01 03:06:57 -08001194 * @dfd: the directory to use as base, or AT_FDCWD
Trond Myklebust834f2a42005-10-18 14:20:16 -07001195 * @name: pointer to file name
1196 * @lookup_flags: lookup intent flags
1197 * @nd: pointer to nameidata
1198 * @open_flags: open intent flags
1199 * @create_mode: create intent flags
1200 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001201static int path_lookup_create(int dfd, const char *name,
1202 unsigned int lookup_flags, struct nameidata *nd,
1203 int open_flags, int create_mode)
Trond Myklebust834f2a42005-10-18 14:20:16 -07001204{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001205 return __path_lookup_intent_open(dfd, name, lookup_flags|LOOKUP_CREATE,
1206 nd, open_flags, create_mode);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001207}
1208
1209int __user_path_lookup_open(const char __user *name, unsigned int lookup_flags,
1210 struct nameidata *nd, int open_flags)
1211{
1212 char *tmp = getname(name);
1213 int err = PTR_ERR(tmp);
1214
1215 if (!IS_ERR(tmp)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001216 err = __path_lookup_intent_open(AT_FDCWD, tmp, lookup_flags, nd, open_flags, 0);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001217 putname(tmp);
1218 }
1219 return err;
1220}
1221
Christoph Hellwigeead1912007-10-16 23:25:38 -07001222static struct dentry *__lookup_hash(struct qstr *name,
1223 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224{
James Morris057f6c02007-04-26 00:12:05 -07001225 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 struct inode *inode;
1227 int err;
1228
1229 inode = base->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230
1231 /*
1232 * See if the low-level filesystem might want
1233 * to use its own hash..
1234 */
1235 if (base->d_op && base->d_op->d_hash) {
1236 err = base->d_op->d_hash(base, name);
1237 dentry = ERR_PTR(err);
1238 if (err < 0)
1239 goto out;
1240 }
1241
1242 dentry = cached_lookup(base, name, nd);
1243 if (!dentry) {
Miklos Szeredid70b67c2008-07-02 21:30:15 +02001244 struct dentry *new;
1245
1246 /* Don't create child dentry for a dead directory. */
1247 dentry = ERR_PTR(-ENOENT);
1248 if (IS_DEADDIR(inode))
1249 goto out;
1250
1251 new = d_alloc(base, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 dentry = ERR_PTR(-ENOMEM);
1253 if (!new)
1254 goto out;
1255 dentry = inode->i_op->lookup(inode, new, nd);
1256 if (!dentry)
1257 dentry = new;
1258 else
1259 dput(new);
1260 }
1261out:
1262 return dentry;
1263}
1264
James Morris057f6c02007-04-26 00:12:05 -07001265/*
1266 * Restricted form of lookup. Doesn't follow links, single-component only,
1267 * needs parent already locked. Doesn't follow mounts.
1268 * SMP-safe.
1269 */
Adrian Bunka244e162006-03-31 02:32:11 -08001270static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271{
Christoph Hellwigeead1912007-10-16 23:25:38 -07001272 int err;
1273
Jan Blunck4ac91372008-02-14 19:34:32 -08001274 err = permission(nd->path.dentry->d_inode, MAY_EXEC, nd);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001275 if (err)
1276 return ERR_PTR(err);
Jan Blunck4ac91372008-02-14 19:34:32 -08001277 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Christoph Hellwigeead1912007-10-16 23:25:38 -07001280static int __lookup_one_len(const char *name, struct qstr *this,
1281 struct dentry *base, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
1283 unsigned long hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 unsigned int c;
1285
James Morris057f6c02007-04-26 00:12:05 -07001286 this->name = name;
1287 this->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (!len)
James Morris057f6c02007-04-26 00:12:05 -07001289 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 hash = init_name_hash();
1292 while (len--) {
1293 c = *(const unsigned char *)name++;
1294 if (c == '/' || c == '\0')
James Morris057f6c02007-04-26 00:12:05 -07001295 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 hash = partial_name_hash(c, hash);
1297 }
James Morris057f6c02007-04-26 00:12:05 -07001298 this->hash = end_name_hash(hash);
1299 return 0;
1300}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Christoph Hellwigeead1912007-10-16 23:25:38 -07001302/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001303 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001304 * @name: pathname component to lookup
1305 * @base: base directory to lookup from
1306 * @len: maximum length @len should be interpreted to
1307 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001308 * Note that this routine is purely a helper for filesystem usage and should
1309 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001310 * nameidata argument is passed to the filesystem methods and a filesystem
1311 * using this helper needs to be prepared for that.
1312 */
James Morris057f6c02007-04-26 00:12:05 -07001313struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1314{
1315 int err;
1316 struct qstr this;
1317
1318 err = __lookup_one_len(name, &this, base, len);
1319 if (err)
1320 return ERR_PTR(err);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001321
1322 err = permission(base->d_inode, MAY_EXEC, NULL);
1323 if (err)
1324 return ERR_PTR(err);
Christoph Hellwig49705b72005-11-08 21:35:06 -08001325 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001326}
1327
Christoph Hellwigeead1912007-10-16 23:25:38 -07001328/**
1329 * lookup_one_noperm - bad hack for sysfs
1330 * @name: pathname component to lookup
1331 * @base: base directory to lookup from
1332 *
1333 * This is a variant of lookup_one_len that doesn't perform any permission
1334 * checks. It's a horrible hack to work around the braindead sysfs
1335 * architecture and should not be used anywhere else.
1336 *
1337 * DON'T USE THIS FUNCTION EVER, thanks.
1338 */
1339struct dentry *lookup_one_noperm(const char *name, struct dentry *base)
James Morris057f6c02007-04-26 00:12:05 -07001340{
1341 int err;
1342 struct qstr this;
1343
Christoph Hellwigeead1912007-10-16 23:25:38 -07001344 err = __lookup_one_len(name, &this, base, strlen(name));
James Morris057f6c02007-04-26 00:12:05 -07001345 if (err)
1346 return ERR_PTR(err);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001347 return __lookup_hash(&this, base, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348}
1349
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001350int __user_walk_fd(int dfd, const char __user *name, unsigned flags,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001351 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352{
1353 char *tmp = getname(name);
1354 int err = PTR_ERR(tmp);
1355
1356 if (!IS_ERR(tmp)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001357 err = do_path_lookup(dfd, tmp, flags, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 putname(tmp);
1359 }
1360 return err;
1361}
1362
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001363int __user_walk(const char __user *name, unsigned flags, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001364{
1365 return __user_walk_fd(AT_FDCWD, name, flags, nd);
1366}
1367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368/*
1369 * It's inline, so penalty for filesystems that don't use sticky bit is
1370 * minimal.
1371 */
1372static inline int check_sticky(struct inode *dir, struct inode *inode)
1373{
1374 if (!(dir->i_mode & S_ISVTX))
1375 return 0;
1376 if (inode->i_uid == current->fsuid)
1377 return 0;
1378 if (dir->i_uid == current->fsuid)
1379 return 0;
1380 return !capable(CAP_FOWNER);
1381}
1382
1383/*
1384 * Check whether we can remove a link victim from directory dir, check
1385 * whether the type of victim is right.
1386 * 1. We can't do it if dir is read-only (done in permission())
1387 * 2. We should have write and exec permissions on dir
1388 * 3. We can't remove anything from append-only dir
1389 * 4. We can't do anything with immutable dir (done in permission())
1390 * 5. If the sticky bit on dir is set we should either
1391 * a. be owner of dir, or
1392 * b. be owner of victim, or
1393 * c. have CAP_FOWNER capability
1394 * 6. If the victim is append-only or immutable we can't do antyhing with
1395 * links pointing to it.
1396 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1397 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1398 * 9. We can't remove a root or mountpoint.
1399 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1400 * nfs_async_unlink().
1401 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001402static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403{
1404 int error;
1405
1406 if (!victim->d_inode)
1407 return -ENOENT;
1408
1409 BUG_ON(victim->d_parent->d_inode != dir);
Al Viro5a190ae2007-06-07 12:19:32 -04001410 audit_inode_child(victim->d_name.name, victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
1412 error = permission(dir,MAY_WRITE | MAY_EXEC, NULL);
1413 if (error)
1414 return error;
1415 if (IS_APPEND(dir))
1416 return -EPERM;
1417 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
1418 IS_IMMUTABLE(victim->d_inode))
1419 return -EPERM;
1420 if (isdir) {
1421 if (!S_ISDIR(victim->d_inode->i_mode))
1422 return -ENOTDIR;
1423 if (IS_ROOT(victim))
1424 return -EBUSY;
1425 } else if (S_ISDIR(victim->d_inode->i_mode))
1426 return -EISDIR;
1427 if (IS_DEADDIR(dir))
1428 return -ENOENT;
1429 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1430 return -EBUSY;
1431 return 0;
1432}
1433
1434/* Check whether we can create an object with dentry child in directory
1435 * dir.
1436 * 1. We can't do it if child already exists (open has special treatment for
1437 * this case, but since we are inlined it's OK)
1438 * 2. We can't do it if dir is read-only (done in permission())
1439 * 3. We should have write and exec permissions on dir
1440 * 4. We can't do it if dir is immutable (done in permission())
1441 */
1442static inline int may_create(struct inode *dir, struct dentry *child,
1443 struct nameidata *nd)
1444{
1445 if (child->d_inode)
1446 return -EEXIST;
1447 if (IS_DEADDIR(dir))
1448 return -ENOENT;
1449 return permission(dir,MAY_WRITE | MAY_EXEC, nd);
1450}
1451
1452/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 * O_DIRECTORY translates into forcing a directory lookup.
1454 */
1455static inline int lookup_flags(unsigned int f)
1456{
1457 unsigned long retval = LOOKUP_FOLLOW;
1458
1459 if (f & O_NOFOLLOW)
1460 retval &= ~LOOKUP_FOLLOW;
1461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 if (f & O_DIRECTORY)
1463 retval |= LOOKUP_DIRECTORY;
1464
1465 return retval;
1466}
1467
1468/*
1469 * p1 and p2 should be directories on the same fs.
1470 */
1471struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1472{
1473 struct dentry *p;
1474
1475 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001476 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 return NULL;
1478 }
1479
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001480 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
1482 for (p = p1; p->d_parent != p; p = p->d_parent) {
1483 if (p->d_parent == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001484 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1485 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 return p;
1487 }
1488 }
1489
1490 for (p = p2; p->d_parent != p; p = p->d_parent) {
1491 if (p->d_parent == p1) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001492 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1493 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 return p;
1495 }
1496 }
1497
Ingo Molnarf2eace22006-07-03 00:25:05 -07001498 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1499 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 return NULL;
1501}
1502
1503void unlock_rename(struct dentry *p1, struct dentry *p2)
1504{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001505 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001507 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001508 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 }
1510}
1511
1512int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1513 struct nameidata *nd)
1514{
1515 int error = may_create(dir, dentry, nd);
1516
1517 if (error)
1518 return error;
1519
1520 if (!dir->i_op || !dir->i_op->create)
1521 return -EACCES; /* shouldn't it be ENOSYS? */
1522 mode &= S_IALLUGO;
1523 mode |= S_IFREG;
1524 error = security_inode_create(dir, dentry, mode);
1525 if (error)
1526 return error;
1527 DQUOT_INIT(dir);
1528 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001529 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001530 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 return error;
1532}
1533
1534int may_open(struct nameidata *nd, int acc_mode, int flag)
1535{
Jan Blunck4ac91372008-02-14 19:34:32 -08001536 struct dentry *dentry = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 struct inode *inode = dentry->d_inode;
1538 int error;
1539
1540 if (!inode)
1541 return -ENOENT;
1542
1543 if (S_ISLNK(inode->i_mode))
1544 return -ELOOP;
1545
Linus Torvalds974a9f02008-01-12 14:06:34 -08001546 if (S_ISDIR(inode->i_mode) && (acc_mode & MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 return -EISDIR;
1548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 /*
1550 * FIFO's, sockets and device files are special: they don't
1551 * actually live on the filesystem itself, and as such you
1552 * can write to them even if the filesystem is read-only.
1553 */
1554 if (S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
1555 flag &= ~O_TRUNC;
1556 } else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001557 if (nd->path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 return -EACCES;
1559
1560 flag &= ~O_TRUNC;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001561 }
Dave Hansenb41572e2007-10-16 23:31:14 -07001562
1563 error = vfs_permission(nd, acc_mode);
1564 if (error)
1565 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 /*
1567 * An append-only file must be opened in append mode for writing.
1568 */
1569 if (IS_APPEND(inode)) {
1570 if ((flag & FMODE_WRITE) && !(flag & O_APPEND))
1571 return -EPERM;
1572 if (flag & O_TRUNC)
1573 return -EPERM;
1574 }
1575
1576 /* O_NOATIME can only be set by the owner or superuser */
1577 if (flag & O_NOATIME)
Satyam Sharma3bd858a2007-07-17 15:00:08 +05301578 if (!is_owner_or_cap(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 return -EPERM;
1580
1581 /*
1582 * Ensure there are no outstanding leases on the file.
1583 */
1584 error = break_lease(inode, flag);
1585 if (error)
1586 return error;
1587
1588 if (flag & O_TRUNC) {
1589 error = get_write_access(inode);
1590 if (error)
1591 return error;
1592
1593 /*
1594 * Refuse to truncate files with mandatory locks held on them.
1595 */
1596 error = locks_verify_locked(inode);
1597 if (!error) {
1598 DQUOT_INIT(inode);
Miklos Szeredid139d7f2007-10-18 03:07:00 -07001599
1600 error = do_truncate(dentry, 0,
1601 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
1602 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 }
1604 put_write_access(inode);
1605 if (error)
1606 return error;
1607 } else
1608 if (flag & FMODE_WRITE)
1609 DQUOT_INIT(inode);
1610
1611 return 0;
1612}
1613
Dave Hansend57999e2008-02-15 14:37:27 -08001614/*
1615 * Be careful about ever adding any more callers of this
1616 * function. Its flags must be in the namei format, not
1617 * what get passed to sys_open().
1618 */
1619static int __open_namei_create(struct nameidata *nd, struct path *path,
Dave Hansenaab520e2006-09-30 23:29:02 -07001620 int flag, int mode)
1621{
1622 int error;
Jan Blunck4ac91372008-02-14 19:34:32 -08001623 struct dentry *dir = nd->path.dentry;
Dave Hansenaab520e2006-09-30 23:29:02 -07001624
1625 if (!IS_POSIXACL(dir->d_inode))
1626 mode &= ~current->fs->umask;
1627 error = vfs_create(dir->d_inode, path->dentry, mode, nd);
1628 mutex_unlock(&dir->d_inode->i_mutex);
Jan Blunck4ac91372008-02-14 19:34:32 -08001629 dput(nd->path.dentry);
1630 nd->path.dentry = path->dentry;
Dave Hansenaab520e2006-09-30 23:29:02 -07001631 if (error)
1632 return error;
1633 /* Don't check for write permission, don't truncate */
1634 return may_open(nd, 0, flag & ~O_TRUNC);
1635}
1636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637/*
Dave Hansend57999e2008-02-15 14:37:27 -08001638 * Note that while the flag value (low two bits) for sys_open means:
1639 * 00 - read-only
1640 * 01 - write-only
1641 * 10 - read-write
1642 * 11 - special
1643 * it is changed into
1644 * 00 - no permissions needed
1645 * 01 - read-permission
1646 * 10 - write-permission
1647 * 11 - read-write
1648 * for the internal routines (ie open_namei()/follow_link() etc)
1649 * This is more logical, and also allows the 00 "no perm needed"
1650 * to be used for symlinks (where the permissions are checked
1651 * later).
1652 *
1653*/
1654static inline int open_to_namei_flags(int flag)
1655{
1656 if ((flag+1) & O_ACCMODE)
1657 flag++;
1658 return flag;
1659}
1660
Dave Hansen4a3fd212008-02-15 14:37:48 -08001661static int open_will_write_to_fs(int flag, struct inode *inode)
1662{
1663 /*
1664 * We'll never write to the fs underlying
1665 * a device file.
1666 */
1667 if (special_file(inode->i_mode))
1668 return 0;
1669 return (flag & O_TRUNC);
1670}
1671
Dave Hansend57999e2008-02-15 14:37:27 -08001672/*
Dave Hansen4a3fd212008-02-15 14:37:48 -08001673 * Note that the low bits of the passed in "open_flag"
1674 * are not the same as in the local variable "flag". See
1675 * open_to_namei_flags() for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001677struct file *do_filp_open(int dfd, const char *pathname,
1678 int open_flag, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679{
Dave Hansen4a3fd212008-02-15 14:37:48 -08001680 struct file *filp;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001681 struct nameidata nd;
Trond Myklebust834f2a42005-10-18 14:20:16 -07001682 int acc_mode, error;
Al Viro4e7506e2005-06-06 13:36:00 -07001683 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 struct dentry *dir;
1685 int count = 0;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001686 int will_write;
Dave Hansend57999e2008-02-15 14:37:27 -08001687 int flag = open_to_namei_flags(open_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Al Virob77b0642008-07-17 09:37:02 -04001689 acc_mode = MAY_OPEN | ACC_MODE(flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Trond Myklebust834f2a42005-10-18 14:20:16 -07001691 /* O_TRUNC implies we need access checks for write permissions */
1692 if (flag & O_TRUNC)
1693 acc_mode |= MAY_WRITE;
1694
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 /* Allow the LSM permission hook to distinguish append
1696 access from general write access. */
1697 if (flag & O_APPEND)
1698 acc_mode |= MAY_APPEND;
1699
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 /*
1701 * The simplest case - just a plain lookup.
1702 */
1703 if (!(flag & O_CREAT)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001704 error = path_lookup_open(dfd, pathname, lookup_flags(flag),
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001705 &nd, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 if (error)
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001707 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 goto ok;
1709 }
1710
1711 /*
1712 * Create - we need to know the parent.
1713 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001714 error = path_lookup_create(dfd, pathname, LOOKUP_PARENT,
1715 &nd, flag, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 if (error)
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001717 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719 /*
1720 * We have the parent and last component. First of all, check
1721 * that we are not asked to creat(2) an obvious directory - that
1722 * will not do.
1723 */
1724 error = -EISDIR;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001725 if (nd.last_type != LAST_NORM || nd.last.name[nd.last.len])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 goto exit;
1727
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001728 dir = nd.path.dentry;
1729 nd.flags &= ~LOOKUP_PARENT;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001730 mutex_lock(&dir->d_inode->i_mutex);
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001731 path.dentry = lookup_hash(&nd);
1732 path.mnt = nd.path.mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734do_last:
Al Viro4e7506e2005-06-06 13:36:00 -07001735 error = PTR_ERR(path.dentry);
1736 if (IS_ERR(path.dentry)) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001737 mutex_unlock(&dir->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 goto exit;
1739 }
1740
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001741 if (IS_ERR(nd.intent.open.file)) {
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001742 error = PTR_ERR(nd.intent.open.file);
Dave Hansen4a3fd212008-02-15 14:37:48 -08001743 goto exit_mutex_unlock;
Oleg Drokin4af4c522006-03-25 03:06:54 -08001744 }
1745
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 /* Negative dentry, just create the file */
Al Viro4e7506e2005-06-06 13:36:00 -07001747 if (!path.dentry->d_inode) {
Dave Hansen4a3fd212008-02-15 14:37:48 -08001748 /*
1749 * This write is needed to ensure that a
1750 * ro->rw transition does not occur between
1751 * the time when the file is created and when
1752 * a permanent write count is taken through
1753 * the 'struct file' in nameidata_to_filp().
1754 */
1755 error = mnt_want_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 if (error)
Dave Hansen4a3fd212008-02-15 14:37:48 -08001757 goto exit_mutex_unlock;
1758 error = __open_namei_create(&nd, &path, flag, mode);
1759 if (error) {
1760 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 goto exit;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001762 }
1763 filp = nameidata_to_filp(&nd, open_flag);
1764 mnt_drop_write(nd.path.mnt);
1765 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
1767
1768 /*
1769 * It already exists.
1770 */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001771 mutex_unlock(&dir->d_inode->i_mutex);
Al Viro5a190ae2007-06-07 12:19:32 -04001772 audit_inode(pathname, path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773
1774 error = -EEXIST;
1775 if (flag & O_EXCL)
1776 goto exit_dput;
1777
Al Viroe13b2102005-06-06 13:36:06 -07001778 if (__follow_mount(&path)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 error = -ELOOP;
Al Viroba7a4c12005-06-06 13:36:08 -07001780 if (flag & O_NOFOLLOW)
1781 goto exit_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04001783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 error = -ENOENT;
Al Viro4e7506e2005-06-06 13:36:00 -07001785 if (!path.dentry->d_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 goto exit_dput;
Al Viro4e7506e2005-06-06 13:36:00 -07001787 if (path.dentry->d_inode->i_op && path.dentry->d_inode->i_op->follow_link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 goto do_link;
1789
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001790 path_to_nameidata(&path, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 error = -EISDIR;
Al Viro4e7506e2005-06-06 13:36:00 -07001792 if (path.dentry->d_inode && S_ISDIR(path.dentry->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 goto exit;
1794ok:
Dave Hansen4a3fd212008-02-15 14:37:48 -08001795 /*
1796 * Consider:
1797 * 1. may_open() truncates a file
1798 * 2. a rw->ro mount transition occurs
1799 * 3. nameidata_to_filp() fails due to
1800 * the ro mount.
1801 * That would be inconsistent, and should
1802 * be avoided. Taking this mnt write here
1803 * ensures that (2) can not occur.
1804 */
1805 will_write = open_will_write_to_fs(flag, nd.path.dentry->d_inode);
1806 if (will_write) {
1807 error = mnt_want_write(nd.path.mnt);
1808 if (error)
1809 goto exit;
1810 }
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001811 error = may_open(&nd, acc_mode, flag);
Dave Hansen4a3fd212008-02-15 14:37:48 -08001812 if (error) {
1813 if (will_write)
1814 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 goto exit;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001816 }
1817 filp = nameidata_to_filp(&nd, open_flag);
1818 /*
1819 * It is now safe to drop the mnt write
1820 * because the filp has had a write taken
1821 * on its behalf.
1822 */
1823 if (will_write)
1824 mnt_drop_write(nd.path.mnt);
1825 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Dave Hansen4a3fd212008-02-15 14:37:48 -08001827exit_mutex_unlock:
1828 mutex_unlock(&dir->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829exit_dput:
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001830 path_put_conditional(&path, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831exit:
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001832 if (!IS_ERR(nd.intent.open.file))
1833 release_open_intent(&nd);
1834 path_put(&nd.path);
1835 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
1837do_link:
1838 error = -ELOOP;
1839 if (flag & O_NOFOLLOW)
1840 goto exit_dput;
1841 /*
1842 * This is subtle. Instead of calling do_follow_link() we do the
1843 * thing by hands. The reason is that this way we have zero link_count
1844 * and path_walk() (called from ->follow_link) honoring LOOKUP_PARENT.
1845 * After that we have the parent and last component, i.e.
1846 * we are in the same situation as after the first path_walk().
1847 * Well, almost - if the last component is normal we get its copy
1848 * stored in nd->last.name and we will have to putname() it when we
1849 * are done. Procfs-like symlinks just set LAST_BIND.
1850 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001851 nd.flags |= LOOKUP_PARENT;
1852 error = security_inode_follow_link(path.dentry, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 if (error)
1854 goto exit_dput;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001855 error = __do_follow_link(&path, &nd);
Kirill Korotaevde459212006-07-14 00:23:49 -07001856 if (error) {
1857 /* Does someone understand code flow here? Or it is only
1858 * me so stupid? Anathema to whoever designed this non-sense
1859 * with "intent.open".
1860 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001861 release_open_intent(&nd);
1862 return ERR_PTR(error);
Kirill Korotaevde459212006-07-14 00:23:49 -07001863 }
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001864 nd.flags &= ~LOOKUP_PARENT;
1865 if (nd.last_type == LAST_BIND)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 goto ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 error = -EISDIR;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001868 if (nd.last_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 goto exit;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001870 if (nd.last.name[nd.last.len]) {
1871 __putname(nd.last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 goto exit;
1873 }
1874 error = -ELOOP;
1875 if (count++==32) {
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001876 __putname(nd.last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 goto exit;
1878 }
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001879 dir = nd.path.dentry;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001880 mutex_lock(&dir->d_inode->i_mutex);
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001881 path.dentry = lookup_hash(&nd);
1882 path.mnt = nd.path.mnt;
1883 __putname(nd.last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 goto do_last;
1885}
1886
1887/**
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001888 * filp_open - open file and return file pointer
1889 *
1890 * @filename: path to open
1891 * @flags: open flags as per the open(2) second argument
1892 * @mode: mode for the new file if O_CREAT is set, else ignored
1893 *
1894 * This is the helper to open a file from kernelspace if you really
1895 * have to. But in generally you should not do this, so please move
1896 * along, nothing to see here..
1897 */
1898struct file *filp_open(const char *filename, int flags, int mode)
1899{
1900 return do_filp_open(AT_FDCWD, filename, flags, mode);
1901}
1902EXPORT_SYMBOL(filp_open);
1903
1904/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 * lookup_create - lookup a dentry, creating it if it doesn't exist
1906 * @nd: nameidata info
1907 * @is_dir: directory flag
1908 *
1909 * Simple function to lookup and return a dentry and create it
1910 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001911 *
Jan Blunck4ac91372008-02-14 19:34:32 -08001912 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 */
1914struct dentry *lookup_create(struct nameidata *nd, int is_dir)
1915{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001916 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917
Jan Blunck4ac91372008-02-14 19:34:32 -08001918 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001919 /*
1920 * Yucky last component or no last component at all?
1921 * (foo/., foo/.., /////)
1922 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 if (nd->last_type != LAST_NORM)
1924 goto fail;
1925 nd->flags &= ~LOOKUP_PARENT;
ASANO Masahiroa6349042006-08-22 20:06:02 -04001926 nd->flags |= LOOKUP_CREATE;
1927 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001928
1929 /*
1930 * Do the final lookup.
1931 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08001932 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 if (IS_ERR(dentry))
1934 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001935
Al Viroe9baf6e2008-05-15 04:49:12 -04001936 if (dentry->d_inode)
1937 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001938 /*
1939 * Special case - lookup gave negative, but... we had foo/bar/
1940 * From the vfs_mknod() POV we just have a negative dentry -
1941 * all is fine. Let's be bastards - you had / on the end, you've
1942 * been asking for (non-existent) directory. -ENOENT for you.
1943 */
Al Viroe9baf6e2008-05-15 04:49:12 -04001944 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
1945 dput(dentry);
1946 dentry = ERR_PTR(-ENOENT);
1947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04001949eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04001951 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952fail:
1953 return dentry;
1954}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07001955EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
1957int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1958{
1959 int error = may_create(dir, dentry, NULL);
1960
1961 if (error)
1962 return error;
1963
1964 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1965 return -EPERM;
1966
1967 if (!dir->i_op || !dir->i_op->mknod)
1968 return -EPERM;
1969
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07001970 error = devcgroup_inode_mknod(mode, dev);
1971 if (error)
1972 return error;
1973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 error = security_inode_mknod(dir, dentry, mode, dev);
1975 if (error)
1976 return error;
1977
1978 DQUOT_INIT(dir);
1979 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001980 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001981 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 return error;
1983}
1984
Dave Hansen463c3192008-02-15 14:37:57 -08001985static int may_mknod(mode_t mode)
1986{
1987 switch (mode & S_IFMT) {
1988 case S_IFREG:
1989 case S_IFCHR:
1990 case S_IFBLK:
1991 case S_IFIFO:
1992 case S_IFSOCK:
1993 case 0: /* zero mode translates to S_IFREG */
1994 return 0;
1995 case S_IFDIR:
1996 return -EPERM;
1997 default:
1998 return -EINVAL;
1999 }
2000}
2001
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002002asmlinkage long sys_mknodat(int dfd, const char __user *filename, int mode,
2003 unsigned dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004{
2005 int error = 0;
2006 char * tmp;
2007 struct dentry * dentry;
2008 struct nameidata nd;
2009
2010 if (S_ISDIR(mode))
2011 return -EPERM;
2012 tmp = getname(filename);
2013 if (IS_ERR(tmp))
2014 return PTR_ERR(tmp);
2015
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002016 error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 if (error)
2018 goto out;
2019 dentry = lookup_create(&nd, 0);
Dave Hansen463c3192008-02-15 14:37:57 -08002020 if (IS_ERR(dentry)) {
2021 error = PTR_ERR(dentry);
2022 goto out_unlock;
2023 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002024 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 mode &= ~current->fs->umask;
Dave Hansen463c3192008-02-15 14:37:57 -08002026 error = may_mknod(mode);
2027 if (error)
2028 goto out_dput;
2029 error = mnt_want_write(nd.path.mnt);
2030 if (error)
2031 goto out_dput;
2032 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08002034 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 break;
2036 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002037 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 new_decode_dev(dev));
2039 break;
2040 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002041 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 }
Dave Hansen463c3192008-02-15 14:37:57 -08002044 mnt_drop_write(nd.path.mnt);
2045out_dput:
2046 dput(dentry);
2047out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002048 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002049 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050out:
2051 putname(tmp);
2052
2053 return error;
2054}
2055
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002056asmlinkage long sys_mknod(const char __user *filename, int mode, unsigned dev)
2057{
2058 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2059}
2060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2062{
2063 int error = may_create(dir, dentry, NULL);
2064
2065 if (error)
2066 return error;
2067
2068 if (!dir->i_op || !dir->i_op->mkdir)
2069 return -EPERM;
2070
2071 mode &= (S_IRWXUGO|S_ISVTX);
2072 error = security_inode_mkdir(dir, dentry, mode);
2073 if (error)
2074 return error;
2075
2076 DQUOT_INIT(dir);
2077 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002078 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002079 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 return error;
2081}
2082
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002083asmlinkage long sys_mkdirat(int dfd, const char __user *pathname, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
2085 int error = 0;
2086 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002087 struct dentry *dentry;
2088 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089
2090 tmp = getname(pathname);
2091 error = PTR_ERR(tmp);
Dave Hansen6902d922006-09-30 23:29:01 -07002092 if (IS_ERR(tmp))
2093 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Dave Hansen6902d922006-09-30 23:29:01 -07002095 error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
2096 if (error)
2097 goto out;
2098 dentry = lookup_create(&nd, 1);
2099 error = PTR_ERR(dentry);
2100 if (IS_ERR(dentry))
2101 goto out_unlock;
2102
Jan Blunck4ac91372008-02-14 19:34:32 -08002103 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Dave Hansen6902d922006-09-30 23:29:01 -07002104 mode &= ~current->fs->umask;
Dave Hansen463c3192008-02-15 14:37:57 -08002105 error = mnt_want_write(nd.path.mnt);
2106 if (error)
2107 goto out_dput;
Jan Blunck4ac91372008-02-14 19:34:32 -08002108 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Dave Hansen463c3192008-02-15 14:37:57 -08002109 mnt_drop_write(nd.path.mnt);
2110out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002111 dput(dentry);
2112out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002113 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002114 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115out:
Dave Hansen6902d922006-09-30 23:29:01 -07002116 putname(tmp);
2117out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 return error;
2119}
2120
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002121asmlinkage long sys_mkdir(const char __user *pathname, int mode)
2122{
2123 return sys_mkdirat(AT_FDCWD, pathname, mode);
2124}
2125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126/*
2127 * We try to drop the dentry early: we should have
2128 * a usage count of 2 if we're the only user of this
2129 * dentry, and if that is true (possibly after pruning
2130 * the dcache), then we drop the dentry now.
2131 *
2132 * A low-level filesystem can, if it choses, legally
2133 * do a
2134 *
2135 * if (!d_unhashed(dentry))
2136 * return -EBUSY;
2137 *
2138 * if it cannot handle the case of removing a directory
2139 * that is still in use by something else..
2140 */
2141void dentry_unhash(struct dentry *dentry)
2142{
2143 dget(dentry);
Vasily Averindc168422006-12-06 20:37:07 -08002144 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 spin_lock(&dcache_lock);
2146 spin_lock(&dentry->d_lock);
2147 if (atomic_read(&dentry->d_count) == 2)
2148 __d_drop(dentry);
2149 spin_unlock(&dentry->d_lock);
2150 spin_unlock(&dcache_lock);
2151}
2152
2153int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2154{
2155 int error = may_delete(dir, dentry, 1);
2156
2157 if (error)
2158 return error;
2159
2160 if (!dir->i_op || !dir->i_op->rmdir)
2161 return -EPERM;
2162
2163 DQUOT_INIT(dir);
2164
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002165 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 dentry_unhash(dentry);
2167 if (d_mountpoint(dentry))
2168 error = -EBUSY;
2169 else {
2170 error = security_inode_rmdir(dir, dentry);
2171 if (!error) {
2172 error = dir->i_op->rmdir(dir, dentry);
2173 if (!error)
2174 dentry->d_inode->i_flags |= S_DEAD;
2175 }
2176 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002177 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 d_delete(dentry);
2180 }
2181 dput(dentry);
2182
2183 return error;
2184}
2185
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002186static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187{
2188 int error = 0;
2189 char * name;
2190 struct dentry *dentry;
2191 struct nameidata nd;
2192
2193 name = getname(pathname);
2194 if(IS_ERR(name))
2195 return PTR_ERR(name);
2196
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002197 error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 if (error)
2199 goto exit;
2200
2201 switch(nd.last_type) {
2202 case LAST_DOTDOT:
2203 error = -ENOTEMPTY;
2204 goto exit1;
2205 case LAST_DOT:
2206 error = -EINVAL;
2207 goto exit1;
2208 case LAST_ROOT:
2209 error = -EBUSY;
2210 goto exit1;
2211 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002212 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002213 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002215 if (IS_ERR(dentry))
2216 goto exit2;
Dave Hansen06227532008-02-15 14:37:34 -08002217 error = mnt_want_write(nd.path.mnt);
2218 if (error)
2219 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002220 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08002221 mnt_drop_write(nd.path.mnt);
2222exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002223 dput(dentry);
2224exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002225 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002227 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228exit:
2229 putname(name);
2230 return error;
2231}
2232
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002233asmlinkage long sys_rmdir(const char __user *pathname)
2234{
2235 return do_rmdir(AT_FDCWD, pathname);
2236}
2237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238int vfs_unlink(struct inode *dir, struct dentry *dentry)
2239{
2240 int error = may_delete(dir, dentry, 0);
2241
2242 if (error)
2243 return error;
2244
2245 if (!dir->i_op || !dir->i_op->unlink)
2246 return -EPERM;
2247
2248 DQUOT_INIT(dir);
2249
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002250 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 if (d_mountpoint(dentry))
2252 error = -EBUSY;
2253 else {
2254 error = security_inode_unlink(dir, dentry);
2255 if (!error)
2256 error = dir->i_op->unlink(dir, dentry);
2257 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002258 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259
2260 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2261 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002262 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 }
Robert Love0eeca282005-07-12 17:06:03 -04002265
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 return error;
2267}
2268
2269/*
2270 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002271 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 * writeout happening, and we don't want to prevent access to the directory
2273 * while waiting on the I/O.
2274 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002275static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276{
2277 int error = 0;
2278 char * name;
2279 struct dentry *dentry;
2280 struct nameidata nd;
2281 struct inode *inode = NULL;
2282
2283 name = getname(pathname);
2284 if(IS_ERR(name))
2285 return PTR_ERR(name);
2286
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002287 error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 if (error)
2289 goto exit;
2290 error = -EISDIR;
2291 if (nd.last_type != LAST_NORM)
2292 goto exit1;
Jan Blunck4ac91372008-02-14 19:34:32 -08002293 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002294 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 error = PTR_ERR(dentry);
2296 if (!IS_ERR(dentry)) {
2297 /* Why not before? Because we want correct error value */
2298 if (nd.last.name[nd.last.len])
2299 goto slashes;
2300 inode = dentry->d_inode;
2301 if (inode)
2302 atomic_inc(&inode->i_count);
Dave Hansen06227532008-02-15 14:37:34 -08002303 error = mnt_want_write(nd.path.mnt);
2304 if (error)
2305 goto exit2;
Jan Blunck4ac91372008-02-14 19:34:32 -08002306 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08002307 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 exit2:
2309 dput(dentry);
2310 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002311 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 if (inode)
2313 iput(inode); /* truncate the inode here */
2314exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002315 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316exit:
2317 putname(name);
2318 return error;
2319
2320slashes:
2321 error = !dentry->d_inode ? -ENOENT :
2322 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2323 goto exit2;
2324}
2325
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002326asmlinkage long sys_unlinkat(int dfd, const char __user *pathname, int flag)
2327{
2328 if ((flag & ~AT_REMOVEDIR) != 0)
2329 return -EINVAL;
2330
2331 if (flag & AT_REMOVEDIR)
2332 return do_rmdir(dfd, pathname);
2333
2334 return do_unlinkat(dfd, pathname);
2335}
2336
2337asmlinkage long sys_unlink(const char __user *pathname)
2338{
2339 return do_unlinkat(AT_FDCWD, pathname);
2340}
2341
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002342int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343{
2344 int error = may_create(dir, dentry, NULL);
2345
2346 if (error)
2347 return error;
2348
2349 if (!dir->i_op || !dir->i_op->symlink)
2350 return -EPERM;
2351
2352 error = security_inode_symlink(dir, dentry, oldname);
2353 if (error)
2354 return error;
2355
2356 DQUOT_INIT(dir);
2357 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002358 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002359 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 return error;
2361}
2362
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002363asmlinkage long sys_symlinkat(const char __user *oldname,
2364 int newdfd, const char __user *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365{
2366 int error = 0;
2367 char * from;
2368 char * to;
Dave Hansen6902d922006-09-30 23:29:01 -07002369 struct dentry *dentry;
2370 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371
2372 from = getname(oldname);
2373 if(IS_ERR(from))
2374 return PTR_ERR(from);
2375 to = getname(newname);
2376 error = PTR_ERR(to);
Dave Hansen6902d922006-09-30 23:29:01 -07002377 if (IS_ERR(to))
2378 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Dave Hansen6902d922006-09-30 23:29:01 -07002380 error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
2381 if (error)
2382 goto out;
2383 dentry = lookup_create(&nd, 0);
2384 error = PTR_ERR(dentry);
2385 if (IS_ERR(dentry))
2386 goto out_unlock;
2387
Dave Hansen75c3f292008-02-15 14:37:45 -08002388 error = mnt_want_write(nd.path.mnt);
2389 if (error)
2390 goto out_dput;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002391 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
Dave Hansen75c3f292008-02-15 14:37:45 -08002392 mnt_drop_write(nd.path.mnt);
2393out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002394 dput(dentry);
2395out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002396 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002397 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398out:
Dave Hansen6902d922006-09-30 23:29:01 -07002399 putname(to);
2400out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 putname(from);
2402 return error;
2403}
2404
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002405asmlinkage long sys_symlink(const char __user *oldname, const char __user *newname)
2406{
2407 return sys_symlinkat(oldname, AT_FDCWD, newname);
2408}
2409
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2411{
2412 struct inode *inode = old_dentry->d_inode;
2413 int error;
2414
2415 if (!inode)
2416 return -ENOENT;
2417
2418 error = may_create(dir, new_dentry, NULL);
2419 if (error)
2420 return error;
2421
2422 if (dir->i_sb != inode->i_sb)
2423 return -EXDEV;
2424
2425 /*
2426 * A link to an append-only or immutable file cannot be created.
2427 */
2428 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2429 return -EPERM;
2430 if (!dir->i_op || !dir->i_op->link)
2431 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002432 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 return -EPERM;
2434
2435 error = security_inode_link(old_dentry, dir, new_dentry);
2436 if (error)
2437 return error;
2438
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002439 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 DQUOT_INIT(dir);
2441 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002442 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002443 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002444 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 return error;
2446}
2447
2448/*
2449 * Hardlinks are often used in delicate situations. We avoid
2450 * security-related surprises by not following symlinks on the
2451 * newname. --KAB
2452 *
2453 * We don't follow them on the oldname either to be compatible
2454 * with linux 2.0, and to avoid hard-linking to directories
2455 * and other special files. --ADM
2456 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002457asmlinkage long sys_linkat(int olddfd, const char __user *oldname,
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002458 int newdfd, const char __user *newname,
2459 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460{
2461 struct dentry *new_dentry;
2462 struct nameidata nd, old_nd;
2463 int error;
2464 char * to;
2465
Ulrich Drepper45c9b112006-06-25 05:49:11 -07002466 if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002467 return -EINVAL;
2468
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 to = getname(newname);
2470 if (IS_ERR(to))
2471 return PTR_ERR(to);
2472
Ulrich Drepper45c9b112006-06-25 05:49:11 -07002473 error = __user_walk_fd(olddfd, oldname,
2474 flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
2475 &old_nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 if (error)
2477 goto exit;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002478 error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 if (error)
2480 goto out;
2481 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08002482 if (old_nd.path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 goto out_release;
2484 new_dentry = lookup_create(&nd, 0);
2485 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002486 if (IS_ERR(new_dentry))
2487 goto out_unlock;
Dave Hansen75c3f292008-02-15 14:37:45 -08002488 error = mnt_want_write(nd.path.mnt);
2489 if (error)
2490 goto out_dput;
Jan Blunck4ac91372008-02-14 19:34:32 -08002491 error = vfs_link(old_nd.path.dentry, nd.path.dentry->d_inode, new_dentry);
Dave Hansen75c3f292008-02-15 14:37:45 -08002492 mnt_drop_write(nd.path.mnt);
2493out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002494 dput(new_dentry);
2495out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002496 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08002498 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499out:
Jan Blunck1d957f92008-02-14 19:34:35 -08002500 path_put(&old_nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501exit:
2502 putname(to);
2503
2504 return error;
2505}
2506
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002507asmlinkage long sys_link(const char __user *oldname, const char __user *newname)
2508{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002509 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002510}
2511
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512/*
2513 * The worst of all namespace operations - renaming directory. "Perverted"
2514 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2515 * Problems:
2516 * a) we can get into loop creation. Check is done in is_subdir().
2517 * b) race potential - two innocent renames can create a loop together.
2518 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002519 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 * story.
2521 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002522 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 * whether the target exists). Solution: try to be smart with locking
2524 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002525 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 * move will be locked. Thus we can rank directories by the tree
2527 * (ancestors first) and rank all non-directories after them.
2528 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002529 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 * HOWEVER, it relies on the assumption that any object with ->lookup()
2531 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2532 * we'd better make sure that there's no link(2) for them.
2533 * d) some filesystems don't support opened-but-unlinked directories,
2534 * either because of layout or because they are not ready to deal with
2535 * all cases correctly. The latter will be fixed (taking this sort of
2536 * stuff into VFS), but the former is not going away. Solution: the same
2537 * trick as in rmdir().
2538 * e) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002539 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002541 * ->i_mutex on parents, which works but leads to some truely excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 * locking].
2543 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07002544static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2545 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546{
2547 int error = 0;
2548 struct inode *target;
2549
2550 /*
2551 * If we are going to change the parent - check write permissions,
2552 * we'll need to flip '..'.
2553 */
2554 if (new_dir != old_dir) {
2555 error = permission(old_dentry->d_inode, MAY_WRITE, NULL);
2556 if (error)
2557 return error;
2558 }
2559
2560 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2561 if (error)
2562 return error;
2563
2564 target = new_dentry->d_inode;
2565 if (target) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002566 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 dentry_unhash(new_dentry);
2568 }
2569 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2570 error = -EBUSY;
2571 else
2572 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2573 if (target) {
2574 if (!error)
2575 target->i_flags |= S_DEAD;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002576 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 if (d_unhashed(new_dentry))
2578 d_rehash(new_dentry);
2579 dput(new_dentry);
2580 }
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002581 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07002582 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2583 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 return error;
2585}
2586
Adrian Bunk75c96f82005-05-05 16:16:09 -07002587static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
2588 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589{
2590 struct inode *target;
2591 int error;
2592
2593 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2594 if (error)
2595 return error;
2596
2597 dget(new_dentry);
2598 target = new_dentry->d_inode;
2599 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002600 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2602 error = -EBUSY;
2603 else
2604 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2605 if (!error) {
Mark Fasheh349457c2006-09-08 14:22:21 -07002606 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 d_move(old_dentry, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 }
2609 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002610 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 dput(new_dentry);
2612 return error;
2613}
2614
2615int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
2616 struct inode *new_dir, struct dentry *new_dentry)
2617{
2618 int error;
2619 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Robert Love0eeca282005-07-12 17:06:03 -04002620 const char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
2622 if (old_dentry->d_inode == new_dentry->d_inode)
2623 return 0;
2624
2625 error = may_delete(old_dir, old_dentry, is_dir);
2626 if (error)
2627 return error;
2628
2629 if (!new_dentry->d_inode)
2630 error = may_create(new_dir, new_dentry, NULL);
2631 else
2632 error = may_delete(new_dir, new_dentry, is_dir);
2633 if (error)
2634 return error;
2635
2636 if (!old_dir->i_op || !old_dir->i_op->rename)
2637 return -EPERM;
2638
2639 DQUOT_INIT(old_dir);
2640 DQUOT_INIT(new_dir);
2641
Robert Love0eeca282005-07-12 17:06:03 -04002642 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
2643
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 if (is_dir)
2645 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
2646 else
2647 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
2648 if (!error) {
Robert Love0eeca282005-07-12 17:06:03 -04002649 const char *new_name = old_dentry->d_name.name;
John McCutchan89204c42005-08-15 12:13:28 -04002650 fsnotify_move(old_dir, new_dir, old_name, new_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04002651 new_dentry->d_inode, old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 }
Robert Love0eeca282005-07-12 17:06:03 -04002653 fsnotify_oldname_free(old_name);
2654
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 return error;
2656}
2657
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002658static int do_rename(int olddfd, const char *oldname,
2659 int newdfd, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660{
2661 int error = 0;
2662 struct dentry * old_dir, * new_dir;
2663 struct dentry * old_dentry, *new_dentry;
2664 struct dentry * trap;
2665 struct nameidata oldnd, newnd;
2666
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002667 error = do_path_lookup(olddfd, oldname, LOOKUP_PARENT, &oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 if (error)
2669 goto exit;
2670
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002671 error = do_path_lookup(newdfd, newname, LOOKUP_PARENT, &newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 if (error)
2673 goto exit1;
2674
2675 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08002676 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 goto exit2;
2678
Jan Blunck4ac91372008-02-14 19:34:32 -08002679 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 error = -EBUSY;
2681 if (oldnd.last_type != LAST_NORM)
2682 goto exit2;
2683
Jan Blunck4ac91372008-02-14 19:34:32 -08002684 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 if (newnd.last_type != LAST_NORM)
2686 goto exit2;
2687
2688 trap = lock_rename(new_dir, old_dir);
2689
Christoph Hellwig49705b72005-11-08 21:35:06 -08002690 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 error = PTR_ERR(old_dentry);
2692 if (IS_ERR(old_dentry))
2693 goto exit3;
2694 /* source must exist */
2695 error = -ENOENT;
2696 if (!old_dentry->d_inode)
2697 goto exit4;
2698 /* unless the source is a directory trailing slashes give -ENOTDIR */
2699 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
2700 error = -ENOTDIR;
2701 if (oldnd.last.name[oldnd.last.len])
2702 goto exit4;
2703 if (newnd.last.name[newnd.last.len])
2704 goto exit4;
2705 }
2706 /* source should not be ancestor of target */
2707 error = -EINVAL;
2708 if (old_dentry == trap)
2709 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08002710 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 error = PTR_ERR(new_dentry);
2712 if (IS_ERR(new_dentry))
2713 goto exit4;
2714 /* target should not be an ancestor of source */
2715 error = -ENOTEMPTY;
2716 if (new_dentry == trap)
2717 goto exit5;
2718
Dave Hansen9079b1e2008-02-15 14:37:49 -08002719 error = mnt_want_write(oldnd.path.mnt);
2720 if (error)
2721 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 error = vfs_rename(old_dir->d_inode, old_dentry,
2723 new_dir->d_inode, new_dentry);
Dave Hansen9079b1e2008-02-15 14:37:49 -08002724 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725exit5:
2726 dput(new_dentry);
2727exit4:
2728 dput(old_dentry);
2729exit3:
2730 unlock_rename(new_dir, old_dir);
2731exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08002732 path_put(&newnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002734 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735exit:
2736 return error;
2737}
2738
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002739asmlinkage long sys_renameat(int olddfd, const char __user *oldname,
2740 int newdfd, const char __user *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741{
2742 int error;
2743 char * from;
2744 char * to;
2745
2746 from = getname(oldname);
2747 if(IS_ERR(from))
2748 return PTR_ERR(from);
2749 to = getname(newname);
2750 error = PTR_ERR(to);
2751 if (!IS_ERR(to)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002752 error = do_rename(olddfd, from, newdfd, to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 putname(to);
2754 }
2755 putname(from);
2756 return error;
2757}
2758
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002759asmlinkage long sys_rename(const char __user *oldname, const char __user *newname)
2760{
2761 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
2762}
2763
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
2765{
2766 int len;
2767
2768 len = PTR_ERR(link);
2769 if (IS_ERR(link))
2770 goto out;
2771
2772 len = strlen(link);
2773 if (len > (unsigned) buflen)
2774 len = buflen;
2775 if (copy_to_user(buffer, link, len))
2776 len = -EFAULT;
2777out:
2778 return len;
2779}
2780
2781/*
2782 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
2783 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
2784 * using) it for any given inode is up to filesystem.
2785 */
2786int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2787{
2788 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002789 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07002790 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002791
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002793 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07002794 if (IS_ERR(cookie))
2795 return PTR_ERR(cookie);
2796
2797 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
2798 if (dentry->d_inode->i_op->put_link)
2799 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
2800 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801}
2802
2803int vfs_follow_link(struct nameidata *nd, const char *link)
2804{
2805 return __vfs_follow_link(nd, link);
2806}
2807
2808/* get the link contents into pagecache */
2809static char *page_getlink(struct dentry * dentry, struct page **ppage)
2810{
2811 struct page * page;
2812 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07002813 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07002815 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 *ppage = page;
2817 return kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818}
2819
2820int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2821{
2822 struct page *page = NULL;
2823 char *s = page_getlink(dentry, &page);
2824 int res = vfs_readlink(dentry,buffer,buflen,s);
2825 if (page) {
2826 kunmap(page);
2827 page_cache_release(page);
2828 }
2829 return res;
2830}
2831
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002832void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002834 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002836 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837}
2838
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002839void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002841 struct page *page = cookie;
2842
2843 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 kunmap(page);
2845 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 }
2847}
2848
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002849int __page_symlink(struct inode *inode, const char *symname, int len,
2850 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851{
2852 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002853 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07002854 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08002855 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 char *kaddr;
2857
NeilBrown7e53cac2006-03-25 03:07:57 -08002858retry:
Nick Pigginafddba42007-10-16 01:25:01 -07002859 err = pagecache_write_begin(NULL, mapping, 0, len-1,
2860 AOP_FLAG_UNINTERRUPTIBLE, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07002862 goto fail;
2863
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 kaddr = kmap_atomic(page, KM_USER0);
2865 memcpy(kaddr, symname, len-1);
2866 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07002867
2868 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
2869 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 if (err < 0)
2871 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07002872 if (err < len-1)
2873 goto retry;
2874
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 mark_inode_dirty(inode);
2876 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877fail:
2878 return err;
2879}
2880
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002881int page_symlink(struct inode *inode, const char *symname, int len)
2882{
2883 return __page_symlink(inode, symname, len,
2884 mapping_gfp_mask(inode->i_mapping));
2885}
2886
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002887const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 .readlink = generic_readlink,
2889 .follow_link = page_follow_link_light,
2890 .put_link = page_put_link,
2891};
2892
2893EXPORT_SYMBOL(__user_walk);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002894EXPORT_SYMBOL(__user_walk_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895EXPORT_SYMBOL(follow_down);
2896EXPORT_SYMBOL(follow_up);
2897EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
2898EXPORT_SYMBOL(getname);
2899EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900EXPORT_SYMBOL(lookup_one_len);
2901EXPORT_SYMBOL(page_follow_link_light);
2902EXPORT_SYMBOL(page_put_link);
2903EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002904EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905EXPORT_SYMBOL(page_symlink);
2906EXPORT_SYMBOL(page_symlink_inode_operations);
2907EXPORT_SYMBOL(path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002908EXPORT_SYMBOL(vfs_path_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909EXPORT_SYMBOL(permission);
Christoph Hellwige4543ed2005-11-08 21:35:04 -08002910EXPORT_SYMBOL(vfs_permission);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -08002911EXPORT_SYMBOL(file_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912EXPORT_SYMBOL(unlock_rename);
2913EXPORT_SYMBOL(vfs_create);
2914EXPORT_SYMBOL(vfs_follow_link);
2915EXPORT_SYMBOL(vfs_link);
2916EXPORT_SYMBOL(vfs_mkdir);
2917EXPORT_SYMBOL(vfs_mknod);
2918EXPORT_SYMBOL(generic_permission);
2919EXPORT_SYMBOL(vfs_readlink);
2920EXPORT_SYMBOL(vfs_rename);
2921EXPORT_SYMBOL(vfs_rmdir);
2922EXPORT_SYMBOL(vfs_symlink);
2923EXPORT_SYMBOL(vfs_unlink);
2924EXPORT_SYMBOL(dentry_unhash);
2925EXPORT_SYMBOL(generic_readlink);