blob: c2742b7dec595207aed06e78fec1bffed8c9db70 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/pagemap.h>
Robert Love0eeca282005-07-12 17:06:03 -040023#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/personality.h>
25#include <linux/security.h>
Mimi Zohar6146f0d2009-02-04 09:06:57 -050026#include <linux/ima.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/syscalls.h>
28#include <linux/mount.h>
29#include <linux/audit.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080030#include <linux/capability.h>
Trond Myklebust834f2a42005-10-18 14:20:16 -070031#include <linux/file.h>
Ulrich Drepper5590ff02006-01-18 17:43:53 -080032#include <linux/fcntl.h>
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070033#include <linux/device_cgroup.h>
Al Viro5ad4e532009-03-29 19:50:06 -040034#include <linux/fs_struct.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/uaccess.h>
36
Eric Parise81e3f42009-12-04 15:47:36 -050037#include "internal.h"
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/* [Feb-1997 T. Schoebel-Theuer]
40 * Fundamental changes in the pathname lookup mechanisms (namei)
41 * were necessary because of omirr. The reason is that omirr needs
42 * to know the _real_ pathname, not the user-supplied one, in case
43 * of symlinks (and also when transname replacements occur).
44 *
45 * The new code replaces the old recursive symlink resolution with
46 * an iterative one (in case of non-nested symlink chains). It does
47 * this with calls to <fs>_follow_link().
48 * As a side effect, dir_namei(), _namei() and follow_link() are now
49 * replaced with a single function lookup_dentry() that can handle all
50 * the special cases of the former code.
51 *
52 * With the new dcache, the pathname is stored at each inode, at least as
53 * long as the refcount of the inode is positive. As a side effect, the
54 * size of the dcache depends on the inode cache and thus is dynamic.
55 *
56 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
57 * resolution to correspond with current state of the code.
58 *
59 * Note that the symlink resolution is not *completely* iterative.
60 * There is still a significant amount of tail- and mid- recursion in
61 * the algorithm. Also, note that <fs>_readlink() is not used in
62 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
63 * may return different results than <fs>_follow_link(). Many virtual
64 * filesystems (including /proc) exhibit this behavior.
65 */
66
67/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
68 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
69 * and the name already exists in form of a symlink, try to create the new
70 * name indicated by the symlink. The old code always complained that the
71 * name already exists, due to not following the symlink even if its target
72 * is nonexistent. The new semantics affects also mknod() and link() when
73 * the name is a symlink pointing to a non-existant name.
74 *
75 * I don't know which semantics is the right one, since I have no access
76 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
77 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
78 * "old" one. Personally, I think the new semantics is much more logical.
79 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
80 * file does succeed in both HP-UX and SunOs, but not in Solaris
81 * and in the old Linux semantics.
82 */
83
84/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
85 * semantics. See the comments in "open_namei" and "do_link" below.
86 *
87 * [10-Sep-98 Alan Modra] Another symlink change.
88 */
89
90/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
91 * inside the path - always follow.
92 * in the last component in creation/removal/renaming - never follow.
93 * if LOOKUP_FOLLOW passed - follow.
94 * if the pathname has trailing slashes - follow.
95 * otherwise - don't follow.
96 * (applied in that order).
97 *
98 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
99 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
100 * During the 2.4 we need to fix the userland stuff depending on it -
101 * hopefully we will be able to get rid of that wart in 2.5. So far only
102 * XEmacs seems to be relying on it...
103 */
104/*
105 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800106 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * any extra contention...
108 */
109
110/* In order to reduce some races, while at the same time doing additional
111 * checking and hopefully speeding things up, we copy filenames to the
112 * kernel data space before using them..
113 *
114 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
115 * PATH_MAX includes the nul terminator --RR.
116 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800117static int do_getname(const char __user *filename, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 int retval;
120 unsigned long len = PATH_MAX;
121
122 if (!segment_eq(get_fs(), KERNEL_DS)) {
123 if ((unsigned long) filename >= TASK_SIZE)
124 return -EFAULT;
125 if (TASK_SIZE - (unsigned long) filename < PATH_MAX)
126 len = TASK_SIZE - (unsigned long) filename;
127 }
128
129 retval = strncpy_from_user(page, filename, len);
130 if (retval > 0) {
131 if (retval < len)
132 return 0;
133 return -ENAMETOOLONG;
134 } else if (!retval)
135 retval = -ENOENT;
136 return retval;
137}
138
139char * getname(const char __user * filename)
140{
141 char *tmp, *result;
142
143 result = ERR_PTR(-ENOMEM);
144 tmp = __getname();
145 if (tmp) {
146 int retval = do_getname(filename, tmp);
147
148 result = tmp;
149 if (retval < 0) {
150 __putname(tmp);
151 result = ERR_PTR(retval);
152 }
153 }
154 audit_getname(result);
155 return result;
156}
157
158#ifdef CONFIG_AUDITSYSCALL
159void putname(const char *name)
160{
Al Viro5ac3a9c2006-07-16 06:38:45 -0400161 if (unlikely(!audit_dummy_context()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 audit_putname(name);
163 else
164 __putname(name);
165}
166EXPORT_SYMBOL(putname);
167#endif
168
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700169/*
170 * This does basic POSIX ACL permission checking
171 */
172static int acl_permission_check(struct inode *inode, int mask,
173 int (*check_acl)(struct inode *inode, int mask))
174{
175 umode_t mode = inode->i_mode;
176
177 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
178
179 if (current_fsuid() == inode->i_uid)
180 mode >>= 6;
181 else {
182 if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
183 int error = check_acl(inode, mask);
184 if (error != -EAGAIN)
185 return error;
186 }
187
188 if (in_group_p(inode->i_gid))
189 mode >>= 3;
190 }
191
192 /*
193 * If the DACs are ok we don't need any capability check.
194 */
195 if ((mask & ~mode) == 0)
196 return 0;
197 return -EACCES;
198}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200/**
201 * generic_permission - check for access rights on a Posix-like filesystem
202 * @inode: inode to check access rights for
203 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
204 * @check_acl: optional callback to check for Posix ACLs
205 *
206 * Used to check for read/write/execute permissions on a file.
207 * We use "fsuid" for this, letting us set arbitrary permissions
208 * for filesystem access without changing the "normal" uids which
209 * are used for other things..
210 */
211int generic_permission(struct inode *inode, int mask,
212 int (*check_acl)(struct inode *inode, int mask))
213{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700214 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
216 /*
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700217 * Do the basic POSIX ACL permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 */
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700219 ret = acl_permission_check(inode, mask, check_acl);
220 if (ret != -EACCES)
221 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 /*
224 * Read/write DACs are always overridable.
225 * Executable DACs are overridable if at least one exec bit is set.
226 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200227 if (!(mask & MAY_EXEC) || execute_ok(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 if (capable(CAP_DAC_OVERRIDE))
229 return 0;
230
231 /*
232 * Searching includes executable on directories, else just read.
233 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600234 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
236 if (capable(CAP_DAC_READ_SEARCH))
237 return 0;
238
239 return -EACCES;
240}
241
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200242/**
243 * inode_permission - check for access rights to a given inode
244 * @inode: inode to check permission on
245 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
246 *
247 * Used to check for read/write/execute permissions on an inode.
248 * We use "fsuid" for this, letting us set arbitrary permissions
249 * for filesystem access without changing the "normal" uids which
250 * are used for other things.
251 */
Al Virof419a2e2008-07-22 00:07:17 -0400252int inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
Al Viroe6305c42008-07-15 21:03:57 -0400254 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 if (mask & MAY_WRITE) {
Miklos Szeredi22590e42007-10-16 23:27:08 -0700257 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 /*
260 * Nobody gets write access to a read-only fs.
261 */
262 if (IS_RDONLY(inode) &&
263 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
264 return -EROFS;
265
266 /*
267 * Nobody gets write access to an immutable file.
268 */
269 if (IS_IMMUTABLE(inode))
270 return -EACCES;
271 }
272
Al Viroacfa4382008-12-04 10:06:33 -0500273 if (inode->i_op->permission)
Al Virob77b0642008-07-17 09:37:02 -0400274 retval = inode->i_op->permission(inode, mask);
Miklos Szeredif696a362008-07-31 13:41:58 +0200275 else
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700276 retval = generic_permission(inode, mask, inode->i_op->check_acl);
Miklos Szeredif696a362008-07-31 13:41:58 +0200277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (retval)
279 return retval;
280
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700281 retval = devcgroup_inode_permission(inode, mask);
282 if (retval)
283 return retval;
284
Eric Parisd09ca732010-07-23 11:43:57 -0400285 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800288/**
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800289 * file_permission - check for additional access rights to a given file
290 * @file: file to check access rights for
291 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
292 *
293 * Used to check for read/write/execute permissions on an already opened
294 * file.
295 *
296 * Note:
297 * Do not use this function in new code. All access checks should
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200298 * be done using inode_permission().
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800299 */
300int file_permission(struct file *file, int mask)
301{
Al Virof419a2e2008-07-22 00:07:17 -0400302 return inode_permission(file->f_path.dentry->d_inode, mask);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800303}
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305/*
306 * get_write_access() gets write permission for a file.
307 * put_write_access() releases this write permission.
308 * This is used for regular files.
309 * We cannot support write (and maybe mmap read-write shared) accesses and
310 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
311 * can have the following values:
312 * 0: no writers, no VM_DENYWRITE mappings
313 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
314 * > 0: (i_writecount) users are writing to the file.
315 *
316 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
317 * except for the cases where we don't hold i_writecount yet. Then we need to
318 * use {get,deny}_write_access() - these functions check the sign and refuse
319 * to do the change if sign is wrong. Exclusion between them is provided by
320 * the inode->i_lock spinlock.
321 */
322
323int get_write_access(struct inode * inode)
324{
325 spin_lock(&inode->i_lock);
326 if (atomic_read(&inode->i_writecount) < 0) {
327 spin_unlock(&inode->i_lock);
328 return -ETXTBSY;
329 }
330 atomic_inc(&inode->i_writecount);
331 spin_unlock(&inode->i_lock);
332
333 return 0;
334}
335
336int deny_write_access(struct file * file)
337{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800338 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340 spin_lock(&inode->i_lock);
341 if (atomic_read(&inode->i_writecount) > 0) {
342 spin_unlock(&inode->i_lock);
343 return -ETXTBSY;
344 }
345 atomic_dec(&inode->i_writecount);
346 spin_unlock(&inode->i_lock);
347
348 return 0;
349}
350
Jan Blunck1d957f92008-02-14 19:34:35 -0800351/**
Jan Blunck5dd784d2008-02-14 19:34:38 -0800352 * path_get - get a reference to a path
353 * @path: path to get the reference to
354 *
355 * Given a path increment the reference count to the dentry and the vfsmount.
356 */
357void path_get(struct path *path)
358{
359 mntget(path->mnt);
360 dget(path->dentry);
361}
362EXPORT_SYMBOL(path_get);
363
364/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800365 * path_put - put a reference to a path
366 * @path: path to put the reference to
367 *
368 * Given a path decrement the reference count to the dentry and the vfsmount.
369 */
370void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Jan Blunck1d957f92008-02-14 19:34:35 -0800372 dput(path->dentry);
373 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
Jan Blunck1d957f92008-02-14 19:34:35 -0800375EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Trond Myklebust834f2a42005-10-18 14:20:16 -0700377/**
378 * release_open_intent - free up open intent resources
379 * @nd: pointer to nameidata
380 */
381void release_open_intent(struct nameidata *nd)
382{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800383 if (nd->intent.open.file->f_path.dentry == NULL)
Trond Myklebust834f2a42005-10-18 14:20:16 -0700384 put_filp(nd->intent.open.file);
385 else
386 fput(nd->intent.open.file);
387}
388
Ian Kentbcdc5e02006-09-27 01:50:44 -0700389static inline struct dentry *
390do_revalidate(struct dentry *dentry, struct nameidata *nd)
391{
392 int status = dentry->d_op->d_revalidate(dentry, nd);
393 if (unlikely(status <= 0)) {
394 /*
395 * The dentry failed validation.
396 * If d_revalidate returned 0 attempt to invalidate
397 * the dentry otherwise d_revalidate is asking us
398 * to return a fail status.
399 */
400 if (!status) {
401 if (!d_invalidate(dentry)) {
402 dput(dentry);
403 dentry = NULL;
404 }
405 } else {
406 dput(dentry);
407 dentry = ERR_PTR(status);
408 }
409 }
410 return dentry;
411}
412
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413/*
Jeff Layton39159de2009-12-07 12:01:50 -0500414 * force_reval_path - force revalidation of a dentry
415 *
416 * In some situations the path walking code will trust dentries without
417 * revalidating them. This causes problems for filesystems that depend on
418 * d_revalidate to handle file opens (e.g. NFSv4). When FS_REVAL_DOT is set
419 * (which indicates that it's possible for the dentry to go stale), force
420 * a d_revalidate call before proceeding.
421 *
422 * Returns 0 if the revalidation was successful. If the revalidation fails,
423 * either return the error returned by d_revalidate or -ESTALE if the
424 * revalidation it just returned 0. If d_revalidate returns 0, we attempt to
425 * invalidate the dentry. It's up to the caller to handle putting references
426 * to the path if necessary.
427 */
428static int
429force_reval_path(struct path *path, struct nameidata *nd)
430{
431 int status;
432 struct dentry *dentry = path->dentry;
433
434 /*
435 * only check on filesystems where it's possible for the dentry to
436 * become stale. It's assumed that if this flag is set then the
437 * d_revalidate op will also be defined.
438 */
439 if (!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT))
440 return 0;
441
442 status = dentry->d_op->d_revalidate(dentry, nd);
443 if (status > 0)
444 return 0;
445
446 if (!status) {
447 d_invalidate(dentry);
448 status = -ESTALE;
449 }
450 return status;
451}
452
453/*
Al Virob75b5082009-12-16 01:01:38 -0500454 * Short-cut version of permission(), for calling on directories
455 * during pathname resolution. Combines parts of permission()
456 * and generic_permission(), and tests ONLY for MAY_EXEC permission.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 *
458 * If appropriate, check DAC only. If not appropriate, or
Al Virob75b5082009-12-16 01:01:38 -0500459 * short-cut DAC fails, then call ->permission() to do more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 * complete permission check.
461 */
Al Virob75b5082009-12-16 01:01:38 -0500462static int exec_permission(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700464 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700466 if (inode->i_op->permission) {
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700467 ret = inode->i_op->permission(inode, MAY_EXEC);
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700468 if (!ret)
469 goto ok;
470 return ret;
471 }
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700472 ret = acl_permission_check(inode, MAY_EXEC, inode->i_op->check_acl);
473 if (!ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 goto ok;
475
Linus Torvaldsf1ac9f62009-08-28 10:53:56 -0700476 if (capable(CAP_DAC_OVERRIDE) || capable(CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 goto ok;
478
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700479 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480ok:
Al Virob77b0642008-07-17 09:37:02 -0400481 return security_inode_permission(inode, MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
Al Viro2a737872009-04-07 11:49:53 -0400484static __always_inline void set_root(struct nameidata *nd)
485{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200486 if (!nd->root.mnt)
487 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400488}
489
Al Viro6de88d72009-08-09 01:41:57 +0400490static int link_path_walk(const char *, struct nameidata *);
491
Arjan van de Venf1662352006-01-14 13:21:31 -0800492static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 if (IS_ERR(link))
495 goto fail;
496
497 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400498 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800499 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400500 nd->path = nd->root;
501 path_get(&nd->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 }
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100503
Al Virodef4af32009-12-26 08:37:05 -0500504 return link_path_walk(link, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800506 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return PTR_ERR(link);
508}
509
Jan Blunck1d957f92008-02-14 19:34:35 -0800510static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700511{
512 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800513 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700514 mntput(path->mnt);
515}
516
517static inline void path_to_nameidata(struct path *path, struct nameidata *nd)
518{
Jan Blunck4ac91372008-02-14 19:34:32 -0800519 dput(nd->path.dentry);
Huang Shijie9a229682010-04-02 17:37:13 +0800520 if (nd->path.mnt != path->mnt) {
Jan Blunck4ac91372008-02-14 19:34:32 -0800521 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800522 nd->path.mnt = path->mnt;
523 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800524 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700525}
526
Al Virodef4af32009-12-26 08:37:05 -0500527static __always_inline int
528__do_follow_link(struct path *path, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800529{
530 int error;
Ian Kent051d3812006-03-27 01:14:53 -0800531 struct dentry *dentry = path->dentry;
532
533 touch_atime(path->mnt, dentry);
534 nd_set_link(nd, NULL);
535
Jan Blunck4ac91372008-02-14 19:34:32 -0800536 if (path->mnt != nd->path.mnt) {
Ian Kent051d3812006-03-27 01:14:53 -0800537 path_to_nameidata(path, nd);
538 dget(dentry);
539 }
540 mntget(path->mnt);
Al Viro86acdca12009-12-22 23:45:11 -0500541 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500542 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
543 error = PTR_ERR(*p);
544 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800545 char *s = nd_get_link(nd);
546 error = 0;
547 if (s)
548 error = __vfs_follow_link(nd, s);
Jeff Layton39159de2009-12-07 12:01:50 -0500549 else if (nd->last_type == LAST_BIND) {
550 error = force_reval_path(&nd->path, nd);
551 if (error)
552 path_put(&nd->path);
553 }
Ian Kent051d3812006-03-27 01:14:53 -0800554 }
Ian Kent051d3812006-03-27 01:14:53 -0800555 return error;
556}
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558/*
559 * This limits recursive symlink follows to 8, while
560 * limiting consecutive symlinks to 40.
561 *
562 * Without that kind of total limit, nasty chains of consecutive
563 * symlinks can cause almost arbitrarily long lookups.
564 */
Al Viro90ebe562005-06-06 13:35:58 -0700565static inline int do_follow_link(struct path *path, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566{
Al Virodef4af32009-12-26 08:37:05 -0500567 void *cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 int err = -ELOOP;
569 if (current->link_count >= MAX_NESTED_LINKS)
570 goto loop;
571 if (current->total_link_count >= 40)
572 goto loop;
573 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
574 cond_resched();
Al Viro90ebe562005-06-06 13:35:58 -0700575 err = security_inode_follow_link(path->dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (err)
577 goto loop;
578 current->link_count++;
579 current->total_link_count++;
580 nd->depth++;
Al Virodef4af32009-12-26 08:37:05 -0500581 err = __do_follow_link(path, nd, &cookie);
582 if (!IS_ERR(cookie) && path->dentry->d_inode->i_op->put_link)
583 path->dentry->d_inode->i_op->put_link(path->dentry, nd, cookie);
Al Viro258fa992009-08-09 01:32:02 +0400584 path_put(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 current->link_count--;
586 nd->depth--;
587 return err;
588loop:
Jan Blunck1d957f92008-02-14 19:34:35 -0800589 path_put_conditional(path, nd);
590 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 return err;
592}
593
Al Virobab77eb2009-04-18 03:26:48 -0400594int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 struct vfsmount *parent;
597 struct dentry *mountpoint;
598 spin_lock(&vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400599 parent = path->mnt->mnt_parent;
600 if (parent == path->mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 spin_unlock(&vfsmount_lock);
602 return 0;
603 }
604 mntget(parent);
Al Virobab77eb2009-04-18 03:26:48 -0400605 mountpoint = dget(path->mnt->mnt_mountpoint);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 spin_unlock(&vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400607 dput(path->dentry);
608 path->dentry = mountpoint;
609 mntput(path->mnt);
610 path->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 return 1;
612}
613
614/* no need for dcache_lock, as serialization is taken care in
615 * namespace.c
616 */
Al Viro463ffb22005-06-06 13:36:05 -0700617static int __follow_mount(struct path *path)
618{
619 int res = 0;
620 while (d_mountpoint(path->dentry)) {
Al Viro1c755af2009-04-18 14:06:57 -0400621 struct vfsmount *mounted = lookup_mnt(path);
Al Viro463ffb22005-06-06 13:36:05 -0700622 if (!mounted)
623 break;
624 dput(path->dentry);
625 if (res)
626 mntput(path->mnt);
627 path->mnt = mounted;
628 path->dentry = dget(mounted->mnt_root);
629 res = 1;
630 }
631 return res;
632}
633
Al Viro79ed0222009-04-18 13:59:41 -0400634static void follow_mount(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Al Viro79ed0222009-04-18 13:59:41 -0400636 while (d_mountpoint(path->dentry)) {
Al Viro1c755af2009-04-18 14:06:57 -0400637 struct vfsmount *mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 if (!mounted)
639 break;
Al Viro79ed0222009-04-18 13:59:41 -0400640 dput(path->dentry);
641 mntput(path->mnt);
642 path->mnt = mounted;
643 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
647/* no need for dcache_lock, as serialization is taken care in
648 * namespace.c
649 */
Al Viro9393bd02009-04-18 13:58:15 -0400650int follow_down(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
652 struct vfsmount *mounted;
653
Al Viro1c755af2009-04-18 14:06:57 -0400654 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400656 dput(path->dentry);
657 mntput(path->mnt);
658 path->mnt = mounted;
659 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return 1;
661 }
662 return 0;
663}
664
Arjan van de Venf1662352006-01-14 13:21:31 -0800665static __always_inline void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Al Viro2a737872009-04-07 11:49:53 -0400667 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -0700668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -0800670 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Al Viro2a737872009-04-07 11:49:53 -0400672 if (nd->path.dentry == nd->root.dentry &&
673 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 break;
675 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800676 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -0500677 /* rare case of legitimate dget_parent()... */
678 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 dput(old);
680 break;
681 }
Al Viro3088dd72010-01-30 15:47:29 -0500682 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 }
Al Viro79ed0222009-04-18 13:59:41 -0400685 follow_mount(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688/*
689 * It's more convoluted than I'd like it to be, but... it's still fairly
690 * small and for now I'd prefer to have fast path as straight as possible.
691 * It _is_ time-critical.
692 */
693static int do_lookup(struct nameidata *nd, struct qstr *name,
694 struct path *path)
695{
Jan Blunck4ac91372008-02-14 19:34:32 -0800696 struct vfsmount *mnt = nd->path.mnt;
Al Viro6e6b1bd2009-08-13 23:38:37 +0400697 struct dentry *dentry, *parent;
698 struct inode *dir;
Al Viro3cac2602009-08-13 18:27:43 +0400699 /*
700 * See if the low-level filesystem might want
701 * to use its own hash..
702 */
703 if (nd->path.dentry->d_op && nd->path.dentry->d_op->d_hash) {
704 int err = nd->path.dentry->d_op->d_hash(nd->path.dentry, name);
705 if (err < 0)
706 return err;
707 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Al Viro3cac2602009-08-13 18:27:43 +0400709 dentry = __d_lookup(nd->path.dentry, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (!dentry)
711 goto need_lookup;
Nick Piggin2e2e88e2010-08-18 04:37:30 +1000712found:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 if (dentry->d_op && dentry->d_op->d_revalidate)
714 goto need_revalidate;
715done:
716 path->mnt = mnt;
717 path->dentry = dentry;
Al Viro634ee702005-06-06 13:36:13 -0700718 __follow_mount(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 return 0;
720
721need_lookup:
Al Viro6e6b1bd2009-08-13 23:38:37 +0400722 parent = nd->path.dentry;
723 dir = parent->d_inode;
724
725 mutex_lock(&dir->i_mutex);
726 /*
727 * First re-do the cached lookup just in case it was created
728 * while we waited for the directory semaphore..
729 *
730 * FIXME! This could use version numbering or similar to
731 * avoid unnecessary cache lookups.
732 *
733 * The "dcache_lock" is purely to protect the RCU list walker
734 * from concurrent renames at this point (we mustn't get false
735 * negatives from the RCU list walk here, unlike the optimistic
736 * fast walk).
737 *
738 * so doing d_lookup() (with seqlock), instead of lockfree __d_lookup
739 */
740 dentry = d_lookup(parent, name);
741 if (!dentry) {
742 struct dentry *new;
743
744 /* Don't create child dentry for a dead directory. */
745 dentry = ERR_PTR(-ENOENT);
746 if (IS_DEADDIR(dir))
747 goto out_unlock;
748
749 new = d_alloc(parent, name);
750 dentry = ERR_PTR(-ENOMEM);
751 if (new) {
752 dentry = dir->i_op->lookup(dir, new, nd);
753 if (dentry)
754 dput(new);
755 else
756 dentry = new;
757 }
758out_unlock:
759 mutex_unlock(&dir->i_mutex);
760 if (IS_ERR(dentry))
761 goto fail;
762 goto done;
763 }
764
765 /*
766 * Uhhuh! Nasty case: the cache was re-populated while
767 * we waited on the semaphore. Need to revalidate.
768 */
769 mutex_unlock(&dir->i_mutex);
Nick Piggin2e2e88e2010-08-18 04:37:30 +1000770 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772need_revalidate:
Ian Kentbcdc5e02006-09-27 01:50:44 -0700773 dentry = do_revalidate(dentry, nd);
774 if (!dentry)
775 goto need_lookup;
776 if (IS_ERR(dentry))
777 goto fail;
778 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
780fail:
781 return PTR_ERR(dentry);
782}
783
784/*
Al Viroac278a92010-02-16 18:09:36 +0000785 * This is a temporary kludge to deal with "automount" symlinks; proper
786 * solution is to trigger them on follow_mount(), so that do_lookup()
787 * would DTRT. To be killed before 2.6.34-final.
788 */
789static inline int follow_on_final(struct inode *inode, unsigned lookup_flags)
790{
791 return inode && unlikely(inode->i_op->follow_link) &&
792 ((lookup_flags & LOOKUP_FOLLOW) || S_ISDIR(inode->i_mode));
793}
794
795/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +0100797 * This is the basic name resolution function, turning a pathname into
798 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 *
Prasanna Medaea3834d2005-04-29 16:00:17 +0100800 * Returns 0 and nd will have valid dentry and mnt on success.
801 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 */
Al Viro6de88d72009-08-09 01:41:57 +0400803static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
805 struct path next;
806 struct inode *inode;
807 int err;
808 unsigned int lookup_flags = nd->flags;
809
810 while (*name=='/')
811 name++;
812 if (!*name)
813 goto return_reval;
814
Jan Blunck4ac91372008-02-14 19:34:32 -0800815 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 if (nd->depth)
Trond Myklebustf55eab82006-02-04 23:28:01 -0800817 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 /* At this point we know we have a real path component. */
820 for(;;) {
821 unsigned long hash;
822 struct qstr this;
823 unsigned int c;
824
Trond Myklebustcdce5d62005-10-18 14:20:18 -0700825 nd->flags |= LOOKUP_CONTINUE;
Al Virob75b5082009-12-16 01:01:38 -0500826 err = exec_permission(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (err)
828 break;
829
830 this.name = name;
831 c = *(const unsigned char *)name;
832
833 hash = init_name_hash();
834 do {
835 name++;
836 hash = partial_name_hash(c, hash);
837 c = *(const unsigned char *)name;
838 } while (c && (c != '/'));
839 this.len = name - (const char *) this.name;
840 this.hash = end_name_hash(hash);
841
842 /* remove trailing slashes? */
843 if (!c)
844 goto last_component;
845 while (*++name == '/');
846 if (!*name)
847 goto last_with_slashes;
848
849 /*
850 * "." and ".." are special - ".." especially so because it has
851 * to be able to know about the current root directory and
852 * parent relationships.
853 */
854 if (this.name[0] == '.') switch (this.len) {
855 default:
856 break;
857 case 2:
858 if (this.name[1] != '.')
859 break;
Al Viro58c465e2005-06-06 13:36:13 -0700860 follow_dotdot(nd);
Jan Blunck4ac91372008-02-14 19:34:32 -0800861 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 /* fallthrough */
863 case 1:
864 continue;
865 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 /* This does the actual lookups.. */
867 err = do_lookup(nd, &this, &next);
868 if (err)
869 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 err = -ENOENT;
872 inode = next.dentry->d_inode;
873 if (!inode)
874 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 if (inode->i_op->follow_link) {
Al Viro90ebe562005-06-06 13:35:58 -0700877 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 if (err)
879 goto return_err;
880 err = -ENOENT;
Jan Blunck4ac91372008-02-14 19:34:32 -0800881 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (!inode)
883 break;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700884 } else
885 path_to_nameidata(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 err = -ENOTDIR;
887 if (!inode->i_op->lookup)
888 break;
889 continue;
890 /* here ends the main loop */
891
892last_with_slashes:
893 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
894last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -0800895 /* Clear LOOKUP_CONTINUE iff it was previously unset */
896 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 if (lookup_flags & LOOKUP_PARENT)
898 goto lookup_parent;
899 if (this.name[0] == '.') switch (this.len) {
900 default:
901 break;
902 case 2:
903 if (this.name[1] != '.')
904 break;
Al Viro58c465e2005-06-06 13:36:13 -0700905 follow_dotdot(nd);
Jan Blunck4ac91372008-02-14 19:34:32 -0800906 inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 /* fallthrough */
908 case 1:
909 goto return_reval;
910 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 err = do_lookup(nd, &this, &next);
912 if (err)
913 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 inode = next.dentry->d_inode;
Al Viroac278a92010-02-16 18:09:36 +0000915 if (follow_on_final(inode, lookup_flags)) {
Al Viro90ebe562005-06-06 13:35:58 -0700916 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if (err)
918 goto return_err;
Jan Blunck4ac91372008-02-14 19:34:32 -0800919 inode = nd->path.dentry->d_inode;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700920 } else
921 path_to_nameidata(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 err = -ENOENT;
923 if (!inode)
924 break;
925 if (lookup_flags & LOOKUP_DIRECTORY) {
926 err = -ENOTDIR;
Al Viroacfa4382008-12-04 10:06:33 -0500927 if (!inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 break;
929 }
930 goto return_base;
931lookup_parent:
932 nd->last = this;
933 nd->last_type = LAST_NORM;
934 if (this.name[0] != '.')
935 goto return_base;
936 if (this.len == 1)
937 nd->last_type = LAST_DOT;
938 else if (this.len == 2 && this.name[1] == '.')
939 nd->last_type = LAST_DOTDOT;
940 else
941 goto return_base;
942return_reval:
943 /*
944 * We bypassed the ordinary revalidation routines.
945 * We may need to check the cached dentry for staleness.
946 */
Jan Blunck4ac91372008-02-14 19:34:32 -0800947 if (nd->path.dentry && nd->path.dentry->d_sb &&
948 (nd->path.dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 err = -ESTALE;
950 /* Note: we do not d_invalidate() */
Jan Blunck4ac91372008-02-14 19:34:32 -0800951 if (!nd->path.dentry->d_op->d_revalidate(
952 nd->path.dentry, nd))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 break;
954 }
955return_base:
956 return 0;
957out_dput:
Jan Blunck1d957f92008-02-14 19:34:35 -0800958 path_put_conditional(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 break;
960 }
Jan Blunck1d957f92008-02-14 19:34:35 -0800961 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962return_err:
963 return err;
964}
965
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -0800966static int path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
Al Viro6de88d72009-08-09 01:41:57 +0400968 struct path save = nd->path;
969 int result;
970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 current->total_link_count = 0;
Al Viro6de88d72009-08-09 01:41:57 +0400972
973 /* make sure the stuff we saved doesn't go away */
974 path_get(&save);
975
976 result = link_path_walk(name, nd);
977 if (result == -ESTALE) {
978 /* nd->path had been dropped */
979 current->total_link_count = 0;
980 nd->path = save;
981 path_get(&nd->path);
982 nd->flags |= LOOKUP_REVAL;
983 result = link_path_walk(name, nd);
984 }
985
986 path_put(&save);
987
988 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
990
Al Viro9b4a9b12009-04-07 11:44:16 -0400991static int path_init(int dfd, const char *name, unsigned int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992{
Prasanna Medaea3834d2005-04-29 16:00:17 +0100993 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -0800994 int fput_needed;
995 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997 nd->last_type = LAST_ROOT; /* if there are only slashes... */
998 nd->flags = flags;
999 nd->depth = 0;
Al Viro2a737872009-04-07 11:49:53 -04001000 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (*name=='/') {
Al Viro2a737872009-04-07 11:49:53 -04001003 set_root(nd);
1004 nd->path = nd->root;
1005 path_get(&nd->root);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001006 } else if (dfd == AT_FDCWD) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +02001007 get_fs_pwd(current->fs, &nd->path);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001008 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001009 struct dentry *dentry;
1010
1011 file = fget_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001012 retval = -EBADF;
1013 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001014 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001015
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001016 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001017
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001018 retval = -ENOTDIR;
1019 if (!S_ISDIR(dentry->d_inode->i_mode))
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001020 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001021
1022 retval = file_permission(file, MAY_EXEC);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001023 if (retval)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001024 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001025
Jan Blunck5dd784d2008-02-14 19:34:38 -08001026 nd->path = file->f_path;
1027 path_get(&file->f_path);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001028
1029 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001031 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001032
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001033fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001034 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001035out_fail:
1036 return retval;
1037}
1038
1039/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
1040static int do_path_lookup(int dfd, const char *name,
1041 unsigned int flags, struct nameidata *nd)
1042{
1043 int retval = path_init(dfd, name, flags, nd);
1044 if (!retval)
1045 retval = path_walk(name, nd);
1046 if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
1047 nd->path.dentry->d_inode))
1048 audit_inode(name, nd->path.dentry);
Al Viro2a737872009-04-07 11:49:53 -04001049 if (nd->root.mnt) {
1050 path_put(&nd->root);
1051 nd->root.mnt = NULL;
1052 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001053 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001056int path_lookup(const char *name, unsigned int flags,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001057 struct nameidata *nd)
1058{
1059 return do_path_lookup(AT_FDCWD, name, flags, nd);
1060}
1061
Al Virod1811462008-08-02 00:49:18 -04001062int kern_path(const char *name, unsigned int flags, struct path *path)
1063{
1064 struct nameidata nd;
1065 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1066 if (!res)
1067 *path = nd.path;
1068 return res;
1069}
1070
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001071/**
1072 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1073 * @dentry: pointer to dentry of the base directory
1074 * @mnt: pointer to vfs mount of the base directory
1075 * @name: pointer to file name
1076 * @flags: lookup flags
1077 * @nd: pointer to nameidata
1078 */
1079int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1080 const char *name, unsigned int flags,
1081 struct nameidata *nd)
1082{
1083 int retval;
1084
1085 /* same as do_path_lookup */
1086 nd->last_type = LAST_ROOT;
1087 nd->flags = flags;
1088 nd->depth = 0;
1089
Jan Blunckc8e7f442008-06-09 16:40:35 -07001090 nd->path.dentry = dentry;
1091 nd->path.mnt = mnt;
1092 path_get(&nd->path);
Al Viro5b857112009-04-07 11:53:49 -04001093 nd->root = nd->path;
1094 path_get(&nd->root);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001095
1096 retval = path_walk(name, nd);
Jan Blunck4ac91372008-02-14 19:34:32 -08001097 if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
1098 nd->path.dentry->d_inode))
1099 audit_inode(name, nd->path.dentry);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001100
Al Viro5b857112009-04-07 11:53:49 -04001101 path_put(&nd->root);
1102 nd->root.mnt = NULL;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001103
Al Viro2a737872009-04-07 11:49:53 -04001104 return retval;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001105}
1106
Christoph Hellwigeead1912007-10-16 23:25:38 -07001107static struct dentry *__lookup_hash(struct qstr *name,
1108 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109{
James Morris057f6c02007-04-26 00:12:05 -07001110 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 struct inode *inode;
1112 int err;
1113
1114 inode = base->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
1116 /*
1117 * See if the low-level filesystem might want
1118 * to use its own hash..
1119 */
1120 if (base->d_op && base->d_op->d_hash) {
1121 err = base->d_op->d_hash(base, name);
1122 dentry = ERR_PTR(err);
1123 if (err < 0)
1124 goto out;
1125 }
1126
Al Viro6e6b1bd2009-08-13 23:38:37 +04001127 dentry = __d_lookup(base, name);
1128
1129 /* lockess __d_lookup may fail due to concurrent d_move()
1130 * in some unrelated directory, so try with d_lookup
1131 */
1132 if (!dentry)
1133 dentry = d_lookup(base, name);
1134
1135 if (dentry && dentry->d_op && dentry->d_op->d_revalidate)
1136 dentry = do_revalidate(dentry, nd);
1137
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 if (!dentry) {
Miklos Szeredid70b67c2008-07-02 21:30:15 +02001139 struct dentry *new;
1140
1141 /* Don't create child dentry for a dead directory. */
1142 dentry = ERR_PTR(-ENOENT);
1143 if (IS_DEADDIR(inode))
1144 goto out;
1145
1146 new = d_alloc(base, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 dentry = ERR_PTR(-ENOMEM);
1148 if (!new)
1149 goto out;
1150 dentry = inode->i_op->lookup(inode, new, nd);
1151 if (!dentry)
1152 dentry = new;
1153 else
1154 dput(new);
1155 }
1156out:
1157 return dentry;
1158}
1159
James Morris057f6c02007-04-26 00:12:05 -07001160/*
1161 * Restricted form of lookup. Doesn't follow links, single-component only,
1162 * needs parent already locked. Doesn't follow mounts.
1163 * SMP-safe.
1164 */
Adrian Bunka244e162006-03-31 02:32:11 -08001165static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166{
Christoph Hellwigeead1912007-10-16 23:25:38 -07001167 int err;
1168
Al Virob75b5082009-12-16 01:01:38 -05001169 err = exec_permission(nd->path.dentry->d_inode);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001170 if (err)
1171 return ERR_PTR(err);
Jan Blunck4ac91372008-02-14 19:34:32 -08001172 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173}
1174
Christoph Hellwigeead1912007-10-16 23:25:38 -07001175static int __lookup_one_len(const char *name, struct qstr *this,
1176 struct dentry *base, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177{
1178 unsigned long hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 unsigned int c;
1180
James Morris057f6c02007-04-26 00:12:05 -07001181 this->name = name;
1182 this->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (!len)
James Morris057f6c02007-04-26 00:12:05 -07001184 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 hash = init_name_hash();
1187 while (len--) {
1188 c = *(const unsigned char *)name++;
1189 if (c == '/' || c == '\0')
James Morris057f6c02007-04-26 00:12:05 -07001190 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 hash = partial_name_hash(c, hash);
1192 }
James Morris057f6c02007-04-26 00:12:05 -07001193 this->hash = end_name_hash(hash);
1194 return 0;
1195}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Christoph Hellwigeead1912007-10-16 23:25:38 -07001197/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001198 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001199 * @name: pathname component to lookup
1200 * @base: base directory to lookup from
1201 * @len: maximum length @len should be interpreted to
1202 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001203 * Note that this routine is purely a helper for filesystem usage and should
1204 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001205 * nameidata argument is passed to the filesystem methods and a filesystem
1206 * using this helper needs to be prepared for that.
1207 */
James Morris057f6c02007-04-26 00:12:05 -07001208struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1209{
1210 int err;
1211 struct qstr this;
1212
David Woodhouse2f9092e2009-04-20 23:18:37 +01001213 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1214
James Morris057f6c02007-04-26 00:12:05 -07001215 err = __lookup_one_len(name, &this, base, len);
1216 if (err)
1217 return ERR_PTR(err);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001218
Al Virob75b5082009-12-16 01:01:38 -05001219 err = exec_permission(base->d_inode);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001220 if (err)
1221 return ERR_PTR(err);
Christoph Hellwig49705b72005-11-08 21:35:06 -08001222 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001223}
1224
Al Viro2d8f3032008-07-22 09:59:21 -04001225int user_path_at(int dfd, const char __user *name, unsigned flags,
1226 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227{
Al Viro2d8f3032008-07-22 09:59:21 -04001228 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 char *tmp = getname(name);
1230 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001232
1233 BUG_ON(flags & LOOKUP_PARENT);
1234
1235 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001237 if (!err)
1238 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 }
1240 return err;
1241}
1242
Al Viro2ad94ae2008-07-21 09:32:51 -04001243static int user_path_parent(int dfd, const char __user *path,
1244 struct nameidata *nd, char **name)
1245{
1246 char *s = getname(path);
1247 int error;
1248
1249 if (IS_ERR(s))
1250 return PTR_ERR(s);
1251
1252 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1253 if (error)
1254 putname(s);
1255 else
1256 *name = s;
1257
1258 return error;
1259}
1260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261/*
1262 * It's inline, so penalty for filesystems that don't use sticky bit is
1263 * minimal.
1264 */
1265static inline int check_sticky(struct inode *dir, struct inode *inode)
1266{
David Howellsda9592e2008-11-14 10:39:05 +11001267 uid_t fsuid = current_fsuid();
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 if (!(dir->i_mode & S_ISVTX))
1270 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001271 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001273 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 return 0;
1275 return !capable(CAP_FOWNER);
1276}
1277
1278/*
1279 * Check whether we can remove a link victim from directory dir, check
1280 * whether the type of victim is right.
1281 * 1. We can't do it if dir is read-only (done in permission())
1282 * 2. We should have write and exec permissions on dir
1283 * 3. We can't remove anything from append-only dir
1284 * 4. We can't do anything with immutable dir (done in permission())
1285 * 5. If the sticky bit on dir is set we should either
1286 * a. be owner of dir, or
1287 * b. be owner of victim, or
1288 * c. have CAP_FOWNER capability
1289 * 6. If the victim is append-only or immutable we can't do antyhing with
1290 * links pointing to it.
1291 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1292 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1293 * 9. We can't remove a root or mountpoint.
1294 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1295 * nfs_async_unlink().
1296 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001297static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298{
1299 int error;
1300
1301 if (!victim->d_inode)
1302 return -ENOENT;
1303
1304 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001305 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306
Al Virof419a2e2008-07-22 00:07:17 -04001307 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308 if (error)
1309 return error;
1310 if (IS_APPEND(dir))
1311 return -EPERM;
1312 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001313 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 return -EPERM;
1315 if (isdir) {
1316 if (!S_ISDIR(victim->d_inode->i_mode))
1317 return -ENOTDIR;
1318 if (IS_ROOT(victim))
1319 return -EBUSY;
1320 } else if (S_ISDIR(victim->d_inode->i_mode))
1321 return -EISDIR;
1322 if (IS_DEADDIR(dir))
1323 return -ENOENT;
1324 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1325 return -EBUSY;
1326 return 0;
1327}
1328
1329/* Check whether we can create an object with dentry child in directory
1330 * dir.
1331 * 1. We can't do it if child already exists (open has special treatment for
1332 * this case, but since we are inlined it's OK)
1333 * 2. We can't do it if dir is read-only (done in permission())
1334 * 3. We should have write and exec permissions on dir
1335 * 4. We can't do it if dir is immutable (done in permission())
1336 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001337static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338{
1339 if (child->d_inode)
1340 return -EEXIST;
1341 if (IS_DEADDIR(dir))
1342 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001343 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344}
1345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346/*
1347 * p1 and p2 should be directories on the same fs.
1348 */
1349struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1350{
1351 struct dentry *p;
1352
1353 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001354 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return NULL;
1356 }
1357
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001358 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001360 p = d_ancestor(p2, p1);
1361 if (p) {
1362 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1363 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1364 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 }
1366
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001367 p = d_ancestor(p1, p2);
1368 if (p) {
1369 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1370 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1371 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 }
1373
Ingo Molnarf2eace22006-07-03 00:25:05 -07001374 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1375 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 return NULL;
1377}
1378
1379void unlock_rename(struct dentry *p1, struct dentry *p2)
1380{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001381 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001383 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001384 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 }
1386}
1387
1388int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1389 struct nameidata *nd)
1390{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001391 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
1393 if (error)
1394 return error;
1395
Al Viroacfa4382008-12-04 10:06:33 -05001396 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 return -EACCES; /* shouldn't it be ENOSYS? */
1398 mode &= S_IALLUGO;
1399 mode |= S_IFREG;
1400 error = security_inode_create(dir, dentry, mode);
1401 if (error)
1402 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001404 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001405 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 return error;
1407}
1408
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001409int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001411 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 struct inode *inode = dentry->d_inode;
1413 int error;
1414
1415 if (!inode)
1416 return -ENOENT;
1417
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001418 switch (inode->i_mode & S_IFMT) {
1419 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001421 case S_IFDIR:
1422 if (acc_mode & MAY_WRITE)
1423 return -EISDIR;
1424 break;
1425 case S_IFBLK:
1426 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001427 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001429 /*FALLTHRU*/
1430 case S_IFIFO:
1431 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001433 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001434 }
Dave Hansenb41572e2007-10-16 23:31:14 -07001435
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001436 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07001437 if (error)
1438 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05001439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 /*
1441 * An append-only file must be opened in append mode for writing.
1442 */
1443 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05001444 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05001445 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05001447 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
1449
1450 /* O_NOATIME can only be set by the owner or superuser */
Al Viro7715b522009-12-16 03:54:00 -05001451 if (flag & O_NOATIME && !is_owner_or_cap(inode))
1452 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 /*
1455 * Ensure there are no outstanding leases on the file.
1456 */
Al Virob65a9cf2009-12-16 06:27:40 -05001457 return break_lease(inode, flag);
Al Viro7715b522009-12-16 03:54:00 -05001458}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Al Viro7715b522009-12-16 03:54:00 -05001460static int handle_truncate(struct path *path)
1461{
1462 struct inode *inode = path->dentry->d_inode;
1463 int error = get_write_access(inode);
1464 if (error)
1465 return error;
1466 /*
1467 * Refuse to truncate files with mandatory locks held on them.
1468 */
1469 error = locks_verify_locked(inode);
1470 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09001471 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05001472 if (!error) {
1473 error = do_truncate(path->dentry, 0,
1474 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
1475 NULL);
1476 }
1477 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04001478 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479}
1480
Dave Hansend57999e2008-02-15 14:37:27 -08001481/*
1482 * Be careful about ever adding any more callers of this
1483 * function. Its flags must be in the namei format, not
1484 * what get passed to sys_open().
1485 */
1486static int __open_namei_create(struct nameidata *nd, struct path *path,
Al Viro8737c932009-12-24 06:47:55 -05001487 int open_flag, int mode)
Dave Hansenaab520e2006-09-30 23:29:02 -07001488{
1489 int error;
Jan Blunck4ac91372008-02-14 19:34:32 -08001490 struct dentry *dir = nd->path.dentry;
Dave Hansenaab520e2006-09-30 23:29:02 -07001491
1492 if (!IS_POSIXACL(dir->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04001493 mode &= ~current_umask();
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001494 error = security_path_mknod(&nd->path, path->dentry, mode, 0);
1495 if (error)
1496 goto out_unlock;
Dave Hansenaab520e2006-09-30 23:29:02 -07001497 error = vfs_create(dir->d_inode, path->dentry, mode, nd);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001498out_unlock:
Dave Hansenaab520e2006-09-30 23:29:02 -07001499 mutex_unlock(&dir->d_inode->i_mutex);
Jan Blunck4ac91372008-02-14 19:34:32 -08001500 dput(nd->path.dentry);
1501 nd->path.dentry = path->dentry;
Dave Hansenaab520e2006-09-30 23:29:02 -07001502 if (error)
1503 return error;
1504 /* Don't check for write permission, don't truncate */
Al Viro8737c932009-12-24 06:47:55 -05001505 return may_open(&nd->path, 0, open_flag & ~O_TRUNC);
Dave Hansenaab520e2006-09-30 23:29:02 -07001506}
1507
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508/*
Dave Hansend57999e2008-02-15 14:37:27 -08001509 * Note that while the flag value (low two bits) for sys_open means:
1510 * 00 - read-only
1511 * 01 - write-only
1512 * 10 - read-write
1513 * 11 - special
1514 * it is changed into
1515 * 00 - no permissions needed
1516 * 01 - read-permission
1517 * 10 - write-permission
1518 * 11 - read-write
1519 * for the internal routines (ie open_namei()/follow_link() etc)
1520 * This is more logical, and also allows the 00 "no perm needed"
1521 * to be used for symlinks (where the permissions are checked
1522 * later).
1523 *
1524*/
1525static inline int open_to_namei_flags(int flag)
1526{
1527 if ((flag+1) & O_ACCMODE)
1528 flag++;
1529 return flag;
1530}
1531
Al Viro7715b522009-12-16 03:54:00 -05001532static int open_will_truncate(int flag, struct inode *inode)
Dave Hansen4a3fd212008-02-15 14:37:48 -08001533{
1534 /*
1535 * We'll never write to the fs underlying
1536 * a device file.
1537 */
1538 if (special_file(inode->i_mode))
1539 return 0;
1540 return (flag & O_TRUNC);
1541}
1542
Al Viro648fa862009-12-24 01:26:48 -05001543static struct file *finish_open(struct nameidata *nd,
Al Viro9a661792009-12-24 06:49:47 -05001544 int open_flag, int acc_mode)
Al Viro648fa862009-12-24 01:26:48 -05001545{
1546 struct file *filp;
1547 int will_truncate;
1548 int error;
1549
Al Viro9a661792009-12-24 06:49:47 -05001550 will_truncate = open_will_truncate(open_flag, nd->path.dentry->d_inode);
Al Viro648fa862009-12-24 01:26:48 -05001551 if (will_truncate) {
1552 error = mnt_want_write(nd->path.mnt);
1553 if (error)
1554 goto exit;
1555 }
1556 error = may_open(&nd->path, acc_mode, open_flag);
1557 if (error) {
1558 if (will_truncate)
1559 mnt_drop_write(nd->path.mnt);
1560 goto exit;
1561 }
1562 filp = nameidata_to_filp(nd);
1563 if (!IS_ERR(filp)) {
1564 error = ima_file_check(filp, acc_mode);
1565 if (error) {
1566 fput(filp);
1567 filp = ERR_PTR(error);
1568 }
1569 }
1570 if (!IS_ERR(filp)) {
Al Viro648fa862009-12-24 01:26:48 -05001571 if (will_truncate) {
1572 error = handle_truncate(&nd->path);
1573 if (error) {
1574 fput(filp);
1575 filp = ERR_PTR(error);
1576 }
1577 }
1578 }
1579 /*
1580 * It is now safe to drop the mnt write
1581 * because the filp has had a write taken
1582 * on its behalf.
1583 */
1584 if (will_truncate)
1585 mnt_drop_write(nd->path.mnt);
1586 return filp;
1587
1588exit:
1589 if (!IS_ERR(nd->intent.open.file))
1590 release_open_intent(nd);
1591 path_put(&nd->path);
1592 return ERR_PTR(error);
1593}
1594
Al Virofb1cc552009-12-24 01:58:28 -05001595static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viro5b369df2009-12-24 06:51:13 -05001596 int open_flag, int acc_mode,
Al Viro3e297b62010-03-26 12:40:13 -04001597 int mode, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05001598{
Al Viroa1e28032009-12-24 02:12:06 -05001599 struct dentry *dir = nd->path.dentry;
Al Virofb1cc552009-12-24 01:58:28 -05001600 struct file *filp;
Al Viro1f36f772009-12-26 10:56:19 -05001601 int error = -EISDIR;
Al Virofb1cc552009-12-24 01:58:28 -05001602
Al Viro1f36f772009-12-26 10:56:19 -05001603 switch (nd->last_type) {
1604 case LAST_DOTDOT:
1605 follow_dotdot(nd);
1606 dir = nd->path.dentry;
Neil Brown176306f2010-05-24 16:57:56 +10001607 case LAST_DOT:
Al Viro1f36f772009-12-26 10:56:19 -05001608 if (nd->path.mnt->mnt_sb->s_type->fs_flags & FS_REVAL_DOT) {
1609 if (!dir->d_op->d_revalidate(dir, nd)) {
1610 error = -ESTALE;
1611 goto exit;
1612 }
1613 }
1614 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05001615 case LAST_ROOT:
1616 if (open_flag & O_CREAT)
1617 goto exit;
1618 /* fallthrough */
1619 case LAST_BIND:
1620 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05001621 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05001622 }
Al Viro67ee3ad2009-12-26 07:01:01 -05001623
Al Viro1f36f772009-12-26 10:56:19 -05001624 /* trailing slashes? */
1625 if (nd->last.name[nd->last.len]) {
1626 if (open_flag & O_CREAT)
1627 goto exit;
Jan Kara002baee2010-05-13 12:52:57 +02001628 nd->flags |= LOOKUP_DIRECTORY | LOOKUP_FOLLOW;
Al Viro1f36f772009-12-26 10:56:19 -05001629 }
Al Viroa2c36b42009-12-24 03:39:50 -05001630
Al Viro1f36f772009-12-26 10:56:19 -05001631 /* just plain open? */
1632 if (!(open_flag & O_CREAT)) {
1633 error = do_lookup(nd, &nd->last, path);
1634 if (error)
1635 goto exit;
1636 error = -ENOENT;
1637 if (!path->dentry->d_inode)
1638 goto exit_dput;
1639 if (path->dentry->d_inode->i_op->follow_link)
1640 return NULL;
1641 error = -ENOTDIR;
Al Viro3e297b62010-03-26 12:40:13 -04001642 if (nd->flags & LOOKUP_DIRECTORY) {
1643 if (!path->dentry->d_inode->i_op->lookup)
1644 goto exit_dput;
1645 }
Al Viro1f36f772009-12-26 10:56:19 -05001646 path_to_nameidata(path, nd);
1647 audit_inode(pathname, nd->path.dentry);
1648 goto ok;
1649 }
1650
1651 /* OK, it's O_CREAT */
Al Viroa1e28032009-12-24 02:12:06 -05001652 mutex_lock(&dir->d_inode->i_mutex);
1653
1654 path->dentry = lookup_hash(nd);
1655 path->mnt = nd->path.mnt;
1656
Al Virofb1cc552009-12-24 01:58:28 -05001657 error = PTR_ERR(path->dentry);
1658 if (IS_ERR(path->dentry)) {
1659 mutex_unlock(&dir->d_inode->i_mutex);
1660 goto exit;
1661 }
1662
1663 if (IS_ERR(nd->intent.open.file)) {
1664 error = PTR_ERR(nd->intent.open.file);
1665 goto exit_mutex_unlock;
1666 }
1667
1668 /* Negative dentry, just create the file */
1669 if (!path->dentry->d_inode) {
1670 /*
1671 * This write is needed to ensure that a
1672 * ro->rw transition does not occur between
1673 * the time when the file is created and when
1674 * a permanent write count is taken through
1675 * the 'struct file' in nameidata_to_filp().
1676 */
1677 error = mnt_want_write(nd->path.mnt);
1678 if (error)
1679 goto exit_mutex_unlock;
1680 error = __open_namei_create(nd, path, open_flag, mode);
1681 if (error) {
1682 mnt_drop_write(nd->path.mnt);
1683 goto exit;
1684 }
1685 filp = nameidata_to_filp(nd);
1686 mnt_drop_write(nd->path.mnt);
Al Virofb1cc552009-12-24 01:58:28 -05001687 if (!IS_ERR(filp)) {
1688 error = ima_file_check(filp, acc_mode);
1689 if (error) {
1690 fput(filp);
1691 filp = ERR_PTR(error);
1692 }
1693 }
1694 return filp;
1695 }
1696
1697 /*
1698 * It already exists.
1699 */
1700 mutex_unlock(&dir->d_inode->i_mutex);
1701 audit_inode(pathname, path->dentry);
1702
1703 error = -EEXIST;
Al Viro5b369df2009-12-24 06:51:13 -05001704 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05001705 goto exit_dput;
1706
1707 if (__follow_mount(path)) {
1708 error = -ELOOP;
Al Viro5b369df2009-12-24 06:51:13 -05001709 if (open_flag & O_NOFOLLOW)
Al Virofb1cc552009-12-24 01:58:28 -05001710 goto exit_dput;
1711 }
1712
1713 error = -ENOENT;
1714 if (!path->dentry->d_inode)
1715 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05001716
1717 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05001718 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05001719
1720 path_to_nameidata(path, nd);
1721 error = -EISDIR;
1722 if (S_ISDIR(path->dentry->d_inode->i_mode))
1723 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05001724ok:
Al Viro9a661792009-12-24 06:49:47 -05001725 filp = finish_open(nd, open_flag, acc_mode);
Al Virofb1cc552009-12-24 01:58:28 -05001726 return filp;
1727
1728exit_mutex_unlock:
1729 mutex_unlock(&dir->d_inode->i_mutex);
1730exit_dput:
1731 path_put_conditional(path, nd);
1732exit:
1733 if (!IS_ERR(nd->intent.open.file))
1734 release_open_intent(nd);
Al Virofb1cc552009-12-24 01:58:28 -05001735 path_put(&nd->path);
1736 return ERR_PTR(error);
1737}
1738
Dave Hansend57999e2008-02-15 14:37:27 -08001739/*
Dave Hansen4a3fd212008-02-15 14:37:48 -08001740 * Note that the low bits of the passed in "open_flag"
1741 * are not the same as in the local variable "flag". See
1742 * open_to_namei_flags() for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001744struct file *do_filp_open(int dfd, const char *pathname,
Al Viro6e8341a2009-04-06 11:16:22 -04001745 int open_flag, int mode, int acc_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
Dave Hansen4a3fd212008-02-15 14:37:48 -08001747 struct file *filp;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001748 struct nameidata nd;
Al Viro6e8341a2009-04-06 11:16:22 -04001749 int error;
Al Viro9850c052010-01-13 15:01:15 -05001750 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 int count = 0;
Dave Hansend57999e2008-02-15 14:37:27 -08001752 int flag = open_to_namei_flags(open_flag);
Al Viro9850c052010-01-13 15:01:15 -05001753 int force_reval = 0;
Al Viro1f36f772009-12-26 10:56:19 -05001754
1755 if (!(open_flag & O_CREAT))
1756 mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +01001758 /*
1759 * O_SYNC is implemented as __O_SYNC|O_DSYNC. As many places only
1760 * check for O_DSYNC if the need any syncing at all we enforce it's
1761 * always set instead of having to deal with possibly weird behaviour
1762 * for malicious applications setting only __O_SYNC.
1763 */
1764 if (open_flag & __O_SYNC)
1765 open_flag |= O_DSYNC;
1766
Al Viro6e8341a2009-04-06 11:16:22 -04001767 if (!acc_mode)
Al Viro6d125522009-12-24 06:58:56 -05001768 acc_mode = MAY_OPEN | ACC_MODE(open_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769
Trond Myklebust834f2a42005-10-18 14:20:16 -07001770 /* O_TRUNC implies we need access checks for write permissions */
Al Viro4296e2c2009-12-24 07:15:41 -05001771 if (open_flag & O_TRUNC)
Trond Myklebust834f2a42005-10-18 14:20:16 -07001772 acc_mode |= MAY_WRITE;
1773
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 /* Allow the LSM permission hook to distinguish append
1775 access from general write access. */
Al Viro4296e2c2009-12-24 07:15:41 -05001776 if (open_flag & O_APPEND)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 acc_mode |= MAY_APPEND;
1778
Al Viro1f36f772009-12-26 10:56:19 -05001779 /* find the parent */
Al Viro9850c052010-01-13 15:01:15 -05001780reval:
Al Viro9b4a9b12009-04-07 11:44:16 -04001781 error = path_init(dfd, pathname, LOOKUP_PARENT, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 if (error)
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001783 return ERR_PTR(error);
Al Viro9850c052010-01-13 15:01:15 -05001784 if (force_reval)
1785 nd.flags |= LOOKUP_REVAL;
Al Viro38662482009-12-26 07:21:48 -05001786
1787 current->total_link_count = 0;
1788 error = link_path_walk(pathname, &nd);
J. R. Okajima654f5622009-06-18 23:30:15 +09001789 if (error) {
Al Viro10fa8e62009-12-26 07:09:49 -05001790 filp = ERR_PTR(error);
1791 goto out;
J. R. Okajima654f5622009-06-18 23:30:15 +09001792 }
Al Viro1f36f772009-12-26 10:56:19 -05001793 if (unlikely(!audit_dummy_context()) && (open_flag & O_CREAT))
Al Viro9b4a9b12009-04-07 11:44:16 -04001794 audit_inode(pathname, nd.path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
1796 /*
Al Viroa2c36b42009-12-24 03:39:50 -05001797 * We have the parent and last component.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799
Al Viro8737f3a2008-08-02 22:36:57 -04001800 error = -ENFILE;
1801 filp = get_empty_filp();
1802 if (filp == NULL)
1803 goto exit_parent;
1804 nd.intent.open.file = filp;
Al Viro482928d2009-12-19 10:10:39 -05001805 filp->f_flags = open_flag;
Al Viro8737f3a2008-08-02 22:36:57 -04001806 nd.intent.open.flags = flag;
1807 nd.intent.open.create_mode = mode;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001808 nd.flags &= ~LOOKUP_PARENT;
Al Viro1f36f772009-12-26 10:56:19 -05001809 nd.flags |= LOOKUP_OPEN;
1810 if (open_flag & O_CREAT) {
1811 nd.flags |= LOOKUP_CREATE;
1812 if (open_flag & O_EXCL)
1813 nd.flags |= LOOKUP_EXCL;
1814 }
Al Viro3e297b62010-03-26 12:40:13 -04001815 if (open_flag & O_DIRECTORY)
1816 nd.flags |= LOOKUP_DIRECTORY;
Jan Kara002baee2010-05-13 12:52:57 +02001817 if (!(open_flag & O_NOFOLLOW))
1818 nd.flags |= LOOKUP_FOLLOW;
Al Viro3e297b62010-03-26 12:40:13 -04001819 filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
Al Viro806b6812009-12-26 07:16:40 -05001820 while (unlikely(!filp)) { /* trailing symlink */
Al Virodef4af32009-12-26 08:37:05 -05001821 struct path holder;
Al Viro1f36f772009-12-26 10:56:19 -05001822 struct inode *inode = path.dentry->d_inode;
Al Virodef4af32009-12-26 08:37:05 -05001823 void *cookie;
Al Viro806b6812009-12-26 07:16:40 -05001824 error = -ELOOP;
Al Viro1f36f772009-12-26 10:56:19 -05001825 /* S_ISDIR part is a temporary automount kludge */
Jan Kara002baee2010-05-13 12:52:57 +02001826 if (!(nd.flags & LOOKUP_FOLLOW) && !S_ISDIR(inode->i_mode))
Al Viro1f36f772009-12-26 10:56:19 -05001827 goto exit_dput;
1828 if (count++ == 32)
Al Viro806b6812009-12-26 07:16:40 -05001829 goto exit_dput;
1830 /*
1831 * This is subtle. Instead of calling do_follow_link() we do
1832 * the thing by hands. The reason is that this way we have zero
1833 * link_count and path_walk() (called from ->follow_link)
1834 * honoring LOOKUP_PARENT. After that we have the parent and
1835 * last component, i.e. we are in the same situation as after
1836 * the first path_walk(). Well, almost - if the last component
1837 * is normal we get its copy stored in nd->last.name and we will
1838 * have to putname() it when we are done. Procfs-like symlinks
1839 * just set LAST_BIND.
1840 */
1841 nd.flags |= LOOKUP_PARENT;
1842 error = security_inode_follow_link(path.dentry, &nd);
1843 if (error)
1844 goto exit_dput;
Al Virodef4af32009-12-26 08:37:05 -05001845 error = __do_follow_link(&path, &nd, &cookie);
1846 if (unlikely(error)) {
Al Viro806b6812009-12-26 07:16:40 -05001847 /* nd.path had been dropped */
Al Virodef4af32009-12-26 08:37:05 -05001848 if (!IS_ERR(cookie) && inode->i_op->put_link)
1849 inode->i_op->put_link(path.dentry, &nd, cookie);
1850 path_put(&path);
Al Viro806b6812009-12-26 07:16:40 -05001851 release_open_intent(&nd);
1852 filp = ERR_PTR(error);
1853 goto out;
1854 }
Al Virodef4af32009-12-26 08:37:05 -05001855 holder = path;
Al Viro806b6812009-12-26 07:16:40 -05001856 nd.flags &= ~LOOKUP_PARENT;
Al Viro3e297b62010-03-26 12:40:13 -04001857 filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
Al Virodef4af32009-12-26 08:37:05 -05001858 if (inode->i_op->put_link)
1859 inode->i_op->put_link(holder.dentry, &nd, cookie);
1860 path_put(&holder);
Al Viro806b6812009-12-26 07:16:40 -05001861 }
Al Viro10fa8e62009-12-26 07:09:49 -05001862out:
Al Viro2a737872009-04-07 11:49:53 -04001863 if (nd.root.mnt)
1864 path_put(&nd.root);
Al Viro10fa8e62009-12-26 07:09:49 -05001865 if (filp == ERR_PTR(-ESTALE) && !force_reval) {
1866 force_reval = 1;
1867 goto reval;
1868 }
1869 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870
Al Viro806b6812009-12-26 07:16:40 -05001871exit_dput:
1872 path_put_conditional(&path, &nd);
1873 if (!IS_ERR(nd.intent.open.file))
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001874 release_open_intent(&nd);
Al Viro806b6812009-12-26 07:16:40 -05001875exit_parent:
1876 path_put(&nd.path);
1877 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05001878 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879}
1880
1881/**
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001882 * filp_open - open file and return file pointer
1883 *
1884 * @filename: path to open
1885 * @flags: open flags as per the open(2) second argument
1886 * @mode: mode for the new file if O_CREAT is set, else ignored
1887 *
1888 * This is the helper to open a file from kernelspace if you really
1889 * have to. But in generally you should not do this, so please move
1890 * along, nothing to see here..
1891 */
1892struct file *filp_open(const char *filename, int flags, int mode)
1893{
Al Viro6e8341a2009-04-06 11:16:22 -04001894 return do_filp_open(AT_FDCWD, filename, flags, mode, 0);
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08001895}
1896EXPORT_SYMBOL(filp_open);
1897
1898/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 * lookup_create - lookup a dentry, creating it if it doesn't exist
1900 * @nd: nameidata info
1901 * @is_dir: directory flag
1902 *
1903 * Simple function to lookup and return a dentry and create it
1904 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001905 *
Jan Blunck4ac91372008-02-14 19:34:32 -08001906 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 */
1908struct dentry *lookup_create(struct nameidata *nd, int is_dir)
1909{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001910 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Jan Blunck4ac91372008-02-14 19:34:32 -08001912 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001913 /*
1914 * Yucky last component or no last component at all?
1915 * (foo/., foo/.., /////)
1916 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 if (nd->last_type != LAST_NORM)
1918 goto fail;
1919 nd->flags &= ~LOOKUP_PARENT;
Al Viro35165862008-08-05 03:00:49 -04001920 nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
ASANO Masahiroa6349042006-08-22 20:06:02 -04001921 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001922
1923 /*
1924 * Do the final lookup.
1925 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08001926 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 if (IS_ERR(dentry))
1928 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001929
Al Viroe9baf6e2008-05-15 04:49:12 -04001930 if (dentry->d_inode)
1931 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07001932 /*
1933 * Special case - lookup gave negative, but... we had foo/bar/
1934 * From the vfs_mknod() POV we just have a negative dentry -
1935 * all is fine. Let's be bastards - you had / on the end, you've
1936 * been asking for (non-existent) directory. -ENOENT for you.
1937 */
Al Viroe9baf6e2008-05-15 04:49:12 -04001938 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
1939 dput(dentry);
1940 dentry = ERR_PTR(-ENOENT);
1941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04001943eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04001945 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946fail:
1947 return dentry;
1948}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07001949EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950
1951int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1952{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001953 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954
1955 if (error)
1956 return error;
1957
1958 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
1959 return -EPERM;
1960
Al Viroacfa4382008-12-04 10:06:33 -05001961 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 return -EPERM;
1963
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07001964 error = devcgroup_inode_mknod(mode, dev);
1965 if (error)
1966 return error;
1967
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 error = security_inode_mknod(dir, dentry, mode, dev);
1969 if (error)
1970 return error;
1971
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001973 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001974 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 return error;
1976}
1977
Dave Hansen463c3192008-02-15 14:37:57 -08001978static int may_mknod(mode_t mode)
1979{
1980 switch (mode & S_IFMT) {
1981 case S_IFREG:
1982 case S_IFCHR:
1983 case S_IFBLK:
1984 case S_IFIFO:
1985 case S_IFSOCK:
1986 case 0: /* zero mode translates to S_IFREG */
1987 return 0;
1988 case S_IFDIR:
1989 return -EPERM;
1990 default:
1991 return -EINVAL;
1992 }
1993}
1994
Heiko Carstens2e4d0922009-01-14 14:14:31 +01001995SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
1996 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997{
Al Viro2ad94ae2008-07-21 09:32:51 -04001998 int error;
1999 char *tmp;
2000 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 struct nameidata nd;
2002
2003 if (S_ISDIR(mode))
2004 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005
Al Viro2ad94ae2008-07-21 09:32:51 -04002006 error = user_path_parent(dfd, filename, &nd, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002008 return error;
2009
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 dentry = lookup_create(&nd, 0);
Dave Hansen463c3192008-02-15 14:37:57 -08002011 if (IS_ERR(dentry)) {
2012 error = PTR_ERR(dentry);
2013 goto out_unlock;
2014 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002015 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002016 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002017 error = may_mknod(mode);
2018 if (error)
2019 goto out_dput;
2020 error = mnt_want_write(nd.path.mnt);
2021 if (error)
2022 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002023 error = security_path_mknod(&nd.path, dentry, mode, dev);
2024 if (error)
2025 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002026 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08002028 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 break;
2030 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002031 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 new_decode_dev(dev));
2033 break;
2034 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002035 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002038out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002039 mnt_drop_write(nd.path.mnt);
2040out_dput:
2041 dput(dentry);
2042out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002043 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002044 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 putname(tmp);
2046
2047 return error;
2048}
2049
Heiko Carstens3480b252009-01-14 14:14:16 +01002050SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002051{
2052 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2053}
2054
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2056{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002057 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
2059 if (error)
2060 return error;
2061
Al Viroacfa4382008-12-04 10:06:33 -05002062 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 return -EPERM;
2064
2065 mode &= (S_IRWXUGO|S_ISVTX);
2066 error = security_inode_mkdir(dir, dentry, mode);
2067 if (error)
2068 return error;
2069
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002071 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002072 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return error;
2074}
2075
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002076SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077{
2078 int error = 0;
2079 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002080 struct dentry *dentry;
2081 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
Al Viro2ad94ae2008-07-21 09:32:51 -04002083 error = user_path_parent(dfd, pathname, &nd, &tmp);
2084 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002085 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086
Dave Hansen6902d922006-09-30 23:29:01 -07002087 dentry = lookup_create(&nd, 1);
2088 error = PTR_ERR(dentry);
2089 if (IS_ERR(dentry))
2090 goto out_unlock;
2091
Jan Blunck4ac91372008-02-14 19:34:32 -08002092 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002093 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002094 error = mnt_want_write(nd.path.mnt);
2095 if (error)
2096 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002097 error = security_path_mkdir(&nd.path, dentry, mode);
2098 if (error)
2099 goto out_drop_write;
Jan Blunck4ac91372008-02-14 19:34:32 -08002100 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002101out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002102 mnt_drop_write(nd.path.mnt);
2103out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002104 dput(dentry);
2105out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002106 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002107 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002108 putname(tmp);
2109out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 return error;
2111}
2112
Heiko Carstens3cdad422009-01-14 14:14:22 +01002113SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002114{
2115 return sys_mkdirat(AT_FDCWD, pathname, mode);
2116}
2117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118/*
2119 * We try to drop the dentry early: we should have
2120 * a usage count of 2 if we're the only user of this
2121 * dentry, and if that is true (possibly after pruning
2122 * the dcache), then we drop the dentry now.
2123 *
2124 * A low-level filesystem can, if it choses, legally
2125 * do a
2126 *
2127 * if (!d_unhashed(dentry))
2128 * return -EBUSY;
2129 *
2130 * if it cannot handle the case of removing a directory
2131 * that is still in use by something else..
2132 */
2133void dentry_unhash(struct dentry *dentry)
2134{
2135 dget(dentry);
Vasily Averindc168422006-12-06 20:37:07 -08002136 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 spin_lock(&dcache_lock);
2138 spin_lock(&dentry->d_lock);
2139 if (atomic_read(&dentry->d_count) == 2)
2140 __d_drop(dentry);
2141 spin_unlock(&dentry->d_lock);
2142 spin_unlock(&dcache_lock);
2143}
2144
2145int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2146{
2147 int error = may_delete(dir, dentry, 1);
2148
2149 if (error)
2150 return error;
2151
Al Viroacfa4382008-12-04 10:06:33 -05002152 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 return -EPERM;
2154
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002155 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 dentry_unhash(dentry);
2157 if (d_mountpoint(dentry))
2158 error = -EBUSY;
2159 else {
2160 error = security_inode_rmdir(dir, dentry);
2161 if (!error) {
2162 error = dir->i_op->rmdir(dir, dentry);
Al Virod83c49f2010-04-30 17:17:09 -04002163 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 dentry->d_inode->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -04002165 dont_mount(dentry);
2166 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 }
2168 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002169 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 d_delete(dentry);
2172 }
2173 dput(dentry);
2174
2175 return error;
2176}
2177
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002178static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
2180 int error = 0;
2181 char * name;
2182 struct dentry *dentry;
2183 struct nameidata nd;
2184
Al Viro2ad94ae2008-07-21 09:32:51 -04002185 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002187 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
2189 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002190 case LAST_DOTDOT:
2191 error = -ENOTEMPTY;
2192 goto exit1;
2193 case LAST_DOT:
2194 error = -EINVAL;
2195 goto exit1;
2196 case LAST_ROOT:
2197 error = -EBUSY;
2198 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002200
2201 nd.flags &= ~LOOKUP_PARENT;
2202
Jan Blunck4ac91372008-02-14 19:34:32 -08002203 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002204 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002206 if (IS_ERR(dentry))
2207 goto exit2;
Dave Hansen06227532008-02-15 14:37:34 -08002208 error = mnt_want_write(nd.path.mnt);
2209 if (error)
2210 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002211 error = security_path_rmdir(&nd.path, dentry);
2212 if (error)
2213 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002214 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002215exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002216 mnt_drop_write(nd.path.mnt);
2217exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002218 dput(dentry);
2219exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002220 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002222 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 putname(name);
2224 return error;
2225}
2226
Heiko Carstens3cdad422009-01-14 14:14:22 +01002227SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002228{
2229 return do_rmdir(AT_FDCWD, pathname);
2230}
2231
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232int vfs_unlink(struct inode *dir, struct dentry *dentry)
2233{
2234 int error = may_delete(dir, dentry, 0);
2235
2236 if (error)
2237 return error;
2238
Al Viroacfa4382008-12-04 10:06:33 -05002239 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 return -EPERM;
2241
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002242 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 if (d_mountpoint(dentry))
2244 error = -EBUSY;
2245 else {
2246 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002247 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002249 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002250 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002251 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002253 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254
2255 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2256 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002257 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 }
Robert Love0eeca282005-07-12 17:06:03 -04002260
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 return error;
2262}
2263
2264/*
2265 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002266 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 * writeout happening, and we don't want to prevent access to the directory
2268 * while waiting on the I/O.
2269 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002270static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271{
Al Viro2ad94ae2008-07-21 09:32:51 -04002272 int error;
2273 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 struct dentry *dentry;
2275 struct nameidata nd;
2276 struct inode *inode = NULL;
2277
Al Viro2ad94ae2008-07-21 09:32:51 -04002278 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002280 return error;
2281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 error = -EISDIR;
2283 if (nd.last_type != LAST_NORM)
2284 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002285
2286 nd.flags &= ~LOOKUP_PARENT;
2287
Jan Blunck4ac91372008-02-14 19:34:32 -08002288 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002289 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 error = PTR_ERR(dentry);
2291 if (!IS_ERR(dentry)) {
2292 /* Why not before? Because we want correct error value */
2293 if (nd.last.name[nd.last.len])
2294 goto slashes;
2295 inode = dentry->d_inode;
2296 if (inode)
2297 atomic_inc(&inode->i_count);
Dave Hansen06227532008-02-15 14:37:34 -08002298 error = mnt_want_write(nd.path.mnt);
2299 if (error)
2300 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002301 error = security_path_unlink(&nd.path, dentry);
2302 if (error)
2303 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002304 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002305exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002306 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 exit2:
2308 dput(dentry);
2309 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002310 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 if (inode)
2312 iput(inode); /* truncate the inode here */
2313exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002314 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 putname(name);
2316 return error;
2317
2318slashes:
2319 error = !dentry->d_inode ? -ENOENT :
2320 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2321 goto exit2;
2322}
2323
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002324SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002325{
2326 if ((flag & ~AT_REMOVEDIR) != 0)
2327 return -EINVAL;
2328
2329 if (flag & AT_REMOVEDIR)
2330 return do_rmdir(dfd, pathname);
2331
2332 return do_unlinkat(dfd, pathname);
2333}
2334
Heiko Carstens3480b252009-01-14 14:14:16 +01002335SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002336{
2337 return do_unlinkat(AT_FDCWD, pathname);
2338}
2339
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002340int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002342 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
2344 if (error)
2345 return error;
2346
Al Viroacfa4382008-12-04 10:06:33 -05002347 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 return -EPERM;
2349
2350 error = security_inode_symlink(dir, dentry, oldname);
2351 if (error)
2352 return error;
2353
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002355 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002356 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 return error;
2358}
2359
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002360SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2361 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362{
Al Viro2ad94ae2008-07-21 09:32:51 -04002363 int error;
2364 char *from;
2365 char *to;
Dave Hansen6902d922006-09-30 23:29:01 -07002366 struct dentry *dentry;
2367 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002370 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002372
2373 error = user_path_parent(newdfd, newname, &nd, &to);
2374 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002375 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Dave Hansen6902d922006-09-30 23:29:01 -07002377 dentry = lookup_create(&nd, 0);
2378 error = PTR_ERR(dentry);
2379 if (IS_ERR(dentry))
2380 goto out_unlock;
2381
Dave Hansen75c3f292008-02-15 14:37:45 -08002382 error = mnt_want_write(nd.path.mnt);
2383 if (error)
2384 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002385 error = security_path_symlink(&nd.path, dentry, from);
2386 if (error)
2387 goto out_drop_write;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002388 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002389out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002390 mnt_drop_write(nd.path.mnt);
2391out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002392 dput(dentry);
2393out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002394 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002395 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002396 putname(to);
2397out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 putname(from);
2399 return error;
2400}
2401
Heiko Carstens3480b252009-01-14 14:14:16 +01002402SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002403{
2404 return sys_symlinkat(oldname, AT_FDCWD, newname);
2405}
2406
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2408{
2409 struct inode *inode = old_dentry->d_inode;
2410 int error;
2411
2412 if (!inode)
2413 return -ENOENT;
2414
Miklos Szeredia95164d2008-07-30 15:08:48 +02002415 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 if (error)
2417 return error;
2418
2419 if (dir->i_sb != inode->i_sb)
2420 return -EXDEV;
2421
2422 /*
2423 * A link to an append-only or immutable file cannot be created.
2424 */
2425 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2426 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05002427 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002429 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 return -EPERM;
2431
2432 error = security_inode_link(old_dentry, dir, new_dentry);
2433 if (error)
2434 return error;
2435
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002436 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002438 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002439 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002440 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 return error;
2442}
2443
2444/*
2445 * Hardlinks are often used in delicate situations. We avoid
2446 * security-related surprises by not following symlinks on the
2447 * newname. --KAB
2448 *
2449 * We don't follow them on the oldname either to be compatible
2450 * with linux 2.0, and to avoid hard-linking to directories
2451 * and other special files. --ADM
2452 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002453SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2454 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455{
2456 struct dentry *new_dentry;
Al Viro2d8f3032008-07-22 09:59:21 -04002457 struct nameidata nd;
2458 struct path old_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 int error;
Al Viro2ad94ae2008-07-21 09:32:51 -04002460 char *to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Ulrich Drepper45c9b112006-06-25 05:49:11 -07002462 if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002463 return -EINVAL;
2464
Al Viro2d8f3032008-07-22 09:59:21 -04002465 error = user_path_at(olddfd, oldname,
2466 flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
2467 &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002469 return error;
2470
2471 error = user_path_parent(newdfd, newname, &nd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 if (error)
2473 goto out;
2474 error = -EXDEV;
Al Viro2d8f3032008-07-22 09:59:21 -04002475 if (old_path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 goto out_release;
2477 new_dentry = lookup_create(&nd, 0);
2478 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002479 if (IS_ERR(new_dentry))
2480 goto out_unlock;
Dave Hansen75c3f292008-02-15 14:37:45 -08002481 error = mnt_want_write(nd.path.mnt);
2482 if (error)
2483 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002484 error = security_path_link(old_path.dentry, &nd.path, new_dentry);
2485 if (error)
2486 goto out_drop_write;
Al Viro2d8f3032008-07-22 09:59:21 -04002487 error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002488out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002489 mnt_drop_write(nd.path.mnt);
2490out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002491 dput(new_dentry);
2492out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002493 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08002495 path_put(&nd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002496 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497out:
Al Viro2d8f3032008-07-22 09:59:21 -04002498 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
2500 return error;
2501}
2502
Heiko Carstens3480b252009-01-14 14:14:16 +01002503SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002504{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002505 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002506}
2507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508/*
2509 * The worst of all namespace operations - renaming directory. "Perverted"
2510 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2511 * Problems:
2512 * a) we can get into loop creation. Check is done in is_subdir().
2513 * b) race potential - two innocent renames can create a loop together.
2514 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002515 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 * story.
2517 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002518 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 * whether the target exists). Solution: try to be smart with locking
2520 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002521 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 * move will be locked. Thus we can rank directories by the tree
2523 * (ancestors first) and rank all non-directories after them.
2524 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002525 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 * HOWEVER, it relies on the assumption that any object with ->lookup()
2527 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2528 * we'd better make sure that there's no link(2) for them.
2529 * d) some filesystems don't support opened-but-unlinked directories,
2530 * either because of layout or because they are not ready to deal with
2531 * all cases correctly. The latter will be fixed (taking this sort of
2532 * stuff into VFS), but the former is not going away. Solution: the same
2533 * trick as in rmdir().
2534 * e) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002535 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05002537 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 * locking].
2539 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07002540static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2541 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542{
2543 int error = 0;
2544 struct inode *target;
2545
2546 /*
2547 * If we are going to change the parent - check write permissions,
2548 * we'll need to flip '..'.
2549 */
2550 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04002551 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 if (error)
2553 return error;
2554 }
2555
2556 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2557 if (error)
2558 return error;
2559
2560 target = new_dentry->d_inode;
Al Virod83c49f2010-04-30 17:17:09 -04002561 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002562 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2564 error = -EBUSY;
Al Virod83c49f2010-04-30 17:17:09 -04002565 else {
2566 if (target)
2567 dentry_unhash(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
Al Virod83c49f2010-04-30 17:17:09 -04002569 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 if (target) {
Al Virod83c49f2010-04-30 17:17:09 -04002571 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 target->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -04002573 dont_mount(new_dentry);
2574 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002575 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 if (d_unhashed(new_dentry))
2577 d_rehash(new_dentry);
2578 dput(new_dentry);
2579 }
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002580 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07002581 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2582 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 return error;
2584}
2585
Adrian Bunk75c96f82005-05-05 16:16:09 -07002586static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
2587 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588{
2589 struct inode *target;
2590 int error;
2591
2592 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2593 if (error)
2594 return error;
2595
2596 dget(new_dentry);
2597 target = new_dentry->d_inode;
2598 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002599 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
2601 error = -EBUSY;
2602 else
2603 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2604 if (!error) {
Al Virobec10522010-03-03 14:12:08 -05002605 if (target)
Al Virod83c49f2010-04-30 17:17:09 -04002606 dont_mount(new_dentry);
Mark Fasheh349457c2006-09-08 14:22:21 -07002607 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 d_move(old_dentry, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 }
2610 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002611 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 dput(new_dentry);
2613 return error;
2614}
2615
2616int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
2617 struct inode *new_dir, struct dentry *new_dentry)
2618{
2619 int error;
2620 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05002621 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
2623 if (old_dentry->d_inode == new_dentry->d_inode)
2624 return 0;
2625
2626 error = may_delete(old_dir, old_dentry, is_dir);
2627 if (error)
2628 return error;
2629
2630 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02002631 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 else
2633 error = may_delete(new_dir, new_dentry, is_dir);
2634 if (error)
2635 return error;
2636
Al Viroacfa4382008-12-04 10:06:33 -05002637 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 return -EPERM;
2639
Robert Love0eeca282005-07-12 17:06:03 -04002640 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
2641
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 if (is_dir)
2643 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
2644 else
2645 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05002646 if (!error)
2647 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04002648 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04002649 fsnotify_oldname_free(old_name);
2650
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 return error;
2652}
2653
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002654SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
2655 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656{
Al Viro2ad94ae2008-07-21 09:32:51 -04002657 struct dentry *old_dir, *new_dir;
2658 struct dentry *old_dentry, *new_dentry;
2659 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04002661 char *from;
2662 char *to;
2663 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
Al Viro2ad94ae2008-07-21 09:32:51 -04002665 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 if (error)
2667 goto exit;
2668
Al Viro2ad94ae2008-07-21 09:32:51 -04002669 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 if (error)
2671 goto exit1;
2672
2673 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08002674 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 goto exit2;
2676
Jan Blunck4ac91372008-02-14 19:34:32 -08002677 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 error = -EBUSY;
2679 if (oldnd.last_type != LAST_NORM)
2680 goto exit2;
2681
Jan Blunck4ac91372008-02-14 19:34:32 -08002682 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 if (newnd.last_type != LAST_NORM)
2684 goto exit2;
2685
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002686 oldnd.flags &= ~LOOKUP_PARENT;
2687 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09002688 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002689
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 trap = lock_rename(new_dir, old_dir);
2691
Christoph Hellwig49705b72005-11-08 21:35:06 -08002692 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 error = PTR_ERR(old_dentry);
2694 if (IS_ERR(old_dentry))
2695 goto exit3;
2696 /* source must exist */
2697 error = -ENOENT;
2698 if (!old_dentry->d_inode)
2699 goto exit4;
2700 /* unless the source is a directory trailing slashes give -ENOTDIR */
2701 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
2702 error = -ENOTDIR;
2703 if (oldnd.last.name[oldnd.last.len])
2704 goto exit4;
2705 if (newnd.last.name[newnd.last.len])
2706 goto exit4;
2707 }
2708 /* source should not be ancestor of target */
2709 error = -EINVAL;
2710 if (old_dentry == trap)
2711 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08002712 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 error = PTR_ERR(new_dentry);
2714 if (IS_ERR(new_dentry))
2715 goto exit4;
2716 /* target should not be an ancestor of source */
2717 error = -ENOTEMPTY;
2718 if (new_dentry == trap)
2719 goto exit5;
2720
Dave Hansen9079b1e2008-02-15 14:37:49 -08002721 error = mnt_want_write(oldnd.path.mnt);
2722 if (error)
2723 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002724 error = security_path_rename(&oldnd.path, old_dentry,
2725 &newnd.path, new_dentry);
2726 if (error)
2727 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 error = vfs_rename(old_dir->d_inode, old_dentry,
2729 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002730exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08002731 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732exit5:
2733 dput(new_dentry);
2734exit4:
2735 dput(old_dentry);
2736exit3:
2737 unlock_rename(new_dir, old_dir);
2738exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08002739 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002740 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002742 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002744exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 return error;
2746}
2747
Heiko Carstensa26eab22009-01-14 14:14:17 +01002748SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002749{
2750 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
2751}
2752
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
2754{
2755 int len;
2756
2757 len = PTR_ERR(link);
2758 if (IS_ERR(link))
2759 goto out;
2760
2761 len = strlen(link);
2762 if (len > (unsigned) buflen)
2763 len = buflen;
2764 if (copy_to_user(buffer, link, len))
2765 len = -EFAULT;
2766out:
2767 return len;
2768}
2769
2770/*
2771 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
2772 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
2773 * using) it for any given inode is up to filesystem.
2774 */
2775int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2776{
2777 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002778 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07002779 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002782 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07002783 if (IS_ERR(cookie))
2784 return PTR_ERR(cookie);
2785
2786 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
2787 if (dentry->d_inode->i_op->put_link)
2788 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
2789 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790}
2791
2792int vfs_follow_link(struct nameidata *nd, const char *link)
2793{
2794 return __vfs_follow_link(nd, link);
2795}
2796
2797/* get the link contents into pagecache */
2798static char *page_getlink(struct dentry * dentry, struct page **ppage)
2799{
Duane Griffinebd09ab2008-12-19 20:47:12 +00002800 char *kaddr;
2801 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07002803 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07002805 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00002807 kaddr = kmap(page);
2808 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
2809 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810}
2811
2812int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
2813{
2814 struct page *page = NULL;
2815 char *s = page_getlink(dentry, &page);
2816 int res = vfs_readlink(dentry,buffer,buflen,s);
2817 if (page) {
2818 kunmap(page);
2819 page_cache_release(page);
2820 }
2821 return res;
2822}
2823
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002824void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002826 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002828 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829}
2830
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002831void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07002833 struct page *page = cookie;
2834
2835 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 kunmap(page);
2837 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 }
2839}
2840
Nick Piggin54566b22009-01-04 12:00:53 -08002841/*
2842 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
2843 */
2844int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845{
2846 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002847 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07002848 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08002849 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08002851 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
2852 if (nofs)
2853 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
NeilBrown7e53cac2006-03-25 03:07:57 -08002855retry:
Nick Pigginafddba42007-10-16 01:25:01 -07002856 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08002857 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07002859 goto fail;
2860
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 kaddr = kmap_atomic(page, KM_USER0);
2862 memcpy(kaddr, symname, len-1);
2863 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07002864
2865 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
2866 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 if (err < 0)
2868 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07002869 if (err < len-1)
2870 goto retry;
2871
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 mark_inode_dirty(inode);
2873 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874fail:
2875 return err;
2876}
2877
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002878int page_symlink(struct inode *inode, const char *symname, int len)
2879{
2880 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08002881 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002882}
2883
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08002884const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 .readlink = generic_readlink,
2886 .follow_link = page_follow_link_light,
2887 .put_link = page_put_link,
2888};
2889
Al Viro2d8f3032008-07-22 09:59:21 -04002890EXPORT_SYMBOL(user_path_at);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891EXPORT_SYMBOL(follow_down);
2892EXPORT_SYMBOL(follow_up);
2893EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
2894EXPORT_SYMBOL(getname);
2895EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896EXPORT_SYMBOL(lookup_one_len);
2897EXPORT_SYMBOL(page_follow_link_light);
2898EXPORT_SYMBOL(page_put_link);
2899EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08002900EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901EXPORT_SYMBOL(page_symlink);
2902EXPORT_SYMBOL(page_symlink_inode_operations);
2903EXPORT_SYMBOL(path_lookup);
Al Virod1811462008-08-02 00:49:18 -04002904EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002905EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04002906EXPORT_SYMBOL(inode_permission);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -08002907EXPORT_SYMBOL(file_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908EXPORT_SYMBOL(unlock_rename);
2909EXPORT_SYMBOL(vfs_create);
2910EXPORT_SYMBOL(vfs_follow_link);
2911EXPORT_SYMBOL(vfs_link);
2912EXPORT_SYMBOL(vfs_mkdir);
2913EXPORT_SYMBOL(vfs_mknod);
2914EXPORT_SYMBOL(generic_permission);
2915EXPORT_SYMBOL(vfs_readlink);
2916EXPORT_SYMBOL(vfs_rename);
2917EXPORT_SYMBOL(vfs_rmdir);
2918EXPORT_SYMBOL(vfs_symlink);
2919EXPORT_SYMBOL(vfs_unlink);
2920EXPORT_SYMBOL(dentry_unhash);
2921EXPORT_SYMBOL(generic_readlink);