blob: da9c26578663bba550e8e2699016132602412d91 [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
Lucas De Marchi25985ed2011-03-30 22:57:33 -030073 * the name is a symlink pointing to a non-existent name.
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 *
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
Al Virof52e0c12011-03-14 18:56:51 -0400139static char *getname_flags(const char __user * filename, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
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) {
Al Virof52e0c12011-03-14 18:56:51 -0400150 if (retval != -ENOENT || !(flags & LOOKUP_EMPTY)) {
151 __putname(tmp);
152 result = ERR_PTR(retval);
153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 }
155 }
156 audit_getname(result);
157 return result;
158}
159
Al Virof52e0c12011-03-14 18:56:51 -0400160char *getname(const char __user * filename)
161{
162 return getname_flags(filename, 0);
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#ifdef CONFIG_AUDITSYSCALL
166void putname(const char *name)
167{
Al Viro5ac3a9c2006-07-16 06:38:45 -0400168 if (unlikely(!audit_dummy_context()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 audit_putname(name);
170 else
171 __putname(name);
172}
173EXPORT_SYMBOL(putname);
174#endif
175
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700176/*
177 * This does basic POSIX ACL permission checking
178 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100179static int acl_permission_check(struct inode *inode, int mask, unsigned int flags,
180 int (*check_acl)(struct inode *inode, int mask, unsigned int flags))
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700181{
Linus Torvalds26cf46b2011-05-13 11:51:01 -0700182 unsigned int mode = inode->i_mode;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700183
184 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
185
Serge E. Hallyne795b712011-03-23 16:43:25 -0700186 if (current_user_ns() != inode_userns(inode))
187 goto other_perms;
188
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700189 if (current_fsuid() == inode->i_uid)
190 mode >>= 6;
191 else {
192 if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
Nick Pigginb74c79e2011-01-07 17:49:58 +1100193 int error = check_acl(inode, mask, flags);
194 if (error != -EAGAIN)
195 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700196 }
197
198 if (in_group_p(inode->i_gid))
199 mode >>= 3;
200 }
201
Serge E. Hallyne795b712011-03-23 16:43:25 -0700202other_perms:
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700203 /*
204 * If the DACs are ok we don't need any capability check.
205 */
206 if ((mask & ~mode) == 0)
207 return 0;
208 return -EACCES;
209}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100212 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 * @inode: inode to check access rights for
214 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
215 * @check_acl: optional callback to check for Posix ACLs
Randy Dunlap39191622011-01-08 19:36:21 -0800216 * @flags: IPERM_FLAG_ flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 *
218 * Used to check for read/write/execute permissions on a file.
219 * We use "fsuid" for this, letting us set arbitrary permissions
220 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100221 * are used for other things.
222 *
223 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
224 * request cannot be satisfied (eg. requires blocking or too much complexity).
225 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100227int generic_permission(struct inode *inode, int mask, unsigned int flags,
228 int (*check_acl)(struct inode *inode, int mask, unsigned int flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700230 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 /*
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700233 * Do the basic POSIX ACL permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100235 ret = acl_permission_check(inode, mask, flags, check_acl);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700236 if (ret != -EACCES)
237 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 /*
240 * Read/write DACs are always overridable.
241 * Executable DACs are overridable if at least one exec bit is set.
242 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200243 if (!(mask & MAY_EXEC) || execute_ok(inode))
Serge E. Hallyne795b712011-03-23 16:43:25 -0700244 if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return 0;
246
247 /*
248 * Searching includes executable on directories, else just read.
249 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600250 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
Serge E. Hallyne795b712011-03-23 16:43:25 -0700252 if (ns_capable(inode_userns(inode), CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return 0;
254
255 return -EACCES;
256}
257
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200258/**
259 * inode_permission - check for access rights to a given inode
260 * @inode: inode to check permission on
261 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
262 *
263 * Used to check for read/write/execute permissions on an inode.
264 * We use "fsuid" for this, letting us set arbitrary permissions
265 * for filesystem access without changing the "normal" uids which
266 * are used for other things.
267 */
Al Virof419a2e2008-07-22 00:07:17 -0400268int inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Al Viroe6305c42008-07-15 21:03:57 -0400270 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 if (mask & MAY_WRITE) {
Miklos Szeredi22590e42007-10-16 23:27:08 -0700273 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 /*
276 * Nobody gets write access to a read-only fs.
277 */
278 if (IS_RDONLY(inode) &&
279 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
280 return -EROFS;
281
282 /*
283 * Nobody gets write access to an immutable file.
284 */
285 if (IS_IMMUTABLE(inode))
286 return -EACCES;
287 }
288
Al Viroacfa4382008-12-04 10:06:33 -0500289 if (inode->i_op->permission)
Nick Pigginb74c79e2011-01-07 17:49:58 +1100290 retval = inode->i_op->permission(inode, mask, 0);
Miklos Szeredif696a362008-07-31 13:41:58 +0200291 else
Nick Pigginb74c79e2011-01-07 17:49:58 +1100292 retval = generic_permission(inode, mask, 0,
293 inode->i_op->check_acl);
Miklos Szeredif696a362008-07-31 13:41:58 +0200294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if (retval)
296 return retval;
297
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700298 retval = devcgroup_inode_permission(inode, mask);
299 if (retval)
300 return retval;
301
Eric Parisd09ca732010-07-23 11:43:57 -0400302 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800305/**
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800306 * file_permission - check for additional access rights to a given file
307 * @file: file to check access rights for
308 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
309 *
310 * Used to check for read/write/execute permissions on an already opened
311 * file.
312 *
313 * Note:
314 * Do not use this function in new code. All access checks should
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200315 * be done using inode_permission().
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800316 */
317int file_permission(struct file *file, int mask)
318{
Al Virof419a2e2008-07-22 00:07:17 -0400319 return inode_permission(file->f_path.dentry->d_inode, mask);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800320}
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322/*
323 * get_write_access() gets write permission for a file.
324 * put_write_access() releases this write permission.
325 * This is used for regular files.
326 * We cannot support write (and maybe mmap read-write shared) accesses and
327 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
328 * can have the following values:
329 * 0: no writers, no VM_DENYWRITE mappings
330 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
331 * > 0: (i_writecount) users are writing to the file.
332 *
333 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
334 * except for the cases where we don't hold i_writecount yet. Then we need to
335 * use {get,deny}_write_access() - these functions check the sign and refuse
336 * to do the change if sign is wrong. Exclusion between them is provided by
337 * the inode->i_lock spinlock.
338 */
339
340int get_write_access(struct inode * inode)
341{
342 spin_lock(&inode->i_lock);
343 if (atomic_read(&inode->i_writecount) < 0) {
344 spin_unlock(&inode->i_lock);
345 return -ETXTBSY;
346 }
347 atomic_inc(&inode->i_writecount);
348 spin_unlock(&inode->i_lock);
349
350 return 0;
351}
352
353int deny_write_access(struct file * file)
354{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800355 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 spin_lock(&inode->i_lock);
358 if (atomic_read(&inode->i_writecount) > 0) {
359 spin_unlock(&inode->i_lock);
360 return -ETXTBSY;
361 }
362 atomic_dec(&inode->i_writecount);
363 spin_unlock(&inode->i_lock);
364
365 return 0;
366}
367
Jan Blunck1d957f92008-02-14 19:34:35 -0800368/**
Jan Blunck5dd784d2008-02-14 19:34:38 -0800369 * path_get - get a reference to a path
370 * @path: path to get the reference to
371 *
372 * Given a path increment the reference count to the dentry and the vfsmount.
373 */
374void path_get(struct path *path)
375{
376 mntget(path->mnt);
377 dget(path->dentry);
378}
379EXPORT_SYMBOL(path_get);
380
381/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800382 * path_put - put a reference to a path
383 * @path: path to put the reference to
384 *
385 * Given a path decrement the reference count to the dentry and the vfsmount.
386 */
387void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Jan Blunck1d957f92008-02-14 19:34:35 -0800389 dput(path->dentry);
390 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
Jan Blunck1d957f92008-02-14 19:34:35 -0800392EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Al Viro19660af2011-03-25 10:32:48 -0400394/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100395 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400396 * Documentation/filesystems/path-lookup.txt). In situations when we can't
397 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
398 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
399 * mode. Refcounts are grabbed at the last known good point before rcu-walk
400 * got stuck, so ref-walk may continue from there. If this is not successful
401 * (eg. a seqcount has changed), then failure is returned and it's up to caller
402 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100403 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100404
405/**
Al Viro19660af2011-03-25 10:32:48 -0400406 * unlazy_walk - try to switch to ref-walk mode.
407 * @nd: nameidata pathwalk data
408 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800409 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100410 *
Al Viro19660af2011-03-25 10:32:48 -0400411 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
412 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
413 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100414 */
Al Viro19660af2011-03-25 10:32:48 -0400415static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100416{
417 struct fs_struct *fs = current->fs;
418 struct dentry *parent = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500419 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100420
421 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500422 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
423 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100424 spin_lock(&fs->lock);
425 if (nd->root.mnt != fs->root.mnt ||
426 nd->root.dentry != fs->root.dentry)
427 goto err_root;
428 }
429 spin_lock(&parent->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400430 if (!dentry) {
431 if (!__d_rcu_to_refcount(parent, nd->seq))
432 goto err_parent;
433 BUG_ON(nd->inode != parent->d_inode);
434 } else {
435 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
436 if (!__d_rcu_to_refcount(dentry, nd->seq))
437 goto err_child;
438 /*
439 * If the sequence check on the child dentry passed, then
440 * the child has not been removed from its parent. This
441 * means the parent dentry must be valid and able to take
442 * a reference at this point.
443 */
444 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
445 BUG_ON(!parent->d_count);
446 parent->d_count++;
447 spin_unlock(&dentry->d_lock);
448 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100449 spin_unlock(&parent->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500450 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100451 path_get(&nd->root);
452 spin_unlock(&fs->lock);
453 }
454 mntget(nd->path.mnt);
455
456 rcu_read_unlock();
457 br_read_unlock(vfsmount_lock);
458 nd->flags &= ~LOOKUP_RCU;
459 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400460
461err_child:
Nick Piggin31e6b012011-01-07 17:49:52 +1100462 spin_unlock(&dentry->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400463err_parent:
Nick Piggin31e6b012011-01-07 17:49:52 +1100464 spin_unlock(&parent->d_lock);
465err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500466 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100467 spin_unlock(&fs->lock);
468 return -ECHILD;
469}
470
Nick Piggin31e6b012011-01-07 17:49:52 +1100471/**
Trond Myklebust834f2a42005-10-18 14:20:16 -0700472 * release_open_intent - free up open intent resources
473 * @nd: pointer to nameidata
474 */
475void release_open_intent(struct nameidata *nd)
476{
Linus Torvalds2dab5972011-02-11 15:53:38 -0800477 struct file *file = nd->intent.open.file;
478
479 if (file && !IS_ERR(file)) {
480 if (file->f_path.dentry == NULL)
481 put_filp(file);
482 else
483 fput(file);
484 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700485}
486
Al Virof60aef72011-02-15 01:35:28 -0500487static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
Nick Piggin34286d62011-01-07 17:49:57 +1100488{
Al Virof60aef72011-02-15 01:35:28 -0500489 return dentry->d_op->d_revalidate(dentry, nd);
Nick Piggin34286d62011-01-07 17:49:57 +1100490}
491
Al Virof5e1c1c2011-02-15 01:32:55 -0500492static struct dentry *
Ian Kentbcdc5e02006-09-27 01:50:44 -0700493do_revalidate(struct dentry *dentry, struct nameidata *nd)
494{
Al Virof5e1c1c2011-02-15 01:32:55 -0500495 int status = d_revalidate(dentry, nd);
Ian Kentbcdc5e02006-09-27 01:50:44 -0700496 if (unlikely(status <= 0)) {
497 /*
498 * The dentry failed validation.
499 * If d_revalidate returned 0 attempt to invalidate
500 * the dentry otherwise d_revalidate is asking us
501 * to return a fail status.
502 */
Nick Piggin34286d62011-01-07 17:49:57 +1100503 if (status < 0) {
Al Virof5e1c1c2011-02-15 01:32:55 -0500504 dput(dentry);
Nick Piggin34286d62011-01-07 17:49:57 +1100505 dentry = ERR_PTR(status);
Al Virof5e1c1c2011-02-15 01:32:55 -0500506 } else if (!d_invalidate(dentry)) {
507 dput(dentry);
508 dentry = NULL;
Ian Kentbcdc5e02006-09-27 01:50:44 -0700509 }
510 }
511 return dentry;
512}
513
Al Viro9f1fafe2011-03-25 11:00:12 -0400514/**
515 * complete_walk - successful completion of path walk
516 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500517 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400518 * If we had been in RCU mode, drop out of it and legitimize nd->path.
519 * Revalidate the final result, unless we'd already done that during
520 * the path walk or the filesystem doesn't ask for it. Return 0 on
521 * success, -error on failure. In case of failure caller does not
522 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500523 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400524static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500525{
Al Viro16c2cd72011-02-22 15:50:10 -0500526 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500527 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500528
Al Viro9f1fafe2011-03-25 11:00:12 -0400529 if (nd->flags & LOOKUP_RCU) {
530 nd->flags &= ~LOOKUP_RCU;
531 if (!(nd->flags & LOOKUP_ROOT))
532 nd->root.mnt = NULL;
533 spin_lock(&dentry->d_lock);
534 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
535 spin_unlock(&dentry->d_lock);
536 rcu_read_unlock();
537 br_read_unlock(vfsmount_lock);
538 return -ECHILD;
539 }
540 BUG_ON(nd->inode != dentry->d_inode);
541 spin_unlock(&dentry->d_lock);
542 mntget(nd->path.mnt);
543 rcu_read_unlock();
544 br_read_unlock(vfsmount_lock);
545 }
546
Al Viro16c2cd72011-02-22 15:50:10 -0500547 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500548 return 0;
549
Al Viro16c2cd72011-02-22 15:50:10 -0500550 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
551 return 0;
552
553 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
554 return 0;
555
556 /* Note: we do not d_invalidate() */
Nick Piggin34286d62011-01-07 17:49:57 +1100557 status = d_revalidate(dentry, nd);
Jeff Layton39159de2009-12-07 12:01:50 -0500558 if (status > 0)
559 return 0;
560
Al Viro16c2cd72011-02-22 15:50:10 -0500561 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500562 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500563
Al Viro9f1fafe2011-03-25 11:00:12 -0400564 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500565 return status;
566}
567
568/*
Al Virob75b5082009-12-16 01:01:38 -0500569 * Short-cut version of permission(), for calling on directories
570 * during pathname resolution. Combines parts of permission()
571 * and generic_permission(), and tests ONLY for MAY_EXEC permission.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 *
573 * If appropriate, check DAC only. If not appropriate, or
Al Virob75b5082009-12-16 01:01:38 -0500574 * short-cut DAC fails, then call ->permission() to do more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 * complete permission check.
576 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100577static inline int exec_permission(struct inode *inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700579 int ret;
Serge E. Hallyne795b712011-03-23 16:43:25 -0700580 struct user_namespace *ns = inode_userns(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700582 if (inode->i_op->permission) {
Nick Pigginb74c79e2011-01-07 17:49:58 +1100583 ret = inode->i_op->permission(inode, MAY_EXEC, flags);
584 } else {
585 ret = acl_permission_check(inode, MAY_EXEC, flags,
586 inode->i_op->check_acl);
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700587 }
Nick Pigginb74c79e2011-01-07 17:49:58 +1100588 if (likely(!ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 goto ok;
Nick Pigginb74c79e2011-01-07 17:49:58 +1100590 if (ret == -ECHILD)
Nick Piggin31e6b012011-01-07 17:49:52 +1100591 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Serge E. Hallyne795b712011-03-23 16:43:25 -0700593 if (ns_capable(ns, CAP_DAC_OVERRIDE) ||
594 ns_capable(ns, CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 goto ok;
596
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700597 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598ok:
Nick Pigginb74c79e2011-01-07 17:49:58 +1100599 return security_inode_exec_permission(inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600}
601
Al Viro2a737872009-04-07 11:49:53 -0400602static __always_inline void set_root(struct nameidata *nd)
603{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200604 if (!nd->root.mnt)
605 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400606}
607
Al Viro6de88d72009-08-09 01:41:57 +0400608static int link_path_walk(const char *, struct nameidata *);
609
Nick Piggin31e6b012011-01-07 17:49:52 +1100610static __always_inline void set_root_rcu(struct nameidata *nd)
611{
612 if (!nd->root.mnt) {
613 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100614 unsigned seq;
615
616 do {
617 seq = read_seqcount_begin(&fs->seq);
618 nd->root = fs->root;
Tim Chenc1530012011-04-15 11:39:29 -0700619 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
Nick Pigginc28cc362011-01-07 17:49:53 +1100620 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100621 }
622}
623
Arjan van de Venf1662352006-01-14 13:21:31 -0800624static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Nick Piggin31e6b012011-01-07 17:49:52 +1100626 int ret;
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 if (IS_ERR(link))
629 goto fail;
630
631 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400632 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800633 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400634 nd->path = nd->root;
635 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500636 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100638 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100639
Nick Piggin31e6b012011-01-07 17:49:52 +1100640 ret = link_path_walk(link, nd);
641 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800643 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 return PTR_ERR(link);
645}
646
Jan Blunck1d957f92008-02-14 19:34:35 -0800647static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700648{
649 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800650 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700651 mntput(path->mnt);
652}
653
Nick Piggin7b9337a2011-01-14 08:42:43 +0000654static inline void path_to_nameidata(const struct path *path,
655 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700656{
Nick Piggin31e6b012011-01-07 17:49:52 +1100657 if (!(nd->flags & LOOKUP_RCU)) {
658 dput(nd->path.dentry);
659 if (nd->path.mnt != path->mnt)
660 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800661 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100662 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800663 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700664}
665
Al Viro574197e2011-03-14 22:20:34 -0400666static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
667{
668 struct inode *inode = link->dentry->d_inode;
669 if (!IS_ERR(cookie) && inode->i_op->put_link)
670 inode->i_op->put_link(link->dentry, nd, cookie);
671 path_put(link);
672}
673
Al Virodef4af32009-12-26 08:37:05 -0500674static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400675follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800676{
677 int error;
Nick Piggin7b9337a2011-01-14 08:42:43 +0000678 struct dentry *dentry = link->dentry;
Ian Kent051d3812006-03-27 01:14:53 -0800679
Al Viro844a3912011-02-15 00:38:26 -0500680 BUG_ON(nd->flags & LOOKUP_RCU);
681
Al Viro0e794582011-03-16 02:45:02 -0400682 if (link->mnt == nd->path.mnt)
683 mntget(link->mnt);
684
Al Viro574197e2011-03-14 22:20:34 -0400685 if (unlikely(current->total_link_count >= 40)) {
686 *p = ERR_PTR(-ELOOP); /* no ->put_link(), please */
Al Viro574197e2011-03-14 22:20:34 -0400687 path_put(&nd->path);
688 return -ELOOP;
689 }
690 cond_resched();
691 current->total_link_count++;
692
Nick Piggin7b9337a2011-01-14 08:42:43 +0000693 touch_atime(link->mnt, dentry);
Ian Kent051d3812006-03-27 01:14:53 -0800694 nd_set_link(nd, NULL);
695
Al Viro36f3b4f2011-02-22 21:24:38 -0500696 error = security_inode_follow_link(link->dentry, nd);
697 if (error) {
698 *p = ERR_PTR(error); /* no ->put_link(), please */
699 path_put(&nd->path);
700 return error;
701 }
702
Al Viro86acdca12009-12-22 23:45:11 -0500703 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500704 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
705 error = PTR_ERR(*p);
706 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800707 char *s = nd_get_link(nd);
708 error = 0;
709 if (s)
710 error = __vfs_follow_link(nd, s);
Al Virobcda7652011-03-13 16:42:14 -0400711 else if (nd->last_type == LAST_BIND) {
Al Viro16c2cd72011-02-22 15:50:10 -0500712 nd->flags |= LOOKUP_JUMPED;
Al Virob21041d2011-03-14 20:01:51 -0400713 nd->inode = nd->path.dentry->d_inode;
714 if (nd->inode->i_op->follow_link) {
Al Virobcda7652011-03-13 16:42:14 -0400715 /* stepped on a _really_ weird one */
716 path_put(&nd->path);
717 error = -ELOOP;
718 }
719 }
Ian Kent051d3812006-03-27 01:14:53 -0800720 }
Ian Kent051d3812006-03-27 01:14:53 -0800721 return error;
722}
723
Nick Piggin31e6b012011-01-07 17:49:52 +1100724static int follow_up_rcu(struct path *path)
725{
726 struct vfsmount *parent;
727 struct dentry *mountpoint;
728
729 parent = path->mnt->mnt_parent;
730 if (parent == path->mnt)
731 return 0;
732 mountpoint = path->mnt->mnt_mountpoint;
733 path->dentry = mountpoint;
734 path->mnt = parent;
735 return 1;
736}
737
Al Virobab77eb2009-04-18 03:26:48 -0400738int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
740 struct vfsmount *parent;
741 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000742
743 br_read_lock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400744 parent = path->mnt->mnt_parent;
745 if (parent == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000746 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 return 0;
748 }
749 mntget(parent);
Al Virobab77eb2009-04-18 03:26:48 -0400750 mountpoint = dget(path->mnt->mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000751 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400752 dput(path->dentry);
753 path->dentry = mountpoint;
754 mntput(path->mnt);
755 path->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return 1;
757}
758
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100759/*
David Howells9875cf82011-01-14 18:45:21 +0000760 * Perform an automount
761 * - return -EISDIR to tell follow_managed() to stop and return the path we
762 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 */
David Howells9875cf82011-01-14 18:45:21 +0000764static int follow_automount(struct path *path, unsigned flags,
765 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100766{
David Howells9875cf82011-01-14 18:45:21 +0000767 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000768 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100769
David Howells9875cf82011-01-14 18:45:21 +0000770 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
771 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700772
David Howells6f45b652011-01-14 18:45:31 +0000773 /* We don't want to mount if someone supplied AT_NO_AUTOMOUNT
774 * and this is the terminal part of the path.
775 */
776 if ((flags & LOOKUP_NO_AUTOMOUNT) && !(flags & LOOKUP_CONTINUE))
777 return -EISDIR; /* we actually want to stop here */
778
David Howells9875cf82011-01-14 18:45:21 +0000779 /* We want to mount if someone is trying to open/create a file of any
780 * type under the mountpoint, wants to traverse through the mountpoint
781 * or wants to open the mounted directory.
782 *
783 * We don't want to mount if someone's just doing a stat and they've
784 * set AT_SYMLINK_NOFOLLOW - unless they're stat'ing a directory and
785 * appended a '/' to the name.
786 */
787 if (!(flags & LOOKUP_FOLLOW) &&
788 !(flags & (LOOKUP_CONTINUE | LOOKUP_DIRECTORY |
789 LOOKUP_OPEN | LOOKUP_CREATE)))
790 return -EISDIR;
791
792 current->total_link_count++;
793 if (current->total_link_count >= 40)
794 return -ELOOP;
795
796 mnt = path->dentry->d_op->d_automount(path);
797 if (IS_ERR(mnt)) {
798 /*
799 * The filesystem is allowed to return -EISDIR here to indicate
800 * it doesn't want to automount. For instance, autofs would do
801 * this so that its userspace daemon can mount on this dentry.
802 *
803 * However, we can only permit this if it's a terminal point in
804 * the path being looked up; if it wasn't then the remainder of
805 * the path is inaccessible and we should say so.
806 */
807 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_CONTINUE))
808 return -EREMOTE;
809 return PTR_ERR(mnt);
810 }
David Howellsea5b7782011-01-14 19:10:03 +0000811
David Howells9875cf82011-01-14 18:45:21 +0000812 if (!mnt) /* mount collision */
813 return 0;
814
Al Viro19a167a2011-01-17 01:35:23 -0500815 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000816
David Howellsea5b7782011-01-14 19:10:03 +0000817 switch (err) {
818 case -EBUSY:
819 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500820 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000821 case 0:
David Howellsea5b7782011-01-14 19:10:03 +0000822 dput(path->dentry);
823 if (*need_mntput)
824 mntput(path->mnt);
825 path->mnt = mnt;
826 path->dentry = dget(mnt->mnt_root);
827 *need_mntput = true;
828 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500829 default:
830 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000831 }
Al Viro19a167a2011-01-17 01:35:23 -0500832
David Howells9875cf82011-01-14 18:45:21 +0000833}
834
835/*
836 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000837 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000838 * - Flagged as mountpoint
839 * - Flagged as automount point
840 *
841 * This may only be called in refwalk mode.
842 *
843 * Serialization is taken care of in namespace.c
844 */
845static int follow_managed(struct path *path, unsigned flags)
846{
847 unsigned managed;
848 bool need_mntput = false;
849 int ret;
850
851 /* Given that we're not holding a lock here, we retain the value in a
852 * local variable for each dentry as we look at it so that we don't see
853 * the components of that value change under us */
854 while (managed = ACCESS_ONCE(path->dentry->d_flags),
855 managed &= DCACHE_MANAGED_DENTRY,
856 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000857 /* Allow the filesystem to manage the transit without i_mutex
858 * being held. */
859 if (managed & DCACHE_MANAGE_TRANSIT) {
860 BUG_ON(!path->dentry->d_op);
861 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -0400862 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000863 if (ret < 0)
864 return ret == -EISDIR ? 0 : ret;
865 }
866
David Howells9875cf82011-01-14 18:45:21 +0000867 /* Transit to a mounted filesystem. */
868 if (managed & DCACHE_MOUNTED) {
869 struct vfsmount *mounted = lookup_mnt(path);
870 if (mounted) {
871 dput(path->dentry);
872 if (need_mntput)
873 mntput(path->mnt);
874 path->mnt = mounted;
875 path->dentry = dget(mounted->mnt_root);
876 need_mntput = true;
877 continue;
878 }
879
880 /* Something is mounted on this dentry in another
881 * namespace and/or whatever was mounted there in this
882 * namespace got unmounted before we managed to get the
883 * vfsmount_lock */
884 }
885
886 /* Handle an automount point */
887 if (managed & DCACHE_NEED_AUTOMOUNT) {
888 ret = follow_automount(path, flags, &need_mntput);
889 if (ret < 0)
890 return ret == -EISDIR ? 0 : ret;
891 continue;
892 }
893
894 /* We didn't change the current path point */
895 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
David Howells9875cf82011-01-14 18:45:21 +0000897 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
David Howellscc53ce52011-01-14 18:45:26 +0000900int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901{
902 struct vfsmount *mounted;
903
Al Viro1c755af2009-04-18 14:06:57 -0400904 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400906 dput(path->dentry);
907 mntput(path->mnt);
908 path->mnt = mounted;
909 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return 1;
911 }
912 return 0;
913}
914
Ian Kent62a73752011-03-25 01:51:02 +0800915static inline bool managed_dentry_might_block(struct dentry *dentry)
916{
917 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
918 dentry->d_op->d_manage(dentry, true) < 0);
919}
920
David Howells9875cf82011-01-14 18:45:21 +0000921/*
Al Viro287548e2011-05-27 06:50:06 -0400922 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
923 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +0000924 */
925static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -0400926 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +0000927{
Ian Kent62a73752011-03-25 01:51:02 +0800928 for (;;) {
David Howells9875cf82011-01-14 18:45:21 +0000929 struct vfsmount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +0800930 /*
931 * Don't forget we might have a non-mountpoint managed dentry
932 * that wants to block transit.
933 */
934 *inode = path->dentry->d_inode;
Al Viro287548e2011-05-27 06:50:06 -0400935 if (unlikely(managed_dentry_might_block(path->dentry)))
David Howellsab909112011-01-14 18:46:51 +0000936 return false;
Ian Kent62a73752011-03-25 01:51:02 +0800937
938 if (!d_mountpoint(path->dentry))
939 break;
940
David Howells9875cf82011-01-14 18:45:21 +0000941 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
942 if (!mounted)
943 break;
944 path->mnt = mounted;
945 path->dentry = mounted->mnt_root;
946 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
David Howells9875cf82011-01-14 18:45:21 +0000947 }
948
949 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
Al Viro287548e2011-05-27 06:50:06 -0400950 return false;
David Howells9875cf82011-01-14 18:45:21 +0000951 return true;
952}
953
Al Viro287548e2011-05-27 06:50:06 -0400954static void follow_mount_rcu(struct nameidata *nd, struct path *path,
955 struct inode **inode)
956{
957 for (;;) {
958 struct vfsmount *mounted;
959 *inode = path->dentry->d_inode;
960
961 if (!d_mountpoint(path->dentry))
962 break;
963
964 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
965 if (!mounted)
966 break;
967 path->mnt = mounted;
968 path->dentry = mounted->mnt_root;
969 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
970 }
971}
972
Nick Piggin31e6b012011-01-07 17:49:52 +1100973static int follow_dotdot_rcu(struct nameidata *nd)
974{
975 struct inode *inode = nd->inode;
976
977 set_root_rcu(nd);
978
David Howells9875cf82011-01-14 18:45:21 +0000979 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100980 if (nd->path.dentry == nd->root.dentry &&
981 nd->path.mnt == nd->root.mnt) {
982 break;
983 }
984 if (nd->path.dentry != nd->path.mnt->mnt_root) {
985 struct dentry *old = nd->path.dentry;
986 struct dentry *parent = old->d_parent;
987 unsigned seq;
988
989 seq = read_seqcount_begin(&parent->d_seq);
990 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -0500991 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +1100992 inode = parent->d_inode;
993 nd->path.dentry = parent;
994 nd->seq = seq;
995 break;
996 }
997 if (!follow_up_rcu(&nd->path))
998 break;
999 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1000 inode = nd->path.dentry->d_inode;
1001 }
Al Viro287548e2011-05-27 06:50:06 -04001002 follow_mount_rcu(nd, &nd->path, &inode);
Nick Piggin31e6b012011-01-07 17:49:52 +11001003 nd->inode = inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001004 return 0;
Al Viroef7562d2011-03-04 14:35:59 -05001005
1006failed:
1007 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001008 if (!(nd->flags & LOOKUP_ROOT))
1009 nd->root.mnt = NULL;
Al Viroef7562d2011-03-04 14:35:59 -05001010 rcu_read_unlock();
1011 br_read_unlock(vfsmount_lock);
1012 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001013}
1014
David Howells9875cf82011-01-14 18:45:21 +00001015/*
David Howellscc53ce52011-01-14 18:45:26 +00001016 * Follow down to the covering mount currently visible to userspace. At each
1017 * point, the filesystem owning that dentry may be queried as to whether the
1018 * caller is permitted to proceed or not.
1019 *
1020 * Care must be taken as namespace_sem may be held (indicated by mounting_here
1021 * being true).
1022 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001023int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001024{
1025 unsigned managed;
1026 int ret;
1027
1028 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1029 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1030 /* Allow the filesystem to manage the transit without i_mutex
1031 * being held.
1032 *
1033 * We indicate to the filesystem if someone is trying to mount
1034 * something here. This gives autofs the chance to deny anyone
1035 * other than its daemon the right to mount on its
1036 * superstructure.
1037 *
1038 * The filesystem may sleep at this point.
1039 */
1040 if (managed & DCACHE_MANAGE_TRANSIT) {
1041 BUG_ON(!path->dentry->d_op);
1042 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001043 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001044 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001045 if (ret < 0)
1046 return ret == -EISDIR ? 0 : ret;
1047 }
1048
1049 /* Transit to a mounted filesystem. */
1050 if (managed & DCACHE_MOUNTED) {
1051 struct vfsmount *mounted = lookup_mnt(path);
1052 if (!mounted)
1053 break;
1054 dput(path->dentry);
1055 mntput(path->mnt);
1056 path->mnt = mounted;
1057 path->dentry = dget(mounted->mnt_root);
1058 continue;
1059 }
1060
1061 /* Don't handle automount points here */
1062 break;
1063 }
1064 return 0;
1065}
1066
1067/*
David Howells9875cf82011-01-14 18:45:21 +00001068 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1069 */
1070static void follow_mount(struct path *path)
1071{
1072 while (d_mountpoint(path->dentry)) {
1073 struct vfsmount *mounted = lookup_mnt(path);
1074 if (!mounted)
1075 break;
1076 dput(path->dentry);
1077 mntput(path->mnt);
1078 path->mnt = mounted;
1079 path->dentry = dget(mounted->mnt_root);
1080 }
1081}
1082
Nick Piggin31e6b012011-01-07 17:49:52 +11001083static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
Al Viro2a737872009-04-07 11:49:53 -04001085 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001088 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Al Viro2a737872009-04-07 11:49:53 -04001090 if (nd->path.dentry == nd->root.dentry &&
1091 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 break;
1093 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001094 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001095 /* rare case of legitimate dget_parent()... */
1096 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 dput(old);
1098 break;
1099 }
Al Viro3088dd72010-01-30 15:47:29 -05001100 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
Al Viro79ed0222009-04-18 13:59:41 -04001103 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001104 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107/*
Nick Pigginbaa03892010-08-18 04:37:31 +10001108 * Allocate a dentry with name and parent, and perform a parent
1109 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1110 * on error. parent->d_inode->i_mutex must be held. d_lookup must
1111 * have verified that no child exists while under i_mutex.
1112 */
1113static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1114 struct qstr *name, struct nameidata *nd)
1115{
1116 struct inode *inode = parent->d_inode;
1117 struct dentry *dentry;
1118 struct dentry *old;
1119
1120 /* Don't create child dentry for a dead directory. */
1121 if (unlikely(IS_DEADDIR(inode)))
1122 return ERR_PTR(-ENOENT);
1123
1124 dentry = d_alloc(parent, name);
1125 if (unlikely(!dentry))
1126 return ERR_PTR(-ENOMEM);
1127
1128 old = inode->i_op->lookup(inode, dentry, nd);
1129 if (unlikely(old)) {
1130 dput(dentry);
1131 dentry = old;
1132 }
1133 return dentry;
1134}
1135
1136/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 * It's more convoluted than I'd like it to be, but... it's still fairly
1138 * small and for now I'd prefer to have fast path as straight as possible.
1139 * It _is_ time-critical.
1140 */
1141static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +11001142 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143{
Jan Blunck4ac91372008-02-14 19:34:32 -08001144 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001145 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001146 int need_reval = 1;
1147 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001148 int err;
1149
Al Viro3cac2602009-08-13 18:27:43 +04001150 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001151 * Rename seqlock is not required here because in the off chance
1152 * of a false negative due to a concurrent rename, we're going to
1153 * do the non-racy lookup, below.
1154 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001155 if (nd->flags & LOOKUP_RCU) {
1156 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001157 *inode = nd->inode;
1158 dentry = __d_lookup_rcu(parent, name, &seq, inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001159 if (!dentry)
1160 goto unlazy;
1161
Nick Piggin31e6b012011-01-07 17:49:52 +11001162 /* Memory barrier in read_seqcount_begin of child is enough */
1163 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1164 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001165 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001166
Al Viro24643082011-02-15 01:26:22 -05001167 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro5a18fff2011-03-11 04:44:53 -05001168 status = d_revalidate(dentry, nd);
1169 if (unlikely(status <= 0)) {
1170 if (status != -ECHILD)
1171 need_reval = 0;
1172 goto unlazy;
1173 }
Al Viro24643082011-02-15 01:26:22 -05001174 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001175 path->mnt = mnt;
1176 path->dentry = dentry;
Al Viro287548e2011-05-27 06:50:06 -04001177 if (likely(__follow_mount_rcu(nd, path, inode)))
David Howells9875cf82011-01-14 18:45:21 +00001178 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001179unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001180 if (unlazy_walk(nd, dentry))
1181 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001182 } else {
1183 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001184 }
Al Viro5a18fff2011-03-11 04:44:53 -05001185
1186retry:
1187 if (unlikely(!dentry)) {
1188 struct inode *dir = parent->d_inode;
1189 BUG_ON(nd->inode != dir);
1190
1191 mutex_lock(&dir->i_mutex);
1192 dentry = d_lookup(parent, name);
1193 if (likely(!dentry)) {
1194 dentry = d_alloc_and_lookup(parent, name, nd);
1195 if (IS_ERR(dentry)) {
1196 mutex_unlock(&dir->i_mutex);
1197 return PTR_ERR(dentry);
1198 }
1199 /* known good */
1200 need_reval = 0;
1201 status = 1;
1202 }
1203 mutex_unlock(&dir->i_mutex);
Al Viro24643082011-02-15 01:26:22 -05001204 }
Al Viro5a18fff2011-03-11 04:44:53 -05001205 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1206 status = d_revalidate(dentry, nd);
1207 if (unlikely(status <= 0)) {
1208 if (status < 0) {
1209 dput(dentry);
1210 return status;
1211 }
1212 if (!d_invalidate(dentry)) {
1213 dput(dentry);
1214 dentry = NULL;
1215 need_reval = 1;
1216 goto retry;
1217 }
1218 }
1219
David Howells9875cf82011-01-14 18:45:21 +00001220 path->mnt = mnt;
1221 path->dentry = dentry;
1222 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001223 if (unlikely(err < 0)) {
1224 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001225 return err;
Ian Kent89312212011-01-18 12:06:10 +08001226 }
David Howells9875cf82011-01-14 18:45:21 +00001227 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
Al Viro52094c82011-02-21 21:34:47 -05001231static inline int may_lookup(struct nameidata *nd)
1232{
1233 if (nd->flags & LOOKUP_RCU) {
1234 int err = exec_permission(nd->inode, IPERM_FLAG_RCU);
1235 if (err != -ECHILD)
1236 return err;
Al Viro19660af2011-03-25 10:32:48 -04001237 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001238 return -ECHILD;
1239 }
1240 return exec_permission(nd->inode, 0);
1241}
1242
Al Viro9856fa12011-03-04 14:22:06 -05001243static inline int handle_dots(struct nameidata *nd, int type)
1244{
1245 if (type == LAST_DOTDOT) {
1246 if (nd->flags & LOOKUP_RCU) {
1247 if (follow_dotdot_rcu(nd))
1248 return -ECHILD;
1249 } else
1250 follow_dotdot(nd);
1251 }
1252 return 0;
1253}
1254
Al Viro951361f2011-03-04 14:44:37 -05001255static void terminate_walk(struct nameidata *nd)
1256{
1257 if (!(nd->flags & LOOKUP_RCU)) {
1258 path_put(&nd->path);
1259 } else {
1260 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001261 if (!(nd->flags & LOOKUP_ROOT))
1262 nd->root.mnt = NULL;
Al Viro951361f2011-03-04 14:44:37 -05001263 rcu_read_unlock();
1264 br_read_unlock(vfsmount_lock);
1265 }
1266}
1267
Al Viroce57dfc2011-03-13 19:58:58 -04001268static inline int walk_component(struct nameidata *nd, struct path *path,
1269 struct qstr *name, int type, int follow)
1270{
1271 struct inode *inode;
1272 int err;
1273 /*
1274 * "." and ".." are special - ".." especially so because it has
1275 * to be able to know about the current root directory and
1276 * parent relationships.
1277 */
1278 if (unlikely(type != LAST_NORM))
1279 return handle_dots(nd, type);
1280 err = do_lookup(nd, name, path, &inode);
1281 if (unlikely(err)) {
1282 terminate_walk(nd);
1283 return err;
1284 }
1285 if (!inode) {
1286 path_to_nameidata(path, nd);
1287 terminate_walk(nd);
1288 return -ENOENT;
1289 }
1290 if (unlikely(inode->i_op->follow_link) && follow) {
Al Viro19660af2011-03-25 10:32:48 -04001291 if (nd->flags & LOOKUP_RCU) {
1292 if (unlikely(unlazy_walk(nd, path->dentry))) {
1293 terminate_walk(nd);
1294 return -ECHILD;
1295 }
1296 }
Al Viroce57dfc2011-03-13 19:58:58 -04001297 BUG_ON(inode != path->dentry->d_inode);
1298 return 1;
1299 }
1300 path_to_nameidata(path, nd);
1301 nd->inode = inode;
1302 return 0;
1303}
1304
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305/*
Al Virob3563792011-03-14 21:54:55 -04001306 * This limits recursive symlink follows to 8, while
1307 * limiting consecutive symlinks to 40.
1308 *
1309 * Without that kind of total limit, nasty chains of consecutive
1310 * symlinks can cause almost arbitrarily long lookups.
1311 */
1312static inline int nested_symlink(struct path *path, struct nameidata *nd)
1313{
1314 int res;
1315
Al Virob3563792011-03-14 21:54:55 -04001316 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1317 path_put_conditional(path, nd);
1318 path_put(&nd->path);
1319 return -ELOOP;
1320 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001321 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001322
1323 nd->depth++;
1324 current->link_count++;
1325
1326 do {
1327 struct path link = *path;
1328 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001329
1330 res = follow_link(&link, nd, &cookie);
Al Virob3563792011-03-14 21:54:55 -04001331 if (!res)
1332 res = walk_component(nd, path, &nd->last,
1333 nd->last_type, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001334 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001335 } while (res > 0);
1336
1337 current->link_count--;
1338 nd->depth--;
1339 return res;
1340}
1341
1342/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001344 * This is the basic name resolution function, turning a pathname into
1345 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001347 * Returns 0 and nd will have valid dentry and mnt on success.
1348 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 */
Al Viro6de88d72009-08-09 01:41:57 +04001350static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351{
1352 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 int err;
1354 unsigned int lookup_flags = nd->flags;
1355
1356 while (*name=='/')
1357 name++;
1358 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001359 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 /* At this point we know we have a real path component. */
1362 for(;;) {
1363 unsigned long hash;
1364 struct qstr this;
1365 unsigned int c;
Al Virofe479a52011-02-22 15:10:03 -05001366 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Trond Myklebustcdce5d62005-10-18 14:20:18 -07001368 nd->flags |= LOOKUP_CONTINUE;
Al Viro52094c82011-02-21 21:34:47 -05001369
1370 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 if (err)
1372 break;
1373
1374 this.name = name;
1375 c = *(const unsigned char *)name;
1376
1377 hash = init_name_hash();
1378 do {
1379 name++;
1380 hash = partial_name_hash(c, hash);
1381 c = *(const unsigned char *)name;
1382 } while (c && (c != '/'));
1383 this.len = name - (const char *) this.name;
1384 this.hash = end_name_hash(hash);
1385
Al Virofe479a52011-02-22 15:10:03 -05001386 type = LAST_NORM;
1387 if (this.name[0] == '.') switch (this.len) {
1388 case 2:
Al Viro16c2cd72011-02-22 15:50:10 -05001389 if (this.name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001390 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001391 nd->flags |= LOOKUP_JUMPED;
1392 }
Al Virofe479a52011-02-22 15:10:03 -05001393 break;
1394 case 1:
1395 type = LAST_DOT;
1396 }
Al Viro5a202bc2011-03-08 14:17:44 -05001397 if (likely(type == LAST_NORM)) {
1398 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001399 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001400 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1401 err = parent->d_op->d_hash(parent, nd->inode,
1402 &this);
1403 if (err < 0)
1404 break;
1405 }
1406 }
Al Virofe479a52011-02-22 15:10:03 -05001407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 /* remove trailing slashes? */
1409 if (!c)
1410 goto last_component;
1411 while (*++name == '/');
1412 if (!*name)
Al Virob3563792011-03-14 21:54:55 -04001413 goto last_component;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Al Viroce57dfc2011-03-13 19:58:58 -04001415 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1416 if (err < 0)
1417 return err;
Al Virofe479a52011-02-22 15:10:03 -05001418
Al Viroce57dfc2011-03-13 19:58:58 -04001419 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001420 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001422 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001425 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 break;
1427 continue;
1428 /* here ends the main loop */
1429
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -08001431 /* Clear LOOKUP_CONTINUE iff it was previously unset */
1432 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Al Virob3563792011-03-14 21:54:55 -04001433 nd->last = this;
1434 nd->last_type = type;
Al Viro086e1832011-02-22 20:56:27 -05001435 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 }
Al Viro951361f2011-03-04 14:44:37 -05001437 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return err;
1439}
1440
Al Viro70e9b352011-03-05 21:12:22 -05001441static int path_init(int dfd, const char *name, unsigned int flags,
1442 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001444 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001445 int fput_needed;
1446 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
1448 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001449 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001451 if (flags & LOOKUP_ROOT) {
1452 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001453 if (*name) {
1454 if (!inode->i_op->lookup)
1455 return -ENOTDIR;
1456 retval = inode_permission(inode, MAY_EXEC);
1457 if (retval)
1458 return retval;
1459 }
Al Viro5b6ca022011-03-09 23:04:47 -05001460 nd->path = nd->root;
1461 nd->inode = inode;
1462 if (flags & LOOKUP_RCU) {
1463 br_read_lock(vfsmount_lock);
1464 rcu_read_lock();
1465 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1466 } else {
1467 path_get(&nd->path);
1468 }
1469 return 0;
1470 }
1471
Al Viro2a737872009-04-07 11:49:53 -04001472 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001475 if (flags & LOOKUP_RCU) {
1476 br_read_lock(vfsmount_lock);
1477 rcu_read_lock();
1478 set_root_rcu(nd);
1479 } else {
1480 set_root(nd);
1481 path_get(&nd->root);
1482 }
Al Viro2a737872009-04-07 11:49:53 -04001483 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001484 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001485 if (flags & LOOKUP_RCU) {
1486 struct fs_struct *fs = current->fs;
1487 unsigned seq;
1488
1489 br_read_lock(vfsmount_lock);
1490 rcu_read_lock();
1491
1492 do {
1493 seq = read_seqcount_begin(&fs->seq);
1494 nd->path = fs->pwd;
1495 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1496 } while (read_seqcount_retry(&fs->seq, seq));
1497 } else {
1498 get_fs_pwd(current->fs, &nd->path);
1499 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001500 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001501 struct dentry *dentry;
1502
Al Viro1abf0c72011-03-13 03:51:11 -04001503 file = fget_raw_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001504 retval = -EBADF;
1505 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001506 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001507
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001508 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001509
Al Virof52e0c12011-03-14 18:56:51 -04001510 if (*name) {
1511 retval = -ENOTDIR;
1512 if (!S_ISDIR(dentry->d_inode->i_mode))
1513 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001514
Al Virof52e0c12011-03-14 18:56:51 -04001515 retval = file_permission(file, MAY_EXEC);
1516 if (retval)
1517 goto fput_fail;
1518 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001519
Jan Blunck5dd784d2008-02-14 19:34:38 -08001520 nd->path = file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001521 if (flags & LOOKUP_RCU) {
1522 if (fput_needed)
Al Viro70e9b352011-03-05 21:12:22 -05001523 *fp = file;
Al Viroe41f7d42011-02-22 14:02:58 -05001524 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1525 br_read_lock(vfsmount_lock);
1526 rcu_read_lock();
1527 } else {
1528 path_get(&file->f_path);
1529 fput_light(file, fput_needed);
1530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 }
Al Viroe41f7d42011-02-22 14:02:58 -05001532
Nick Piggin31e6b012011-01-07 17:49:52 +11001533 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001534 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001535
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001536fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001537 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001538out_fail:
1539 return retval;
1540}
1541
Al Virobd92d7f2011-03-14 19:54:59 -04001542static inline int lookup_last(struct nameidata *nd, struct path *path)
1543{
1544 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1545 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1546
1547 nd->flags &= ~LOOKUP_PARENT;
1548 return walk_component(nd, path, &nd->last, nd->last_type,
1549 nd->flags & LOOKUP_FOLLOW);
1550}
1551
Al Viro9b4a9b12009-04-07 11:44:16 -04001552/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001553static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001554 unsigned int flags, struct nameidata *nd)
1555{
Al Viro70e9b352011-03-05 21:12:22 -05001556 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001557 struct path path;
1558 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001559
1560 /*
1561 * Path walking is largely split up into 2 different synchronisation
1562 * schemes, rcu-walk and ref-walk (explained in
1563 * Documentation/filesystems/path-lookup.txt). These share much of the
1564 * path walk code, but some things particularly setup, cleanup, and
1565 * following mounts are sufficiently divergent that functions are
1566 * duplicated. Typically there is a function foo(), and its RCU
1567 * analogue, foo_rcu().
1568 *
1569 * -ECHILD is the error number of choice (just to avoid clashes) that
1570 * is returned if some aspect of an rcu-walk fails. Such an error must
1571 * be handled by restarting a traditional ref-walk (which will always
1572 * be able to complete).
1573 */
Al Virobd92d7f2011-03-14 19:54:59 -04001574 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001575
Al Virobd92d7f2011-03-14 19:54:59 -04001576 if (unlikely(err))
1577 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001578
1579 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001580 err = link_path_walk(name, nd);
1581
1582 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001583 err = lookup_last(nd, &path);
1584 while (err > 0) {
1585 void *cookie;
1586 struct path link = path;
Al Virobd92d7f2011-03-14 19:54:59 -04001587 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001588 err = follow_link(&link, nd, &cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001589 if (!err)
1590 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001591 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001592 }
1593 }
Al Viroee0827c2011-02-21 23:38:09 -05001594
Al Viro9f1fafe2011-03-25 11:00:12 -04001595 if (!err)
1596 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001597
1598 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1599 if (!nd->inode->i_op->lookup) {
1600 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001601 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001602 }
1603 }
Al Viro16c2cd72011-02-22 15:50:10 -05001604
Al Viro70e9b352011-03-05 21:12:22 -05001605 if (base)
1606 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001607
Al Viro5b6ca022011-03-09 23:04:47 -05001608 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001609 path_put(&nd->root);
1610 nd->root.mnt = NULL;
1611 }
Al Virobd92d7f2011-03-14 19:54:59 -04001612 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001613}
Nick Piggin31e6b012011-01-07 17:49:52 +11001614
Al Viroee0827c2011-02-21 23:38:09 -05001615static int do_path_lookup(int dfd, const char *name,
1616 unsigned int flags, struct nameidata *nd)
1617{
1618 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1619 if (unlikely(retval == -ECHILD))
1620 retval = path_lookupat(dfd, name, flags, nd);
1621 if (unlikely(retval == -ESTALE))
1622 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001623
1624 if (likely(!retval)) {
1625 if (unlikely(!audit_dummy_context())) {
1626 if (nd->path.dentry && nd->inode)
1627 audit_inode(name, nd->path.dentry);
1628 }
1629 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001630 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631}
1632
Al Viroc9c6cac2011-02-16 15:15:47 -05001633int kern_path_parent(const char *name, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001634{
Al Viroc9c6cac2011-02-16 15:15:47 -05001635 return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001636}
1637
Al Virod1811462008-08-02 00:49:18 -04001638int kern_path(const char *name, unsigned int flags, struct path *path)
1639{
1640 struct nameidata nd;
1641 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1642 if (!res)
1643 *path = nd.path;
1644 return res;
1645}
1646
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001647/**
1648 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1649 * @dentry: pointer to dentry of the base directory
1650 * @mnt: pointer to vfs mount of the base directory
1651 * @name: pointer to file name
1652 * @flags: lookup flags
1653 * @nd: pointer to nameidata
1654 */
1655int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1656 const char *name, unsigned int flags,
1657 struct nameidata *nd)
1658{
Al Viro5b6ca022011-03-09 23:04:47 -05001659 nd->root.dentry = dentry;
1660 nd->root.mnt = mnt;
1661 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
1662 return do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, nd);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001663}
1664
Christoph Hellwigeead1912007-10-16 23:25:38 -07001665static struct dentry *__lookup_hash(struct qstr *name,
1666 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667{
Christoph Hellwig81fca442010-10-06 10:47:47 +02001668 struct inode *inode = base->d_inode;
James Morris057f6c02007-04-26 00:12:05 -07001669 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 int err;
1671
Nick Pigginb74c79e2011-01-07 17:49:58 +11001672 err = exec_permission(inode, 0);
Christoph Hellwig81fca442010-10-06 10:47:47 +02001673 if (err)
1674 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
1676 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001677 * Don't bother with __d_lookup: callers are for creat as
1678 * well as unlink, so a lot of the time it would cost
1679 * a double lookup.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001680 */
Nick Pigginb04f7842010-08-18 04:37:34 +10001681 dentry = d_lookup(base, name);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001682
Nick Pigginfb045ad2011-01-07 17:49:55 +11001683 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE))
Al Viro6e6b1bd2009-08-13 23:38:37 +04001684 dentry = do_revalidate(dentry, nd);
1685
Nick Pigginbaa03892010-08-18 04:37:31 +10001686 if (!dentry)
1687 dentry = d_alloc_and_lookup(base, name, nd);
Al Viro5a202bc2011-03-08 14:17:44 -05001688
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 return dentry;
1690}
1691
James Morris057f6c02007-04-26 00:12:05 -07001692/*
1693 * Restricted form of lookup. Doesn't follow links, single-component only,
1694 * needs parent already locked. Doesn't follow mounts.
1695 * SMP-safe.
1696 */
Adrian Bunka244e162006-03-31 02:32:11 -08001697static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698{
Jan Blunck4ac91372008-02-14 19:34:32 -08001699 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700}
1701
Christoph Hellwigeead1912007-10-16 23:25:38 -07001702/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001703 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001704 * @name: pathname component to lookup
1705 * @base: base directory to lookup from
1706 * @len: maximum length @len should be interpreted to
1707 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001708 * Note that this routine is purely a helper for filesystem usage and should
1709 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001710 * nameidata argument is passed to the filesystem methods and a filesystem
1711 * using this helper needs to be prepared for that.
1712 */
James Morris057f6c02007-04-26 00:12:05 -07001713struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1714{
James Morris057f6c02007-04-26 00:12:05 -07001715 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05001716 unsigned long hash;
1717 unsigned int c;
James Morris057f6c02007-04-26 00:12:05 -07001718
David Woodhouse2f9092e2009-04-20 23:18:37 +01001719 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1720
Al Viro6a96ba52011-03-07 23:49:20 -05001721 this.name = name;
1722 this.len = len;
1723 if (!len)
1724 return ERR_PTR(-EACCES);
1725
1726 hash = init_name_hash();
1727 while (len--) {
1728 c = *(const unsigned char *)name++;
1729 if (c == '/' || c == '\0')
1730 return ERR_PTR(-EACCES);
1731 hash = partial_name_hash(c, hash);
1732 }
1733 this.hash = end_name_hash(hash);
Al Viro5a202bc2011-03-08 14:17:44 -05001734 /*
1735 * See if the low-level filesystem might want
1736 * to use its own hash..
1737 */
1738 if (base->d_flags & DCACHE_OP_HASH) {
1739 int err = base->d_op->d_hash(base, base->d_inode, &this);
1740 if (err < 0)
1741 return ERR_PTR(err);
1742 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07001743
Christoph Hellwig49705b72005-11-08 21:35:06 -08001744 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001745}
1746
Al Viro2d8f3032008-07-22 09:59:21 -04001747int user_path_at(int dfd, const char __user *name, unsigned flags,
1748 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749{
Al Viro2d8f3032008-07-22 09:59:21 -04001750 struct nameidata nd;
Al Virof52e0c12011-03-14 18:56:51 -04001751 char *tmp = getname_flags(name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001754
1755 BUG_ON(flags & LOOKUP_PARENT);
1756
1757 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001759 if (!err)
1760 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 }
1762 return err;
1763}
1764
Al Viro2ad94ae2008-07-21 09:32:51 -04001765static int user_path_parent(int dfd, const char __user *path,
1766 struct nameidata *nd, char **name)
1767{
1768 char *s = getname(path);
1769 int error;
1770
1771 if (IS_ERR(s))
1772 return PTR_ERR(s);
1773
1774 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1775 if (error)
1776 putname(s);
1777 else
1778 *name = s;
1779
1780 return error;
1781}
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783/*
1784 * It's inline, so penalty for filesystems that don't use sticky bit is
1785 * minimal.
1786 */
1787static inline int check_sticky(struct inode *dir, struct inode *inode)
1788{
David Howellsda9592e2008-11-14 10:39:05 +11001789 uid_t fsuid = current_fsuid();
1790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 if (!(dir->i_mode & S_ISVTX))
1792 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001793 if (current_user_ns() != inode_userns(inode))
1794 goto other_userns;
David Howellsda9592e2008-11-14 10:39:05 +11001795 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001797 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001799
1800other_userns:
1801 return !ns_capable(inode_userns(inode), CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802}
1803
1804/*
1805 * Check whether we can remove a link victim from directory dir, check
1806 * whether the type of victim is right.
1807 * 1. We can't do it if dir is read-only (done in permission())
1808 * 2. We should have write and exec permissions on dir
1809 * 3. We can't remove anything from append-only dir
1810 * 4. We can't do anything with immutable dir (done in permission())
1811 * 5. If the sticky bit on dir is set we should either
1812 * a. be owner of dir, or
1813 * b. be owner of victim, or
1814 * c. have CAP_FOWNER capability
1815 * 6. If the victim is append-only or immutable we can't do antyhing with
1816 * links pointing to it.
1817 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1818 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1819 * 9. We can't remove a root or mountpoint.
1820 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1821 * nfs_async_unlink().
1822 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001823static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
1825 int error;
1826
1827 if (!victim->d_inode)
1828 return -ENOENT;
1829
1830 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001831 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
Al Virof419a2e2008-07-22 00:07:17 -04001833 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 if (error)
1835 return error;
1836 if (IS_APPEND(dir))
1837 return -EPERM;
1838 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001839 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 return -EPERM;
1841 if (isdir) {
1842 if (!S_ISDIR(victim->d_inode->i_mode))
1843 return -ENOTDIR;
1844 if (IS_ROOT(victim))
1845 return -EBUSY;
1846 } else if (S_ISDIR(victim->d_inode->i_mode))
1847 return -EISDIR;
1848 if (IS_DEADDIR(dir))
1849 return -ENOENT;
1850 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1851 return -EBUSY;
1852 return 0;
1853}
1854
1855/* Check whether we can create an object with dentry child in directory
1856 * dir.
1857 * 1. We can't do it if child already exists (open has special treatment for
1858 * this case, but since we are inlined it's OK)
1859 * 2. We can't do it if dir is read-only (done in permission())
1860 * 3. We should have write and exec permissions on dir
1861 * 4. We can't do it if dir is immutable (done in permission())
1862 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001863static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864{
1865 if (child->d_inode)
1866 return -EEXIST;
1867 if (IS_DEADDIR(dir))
1868 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001869 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870}
1871
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872/*
1873 * p1 and p2 should be directories on the same fs.
1874 */
1875struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1876{
1877 struct dentry *p;
1878
1879 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001880 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 return NULL;
1882 }
1883
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001884 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001886 p = d_ancestor(p2, p1);
1887 if (p) {
1888 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1889 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1890 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 }
1892
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001893 p = d_ancestor(p1, p2);
1894 if (p) {
1895 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1896 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1897 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
1899
Ingo Molnarf2eace22006-07-03 00:25:05 -07001900 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1901 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 return NULL;
1903}
1904
1905void unlock_rename(struct dentry *p1, struct dentry *p2)
1906{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001907 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001909 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001910 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 }
1912}
1913
1914int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1915 struct nameidata *nd)
1916{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001917 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
1919 if (error)
1920 return error;
1921
Al Viroacfa4382008-12-04 10:06:33 -05001922 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 return -EACCES; /* shouldn't it be ENOSYS? */
1924 mode &= S_IALLUGO;
1925 mode |= S_IFREG;
1926 error = security_inode_create(dir, dentry, mode);
1927 if (error)
1928 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001930 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001931 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 return error;
1933}
1934
Al Viro73d049a2011-03-11 12:08:24 -05001935static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001937 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 struct inode *inode = dentry->d_inode;
1939 int error;
1940
Al Virobcda7652011-03-13 16:42:14 -04001941 /* O_PATH? */
1942 if (!acc_mode)
1943 return 0;
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 if (!inode)
1946 return -ENOENT;
1947
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001948 switch (inode->i_mode & S_IFMT) {
1949 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001951 case S_IFDIR:
1952 if (acc_mode & MAY_WRITE)
1953 return -EISDIR;
1954 break;
1955 case S_IFBLK:
1956 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001957 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001959 /*FALLTHRU*/
1960 case S_IFIFO:
1961 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001963 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001964 }
Dave Hansenb41572e2007-10-16 23:31:14 -07001965
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001966 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07001967 if (error)
1968 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05001969
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 /*
1971 * An append-only file must be opened in append mode for writing.
1972 */
1973 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05001974 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05001975 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05001977 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 }
1979
1980 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001981 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05001982 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983
1984 /*
1985 * Ensure there are no outstanding leases on the file.
1986 */
Al Virob65a9cf2009-12-16 06:27:40 -05001987 return break_lease(inode, flag);
Al Viro7715b522009-12-16 03:54:00 -05001988}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989
Jeff Laytone1181ee2010-12-07 16:19:50 -05001990static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05001991{
Jeff Laytone1181ee2010-12-07 16:19:50 -05001992 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05001993 struct inode *inode = path->dentry->d_inode;
1994 int error = get_write_access(inode);
1995 if (error)
1996 return error;
1997 /*
1998 * Refuse to truncate files with mandatory locks held on them.
1999 */
2000 error = locks_verify_locked(inode);
2001 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002002 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002003 if (!error) {
2004 error = do_truncate(path->dentry, 0,
2005 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002006 filp);
Al Viro7715b522009-12-16 03:54:00 -05002007 }
2008 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002009 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010}
2011
Dave Hansend57999e2008-02-15 14:37:27 -08002012/*
Dave Hansend57999e2008-02-15 14:37:27 -08002013 * Note that while the flag value (low two bits) for sys_open means:
2014 * 00 - read-only
2015 * 01 - write-only
2016 * 10 - read-write
2017 * 11 - special
2018 * it is changed into
2019 * 00 - no permissions needed
2020 * 01 - read-permission
2021 * 10 - write-permission
2022 * 11 - read-write
2023 * for the internal routines (ie open_namei()/follow_link() etc)
2024 * This is more logical, and also allows the 00 "no perm needed"
2025 * to be used for symlinks (where the permissions are checked
2026 * later).
2027 *
2028*/
2029static inline int open_to_namei_flags(int flag)
2030{
2031 if ((flag+1) & O_ACCMODE)
2032 flag++;
2033 return flag;
2034}
2035
Nick Piggin31e6b012011-01-07 17:49:52 +11002036/*
Al Virofe2d35f2011-03-05 22:58:25 -05002037 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002038 */
Al Virofb1cc552009-12-24 01:58:28 -05002039static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viroc3e380b2011-02-23 13:39:45 -05002040 const struct open_flags *op, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002041{
Al Viroa1e28032009-12-24 02:12:06 -05002042 struct dentry *dir = nd->path.dentry;
Al Viro6c0d46c2011-03-09 00:59:59 -05002043 struct dentry *dentry;
Al Viroca344a892011-03-09 00:36:45 -05002044 int open_flag = op->open_flag;
Al Viro6c0d46c2011-03-09 00:59:59 -05002045 int will_truncate = open_flag & O_TRUNC;
Al Viroca344a892011-03-09 00:36:45 -05002046 int want_write = 0;
Al Virobcda7652011-03-13 16:42:14 -04002047 int acc_mode = op->acc_mode;
Al Virofb1cc552009-12-24 01:58:28 -05002048 struct file *filp;
Al Viro16c2cd72011-02-22 15:50:10 -05002049 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002050
Al Viroc3e380b2011-02-23 13:39:45 -05002051 nd->flags &= ~LOOKUP_PARENT;
2052 nd->flags |= op->intent;
2053
Al Viro1f36f772009-12-26 10:56:19 -05002054 switch (nd->last_type) {
2055 case LAST_DOTDOT:
Neil Brown176306f2010-05-24 16:57:56 +10002056 case LAST_DOT:
Al Virofe2d35f2011-03-05 22:58:25 -05002057 error = handle_dots(nd, nd->last_type);
2058 if (error)
2059 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002060 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002061 case LAST_ROOT:
Al Viro9f1fafe2011-03-25 11:00:12 -04002062 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002063 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002064 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002065 audit_inode(pathname, nd->path.dentry);
Al Viroca344a892011-03-09 00:36:45 -05002066 if (open_flag & O_CREAT) {
Al Virofe2d35f2011-03-05 22:58:25 -05002067 error = -EISDIR;
2068 goto exit;
2069 }
2070 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002071 case LAST_BIND:
Al Viro9f1fafe2011-03-25 11:00:12 -04002072 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002073 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002074 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002075 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002076 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002077 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002078
Al Viroca344a892011-03-09 00:36:45 -05002079 if (!(open_flag & O_CREAT)) {
Al Virobcda7652011-03-13 16:42:14 -04002080 int symlink_ok = 0;
Al Virofe2d35f2011-03-05 22:58:25 -05002081 if (nd->last.name[nd->last.len])
2082 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002083 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2084 symlink_ok = 1;
Al Virofe2d35f2011-03-05 22:58:25 -05002085 /* we _can_ be in RCU mode here */
Al Viroce57dfc2011-03-13 19:58:58 -04002086 error = walk_component(nd, path, &nd->last, LAST_NORM,
2087 !symlink_ok);
2088 if (error < 0)
Al Virofe2d35f2011-03-05 22:58:25 -05002089 return ERR_PTR(error);
Al Viroce57dfc2011-03-13 19:58:58 -04002090 if (error) /* symlink */
Al Virofe2d35f2011-03-05 22:58:25 -05002091 return NULL;
Al Virofe2d35f2011-03-05 22:58:25 -05002092 /* sayonara */
Al Viro9f1fafe2011-03-25 11:00:12 -04002093 error = complete_walk(nd);
2094 if (error)
2095 return ERR_PTR(-ECHILD);
Al Virofe2d35f2011-03-05 22:58:25 -05002096
2097 error = -ENOTDIR;
2098 if (nd->flags & LOOKUP_DIRECTORY) {
Al Viroce57dfc2011-03-13 19:58:58 -04002099 if (!nd->inode->i_op->lookup)
Al Virofe2d35f2011-03-05 22:58:25 -05002100 goto exit;
2101 }
2102 audit_inode(pathname, nd->path.dentry);
2103 goto ok;
2104 }
2105
2106 /* create side of things */
Al Viro9f1fafe2011-03-25 11:00:12 -04002107 error = complete_walk(nd);
2108 if (error)
2109 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002110
2111 audit_inode(pathname, dir);
Al Viro16c2cd72011-02-22 15:50:10 -05002112 error = -EISDIR;
Al Viro1f36f772009-12-26 10:56:19 -05002113 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002114 if (nd->last.name[nd->last.len])
2115 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002116
Al Viroa1e28032009-12-24 02:12:06 -05002117 mutex_lock(&dir->d_inode->i_mutex);
2118
Al Viro6c0d46c2011-03-09 00:59:59 -05002119 dentry = lookup_hash(nd);
2120 error = PTR_ERR(dentry);
2121 if (IS_ERR(dentry)) {
Al Virofb1cc552009-12-24 01:58:28 -05002122 mutex_unlock(&dir->d_inode->i_mutex);
2123 goto exit;
2124 }
2125
Al Viro6c0d46c2011-03-09 00:59:59 -05002126 path->dentry = dentry;
2127 path->mnt = nd->path.mnt;
2128
Al Virofb1cc552009-12-24 01:58:28 -05002129 /* Negative dentry, just create the file */
Al Viro6c0d46c2011-03-09 00:59:59 -05002130 if (!dentry->d_inode) {
2131 int mode = op->mode;
2132 if (!IS_POSIXACL(dir->d_inode))
2133 mode &= ~current_umask();
Al Virofb1cc552009-12-24 01:58:28 -05002134 /*
2135 * This write is needed to ensure that a
Al Viro6c0d46c2011-03-09 00:59:59 -05002136 * rw->ro transition does not occur between
Al Virofb1cc552009-12-24 01:58:28 -05002137 * the time when the file is created and when
2138 * a permanent write count is taken through
2139 * the 'struct file' in nameidata_to_filp().
2140 */
2141 error = mnt_want_write(nd->path.mnt);
2142 if (error)
2143 goto exit_mutex_unlock;
Al Viroca344a892011-03-09 00:36:45 -05002144 want_write = 1;
Al Viro9b44f1b2011-03-09 00:17:27 -05002145 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002146 open_flag &= ~O_TRUNC;
Al Viro6c0d46c2011-03-09 00:59:59 -05002147 will_truncate = 0;
Al Virobcda7652011-03-13 16:42:14 -04002148 acc_mode = MAY_OPEN;
Al Viro6c0d46c2011-03-09 00:59:59 -05002149 error = security_path_mknod(&nd->path, dentry, mode, 0);
2150 if (error)
2151 goto exit_mutex_unlock;
2152 error = vfs_create(dir->d_inode, dentry, mode, nd);
2153 if (error)
2154 goto exit_mutex_unlock;
2155 mutex_unlock(&dir->d_inode->i_mutex);
2156 dput(nd->path.dentry);
2157 nd->path.dentry = dentry;
Al Viroca344a892011-03-09 00:36:45 -05002158 goto common;
Al Virofb1cc552009-12-24 01:58:28 -05002159 }
2160
2161 /*
2162 * It already exists.
2163 */
2164 mutex_unlock(&dir->d_inode->i_mutex);
2165 audit_inode(pathname, path->dentry);
2166
2167 error = -EEXIST;
Al Viroca344a892011-03-09 00:36:45 -05002168 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002169 goto exit_dput;
2170
David Howells9875cf82011-01-14 18:45:21 +00002171 error = follow_managed(path, nd->flags);
2172 if (error < 0)
2173 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002174
2175 error = -ENOENT;
2176 if (!path->dentry->d_inode)
2177 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002178
2179 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002180 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002181
2182 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002183 nd->inode = path->dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05002184 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002185 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002186 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002187ok:
Al Viro6c0d46c2011-03-09 00:59:59 -05002188 if (!S_ISREG(nd->inode->i_mode))
2189 will_truncate = 0;
2190
Al Viro0f9d1a12011-03-09 00:13:14 -05002191 if (will_truncate) {
2192 error = mnt_want_write(nd->path.mnt);
2193 if (error)
2194 goto exit;
Al Viroca344a892011-03-09 00:36:45 -05002195 want_write = 1;
Al Viro0f9d1a12011-03-09 00:13:14 -05002196 }
Al Viroca344a892011-03-09 00:36:45 -05002197common:
Al Virobcda7652011-03-13 16:42:14 -04002198 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002199 if (error)
Al Viro0f9d1a12011-03-09 00:13:14 -05002200 goto exit;
Al Viro0f9d1a12011-03-09 00:13:14 -05002201 filp = nameidata_to_filp(nd);
2202 if (!IS_ERR(filp)) {
2203 error = ima_file_check(filp, op->acc_mode);
2204 if (error) {
2205 fput(filp);
2206 filp = ERR_PTR(error);
2207 }
2208 }
2209 if (!IS_ERR(filp)) {
2210 if (will_truncate) {
2211 error = handle_truncate(filp);
2212 if (error) {
2213 fput(filp);
2214 filp = ERR_PTR(error);
2215 }
2216 }
2217 }
Al Viroca344a892011-03-09 00:36:45 -05002218out:
2219 if (want_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002220 mnt_drop_write(nd->path.mnt);
2221 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002222 return filp;
2223
2224exit_mutex_unlock:
2225 mutex_unlock(&dir->d_inode->i_mutex);
2226exit_dput:
2227 path_put_conditional(path, nd);
2228exit:
Al Viroca344a892011-03-09 00:36:45 -05002229 filp = ERR_PTR(error);
2230 goto out;
Al Virofb1cc552009-12-24 01:58:28 -05002231}
2232
Al Viro13aab422011-02-23 17:54:08 -05002233static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002234 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235{
Al Virofe2d35f2011-03-05 22:58:25 -05002236 struct file *base = NULL;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002237 struct file *filp;
Al Viro9850c052010-01-13 15:01:15 -05002238 struct path path;
Al Viro13aab422011-02-23 17:54:08 -05002239 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002240
2241 filp = get_empty_filp();
2242 if (!filp)
2243 return ERR_PTR(-ENFILE);
2244
Al Viro47c805d2011-02-23 17:44:09 -05002245 filp->f_flags = op->open_flag;
Al Viro73d049a2011-03-11 12:08:24 -05002246 nd->intent.open.file = filp;
2247 nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2248 nd->intent.open.create_mode = op->mode;
Nick Piggin31e6b012011-01-07 17:49:52 +11002249
Al Viro73d049a2011-03-11 12:08:24 -05002250 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002251 if (unlikely(error))
Al Viro13aab422011-02-23 17:54:08 -05002252 goto out_filp;
Nick Piggin31e6b012011-01-07 17:49:52 +11002253
Al Virofe2d35f2011-03-05 22:58:25 -05002254 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002255 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002256 if (unlikely(error))
2257 goto out_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Al Viro73d049a2011-03-11 12:08:24 -05002259 filp = do_last(nd, &path, op, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002260 while (unlikely(!filp)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002261 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05002262 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04002263 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05002264 path_put_conditional(&path, nd);
2265 path_put(&nd->path);
Al Viro40b39132011-03-09 16:22:18 -05002266 filp = ERR_PTR(-ELOOP);
2267 break;
2268 }
Al Viro73d049a2011-03-11 12:08:24 -05002269 nd->flags |= LOOKUP_PARENT;
2270 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04002271 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002272 if (unlikely(error))
Al Virof1afe9e2011-02-22 22:27:28 -05002273 filp = ERR_PTR(error);
Al Viroc3e380b2011-02-23 13:39:45 -05002274 else
Al Viro73d049a2011-03-11 12:08:24 -05002275 filp = do_last(nd, &path, op, pathname);
Al Viro574197e2011-03-14 22:20:34 -04002276 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002277 }
Al Viro10fa8e62009-12-26 07:09:49 -05002278out:
Al Viro73d049a2011-03-11 12:08:24 -05002279 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2280 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002281 if (base)
2282 fput(base);
Al Viro73d049a2011-03-11 12:08:24 -05002283 release_open_intent(nd);
Al Viro10fa8e62009-12-26 07:09:49 -05002284 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
Nick Piggin31e6b012011-01-07 17:49:52 +11002286out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002287 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002288 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289}
2290
Al Viro13aab422011-02-23 17:54:08 -05002291struct file *do_filp_open(int dfd, const char *pathname,
2292 const struct open_flags *op, int flags)
2293{
Al Viro73d049a2011-03-11 12:08:24 -05002294 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002295 struct file *filp;
2296
Al Viro73d049a2011-03-11 12:08:24 -05002297 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002298 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002299 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002300 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002301 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002302 return filp;
2303}
2304
Al Viro73d049a2011-03-11 12:08:24 -05002305struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2306 const char *name, const struct open_flags *op, int flags)
2307{
2308 struct nameidata nd;
2309 struct file *file;
2310
2311 nd.root.mnt = mnt;
2312 nd.root.dentry = dentry;
2313
2314 flags |= LOOKUP_ROOT;
2315
Al Virobcda7652011-03-13 16:42:14 -04002316 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002317 return ERR_PTR(-ELOOP);
2318
2319 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2320 if (unlikely(file == ERR_PTR(-ECHILD)))
2321 file = path_openat(-1, name, &nd, op, flags);
2322 if (unlikely(file == ERR_PTR(-ESTALE)))
2323 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2324 return file;
2325}
2326
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327/**
2328 * lookup_create - lookup a dentry, creating it if it doesn't exist
2329 * @nd: nameidata info
2330 * @is_dir: directory flag
2331 *
2332 * Simple function to lookup and return a dentry and create it
2333 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002334 *
Jan Blunck4ac91372008-02-14 19:34:32 -08002335 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 */
2337struct dentry *lookup_create(struct nameidata *nd, int is_dir)
2338{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002339 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
Jan Blunck4ac91372008-02-14 19:34:32 -08002341 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002342 /*
2343 * Yucky last component or no last component at all?
2344 * (foo/., foo/.., /////)
2345 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 if (nd->last_type != LAST_NORM)
2347 goto fail;
2348 nd->flags &= ~LOOKUP_PARENT;
Al Viro35165862008-08-05 03:00:49 -04002349 nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
ASANO Masahiroa6349042006-08-22 20:06:02 -04002350 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002351
2352 /*
2353 * Do the final lookup.
2354 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08002355 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 if (IS_ERR(dentry))
2357 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002358
Al Viroe9baf6e2008-05-15 04:49:12 -04002359 if (dentry->d_inode)
2360 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002361 /*
2362 * Special case - lookup gave negative, but... we had foo/bar/
2363 * From the vfs_mknod() POV we just have a negative dentry -
2364 * all is fine. Let's be bastards - you had / on the end, you've
2365 * been asking for (non-existent) directory. -ENOENT for you.
2366 */
Al Viroe9baf6e2008-05-15 04:49:12 -04002367 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
2368 dput(dentry);
2369 dentry = ERR_PTR(-ENOENT);
2370 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002372eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002374 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375fail:
2376 return dentry;
2377}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07002378EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
2380int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2381{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002382 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
2384 if (error)
2385 return error;
2386
Serge E. Hallyne795b712011-03-23 16:43:25 -07002387 if ((S_ISCHR(mode) || S_ISBLK(mode)) &&
2388 !ns_capable(inode_userns(dir), CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 return -EPERM;
2390
Al Viroacfa4382008-12-04 10:06:33 -05002391 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 return -EPERM;
2393
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002394 error = devcgroup_inode_mknod(mode, dev);
2395 if (error)
2396 return error;
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 error = security_inode_mknod(dir, dentry, mode, dev);
2399 if (error)
2400 return error;
2401
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002403 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002404 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 return error;
2406}
2407
Dave Hansen463c3192008-02-15 14:37:57 -08002408static int may_mknod(mode_t mode)
2409{
2410 switch (mode & S_IFMT) {
2411 case S_IFREG:
2412 case S_IFCHR:
2413 case S_IFBLK:
2414 case S_IFIFO:
2415 case S_IFSOCK:
2416 case 0: /* zero mode translates to S_IFREG */
2417 return 0;
2418 case S_IFDIR:
2419 return -EPERM;
2420 default:
2421 return -EINVAL;
2422 }
2423}
2424
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002425SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2426 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427{
Al Viro2ad94ae2008-07-21 09:32:51 -04002428 int error;
2429 char *tmp;
2430 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 struct nameidata nd;
2432
2433 if (S_ISDIR(mode))
2434 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Al Viro2ad94ae2008-07-21 09:32:51 -04002436 error = user_path_parent(dfd, filename, &nd, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002438 return error;
2439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 dentry = lookup_create(&nd, 0);
Dave Hansen463c3192008-02-15 14:37:57 -08002441 if (IS_ERR(dentry)) {
2442 error = PTR_ERR(dentry);
2443 goto out_unlock;
2444 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002445 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002446 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002447 error = may_mknod(mode);
2448 if (error)
2449 goto out_dput;
2450 error = mnt_want_write(nd.path.mnt);
2451 if (error)
2452 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002453 error = security_path_mknod(&nd.path, dentry, mode, dev);
2454 if (error)
2455 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002456 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08002458 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 break;
2460 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002461 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 new_decode_dev(dev));
2463 break;
2464 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002465 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002468out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002469 mnt_drop_write(nd.path.mnt);
2470out_dput:
2471 dput(dentry);
2472out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002473 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002474 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 putname(tmp);
2476
2477 return error;
2478}
2479
Heiko Carstens3480b252009-01-14 14:14:16 +01002480SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002481{
2482 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2483}
2484
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2486{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002487 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488
2489 if (error)
2490 return error;
2491
Al Viroacfa4382008-12-04 10:06:33 -05002492 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 return -EPERM;
2494
2495 mode &= (S_IRWXUGO|S_ISVTX);
2496 error = security_inode_mkdir(dir, dentry, mode);
2497 if (error)
2498 return error;
2499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002501 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002502 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 return error;
2504}
2505
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002506SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507{
2508 int error = 0;
2509 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002510 struct dentry *dentry;
2511 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Al Viro2ad94ae2008-07-21 09:32:51 -04002513 error = user_path_parent(dfd, pathname, &nd, &tmp);
2514 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002515 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
Dave Hansen6902d922006-09-30 23:29:01 -07002517 dentry = lookup_create(&nd, 1);
2518 error = PTR_ERR(dentry);
2519 if (IS_ERR(dentry))
2520 goto out_unlock;
2521
Jan Blunck4ac91372008-02-14 19:34:32 -08002522 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002523 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002524 error = mnt_want_write(nd.path.mnt);
2525 if (error)
2526 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002527 error = security_path_mkdir(&nd.path, dentry, mode);
2528 if (error)
2529 goto out_drop_write;
Jan Blunck4ac91372008-02-14 19:34:32 -08002530 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002531out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002532 mnt_drop_write(nd.path.mnt);
2533out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002534 dput(dentry);
2535out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002536 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002537 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002538 putname(tmp);
2539out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 return error;
2541}
2542
Heiko Carstens3cdad422009-01-14 14:14:22 +01002543SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002544{
2545 return sys_mkdirat(AT_FDCWD, pathname, mode);
2546}
2547
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548/*
Sage Weila71905f2011-05-24 13:06:08 -07002549 * The dentry_unhash() helper will try to drop the dentry early: we
2550 * should have a usage count of 2 if we're the only user of this
2551 * dentry, and if that is true (possibly after pruning the dcache),
2552 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 *
2554 * A low-level filesystem can, if it choses, legally
2555 * do a
2556 *
2557 * if (!d_unhashed(dentry))
2558 * return -EBUSY;
2559 *
2560 * if it cannot handle the case of removing a directory
2561 * that is still in use by something else..
2562 */
2563void dentry_unhash(struct dentry *dentry)
2564{
Vasily Averindc168422006-12-06 20:37:07 -08002565 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 spin_lock(&dentry->d_lock);
Sage Weil64252c72011-05-24 13:06:05 -07002567 if (dentry->d_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 __d_drop(dentry);
2569 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570}
2571
2572int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2573{
2574 int error = may_delete(dir, dentry, 1);
2575
2576 if (error)
2577 return error;
2578
Al Viroacfa4382008-12-04 10:06:33 -05002579 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 return -EPERM;
2581
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002582 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Sage Weil912dbc12011-05-24 13:06:11 -07002584 error = -EBUSY;
2585 if (d_mountpoint(dentry))
2586 goto out;
2587
2588 error = security_inode_rmdir(dir, dentry);
2589 if (error)
2590 goto out;
2591
2592 error = dir->i_op->rmdir(dir, dentry);
2593 if (error)
2594 goto out;
2595
2596 dentry->d_inode->i_flags |= S_DEAD;
2597 dont_mount(dentry);
2598
2599out:
2600 mutex_unlock(&dentry->d_inode->i_mutex);
2601 if (!error)
2602 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 return error;
2604}
2605
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002606static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607{
2608 int error = 0;
2609 char * name;
2610 struct dentry *dentry;
2611 struct nameidata nd;
2612
Al Viro2ad94ae2008-07-21 09:32:51 -04002613 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002615 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
2617 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002618 case LAST_DOTDOT:
2619 error = -ENOTEMPTY;
2620 goto exit1;
2621 case LAST_DOT:
2622 error = -EINVAL;
2623 goto exit1;
2624 case LAST_ROOT:
2625 error = -EBUSY;
2626 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002628
2629 nd.flags &= ~LOOKUP_PARENT;
2630
Jan Blunck4ac91372008-02-14 19:34:32 -08002631 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002632 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002634 if (IS_ERR(dentry))
2635 goto exit2;
Dave Hansen06227532008-02-15 14:37:34 -08002636 error = mnt_want_write(nd.path.mnt);
2637 if (error)
2638 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002639 error = security_path_rmdir(&nd.path, dentry);
2640 if (error)
2641 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002642 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002643exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002644 mnt_drop_write(nd.path.mnt);
2645exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002646 dput(dentry);
2647exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002648 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002650 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 putname(name);
2652 return error;
2653}
2654
Heiko Carstens3cdad422009-01-14 14:14:22 +01002655SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002656{
2657 return do_rmdir(AT_FDCWD, pathname);
2658}
2659
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660int vfs_unlink(struct inode *dir, struct dentry *dentry)
2661{
2662 int error = may_delete(dir, dentry, 0);
2663
2664 if (error)
2665 return error;
2666
Al Viroacfa4382008-12-04 10:06:33 -05002667 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 return -EPERM;
2669
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002670 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 if (d_mountpoint(dentry))
2672 error = -EBUSY;
2673 else {
2674 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002675 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002677 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002678 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002681 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
2683 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2684 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002685 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 }
Robert Love0eeca282005-07-12 17:06:03 -04002688
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 return error;
2690}
2691
2692/*
2693 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002694 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 * writeout happening, and we don't want to prevent access to the directory
2696 * while waiting on the I/O.
2697 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002698static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699{
Al Viro2ad94ae2008-07-21 09:32:51 -04002700 int error;
2701 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 struct dentry *dentry;
2703 struct nameidata nd;
2704 struct inode *inode = NULL;
2705
Al Viro2ad94ae2008-07-21 09:32:51 -04002706 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002708 return error;
2709
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 error = -EISDIR;
2711 if (nd.last_type != LAST_NORM)
2712 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002713
2714 nd.flags &= ~LOOKUP_PARENT;
2715
Jan Blunck4ac91372008-02-14 19:34:32 -08002716 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002717 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 error = PTR_ERR(dentry);
2719 if (!IS_ERR(dentry)) {
2720 /* Why not before? Because we want correct error value */
2721 if (nd.last.name[nd.last.len])
2722 goto slashes;
2723 inode = dentry->d_inode;
2724 if (inode)
Al Viro7de9c6e2010-10-23 11:11:40 -04002725 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002726 error = mnt_want_write(nd.path.mnt);
2727 if (error)
2728 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002729 error = security_path_unlink(&nd.path, dentry);
2730 if (error)
2731 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002732 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002733exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002734 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 exit2:
2736 dput(dentry);
2737 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002738 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 if (inode)
2740 iput(inode); /* truncate the inode here */
2741exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002742 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 putname(name);
2744 return error;
2745
2746slashes:
2747 error = !dentry->d_inode ? -ENOENT :
2748 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2749 goto exit2;
2750}
2751
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002752SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002753{
2754 if ((flag & ~AT_REMOVEDIR) != 0)
2755 return -EINVAL;
2756
2757 if (flag & AT_REMOVEDIR)
2758 return do_rmdir(dfd, pathname);
2759
2760 return do_unlinkat(dfd, pathname);
2761}
2762
Heiko Carstens3480b252009-01-14 14:14:16 +01002763SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002764{
2765 return do_unlinkat(AT_FDCWD, pathname);
2766}
2767
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002768int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002770 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
2772 if (error)
2773 return error;
2774
Al Viroacfa4382008-12-04 10:06:33 -05002775 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 return -EPERM;
2777
2778 error = security_inode_symlink(dir, dentry, oldname);
2779 if (error)
2780 return error;
2781
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002783 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002784 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 return error;
2786}
2787
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002788SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2789 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790{
Al Viro2ad94ae2008-07-21 09:32:51 -04002791 int error;
2792 char *from;
2793 char *to;
Dave Hansen6902d922006-09-30 23:29:01 -07002794 struct dentry *dentry;
2795 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
2797 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002798 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002800
2801 error = user_path_parent(newdfd, newname, &nd, &to);
2802 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002803 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Dave Hansen6902d922006-09-30 23:29:01 -07002805 dentry = lookup_create(&nd, 0);
2806 error = PTR_ERR(dentry);
2807 if (IS_ERR(dentry))
2808 goto out_unlock;
2809
Dave Hansen75c3f292008-02-15 14:37:45 -08002810 error = mnt_want_write(nd.path.mnt);
2811 if (error)
2812 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002813 error = security_path_symlink(&nd.path, dentry, from);
2814 if (error)
2815 goto out_drop_write;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002816 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002817out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002818 mnt_drop_write(nd.path.mnt);
2819out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002820 dput(dentry);
2821out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002822 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002823 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002824 putname(to);
2825out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 putname(from);
2827 return error;
2828}
2829
Heiko Carstens3480b252009-01-14 14:14:16 +01002830SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002831{
2832 return sys_symlinkat(oldname, AT_FDCWD, newname);
2833}
2834
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2836{
2837 struct inode *inode = old_dentry->d_inode;
2838 int error;
2839
2840 if (!inode)
2841 return -ENOENT;
2842
Miklos Szeredia95164d2008-07-30 15:08:48 +02002843 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 if (error)
2845 return error;
2846
2847 if (dir->i_sb != inode->i_sb)
2848 return -EXDEV;
2849
2850 /*
2851 * A link to an append-only or immutable file cannot be created.
2852 */
2853 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2854 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05002855 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002857 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 return -EPERM;
2859
2860 error = security_inode_link(old_dentry, dir, new_dentry);
2861 if (error)
2862 return error;
2863
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002864 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05302865 /* Make sure we don't allow creating hardlink to an unlinked file */
2866 if (inode->i_nlink == 0)
2867 error = -ENOENT;
2868 else
2869 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002870 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002871 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002872 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 return error;
2874}
2875
2876/*
2877 * Hardlinks are often used in delicate situations. We avoid
2878 * security-related surprises by not following symlinks on the
2879 * newname. --KAB
2880 *
2881 * We don't follow them on the oldname either to be compatible
2882 * with linux 2.0, and to avoid hard-linking to directories
2883 * and other special files. --ADM
2884 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002885SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2886 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887{
2888 struct dentry *new_dentry;
Al Viro2d8f3032008-07-22 09:59:21 -04002889 struct nameidata nd;
2890 struct path old_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302891 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 int error;
Al Viro2ad94ae2008-07-21 09:32:51 -04002893 char *to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302895 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002896 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302897 /*
2898 * To use null names we require CAP_DAC_READ_SEARCH
2899 * This ensures that not everyone will be able to create
2900 * handlink using the passed filedescriptor.
2901 */
2902 if (flags & AT_EMPTY_PATH) {
2903 if (!capable(CAP_DAC_READ_SEARCH))
2904 return -ENOENT;
2905 how = LOOKUP_EMPTY;
2906 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002907
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302908 if (flags & AT_SYMLINK_FOLLOW)
2909 how |= LOOKUP_FOLLOW;
2910
2911 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002913 return error;
2914
2915 error = user_path_parent(newdfd, newname, &nd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 if (error)
2917 goto out;
2918 error = -EXDEV;
Al Viro2d8f3032008-07-22 09:59:21 -04002919 if (old_path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 goto out_release;
2921 new_dentry = lookup_create(&nd, 0);
2922 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002923 if (IS_ERR(new_dentry))
2924 goto out_unlock;
Dave Hansen75c3f292008-02-15 14:37:45 -08002925 error = mnt_want_write(nd.path.mnt);
2926 if (error)
2927 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002928 error = security_path_link(old_path.dentry, &nd.path, new_dentry);
2929 if (error)
2930 goto out_drop_write;
Al Viro2d8f3032008-07-22 09:59:21 -04002931 error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002932out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002933 mnt_drop_write(nd.path.mnt);
2934out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002935 dput(new_dentry);
2936out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002937 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08002939 path_put(&nd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002940 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941out:
Al Viro2d8f3032008-07-22 09:59:21 -04002942 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943
2944 return error;
2945}
2946
Heiko Carstens3480b252009-01-14 14:14:16 +01002947SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002948{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002949 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002950}
2951
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952/*
2953 * The worst of all namespace operations - renaming directory. "Perverted"
2954 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2955 * Problems:
2956 * a) we can get into loop creation. Check is done in is_subdir().
2957 * b) race potential - two innocent renames can create a loop together.
2958 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002959 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 * story.
2961 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002962 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 * whether the target exists). Solution: try to be smart with locking
2964 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002965 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 * move will be locked. Thus we can rank directories by the tree
2967 * (ancestors first) and rank all non-directories after them.
2968 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002969 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 * HOWEVER, it relies on the assumption that any object with ->lookup()
2971 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2972 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07002973 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002974 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05002976 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 * locking].
2978 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07002979static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2980 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981{
2982 int error = 0;
Sage Weil9055cba2011-05-24 13:06:12 -07002983 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
2985 /*
2986 * If we are going to change the parent - check write permissions,
2987 * we'll need to flip '..'.
2988 */
2989 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04002990 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 if (error)
2992 return error;
2993 }
2994
2995 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2996 if (error)
2997 return error;
2998
Al Virod83c49f2010-04-30 17:17:09 -04002999 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003000 mutex_lock(&target->i_mutex);
Sage Weil9055cba2011-05-24 13:06:12 -07003001
3002 error = -EBUSY;
3003 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3004 goto out;
3005
3006 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3007 if (error)
3008 goto out;
3009
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 if (target) {
Sage Weil9055cba2011-05-24 13:06:12 -07003011 target->i_flags |= S_DEAD;
3012 dont_mount(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 }
Sage Weil9055cba2011-05-24 13:06:12 -07003014out:
3015 if (target)
3016 mutex_unlock(&target->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003017 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003018 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3019 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 return error;
3021}
3022
Adrian Bunk75c96f82005-05-05 16:16:09 -07003023static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3024 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025{
Sage Weil51892bb2011-05-24 13:06:13 -07003026 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 int error;
3028
3029 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3030 if (error)
3031 return error;
3032
3033 dget(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003035 mutex_lock(&target->i_mutex);
Sage Weil51892bb2011-05-24 13:06:13 -07003036
3037 error = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
Sage Weil51892bb2011-05-24 13:06:13 -07003039 goto out;
3040
3041 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3042 if (error)
3043 goto out;
3044
3045 if (target)
3046 dont_mount(new_dentry);
3047 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3048 d_move(old_dentry, new_dentry);
3049out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003051 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 dput(new_dentry);
3053 return error;
3054}
3055
3056int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3057 struct inode *new_dir, struct dentry *new_dentry)
3058{
3059 int error;
3060 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003061 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062
3063 if (old_dentry->d_inode == new_dentry->d_inode)
3064 return 0;
3065
3066 error = may_delete(old_dir, old_dentry, is_dir);
3067 if (error)
3068 return error;
3069
3070 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003071 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 else
3073 error = may_delete(new_dir, new_dentry, is_dir);
3074 if (error)
3075 return error;
3076
Al Viroacfa4382008-12-04 10:06:33 -05003077 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 return -EPERM;
3079
Robert Love0eeca282005-07-12 17:06:03 -04003080 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3081
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 if (is_dir)
3083 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3084 else
3085 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003086 if (!error)
3087 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003088 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003089 fsnotify_oldname_free(old_name);
3090
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 return error;
3092}
3093
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003094SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3095 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096{
Al Viro2ad94ae2008-07-21 09:32:51 -04003097 struct dentry *old_dir, *new_dir;
3098 struct dentry *old_dentry, *new_dentry;
3099 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003101 char *from;
3102 char *to;
3103 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104
Al Viro2ad94ae2008-07-21 09:32:51 -04003105 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 if (error)
3107 goto exit;
3108
Al Viro2ad94ae2008-07-21 09:32:51 -04003109 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 if (error)
3111 goto exit1;
3112
3113 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003114 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 goto exit2;
3116
Jan Blunck4ac91372008-02-14 19:34:32 -08003117 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 error = -EBUSY;
3119 if (oldnd.last_type != LAST_NORM)
3120 goto exit2;
3121
Jan Blunck4ac91372008-02-14 19:34:32 -08003122 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 if (newnd.last_type != LAST_NORM)
3124 goto exit2;
3125
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003126 oldnd.flags &= ~LOOKUP_PARENT;
3127 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003128 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003129
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 trap = lock_rename(new_dir, old_dir);
3131
Christoph Hellwig49705b72005-11-08 21:35:06 -08003132 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 error = PTR_ERR(old_dentry);
3134 if (IS_ERR(old_dentry))
3135 goto exit3;
3136 /* source must exist */
3137 error = -ENOENT;
3138 if (!old_dentry->d_inode)
3139 goto exit4;
3140 /* unless the source is a directory trailing slashes give -ENOTDIR */
3141 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3142 error = -ENOTDIR;
3143 if (oldnd.last.name[oldnd.last.len])
3144 goto exit4;
3145 if (newnd.last.name[newnd.last.len])
3146 goto exit4;
3147 }
3148 /* source should not be ancestor of target */
3149 error = -EINVAL;
3150 if (old_dentry == trap)
3151 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003152 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 error = PTR_ERR(new_dentry);
3154 if (IS_ERR(new_dentry))
3155 goto exit4;
3156 /* target should not be an ancestor of source */
3157 error = -ENOTEMPTY;
3158 if (new_dentry == trap)
3159 goto exit5;
3160
Dave Hansen9079b1e2008-02-15 14:37:49 -08003161 error = mnt_want_write(oldnd.path.mnt);
3162 if (error)
3163 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003164 error = security_path_rename(&oldnd.path, old_dentry,
3165 &newnd.path, new_dentry);
3166 if (error)
3167 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 error = vfs_rename(old_dir->d_inode, old_dentry,
3169 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003170exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003171 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172exit5:
3173 dput(new_dentry);
3174exit4:
3175 dput(old_dentry);
3176exit3:
3177 unlock_rename(new_dir, old_dir);
3178exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003179 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003180 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003182 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003184exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 return error;
3186}
3187
Heiko Carstensa26eab22009-01-14 14:14:17 +01003188SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003189{
3190 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3191}
3192
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3194{
3195 int len;
3196
3197 len = PTR_ERR(link);
3198 if (IS_ERR(link))
3199 goto out;
3200
3201 len = strlen(link);
3202 if (len > (unsigned) buflen)
3203 len = buflen;
3204 if (copy_to_user(buffer, link, len))
3205 len = -EFAULT;
3206out:
3207 return len;
3208}
3209
3210/*
3211 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3212 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3213 * using) it for any given inode is up to filesystem.
3214 */
3215int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3216{
3217 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003218 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003219 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003220
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003222 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003223 if (IS_ERR(cookie))
3224 return PTR_ERR(cookie);
3225
3226 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3227 if (dentry->d_inode->i_op->put_link)
3228 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3229 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230}
3231
3232int vfs_follow_link(struct nameidata *nd, const char *link)
3233{
3234 return __vfs_follow_link(nd, link);
3235}
3236
3237/* get the link contents into pagecache */
3238static char *page_getlink(struct dentry * dentry, struct page **ppage)
3239{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003240 char *kaddr;
3241 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003243 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003245 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003247 kaddr = kmap(page);
3248 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3249 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250}
3251
3252int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3253{
3254 struct page *page = NULL;
3255 char *s = page_getlink(dentry, &page);
3256 int res = vfs_readlink(dentry,buffer,buflen,s);
3257 if (page) {
3258 kunmap(page);
3259 page_cache_release(page);
3260 }
3261 return res;
3262}
3263
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003264void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003266 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003268 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269}
3270
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003271void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003273 struct page *page = cookie;
3274
3275 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 kunmap(page);
3277 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278 }
3279}
3280
Nick Piggin54566b22009-01-04 12:00:53 -08003281/*
3282 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3283 */
3284int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285{
3286 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003287 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003288 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003289 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003291 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3292 if (nofs)
3293 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294
NeilBrown7e53cac2006-03-25 03:07:57 -08003295retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003296 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003297 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003299 goto fail;
3300
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 kaddr = kmap_atomic(page, KM_USER0);
3302 memcpy(kaddr, symname, len-1);
3303 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07003304
3305 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3306 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 if (err < 0)
3308 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003309 if (err < len-1)
3310 goto retry;
3311
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312 mark_inode_dirty(inode);
3313 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314fail:
3315 return err;
3316}
3317
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003318int page_symlink(struct inode *inode, const char *symname, int len)
3319{
3320 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003321 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003322}
3323
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003324const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 .readlink = generic_readlink,
3326 .follow_link = page_follow_link_light,
3327 .put_link = page_put_link,
3328};
3329
Al Viro2d8f3032008-07-22 09:59:21 -04003330EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003331EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332EXPORT_SYMBOL(follow_down);
3333EXPORT_SYMBOL(follow_up);
3334EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3335EXPORT_SYMBOL(getname);
3336EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337EXPORT_SYMBOL(lookup_one_len);
3338EXPORT_SYMBOL(page_follow_link_light);
3339EXPORT_SYMBOL(page_put_link);
3340EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003341EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342EXPORT_SYMBOL(page_symlink);
3343EXPORT_SYMBOL(page_symlink_inode_operations);
Al Viroc9c6cac2011-02-16 15:15:47 -05003344EXPORT_SYMBOL(kern_path_parent);
Al Virod1811462008-08-02 00:49:18 -04003345EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003346EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003347EXPORT_SYMBOL(inode_permission);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -08003348EXPORT_SYMBOL(file_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349EXPORT_SYMBOL(unlock_rename);
3350EXPORT_SYMBOL(vfs_create);
3351EXPORT_SYMBOL(vfs_follow_link);
3352EXPORT_SYMBOL(vfs_link);
3353EXPORT_SYMBOL(vfs_mkdir);
3354EXPORT_SYMBOL(vfs_mknod);
3355EXPORT_SYMBOL(generic_permission);
3356EXPORT_SYMBOL(vfs_readlink);
3357EXPORT_SYMBOL(vfs_rename);
3358EXPORT_SYMBOL(vfs_rmdir);
3359EXPORT_SYMBOL(vfs_symlink);
3360EXPORT_SYMBOL(vfs_unlink);
3361EXPORT_SYMBOL(dentry_unhash);
3362EXPORT_SYMBOL(generic_readlink);