blob: 024993535b6f195af876727238ed9390d65af62a [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <asm/namei.h>
34#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
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800109static 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
187 if (current->fsuid == inode->i_uid)
188 mode >>= 6;
189 else {
190 if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
191 int error = check_acl(inode, mask);
192 if (error == -EACCES)
193 goto check_capabilities;
194 else if (error != -EAGAIN)
195 return error;
196 }
197
198 if (in_group_p(inode->i_gid))
199 mode >>= 3;
200 }
201
202 /*
203 * If the DACs are ok we don't need any capability check.
204 */
205 if (((mode & mask & (MAY_READ|MAY_WRITE|MAY_EXEC)) == mask))
206 return 0;
207
208 check_capabilities:
209 /*
210 * Read/write DACs are always overridable.
211 * Executable DACs are overridable if at least one exec bit is set.
212 */
213 if (!(mask & MAY_EXEC) ||
214 (inode->i_mode & S_IXUGO) || S_ISDIR(inode->i_mode))
215 if (capable(CAP_DAC_OVERRIDE))
216 return 0;
217
218 /*
219 * Searching includes executable on directories, else just read.
220 */
221 if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
222 if (capable(CAP_DAC_READ_SEARCH))
223 return 0;
224
225 return -EACCES;
226}
227
228int permission(struct inode *inode, int mask, struct nameidata *nd)
229{
230 int retval, submask;
Dave Hansenc7eb2662007-10-16 23:31:14 -0700231 struct vfsmount *mnt = NULL;
232
233 if (nd)
Jan Blunck4ac91372008-02-14 19:34:32 -0800234 mnt = nd->path.mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
236 if (mask & MAY_WRITE) {
Miklos Szeredi22590e42007-10-16 23:27:08 -0700237 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 /*
240 * Nobody gets write access to a read-only fs.
241 */
242 if (IS_RDONLY(inode) &&
243 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
244 return -EROFS;
245
246 /*
247 * Nobody gets write access to an immutable file.
248 */
249 if (IS_IMMUTABLE(inode))
250 return -EACCES;
251 }
252
Miklos Szeredi22590e42007-10-16 23:27:08 -0700253 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode)) {
254 /*
255 * MAY_EXEC on regular files is denied if the fs is mounted
256 * with the "noexec" flag.
257 */
Dave Hansenc7eb2662007-10-16 23:31:14 -0700258 if (mnt && (mnt->mnt_flags & MNT_NOEXEC))
Miklos Szeredi22590e42007-10-16 23:27:08 -0700259 return -EACCES;
260 }
Trond Myklebusta343bb72006-08-22 20:06:03 -0400261
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 /* Ordinary permission routines do not understand MAY_APPEND. */
263 submask = mask & ~MAY_APPEND;
Miklos Szeredi22590e42007-10-16 23:27:08 -0700264 if (inode->i_op && inode->i_op->permission) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 retval = inode->i_op->permission(inode, submask, nd);
Miklos Szeredi22590e42007-10-16 23:27:08 -0700266 if (!retval) {
267 /*
268 * Exec permission on a regular file is denied if none
269 * of the execute bits are set.
270 *
271 * This check should be done by the ->permission()
272 * method.
273 */
274 if ((mask & MAY_EXEC) && S_ISREG(inode->i_mode) &&
275 !(inode->i_mode & S_IXUGO))
276 return -EACCES;
277 }
278 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 retval = generic_permission(inode, submask, NULL);
Miklos Szeredi22590e42007-10-16 23:27:08 -0700280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (retval)
282 return retval;
283
284 return security_inode_permission(inode, mask, nd);
285}
286
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800287/**
288 * vfs_permission - check for access rights to a given path
289 * @nd: lookup result that describes the path
290 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
291 *
292 * Used to check for read/write/execute permissions on a path.
293 * We use "fsuid" for this, letting us set arbitrary permissions
294 * for filesystem access without changing the "normal" uids which
295 * are used for other things.
296 */
297int vfs_permission(struct nameidata *nd, int mask)
298{
Jan Blunck4ac91372008-02-14 19:34:32 -0800299 return permission(nd->path.dentry->d_inode, mask, nd);
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800300}
301
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800302/**
303 * file_permission - check for additional access rights to a given file
304 * @file: file to check access rights for
305 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
306 *
307 * Used to check for read/write/execute permissions on an already opened
308 * file.
309 *
310 * Note:
311 * Do not use this function in new code. All access checks should
312 * be done using vfs_permission().
313 */
314int file_permission(struct file *file, int mask)
315{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800316 return permission(file->f_path.dentry->d_inode, mask, NULL);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800317}
318
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319/*
320 * get_write_access() gets write permission for a file.
321 * put_write_access() releases this write permission.
322 * This is used for regular files.
323 * We cannot support write (and maybe mmap read-write shared) accesses and
324 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
325 * can have the following values:
326 * 0: no writers, no VM_DENYWRITE mappings
327 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
328 * > 0: (i_writecount) users are writing to the file.
329 *
330 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
331 * except for the cases where we don't hold i_writecount yet. Then we need to
332 * use {get,deny}_write_access() - these functions check the sign and refuse
333 * to do the change if sign is wrong. Exclusion between them is provided by
334 * the inode->i_lock spinlock.
335 */
336
337int get_write_access(struct inode * inode)
338{
339 spin_lock(&inode->i_lock);
340 if (atomic_read(&inode->i_writecount) < 0) {
341 spin_unlock(&inode->i_lock);
342 return -ETXTBSY;
343 }
344 atomic_inc(&inode->i_writecount);
345 spin_unlock(&inode->i_lock);
346
347 return 0;
348}
349
350int deny_write_access(struct file * file)
351{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800352 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
354 spin_lock(&inode->i_lock);
355 if (atomic_read(&inode->i_writecount) > 0) {
356 spin_unlock(&inode->i_lock);
357 return -ETXTBSY;
358 }
359 atomic_dec(&inode->i_writecount);
360 spin_unlock(&inode->i_lock);
361
362 return 0;
363}
364
Jan Blunck1d957f92008-02-14 19:34:35 -0800365/**
366 * path_put - put a reference to a path
367 * @path: path to put the reference to
368 *
369 * Given a path decrement the reference count to the dentry and the vfsmount.
370 */
371void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Jan Blunck1d957f92008-02-14 19:34:35 -0800373 dput(path->dentry);
374 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
Jan Blunck1d957f92008-02-14 19:34:35 -0800376EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Trond Myklebust834f2a42005-10-18 14:20:16 -0700378/**
379 * release_open_intent - free up open intent resources
380 * @nd: pointer to nameidata
381 */
382void release_open_intent(struct nameidata *nd)
383{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800384 if (nd->intent.open.file->f_path.dentry == NULL)
Trond Myklebust834f2a42005-10-18 14:20:16 -0700385 put_filp(nd->intent.open.file);
386 else
387 fput(nd->intent.open.file);
388}
389
Ian Kentbcdc5e02006-09-27 01:50:44 -0700390static inline struct dentry *
391do_revalidate(struct dentry *dentry, struct nameidata *nd)
392{
393 int status = dentry->d_op->d_revalidate(dentry, nd);
394 if (unlikely(status <= 0)) {
395 /*
396 * The dentry failed validation.
397 * If d_revalidate returned 0 attempt to invalidate
398 * the dentry otherwise d_revalidate is asking us
399 * to return a fail status.
400 */
401 if (!status) {
402 if (!d_invalidate(dentry)) {
403 dput(dentry);
404 dentry = NULL;
405 }
406 } else {
407 dput(dentry);
408 dentry = ERR_PTR(status);
409 }
410 }
411 return dentry;
412}
413
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414/*
415 * Internal lookup() using the new generic dcache.
416 * SMP-safe
417 */
418static struct dentry * cached_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
419{
420 struct dentry * dentry = __d_lookup(parent, name);
421
422 /* lockess __d_lookup may fail due to concurrent d_move()
423 * in some unrelated directory, so try with d_lookup
424 */
425 if (!dentry)
426 dentry = d_lookup(parent, name);
427
Ian Kentbcdc5e02006-09-27 01:50:44 -0700428 if (dentry && dentry->d_op && dentry->d_op->d_revalidate)
429 dentry = do_revalidate(dentry, nd);
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return dentry;
432}
433
434/*
435 * Short-cut version of permission(), for calling by
436 * path_walk(), when dcache lock is held. Combines parts
437 * of permission() and generic_permission(), and tests ONLY for
438 * MAY_EXEC permission.
439 *
440 * If appropriate, check DAC only. If not appropriate, or
441 * short-cut DAC fails, then call permission() to do more
442 * complete permission check.
443 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800444static int exec_permission_lite(struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 struct nameidata *nd)
446{
447 umode_t mode = inode->i_mode;
448
449 if (inode->i_op && inode->i_op->permission)
450 return -EAGAIN;
451
452 if (current->fsuid == inode->i_uid)
453 mode >>= 6;
454 else if (in_group_p(inode->i_gid))
455 mode >>= 3;
456
457 if (mode & MAY_EXEC)
458 goto ok;
459
460 if ((inode->i_mode & S_IXUGO) && capable(CAP_DAC_OVERRIDE))
461 goto ok;
462
463 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_OVERRIDE))
464 goto ok;
465
466 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_READ_SEARCH))
467 goto ok;
468
469 return -EACCES;
470ok:
471 return security_inode_permission(inode, MAY_EXEC, nd);
472}
473
474/*
475 * This is called when everything else fails, and we actually have
476 * to go to the low-level filesystem to find out what we should do..
477 *
478 * We get the directory semaphore, and after getting that we also
479 * make sure that nobody added the entry to the dcache in the meantime..
480 * SMP-safe
481 */
482static struct dentry * real_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
483{
484 struct dentry * result;
485 struct inode *dir = parent->d_inode;
486
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800487 mutex_lock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 /*
489 * First re-do the cached lookup just in case it was created
490 * while we waited for the directory semaphore..
491 *
492 * FIXME! This could use version numbering or similar to
493 * avoid unnecessary cache lookups.
494 *
495 * The "dcache_lock" is purely to protect the RCU list walker
496 * from concurrent renames at this point (we mustn't get false
497 * negatives from the RCU list walk here, unlike the optimistic
498 * fast walk).
499 *
500 * so doing d_lookup() (with seqlock), instead of lockfree __d_lookup
501 */
502 result = d_lookup(parent, name);
503 if (!result) {
504 struct dentry * dentry = d_alloc(parent, name);
505 result = ERR_PTR(-ENOMEM);
506 if (dentry) {
507 result = dir->i_op->lookup(dir, dentry, nd);
508 if (result)
509 dput(dentry);
510 else
511 result = dentry;
512 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800513 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return result;
515 }
516
517 /*
518 * Uhhuh! Nasty case: the cache was re-populated while
519 * we waited on the semaphore. Need to revalidate.
520 */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800521 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 if (result->d_op && result->d_op->d_revalidate) {
Ian Kentbcdc5e02006-09-27 01:50:44 -0700523 result = do_revalidate(result, nd);
524 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 result = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 }
527 return result;
528}
529
530static int __emul_lookup_dentry(const char *, struct nameidata *);
531
532/* SMP-safe */
Arjan van de Venf1662352006-01-14 13:21:31 -0800533static __always_inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534walk_init_root(const char *name, struct nameidata *nd)
535{
Andreas Mohre518ddb2006-09-29 02:01:22 -0700536 struct fs_struct *fs = current->fs;
537
538 read_lock(&fs->lock);
539 if (fs->altroot && !(nd->flags & LOOKUP_NOALT)) {
Jan Blunck4ac91372008-02-14 19:34:32 -0800540 nd->path.mnt = mntget(fs->altrootmnt);
541 nd->path.dentry = dget(fs->altroot);
Andreas Mohre518ddb2006-09-29 02:01:22 -0700542 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 if (__emul_lookup_dentry(name,nd))
544 return 0;
Andreas Mohre518ddb2006-09-29 02:01:22 -0700545 read_lock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800547 nd->path.mnt = mntget(fs->rootmnt);
548 nd->path.dentry = dget(fs->root);
Andreas Mohre518ddb2006-09-29 02:01:22 -0700549 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return 1;
551}
552
Arjan van de Venf1662352006-01-14 13:21:31 -0800553static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554{
555 int res = 0;
556 char *name;
557 if (IS_ERR(link))
558 goto fail;
559
560 if (*link == '/') {
Jan Blunck1d957f92008-02-14 19:34:35 -0800561 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 if (!walk_init_root(link, nd))
563 /* weird __emul_prefix() stuff did it */
564 goto out;
565 }
566 res = link_path_walk(link, nd);
567out:
568 if (nd->depth || res || nd->last_type!=LAST_NORM)
569 return res;
570 /*
571 * If it is an iterative symlinks resolution in open_namei() we
572 * have to copy the last component. And all that crap because of
573 * bloody create() on broken symlinks. Furrfu...
574 */
575 name = __getname();
576 if (unlikely(!name)) {
Jan Blunck1d957f92008-02-14 19:34:35 -0800577 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return -ENOMEM;
579 }
580 strcpy(name, nd->last.name);
581 nd->last.name = name;
582 return 0;
583fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800584 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 return PTR_ERR(link);
586}
587
Jan Blunck1d957f92008-02-14 19:34:35 -0800588static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700589{
590 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800591 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700592 mntput(path->mnt);
593}
594
595static inline void path_to_nameidata(struct path *path, struct nameidata *nd)
596{
Jan Blunck4ac91372008-02-14 19:34:32 -0800597 dput(nd->path.dentry);
598 if (nd->path.mnt != path->mnt)
599 mntput(nd->path.mnt);
600 nd->path.mnt = path->mnt;
601 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700602}
603
Ian Kent051d3812006-03-27 01:14:53 -0800604static __always_inline int __do_follow_link(struct path *path, struct nameidata *nd)
605{
606 int error;
607 void *cookie;
608 struct dentry *dentry = path->dentry;
609
610 touch_atime(path->mnt, dentry);
611 nd_set_link(nd, NULL);
612
Jan Blunck4ac91372008-02-14 19:34:32 -0800613 if (path->mnt != nd->path.mnt) {
Ian Kent051d3812006-03-27 01:14:53 -0800614 path_to_nameidata(path, nd);
615 dget(dentry);
616 }
617 mntget(path->mnt);
618 cookie = dentry->d_inode->i_op->follow_link(dentry, nd);
619 error = PTR_ERR(cookie);
620 if (!IS_ERR(cookie)) {
621 char *s = nd_get_link(nd);
622 error = 0;
623 if (s)
624 error = __vfs_follow_link(nd, s);
625 if (dentry->d_inode->i_op->put_link)
626 dentry->d_inode->i_op->put_link(dentry, nd, cookie);
627 }
Jan Blunck09da59162008-02-14 19:34:37 -0800628 path_put(path);
Ian Kent051d3812006-03-27 01:14:53 -0800629
630 return error;
631}
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633/*
634 * This limits recursive symlink follows to 8, while
635 * limiting consecutive symlinks to 40.
636 *
637 * Without that kind of total limit, nasty chains of consecutive
638 * symlinks can cause almost arbitrarily long lookups.
639 */
Al Viro90ebe562005-06-06 13:35:58 -0700640static inline int do_follow_link(struct path *path, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
642 int err = -ELOOP;
643 if (current->link_count >= MAX_NESTED_LINKS)
644 goto loop;
645 if (current->total_link_count >= 40)
646 goto loop;
647 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
648 cond_resched();
Al Viro90ebe562005-06-06 13:35:58 -0700649 err = security_inode_follow_link(path->dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (err)
651 goto loop;
652 current->link_count++;
653 current->total_link_count++;
654 nd->depth++;
Al Virocd4e91d2005-06-06 13:36:03 -0700655 err = __do_follow_link(path, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 current->link_count--;
657 nd->depth--;
658 return err;
659loop:
Jan Blunck1d957f92008-02-14 19:34:35 -0800660 path_put_conditional(path, nd);
661 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 return err;
663}
664
665int follow_up(struct vfsmount **mnt, struct dentry **dentry)
666{
667 struct vfsmount *parent;
668 struct dentry *mountpoint;
669 spin_lock(&vfsmount_lock);
670 parent=(*mnt)->mnt_parent;
671 if (parent == *mnt) {
672 spin_unlock(&vfsmount_lock);
673 return 0;
674 }
675 mntget(parent);
676 mountpoint=dget((*mnt)->mnt_mountpoint);
677 spin_unlock(&vfsmount_lock);
678 dput(*dentry);
679 *dentry = mountpoint;
680 mntput(*mnt);
681 *mnt = parent;
682 return 1;
683}
684
685/* no need for dcache_lock, as serialization is taken care in
686 * namespace.c
687 */
Al Viro463ffb22005-06-06 13:36:05 -0700688static int __follow_mount(struct path *path)
689{
690 int res = 0;
691 while (d_mountpoint(path->dentry)) {
692 struct vfsmount *mounted = lookup_mnt(path->mnt, path->dentry);
693 if (!mounted)
694 break;
695 dput(path->dentry);
696 if (res)
697 mntput(path->mnt);
698 path->mnt = mounted;
699 path->dentry = dget(mounted->mnt_root);
700 res = 1;
701 }
702 return res;
703}
704
Al Viro58c465e2005-06-06 13:36:13 -0700705static void follow_mount(struct vfsmount **mnt, struct dentry **dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 while (d_mountpoint(*dentry)) {
708 struct vfsmount *mounted = lookup_mnt(*mnt, *dentry);
709 if (!mounted)
710 break;
Al Viro58c465e2005-06-06 13:36:13 -0700711 dput(*dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 mntput(*mnt);
713 *mnt = mounted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 *dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716}
717
718/* no need for dcache_lock, as serialization is taken care in
719 * namespace.c
720 */
Al Viroe13b2102005-06-06 13:36:06 -0700721int follow_down(struct vfsmount **mnt, struct dentry **dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
723 struct vfsmount *mounted;
724
725 mounted = lookup_mnt(*mnt, *dentry);
726 if (mounted) {
Al Viroe13b2102005-06-06 13:36:06 -0700727 dput(*dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 mntput(*mnt);
729 *mnt = mounted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 *dentry = dget(mounted->mnt_root);
731 return 1;
732 }
733 return 0;
734}
735
Arjan van de Venf1662352006-01-14 13:21:31 -0800736static __always_inline void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Andreas Mohre518ddb2006-09-29 02:01:22 -0700738 struct fs_struct *fs = current->fs;
739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 while(1) {
741 struct vfsmount *parent;
Jan Blunck4ac91372008-02-14 19:34:32 -0800742 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Andreas Mohre518ddb2006-09-29 02:01:22 -0700744 read_lock(&fs->lock);
Jan Blunck4ac91372008-02-14 19:34:32 -0800745 if (nd->path.dentry == fs->root &&
746 nd->path.mnt == fs->rootmnt) {
Andreas Mohre518ddb2006-09-29 02:01:22 -0700747 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 break;
749 }
Andreas Mohre518ddb2006-09-29 02:01:22 -0700750 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 spin_lock(&dcache_lock);
Jan Blunck4ac91372008-02-14 19:34:32 -0800752 if (nd->path.dentry != nd->path.mnt->mnt_root) {
753 nd->path.dentry = dget(nd->path.dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 spin_unlock(&dcache_lock);
755 dput(old);
756 break;
757 }
758 spin_unlock(&dcache_lock);
759 spin_lock(&vfsmount_lock);
Jan Blunck4ac91372008-02-14 19:34:32 -0800760 parent = nd->path.mnt->mnt_parent;
761 if (parent == nd->path.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 spin_unlock(&vfsmount_lock);
763 break;
764 }
765 mntget(parent);
Jan Blunck4ac91372008-02-14 19:34:32 -0800766 nd->path.dentry = dget(nd->path.mnt->mnt_mountpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 spin_unlock(&vfsmount_lock);
768 dput(old);
Jan Blunck4ac91372008-02-14 19:34:32 -0800769 mntput(nd->path.mnt);
770 nd->path.mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800772 follow_mount(&nd->path.mnt, &nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775/*
776 * It's more convoluted than I'd like it to be, but... it's still fairly
777 * small and for now I'd prefer to have fast path as straight as possible.
778 * It _is_ time-critical.
779 */
780static int do_lookup(struct nameidata *nd, struct qstr *name,
781 struct path *path)
782{
Jan Blunck4ac91372008-02-14 19:34:32 -0800783 struct vfsmount *mnt = nd->path.mnt;
784 struct dentry *dentry = __d_lookup(nd->path.dentry, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
786 if (!dentry)
787 goto need_lookup;
788 if (dentry->d_op && dentry->d_op->d_revalidate)
789 goto need_revalidate;
790done:
791 path->mnt = mnt;
792 path->dentry = dentry;
Al Viro634ee702005-06-06 13:36:13 -0700793 __follow_mount(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return 0;
795
796need_lookup:
Jan Blunck4ac91372008-02-14 19:34:32 -0800797 dentry = real_lookup(nd->path.dentry, name, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 if (IS_ERR(dentry))
799 goto fail;
800 goto done;
801
802need_revalidate:
Ian Kentbcdc5e02006-09-27 01:50:44 -0700803 dentry = do_revalidate(dentry, nd);
804 if (!dentry)
805 goto need_lookup;
806 if (IS_ERR(dentry))
807 goto fail;
808 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
810fail:
811 return PTR_ERR(dentry);
812}
813
814/*
815 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +0100816 * This is the basic name resolution function, turning a pathname into
817 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 *
Prasanna Medaea3834d2005-04-29 16:00:17 +0100819 * Returns 0 and nd will have valid dentry and mnt on success.
820 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800822static int __link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
824 struct path next;
825 struct inode *inode;
826 int err;
827 unsigned int lookup_flags = nd->flags;
828
829 while (*name=='/')
830 name++;
831 if (!*name)
832 goto return_reval;
833
Jan Blunck4ac91372008-02-14 19:34:32 -0800834 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 if (nd->depth)
Trond Myklebustf55eab82006-02-04 23:28:01 -0800836 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
838 /* At this point we know we have a real path component. */
839 for(;;) {
840 unsigned long hash;
841 struct qstr this;
842 unsigned int c;
843
Trond Myklebustcdce5d62005-10-18 14:20:18 -0700844 nd->flags |= LOOKUP_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 err = exec_permission_lite(inode, nd);
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800846 if (err == -EAGAIN)
847 err = vfs_permission(nd, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (err)
849 break;
850
851 this.name = name;
852 c = *(const unsigned char *)name;
853
854 hash = init_name_hash();
855 do {
856 name++;
857 hash = partial_name_hash(c, hash);
858 c = *(const unsigned char *)name;
859 } while (c && (c != '/'));
860 this.len = name - (const char *) this.name;
861 this.hash = end_name_hash(hash);
862
863 /* remove trailing slashes? */
864 if (!c)
865 goto last_component;
866 while (*++name == '/');
867 if (!*name)
868 goto last_with_slashes;
869
870 /*
871 * "." and ".." are special - ".." especially so because it has
872 * to be able to know about the current root directory and
873 * parent relationships.
874 */
875 if (this.name[0] == '.') switch (this.len) {
876 default:
877 break;
878 case 2:
879 if (this.name[1] != '.')
880 break;
Al Viro58c465e2005-06-06 13:36:13 -0700881 follow_dotdot(nd);
Jan Blunck4ac91372008-02-14 19:34:32 -0800882 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 /* fallthrough */
884 case 1:
885 continue;
886 }
887 /*
888 * See if the low-level filesystem might want
889 * to use its own hash..
890 */
Jan Blunck4ac91372008-02-14 19:34:32 -0800891 if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) {
892 err = nd->path.dentry->d_op->d_hash(nd->path.dentry,
893 &this);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (err < 0)
895 break;
896 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 /* This does the actual lookups.. */
898 err = do_lookup(nd, &this, &next);
899 if (err)
900 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 err = -ENOENT;
903 inode = next.dentry->d_inode;
904 if (!inode)
905 goto out_dput;
906 err = -ENOTDIR;
907 if (!inode->i_op)
908 goto out_dput;
909
910 if (inode->i_op->follow_link) {
Al Viro90ebe562005-06-06 13:35:58 -0700911 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 if (err)
913 goto return_err;
914 err = -ENOENT;
Jan Blunck4ac91372008-02-14 19:34:32 -0800915 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (!inode)
917 break;
918 err = -ENOTDIR;
919 if (!inode->i_op)
920 break;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700921 } else
922 path_to_nameidata(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 err = -ENOTDIR;
924 if (!inode->i_op->lookup)
925 break;
926 continue;
927 /* here ends the main loop */
928
929last_with_slashes:
930 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
931last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -0800932 /* Clear LOOKUP_CONTINUE iff it was previously unset */
933 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 if (lookup_flags & LOOKUP_PARENT)
935 goto lookup_parent;
936 if (this.name[0] == '.') switch (this.len) {
937 default:
938 break;
939 case 2:
940 if (this.name[1] != '.')
941 break;
Al Viro58c465e2005-06-06 13:36:13 -0700942 follow_dotdot(nd);
Jan Blunck4ac91372008-02-14 19:34:32 -0800943 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 /* fallthrough */
945 case 1:
946 goto return_reval;
947 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800948 if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) {
949 err = nd->path.dentry->d_op->d_hash(nd->path.dentry,
950 &this);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 if (err < 0)
952 break;
953 }
954 err = do_lookup(nd, &this, &next);
955 if (err)
956 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 inode = next.dentry->d_inode;
958 if ((lookup_flags & LOOKUP_FOLLOW)
959 && inode && inode->i_op && inode->i_op->follow_link) {
Al Viro90ebe562005-06-06 13:35:58 -0700960 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 if (err)
962 goto return_err;
Jan Blunck4ac91372008-02-14 19:34:32 -0800963 inode = nd->path.dentry->d_inode;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700964 } else
965 path_to_nameidata(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 err = -ENOENT;
967 if (!inode)
968 break;
969 if (lookup_flags & LOOKUP_DIRECTORY) {
970 err = -ENOTDIR;
971 if (!inode->i_op || !inode->i_op->lookup)
972 break;
973 }
974 goto return_base;
975lookup_parent:
976 nd->last = this;
977 nd->last_type = LAST_NORM;
978 if (this.name[0] != '.')
979 goto return_base;
980 if (this.len == 1)
981 nd->last_type = LAST_DOT;
982 else if (this.len == 2 && this.name[1] == '.')
983 nd->last_type = LAST_DOTDOT;
984 else
985 goto return_base;
986return_reval:
987 /*
988 * We bypassed the ordinary revalidation routines.
989 * We may need to check the cached dentry for staleness.
990 */
Jan Blunck4ac91372008-02-14 19:34:32 -0800991 if (nd->path.dentry && nd->path.dentry->d_sb &&
992 (nd->path.dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 err = -ESTALE;
994 /* Note: we do not d_invalidate() */
Jan Blunck4ac91372008-02-14 19:34:32 -0800995 if (!nd->path.dentry->d_op->d_revalidate(
996 nd->path.dentry, nd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 break;
998 }
999return_base:
1000 return 0;
1001out_dput:
Jan Blunck1d957f92008-02-14 19:34:35 -08001002 path_put_conditional(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 break;
1004 }
Jan Blunck1d957f92008-02-14 19:34:35 -08001005 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006return_err:
1007 return err;
1008}
1009
1010/*
1011 * Wrapper to retry pathname resolution whenever the underlying
1012 * file system returns an ESTALE.
1013 *
1014 * Retry the whole path once, forcing real lookup requests
1015 * instead of relying on the dcache.
1016 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001017static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018{
1019 struct nameidata save = *nd;
1020 int result;
1021
1022 /* make sure the stuff we saved doesn't go away */
Jan Blunck4ac91372008-02-14 19:34:32 -08001023 dget(save.path.dentry);
1024 mntget(save.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025
1026 result = __link_path_walk(name, nd);
1027 if (result == -ESTALE) {
1028 *nd = save;
Jan Blunck4ac91372008-02-14 19:34:32 -08001029 dget(nd->path.dentry);
1030 mntget(nd->path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 nd->flags |= LOOKUP_REVAL;
1032 result = __link_path_walk(name, nd);
1033 }
1034
Jan Blunck09da59162008-02-14 19:34:37 -08001035 path_put(&save.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036
1037 return result;
1038}
1039
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001040static int path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041{
1042 current->total_link_count = 0;
1043 return link_path_walk(name, nd);
1044}
1045
Prasanna Medaea3834d2005-04-29 16:00:17 +01001046/*
1047 * SMP-safe: Returns 1 and nd will have valid dentry and mnt, if
1048 * everything is done. Returns 0 and drops input nd, if lookup failed;
1049 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050static int __emul_lookup_dentry(const char *name, struct nameidata *nd)
1051{
1052 if (path_walk(name, nd))
1053 return 0; /* something went wrong... */
1054
Jan Blunck4ac91372008-02-14 19:34:32 -08001055 if (!nd->path.dentry->d_inode ||
1056 S_ISDIR(nd->path.dentry->d_inode->i_mode)) {
Jan Blunck09da59162008-02-14 19:34:37 -08001057 struct path old_path = nd->path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 struct qstr last = nd->last;
1059 int last_type = nd->last_type;
Andreas Mohre518ddb2006-09-29 02:01:22 -07001060 struct fs_struct *fs = current->fs;
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 /*
Andreas Mohre518ddb2006-09-29 02:01:22 -07001063 * NAME was not found in alternate root or it's a directory.
1064 * Try to find it in the normal root:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 */
1066 nd->last_type = LAST_ROOT;
Andreas Mohre518ddb2006-09-29 02:01:22 -07001067 read_lock(&fs->lock);
Jan Blunck4ac91372008-02-14 19:34:32 -08001068 nd->path.mnt = mntget(fs->rootmnt);
1069 nd->path.dentry = dget(fs->root);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001070 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 if (path_walk(name, nd) == 0) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001072 if (nd->path.dentry->d_inode) {
Jan Blunck09da59162008-02-14 19:34:37 -08001073 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return 1;
1075 }
Jan Blunck1d957f92008-02-14 19:34:35 -08001076 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 }
Jan Blunck09da59162008-02-14 19:34:37 -08001078 nd->path = old_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 nd->last = last;
1080 nd->last_type = last_type;
1081 }
1082 return 1;
1083}
1084
1085void set_fs_altroot(void)
1086{
1087 char *emul = __emul_prefix();
1088 struct nameidata nd;
1089 struct vfsmount *mnt = NULL, *oldmnt;
1090 struct dentry *dentry = NULL, *olddentry;
1091 int err;
Andreas Mohre518ddb2006-09-29 02:01:22 -07001092 struct fs_struct *fs = current->fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 if (!emul)
1095 goto set_it;
1096 err = path_lookup(emul, LOOKUP_FOLLOW|LOOKUP_DIRECTORY|LOOKUP_NOALT, &nd);
1097 if (!err) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001098 mnt = nd.path.mnt;
1099 dentry = nd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101set_it:
Andreas Mohre518ddb2006-09-29 02:01:22 -07001102 write_lock(&fs->lock);
1103 oldmnt = fs->altrootmnt;
1104 olddentry = fs->altroot;
1105 fs->altrootmnt = mnt;
1106 fs->altroot = dentry;
1107 write_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if (olddentry) {
1109 dput(olddentry);
1110 mntput(oldmnt);
1111 }
1112}
1113
Prasanna Medaea3834d2005-04-29 16:00:17 +01001114/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001115static int do_path_lookup(int dfd, const char *name,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001116 unsigned int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001118 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001119 int fput_needed;
1120 struct file *file;
Andreas Mohre518ddb2006-09-29 02:01:22 -07001121 struct fs_struct *fs = current->fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
1123 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1124 nd->flags = flags;
1125 nd->depth = 0;
1126
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (*name=='/') {
Andreas Mohre518ddb2006-09-29 02:01:22 -07001128 read_lock(&fs->lock);
1129 if (fs->altroot && !(nd->flags & LOOKUP_NOALT)) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001130 nd->path.mnt = mntget(fs->altrootmnt);
1131 nd->path.dentry = dget(fs->altroot);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001132 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (__emul_lookup_dentry(name,nd))
Prasanna Medaea3834d2005-04-29 16:00:17 +01001134 goto out; /* found in altroot */
Andreas Mohre518ddb2006-09-29 02:01:22 -07001135 read_lock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001137 nd->path.mnt = mntget(fs->rootmnt);
1138 nd->path.dentry = dget(fs->root);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001139 read_unlock(&fs->lock);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001140 } else if (dfd == AT_FDCWD) {
Andreas Mohre518ddb2006-09-29 02:01:22 -07001141 read_lock(&fs->lock);
Jan Blunck4ac91372008-02-14 19:34:32 -08001142 nd->path.mnt = mntget(fs->pwdmnt);
1143 nd->path.dentry = dget(fs->pwd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001144 read_unlock(&fs->lock);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001145 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001146 struct dentry *dentry;
1147
1148 file = fget_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001149 retval = -EBADF;
1150 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001151 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001152
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001153 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001154
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001155 retval = -ENOTDIR;
1156 if (!S_ISDIR(dentry->d_inode->i_mode))
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001157 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001158
1159 retval = file_permission(file, MAY_EXEC);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001160 if (retval)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001161 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001162
Jan Blunck4ac91372008-02-14 19:34:32 -08001163 nd->path.mnt = mntget(file->f_path.mnt);
1164 nd->path.dentry = dget(dentry);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001165
1166 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 }
Josef 'Jeff' Sipek2dfdd262007-05-09 02:33:41 -07001168
1169 retval = path_walk(name, nd);
Prasanna Medaea3834d2005-04-29 16:00:17 +01001170out:
Jan Blunck4ac91372008-02-14 19:34:32 -08001171 if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
1172 nd->path.dentry->d_inode))
1173 audit_inode(name, nd->path.dentry);
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001174out_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001175 return retval;
1176
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001177fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001178 fput_light(file, fput_needed);
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001179 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180}
1181
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001182int path_lookup(const char *name, unsigned int flags,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001183 struct nameidata *nd)
1184{
1185 return do_path_lookup(AT_FDCWD, name, flags, nd);
1186}
1187
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001188/**
1189 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1190 * @dentry: pointer to dentry of the base directory
1191 * @mnt: pointer to vfs mount of the base directory
1192 * @name: pointer to file name
1193 * @flags: lookup flags
1194 * @nd: pointer to nameidata
1195 */
1196int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1197 const char *name, unsigned int flags,
1198 struct nameidata *nd)
1199{
1200 int retval;
1201
1202 /* same as do_path_lookup */
1203 nd->last_type = LAST_ROOT;
1204 nd->flags = flags;
1205 nd->depth = 0;
1206
Jan Blunck4ac91372008-02-14 19:34:32 -08001207 nd->path.mnt = mntget(mnt);
1208 nd->path.dentry = dget(dentry);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001209
1210 retval = path_walk(name, nd);
Jan Blunck4ac91372008-02-14 19:34:32 -08001211 if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
1212 nd->path.dentry->d_inode))
1213 audit_inode(name, nd->path.dentry);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001214
1215 return retval;
1216
1217}
1218
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001219static int __path_lookup_intent_open(int dfd, const char *name,
1220 unsigned int lookup_flags, struct nameidata *nd,
1221 int open_flags, int create_mode)
Trond Myklebust834f2a42005-10-18 14:20:16 -07001222{
1223 struct file *filp = get_empty_filp();
1224 int err;
1225
1226 if (filp == NULL)
1227 return -ENFILE;
1228 nd->intent.open.file = filp;
1229 nd->intent.open.flags = open_flags;
1230 nd->intent.open.create_mode = create_mode;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001231 err = do_path_lookup(dfd, name, lookup_flags|LOOKUP_OPEN, nd);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001232 if (IS_ERR(nd->intent.open.file)) {
1233 if (err == 0) {
1234 err = PTR_ERR(nd->intent.open.file);
Jan Blunck1d957f92008-02-14 19:34:35 -08001235 path_put(&nd->path);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001236 }
1237 } else if (err != 0)
1238 release_open_intent(nd);
1239 return err;
1240}
1241
1242/**
1243 * path_lookup_open - lookup a file path with open intent
Martin Waitz7045f372006-02-01 03:06:57 -08001244 * @dfd: the directory to use as base, or AT_FDCWD
Trond Myklebust834f2a42005-10-18 14:20:16 -07001245 * @name: pointer to file name
1246 * @lookup_flags: lookup intent flags
1247 * @nd: pointer to nameidata
1248 * @open_flags: open intent flags
1249 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001250int path_lookup_open(int dfd, const char *name, unsigned int lookup_flags,
Trond Myklebust834f2a42005-10-18 14:20:16 -07001251 struct nameidata *nd, int open_flags)
1252{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001253 return __path_lookup_intent_open(dfd, name, lookup_flags, nd,
Trond Myklebust834f2a42005-10-18 14:20:16 -07001254 open_flags, 0);
1255}
1256
1257/**
1258 * path_lookup_create - lookup a file path with open + create intent
Martin Waitz7045f372006-02-01 03:06:57 -08001259 * @dfd: the directory to use as base, or AT_FDCWD
Trond Myklebust834f2a42005-10-18 14:20:16 -07001260 * @name: pointer to file name
1261 * @lookup_flags: lookup intent flags
1262 * @nd: pointer to nameidata
1263 * @open_flags: open intent flags
1264 * @create_mode: create intent flags
1265 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001266static int path_lookup_create(int dfd, const char *name,
1267 unsigned int lookup_flags, struct nameidata *nd,
1268 int open_flags, int create_mode)
Trond Myklebust834f2a42005-10-18 14:20:16 -07001269{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001270 return __path_lookup_intent_open(dfd, name, lookup_flags|LOOKUP_CREATE,
1271 nd, open_flags, create_mode);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001272}
1273
1274int __user_path_lookup_open(const char __user *name, unsigned int lookup_flags,
1275 struct nameidata *nd, int open_flags)
1276{
1277 char *tmp = getname(name);
1278 int err = PTR_ERR(tmp);
1279
1280 if (!IS_ERR(tmp)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001281 err = __path_lookup_intent_open(AT_FDCWD, tmp, lookup_flags, nd, open_flags, 0);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001282 putname(tmp);
1283 }
1284 return err;
1285}
1286
Christoph Hellwigeead1912007-10-16 23:25:38 -07001287static struct dentry *__lookup_hash(struct qstr *name,
1288 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
James Morris057f6c02007-04-26 00:12:05 -07001290 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 struct inode *inode;
1292 int err;
1293
1294 inode = base->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 /*
1297 * See if the low-level filesystem might want
1298 * to use its own hash..
1299 */
1300 if (base->d_op && base->d_op->d_hash) {
1301 err = base->d_op->d_hash(base, name);
1302 dentry = ERR_PTR(err);
1303 if (err < 0)
1304 goto out;
1305 }
1306
1307 dentry = cached_lookup(base, name, nd);
1308 if (!dentry) {
1309 struct dentry *new = d_alloc(base, name);
1310 dentry = ERR_PTR(-ENOMEM);
1311 if (!new)
1312 goto out;
1313 dentry = inode->i_op->lookup(inode, new, nd);
1314 if (!dentry)
1315 dentry = new;
1316 else
1317 dput(new);
1318 }
1319out:
1320 return dentry;
1321}
1322
James Morris057f6c02007-04-26 00:12:05 -07001323/*
1324 * Restricted form of lookup. Doesn't follow links, single-component only,
1325 * needs parent already locked. Doesn't follow mounts.
1326 * SMP-safe.
1327 */
Adrian Bunka244e162006-03-31 02:32:11 -08001328static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329{
Christoph Hellwigeead1912007-10-16 23:25:38 -07001330 int err;
1331
Jan Blunck4ac91372008-02-14 19:34:32 -08001332 err = permission(nd->path.dentry->d_inode, MAY_EXEC, nd);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001333 if (err)
1334 return ERR_PTR(err);
Jan Blunck4ac91372008-02-14 19:34:32 -08001335 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336}
1337
Christoph Hellwigeead1912007-10-16 23:25:38 -07001338static int __lookup_one_len(const char *name, struct qstr *this,
1339 struct dentry *base, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340{
1341 unsigned long hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 unsigned int c;
1343
James Morris057f6c02007-04-26 00:12:05 -07001344 this->name = name;
1345 this->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 if (!len)
James Morris057f6c02007-04-26 00:12:05 -07001347 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
1349 hash = init_name_hash();
1350 while (len--) {
1351 c = *(const unsigned char *)name++;
1352 if (c == '/' || c == '\0')
James Morris057f6c02007-04-26 00:12:05 -07001353 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 hash = partial_name_hash(c, hash);
1355 }
James Morris057f6c02007-04-26 00:12:05 -07001356 this->hash = end_name_hash(hash);
1357 return 0;
1358}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Christoph Hellwigeead1912007-10-16 23:25:38 -07001360/**
1361 * lookup_one_len: filesystem helper to lookup single pathname component
1362 * @name: pathname component to lookup
1363 * @base: base directory to lookup from
1364 * @len: maximum length @len should be interpreted to
1365 *
1366 * Note that this routine is purely a helper for filesystem useage and should
1367 * not be called by generic code. Also note that by using this function to
1368 * nameidata argument is passed to the filesystem methods and a filesystem
1369 * using this helper needs to be prepared for that.
1370 */
James Morris057f6c02007-04-26 00:12:05 -07001371struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1372{
1373 int err;
1374 struct qstr this;
1375
1376 err = __lookup_one_len(name, &this, base, len);
1377 if (err)
1378 return ERR_PTR(err);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001379
1380 err = permission(base->d_inode, MAY_EXEC, NULL);
1381 if (err)
1382 return ERR_PTR(err);
Christoph Hellwig49705b72005-11-08 21:35:06 -08001383 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001384}
1385
Christoph Hellwigeead1912007-10-16 23:25:38 -07001386/**
1387 * lookup_one_noperm - bad hack for sysfs
1388 * @name: pathname component to lookup
1389 * @base: base directory to lookup from
1390 *
1391 * This is a variant of lookup_one_len that doesn't perform any permission
1392 * checks. It's a horrible hack to work around the braindead sysfs
1393 * architecture and should not be used anywhere else.
1394 *
1395 * DON'T USE THIS FUNCTION EVER, thanks.
1396 */
1397struct dentry *lookup_one_noperm(const char *name, struct dentry *base)
James Morris057f6c02007-04-26 00:12:05 -07001398{
1399 int err;
1400 struct qstr this;
1401
Christoph Hellwigeead1912007-10-16 23:25:38 -07001402 err = __lookup_one_len(name, &this, base, strlen(name));
James Morris057f6c02007-04-26 00:12:05 -07001403 if (err)
1404 return ERR_PTR(err);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001405 return __lookup_hash(&this, base, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001408int __user_walk_fd(int dfd, const char __user *name, unsigned flags,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001409 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410{
1411 char *tmp = getname(name);
1412 int err = PTR_ERR(tmp);
1413
1414 if (!IS_ERR(tmp)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001415 err = do_path_lookup(dfd, tmp, flags, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 putname(tmp);
1417 }
1418 return err;
1419}
1420
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001421int __user_walk(const char __user *name, unsigned flags, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001422{
1423 return __user_walk_fd(AT_FDCWD, name, flags, nd);
1424}
1425
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426/*
1427 * It's inline, so penalty for filesystems that don't use sticky bit is
1428 * minimal.
1429 */
1430static inline int check_sticky(struct inode *dir, struct inode *inode)
1431{
1432 if (!(dir->i_mode & S_ISVTX))
1433 return 0;
1434 if (inode->i_uid == current->fsuid)
1435 return 0;
1436 if (dir->i_uid == current->fsuid)
1437 return 0;
1438 return !capable(CAP_FOWNER);
1439}
1440
1441/*
1442 * Check whether we can remove a link victim from directory dir, check
1443 * whether the type of victim is right.
1444 * 1. We can't do it if dir is read-only (done in permission())
1445 * 2. We should have write and exec permissions on dir
1446 * 3. We can't remove anything from append-only dir
1447 * 4. We can't do anything with immutable dir (done in permission())
1448 * 5. If the sticky bit on dir is set we should either
1449 * a. be owner of dir, or
1450 * b. be owner of victim, or
1451 * c. have CAP_FOWNER capability
1452 * 6. If the victim is append-only or immutable we can't do antyhing with
1453 * links pointing to it.
1454 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1455 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1456 * 9. We can't remove a root or mountpoint.
1457 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1458 * nfs_async_unlink().
1459 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001460static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
1462 int error;
1463
1464 if (!victim->d_inode)
1465 return -ENOENT;
1466
1467 BUG_ON(victim->d_parent->d_inode != dir);
Al Viro5a190ae2007-06-07 12:19:32 -04001468 audit_inode_child(victim->d_name.name, victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469
1470 error = permission(dir,MAY_WRITE | MAY_EXEC, NULL);
1471 if (error)
1472 return error;
1473 if (IS_APPEND(dir))
1474 return -EPERM;
1475 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
1476 IS_IMMUTABLE(victim->d_inode))
1477 return -EPERM;
1478 if (isdir) {
1479 if (!S_ISDIR(victim->d_inode->i_mode))
1480 return -ENOTDIR;
1481 if (IS_ROOT(victim))
1482 return -EBUSY;
1483 } else if (S_ISDIR(victim->d_inode->i_mode))
1484 return -EISDIR;
1485 if (IS_DEADDIR(dir))
1486 return -ENOENT;
1487 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1488 return -EBUSY;
1489 return 0;
1490}
1491
1492/* Check whether we can create an object with dentry child in directory
1493 * dir.
1494 * 1. We can't do it if child already exists (open has special treatment for
1495 * this case, but since we are inlined it's OK)
1496 * 2. We can't do it if dir is read-only (done in permission())
1497 * 3. We should have write and exec permissions on dir
1498 * 4. We can't do it if dir is immutable (done in permission())
1499 */
1500static inline int may_create(struct inode *dir, struct dentry *child,
1501 struct nameidata *nd)
1502{
1503 if (child->d_inode)
1504 return -EEXIST;
1505 if (IS_DEADDIR(dir))
1506 return -ENOENT;
1507 return permission(dir,MAY_WRITE | MAY_EXEC, nd);
1508}
1509
1510/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 * O_DIRECTORY translates into forcing a directory lookup.
1512 */
1513static inline int lookup_flags(unsigned int f)
1514{
1515 unsigned long retval = LOOKUP_FOLLOW;
1516
1517 if (f & O_NOFOLLOW)
1518 retval &= ~LOOKUP_FOLLOW;
1519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 if (f & O_DIRECTORY)
1521 retval |= LOOKUP_DIRECTORY;
1522
1523 return retval;
1524}
1525
1526/*
1527 * p1 and p2 should be directories on the same fs.
1528 */
1529struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1530{
1531 struct dentry *p;
1532
1533 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001534 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 return NULL;
1536 }
1537
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001538 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
1540 for (p = p1; p->d_parent != p; p = p->d_parent) {
1541 if (p->d_parent == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001542 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1543 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 return p;
1545 }
1546 }
1547
1548 for (p = p2; p->d_parent != p; p = p->d_parent) {
1549 if (p->d_parent == p1) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001550 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1551 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 return p;
1553 }
1554 }
1555
Ingo Molnarf2eace22006-07-03 00:25:05 -07001556 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1557 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 return NULL;
1559}
1560
1561void unlock_rename(struct dentry *p1, struct dentry *p2)
1562{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001563 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001565 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001566 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 }
1568}
1569
1570int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1571 struct nameidata *nd)
1572{
1573 int error = may_create(dir, dentry, nd);
1574
1575 if (error)
1576 return error;
1577
1578 if (!dir->i_op || !dir->i_op->create)
1579 return -EACCES; /* shouldn't it be ENOSYS? */
1580 mode &= S_IALLUGO;
1581 mode |= S_IFREG;
1582 error = security_inode_create(dir, dentry, mode);
1583 if (error)
1584 return error;
1585 DQUOT_INIT(dir);
1586 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001587 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001588 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 return error;
1590}
1591
1592int may_open(struct nameidata *nd, int acc_mode, int flag)
1593{
Jan Blunck4ac91372008-02-14 19:34:32 -08001594 struct dentry *dentry = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 struct inode *inode = dentry->d_inode;
1596 int error;
1597
1598 if (!inode)
1599 return -ENOENT;
1600
1601 if (S_ISLNK(inode->i_mode))
1602 return -ELOOP;
1603
Linus Torvalds974a9f02008-01-12 14:06:34 -08001604 if (S_ISDIR(inode->i_mode) && (acc_mode & MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 return -EISDIR;
1606
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 /*
1608 * FIFO's, sockets and device files are special: they don't
1609 * actually live on the filesystem itself, and as such you
1610 * can write to them even if the filesystem is read-only.
1611 */
1612 if (S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
1613 flag &= ~O_TRUNC;
1614 } else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001615 if (nd->path.mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 return -EACCES;
1617
1618 flag &= ~O_TRUNC;
Linus Torvalds974a9f02008-01-12 14:06:34 -08001619 } else if (IS_RDONLY(inode) && (acc_mode & MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 return -EROFS;
Dave Hansenb41572e2007-10-16 23:31:14 -07001621
1622 error = vfs_permission(nd, acc_mode);
1623 if (error)
1624 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 /*
1626 * An append-only file must be opened in append mode for writing.
1627 */
1628 if (IS_APPEND(inode)) {
1629 if ((flag & FMODE_WRITE) && !(flag & O_APPEND))
1630 return -EPERM;
1631 if (flag & O_TRUNC)
1632 return -EPERM;
1633 }
1634
1635 /* O_NOATIME can only be set by the owner or superuser */
1636 if (flag & O_NOATIME)
Satyam Sharma3bd858a2007-07-17 15:00:08 +05301637 if (!is_owner_or_cap(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 return -EPERM;
1639
1640 /*
1641 * Ensure there are no outstanding leases on the file.
1642 */
1643 error = break_lease(inode, flag);
1644 if (error)
1645 return error;
1646
1647 if (flag & O_TRUNC) {
1648 error = get_write_access(inode);
1649 if (error)
1650 return error;
1651
1652 /*
1653 * Refuse to truncate files with mandatory locks held on them.
1654 */
1655 error = locks_verify_locked(inode);
1656 if (!error) {
1657 DQUOT_INIT(inode);
Miklos Szeredid139d7f2007-10-18 03:07:00 -07001658
1659 error = do_truncate(dentry, 0,
1660 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
1661 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 }
1663 put_write_access(inode);
1664 if (error)
1665 return error;
1666 } else
1667 if (flag & FMODE_WRITE)
1668 DQUOT_INIT(inode);
1669
1670 return 0;
1671}
1672
Dave Hansenaab520e2006-09-30 23:29:02 -07001673static int open_namei_create(struct nameidata *nd, struct path *path,
1674 int flag, int mode)
1675{
1676 int error;
Jan Blunck4ac91372008-02-14 19:34:32 -08001677 struct dentry *dir = nd->path.dentry;
Dave Hansenaab520e2006-09-30 23:29:02 -07001678
1679 if (!IS_POSIXACL(dir->d_inode))
1680 mode &= ~current->fs->umask;
1681 error = vfs_create(dir->d_inode, path->dentry, mode, nd);
1682 mutex_unlock(&dir->d_inode->i_mutex);
Jan Blunck4ac91372008-02-14 19:34:32 -08001683 dput(nd->path.dentry);
1684 nd->path.dentry = path->dentry;
Dave Hansenaab520e2006-09-30 23:29:02 -07001685 if (error)
1686 return error;
1687 /* Don't check for write permission, don't truncate */
1688 return may_open(nd, 0, flag & ~O_TRUNC);
1689}
1690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691/*
1692 * open_namei()
1693 *
1694 * namei for open - this is in fact almost the whole open-routine.
1695 *
1696 * Note that the low bits of "flag" aren't the same as in the open
1697 * system call - they are 00 - no permissions needed
1698 * 01 - read permission needed
1699 * 10 - write permission needed
1700 * 11 - read/write permissions needed
1701 * which is a lot more logical, and also allows the "no perm" needed
1702 * for symlinks (where the permissions are checked later).
1703 * SMP-safe
1704 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001705int open_namei(int dfd, const char *pathname, int flag,
1706 int mode, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707{
Trond Myklebust834f2a42005-10-18 14:20:16 -07001708 int acc_mode, error;
Al Viro4e7506e2005-06-06 13:36:00 -07001709 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 struct dentry *dir;
1711 int count = 0;
1712
1713 acc_mode = ACC_MODE(flag);
1714
Trond Myklebust834f2a42005-10-18 14:20:16 -07001715 /* O_TRUNC implies we need access checks for write permissions */
1716 if (flag & O_TRUNC)
1717 acc_mode |= MAY_WRITE;
1718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 /* Allow the LSM permission hook to distinguish append
1720 access from general write access. */
1721 if (flag & O_APPEND)
1722 acc_mode |= MAY_APPEND;
1723
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 /*
1725 * The simplest case - just a plain lookup.
1726 */
1727 if (!(flag & O_CREAT)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001728 error = path_lookup_open(dfd, pathname, lookup_flags(flag),
1729 nd, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 if (error)
1731 return error;
1732 goto ok;
1733 }
1734
1735 /*
1736 * Create - we need to know the parent.
1737 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001738 error = path_lookup_create(dfd,pathname,LOOKUP_PARENT,nd,flag,mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 if (error)
1740 return error;
1741
1742 /*
1743 * We have the parent and last component. First of all, check
1744 * that we are not asked to creat(2) an obvious directory - that
1745 * will not do.
1746 */
1747 error = -EISDIR;
1748 if (nd->last_type != LAST_NORM || nd->last.name[nd->last.len])
1749 goto exit;
1750
Jan Blunck4ac91372008-02-14 19:34:32 -08001751 dir = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 nd->flags &= ~LOOKUP_PARENT;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001753 mutex_lock(&dir->d_inode->i_mutex);
Christoph Hellwig49705b72005-11-08 21:35:06 -08001754 path.dentry = lookup_hash(nd);
Jan Blunck4ac91372008-02-14 19:34:32 -08001755 path.mnt = nd->path.mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
1757do_last:
Al Viro4e7506e2005-06-06 13:36:00 -07001758 error = PTR_ERR(path.dentry);
1759 if (IS_ERR(path.dentry)) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001760 mutex_unlock(&dir->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 goto exit;
1762 }
1763
Oleg Drokin4af4c522006-03-25 03:06:54 -08001764 if (IS_ERR(nd->intent.open.file)) {
1765 mutex_unlock(&dir->d_inode->i_mutex);
1766 error = PTR_ERR(nd->intent.open.file);
1767 goto exit_dput;
1768 }
1769
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 /* Negative dentry, just create the file */
Al Viro4e7506e2005-06-06 13:36:00 -07001771 if (!path.dentry->d_inode) {
Dave Hansenaab520e2006-09-30 23:29:02 -07001772 error = open_namei_create(nd, &path, flag, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 if (error)
1774 goto exit;
Dave Hansenaab520e2006-09-30 23:29:02 -07001775 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 }
1777
1778 /*
1779 * It already exists.
1780 */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001781 mutex_unlock(&dir->d_inode->i_mutex);
Al Viro5a190ae2007-06-07 12:19:32 -04001782 audit_inode(pathname, path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
1784 error = -EEXIST;
1785 if (flag & O_EXCL)
1786 goto exit_dput;
1787
Al Viroe13b2102005-06-06 13:36:06 -07001788 if (__follow_mount(&path)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 error = -ELOOP;
Al Viroba7a4c12005-06-06 13:36:08 -07001790 if (flag & O_NOFOLLOW)
1791 goto exit_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04001793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 error = -ENOENT;
Al Viro4e7506e2005-06-06 13:36:00 -07001795 if (!path.dentry->d_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 goto exit_dput;
Al Viro4e7506e2005-06-06 13:36:00 -07001797 if (path.dentry->d_inode->i_op && path.dentry->d_inode->i_op->follow_link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 goto do_link;
1799
Miklos Szeredi09dd17d2005-09-06 15:18:21 -07001800 path_to_nameidata(&path, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 error = -EISDIR;
Al Viro4e7506e2005-06-06 13:36:00 -07001802 if (path.dentry->d_inode && S_ISDIR(path.dentry->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 goto exit;
1804ok:
1805 error = may_open(nd, acc_mode, flag);
1806 if (error)
1807 goto exit;
1808 return 0;
1809
1810exit_dput:
Jan Blunck1d957f92008-02-14 19:34:35 -08001811 path_put_conditional(&path, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812exit:
Trond Myklebust834f2a42005-10-18 14:20:16 -07001813 if (!IS_ERR(nd->intent.open.file))
1814 release_open_intent(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -08001815 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 return error;
1817
1818do_link:
1819 error = -ELOOP;
1820 if (flag & O_NOFOLLOW)
1821 goto exit_dput;
1822 /*
1823 * This is subtle. Instead of calling do_follow_link() we do the
1824 * thing by hands. The reason is that this way we have zero link_count
1825 * and path_walk() (called from ->follow_link) honoring LOOKUP_PARENT.
1826 * After that we have the parent and last component, i.e.
1827 * we are in the same situation as after the first path_walk().
1828 * Well, almost - if the last component is normal we get its copy
1829 * stored in nd->last.name and we will have to putname() it when we
1830 * are done. Procfs-like symlinks just set LAST_BIND.
1831 */
1832 nd->flags |= LOOKUP_PARENT;
Al Viro4e7506e2005-06-06 13:36:00 -07001833 error = security_inode_follow_link(path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 if (error)
1835 goto exit_dput;
Al Virocd4e91d2005-06-06 13:36:03 -07001836 error = __do_follow_link(&path, nd);
Kirill Korotaevde459212006-07-14 00:23:49 -07001837 if (error) {
1838 /* Does someone understand code flow here? Or it is only
1839 * me so stupid? Anathema to whoever designed this non-sense
1840 * with "intent.open".
1841 */
1842 release_open_intent(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 return error;
Kirill Korotaevde459212006-07-14 00:23:49 -07001844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 nd->flags &= ~LOOKUP_PARENT;
Al Virod671d5e2005-06-06 13:36:04 -07001846 if (nd->last_type == LAST_BIND)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 goto ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 error = -EISDIR;
1849 if (nd->last_type != LAST_NORM)
1850 goto exit;
1851 if (nd->last.name[nd->last.len]) {
Linus Torvalds82984112005-10-06 21:54:21 -07001852 __putname(nd->last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 goto exit;
1854 }
1855 error = -ELOOP;
1856 if (count++==32) {
Linus Torvalds82984112005-10-06 21:54:21 -07001857 __putname(nd->last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 goto exit;
1859 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001860 dir = nd->path.dentry;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001861 mutex_lock(&dir->d_inode->i_mutex);
Christoph Hellwig49705b72005-11-08 21:35:06 -08001862 path.dentry = lookup_hash(nd);
Jan Blunck4ac91372008-02-14 19:34:32 -08001863 path.mnt = nd->path.mnt;
Linus Torvalds82984112005-10-06 21:54:21 -07001864 __putname(nd->last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 goto do_last;
1866}
1867
1868/**
1869 * lookup_create - lookup a dentry, creating it if it doesn't exist
1870 * @nd: nameidata info
1871 * @is_dir: directory flag
1872 *
1873 * Simple function to lookup and return a dentry and create it
1874 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001875 *
Jan Blunck4ac91372008-02-14 19:34:32 -08001876 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 */
1878struct dentry *lookup_create(struct nameidata *nd, int is_dir)
1879{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001880 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
Jan Blunck4ac91372008-02-14 19:34:32 -08001882 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001883 /*
1884 * Yucky last component or no last component at all?
1885 * (foo/., foo/.., /////)
1886 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 if (nd->last_type != LAST_NORM)
1888 goto fail;
1889 nd->flags &= ~LOOKUP_PARENT;
ASANO Masahiroa6349042006-08-22 20:06:02 -04001890 nd->flags |= LOOKUP_CREATE;
1891 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001892
1893 /*
1894 * Do the final lookup.
1895 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08001896 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 if (IS_ERR(dentry))
1898 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001899
1900 /*
1901 * Special case - lookup gave negative, but... we had foo/bar/
1902 * From the vfs_mknod() POV we just have a negative dentry -
1903 * all is fine. Let's be bastards - you had / on the end, you've
1904 * been asking for (non-existent) directory. -ENOENT for you.
1905 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 if (!is_dir && nd->last.name[nd->last.len] && !dentry->d_inode)
1907 goto enoent;
1908 return dentry;
1909enoent:
1910 dput(dentry);
1911 dentry = ERR_PTR(-ENOENT);
1912fail:
1913 return dentry;
1914}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07001915EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
1917int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1918{
1919 int error = may_create(dir, dentry, NULL);
1920
1921 if (error)
1922 return error;
1923
1924 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1925 return -EPERM;
1926
1927 if (!dir->i_op || !dir->i_op->mknod)
1928 return -EPERM;
1929
1930 error = security_inode_mknod(dir, dentry, mode, dev);
1931 if (error)
1932 return error;
1933
1934 DQUOT_INIT(dir);
1935 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001936 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001937 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 return error;
1939}
1940
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001941asmlinkage long sys_mknodat(int dfd, const char __user *filename, int mode,
1942 unsigned dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
1944 int error = 0;
1945 char * tmp;
1946 struct dentry * dentry;
1947 struct nameidata nd;
1948
1949 if (S_ISDIR(mode))
1950 return -EPERM;
1951 tmp = getname(filename);
1952 if (IS_ERR(tmp))
1953 return PTR_ERR(tmp);
1954
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001955 error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 if (error)
1957 goto out;
1958 dentry = lookup_create(&nd, 0);
1959 error = PTR_ERR(dentry);
1960
Jan Blunck4ac91372008-02-14 19:34:32 -08001961 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 mode &= ~current->fs->umask;
1963 if (!IS_ERR(dentry)) {
1964 switch (mode & S_IFMT) {
1965 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08001966 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 break;
1968 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08001969 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 new_decode_dev(dev));
1971 break;
1972 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08001973 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 break;
1975 case S_IFDIR:
1976 error = -EPERM;
1977 break;
1978 default:
1979 error = -EINVAL;
1980 }
1981 dput(dentry);
1982 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001983 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08001984 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985out:
1986 putname(tmp);
1987
1988 return error;
1989}
1990
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001991asmlinkage long sys_mknod(const char __user *filename, int mode, unsigned dev)
1992{
1993 return sys_mknodat(AT_FDCWD, filename, mode, dev);
1994}
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1997{
1998 int error = may_create(dir, dentry, NULL);
1999
2000 if (error)
2001 return error;
2002
2003 if (!dir->i_op || !dir->i_op->mkdir)
2004 return -EPERM;
2005
2006 mode &= (S_IRWXUGO|S_ISVTX);
2007 error = security_inode_mkdir(dir, dentry, mode);
2008 if (error)
2009 return error;
2010
2011 DQUOT_INIT(dir);
2012 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002013 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002014 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 return error;
2016}
2017
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002018asmlinkage long sys_mkdirat(int dfd, const char __user *pathname, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019{
2020 int error = 0;
2021 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002022 struct dentry *dentry;
2023 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
2025 tmp = getname(pathname);
2026 error = PTR_ERR(tmp);
Dave Hansen6902d922006-09-30 23:29:01 -07002027 if (IS_ERR(tmp))
2028 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
Dave Hansen6902d922006-09-30 23:29:01 -07002030 error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
2031 if (error)
2032 goto out;
2033 dentry = lookup_create(&nd, 1);
2034 error = PTR_ERR(dentry);
2035 if (IS_ERR(dentry))
2036 goto out_unlock;
2037
Jan Blunck4ac91372008-02-14 19:34:32 -08002038 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Dave Hansen6902d922006-09-30 23:29:01 -07002039 mode &= ~current->fs->umask;
Jan Blunck4ac91372008-02-14 19:34:32 -08002040 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Dave Hansen6902d922006-09-30 23:29:01 -07002041 dput(dentry);
2042out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002043 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002044 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045out:
Dave Hansen6902d922006-09-30 23:29:01 -07002046 putname(tmp);
2047out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 return error;
2049}
2050
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002051asmlinkage long sys_mkdir(const char __user *pathname, int mode)
2052{
2053 return sys_mkdirat(AT_FDCWD, pathname, mode);
2054}
2055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056/*
2057 * We try to drop the dentry early: we should have
2058 * a usage count of 2 if we're the only user of this
2059 * dentry, and if that is true (possibly after pruning
2060 * the dcache), then we drop the dentry now.
2061 *
2062 * A low-level filesystem can, if it choses, legally
2063 * do a
2064 *
2065 * if (!d_unhashed(dentry))
2066 * return -EBUSY;
2067 *
2068 * if it cannot handle the case of removing a directory
2069 * that is still in use by something else..
2070 */
2071void dentry_unhash(struct dentry *dentry)
2072{
2073 dget(dentry);
Vasily Averindc168422006-12-06 20:37:07 -08002074 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 spin_lock(&dcache_lock);
2076 spin_lock(&dentry->d_lock);
2077 if (atomic_read(&dentry->d_count) == 2)
2078 __d_drop(dentry);
2079 spin_unlock(&dentry->d_lock);
2080 spin_unlock(&dcache_lock);
2081}
2082
2083int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2084{
2085 int error = may_delete(dir, dentry, 1);
2086
2087 if (error)
2088 return error;
2089
2090 if (!dir->i_op || !dir->i_op->rmdir)
2091 return -EPERM;
2092
2093 DQUOT_INIT(dir);
2094
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002095 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 dentry_unhash(dentry);
2097 if (d_mountpoint(dentry))
2098 error = -EBUSY;
2099 else {
2100 error = security_inode_rmdir(dir, dentry);
2101 if (!error) {
2102 error = dir->i_op->rmdir(dir, dentry);
2103 if (!error)
2104 dentry->d_inode->i_flags |= S_DEAD;
2105 }
2106 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002107 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 d_delete(dentry);
2110 }
2111 dput(dentry);
2112
2113 return error;
2114}
2115
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002116static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117{
2118 int error = 0;
2119 char * name;
2120 struct dentry *dentry;
2121 struct nameidata nd;
2122
2123 name = getname(pathname);
2124 if(IS_ERR(name))
2125 return PTR_ERR(name);
2126
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002127 error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 if (error)
2129 goto exit;
2130
2131 switch(nd.last_type) {
2132 case LAST_DOTDOT:
2133 error = -ENOTEMPTY;
2134 goto exit1;
2135 case LAST_DOT:
2136 error = -EINVAL;
2137 goto exit1;
2138 case LAST_ROOT:
2139 error = -EBUSY;
2140 goto exit1;
2141 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002142 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002143 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002145 if (IS_ERR(dentry))
2146 goto exit2;
Jan Blunck4ac91372008-02-14 19:34:32 -08002147 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002148 dput(dentry);
2149exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002150 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002152 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153exit:
2154 putname(name);
2155 return error;
2156}
2157
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002158asmlinkage long sys_rmdir(const char __user *pathname)
2159{
2160 return do_rmdir(AT_FDCWD, pathname);
2161}
2162
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163int vfs_unlink(struct inode *dir, struct dentry *dentry)
2164{
2165 int error = may_delete(dir, dentry, 0);
2166
2167 if (error)
2168 return error;
2169
2170 if (!dir->i_op || !dir->i_op->unlink)
2171 return -EPERM;
2172
2173 DQUOT_INIT(dir);
2174
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002175 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 if (d_mountpoint(dentry))
2177 error = -EBUSY;
2178 else {
2179 error = security_inode_unlink(dir, dentry);
2180 if (!error)
2181 error = dir->i_op->unlink(dir, dentry);
2182 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002183 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
2185 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2186 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002187 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 }
Robert Love0eeca282005-07-12 17:06:03 -04002190
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 return error;
2192}
2193
2194/*
2195 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002196 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 * writeout happening, and we don't want to prevent access to the directory
2198 * while waiting on the I/O.
2199 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002200static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201{
2202 int error = 0;
2203 char * name;
2204 struct dentry *dentry;
2205 struct nameidata nd;
2206 struct inode *inode = NULL;
2207
2208 name = getname(pathname);
2209 if(IS_ERR(name))
2210 return PTR_ERR(name);
2211
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002212 error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 if (error)
2214 goto exit;
2215 error = -EISDIR;
2216 if (nd.last_type != LAST_NORM)
2217 goto exit1;
Jan Blunck4ac91372008-02-14 19:34:32 -08002218 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002219 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 error = PTR_ERR(dentry);
2221 if (!IS_ERR(dentry)) {
2222 /* Why not before? Because we want correct error value */
2223 if (nd.last.name[nd.last.len])
2224 goto slashes;
2225 inode = dentry->d_inode;
2226 if (inode)
2227 atomic_inc(&inode->i_count);
Jan Blunck4ac91372008-02-14 19:34:32 -08002228 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 exit2:
2230 dput(dentry);
2231 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002232 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 if (inode)
2234 iput(inode); /* truncate the inode here */
2235exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002236 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237exit:
2238 putname(name);
2239 return error;
2240
2241slashes:
2242 error = !dentry->d_inode ? -ENOENT :
2243 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2244 goto exit2;
2245}
2246
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002247asmlinkage long sys_unlinkat(int dfd, const char __user *pathname, int flag)
2248{
2249 if ((flag & ~AT_REMOVEDIR) != 0)
2250 return -EINVAL;
2251
2252 if (flag & AT_REMOVEDIR)
2253 return do_rmdir(dfd, pathname);
2254
2255 return do_unlinkat(dfd, pathname);
2256}
2257
2258asmlinkage long sys_unlink(const char __user *pathname)
2259{
2260 return do_unlinkat(AT_FDCWD, pathname);
2261}
2262
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname, int mode)
2264{
2265 int error = may_create(dir, dentry, NULL);
2266
2267 if (error)
2268 return error;
2269
2270 if (!dir->i_op || !dir->i_op->symlink)
2271 return -EPERM;
2272
2273 error = security_inode_symlink(dir, dentry, oldname);
2274 if (error)
2275 return error;
2276
2277 DQUOT_INIT(dir);
2278 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002279 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002280 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 return error;
2282}
2283
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002284asmlinkage long sys_symlinkat(const char __user *oldname,
2285 int newdfd, const char __user *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286{
2287 int error = 0;
2288 char * from;
2289 char * to;
Dave Hansen6902d922006-09-30 23:29:01 -07002290 struct dentry *dentry;
2291 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292
2293 from = getname(oldname);
2294 if(IS_ERR(from))
2295 return PTR_ERR(from);
2296 to = getname(newname);
2297 error = PTR_ERR(to);
Dave Hansen6902d922006-09-30 23:29:01 -07002298 if (IS_ERR(to))
2299 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Dave Hansen6902d922006-09-30 23:29:01 -07002301 error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
2302 if (error)
2303 goto out;
2304 dentry = lookup_create(&nd, 0);
2305 error = PTR_ERR(dentry);
2306 if (IS_ERR(dentry))
2307 goto out_unlock;
2308
Jan Blunck4ac91372008-02-14 19:34:32 -08002309 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from, S_IALLUGO);
Dave Hansen6902d922006-09-30 23:29:01 -07002310 dput(dentry);
2311out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002312 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002313 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314out:
Dave Hansen6902d922006-09-30 23:29:01 -07002315 putname(to);
2316out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 putname(from);
2318 return error;
2319}
2320
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002321asmlinkage long sys_symlink(const char __user *oldname, const char __user *newname)
2322{
2323 return sys_symlinkat(oldname, AT_FDCWD, newname);
2324}
2325
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2327{
2328 struct inode *inode = old_dentry->d_inode;
2329 int error;
2330
2331 if (!inode)
2332 return -ENOENT;
2333
2334 error = may_create(dir, new_dentry, NULL);
2335 if (error)
2336 return error;
2337
2338 if (dir->i_sb != inode->i_sb)
2339 return -EXDEV;
2340
2341 /*
2342 * A link to an append-only or immutable file cannot be created.
2343 */
2344 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2345 return -EPERM;
2346 if (!dir->i_op || !dir->i_op->link)
2347 return -EPERM;
2348 if (S_ISDIR(old_dentry->d_inode->i_mode))
2349 return -EPERM;
2350
2351 error = security_inode_link(old_dentry, dir, new_dentry);
2352 if (error)
2353 return error;
2354
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002355 mutex_lock(&old_dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 DQUOT_INIT(dir);
2357 error = dir->i_op->link(old_dentry, dir, new_dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002358 mutex_unlock(&old_dentry->d_inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002359 if (!error)
Jan Karaece95912008-02-06 01:37:13 -08002360 fsnotify_link(dir, old_dentry->d_inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 return error;
2362}
2363
2364/*
2365 * Hardlinks are often used in delicate situations. We avoid
2366 * security-related surprises by not following symlinks on the
2367 * newname. --KAB
2368 *
2369 * We don't follow them on the oldname either to be compatible
2370 * with linux 2.0, and to avoid hard-linking to directories
2371 * and other special files. --ADM
2372 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002373asmlinkage long sys_linkat(int olddfd, const char __user *oldname,
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002374 int newdfd, const char __user *newname,
2375 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376{
2377 struct dentry *new_dentry;
2378 struct nameidata nd, old_nd;
2379 int error;
2380 char * to;
2381
Ulrich Drepper45c9b112006-06-25 05:49:11 -07002382 if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002383 return -EINVAL;
2384
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 to = getname(newname);
2386 if (IS_ERR(to))
2387 return PTR_ERR(to);
2388
Ulrich Drepper45c9b112006-06-25 05:49:11 -07002389 error = __user_walk_fd(olddfd, oldname,
2390 flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
2391 &old_nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 if (error)
2393 goto exit;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002394 error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 if (error)
2396 goto out;
2397 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08002398 if (old_nd.path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 goto out_release;
2400 new_dentry = lookup_create(&nd, 0);
2401 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002402 if (IS_ERR(new_dentry))
2403 goto out_unlock;
Jan Blunck4ac91372008-02-14 19:34:32 -08002404 error = vfs_link(old_nd.path.dentry, nd.path.dentry->d_inode, new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002405 dput(new_dentry);
2406out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002407 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08002409 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410out:
Jan Blunck1d957f92008-02-14 19:34:35 -08002411 path_put(&old_nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412exit:
2413 putname(to);
2414
2415 return error;
2416}
2417
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002418asmlinkage long sys_link(const char __user *oldname, const char __user *newname)
2419{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002420 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002421}
2422
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423/*
2424 * The worst of all namespace operations - renaming directory. "Perverted"
2425 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2426 * Problems:
2427 * a) we can get into loop creation. Check is done in is_subdir().
2428 * b) race potential - two innocent renames can create a loop together.
2429 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002430 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 * story.
2432 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002433 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 * whether the target exists). Solution: try to be smart with locking
2435 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002436 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 * move will be locked. Thus we can rank directories by the tree
2438 * (ancestors first) and rank all non-directories after them.
2439 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002440 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 * HOWEVER, it relies on the assumption that any object with ->lookup()
2442 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2443 * we'd better make sure that there's no link(2) for them.
2444 * d) some filesystems don't support opened-but-unlinked directories,
2445 * either because of layout or because they are not ready to deal with
2446 * all cases correctly. The latter will be fixed (taking this sort of
2447 * stuff into VFS), but the former is not going away. Solution: the same
2448 * trick as in rmdir().
2449 * e) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002450 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002452 * ->i_mutex on parents, which works but leads to some truely excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 * locking].
2454 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07002455static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2456 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457{
2458 int error = 0;
2459 struct inode *target;
2460
2461 /*
2462 * If we are going to change the parent - check write permissions,
2463 * we'll need to flip '..'.
2464 */
2465 if (new_dir != old_dir) {
2466 error = permission(old_dentry->d_inode, MAY_WRITE, NULL);
2467 if (error)
2468 return error;
2469 }
2470
2471 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2472 if (error)
2473 return error;
2474
2475 target = new_dentry->d_inode;
2476 if (target) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002477 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 dentry_unhash(new_dentry);
2479 }
2480 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2481 error = -EBUSY;
2482 else
2483 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2484 if (target) {
2485 if (!error)
2486 target->i_flags |= S_DEAD;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002487 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 if (d_unhashed(new_dentry))
2489 d_rehash(new_dentry);
2490 dput(new_dentry);
2491 }
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002492 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07002493 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2494 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 return error;
2496}
2497
Adrian Bunk75c96f82005-05-05 16:16:09 -07002498static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
2499 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500{
2501 struct inode *target;
2502 int error;
2503
2504 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2505 if (error)
2506 return error;
2507
2508 dget(new_dentry);
2509 target = new_dentry->d_inode;
2510 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002511 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2513 error = -EBUSY;
2514 else
2515 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2516 if (!error) {
Mark Fasheh349457c2006-09-08 14:22:21 -07002517 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 d_move(old_dentry, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 }
2520 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002521 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 dput(new_dentry);
2523 return error;
2524}
2525
2526int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
2527 struct inode *new_dir, struct dentry *new_dentry)
2528{
2529 int error;
2530 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Robert Love0eeca282005-07-12 17:06:03 -04002531 const char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
2533 if (old_dentry->d_inode == new_dentry->d_inode)
2534 return 0;
2535
2536 error = may_delete(old_dir, old_dentry, is_dir);
2537 if (error)
2538 return error;
2539
2540 if (!new_dentry->d_inode)
2541 error = may_create(new_dir, new_dentry, NULL);
2542 else
2543 error = may_delete(new_dir, new_dentry, is_dir);
2544 if (error)
2545 return error;
2546
2547 if (!old_dir->i_op || !old_dir->i_op->rename)
2548 return -EPERM;
2549
2550 DQUOT_INIT(old_dir);
2551 DQUOT_INIT(new_dir);
2552
Robert Love0eeca282005-07-12 17:06:03 -04002553 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
2554
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 if (is_dir)
2556 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
2557 else
2558 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
2559 if (!error) {
Robert Love0eeca282005-07-12 17:06:03 -04002560 const char *new_name = old_dentry->d_name.name;
John McCutchan89204c42005-08-15 12:13:28 -04002561 fsnotify_move(old_dir, new_dir, old_name, new_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04002562 new_dentry->d_inode, old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 }
Robert Love0eeca282005-07-12 17:06:03 -04002564 fsnotify_oldname_free(old_name);
2565
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 return error;
2567}
2568
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002569static int do_rename(int olddfd, const char *oldname,
2570 int newdfd, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571{
2572 int error = 0;
2573 struct dentry * old_dir, * new_dir;
2574 struct dentry * old_dentry, *new_dentry;
2575 struct dentry * trap;
2576 struct nameidata oldnd, newnd;
2577
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002578 error = do_path_lookup(olddfd, oldname, LOOKUP_PARENT, &oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 if (error)
2580 goto exit;
2581
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002582 error = do_path_lookup(newdfd, newname, LOOKUP_PARENT, &newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 if (error)
2584 goto exit1;
2585
2586 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08002587 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 goto exit2;
2589
Jan Blunck4ac91372008-02-14 19:34:32 -08002590 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 error = -EBUSY;
2592 if (oldnd.last_type != LAST_NORM)
2593 goto exit2;
2594
Jan Blunck4ac91372008-02-14 19:34:32 -08002595 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 if (newnd.last_type != LAST_NORM)
2597 goto exit2;
2598
2599 trap = lock_rename(new_dir, old_dir);
2600
Christoph Hellwig49705b72005-11-08 21:35:06 -08002601 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 error = PTR_ERR(old_dentry);
2603 if (IS_ERR(old_dentry))
2604 goto exit3;
2605 /* source must exist */
2606 error = -ENOENT;
2607 if (!old_dentry->d_inode)
2608 goto exit4;
2609 /* unless the source is a directory trailing slashes give -ENOTDIR */
2610 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
2611 error = -ENOTDIR;
2612 if (oldnd.last.name[oldnd.last.len])
2613 goto exit4;
2614 if (newnd.last.name[newnd.last.len])
2615 goto exit4;
2616 }
2617 /* source should not be ancestor of target */
2618 error = -EINVAL;
2619 if (old_dentry == trap)
2620 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08002621 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 error = PTR_ERR(new_dentry);
2623 if (IS_ERR(new_dentry))
2624 goto exit4;
2625 /* target should not be an ancestor of source */
2626 error = -ENOTEMPTY;
2627 if (new_dentry == trap)
2628 goto exit5;
2629
2630 error = vfs_rename(old_dir->d_inode, old_dentry,
2631 new_dir->d_inode, new_dentry);
2632exit5:
2633 dput(new_dentry);
2634exit4:
2635 dput(old_dentry);
2636exit3:
2637 unlock_rename(new_dir, old_dir);
2638exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08002639 path_put(&newnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002641 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642exit:
2643 return error;
2644}
2645
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002646asmlinkage long sys_renameat(int olddfd, const char __user *oldname,
2647 int newdfd, const char __user *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648{
2649 int error;
2650 char * from;
2651 char * to;
2652
2653 from = getname(oldname);
2654 if(IS_ERR(from))
2655 return PTR_ERR(from);
2656 to = getname(newname);
2657 error = PTR_ERR(to);
2658 if (!IS_ERR(to)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002659 error = do_rename(olddfd, from, newdfd, to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 putname(to);
2661 }
2662 putname(from);
2663 return error;
2664}
2665
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002666asmlinkage long sys_rename(const char __user *oldname, const char __user *newname)
2667{
2668 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
2669}
2670
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
2672{
2673 int len;
2674
2675 len = PTR_ERR(link);
2676 if (IS_ERR(link))
2677 goto out;
2678
2679 len = strlen(link);
2680 if (len > (unsigned) buflen)
2681 len = buflen;
2682 if (copy_to_user(buffer, link, len))
2683 len = -EFAULT;
2684out:
2685 return len;
2686}
2687
2688/*
2689 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
2690 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
2691 * using) it for any given inode is up to filesystem.
2692 */
2693int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2694{
2695 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002696 void *cookie;
2697
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002699 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
2700 if (!IS_ERR(cookie)) {
2701 int res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 if (dentry->d_inode->i_op->put_link)
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002703 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
2704 cookie = ERR_PTR(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 }
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002706 return PTR_ERR(cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707}
2708
2709int vfs_follow_link(struct nameidata *nd, const char *link)
2710{
2711 return __vfs_follow_link(nd, link);
2712}
2713
2714/* get the link contents into pagecache */
2715static char *page_getlink(struct dentry * dentry, struct page **ppage)
2716{
2717 struct page * page;
2718 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07002719 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07002721 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 *ppage = page;
2723 return kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724}
2725
2726int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2727{
2728 struct page *page = NULL;
2729 char *s = page_getlink(dentry, &page);
2730 int res = vfs_readlink(dentry,buffer,buflen,s);
2731 if (page) {
2732 kunmap(page);
2733 page_cache_release(page);
2734 }
2735 return res;
2736}
2737
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002738void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002740 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002742 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743}
2744
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002745void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002747 struct page *page = cookie;
2748
2749 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 kunmap(page);
2751 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 }
2753}
2754
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002755int __page_symlink(struct inode *inode, const char *symname, int len,
2756 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757{
2758 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002759 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07002760 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08002761 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 char *kaddr;
2763
NeilBrown7e53cac2006-03-25 03:07:57 -08002764retry:
Nick Pigginafddba42007-10-16 01:25:01 -07002765 err = pagecache_write_begin(NULL, mapping, 0, len-1,
2766 AOP_FLAG_UNINTERRUPTIBLE, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07002768 goto fail;
2769
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 kaddr = kmap_atomic(page, KM_USER0);
2771 memcpy(kaddr, symname, len-1);
2772 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07002773
2774 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
2775 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 if (err < 0)
2777 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07002778 if (err < len-1)
2779 goto retry;
2780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 mark_inode_dirty(inode);
2782 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783fail:
2784 return err;
2785}
2786
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002787int page_symlink(struct inode *inode, const char *symname, int len)
2788{
2789 return __page_symlink(inode, symname, len,
2790 mapping_gfp_mask(inode->i_mapping));
2791}
2792
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002793const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 .readlink = generic_readlink,
2795 .follow_link = page_follow_link_light,
2796 .put_link = page_put_link,
2797};
2798
2799EXPORT_SYMBOL(__user_walk);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002800EXPORT_SYMBOL(__user_walk_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801EXPORT_SYMBOL(follow_down);
2802EXPORT_SYMBOL(follow_up);
2803EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
2804EXPORT_SYMBOL(getname);
2805EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806EXPORT_SYMBOL(lookup_one_len);
2807EXPORT_SYMBOL(page_follow_link_light);
2808EXPORT_SYMBOL(page_put_link);
2809EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002810EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811EXPORT_SYMBOL(page_symlink);
2812EXPORT_SYMBOL(page_symlink_inode_operations);
2813EXPORT_SYMBOL(path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002814EXPORT_SYMBOL(vfs_path_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815EXPORT_SYMBOL(permission);
Christoph Hellwige4543ed2005-11-08 21:35:04 -08002816EXPORT_SYMBOL(vfs_permission);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -08002817EXPORT_SYMBOL(file_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818EXPORT_SYMBOL(unlock_rename);
2819EXPORT_SYMBOL(vfs_create);
2820EXPORT_SYMBOL(vfs_follow_link);
2821EXPORT_SYMBOL(vfs_link);
2822EXPORT_SYMBOL(vfs_mkdir);
2823EXPORT_SYMBOL(vfs_mknod);
2824EXPORT_SYMBOL(generic_permission);
2825EXPORT_SYMBOL(vfs_readlink);
2826EXPORT_SYMBOL(vfs_rename);
2827EXPORT_SYMBOL(vfs_rmdir);
2828EXPORT_SYMBOL(vfs_symlink);
2829EXPORT_SYMBOL(vfs_unlink);
2830EXPORT_SYMBOL(dentry_unhash);
2831EXPORT_SYMBOL(generic_readlink);