blob: 3ed4d7576d6dcf0923db3bc538fbb1cae990bd7d [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)
234 mnt = nd->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{
299 return permission(nd->dentry->d_inode, mask, nd);
300}
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
365void path_release(struct nameidata *nd)
366{
367 dput(nd->dentry);
368 mntput(nd->mnt);
369}
370
Trond Myklebust834f2a42005-10-18 14:20:16 -0700371/**
372 * release_open_intent - free up open intent resources
373 * @nd: pointer to nameidata
374 */
375void release_open_intent(struct nameidata *nd)
376{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800377 if (nd->intent.open.file->f_path.dentry == NULL)
Trond Myklebust834f2a42005-10-18 14:20:16 -0700378 put_filp(nd->intent.open.file);
379 else
380 fput(nd->intent.open.file);
381}
382
Ian Kentbcdc5e02006-09-27 01:50:44 -0700383static inline struct dentry *
384do_revalidate(struct dentry *dentry, struct nameidata *nd)
385{
386 int status = dentry->d_op->d_revalidate(dentry, nd);
387 if (unlikely(status <= 0)) {
388 /*
389 * The dentry failed validation.
390 * If d_revalidate returned 0 attempt to invalidate
391 * the dentry otherwise d_revalidate is asking us
392 * to return a fail status.
393 */
394 if (!status) {
395 if (!d_invalidate(dentry)) {
396 dput(dentry);
397 dentry = NULL;
398 }
399 } else {
400 dput(dentry);
401 dentry = ERR_PTR(status);
402 }
403 }
404 return dentry;
405}
406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407/*
408 * Internal lookup() using the new generic dcache.
409 * SMP-safe
410 */
411static struct dentry * cached_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
412{
413 struct dentry * dentry = __d_lookup(parent, name);
414
415 /* lockess __d_lookup may fail due to concurrent d_move()
416 * in some unrelated directory, so try with d_lookup
417 */
418 if (!dentry)
419 dentry = d_lookup(parent, name);
420
Ian Kentbcdc5e02006-09-27 01:50:44 -0700421 if (dentry && dentry->d_op && dentry->d_op->d_revalidate)
422 dentry = do_revalidate(dentry, nd);
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 return dentry;
425}
426
427/*
428 * Short-cut version of permission(), for calling by
429 * path_walk(), when dcache lock is held. Combines parts
430 * of permission() and generic_permission(), and tests ONLY for
431 * MAY_EXEC permission.
432 *
433 * If appropriate, check DAC only. If not appropriate, or
434 * short-cut DAC fails, then call permission() to do more
435 * complete permission check.
436 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800437static int exec_permission_lite(struct inode *inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 struct nameidata *nd)
439{
440 umode_t mode = inode->i_mode;
441
442 if (inode->i_op && inode->i_op->permission)
443 return -EAGAIN;
444
445 if (current->fsuid == inode->i_uid)
446 mode >>= 6;
447 else if (in_group_p(inode->i_gid))
448 mode >>= 3;
449
450 if (mode & MAY_EXEC)
451 goto ok;
452
453 if ((inode->i_mode & S_IXUGO) && capable(CAP_DAC_OVERRIDE))
454 goto ok;
455
456 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_OVERRIDE))
457 goto ok;
458
459 if (S_ISDIR(inode->i_mode) && capable(CAP_DAC_READ_SEARCH))
460 goto ok;
461
462 return -EACCES;
463ok:
464 return security_inode_permission(inode, MAY_EXEC, nd);
465}
466
467/*
468 * This is called when everything else fails, and we actually have
469 * to go to the low-level filesystem to find out what we should do..
470 *
471 * We get the directory semaphore, and after getting that we also
472 * make sure that nobody added the entry to the dcache in the meantime..
473 * SMP-safe
474 */
475static struct dentry * real_lookup(struct dentry * parent, struct qstr * name, struct nameidata *nd)
476{
477 struct dentry * result;
478 struct inode *dir = parent->d_inode;
479
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800480 mutex_lock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 /*
482 * First re-do the cached lookup just in case it was created
483 * while we waited for the directory semaphore..
484 *
485 * FIXME! This could use version numbering or similar to
486 * avoid unnecessary cache lookups.
487 *
488 * The "dcache_lock" is purely to protect the RCU list walker
489 * from concurrent renames at this point (we mustn't get false
490 * negatives from the RCU list walk here, unlike the optimistic
491 * fast walk).
492 *
493 * so doing d_lookup() (with seqlock), instead of lockfree __d_lookup
494 */
495 result = d_lookup(parent, name);
496 if (!result) {
497 struct dentry * dentry = d_alloc(parent, name);
498 result = ERR_PTR(-ENOMEM);
499 if (dentry) {
500 result = dir->i_op->lookup(dir, dentry, nd);
501 if (result)
502 dput(dentry);
503 else
504 result = dentry;
505 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800506 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return result;
508 }
509
510 /*
511 * Uhhuh! Nasty case: the cache was re-populated while
512 * we waited on the semaphore. Need to revalidate.
513 */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800514 mutex_unlock(&dir->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 if (result->d_op && result->d_op->d_revalidate) {
Ian Kentbcdc5e02006-09-27 01:50:44 -0700516 result = do_revalidate(result, nd);
517 if (!result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 result = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520 return result;
521}
522
523static int __emul_lookup_dentry(const char *, struct nameidata *);
524
525/* SMP-safe */
Arjan van de Venf1662352006-01-14 13:21:31 -0800526static __always_inline int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527walk_init_root(const char *name, struct nameidata *nd)
528{
Andreas Mohre518ddb2006-09-29 02:01:22 -0700529 struct fs_struct *fs = current->fs;
530
531 read_lock(&fs->lock);
532 if (fs->altroot && !(nd->flags & LOOKUP_NOALT)) {
533 nd->mnt = mntget(fs->altrootmnt);
534 nd->dentry = dget(fs->altroot);
535 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 if (__emul_lookup_dentry(name,nd))
537 return 0;
Andreas Mohre518ddb2006-09-29 02:01:22 -0700538 read_lock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
Andreas Mohre518ddb2006-09-29 02:01:22 -0700540 nd->mnt = mntget(fs->rootmnt);
541 nd->dentry = dget(fs->root);
542 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return 1;
544}
545
Arjan van de Venf1662352006-01-14 13:21:31 -0800546static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 int res = 0;
549 char *name;
550 if (IS_ERR(link))
551 goto fail;
552
553 if (*link == '/') {
554 path_release(nd);
555 if (!walk_init_root(link, nd))
556 /* weird __emul_prefix() stuff did it */
557 goto out;
558 }
559 res = link_path_walk(link, nd);
560out:
561 if (nd->depth || res || nd->last_type!=LAST_NORM)
562 return res;
563 /*
564 * If it is an iterative symlinks resolution in open_namei() we
565 * have to copy the last component. And all that crap because of
566 * bloody create() on broken symlinks. Furrfu...
567 */
568 name = __getname();
569 if (unlikely(!name)) {
570 path_release(nd);
571 return -ENOMEM;
572 }
573 strcpy(name, nd->last.name);
574 nd->last.name = name;
575 return 0;
576fail:
577 path_release(nd);
578 return PTR_ERR(link);
579}
580
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700581static inline void dput_path(struct path *path, struct nameidata *nd)
582{
583 dput(path->dentry);
584 if (path->mnt != nd->mnt)
585 mntput(path->mnt);
586}
587
588static inline void path_to_nameidata(struct path *path, struct nameidata *nd)
589{
590 dput(nd->dentry);
591 if (nd->mnt != path->mnt)
592 mntput(nd->mnt);
593 nd->mnt = path->mnt;
594 nd->dentry = path->dentry;
595}
596
Ian Kent051d3812006-03-27 01:14:53 -0800597static __always_inline int __do_follow_link(struct path *path, struct nameidata *nd)
598{
599 int error;
600 void *cookie;
601 struct dentry *dentry = path->dentry;
602
603 touch_atime(path->mnt, dentry);
604 nd_set_link(nd, NULL);
605
606 if (path->mnt != nd->mnt) {
607 path_to_nameidata(path, nd);
608 dget(dentry);
609 }
610 mntget(path->mnt);
611 cookie = dentry->d_inode->i_op->follow_link(dentry, nd);
612 error = PTR_ERR(cookie);
613 if (!IS_ERR(cookie)) {
614 char *s = nd_get_link(nd);
615 error = 0;
616 if (s)
617 error = __vfs_follow_link(nd, s);
618 if (dentry->d_inode->i_op->put_link)
619 dentry->d_inode->i_op->put_link(dentry, nd, cookie);
620 }
621 dput(dentry);
622 mntput(path->mnt);
623
624 return error;
625}
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627/*
628 * This limits recursive symlink follows to 8, while
629 * limiting consecutive symlinks to 40.
630 *
631 * Without that kind of total limit, nasty chains of consecutive
632 * symlinks can cause almost arbitrarily long lookups.
633 */
Al Viro90ebe562005-06-06 13:35:58 -0700634static inline int do_follow_link(struct path *path, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
636 int err = -ELOOP;
637 if (current->link_count >= MAX_NESTED_LINKS)
638 goto loop;
639 if (current->total_link_count >= 40)
640 goto loop;
641 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
642 cond_resched();
Al Viro90ebe562005-06-06 13:35:58 -0700643 err = security_inode_follow_link(path->dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (err)
645 goto loop;
646 current->link_count++;
647 current->total_link_count++;
648 nd->depth++;
Al Virocd4e91d2005-06-06 13:36:03 -0700649 err = __do_follow_link(path, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 current->link_count--;
651 nd->depth--;
652 return err;
653loop:
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700654 dput_path(path, nd);
Al Viro839d9f92005-06-06 13:36:02 -0700655 path_release(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return err;
657}
658
659int follow_up(struct vfsmount **mnt, struct dentry **dentry)
660{
661 struct vfsmount *parent;
662 struct dentry *mountpoint;
663 spin_lock(&vfsmount_lock);
664 parent=(*mnt)->mnt_parent;
665 if (parent == *mnt) {
666 spin_unlock(&vfsmount_lock);
667 return 0;
668 }
669 mntget(parent);
670 mountpoint=dget((*mnt)->mnt_mountpoint);
671 spin_unlock(&vfsmount_lock);
672 dput(*dentry);
673 *dentry = mountpoint;
674 mntput(*mnt);
675 *mnt = parent;
676 return 1;
677}
678
679/* no need for dcache_lock, as serialization is taken care in
680 * namespace.c
681 */
Al Viro463ffb22005-06-06 13:36:05 -0700682static int __follow_mount(struct path *path)
683{
684 int res = 0;
685 while (d_mountpoint(path->dentry)) {
686 struct vfsmount *mounted = lookup_mnt(path->mnt, path->dentry);
687 if (!mounted)
688 break;
689 dput(path->dentry);
690 if (res)
691 mntput(path->mnt);
692 path->mnt = mounted;
693 path->dentry = dget(mounted->mnt_root);
694 res = 1;
695 }
696 return res;
697}
698
Al Viro58c465e2005-06-06 13:36:13 -0700699static void follow_mount(struct vfsmount **mnt, struct dentry **dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 while (d_mountpoint(*dentry)) {
702 struct vfsmount *mounted = lookup_mnt(*mnt, *dentry);
703 if (!mounted)
704 break;
Al Viro58c465e2005-06-06 13:36:13 -0700705 dput(*dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 mntput(*mnt);
707 *mnt = mounted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 *dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710}
711
712/* no need for dcache_lock, as serialization is taken care in
713 * namespace.c
714 */
Al Viroe13b2102005-06-06 13:36:06 -0700715int follow_down(struct vfsmount **mnt, struct dentry **dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
717 struct vfsmount *mounted;
718
719 mounted = lookup_mnt(*mnt, *dentry);
720 if (mounted) {
Al Viroe13b2102005-06-06 13:36:06 -0700721 dput(*dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 mntput(*mnt);
723 *mnt = mounted;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 *dentry = dget(mounted->mnt_root);
725 return 1;
726 }
727 return 0;
728}
729
Arjan van de Venf1662352006-01-14 13:21:31 -0800730static __always_inline void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Andreas Mohre518ddb2006-09-29 02:01:22 -0700732 struct fs_struct *fs = current->fs;
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 while(1) {
735 struct vfsmount *parent;
Al Viro58c465e2005-06-06 13:36:13 -0700736 struct dentry *old = nd->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Andreas Mohre518ddb2006-09-29 02:01:22 -0700738 read_lock(&fs->lock);
739 if (nd->dentry == fs->root &&
740 nd->mnt == fs->rootmnt) {
741 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 break;
743 }
Andreas Mohre518ddb2006-09-29 02:01:22 -0700744 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 spin_lock(&dcache_lock);
Al Viro58c465e2005-06-06 13:36:13 -0700746 if (nd->dentry != nd->mnt->mnt_root) {
747 nd->dentry = dget(nd->dentry->d_parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 spin_unlock(&dcache_lock);
749 dput(old);
750 break;
751 }
752 spin_unlock(&dcache_lock);
753 spin_lock(&vfsmount_lock);
Al Viro58c465e2005-06-06 13:36:13 -0700754 parent = nd->mnt->mnt_parent;
755 if (parent == nd->mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 spin_unlock(&vfsmount_lock);
757 break;
758 }
759 mntget(parent);
Al Viro58c465e2005-06-06 13:36:13 -0700760 nd->dentry = dget(nd->mnt->mnt_mountpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 spin_unlock(&vfsmount_lock);
762 dput(old);
Al Viro58c465e2005-06-06 13:36:13 -0700763 mntput(nd->mnt);
764 nd->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 }
Al Viro58c465e2005-06-06 13:36:13 -0700766 follow_mount(&nd->mnt, &nd->dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767}
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769/*
770 * It's more convoluted than I'd like it to be, but... it's still fairly
771 * small and for now I'd prefer to have fast path as straight as possible.
772 * It _is_ time-critical.
773 */
774static int do_lookup(struct nameidata *nd, struct qstr *name,
775 struct path *path)
776{
777 struct vfsmount *mnt = nd->mnt;
778 struct dentry *dentry = __d_lookup(nd->dentry, name);
779
780 if (!dentry)
781 goto need_lookup;
782 if (dentry->d_op && dentry->d_op->d_revalidate)
783 goto need_revalidate;
784done:
785 path->mnt = mnt;
786 path->dentry = dentry;
Al Viro634ee702005-06-06 13:36:13 -0700787 __follow_mount(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return 0;
789
790need_lookup:
791 dentry = real_lookup(nd->dentry, name, nd);
792 if (IS_ERR(dentry))
793 goto fail;
794 goto done;
795
796need_revalidate:
Ian Kentbcdc5e02006-09-27 01:50:44 -0700797 dentry = do_revalidate(dentry, nd);
798 if (!dentry)
799 goto need_lookup;
800 if (IS_ERR(dentry))
801 goto fail;
802 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804fail:
805 return PTR_ERR(dentry);
806}
807
808/*
809 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +0100810 * This is the basic name resolution function, turning a pathname into
811 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 *
Prasanna Medaea3834d2005-04-29 16:00:17 +0100813 * Returns 0 and nd will have valid dentry and mnt on success.
814 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800816static int __link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
818 struct path next;
819 struct inode *inode;
820 int err;
821 unsigned int lookup_flags = nd->flags;
822
823 while (*name=='/')
824 name++;
825 if (!*name)
826 goto return_reval;
827
828 inode = nd->dentry->d_inode;
829 if (nd->depth)
Trond Myklebustf55eab82006-02-04 23:28:01 -0800830 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 /* At this point we know we have a real path component. */
833 for(;;) {
834 unsigned long hash;
835 struct qstr this;
836 unsigned int c;
837
Trond Myklebustcdce5d62005-10-18 14:20:18 -0700838 nd->flags |= LOOKUP_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 err = exec_permission_lite(inode, nd);
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800840 if (err == -EAGAIN)
841 err = vfs_permission(nd, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 if (err)
843 break;
844
845 this.name = name;
846 c = *(const unsigned char *)name;
847
848 hash = init_name_hash();
849 do {
850 name++;
851 hash = partial_name_hash(c, hash);
852 c = *(const unsigned char *)name;
853 } while (c && (c != '/'));
854 this.len = name - (const char *) this.name;
855 this.hash = end_name_hash(hash);
856
857 /* remove trailing slashes? */
858 if (!c)
859 goto last_component;
860 while (*++name == '/');
861 if (!*name)
862 goto last_with_slashes;
863
864 /*
865 * "." and ".." are special - ".." especially so because it has
866 * to be able to know about the current root directory and
867 * parent relationships.
868 */
869 if (this.name[0] == '.') switch (this.len) {
870 default:
871 break;
872 case 2:
873 if (this.name[1] != '.')
874 break;
Al Viro58c465e2005-06-06 13:36:13 -0700875 follow_dotdot(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 inode = nd->dentry->d_inode;
877 /* fallthrough */
878 case 1:
879 continue;
880 }
881 /*
882 * See if the low-level filesystem might want
883 * to use its own hash..
884 */
885 if (nd->dentry->d_op && nd->dentry->d_op->d_hash) {
886 err = nd->dentry->d_op->d_hash(nd->dentry, &this);
887 if (err < 0)
888 break;
889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 /* This does the actual lookups.. */
891 err = do_lookup(nd, &this, &next);
892 if (err)
893 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 err = -ENOENT;
896 inode = next.dentry->d_inode;
897 if (!inode)
898 goto out_dput;
899 err = -ENOTDIR;
900 if (!inode->i_op)
901 goto out_dput;
902
903 if (inode->i_op->follow_link) {
Al Viro90ebe562005-06-06 13:35:58 -0700904 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (err)
906 goto return_err;
907 err = -ENOENT;
908 inode = nd->dentry->d_inode;
909 if (!inode)
910 break;
911 err = -ENOTDIR;
912 if (!inode->i_op)
913 break;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700914 } else
915 path_to_nameidata(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 err = -ENOTDIR;
917 if (!inode->i_op->lookup)
918 break;
919 continue;
920 /* here ends the main loop */
921
922last_with_slashes:
923 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
924last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -0800925 /* Clear LOOKUP_CONTINUE iff it was previously unset */
926 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 if (lookup_flags & LOOKUP_PARENT)
928 goto lookup_parent;
929 if (this.name[0] == '.') switch (this.len) {
930 default:
931 break;
932 case 2:
933 if (this.name[1] != '.')
934 break;
Al Viro58c465e2005-06-06 13:36:13 -0700935 follow_dotdot(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 inode = nd->dentry->d_inode;
937 /* fallthrough */
938 case 1:
939 goto return_reval;
940 }
941 if (nd->dentry->d_op && nd->dentry->d_op->d_hash) {
942 err = nd->dentry->d_op->d_hash(nd->dentry, &this);
943 if (err < 0)
944 break;
945 }
946 err = do_lookup(nd, &this, &next);
947 if (err)
948 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 inode = next.dentry->d_inode;
950 if ((lookup_flags & LOOKUP_FOLLOW)
951 && inode && inode->i_op && inode->i_op->follow_link) {
Al Viro90ebe562005-06-06 13:35:58 -0700952 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 if (err)
954 goto return_err;
955 inode = nd->dentry->d_inode;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700956 } else
957 path_to_nameidata(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 err = -ENOENT;
959 if (!inode)
960 break;
961 if (lookup_flags & LOOKUP_DIRECTORY) {
962 err = -ENOTDIR;
963 if (!inode->i_op || !inode->i_op->lookup)
964 break;
965 }
966 goto return_base;
967lookup_parent:
968 nd->last = this;
969 nd->last_type = LAST_NORM;
970 if (this.name[0] != '.')
971 goto return_base;
972 if (this.len == 1)
973 nd->last_type = LAST_DOT;
974 else if (this.len == 2 && this.name[1] == '.')
975 nd->last_type = LAST_DOTDOT;
976 else
977 goto return_base;
978return_reval:
979 /*
980 * We bypassed the ordinary revalidation routines.
981 * We may need to check the cached dentry for staleness.
982 */
983 if (nd->dentry && nd->dentry->d_sb &&
984 (nd->dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) {
985 err = -ESTALE;
986 /* Note: we do not d_invalidate() */
987 if (!nd->dentry->d_op->d_revalidate(nd->dentry, nd))
988 break;
989 }
990return_base:
991 return 0;
992out_dput:
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700993 dput_path(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 break;
995 }
996 path_release(nd);
997return_err:
998 return err;
999}
1000
1001/*
1002 * Wrapper to retry pathname resolution whenever the underlying
1003 * file system returns an ESTALE.
1004 *
1005 * Retry the whole path once, forcing real lookup requests
1006 * instead of relying on the dcache.
1007 */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001008static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009{
1010 struct nameidata save = *nd;
1011 int result;
1012
1013 /* make sure the stuff we saved doesn't go away */
1014 dget(save.dentry);
1015 mntget(save.mnt);
1016
1017 result = __link_path_walk(name, nd);
1018 if (result == -ESTALE) {
1019 *nd = save;
1020 dget(nd->dentry);
1021 mntget(nd->mnt);
1022 nd->flags |= LOOKUP_REVAL;
1023 result = __link_path_walk(name, nd);
1024 }
1025
1026 dput(save.dentry);
1027 mntput(save.mnt);
1028
1029 return result;
1030}
1031
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001032static int path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033{
1034 current->total_link_count = 0;
1035 return link_path_walk(name, nd);
1036}
1037
Prasanna Medaea3834d2005-04-29 16:00:17 +01001038/*
1039 * SMP-safe: Returns 1 and nd will have valid dentry and mnt, if
1040 * everything is done. Returns 0 and drops input nd, if lookup failed;
1041 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042static int __emul_lookup_dentry(const char *name, struct nameidata *nd)
1043{
1044 if (path_walk(name, nd))
1045 return 0; /* something went wrong... */
1046
1047 if (!nd->dentry->d_inode || S_ISDIR(nd->dentry->d_inode->i_mode)) {
1048 struct dentry *old_dentry = nd->dentry;
1049 struct vfsmount *old_mnt = nd->mnt;
1050 struct qstr last = nd->last;
1051 int last_type = nd->last_type;
Andreas Mohre518ddb2006-09-29 02:01:22 -07001052 struct fs_struct *fs = current->fs;
1053
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 /*
Andreas Mohre518ddb2006-09-29 02:01:22 -07001055 * NAME was not found in alternate root or it's a directory.
1056 * Try to find it in the normal root:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 */
1058 nd->last_type = LAST_ROOT;
Andreas Mohre518ddb2006-09-29 02:01:22 -07001059 read_lock(&fs->lock);
1060 nd->mnt = mntget(fs->rootmnt);
1061 nd->dentry = dget(fs->root);
1062 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (path_walk(name, nd) == 0) {
1064 if (nd->dentry->d_inode) {
1065 dput(old_dentry);
1066 mntput(old_mnt);
1067 return 1;
1068 }
1069 path_release(nd);
1070 }
1071 nd->dentry = old_dentry;
1072 nd->mnt = old_mnt;
1073 nd->last = last;
1074 nd->last_type = last_type;
1075 }
1076 return 1;
1077}
1078
1079void set_fs_altroot(void)
1080{
1081 char *emul = __emul_prefix();
1082 struct nameidata nd;
1083 struct vfsmount *mnt = NULL, *oldmnt;
1084 struct dentry *dentry = NULL, *olddentry;
1085 int err;
Andreas Mohre518ddb2006-09-29 02:01:22 -07001086 struct fs_struct *fs = current->fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087
1088 if (!emul)
1089 goto set_it;
1090 err = path_lookup(emul, LOOKUP_FOLLOW|LOOKUP_DIRECTORY|LOOKUP_NOALT, &nd);
1091 if (!err) {
1092 mnt = nd.mnt;
1093 dentry = nd.dentry;
1094 }
1095set_it:
Andreas Mohre518ddb2006-09-29 02:01:22 -07001096 write_lock(&fs->lock);
1097 oldmnt = fs->altrootmnt;
1098 olddentry = fs->altroot;
1099 fs->altrootmnt = mnt;
1100 fs->altroot = dentry;
1101 write_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 if (olddentry) {
1103 dput(olddentry);
1104 mntput(oldmnt);
1105 }
1106}
1107
Prasanna Medaea3834d2005-04-29 16:00:17 +01001108/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001109static int do_path_lookup(int dfd, const char *name,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001110 unsigned int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001112 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001113 int fput_needed;
1114 struct file *file;
Andreas Mohre518ddb2006-09-29 02:01:22 -07001115 struct fs_struct *fs = current->fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
1117 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1118 nd->flags = flags;
1119 nd->depth = 0;
1120
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 if (*name=='/') {
Andreas Mohre518ddb2006-09-29 02:01:22 -07001122 read_lock(&fs->lock);
1123 if (fs->altroot && !(nd->flags & LOOKUP_NOALT)) {
1124 nd->mnt = mntget(fs->altrootmnt);
1125 nd->dentry = dget(fs->altroot);
1126 read_unlock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (__emul_lookup_dentry(name,nd))
Prasanna Medaea3834d2005-04-29 16:00:17 +01001128 goto out; /* found in altroot */
Andreas Mohre518ddb2006-09-29 02:01:22 -07001129 read_lock(&fs->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 }
Andreas Mohre518ddb2006-09-29 02:01:22 -07001131 nd->mnt = mntget(fs->rootmnt);
1132 nd->dentry = dget(fs->root);
1133 read_unlock(&fs->lock);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001134 } else if (dfd == AT_FDCWD) {
Andreas Mohre518ddb2006-09-29 02:01:22 -07001135 read_lock(&fs->lock);
1136 nd->mnt = mntget(fs->pwdmnt);
1137 nd->dentry = dget(fs->pwd);
1138 read_unlock(&fs->lock);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001139 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001140 struct dentry *dentry;
1141
1142 file = fget_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001143 retval = -EBADF;
1144 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001145 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001146
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001147 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001148
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001149 retval = -ENOTDIR;
1150 if (!S_ISDIR(dentry->d_inode->i_mode))
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001151 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001152
1153 retval = file_permission(file, MAY_EXEC);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001154 if (retval)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001155 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001156
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001157 nd->mnt = mntget(file->f_path.mnt);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001158 nd->dentry = dget(dentry);
1159
1160 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
Josef 'Jeff' Sipek2dfdd262007-05-09 02:33:41 -07001162
1163 retval = path_walk(name, nd);
Prasanna Medaea3834d2005-04-29 16:00:17 +01001164out:
Josef 'Jeff' Sipek62ce39c2007-05-09 02:33:41 -07001165 if (unlikely(!retval && !audit_dummy_context() && nd->dentry &&
Suzuki3bc84142006-02-07 12:58:36 -08001166 nd->dentry->d_inode))
Al Viro5a190ae2007-06-07 12:19:32 -04001167 audit_inode(name, nd->dentry);
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001168out_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001169 return retval;
1170
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001171fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001172 fput_light(file, fput_needed);
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001173 goto out_fail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
1175
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001176int path_lookup(const char *name, unsigned int flags,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001177 struct nameidata *nd)
1178{
1179 return do_path_lookup(AT_FDCWD, name, flags, nd);
1180}
1181
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001182/**
1183 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1184 * @dentry: pointer to dentry of the base directory
1185 * @mnt: pointer to vfs mount of the base directory
1186 * @name: pointer to file name
1187 * @flags: lookup flags
1188 * @nd: pointer to nameidata
1189 */
1190int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1191 const char *name, unsigned int flags,
1192 struct nameidata *nd)
1193{
1194 int retval;
1195
1196 /* same as do_path_lookup */
1197 nd->last_type = LAST_ROOT;
1198 nd->flags = flags;
1199 nd->depth = 0;
1200
1201 nd->mnt = mntget(mnt);
1202 nd->dentry = dget(dentry);
1203
1204 retval = path_walk(name, nd);
1205 if (unlikely(!retval && !audit_dummy_context() && nd->dentry &&
1206 nd->dentry->d_inode))
Al Viro5a190ae2007-06-07 12:19:32 -04001207 audit_inode(name, nd->dentry);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001208
1209 return retval;
1210
1211}
1212
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001213static int __path_lookup_intent_open(int dfd, const char *name,
1214 unsigned int lookup_flags, struct nameidata *nd,
1215 int open_flags, int create_mode)
Trond Myklebust834f2a42005-10-18 14:20:16 -07001216{
1217 struct file *filp = get_empty_filp();
1218 int err;
1219
1220 if (filp == NULL)
1221 return -ENFILE;
1222 nd->intent.open.file = filp;
1223 nd->intent.open.flags = open_flags;
1224 nd->intent.open.create_mode = create_mode;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001225 err = do_path_lookup(dfd, name, lookup_flags|LOOKUP_OPEN, nd);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001226 if (IS_ERR(nd->intent.open.file)) {
1227 if (err == 0) {
1228 err = PTR_ERR(nd->intent.open.file);
1229 path_release(nd);
1230 }
1231 } else if (err != 0)
1232 release_open_intent(nd);
1233 return err;
1234}
1235
1236/**
1237 * path_lookup_open - lookup a file path with open intent
Martin Waitz7045f372006-02-01 03:06:57 -08001238 * @dfd: the directory to use as base, or AT_FDCWD
Trond Myklebust834f2a42005-10-18 14:20:16 -07001239 * @name: pointer to file name
1240 * @lookup_flags: lookup intent flags
1241 * @nd: pointer to nameidata
1242 * @open_flags: open intent flags
1243 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001244int path_lookup_open(int dfd, const char *name, unsigned int lookup_flags,
Trond Myklebust834f2a42005-10-18 14:20:16 -07001245 struct nameidata *nd, int open_flags)
1246{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001247 return __path_lookup_intent_open(dfd, name, lookup_flags, nd,
Trond Myklebust834f2a42005-10-18 14:20:16 -07001248 open_flags, 0);
1249}
1250
1251/**
1252 * path_lookup_create - lookup a file path with open + create intent
Martin Waitz7045f372006-02-01 03:06:57 -08001253 * @dfd: the directory to use as base, or AT_FDCWD
Trond Myklebust834f2a42005-10-18 14:20:16 -07001254 * @name: pointer to file name
1255 * @lookup_flags: lookup intent flags
1256 * @nd: pointer to nameidata
1257 * @open_flags: open intent flags
1258 * @create_mode: create intent flags
1259 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001260static int path_lookup_create(int dfd, const char *name,
1261 unsigned int lookup_flags, struct nameidata *nd,
1262 int open_flags, int create_mode)
Trond Myklebust834f2a42005-10-18 14:20:16 -07001263{
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001264 return __path_lookup_intent_open(dfd, name, lookup_flags|LOOKUP_CREATE,
1265 nd, open_flags, create_mode);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001266}
1267
1268int __user_path_lookup_open(const char __user *name, unsigned int lookup_flags,
1269 struct nameidata *nd, int open_flags)
1270{
1271 char *tmp = getname(name);
1272 int err = PTR_ERR(tmp);
1273
1274 if (!IS_ERR(tmp)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001275 err = __path_lookup_intent_open(AT_FDCWD, tmp, lookup_flags, nd, open_flags, 0);
Trond Myklebust834f2a42005-10-18 14:20:16 -07001276 putname(tmp);
1277 }
1278 return err;
1279}
1280
Christoph Hellwigeead1912007-10-16 23:25:38 -07001281static struct dentry *__lookup_hash(struct qstr *name,
1282 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
James Morris057f6c02007-04-26 00:12:05 -07001284 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 struct inode *inode;
1286 int err;
1287
1288 inode = base->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 /*
1291 * See if the low-level filesystem might want
1292 * to use its own hash..
1293 */
1294 if (base->d_op && base->d_op->d_hash) {
1295 err = base->d_op->d_hash(base, name);
1296 dentry = ERR_PTR(err);
1297 if (err < 0)
1298 goto out;
1299 }
1300
1301 dentry = cached_lookup(base, name, nd);
1302 if (!dentry) {
1303 struct dentry *new = d_alloc(base, name);
1304 dentry = ERR_PTR(-ENOMEM);
1305 if (!new)
1306 goto out;
1307 dentry = inode->i_op->lookup(inode, new, nd);
1308 if (!dentry)
1309 dentry = new;
1310 else
1311 dput(new);
1312 }
1313out:
1314 return dentry;
1315}
1316
James Morris057f6c02007-04-26 00:12:05 -07001317/*
1318 * Restricted form of lookup. Doesn't follow links, single-component only,
1319 * needs parent already locked. Doesn't follow mounts.
1320 * SMP-safe.
1321 */
Adrian Bunka244e162006-03-31 02:32:11 -08001322static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323{
Christoph Hellwigeead1912007-10-16 23:25:38 -07001324 int err;
1325
1326 err = permission(nd->dentry->d_inode, MAY_EXEC, nd);
1327 if (err)
1328 return ERR_PTR(err);
Christoph Hellwig49705b72005-11-08 21:35:06 -08001329 return __lookup_hash(&nd->last, nd->dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
1331
Christoph Hellwigeead1912007-10-16 23:25:38 -07001332static int __lookup_one_len(const char *name, struct qstr *this,
1333 struct dentry *base, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
1335 unsigned long hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 unsigned int c;
1337
James Morris057f6c02007-04-26 00:12:05 -07001338 this->name = name;
1339 this->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 if (!len)
James Morris057f6c02007-04-26 00:12:05 -07001341 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
1343 hash = init_name_hash();
1344 while (len--) {
1345 c = *(const unsigned char *)name++;
1346 if (c == '/' || c == '\0')
James Morris057f6c02007-04-26 00:12:05 -07001347 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 hash = partial_name_hash(c, hash);
1349 }
James Morris057f6c02007-04-26 00:12:05 -07001350 this->hash = end_name_hash(hash);
1351 return 0;
1352}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353
Christoph Hellwigeead1912007-10-16 23:25:38 -07001354/**
1355 * lookup_one_len: filesystem helper to lookup single pathname component
1356 * @name: pathname component to lookup
1357 * @base: base directory to lookup from
1358 * @len: maximum length @len should be interpreted to
1359 *
1360 * Note that this routine is purely a helper for filesystem useage and should
1361 * not be called by generic code. Also note that by using this function to
1362 * nameidata argument is passed to the filesystem methods and a filesystem
1363 * using this helper needs to be prepared for that.
1364 */
James Morris057f6c02007-04-26 00:12:05 -07001365struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1366{
1367 int err;
1368 struct qstr this;
1369
1370 err = __lookup_one_len(name, &this, base, len);
1371 if (err)
1372 return ERR_PTR(err);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001373
1374 err = permission(base->d_inode, MAY_EXEC, NULL);
1375 if (err)
1376 return ERR_PTR(err);
Christoph Hellwig49705b72005-11-08 21:35:06 -08001377 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001378}
1379
Christoph Hellwigeead1912007-10-16 23:25:38 -07001380/**
1381 * lookup_one_noperm - bad hack for sysfs
1382 * @name: pathname component to lookup
1383 * @base: base directory to lookup from
1384 *
1385 * This is a variant of lookup_one_len that doesn't perform any permission
1386 * checks. It's a horrible hack to work around the braindead sysfs
1387 * architecture and should not be used anywhere else.
1388 *
1389 * DON'T USE THIS FUNCTION EVER, thanks.
1390 */
1391struct dentry *lookup_one_noperm(const char *name, struct dentry *base)
James Morris057f6c02007-04-26 00:12:05 -07001392{
1393 int err;
1394 struct qstr this;
1395
Christoph Hellwigeead1912007-10-16 23:25:38 -07001396 err = __lookup_one_len(name, &this, base, strlen(name));
James Morris057f6c02007-04-26 00:12:05 -07001397 if (err)
1398 return ERR_PTR(err);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001399 return __lookup_hash(&this, base, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400}
1401
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001402int __user_walk_fd(int dfd, const char __user *name, unsigned flags,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001403 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
1405 char *tmp = getname(name);
1406 int err = PTR_ERR(tmp);
1407
1408 if (!IS_ERR(tmp)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001409 err = do_path_lookup(dfd, tmp, flags, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 putname(tmp);
1411 }
1412 return err;
1413}
1414
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001415int __user_walk(const char __user *name, unsigned flags, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001416{
1417 return __user_walk_fd(AT_FDCWD, name, flags, nd);
1418}
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420/*
1421 * It's inline, so penalty for filesystems that don't use sticky bit is
1422 * minimal.
1423 */
1424static inline int check_sticky(struct inode *dir, struct inode *inode)
1425{
1426 if (!(dir->i_mode & S_ISVTX))
1427 return 0;
1428 if (inode->i_uid == current->fsuid)
1429 return 0;
1430 if (dir->i_uid == current->fsuid)
1431 return 0;
1432 return !capable(CAP_FOWNER);
1433}
1434
1435/*
1436 * Check whether we can remove a link victim from directory dir, check
1437 * whether the type of victim is right.
1438 * 1. We can't do it if dir is read-only (done in permission())
1439 * 2. We should have write and exec permissions on dir
1440 * 3. We can't remove anything from append-only dir
1441 * 4. We can't do anything with immutable dir (done in permission())
1442 * 5. If the sticky bit on dir is set we should either
1443 * a. be owner of dir, or
1444 * b. be owner of victim, or
1445 * c. have CAP_FOWNER capability
1446 * 6. If the victim is append-only or immutable we can't do antyhing with
1447 * links pointing to it.
1448 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1449 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1450 * 9. We can't remove a root or mountpoint.
1451 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1452 * nfs_async_unlink().
1453 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001454static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455{
1456 int error;
1457
1458 if (!victim->d_inode)
1459 return -ENOENT;
1460
1461 BUG_ON(victim->d_parent->d_inode != dir);
Al Viro5a190ae2007-06-07 12:19:32 -04001462 audit_inode_child(victim->d_name.name, victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
1464 error = permission(dir,MAY_WRITE | MAY_EXEC, NULL);
1465 if (error)
1466 return error;
1467 if (IS_APPEND(dir))
1468 return -EPERM;
1469 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
1470 IS_IMMUTABLE(victim->d_inode))
1471 return -EPERM;
1472 if (isdir) {
1473 if (!S_ISDIR(victim->d_inode->i_mode))
1474 return -ENOTDIR;
1475 if (IS_ROOT(victim))
1476 return -EBUSY;
1477 } else if (S_ISDIR(victim->d_inode->i_mode))
1478 return -EISDIR;
1479 if (IS_DEADDIR(dir))
1480 return -ENOENT;
1481 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1482 return -EBUSY;
1483 return 0;
1484}
1485
1486/* Check whether we can create an object with dentry child in directory
1487 * dir.
1488 * 1. We can't do it if child already exists (open has special treatment for
1489 * this case, but since we are inlined it's OK)
1490 * 2. We can't do it if dir is read-only (done in permission())
1491 * 3. We should have write and exec permissions on dir
1492 * 4. We can't do it if dir is immutable (done in permission())
1493 */
1494static inline int may_create(struct inode *dir, struct dentry *child,
1495 struct nameidata *nd)
1496{
1497 if (child->d_inode)
1498 return -EEXIST;
1499 if (IS_DEADDIR(dir))
1500 return -ENOENT;
1501 return permission(dir,MAY_WRITE | MAY_EXEC, nd);
1502}
1503
1504/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 * O_DIRECTORY translates into forcing a directory lookup.
1506 */
1507static inline int lookup_flags(unsigned int f)
1508{
1509 unsigned long retval = LOOKUP_FOLLOW;
1510
1511 if (f & O_NOFOLLOW)
1512 retval &= ~LOOKUP_FOLLOW;
1513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 if (f & O_DIRECTORY)
1515 retval |= LOOKUP_DIRECTORY;
1516
1517 return retval;
1518}
1519
1520/*
1521 * p1 and p2 should be directories on the same fs.
1522 */
1523struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1524{
1525 struct dentry *p;
1526
1527 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001528 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 return NULL;
1530 }
1531
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001532 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534 for (p = p1; p->d_parent != p; p = p->d_parent) {
1535 if (p->d_parent == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001536 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1537 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 return p;
1539 }
1540 }
1541
1542 for (p = p2; p->d_parent != p; p = p->d_parent) {
1543 if (p->d_parent == p1) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001544 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1545 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 return p;
1547 }
1548 }
1549
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 NULL;
1553}
1554
1555void unlock_rename(struct dentry *p1, struct dentry *p2)
1556{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001557 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001559 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001560 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 }
1562}
1563
1564int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1565 struct nameidata *nd)
1566{
1567 int error = may_create(dir, dentry, nd);
1568
1569 if (error)
1570 return error;
1571
1572 if (!dir->i_op || !dir->i_op->create)
1573 return -EACCES; /* shouldn't it be ENOSYS? */
1574 mode &= S_IALLUGO;
1575 mode |= S_IFREG;
1576 error = security_inode_create(dir, dentry, mode);
1577 if (error)
1578 return error;
1579 DQUOT_INIT(dir);
1580 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001581 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001582 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 return error;
1584}
1585
1586int may_open(struct nameidata *nd, int acc_mode, int flag)
1587{
1588 struct dentry *dentry = nd->dentry;
1589 struct inode *inode = dentry->d_inode;
1590 int error;
1591
1592 if (!inode)
1593 return -ENOENT;
1594
1595 if (S_ISLNK(inode->i_mode))
1596 return -ELOOP;
1597
Linus Torvalds974a9f02008-01-12 14:06:34 -08001598 if (S_ISDIR(inode->i_mode) && (acc_mode & MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 return -EISDIR;
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 /*
1602 * FIFO's, sockets and device files are special: they don't
1603 * actually live on the filesystem itself, and as such you
1604 * can write to them even if the filesystem is read-only.
1605 */
1606 if (S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
1607 flag &= ~O_TRUNC;
1608 } else if (S_ISBLK(inode->i_mode) || S_ISCHR(inode->i_mode)) {
1609 if (nd->mnt->mnt_flags & MNT_NODEV)
1610 return -EACCES;
1611
1612 flag &= ~O_TRUNC;
Linus Torvalds974a9f02008-01-12 14:06:34 -08001613 } else if (IS_RDONLY(inode) && (acc_mode & MAY_WRITE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 return -EROFS;
Dave Hansenb41572e2007-10-16 23:31:14 -07001615
1616 error = vfs_permission(nd, acc_mode);
1617 if (error)
1618 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 /*
1620 * An append-only file must be opened in append mode for writing.
1621 */
1622 if (IS_APPEND(inode)) {
1623 if ((flag & FMODE_WRITE) && !(flag & O_APPEND))
1624 return -EPERM;
1625 if (flag & O_TRUNC)
1626 return -EPERM;
1627 }
1628
1629 /* O_NOATIME can only be set by the owner or superuser */
1630 if (flag & O_NOATIME)
Satyam Sharma3bd858a2007-07-17 15:00:08 +05301631 if (!is_owner_or_cap(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 return -EPERM;
1633
1634 /*
1635 * Ensure there are no outstanding leases on the file.
1636 */
1637 error = break_lease(inode, flag);
1638 if (error)
1639 return error;
1640
1641 if (flag & O_TRUNC) {
1642 error = get_write_access(inode);
1643 if (error)
1644 return error;
1645
1646 /*
1647 * Refuse to truncate files with mandatory locks held on them.
1648 */
1649 error = locks_verify_locked(inode);
1650 if (!error) {
1651 DQUOT_INIT(inode);
Miklos Szeredid139d7f2007-10-18 03:07:00 -07001652
1653 error = do_truncate(dentry, 0,
1654 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
1655 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
1657 put_write_access(inode);
1658 if (error)
1659 return error;
1660 } else
1661 if (flag & FMODE_WRITE)
1662 DQUOT_INIT(inode);
1663
1664 return 0;
1665}
1666
Dave Hansenaab520e2006-09-30 23:29:02 -07001667static int open_namei_create(struct nameidata *nd, struct path *path,
1668 int flag, int mode)
1669{
1670 int error;
1671 struct dentry *dir = nd->dentry;
1672
1673 if (!IS_POSIXACL(dir->d_inode))
1674 mode &= ~current->fs->umask;
1675 error = vfs_create(dir->d_inode, path->dentry, mode, nd);
1676 mutex_unlock(&dir->d_inode->i_mutex);
1677 dput(nd->dentry);
1678 nd->dentry = path->dentry;
1679 if (error)
1680 return error;
1681 /* Don't check for write permission, don't truncate */
1682 return may_open(nd, 0, flag & ~O_TRUNC);
1683}
1684
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685/*
1686 * open_namei()
1687 *
1688 * namei for open - this is in fact almost the whole open-routine.
1689 *
1690 * Note that the low bits of "flag" aren't the same as in the open
1691 * system call - they are 00 - no permissions needed
1692 * 01 - read permission needed
1693 * 10 - write permission needed
1694 * 11 - read/write permissions needed
1695 * which is a lot more logical, and also allows the "no perm" needed
1696 * for symlinks (where the permissions are checked later).
1697 * SMP-safe
1698 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001699int open_namei(int dfd, const char *pathname, int flag,
1700 int mode, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701{
Trond Myklebust834f2a42005-10-18 14:20:16 -07001702 int acc_mode, error;
Al Viro4e7506e2005-06-06 13:36:00 -07001703 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 struct dentry *dir;
1705 int count = 0;
1706
1707 acc_mode = ACC_MODE(flag);
1708
Trond Myklebust834f2a42005-10-18 14:20:16 -07001709 /* O_TRUNC implies we need access checks for write permissions */
1710 if (flag & O_TRUNC)
1711 acc_mode |= MAY_WRITE;
1712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 /* Allow the LSM permission hook to distinguish append
1714 access from general write access. */
1715 if (flag & O_APPEND)
1716 acc_mode |= MAY_APPEND;
1717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 /*
1719 * The simplest case - just a plain lookup.
1720 */
1721 if (!(flag & O_CREAT)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001722 error = path_lookup_open(dfd, pathname, lookup_flags(flag),
1723 nd, flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 if (error)
1725 return error;
1726 goto ok;
1727 }
1728
1729 /*
1730 * Create - we need to know the parent.
1731 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001732 error = path_lookup_create(dfd,pathname,LOOKUP_PARENT,nd,flag,mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 if (error)
1734 return error;
1735
1736 /*
1737 * We have the parent and last component. First of all, check
1738 * that we are not asked to creat(2) an obvious directory - that
1739 * will not do.
1740 */
1741 error = -EISDIR;
1742 if (nd->last_type != LAST_NORM || nd->last.name[nd->last.len])
1743 goto exit;
1744
1745 dir = nd->dentry;
1746 nd->flags &= ~LOOKUP_PARENT;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001747 mutex_lock(&dir->d_inode->i_mutex);
Christoph Hellwig49705b72005-11-08 21:35:06 -08001748 path.dentry = lookup_hash(nd);
Al Virod73ffe12005-06-06 13:36:01 -07001749 path.mnt = nd->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750
1751do_last:
Al Viro4e7506e2005-06-06 13:36:00 -07001752 error = PTR_ERR(path.dentry);
1753 if (IS_ERR(path.dentry)) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001754 mutex_unlock(&dir->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 goto exit;
1756 }
1757
Oleg Drokin4af4c522006-03-25 03:06:54 -08001758 if (IS_ERR(nd->intent.open.file)) {
1759 mutex_unlock(&dir->d_inode->i_mutex);
1760 error = PTR_ERR(nd->intent.open.file);
1761 goto exit_dput;
1762 }
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 /* Negative dentry, just create the file */
Al Viro4e7506e2005-06-06 13:36:00 -07001765 if (!path.dentry->d_inode) {
Dave Hansenaab520e2006-09-30 23:29:02 -07001766 error = open_namei_create(nd, &path, flag, mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 if (error)
1768 goto exit;
Dave Hansenaab520e2006-09-30 23:29:02 -07001769 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
1771
1772 /*
1773 * It already exists.
1774 */
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001775 mutex_unlock(&dir->d_inode->i_mutex);
Al Viro5a190ae2007-06-07 12:19:32 -04001776 audit_inode(pathname, path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
1778 error = -EEXIST;
1779 if (flag & O_EXCL)
1780 goto exit_dput;
1781
Al Viroe13b2102005-06-06 13:36:06 -07001782 if (__follow_mount(&path)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 error = -ELOOP;
Al Viroba7a4c12005-06-06 13:36:08 -07001784 if (flag & O_NOFOLLOW)
1785 goto exit_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 }
Amy Griffis3e2efce2006-07-13 13:16:02 -04001787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 error = -ENOENT;
Al Viro4e7506e2005-06-06 13:36:00 -07001789 if (!path.dentry->d_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 goto exit_dput;
Al Viro4e7506e2005-06-06 13:36:00 -07001791 if (path.dentry->d_inode->i_op && path.dentry->d_inode->i_op->follow_link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 goto do_link;
1793
Miklos Szeredi09dd17d2005-09-06 15:18:21 -07001794 path_to_nameidata(&path, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 error = -EISDIR;
Al Viro4e7506e2005-06-06 13:36:00 -07001796 if (path.dentry->d_inode && S_ISDIR(path.dentry->d_inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 goto exit;
1798ok:
1799 error = may_open(nd, acc_mode, flag);
1800 if (error)
1801 goto exit;
1802 return 0;
1803
1804exit_dput:
Miklos Szeredi09dd17d2005-09-06 15:18:21 -07001805 dput_path(&path, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806exit:
Trond Myklebust834f2a42005-10-18 14:20:16 -07001807 if (!IS_ERR(nd->intent.open.file))
1808 release_open_intent(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 path_release(nd);
1810 return error;
1811
1812do_link:
1813 error = -ELOOP;
1814 if (flag & O_NOFOLLOW)
1815 goto exit_dput;
1816 /*
1817 * This is subtle. Instead of calling do_follow_link() we do the
1818 * thing by hands. The reason is that this way we have zero link_count
1819 * and path_walk() (called from ->follow_link) honoring LOOKUP_PARENT.
1820 * After that we have the parent and last component, i.e.
1821 * we are in the same situation as after the first path_walk().
1822 * Well, almost - if the last component is normal we get its copy
1823 * stored in nd->last.name and we will have to putname() it when we
1824 * are done. Procfs-like symlinks just set LAST_BIND.
1825 */
1826 nd->flags |= LOOKUP_PARENT;
Al Viro4e7506e2005-06-06 13:36:00 -07001827 error = security_inode_follow_link(path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 if (error)
1829 goto exit_dput;
Al Virocd4e91d2005-06-06 13:36:03 -07001830 error = __do_follow_link(&path, nd);
Kirill Korotaevde459212006-07-14 00:23:49 -07001831 if (error) {
1832 /* Does someone understand code flow here? Or it is only
1833 * me so stupid? Anathema to whoever designed this non-sense
1834 * with "intent.open".
1835 */
1836 release_open_intent(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 return error;
Kirill Korotaevde459212006-07-14 00:23:49 -07001838 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 nd->flags &= ~LOOKUP_PARENT;
Al Virod671d5e2005-06-06 13:36:04 -07001840 if (nd->last_type == LAST_BIND)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 goto ok;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 error = -EISDIR;
1843 if (nd->last_type != LAST_NORM)
1844 goto exit;
1845 if (nd->last.name[nd->last.len]) {
Linus Torvalds82984112005-10-06 21:54:21 -07001846 __putname(nd->last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 goto exit;
1848 }
1849 error = -ELOOP;
1850 if (count++==32) {
Linus Torvalds82984112005-10-06 21:54:21 -07001851 __putname(nd->last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 goto exit;
1853 }
1854 dir = nd->dentry;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001855 mutex_lock(&dir->d_inode->i_mutex);
Christoph Hellwig49705b72005-11-08 21:35:06 -08001856 path.dentry = lookup_hash(nd);
Al Virod671d5e2005-06-06 13:36:04 -07001857 path.mnt = nd->mnt;
Linus Torvalds82984112005-10-06 21:54:21 -07001858 __putname(nd->last.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 goto do_last;
1860}
1861
1862/**
1863 * lookup_create - lookup a dentry, creating it if it doesn't exist
1864 * @nd: nameidata info
1865 * @is_dir: directory flag
1866 *
1867 * Simple function to lookup and return a dentry and create it
1868 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001869 *
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001870 * Returns with nd->dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 */
1872struct dentry *lookup_create(struct nameidata *nd, int is_dir)
1873{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001874 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875
Ingo Molnarf2eace22006-07-03 00:25:05 -07001876 mutex_lock_nested(&nd->dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001877 /*
1878 * Yucky last component or no last component at all?
1879 * (foo/., foo/.., /////)
1880 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 if (nd->last_type != LAST_NORM)
1882 goto fail;
1883 nd->flags &= ~LOOKUP_PARENT;
ASANO Masahiroa6349042006-08-22 20:06:02 -04001884 nd->flags |= LOOKUP_CREATE;
1885 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001886
1887 /*
1888 * Do the final lookup.
1889 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08001890 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 if (IS_ERR(dentry))
1892 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001893
1894 /*
1895 * Special case - lookup gave negative, but... we had foo/bar/
1896 * From the vfs_mknod() POV we just have a negative dentry -
1897 * all is fine. Let's be bastards - you had / on the end, you've
1898 * been asking for (non-existent) directory. -ENOENT for you.
1899 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 if (!is_dir && nd->last.name[nd->last.len] && !dentry->d_inode)
1901 goto enoent;
1902 return dentry;
1903enoent:
1904 dput(dentry);
1905 dentry = ERR_PTR(-ENOENT);
1906fail:
1907 return dentry;
1908}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07001909EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
1911int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1912{
1913 int error = may_create(dir, dentry, NULL);
1914
1915 if (error)
1916 return error;
1917
1918 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1919 return -EPERM;
1920
1921 if (!dir->i_op || !dir->i_op->mknod)
1922 return -EPERM;
1923
1924 error = security_inode_mknod(dir, dentry, mode, dev);
1925 if (error)
1926 return error;
1927
1928 DQUOT_INIT(dir);
1929 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001930 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001931 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 return error;
1933}
1934
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001935asmlinkage long sys_mknodat(int dfd, const char __user *filename, int mode,
1936 unsigned dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
1938 int error = 0;
1939 char * tmp;
1940 struct dentry * dentry;
1941 struct nameidata nd;
1942
1943 if (S_ISDIR(mode))
1944 return -EPERM;
1945 tmp = getname(filename);
1946 if (IS_ERR(tmp))
1947 return PTR_ERR(tmp);
1948
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001949 error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 if (error)
1951 goto out;
1952 dentry = lookup_create(&nd, 0);
1953 error = PTR_ERR(dentry);
1954
1955 if (!IS_POSIXACL(nd.dentry->d_inode))
1956 mode &= ~current->fs->umask;
1957 if (!IS_ERR(dentry)) {
1958 switch (mode & S_IFMT) {
1959 case 0: case S_IFREG:
1960 error = vfs_create(nd.dentry->d_inode,dentry,mode,&nd);
1961 break;
1962 case S_IFCHR: case S_IFBLK:
1963 error = vfs_mknod(nd.dentry->d_inode,dentry,mode,
1964 new_decode_dev(dev));
1965 break;
1966 case S_IFIFO: case S_IFSOCK:
1967 error = vfs_mknod(nd.dentry->d_inode,dentry,mode,0);
1968 break;
1969 case S_IFDIR:
1970 error = -EPERM;
1971 break;
1972 default:
1973 error = -EINVAL;
1974 }
1975 dput(dentry);
1976 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001977 mutex_unlock(&nd.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 path_release(&nd);
1979out:
1980 putname(tmp);
1981
1982 return error;
1983}
1984
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001985asmlinkage long sys_mknod(const char __user *filename, int mode, unsigned dev)
1986{
1987 return sys_mknodat(AT_FDCWD, filename, mode, dev);
1988}
1989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1991{
1992 int error = may_create(dir, dentry, NULL);
1993
1994 if (error)
1995 return error;
1996
1997 if (!dir->i_op || !dir->i_op->mkdir)
1998 return -EPERM;
1999
2000 mode &= (S_IRWXUGO|S_ISVTX);
2001 error = security_inode_mkdir(dir, dentry, mode);
2002 if (error)
2003 return error;
2004
2005 DQUOT_INIT(dir);
2006 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002007 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002008 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 return error;
2010}
2011
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002012asmlinkage long sys_mkdirat(int dfd, const char __user *pathname, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
2014 int error = 0;
2015 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002016 struct dentry *dentry;
2017 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019 tmp = getname(pathname);
2020 error = PTR_ERR(tmp);
Dave Hansen6902d922006-09-30 23:29:01 -07002021 if (IS_ERR(tmp))
2022 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023
Dave Hansen6902d922006-09-30 23:29:01 -07002024 error = do_path_lookup(dfd, tmp, LOOKUP_PARENT, &nd);
2025 if (error)
2026 goto out;
2027 dentry = lookup_create(&nd, 1);
2028 error = PTR_ERR(dentry);
2029 if (IS_ERR(dentry))
2030 goto out_unlock;
2031
2032 if (!IS_POSIXACL(nd.dentry->d_inode))
2033 mode &= ~current->fs->umask;
2034 error = vfs_mkdir(nd.dentry->d_inode, dentry, mode);
2035 dput(dentry);
2036out_unlock:
2037 mutex_unlock(&nd.dentry->d_inode->i_mutex);
2038 path_release(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039out:
Dave Hansen6902d922006-09-30 23:29:01 -07002040 putname(tmp);
2041out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 return error;
2043}
2044
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002045asmlinkage long sys_mkdir(const char __user *pathname, int mode)
2046{
2047 return sys_mkdirat(AT_FDCWD, pathname, mode);
2048}
2049
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050/*
2051 * We try to drop the dentry early: we should have
2052 * a usage count of 2 if we're the only user of this
2053 * dentry, and if that is true (possibly after pruning
2054 * the dcache), then we drop the dentry now.
2055 *
2056 * A low-level filesystem can, if it choses, legally
2057 * do a
2058 *
2059 * if (!d_unhashed(dentry))
2060 * return -EBUSY;
2061 *
2062 * if it cannot handle the case of removing a directory
2063 * that is still in use by something else..
2064 */
2065void dentry_unhash(struct dentry *dentry)
2066{
2067 dget(dentry);
Vasily Averindc168422006-12-06 20:37:07 -08002068 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 spin_lock(&dcache_lock);
2070 spin_lock(&dentry->d_lock);
2071 if (atomic_read(&dentry->d_count) == 2)
2072 __d_drop(dentry);
2073 spin_unlock(&dentry->d_lock);
2074 spin_unlock(&dcache_lock);
2075}
2076
2077int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2078{
2079 int error = may_delete(dir, dentry, 1);
2080
2081 if (error)
2082 return error;
2083
2084 if (!dir->i_op || !dir->i_op->rmdir)
2085 return -EPERM;
2086
2087 DQUOT_INIT(dir);
2088
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002089 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 dentry_unhash(dentry);
2091 if (d_mountpoint(dentry))
2092 error = -EBUSY;
2093 else {
2094 error = security_inode_rmdir(dir, dentry);
2095 if (!error) {
2096 error = dir->i_op->rmdir(dir, dentry);
2097 if (!error)
2098 dentry->d_inode->i_flags |= S_DEAD;
2099 }
2100 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002101 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 d_delete(dentry);
2104 }
2105 dput(dentry);
2106
2107 return error;
2108}
2109
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002110static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111{
2112 int error = 0;
2113 char * name;
2114 struct dentry *dentry;
2115 struct nameidata nd;
2116
2117 name = getname(pathname);
2118 if(IS_ERR(name))
2119 return PTR_ERR(name);
2120
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002121 error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 if (error)
2123 goto exit;
2124
2125 switch(nd.last_type) {
2126 case LAST_DOTDOT:
2127 error = -ENOTEMPTY;
2128 goto exit1;
2129 case LAST_DOT:
2130 error = -EINVAL;
2131 goto exit1;
2132 case LAST_ROOT:
2133 error = -EBUSY;
2134 goto exit1;
2135 }
Ingo Molnarf2eace22006-07-03 00:25:05 -07002136 mutex_lock_nested(&nd.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002137 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002139 if (IS_ERR(dentry))
2140 goto exit2;
2141 error = vfs_rmdir(nd.dentry->d_inode, dentry);
2142 dput(dentry);
2143exit2:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002144 mutex_unlock(&nd.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145exit1:
2146 path_release(&nd);
2147exit:
2148 putname(name);
2149 return error;
2150}
2151
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002152asmlinkage long sys_rmdir(const char __user *pathname)
2153{
2154 return do_rmdir(AT_FDCWD, pathname);
2155}
2156
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157int vfs_unlink(struct inode *dir, struct dentry *dentry)
2158{
2159 int error = may_delete(dir, dentry, 0);
2160
2161 if (error)
2162 return error;
2163
2164 if (!dir->i_op || !dir->i_op->unlink)
2165 return -EPERM;
2166
2167 DQUOT_INIT(dir);
2168
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002169 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 if (d_mountpoint(dentry))
2171 error = -EBUSY;
2172 else {
2173 error = security_inode_unlink(dir, dentry);
2174 if (!error)
2175 error = dir->i_op->unlink(dir, dentry);
2176 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002177 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2180 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002181 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 }
Robert Love0eeca282005-07-12 17:06:03 -04002184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 return error;
2186}
2187
2188/*
2189 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002190 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 * writeout happening, and we don't want to prevent access to the directory
2192 * while waiting on the I/O.
2193 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002194static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195{
2196 int error = 0;
2197 char * name;
2198 struct dentry *dentry;
2199 struct nameidata nd;
2200 struct inode *inode = NULL;
2201
2202 name = getname(pathname);
2203 if(IS_ERR(name))
2204 return PTR_ERR(name);
2205
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002206 error = do_path_lookup(dfd, name, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 if (error)
2208 goto exit;
2209 error = -EISDIR;
2210 if (nd.last_type != LAST_NORM)
2211 goto exit1;
Ingo Molnarf2eace22006-07-03 00:25:05 -07002212 mutex_lock_nested(&nd.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002213 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 error = PTR_ERR(dentry);
2215 if (!IS_ERR(dentry)) {
2216 /* Why not before? Because we want correct error value */
2217 if (nd.last.name[nd.last.len])
2218 goto slashes;
2219 inode = dentry->d_inode;
2220 if (inode)
2221 atomic_inc(&inode->i_count);
2222 error = vfs_unlink(nd.dentry->d_inode, dentry);
2223 exit2:
2224 dput(dentry);
2225 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002226 mutex_unlock(&nd.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 if (inode)
2228 iput(inode); /* truncate the inode here */
2229exit1:
2230 path_release(&nd);
2231exit:
2232 putname(name);
2233 return error;
2234
2235slashes:
2236 error = !dentry->d_inode ? -ENOENT :
2237 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2238 goto exit2;
2239}
2240
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002241asmlinkage long sys_unlinkat(int dfd, const char __user *pathname, int flag)
2242{
2243 if ((flag & ~AT_REMOVEDIR) != 0)
2244 return -EINVAL;
2245
2246 if (flag & AT_REMOVEDIR)
2247 return do_rmdir(dfd, pathname);
2248
2249 return do_unlinkat(dfd, pathname);
2250}
2251
2252asmlinkage long sys_unlink(const char __user *pathname)
2253{
2254 return do_unlinkat(AT_FDCWD, pathname);
2255}
2256
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname, int mode)
2258{
2259 int error = may_create(dir, dentry, NULL);
2260
2261 if (error)
2262 return error;
2263
2264 if (!dir->i_op || !dir->i_op->symlink)
2265 return -EPERM;
2266
2267 error = security_inode_symlink(dir, dentry, oldname);
2268 if (error)
2269 return error;
2270
2271 DQUOT_INIT(dir);
2272 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002273 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002274 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 return error;
2276}
2277
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002278asmlinkage long sys_symlinkat(const char __user *oldname,
2279 int newdfd, const char __user *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280{
2281 int error = 0;
2282 char * from;
2283 char * to;
Dave Hansen6902d922006-09-30 23:29:01 -07002284 struct dentry *dentry;
2285 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
2287 from = getname(oldname);
2288 if(IS_ERR(from))
2289 return PTR_ERR(from);
2290 to = getname(newname);
2291 error = PTR_ERR(to);
Dave Hansen6902d922006-09-30 23:29:01 -07002292 if (IS_ERR(to))
2293 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
Dave Hansen6902d922006-09-30 23:29:01 -07002295 error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
2296 if (error)
2297 goto out;
2298 dentry = lookup_create(&nd, 0);
2299 error = PTR_ERR(dentry);
2300 if (IS_ERR(dentry))
2301 goto out_unlock;
2302
2303 error = vfs_symlink(nd.dentry->d_inode, dentry, from, S_IALLUGO);
2304 dput(dentry);
2305out_unlock:
2306 mutex_unlock(&nd.dentry->d_inode->i_mutex);
2307 path_release(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308out:
Dave Hansen6902d922006-09-30 23:29:01 -07002309 putname(to);
2310out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 putname(from);
2312 return error;
2313}
2314
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002315asmlinkage long sys_symlink(const char __user *oldname, const char __user *newname)
2316{
2317 return sys_symlinkat(oldname, AT_FDCWD, newname);
2318}
2319
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2321{
2322 struct inode *inode = old_dentry->d_inode;
2323 int error;
2324
2325 if (!inode)
2326 return -ENOENT;
2327
2328 error = may_create(dir, new_dentry, NULL);
2329 if (error)
2330 return error;
2331
2332 if (dir->i_sb != inode->i_sb)
2333 return -EXDEV;
2334
2335 /*
2336 * A link to an append-only or immutable file cannot be created.
2337 */
2338 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2339 return -EPERM;
2340 if (!dir->i_op || !dir->i_op->link)
2341 return -EPERM;
2342 if (S_ISDIR(old_dentry->d_inode->i_mode))
2343 return -EPERM;
2344
2345 error = security_inode_link(old_dentry, dir, new_dentry);
2346 if (error)
2347 return error;
2348
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002349 mutex_lock(&old_dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 DQUOT_INIT(dir);
2351 error = dir->i_op->link(old_dentry, dir, new_dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002352 mutex_unlock(&old_dentry->d_inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002353 if (!error)
Jan Karaece95912008-02-06 01:37:13 -08002354 fsnotify_link(dir, old_dentry->d_inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 return error;
2356}
2357
2358/*
2359 * Hardlinks are often used in delicate situations. We avoid
2360 * security-related surprises by not following symlinks on the
2361 * newname. --KAB
2362 *
2363 * We don't follow them on the oldname either to be compatible
2364 * with linux 2.0, and to avoid hard-linking to directories
2365 * and other special files. --ADM
2366 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002367asmlinkage long sys_linkat(int olddfd, const char __user *oldname,
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002368 int newdfd, const char __user *newname,
2369 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370{
2371 struct dentry *new_dentry;
2372 struct nameidata nd, old_nd;
2373 int error;
2374 char * to;
2375
Ulrich Drepper45c9b112006-06-25 05:49:11 -07002376 if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002377 return -EINVAL;
2378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 to = getname(newname);
2380 if (IS_ERR(to))
2381 return PTR_ERR(to);
2382
Ulrich Drepper45c9b112006-06-25 05:49:11 -07002383 error = __user_walk_fd(olddfd, oldname,
2384 flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
2385 &old_nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 if (error)
2387 goto exit;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002388 error = do_path_lookup(newdfd, to, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 if (error)
2390 goto out;
2391 error = -EXDEV;
2392 if (old_nd.mnt != nd.mnt)
2393 goto out_release;
2394 new_dentry = lookup_create(&nd, 0);
2395 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002396 if (IS_ERR(new_dentry))
2397 goto out_unlock;
2398 error = vfs_link(old_nd.dentry, nd.dentry->d_inode, new_dentry);
2399 dput(new_dentry);
2400out_unlock:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002401 mutex_unlock(&nd.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402out_release:
2403 path_release(&nd);
2404out:
2405 path_release(&old_nd);
2406exit:
2407 putname(to);
2408
2409 return error;
2410}
2411
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002412asmlinkage long sys_link(const char __user *oldname, const char __user *newname)
2413{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002414 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002415}
2416
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417/*
2418 * The worst of all namespace operations - renaming directory. "Perverted"
2419 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2420 * Problems:
2421 * a) we can get into loop creation. Check is done in is_subdir().
2422 * b) race potential - two innocent renames can create a loop together.
2423 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002424 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 * story.
2426 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002427 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 * whether the target exists). Solution: try to be smart with locking
2429 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002430 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 * move will be locked. Thus we can rank directories by the tree
2432 * (ancestors first) and rank all non-directories after them.
2433 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002434 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 * HOWEVER, it relies on the assumption that any object with ->lookup()
2436 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2437 * we'd better make sure that there's no link(2) for them.
2438 * d) some filesystems don't support opened-but-unlinked directories,
2439 * either because of layout or because they are not ready to deal with
2440 * all cases correctly. The latter will be fixed (taking this sort of
2441 * stuff into VFS), but the former is not going away. Solution: the same
2442 * trick as in rmdir().
2443 * e) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002444 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002446 * ->i_mutex on parents, which works but leads to some truely excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 * locking].
2448 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07002449static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2450 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451{
2452 int error = 0;
2453 struct inode *target;
2454
2455 /*
2456 * If we are going to change the parent - check write permissions,
2457 * we'll need to flip '..'.
2458 */
2459 if (new_dir != old_dir) {
2460 error = permission(old_dentry->d_inode, MAY_WRITE, NULL);
2461 if (error)
2462 return error;
2463 }
2464
2465 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2466 if (error)
2467 return error;
2468
2469 target = new_dentry->d_inode;
2470 if (target) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002471 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 dentry_unhash(new_dentry);
2473 }
2474 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2475 error = -EBUSY;
2476 else
2477 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2478 if (target) {
2479 if (!error)
2480 target->i_flags |= S_DEAD;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002481 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 if (d_unhashed(new_dentry))
2483 d_rehash(new_dentry);
2484 dput(new_dentry);
2485 }
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002486 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07002487 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2488 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 return error;
2490}
2491
Adrian Bunk75c96f82005-05-05 16:16:09 -07002492static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
2493 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494{
2495 struct inode *target;
2496 int error;
2497
2498 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2499 if (error)
2500 return error;
2501
2502 dget(new_dentry);
2503 target = new_dentry->d_inode;
2504 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002505 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2507 error = -EBUSY;
2508 else
2509 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2510 if (!error) {
Mark Fasheh349457c2006-09-08 14:22:21 -07002511 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 d_move(old_dentry, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 }
2514 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002515 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 dput(new_dentry);
2517 return error;
2518}
2519
2520int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
2521 struct inode *new_dir, struct dentry *new_dentry)
2522{
2523 int error;
2524 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Robert Love0eeca282005-07-12 17:06:03 -04002525 const char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
2527 if (old_dentry->d_inode == new_dentry->d_inode)
2528 return 0;
2529
2530 error = may_delete(old_dir, old_dentry, is_dir);
2531 if (error)
2532 return error;
2533
2534 if (!new_dentry->d_inode)
2535 error = may_create(new_dir, new_dentry, NULL);
2536 else
2537 error = may_delete(new_dir, new_dentry, is_dir);
2538 if (error)
2539 return error;
2540
2541 if (!old_dir->i_op || !old_dir->i_op->rename)
2542 return -EPERM;
2543
2544 DQUOT_INIT(old_dir);
2545 DQUOT_INIT(new_dir);
2546
Robert Love0eeca282005-07-12 17:06:03 -04002547 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
2548
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 if (is_dir)
2550 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
2551 else
2552 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
2553 if (!error) {
Robert Love0eeca282005-07-12 17:06:03 -04002554 const char *new_name = old_dentry->d_name.name;
John McCutchan89204c42005-08-15 12:13:28 -04002555 fsnotify_move(old_dir, new_dir, old_name, new_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04002556 new_dentry->d_inode, old_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 }
Robert Love0eeca282005-07-12 17:06:03 -04002558 fsnotify_oldname_free(old_name);
2559
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 return error;
2561}
2562
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002563static int do_rename(int olddfd, const char *oldname,
2564 int newdfd, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565{
2566 int error = 0;
2567 struct dentry * old_dir, * new_dir;
2568 struct dentry * old_dentry, *new_dentry;
2569 struct dentry * trap;
2570 struct nameidata oldnd, newnd;
2571
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002572 error = do_path_lookup(olddfd, oldname, LOOKUP_PARENT, &oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 if (error)
2574 goto exit;
2575
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002576 error = do_path_lookup(newdfd, newname, LOOKUP_PARENT, &newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 if (error)
2578 goto exit1;
2579
2580 error = -EXDEV;
2581 if (oldnd.mnt != newnd.mnt)
2582 goto exit2;
2583
2584 old_dir = oldnd.dentry;
2585 error = -EBUSY;
2586 if (oldnd.last_type != LAST_NORM)
2587 goto exit2;
2588
2589 new_dir = newnd.dentry;
2590 if (newnd.last_type != LAST_NORM)
2591 goto exit2;
2592
2593 trap = lock_rename(new_dir, old_dir);
2594
Christoph Hellwig49705b72005-11-08 21:35:06 -08002595 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 error = PTR_ERR(old_dentry);
2597 if (IS_ERR(old_dentry))
2598 goto exit3;
2599 /* source must exist */
2600 error = -ENOENT;
2601 if (!old_dentry->d_inode)
2602 goto exit4;
2603 /* unless the source is a directory trailing slashes give -ENOTDIR */
2604 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
2605 error = -ENOTDIR;
2606 if (oldnd.last.name[oldnd.last.len])
2607 goto exit4;
2608 if (newnd.last.name[newnd.last.len])
2609 goto exit4;
2610 }
2611 /* source should not be ancestor of target */
2612 error = -EINVAL;
2613 if (old_dentry == trap)
2614 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08002615 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 error = PTR_ERR(new_dentry);
2617 if (IS_ERR(new_dentry))
2618 goto exit4;
2619 /* target should not be an ancestor of source */
2620 error = -ENOTEMPTY;
2621 if (new_dentry == trap)
2622 goto exit5;
2623
2624 error = vfs_rename(old_dir->d_inode, old_dentry,
2625 new_dir->d_inode, new_dentry);
2626exit5:
2627 dput(new_dentry);
2628exit4:
2629 dput(old_dentry);
2630exit3:
2631 unlock_rename(new_dir, old_dir);
2632exit2:
2633 path_release(&newnd);
2634exit1:
2635 path_release(&oldnd);
2636exit:
2637 return error;
2638}
2639
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002640asmlinkage long sys_renameat(int olddfd, const char __user *oldname,
2641 int newdfd, const char __user *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642{
2643 int error;
2644 char * from;
2645 char * to;
2646
2647 from = getname(oldname);
2648 if(IS_ERR(from))
2649 return PTR_ERR(from);
2650 to = getname(newname);
2651 error = PTR_ERR(to);
2652 if (!IS_ERR(to)) {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002653 error = do_rename(olddfd, from, newdfd, to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 putname(to);
2655 }
2656 putname(from);
2657 return error;
2658}
2659
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002660asmlinkage long sys_rename(const char __user *oldname, const char __user *newname)
2661{
2662 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
2663}
2664
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
2666{
2667 int len;
2668
2669 len = PTR_ERR(link);
2670 if (IS_ERR(link))
2671 goto out;
2672
2673 len = strlen(link);
2674 if (len > (unsigned) buflen)
2675 len = buflen;
2676 if (copy_to_user(buffer, link, len))
2677 len = -EFAULT;
2678out:
2679 return len;
2680}
2681
2682/*
2683 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
2684 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
2685 * using) it for any given inode is up to filesystem.
2686 */
2687int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2688{
2689 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002690 void *cookie;
2691
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002693 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
2694 if (!IS_ERR(cookie)) {
2695 int res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 if (dentry->d_inode->i_op->put_link)
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002697 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
2698 cookie = ERR_PTR(res);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 }
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002700 return PTR_ERR(cookie);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701}
2702
2703int vfs_follow_link(struct nameidata *nd, const char *link)
2704{
2705 return __vfs_follow_link(nd, link);
2706}
2707
2708/* get the link contents into pagecache */
2709static char *page_getlink(struct dentry * dentry, struct page **ppage)
2710{
2711 struct page * page;
2712 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07002713 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07002715 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 *ppage = page;
2717 return kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718}
2719
2720int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2721{
2722 struct page *page = NULL;
2723 char *s = page_getlink(dentry, &page);
2724 int res = vfs_readlink(dentry,buffer,buflen,s);
2725 if (page) {
2726 kunmap(page);
2727 page_cache_release(page);
2728 }
2729 return res;
2730}
2731
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002732void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002734 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002736 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737}
2738
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002739void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002741 struct page *page = cookie;
2742
2743 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 kunmap(page);
2745 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 }
2747}
2748
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002749int __page_symlink(struct inode *inode, const char *symname, int len,
2750 gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751{
2752 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002753 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07002754 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08002755 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 char *kaddr;
2757
NeilBrown7e53cac2006-03-25 03:07:57 -08002758retry:
Nick Pigginafddba42007-10-16 01:25:01 -07002759 err = pagecache_write_begin(NULL, mapping, 0, len-1,
2760 AOP_FLAG_UNINTERRUPTIBLE, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07002762 goto fail;
2763
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 kaddr = kmap_atomic(page, KM_USER0);
2765 memcpy(kaddr, symname, len-1);
2766 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07002767
2768 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
2769 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 if (err < 0)
2771 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07002772 if (err < len-1)
2773 goto retry;
2774
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 mark_inode_dirty(inode);
2776 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777fail:
2778 return err;
2779}
2780
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002781int page_symlink(struct inode *inode, const char *symname, int len)
2782{
2783 return __page_symlink(inode, symname, len,
2784 mapping_gfp_mask(inode->i_mapping));
2785}
2786
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002787const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 .readlink = generic_readlink,
2789 .follow_link = page_follow_link_light,
2790 .put_link = page_put_link,
2791};
2792
2793EXPORT_SYMBOL(__user_walk);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002794EXPORT_SYMBOL(__user_walk_fd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795EXPORT_SYMBOL(follow_down);
2796EXPORT_SYMBOL(follow_up);
2797EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
2798EXPORT_SYMBOL(getname);
2799EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800EXPORT_SYMBOL(lookup_one_len);
2801EXPORT_SYMBOL(page_follow_link_light);
2802EXPORT_SYMBOL(page_put_link);
2803EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002804EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805EXPORT_SYMBOL(page_symlink);
2806EXPORT_SYMBOL(page_symlink_inode_operations);
2807EXPORT_SYMBOL(path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002808EXPORT_SYMBOL(vfs_path_lookup);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809EXPORT_SYMBOL(path_release);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810EXPORT_SYMBOL(permission);
Christoph Hellwige4543ed2005-11-08 21:35:04 -08002811EXPORT_SYMBOL(vfs_permission);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -08002812EXPORT_SYMBOL(file_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813EXPORT_SYMBOL(unlock_rename);
2814EXPORT_SYMBOL(vfs_create);
2815EXPORT_SYMBOL(vfs_follow_link);
2816EXPORT_SYMBOL(vfs_link);
2817EXPORT_SYMBOL(vfs_mkdir);
2818EXPORT_SYMBOL(vfs_mknod);
2819EXPORT_SYMBOL(generic_permission);
2820EXPORT_SYMBOL(vfs_readlink);
2821EXPORT_SYMBOL(vfs_rename);
2822EXPORT_SYMBOL(vfs_rmdir);
2823EXPORT_SYMBOL(vfs_symlink);
2824EXPORT_SYMBOL(vfs_unlink);
2825EXPORT_SYMBOL(dentry_unhash);
2826EXPORT_SYMBOL(generic_readlink);