blob: 560fd1dff1d073594a227cd9be75333070c9c2e7 [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 */
Al Viro7e401452011-06-20 19:12:17 -0400179static int acl_permission_check(struct inode *inode, int mask)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700180{
Al Viro7e401452011-06-20 19:12:17 -0400181 int (*check_acl)(struct inode *inode, int mask);
Linus Torvalds26cf46b2011-05-13 11:51:01 -0700182 unsigned int mode = inode->i_mode;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700183
Al Viro9c2c7032011-06-20 19:06:22 -0400184 mask &= MAY_READ | MAY_WRITE | MAY_EXEC | MAY_NOT_BLOCK;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700185
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 {
Al Viro178ea7352011-06-20 11:31:30 -0400192 check_acl = inode->i_op->check_acl;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700193 if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
Al Viro7e401452011-06-20 19:12:17 -0400194 int error = check_acl(inode, mask);
Nick Pigginb74c79e2011-01-07 17:49:58 +1100195 if (error != -EAGAIN)
196 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700197 }
198
199 if (in_group_p(inode->i_gid))
200 mode >>= 3;
201 }
202
Serge E. Hallyne795b712011-03-23 16:43:25 -0700203other_perms:
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700204 /*
205 * If the DACs are ok we don't need any capability check.
206 */
Al Viro9c2c7032011-06-20 19:06:22 -0400207 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700208 return 0;
209 return -EACCES;
210}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100213 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 * @inode: inode to check access rights for
215 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
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 */
Al Viro178ea7352011-06-20 11:31:30 -0400227int generic_permission(struct inode *inode, int mask, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700229 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 /*
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700232 * Do the basic POSIX ACL permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 */
Al Viro7e401452011-06-20 19:12:17 -0400234 ret = acl_permission_check(inode, mask);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700235 if (ret != -EACCES)
236 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 /*
239 * Read/write DACs are always overridable.
Al Viro8e833fd2011-06-19 01:56:53 -0400240 * Executable DACs are overridable for all directories and
241 * for non-directories that have least one exec bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 */
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
Al Viro178ea7352011-06-20 11:31:30 -0400292 retval = generic_permission(inode, mask, 0);
Miklos Szeredif696a362008-07-31 13:41:58 +0200293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 if (retval)
295 return retval;
296
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700297 retval = devcgroup_inode_permission(inode, mask);
298 if (retval)
299 return retval;
300
Eric Parisd09ca732010-07-23 11:43:57 -0400301 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302}
303
Al Virof4d6ff82011-06-19 13:14:21 -0400304/**
305 * exec_permission - check for right to do lookups in a given directory
306 * @inode: inode to check permission on
307 * @flags: IPERM_FLAG_ flags.
308 *
309 * Short-cut version of inode_permission(), for calling on directories
310 * during pathname resolution. Combines parts of inode_permission()
311 * and generic_permission(), and tests ONLY for MAY_EXEC permission.
312 *
313 * If appropriate, check DAC only. If not appropriate, or
314 * short-cut DAC fails, then call ->permission() to do more
315 * complete permission check.
316 */
317static inline int exec_permission(struct inode *inode, unsigned int flags)
318{
319 int ret;
320 struct user_namespace *ns = inode_userns(inode);
Al Viro1fc0f782011-06-20 18:59:02 -0400321 int mask = MAY_EXEC;
322 if (flags & IPERM_FLAG_RCU)
323 mask |= MAY_NOT_BLOCK;
Al Virof4d6ff82011-06-19 13:14:21 -0400324
325 if (inode->i_op->permission) {
Al Viro1fc0f782011-06-20 18:59:02 -0400326 ret = inode->i_op->permission(inode, mask, flags);
Al Virof4d6ff82011-06-19 13:14:21 -0400327 if (likely(!ret))
328 goto ok;
329 } else {
Al Viro7e401452011-06-20 19:12:17 -0400330 ret = acl_permission_check(inode, mask);
Al Virof4d6ff82011-06-19 13:14:21 -0400331 if (likely(!ret))
332 goto ok;
333 if (ret != -EACCES)
334 return ret;
335 if (ns_capable(ns, CAP_DAC_OVERRIDE) ||
336 ns_capable(ns, CAP_DAC_READ_SEARCH))
337 goto ok;
338 }
339 return ret;
340ok:
341 return security_inode_exec_permission(inode, flags);
342}
343
Jan Blunck1d957f92008-02-14 19:34:35 -0800344/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800345 * path_get - get a reference to a path
346 * @path: path to get the reference to
347 *
348 * Given a path increment the reference count to the dentry and the vfsmount.
349 */
350void path_get(struct path *path)
351{
352 mntget(path->mnt);
353 dget(path->dentry);
354}
355EXPORT_SYMBOL(path_get);
356
357/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800358 * path_put - put a reference to a path
359 * @path: path to put the reference to
360 *
361 * Given a path decrement the reference count to the dentry and the vfsmount.
362 */
363void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Jan Blunck1d957f92008-02-14 19:34:35 -0800365 dput(path->dentry);
366 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
Jan Blunck1d957f92008-02-14 19:34:35 -0800368EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Al Viro19660af2011-03-25 10:32:48 -0400370/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100371 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400372 * Documentation/filesystems/path-lookup.txt). In situations when we can't
373 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
374 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
375 * mode. Refcounts are grabbed at the last known good point before rcu-walk
376 * got stuck, so ref-walk may continue from there. If this is not successful
377 * (eg. a seqcount has changed), then failure is returned and it's up to caller
378 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100379 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100380
381/**
Al Viro19660af2011-03-25 10:32:48 -0400382 * unlazy_walk - try to switch to ref-walk mode.
383 * @nd: nameidata pathwalk data
384 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800385 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100386 *
Al Viro19660af2011-03-25 10:32:48 -0400387 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
388 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
389 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100390 */
Al Viro19660af2011-03-25 10:32:48 -0400391static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100392{
393 struct fs_struct *fs = current->fs;
394 struct dentry *parent = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500395 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100396
397 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500398 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
399 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100400 spin_lock(&fs->lock);
401 if (nd->root.mnt != fs->root.mnt ||
402 nd->root.dentry != fs->root.dentry)
403 goto err_root;
404 }
405 spin_lock(&parent->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400406 if (!dentry) {
407 if (!__d_rcu_to_refcount(parent, nd->seq))
408 goto err_parent;
409 BUG_ON(nd->inode != parent->d_inode);
410 } else {
Al Viro94c0d4e2011-07-12 21:40:23 -0400411 if (dentry->d_parent != parent)
412 goto err_parent;
Al Viro19660af2011-03-25 10:32:48 -0400413 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
414 if (!__d_rcu_to_refcount(dentry, nd->seq))
415 goto err_child;
416 /*
417 * If the sequence check on the child dentry passed, then
418 * the child has not been removed from its parent. This
419 * means the parent dentry must be valid and able to take
420 * a reference at this point.
421 */
422 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
423 BUG_ON(!parent->d_count);
424 parent->d_count++;
425 spin_unlock(&dentry->d_lock);
426 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100427 spin_unlock(&parent->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500428 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100429 path_get(&nd->root);
430 spin_unlock(&fs->lock);
431 }
432 mntget(nd->path.mnt);
433
434 rcu_read_unlock();
435 br_read_unlock(vfsmount_lock);
436 nd->flags &= ~LOOKUP_RCU;
437 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400438
439err_child:
Nick Piggin31e6b012011-01-07 17:49:52 +1100440 spin_unlock(&dentry->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400441err_parent:
Nick Piggin31e6b012011-01-07 17:49:52 +1100442 spin_unlock(&parent->d_lock);
443err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500444 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100445 spin_unlock(&fs->lock);
446 return -ECHILD;
447}
448
Nick Piggin31e6b012011-01-07 17:49:52 +1100449/**
Trond Myklebust834f2a42005-10-18 14:20:16 -0700450 * release_open_intent - free up open intent resources
451 * @nd: pointer to nameidata
452 */
453void release_open_intent(struct nameidata *nd)
454{
Linus Torvalds2dab5972011-02-11 15:53:38 -0800455 struct file *file = nd->intent.open.file;
456
457 if (file && !IS_ERR(file)) {
458 if (file->f_path.dentry == NULL)
459 put_filp(file);
460 else
461 fput(file);
462 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700463}
464
Al Virof60aef72011-02-15 01:35:28 -0500465static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
Nick Piggin34286d62011-01-07 17:49:57 +1100466{
Al Virof60aef72011-02-15 01:35:28 -0500467 return dentry->d_op->d_revalidate(dentry, nd);
Nick Piggin34286d62011-01-07 17:49:57 +1100468}
469
Al Virof5e1c1c2011-02-15 01:32:55 -0500470static struct dentry *
Ian Kentbcdc5e02006-09-27 01:50:44 -0700471do_revalidate(struct dentry *dentry, struct nameidata *nd)
472{
Al Virof5e1c1c2011-02-15 01:32:55 -0500473 int status = d_revalidate(dentry, nd);
Ian Kentbcdc5e02006-09-27 01:50:44 -0700474 if (unlikely(status <= 0)) {
475 /*
476 * The dentry failed validation.
477 * If d_revalidate returned 0 attempt to invalidate
478 * the dentry otherwise d_revalidate is asking us
479 * to return a fail status.
480 */
Nick Piggin34286d62011-01-07 17:49:57 +1100481 if (status < 0) {
Al Virof5e1c1c2011-02-15 01:32:55 -0500482 dput(dentry);
Nick Piggin34286d62011-01-07 17:49:57 +1100483 dentry = ERR_PTR(status);
Al Virof5e1c1c2011-02-15 01:32:55 -0500484 } else if (!d_invalidate(dentry)) {
485 dput(dentry);
486 dentry = NULL;
Ian Kentbcdc5e02006-09-27 01:50:44 -0700487 }
488 }
489 return dentry;
490}
491
Al Viro9f1fafe2011-03-25 11:00:12 -0400492/**
493 * complete_walk - successful completion of path walk
494 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500495 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400496 * If we had been in RCU mode, drop out of it and legitimize nd->path.
497 * Revalidate the final result, unless we'd already done that during
498 * the path walk or the filesystem doesn't ask for it. Return 0 on
499 * success, -error on failure. In case of failure caller does not
500 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500501 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400502static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500503{
Al Viro16c2cd72011-02-22 15:50:10 -0500504 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500505 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500506
Al Viro9f1fafe2011-03-25 11:00:12 -0400507 if (nd->flags & LOOKUP_RCU) {
508 nd->flags &= ~LOOKUP_RCU;
509 if (!(nd->flags & LOOKUP_ROOT))
510 nd->root.mnt = NULL;
511 spin_lock(&dentry->d_lock);
512 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
513 spin_unlock(&dentry->d_lock);
514 rcu_read_unlock();
515 br_read_unlock(vfsmount_lock);
516 return -ECHILD;
517 }
518 BUG_ON(nd->inode != dentry->d_inode);
519 spin_unlock(&dentry->d_lock);
520 mntget(nd->path.mnt);
521 rcu_read_unlock();
522 br_read_unlock(vfsmount_lock);
523 }
524
Al Viro16c2cd72011-02-22 15:50:10 -0500525 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500526 return 0;
527
Al Viro16c2cd72011-02-22 15:50:10 -0500528 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
529 return 0;
530
531 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
532 return 0;
533
534 /* Note: we do not d_invalidate() */
Nick Piggin34286d62011-01-07 17:49:57 +1100535 status = d_revalidate(dentry, nd);
Jeff Layton39159de2009-12-07 12:01:50 -0500536 if (status > 0)
537 return 0;
538
Al Viro16c2cd72011-02-22 15:50:10 -0500539 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500540 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500541
Al Viro9f1fafe2011-03-25 11:00:12 -0400542 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500543 return status;
544}
545
Al Viro2a737872009-04-07 11:49:53 -0400546static __always_inline void set_root(struct nameidata *nd)
547{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200548 if (!nd->root.mnt)
549 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400550}
551
Al Viro6de88d72009-08-09 01:41:57 +0400552static int link_path_walk(const char *, struct nameidata *);
553
Nick Piggin31e6b012011-01-07 17:49:52 +1100554static __always_inline void set_root_rcu(struct nameidata *nd)
555{
556 if (!nd->root.mnt) {
557 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100558 unsigned seq;
559
560 do {
561 seq = read_seqcount_begin(&fs->seq);
562 nd->root = fs->root;
Tim Chenc1530012011-04-15 11:39:29 -0700563 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
Nick Pigginc28cc362011-01-07 17:49:53 +1100564 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100565 }
566}
567
Arjan van de Venf1662352006-01-14 13:21:31 -0800568static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Nick Piggin31e6b012011-01-07 17:49:52 +1100570 int ret;
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 if (IS_ERR(link))
573 goto fail;
574
575 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400576 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800577 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400578 nd->path = nd->root;
579 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500580 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100582 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100583
Nick Piggin31e6b012011-01-07 17:49:52 +1100584 ret = link_path_walk(link, nd);
585 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800587 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 return PTR_ERR(link);
589}
590
Jan Blunck1d957f92008-02-14 19:34:35 -0800591static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700592{
593 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800594 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700595 mntput(path->mnt);
596}
597
Nick Piggin7b9337a2011-01-14 08:42:43 +0000598static inline void path_to_nameidata(const struct path *path,
599 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700600{
Nick Piggin31e6b012011-01-07 17:49:52 +1100601 if (!(nd->flags & LOOKUP_RCU)) {
602 dput(nd->path.dentry);
603 if (nd->path.mnt != path->mnt)
604 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800605 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100606 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800607 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700608}
609
Al Viro574197e2011-03-14 22:20:34 -0400610static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
611{
612 struct inode *inode = link->dentry->d_inode;
613 if (!IS_ERR(cookie) && inode->i_op->put_link)
614 inode->i_op->put_link(link->dentry, nd, cookie);
615 path_put(link);
616}
617
Al Virodef4af32009-12-26 08:37:05 -0500618static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400619follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800620{
621 int error;
Nick Piggin7b9337a2011-01-14 08:42:43 +0000622 struct dentry *dentry = link->dentry;
Ian Kent051d3812006-03-27 01:14:53 -0800623
Al Viro844a3912011-02-15 00:38:26 -0500624 BUG_ON(nd->flags & LOOKUP_RCU);
625
Al Viro0e794582011-03-16 02:45:02 -0400626 if (link->mnt == nd->path.mnt)
627 mntget(link->mnt);
628
Al Viro574197e2011-03-14 22:20:34 -0400629 if (unlikely(current->total_link_count >= 40)) {
630 *p = ERR_PTR(-ELOOP); /* no ->put_link(), please */
Al Viro574197e2011-03-14 22:20:34 -0400631 path_put(&nd->path);
632 return -ELOOP;
633 }
634 cond_resched();
635 current->total_link_count++;
636
Nick Piggin7b9337a2011-01-14 08:42:43 +0000637 touch_atime(link->mnt, dentry);
Ian Kent051d3812006-03-27 01:14:53 -0800638 nd_set_link(nd, NULL);
639
Al Viro36f3b4f2011-02-22 21:24:38 -0500640 error = security_inode_follow_link(link->dentry, nd);
641 if (error) {
642 *p = ERR_PTR(error); /* no ->put_link(), please */
643 path_put(&nd->path);
644 return error;
645 }
646
Al Viro86acdca12009-12-22 23:45:11 -0500647 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500648 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
649 error = PTR_ERR(*p);
650 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800651 char *s = nd_get_link(nd);
652 error = 0;
653 if (s)
654 error = __vfs_follow_link(nd, s);
Al Virobcda7652011-03-13 16:42:14 -0400655 else if (nd->last_type == LAST_BIND) {
Al Viro16c2cd72011-02-22 15:50:10 -0500656 nd->flags |= LOOKUP_JUMPED;
Al Virob21041d2011-03-14 20:01:51 -0400657 nd->inode = nd->path.dentry->d_inode;
658 if (nd->inode->i_op->follow_link) {
Al Virobcda7652011-03-13 16:42:14 -0400659 /* stepped on a _really_ weird one */
660 path_put(&nd->path);
661 error = -ELOOP;
662 }
663 }
Ian Kent051d3812006-03-27 01:14:53 -0800664 }
Ian Kent051d3812006-03-27 01:14:53 -0800665 return error;
666}
667
Nick Piggin31e6b012011-01-07 17:49:52 +1100668static int follow_up_rcu(struct path *path)
669{
670 struct vfsmount *parent;
671 struct dentry *mountpoint;
672
673 parent = path->mnt->mnt_parent;
674 if (parent == path->mnt)
675 return 0;
676 mountpoint = path->mnt->mnt_mountpoint;
677 path->dentry = mountpoint;
678 path->mnt = parent;
679 return 1;
680}
681
Al Virobab77eb2009-04-18 03:26:48 -0400682int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
684 struct vfsmount *parent;
685 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000686
687 br_read_lock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400688 parent = path->mnt->mnt_parent;
689 if (parent == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000690 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return 0;
692 }
693 mntget(parent);
Al Virobab77eb2009-04-18 03:26:48 -0400694 mountpoint = dget(path->mnt->mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000695 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400696 dput(path->dentry);
697 path->dentry = mountpoint;
698 mntput(path->mnt);
699 path->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return 1;
701}
702
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100703/*
David Howells9875cf82011-01-14 18:45:21 +0000704 * Perform an automount
705 * - return -EISDIR to tell follow_managed() to stop and return the path we
706 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 */
David Howells9875cf82011-01-14 18:45:21 +0000708static int follow_automount(struct path *path, unsigned flags,
709 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100710{
David Howells9875cf82011-01-14 18:45:21 +0000711 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000712 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100713
David Howells9875cf82011-01-14 18:45:21 +0000714 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
715 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700716
David Howells6f45b652011-01-14 18:45:31 +0000717 /* We don't want to mount if someone supplied AT_NO_AUTOMOUNT
718 * and this is the terminal part of the path.
719 */
720 if ((flags & LOOKUP_NO_AUTOMOUNT) && !(flags & LOOKUP_CONTINUE))
721 return -EISDIR; /* we actually want to stop here */
722
David Howells9875cf82011-01-14 18:45:21 +0000723 /* We want to mount if someone is trying to open/create a file of any
724 * type under the mountpoint, wants to traverse through the mountpoint
725 * or wants to open the mounted directory.
726 *
727 * We don't want to mount if someone's just doing a stat and they've
728 * set AT_SYMLINK_NOFOLLOW - unless they're stat'ing a directory and
729 * appended a '/' to the name.
730 */
731 if (!(flags & LOOKUP_FOLLOW) &&
732 !(flags & (LOOKUP_CONTINUE | LOOKUP_DIRECTORY |
733 LOOKUP_OPEN | LOOKUP_CREATE)))
734 return -EISDIR;
735
736 current->total_link_count++;
737 if (current->total_link_count >= 40)
738 return -ELOOP;
739
740 mnt = path->dentry->d_op->d_automount(path);
741 if (IS_ERR(mnt)) {
742 /*
743 * The filesystem is allowed to return -EISDIR here to indicate
744 * it doesn't want to automount. For instance, autofs would do
745 * this so that its userspace daemon can mount on this dentry.
746 *
747 * However, we can only permit this if it's a terminal point in
748 * the path being looked up; if it wasn't then the remainder of
749 * the path is inaccessible and we should say so.
750 */
751 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_CONTINUE))
752 return -EREMOTE;
753 return PTR_ERR(mnt);
754 }
David Howellsea5b7782011-01-14 19:10:03 +0000755
David Howells9875cf82011-01-14 18:45:21 +0000756 if (!mnt) /* mount collision */
757 return 0;
758
Al Viro8aef1882011-06-16 15:10:06 +0100759 if (!*need_mntput) {
760 /* lock_mount() may release path->mnt on error */
761 mntget(path->mnt);
762 *need_mntput = true;
763 }
Al Viro19a167a2011-01-17 01:35:23 -0500764 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000765
David Howellsea5b7782011-01-14 19:10:03 +0000766 switch (err) {
767 case -EBUSY:
768 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500769 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000770 case 0:
Al Viro8aef1882011-06-16 15:10:06 +0100771 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +0000772 path->mnt = mnt;
773 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +0000774 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500775 default:
776 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000777 }
Al Viro19a167a2011-01-17 01:35:23 -0500778
David Howells9875cf82011-01-14 18:45:21 +0000779}
780
781/*
782 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000783 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000784 * - Flagged as mountpoint
785 * - Flagged as automount point
786 *
787 * This may only be called in refwalk mode.
788 *
789 * Serialization is taken care of in namespace.c
790 */
791static int follow_managed(struct path *path, unsigned flags)
792{
Al Viro8aef1882011-06-16 15:10:06 +0100793 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +0000794 unsigned managed;
795 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +0100796 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +0000797
798 /* Given that we're not holding a lock here, we retain the value in a
799 * local variable for each dentry as we look at it so that we don't see
800 * the components of that value change under us */
801 while (managed = ACCESS_ONCE(path->dentry->d_flags),
802 managed &= DCACHE_MANAGED_DENTRY,
803 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000804 /* Allow the filesystem to manage the transit without i_mutex
805 * being held. */
806 if (managed & DCACHE_MANAGE_TRANSIT) {
807 BUG_ON(!path->dentry->d_op);
808 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -0400809 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000810 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100811 break;
David Howellscc53ce52011-01-14 18:45:26 +0000812 }
813
David Howells9875cf82011-01-14 18:45:21 +0000814 /* Transit to a mounted filesystem. */
815 if (managed & DCACHE_MOUNTED) {
816 struct vfsmount *mounted = lookup_mnt(path);
817 if (mounted) {
818 dput(path->dentry);
819 if (need_mntput)
820 mntput(path->mnt);
821 path->mnt = mounted;
822 path->dentry = dget(mounted->mnt_root);
823 need_mntput = true;
824 continue;
825 }
826
827 /* Something is mounted on this dentry in another
828 * namespace and/or whatever was mounted there in this
829 * namespace got unmounted before we managed to get the
830 * vfsmount_lock */
831 }
832
833 /* Handle an automount point */
834 if (managed & DCACHE_NEED_AUTOMOUNT) {
835 ret = follow_automount(path, flags, &need_mntput);
836 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100837 break;
David Howells9875cf82011-01-14 18:45:21 +0000838 continue;
839 }
840
841 /* We didn't change the current path point */
842 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
Al Viro8aef1882011-06-16 15:10:06 +0100844
845 if (need_mntput && path->mnt == mnt)
846 mntput(path->mnt);
847 if (ret == -EISDIR)
848 ret = 0;
849 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
David Howellscc53ce52011-01-14 18:45:26 +0000852int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
854 struct vfsmount *mounted;
855
Al Viro1c755af2009-04-18 14:06:57 -0400856 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400858 dput(path->dentry);
859 mntput(path->mnt);
860 path->mnt = mounted;
861 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return 1;
863 }
864 return 0;
865}
866
Ian Kent62a73752011-03-25 01:51:02 +0800867static inline bool managed_dentry_might_block(struct dentry *dentry)
868{
869 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
870 dentry->d_op->d_manage(dentry, true) < 0);
871}
872
David Howells9875cf82011-01-14 18:45:21 +0000873/*
Al Viro287548e2011-05-27 06:50:06 -0400874 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
875 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +0000876 */
877static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -0400878 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +0000879{
Ian Kent62a73752011-03-25 01:51:02 +0800880 for (;;) {
David Howells9875cf82011-01-14 18:45:21 +0000881 struct vfsmount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +0800882 /*
883 * Don't forget we might have a non-mountpoint managed dentry
884 * that wants to block transit.
885 */
Al Viro287548e2011-05-27 06:50:06 -0400886 if (unlikely(managed_dentry_might_block(path->dentry)))
David Howellsab909112011-01-14 18:46:51 +0000887 return false;
Ian Kent62a73752011-03-25 01:51:02 +0800888
889 if (!d_mountpoint(path->dentry))
890 break;
891
David Howells9875cf82011-01-14 18:45:21 +0000892 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
893 if (!mounted)
894 break;
895 path->mnt = mounted;
896 path->dentry = mounted->mnt_root;
897 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -0700898 /*
899 * Update the inode too. We don't need to re-check the
900 * dentry sequence number here after this d_inode read,
901 * because a mount-point is always pinned.
902 */
903 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +0000904 }
David Howells9875cf82011-01-14 18:45:21 +0000905 return true;
906}
907
Al Virodea39372011-05-27 06:53:39 -0400908static void follow_mount_rcu(struct nameidata *nd)
Al Viro287548e2011-05-27 06:50:06 -0400909{
Al Virodea39372011-05-27 06:53:39 -0400910 while (d_mountpoint(nd->path.dentry)) {
Al Viro287548e2011-05-27 06:50:06 -0400911 struct vfsmount *mounted;
Al Virodea39372011-05-27 06:53:39 -0400912 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
Al Viro287548e2011-05-27 06:50:06 -0400913 if (!mounted)
914 break;
Al Virodea39372011-05-27 06:53:39 -0400915 nd->path.mnt = mounted;
916 nd->path.dentry = mounted->mnt_root;
917 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro287548e2011-05-27 06:50:06 -0400918 }
919}
920
Nick Piggin31e6b012011-01-07 17:49:52 +1100921static int follow_dotdot_rcu(struct nameidata *nd)
922{
Nick Piggin31e6b012011-01-07 17:49:52 +1100923 set_root_rcu(nd);
924
David Howells9875cf82011-01-14 18:45:21 +0000925 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100926 if (nd->path.dentry == nd->root.dentry &&
927 nd->path.mnt == nd->root.mnt) {
928 break;
929 }
930 if (nd->path.dentry != nd->path.mnt->mnt_root) {
931 struct dentry *old = nd->path.dentry;
932 struct dentry *parent = old->d_parent;
933 unsigned seq;
934
935 seq = read_seqcount_begin(&parent->d_seq);
936 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -0500937 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +1100938 nd->path.dentry = parent;
939 nd->seq = seq;
940 break;
941 }
942 if (!follow_up_rcu(&nd->path))
943 break;
944 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +1100945 }
Al Virodea39372011-05-27 06:53:39 -0400946 follow_mount_rcu(nd);
947 nd->inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +1100948 return 0;
Al Viroef7562d2011-03-04 14:35:59 -0500949
950failed:
951 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -0500952 if (!(nd->flags & LOOKUP_ROOT))
953 nd->root.mnt = NULL;
Al Viroef7562d2011-03-04 14:35:59 -0500954 rcu_read_unlock();
955 br_read_unlock(vfsmount_lock);
956 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +1100957}
958
David Howells9875cf82011-01-14 18:45:21 +0000959/*
David Howellscc53ce52011-01-14 18:45:26 +0000960 * Follow down to the covering mount currently visible to userspace. At each
961 * point, the filesystem owning that dentry may be queried as to whether the
962 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +0000963 */
Al Viro7cc90cc2011-03-18 09:04:20 -0400964int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +0000965{
966 unsigned managed;
967 int ret;
968
969 while (managed = ACCESS_ONCE(path->dentry->d_flags),
970 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
971 /* Allow the filesystem to manage the transit without i_mutex
972 * being held.
973 *
974 * We indicate to the filesystem if someone is trying to mount
975 * something here. This gives autofs the chance to deny anyone
976 * other than its daemon the right to mount on its
977 * superstructure.
978 *
979 * The filesystem may sleep at this point.
980 */
981 if (managed & DCACHE_MANAGE_TRANSIT) {
982 BUG_ON(!path->dentry->d_op);
983 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +0000984 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -0400985 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000986 if (ret < 0)
987 return ret == -EISDIR ? 0 : ret;
988 }
989
990 /* Transit to a mounted filesystem. */
991 if (managed & DCACHE_MOUNTED) {
992 struct vfsmount *mounted = lookup_mnt(path);
993 if (!mounted)
994 break;
995 dput(path->dentry);
996 mntput(path->mnt);
997 path->mnt = mounted;
998 path->dentry = dget(mounted->mnt_root);
999 continue;
1000 }
1001
1002 /* Don't handle automount points here */
1003 break;
1004 }
1005 return 0;
1006}
1007
1008/*
David Howells9875cf82011-01-14 18:45:21 +00001009 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1010 */
1011static void follow_mount(struct path *path)
1012{
1013 while (d_mountpoint(path->dentry)) {
1014 struct vfsmount *mounted = lookup_mnt(path);
1015 if (!mounted)
1016 break;
1017 dput(path->dentry);
1018 mntput(path->mnt);
1019 path->mnt = mounted;
1020 path->dentry = dget(mounted->mnt_root);
1021 }
1022}
1023
Nick Piggin31e6b012011-01-07 17:49:52 +11001024static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025{
Al Viro2a737872009-04-07 11:49:53 -04001026 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001027
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001029 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Al Viro2a737872009-04-07 11:49:53 -04001031 if (nd->path.dentry == nd->root.dentry &&
1032 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 break;
1034 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001035 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001036 /* rare case of legitimate dget_parent()... */
1037 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 dput(old);
1039 break;
1040 }
Al Viro3088dd72010-01-30 15:47:29 -05001041 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
Al Viro79ed0222009-04-18 13:59:41 -04001044 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001045 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046}
1047
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048/*
Nick Pigginbaa03892010-08-18 04:37:31 +10001049 * Allocate a dentry with name and parent, and perform a parent
1050 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1051 * on error. parent->d_inode->i_mutex must be held. d_lookup must
1052 * have verified that no child exists while under i_mutex.
1053 */
1054static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1055 struct qstr *name, struct nameidata *nd)
1056{
1057 struct inode *inode = parent->d_inode;
1058 struct dentry *dentry;
1059 struct dentry *old;
1060
1061 /* Don't create child dentry for a dead directory. */
1062 if (unlikely(IS_DEADDIR(inode)))
1063 return ERR_PTR(-ENOENT);
1064
1065 dentry = d_alloc(parent, name);
1066 if (unlikely(!dentry))
1067 return ERR_PTR(-ENOMEM);
1068
1069 old = inode->i_op->lookup(inode, dentry, nd);
1070 if (unlikely(old)) {
1071 dput(dentry);
1072 dentry = old;
1073 }
1074 return dentry;
1075}
1076
1077/*
Josef Bacik44396f42011-05-31 11:58:49 -04001078 * We already have a dentry, but require a lookup to be performed on the parent
1079 * directory to fill in d_inode. Returns the new dentry, or ERR_PTR on error.
1080 * parent->d_inode->i_mutex must be held. d_lookup must have verified that no
1081 * child exists while under i_mutex.
1082 */
1083static struct dentry *d_inode_lookup(struct dentry *parent, struct dentry *dentry,
1084 struct nameidata *nd)
1085{
1086 struct inode *inode = parent->d_inode;
1087 struct dentry *old;
1088
1089 /* Don't create child dentry for a dead directory. */
1090 if (unlikely(IS_DEADDIR(inode)))
1091 return ERR_PTR(-ENOENT);
1092
1093 old = inode->i_op->lookup(inode, dentry, nd);
1094 if (unlikely(old)) {
1095 dput(dentry);
1096 dentry = old;
1097 }
1098 return dentry;
1099}
1100
1101/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 * It's more convoluted than I'd like it to be, but... it's still fairly
1103 * small and for now I'd prefer to have fast path as straight as possible.
1104 * It _is_ time-critical.
1105 */
1106static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +11001107 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Jan Blunck4ac91372008-02-14 19:34:32 -08001109 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001110 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001111 int need_reval = 1;
1112 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001113 int err;
1114
Al Viro3cac2602009-08-13 18:27:43 +04001115 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001116 * Rename seqlock is not required here because in the off chance
1117 * of a false negative due to a concurrent rename, we're going to
1118 * do the non-racy lookup, below.
1119 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001120 if (nd->flags & LOOKUP_RCU) {
1121 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001122 *inode = nd->inode;
1123 dentry = __d_lookup_rcu(parent, name, &seq, inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001124 if (!dentry)
1125 goto unlazy;
1126
Nick Piggin31e6b012011-01-07 17:49:52 +11001127 /* Memory barrier in read_seqcount_begin of child is enough */
1128 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1129 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001130 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001131
Al Viro24643082011-02-15 01:26:22 -05001132 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro5a18fff2011-03-11 04:44:53 -05001133 status = d_revalidate(dentry, nd);
1134 if (unlikely(status <= 0)) {
1135 if (status != -ECHILD)
1136 need_reval = 0;
1137 goto unlazy;
1138 }
Al Viro24643082011-02-15 01:26:22 -05001139 }
Josef Bacik44396f42011-05-31 11:58:49 -04001140 if (unlikely(d_need_lookup(dentry)))
1141 goto unlazy;
Nick Piggin31e6b012011-01-07 17:49:52 +11001142 path->mnt = mnt;
1143 path->dentry = dentry;
Al Virod6e9bd22011-05-27 07:03:15 -04001144 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1145 goto unlazy;
1146 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1147 goto unlazy;
1148 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001149unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001150 if (unlazy_walk(nd, dentry))
1151 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001152 } else {
1153 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001154 }
Al Viro5a18fff2011-03-11 04:44:53 -05001155
Josef Bacik44396f42011-05-31 11:58:49 -04001156 if (dentry && unlikely(d_need_lookup(dentry))) {
1157 dput(dentry);
1158 dentry = NULL;
1159 }
Al Viro5a18fff2011-03-11 04:44:53 -05001160retry:
1161 if (unlikely(!dentry)) {
1162 struct inode *dir = parent->d_inode;
1163 BUG_ON(nd->inode != dir);
1164
1165 mutex_lock(&dir->i_mutex);
1166 dentry = d_lookup(parent, name);
1167 if (likely(!dentry)) {
1168 dentry = d_alloc_and_lookup(parent, name, nd);
1169 if (IS_ERR(dentry)) {
1170 mutex_unlock(&dir->i_mutex);
1171 return PTR_ERR(dentry);
1172 }
1173 /* known good */
1174 need_reval = 0;
1175 status = 1;
Josef Bacik44396f42011-05-31 11:58:49 -04001176 } else if (unlikely(d_need_lookup(dentry))) {
1177 dentry = d_inode_lookup(parent, dentry, nd);
1178 if (IS_ERR(dentry)) {
1179 mutex_unlock(&dir->i_mutex);
1180 return PTR_ERR(dentry);
1181 }
1182 /* known good */
1183 need_reval = 0;
1184 status = 1;
Al Viro5a18fff2011-03-11 04:44:53 -05001185 }
1186 mutex_unlock(&dir->i_mutex);
Al Viro24643082011-02-15 01:26:22 -05001187 }
Al Viro5a18fff2011-03-11 04:44:53 -05001188 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1189 status = d_revalidate(dentry, nd);
1190 if (unlikely(status <= 0)) {
1191 if (status < 0) {
1192 dput(dentry);
1193 return status;
1194 }
1195 if (!d_invalidate(dentry)) {
1196 dput(dentry);
1197 dentry = NULL;
1198 need_reval = 1;
1199 goto retry;
1200 }
1201 }
1202
David Howells9875cf82011-01-14 18:45:21 +00001203 path->mnt = mnt;
1204 path->dentry = dentry;
1205 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001206 if (unlikely(err < 0)) {
1207 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001208 return err;
Ian Kent89312212011-01-18 12:06:10 +08001209 }
David Howells9875cf82011-01-14 18:45:21 +00001210 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212}
1213
Al Viro52094c82011-02-21 21:34:47 -05001214static inline int may_lookup(struct nameidata *nd)
1215{
1216 if (nd->flags & LOOKUP_RCU) {
1217 int err = exec_permission(nd->inode, IPERM_FLAG_RCU);
1218 if (err != -ECHILD)
1219 return err;
Al Viro19660af2011-03-25 10:32:48 -04001220 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001221 return -ECHILD;
1222 }
1223 return exec_permission(nd->inode, 0);
1224}
1225
Al Viro9856fa12011-03-04 14:22:06 -05001226static inline int handle_dots(struct nameidata *nd, int type)
1227{
1228 if (type == LAST_DOTDOT) {
1229 if (nd->flags & LOOKUP_RCU) {
1230 if (follow_dotdot_rcu(nd))
1231 return -ECHILD;
1232 } else
1233 follow_dotdot(nd);
1234 }
1235 return 0;
1236}
1237
Al Viro951361f2011-03-04 14:44:37 -05001238static void terminate_walk(struct nameidata *nd)
1239{
1240 if (!(nd->flags & LOOKUP_RCU)) {
1241 path_put(&nd->path);
1242 } else {
1243 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001244 if (!(nd->flags & LOOKUP_ROOT))
1245 nd->root.mnt = NULL;
Al Viro951361f2011-03-04 14:44:37 -05001246 rcu_read_unlock();
1247 br_read_unlock(vfsmount_lock);
1248 }
1249}
1250
Al Viroce57dfc2011-03-13 19:58:58 -04001251static inline int walk_component(struct nameidata *nd, struct path *path,
1252 struct qstr *name, int type, int follow)
1253{
1254 struct inode *inode;
1255 int err;
1256 /*
1257 * "." and ".." are special - ".." especially so because it has
1258 * to be able to know about the current root directory and
1259 * parent relationships.
1260 */
1261 if (unlikely(type != LAST_NORM))
1262 return handle_dots(nd, type);
1263 err = do_lookup(nd, name, path, &inode);
1264 if (unlikely(err)) {
1265 terminate_walk(nd);
1266 return err;
1267 }
1268 if (!inode) {
1269 path_to_nameidata(path, nd);
1270 terminate_walk(nd);
1271 return -ENOENT;
1272 }
1273 if (unlikely(inode->i_op->follow_link) && follow) {
Al Viro19660af2011-03-25 10:32:48 -04001274 if (nd->flags & LOOKUP_RCU) {
1275 if (unlikely(unlazy_walk(nd, path->dentry))) {
1276 terminate_walk(nd);
1277 return -ECHILD;
1278 }
1279 }
Al Viroce57dfc2011-03-13 19:58:58 -04001280 BUG_ON(inode != path->dentry->d_inode);
1281 return 1;
1282 }
1283 path_to_nameidata(path, nd);
1284 nd->inode = inode;
1285 return 0;
1286}
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288/*
Al Virob3563792011-03-14 21:54:55 -04001289 * This limits recursive symlink follows to 8, while
1290 * limiting consecutive symlinks to 40.
1291 *
1292 * Without that kind of total limit, nasty chains of consecutive
1293 * symlinks can cause almost arbitrarily long lookups.
1294 */
1295static inline int nested_symlink(struct path *path, struct nameidata *nd)
1296{
1297 int res;
1298
Al Virob3563792011-03-14 21:54:55 -04001299 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1300 path_put_conditional(path, nd);
1301 path_put(&nd->path);
1302 return -ELOOP;
1303 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001304 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001305
1306 nd->depth++;
1307 current->link_count++;
1308
1309 do {
1310 struct path link = *path;
1311 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001312
1313 res = follow_link(&link, nd, &cookie);
Al Virob3563792011-03-14 21:54:55 -04001314 if (!res)
1315 res = walk_component(nd, path, &nd->last,
1316 nd->last_type, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001317 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001318 } while (res > 0);
1319
1320 current->link_count--;
1321 nd->depth--;
1322 return res;
1323}
1324
1325/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001327 * This is the basic name resolution function, turning a pathname into
1328 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001330 * Returns 0 and nd will have valid dentry and mnt on success.
1331 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 */
Al Viro6de88d72009-08-09 01:41:57 +04001333static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334{
1335 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 int err;
1337 unsigned int lookup_flags = nd->flags;
1338
1339 while (*name=='/')
1340 name++;
1341 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001342 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 /* At this point we know we have a real path component. */
1345 for(;;) {
1346 unsigned long hash;
1347 struct qstr this;
1348 unsigned int c;
Al Virofe479a52011-02-22 15:10:03 -05001349 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350
Trond Myklebustcdce5d62005-10-18 14:20:18 -07001351 nd->flags |= LOOKUP_CONTINUE;
Al Viro52094c82011-02-21 21:34:47 -05001352
1353 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 if (err)
1355 break;
1356
1357 this.name = name;
1358 c = *(const unsigned char *)name;
1359
1360 hash = init_name_hash();
1361 do {
1362 name++;
1363 hash = partial_name_hash(c, hash);
1364 c = *(const unsigned char *)name;
1365 } while (c && (c != '/'));
1366 this.len = name - (const char *) this.name;
1367 this.hash = end_name_hash(hash);
1368
Al Virofe479a52011-02-22 15:10:03 -05001369 type = LAST_NORM;
1370 if (this.name[0] == '.') switch (this.len) {
1371 case 2:
Al Viro16c2cd72011-02-22 15:50:10 -05001372 if (this.name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001373 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001374 nd->flags |= LOOKUP_JUMPED;
1375 }
Al Virofe479a52011-02-22 15:10:03 -05001376 break;
1377 case 1:
1378 type = LAST_DOT;
1379 }
Al Viro5a202bc2011-03-08 14:17:44 -05001380 if (likely(type == LAST_NORM)) {
1381 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001382 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001383 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1384 err = parent->d_op->d_hash(parent, nd->inode,
1385 &this);
1386 if (err < 0)
1387 break;
1388 }
1389 }
Al Virofe479a52011-02-22 15:10:03 -05001390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 /* remove trailing slashes? */
1392 if (!c)
1393 goto last_component;
1394 while (*++name == '/');
1395 if (!*name)
Al Virob3563792011-03-14 21:54:55 -04001396 goto last_component;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Al Viroce57dfc2011-03-13 19:58:58 -04001398 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1399 if (err < 0)
1400 return err;
Al Virofe479a52011-02-22 15:10:03 -05001401
Al Viroce57dfc2011-03-13 19:58:58 -04001402 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001403 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001405 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001408 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 break;
1410 continue;
1411 /* here ends the main loop */
1412
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -08001414 /* Clear LOOKUP_CONTINUE iff it was previously unset */
1415 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Al Virob3563792011-03-14 21:54:55 -04001416 nd->last = this;
1417 nd->last_type = type;
Al Viro086e1832011-02-22 20:56:27 -05001418 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 }
Al Viro951361f2011-03-04 14:44:37 -05001420 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 return err;
1422}
1423
Al Viro70e9b352011-03-05 21:12:22 -05001424static int path_init(int dfd, const char *name, unsigned int flags,
1425 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001427 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001428 int fput_needed;
1429 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
1431 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001432 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001434 if (flags & LOOKUP_ROOT) {
1435 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001436 if (*name) {
1437 if (!inode->i_op->lookup)
1438 return -ENOTDIR;
1439 retval = inode_permission(inode, MAY_EXEC);
1440 if (retval)
1441 return retval;
1442 }
Al Viro5b6ca022011-03-09 23:04:47 -05001443 nd->path = nd->root;
1444 nd->inode = inode;
1445 if (flags & LOOKUP_RCU) {
1446 br_read_lock(vfsmount_lock);
1447 rcu_read_lock();
1448 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1449 } else {
1450 path_get(&nd->path);
1451 }
1452 return 0;
1453 }
1454
Al Viro2a737872009-04-07 11:49:53 -04001455 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001458 if (flags & LOOKUP_RCU) {
1459 br_read_lock(vfsmount_lock);
1460 rcu_read_lock();
1461 set_root_rcu(nd);
1462 } else {
1463 set_root(nd);
1464 path_get(&nd->root);
1465 }
Al Viro2a737872009-04-07 11:49:53 -04001466 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001467 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001468 if (flags & LOOKUP_RCU) {
1469 struct fs_struct *fs = current->fs;
1470 unsigned seq;
1471
1472 br_read_lock(vfsmount_lock);
1473 rcu_read_lock();
1474
1475 do {
1476 seq = read_seqcount_begin(&fs->seq);
1477 nd->path = fs->pwd;
1478 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1479 } while (read_seqcount_retry(&fs->seq, seq));
1480 } else {
1481 get_fs_pwd(current->fs, &nd->path);
1482 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001483 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001484 struct dentry *dentry;
1485
Al Viro1abf0c72011-03-13 03:51:11 -04001486 file = fget_raw_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001487 retval = -EBADF;
1488 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001489 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001490
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001491 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001492
Al Virof52e0c12011-03-14 18:56:51 -04001493 if (*name) {
1494 retval = -ENOTDIR;
1495 if (!S_ISDIR(dentry->d_inode->i_mode))
1496 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001497
Al Viro78f32a92011-06-19 11:54:42 -04001498 retval = exec_permission(dentry->d_inode, 0);
Al Virof52e0c12011-03-14 18:56:51 -04001499 if (retval)
1500 goto fput_fail;
1501 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001502
Jan Blunck5dd784d02008-02-14 19:34:38 -08001503 nd->path = file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001504 if (flags & LOOKUP_RCU) {
1505 if (fput_needed)
Al Viro70e9b352011-03-05 21:12:22 -05001506 *fp = file;
Al Viroe41f7d42011-02-22 14:02:58 -05001507 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1508 br_read_lock(vfsmount_lock);
1509 rcu_read_lock();
1510 } else {
1511 path_get(&file->f_path);
1512 fput_light(file, fput_needed);
1513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 }
Al Viroe41f7d42011-02-22 14:02:58 -05001515
Nick Piggin31e6b012011-01-07 17:49:52 +11001516 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001517 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001518
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001519fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001520 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001521out_fail:
1522 return retval;
1523}
1524
Al Virobd92d7f2011-03-14 19:54:59 -04001525static inline int lookup_last(struct nameidata *nd, struct path *path)
1526{
1527 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1528 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1529
1530 nd->flags &= ~LOOKUP_PARENT;
1531 return walk_component(nd, path, &nd->last, nd->last_type,
1532 nd->flags & LOOKUP_FOLLOW);
1533}
1534
Al Viro9b4a9b12009-04-07 11:44:16 -04001535/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001536static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001537 unsigned int flags, struct nameidata *nd)
1538{
Al Viro70e9b352011-03-05 21:12:22 -05001539 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001540 struct path path;
1541 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001542
1543 /*
1544 * Path walking is largely split up into 2 different synchronisation
1545 * schemes, rcu-walk and ref-walk (explained in
1546 * Documentation/filesystems/path-lookup.txt). These share much of the
1547 * path walk code, but some things particularly setup, cleanup, and
1548 * following mounts are sufficiently divergent that functions are
1549 * duplicated. Typically there is a function foo(), and its RCU
1550 * analogue, foo_rcu().
1551 *
1552 * -ECHILD is the error number of choice (just to avoid clashes) that
1553 * is returned if some aspect of an rcu-walk fails. Such an error must
1554 * be handled by restarting a traditional ref-walk (which will always
1555 * be able to complete).
1556 */
Al Virobd92d7f2011-03-14 19:54:59 -04001557 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001558
Al Virobd92d7f2011-03-14 19:54:59 -04001559 if (unlikely(err))
1560 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001561
1562 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001563 err = link_path_walk(name, nd);
1564
1565 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001566 err = lookup_last(nd, &path);
1567 while (err > 0) {
1568 void *cookie;
1569 struct path link = path;
Al Virobd92d7f2011-03-14 19:54:59 -04001570 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001571 err = follow_link(&link, nd, &cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001572 if (!err)
1573 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001574 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001575 }
1576 }
Al Viroee0827c2011-02-21 23:38:09 -05001577
Al Viro9f1fafe2011-03-25 11:00:12 -04001578 if (!err)
1579 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001580
1581 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1582 if (!nd->inode->i_op->lookup) {
1583 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001584 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001585 }
1586 }
Al Viro16c2cd72011-02-22 15:50:10 -05001587
Al Viro70e9b352011-03-05 21:12:22 -05001588 if (base)
1589 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001590
Al Viro5b6ca022011-03-09 23:04:47 -05001591 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001592 path_put(&nd->root);
1593 nd->root.mnt = NULL;
1594 }
Al Virobd92d7f2011-03-14 19:54:59 -04001595 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001596}
Nick Piggin31e6b012011-01-07 17:49:52 +11001597
Al Viroee0827c2011-02-21 23:38:09 -05001598static int do_path_lookup(int dfd, const char *name,
1599 unsigned int flags, struct nameidata *nd)
1600{
1601 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1602 if (unlikely(retval == -ECHILD))
1603 retval = path_lookupat(dfd, name, flags, nd);
1604 if (unlikely(retval == -ESTALE))
1605 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001606
1607 if (likely(!retval)) {
1608 if (unlikely(!audit_dummy_context())) {
1609 if (nd->path.dentry && nd->inode)
1610 audit_inode(name, nd->path.dentry);
1611 }
1612 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001613 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614}
1615
Al Viroc9c6cac2011-02-16 15:15:47 -05001616int kern_path_parent(const char *name, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001617{
Al Viroc9c6cac2011-02-16 15:15:47 -05001618 return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001619}
1620
Al Virod1811462008-08-02 00:49:18 -04001621int kern_path(const char *name, unsigned int flags, struct path *path)
1622{
1623 struct nameidata nd;
1624 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1625 if (!res)
1626 *path = nd.path;
1627 return res;
1628}
1629
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001630/**
1631 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1632 * @dentry: pointer to dentry of the base directory
1633 * @mnt: pointer to vfs mount of the base directory
1634 * @name: pointer to file name
1635 * @flags: lookup flags
1636 * @nd: pointer to nameidata
1637 */
1638int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1639 const char *name, unsigned int flags,
1640 struct nameidata *nd)
1641{
Al Viro5b6ca022011-03-09 23:04:47 -05001642 nd->root.dentry = dentry;
1643 nd->root.mnt = mnt;
1644 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
1645 return do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, nd);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001646}
1647
Christoph Hellwigeead1912007-10-16 23:25:38 -07001648static struct dentry *__lookup_hash(struct qstr *name,
1649 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650{
Christoph Hellwig81fca442010-10-06 10:47:47 +02001651 struct inode *inode = base->d_inode;
James Morris057f6c02007-04-26 00:12:05 -07001652 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 int err;
1654
Nick Pigginb74c79e2011-01-07 17:49:58 +11001655 err = exec_permission(inode, 0);
Christoph Hellwig81fca442010-10-06 10:47:47 +02001656 if (err)
1657 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001660 * Don't bother with __d_lookup: callers are for creat as
1661 * well as unlink, so a lot of the time it would cost
1662 * a double lookup.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001663 */
Nick Pigginb04f7842010-08-18 04:37:34 +10001664 dentry = d_lookup(base, name);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001665
Josef Bacik44396f42011-05-31 11:58:49 -04001666 if (dentry && d_need_lookup(dentry)) {
1667 /*
1668 * __lookup_hash is called with the parent dir's i_mutex already
1669 * held, so we are good to go here.
1670 */
1671 dentry = d_inode_lookup(base, dentry, nd);
1672 if (IS_ERR(dentry))
1673 return dentry;
1674 }
1675
Nick Pigginfb045ad2011-01-07 17:49:55 +11001676 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE))
Al Viro6e6b1bd2009-08-13 23:38:37 +04001677 dentry = do_revalidate(dentry, nd);
1678
Nick Pigginbaa03892010-08-18 04:37:31 +10001679 if (!dentry)
1680 dentry = d_alloc_and_lookup(base, name, nd);
Al Viro5a202bc2011-03-08 14:17:44 -05001681
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 return dentry;
1683}
1684
James Morris057f6c02007-04-26 00:12:05 -07001685/*
1686 * Restricted form of lookup. Doesn't follow links, single-component only,
1687 * needs parent already locked. Doesn't follow mounts.
1688 * SMP-safe.
1689 */
Adrian Bunka244e162006-03-31 02:32:11 -08001690static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
Jan Blunck4ac91372008-02-14 19:34:32 -08001692 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693}
1694
Christoph Hellwigeead1912007-10-16 23:25:38 -07001695/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001696 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001697 * @name: pathname component to lookup
1698 * @base: base directory to lookup from
1699 * @len: maximum length @len should be interpreted to
1700 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001701 * Note that this routine is purely a helper for filesystem usage and should
1702 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001703 * nameidata argument is passed to the filesystem methods and a filesystem
1704 * using this helper needs to be prepared for that.
1705 */
James Morris057f6c02007-04-26 00:12:05 -07001706struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1707{
James Morris057f6c02007-04-26 00:12:05 -07001708 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05001709 unsigned long hash;
1710 unsigned int c;
James Morris057f6c02007-04-26 00:12:05 -07001711
David Woodhouse2f9092e2009-04-20 23:18:37 +01001712 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1713
Al Viro6a96ba52011-03-07 23:49:20 -05001714 this.name = name;
1715 this.len = len;
1716 if (!len)
1717 return ERR_PTR(-EACCES);
1718
1719 hash = init_name_hash();
1720 while (len--) {
1721 c = *(const unsigned char *)name++;
1722 if (c == '/' || c == '\0')
1723 return ERR_PTR(-EACCES);
1724 hash = partial_name_hash(c, hash);
1725 }
1726 this.hash = end_name_hash(hash);
Al Viro5a202bc2011-03-08 14:17:44 -05001727 /*
1728 * See if the low-level filesystem might want
1729 * to use its own hash..
1730 */
1731 if (base->d_flags & DCACHE_OP_HASH) {
1732 int err = base->d_op->d_hash(base, base->d_inode, &this);
1733 if (err < 0)
1734 return ERR_PTR(err);
1735 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07001736
Christoph Hellwig49705b72005-11-08 21:35:06 -08001737 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001738}
1739
Al Viro2d8f3032008-07-22 09:59:21 -04001740int user_path_at(int dfd, const char __user *name, unsigned flags,
1741 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
Al Viro2d8f3032008-07-22 09:59:21 -04001743 struct nameidata nd;
Al Virof52e0c12011-03-14 18:56:51 -04001744 char *tmp = getname_flags(name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001747
1748 BUG_ON(flags & LOOKUP_PARENT);
1749
1750 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001752 if (!err)
1753 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 }
1755 return err;
1756}
1757
Al Viro2ad94ae2008-07-21 09:32:51 -04001758static int user_path_parent(int dfd, const char __user *path,
1759 struct nameidata *nd, char **name)
1760{
1761 char *s = getname(path);
1762 int error;
1763
1764 if (IS_ERR(s))
1765 return PTR_ERR(s);
1766
1767 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1768 if (error)
1769 putname(s);
1770 else
1771 *name = s;
1772
1773 return error;
1774}
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776/*
1777 * It's inline, so penalty for filesystems that don't use sticky bit is
1778 * minimal.
1779 */
1780static inline int check_sticky(struct inode *dir, struct inode *inode)
1781{
David Howellsda9592e2008-11-14 10:39:05 +11001782 uid_t fsuid = current_fsuid();
1783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 if (!(dir->i_mode & S_ISVTX))
1785 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001786 if (current_user_ns() != inode_userns(inode))
1787 goto other_userns;
David Howellsda9592e2008-11-14 10:39:05 +11001788 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001790 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001792
1793other_userns:
1794 return !ns_capable(inode_userns(inode), CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795}
1796
1797/*
1798 * Check whether we can remove a link victim from directory dir, check
1799 * whether the type of victim is right.
1800 * 1. We can't do it if dir is read-only (done in permission())
1801 * 2. We should have write and exec permissions on dir
1802 * 3. We can't remove anything from append-only dir
1803 * 4. We can't do anything with immutable dir (done in permission())
1804 * 5. If the sticky bit on dir is set we should either
1805 * a. be owner of dir, or
1806 * b. be owner of victim, or
1807 * c. have CAP_FOWNER capability
1808 * 6. If the victim is append-only or immutable we can't do antyhing with
1809 * links pointing to it.
1810 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1811 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1812 * 9. We can't remove a root or mountpoint.
1813 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1814 * nfs_async_unlink().
1815 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001816static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
1818 int error;
1819
1820 if (!victim->d_inode)
1821 return -ENOENT;
1822
1823 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001824 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Al Virof419a2e2008-07-22 00:07:17 -04001826 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 if (error)
1828 return error;
1829 if (IS_APPEND(dir))
1830 return -EPERM;
1831 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001832 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 return -EPERM;
1834 if (isdir) {
1835 if (!S_ISDIR(victim->d_inode->i_mode))
1836 return -ENOTDIR;
1837 if (IS_ROOT(victim))
1838 return -EBUSY;
1839 } else if (S_ISDIR(victim->d_inode->i_mode))
1840 return -EISDIR;
1841 if (IS_DEADDIR(dir))
1842 return -ENOENT;
1843 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1844 return -EBUSY;
1845 return 0;
1846}
1847
1848/* Check whether we can create an object with dentry child in directory
1849 * dir.
1850 * 1. We can't do it if child already exists (open has special treatment for
1851 * this case, but since we are inlined it's OK)
1852 * 2. We can't do it if dir is read-only (done in permission())
1853 * 3. We should have write and exec permissions on dir
1854 * 4. We can't do it if dir is immutable (done in permission())
1855 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001856static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
1858 if (child->d_inode)
1859 return -EEXIST;
1860 if (IS_DEADDIR(dir))
1861 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001862 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863}
1864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865/*
1866 * p1 and p2 should be directories on the same fs.
1867 */
1868struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1869{
1870 struct dentry *p;
1871
1872 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001873 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 return NULL;
1875 }
1876
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001877 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001879 p = d_ancestor(p2, p1);
1880 if (p) {
1881 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1882 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1883 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 }
1885
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001886 p = d_ancestor(p1, p2);
1887 if (p) {
1888 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1889 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1890 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 }
1892
Ingo Molnarf2eace22006-07-03 00:25:05 -07001893 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1894 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 return NULL;
1896}
1897
1898void unlock_rename(struct dentry *p1, struct dentry *p2)
1899{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001900 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001902 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001903 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 }
1905}
1906
1907int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1908 struct nameidata *nd)
1909{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001910 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
1912 if (error)
1913 return error;
1914
Al Viroacfa4382008-12-04 10:06:33 -05001915 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 return -EACCES; /* shouldn't it be ENOSYS? */
1917 mode &= S_IALLUGO;
1918 mode |= S_IFREG;
1919 error = security_inode_create(dir, dentry, mode);
1920 if (error)
1921 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001923 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001924 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 return error;
1926}
1927
Al Viro73d049a2011-03-11 12:08:24 -05001928static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001930 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 struct inode *inode = dentry->d_inode;
1932 int error;
1933
Al Virobcda7652011-03-13 16:42:14 -04001934 /* O_PATH? */
1935 if (!acc_mode)
1936 return 0;
1937
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 if (!inode)
1939 return -ENOENT;
1940
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001941 switch (inode->i_mode & S_IFMT) {
1942 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001944 case S_IFDIR:
1945 if (acc_mode & MAY_WRITE)
1946 return -EISDIR;
1947 break;
1948 case S_IFBLK:
1949 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001950 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001952 /*FALLTHRU*/
1953 case S_IFIFO:
1954 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001956 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001957 }
Dave Hansenb41572e2007-10-16 23:31:14 -07001958
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001959 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07001960 if (error)
1961 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05001962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 /*
1964 * An append-only file must be opened in append mode for writing.
1965 */
1966 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05001967 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05001968 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05001970 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 }
1972
1973 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001974 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05001975 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977 /*
1978 * Ensure there are no outstanding leases on the file.
1979 */
Al Virob65a9cf2009-12-16 06:27:40 -05001980 return break_lease(inode, flag);
Al Viro7715b522009-12-16 03:54:00 -05001981}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
Jeff Laytone1181ee2010-12-07 16:19:50 -05001983static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05001984{
Jeff Laytone1181ee2010-12-07 16:19:50 -05001985 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05001986 struct inode *inode = path->dentry->d_inode;
1987 int error = get_write_access(inode);
1988 if (error)
1989 return error;
1990 /*
1991 * Refuse to truncate files with mandatory locks held on them.
1992 */
1993 error = locks_verify_locked(inode);
1994 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09001995 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05001996 if (!error) {
1997 error = do_truncate(path->dentry, 0,
1998 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05001999 filp);
Al Viro7715b522009-12-16 03:54:00 -05002000 }
2001 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002002 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003}
2004
Dave Hansend57999e2008-02-15 14:37:27 -08002005/*
Dave Hansend57999e2008-02-15 14:37:27 -08002006 * Note that while the flag value (low two bits) for sys_open means:
2007 * 00 - read-only
2008 * 01 - write-only
2009 * 10 - read-write
2010 * 11 - special
2011 * it is changed into
2012 * 00 - no permissions needed
2013 * 01 - read-permission
2014 * 10 - write-permission
2015 * 11 - read-write
2016 * for the internal routines (ie open_namei()/follow_link() etc)
2017 * This is more logical, and also allows the 00 "no perm needed"
2018 * to be used for symlinks (where the permissions are checked
2019 * later).
2020 *
2021*/
2022static inline int open_to_namei_flags(int flag)
2023{
2024 if ((flag+1) & O_ACCMODE)
2025 flag++;
2026 return flag;
2027}
2028
Nick Piggin31e6b012011-01-07 17:49:52 +11002029/*
Al Virofe2d35f2011-03-05 22:58:25 -05002030 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002031 */
Al Virofb1cc552009-12-24 01:58:28 -05002032static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viroc3e380b2011-02-23 13:39:45 -05002033 const struct open_flags *op, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002034{
Al Viroa1e28032009-12-24 02:12:06 -05002035 struct dentry *dir = nd->path.dentry;
Al Viro6c0d46c2011-03-09 00:59:59 -05002036 struct dentry *dentry;
Al Viroca344a892011-03-09 00:36:45 -05002037 int open_flag = op->open_flag;
Al Viro6c0d46c2011-03-09 00:59:59 -05002038 int will_truncate = open_flag & O_TRUNC;
Al Viroca344a892011-03-09 00:36:45 -05002039 int want_write = 0;
Al Virobcda7652011-03-13 16:42:14 -04002040 int acc_mode = op->acc_mode;
Al Virofb1cc552009-12-24 01:58:28 -05002041 struct file *filp;
Al Viro16c2cd72011-02-22 15:50:10 -05002042 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002043
Al Viroc3e380b2011-02-23 13:39:45 -05002044 nd->flags &= ~LOOKUP_PARENT;
2045 nd->flags |= op->intent;
2046
Al Viro1f36f772009-12-26 10:56:19 -05002047 switch (nd->last_type) {
2048 case LAST_DOTDOT:
Neil Brown176306f2010-05-24 16:57:56 +10002049 case LAST_DOT:
Al Virofe2d35f2011-03-05 22:58:25 -05002050 error = handle_dots(nd, nd->last_type);
2051 if (error)
2052 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002053 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002054 case LAST_ROOT:
Al Viro9f1fafe2011-03-25 11:00:12 -04002055 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002056 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002057 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002058 audit_inode(pathname, nd->path.dentry);
Al Viroca344a892011-03-09 00:36:45 -05002059 if (open_flag & O_CREAT) {
Al Virofe2d35f2011-03-05 22:58:25 -05002060 error = -EISDIR;
2061 goto exit;
2062 }
2063 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002064 case LAST_BIND:
Al Viro9f1fafe2011-03-25 11:00:12 -04002065 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002066 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002067 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002068 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002069 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002070 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002071
Al Viroca344a892011-03-09 00:36:45 -05002072 if (!(open_flag & O_CREAT)) {
Al Virobcda7652011-03-13 16:42:14 -04002073 int symlink_ok = 0;
Al Virofe2d35f2011-03-05 22:58:25 -05002074 if (nd->last.name[nd->last.len])
2075 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002076 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2077 symlink_ok = 1;
Al Virofe2d35f2011-03-05 22:58:25 -05002078 /* we _can_ be in RCU mode here */
Al Viroce57dfc2011-03-13 19:58:58 -04002079 error = walk_component(nd, path, &nd->last, LAST_NORM,
2080 !symlink_ok);
2081 if (error < 0)
Al Virofe2d35f2011-03-05 22:58:25 -05002082 return ERR_PTR(error);
Al Viroce57dfc2011-03-13 19:58:58 -04002083 if (error) /* symlink */
Al Virofe2d35f2011-03-05 22:58:25 -05002084 return NULL;
Al Virofe2d35f2011-03-05 22:58:25 -05002085 /* sayonara */
Al Viro9f1fafe2011-03-25 11:00:12 -04002086 error = complete_walk(nd);
2087 if (error)
2088 return ERR_PTR(-ECHILD);
Al Virofe2d35f2011-03-05 22:58:25 -05002089
2090 error = -ENOTDIR;
2091 if (nd->flags & LOOKUP_DIRECTORY) {
Al Viroce57dfc2011-03-13 19:58:58 -04002092 if (!nd->inode->i_op->lookup)
Al Virofe2d35f2011-03-05 22:58:25 -05002093 goto exit;
2094 }
2095 audit_inode(pathname, nd->path.dentry);
2096 goto ok;
2097 }
2098
2099 /* create side of things */
Al Viro9f1fafe2011-03-25 11:00:12 -04002100 error = complete_walk(nd);
2101 if (error)
2102 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002103
2104 audit_inode(pathname, dir);
Al Viro16c2cd72011-02-22 15:50:10 -05002105 error = -EISDIR;
Al Viro1f36f772009-12-26 10:56:19 -05002106 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002107 if (nd->last.name[nd->last.len])
2108 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002109
Al Viroa1e28032009-12-24 02:12:06 -05002110 mutex_lock(&dir->d_inode->i_mutex);
2111
Al Viro6c0d46c2011-03-09 00:59:59 -05002112 dentry = lookup_hash(nd);
2113 error = PTR_ERR(dentry);
2114 if (IS_ERR(dentry)) {
Al Virofb1cc552009-12-24 01:58:28 -05002115 mutex_unlock(&dir->d_inode->i_mutex);
2116 goto exit;
2117 }
2118
Al Viro6c0d46c2011-03-09 00:59:59 -05002119 path->dentry = dentry;
2120 path->mnt = nd->path.mnt;
2121
Al Virofb1cc552009-12-24 01:58:28 -05002122 /* Negative dentry, just create the file */
Al Viro6c0d46c2011-03-09 00:59:59 -05002123 if (!dentry->d_inode) {
2124 int mode = op->mode;
2125 if (!IS_POSIXACL(dir->d_inode))
2126 mode &= ~current_umask();
Al Virofb1cc552009-12-24 01:58:28 -05002127 /*
2128 * This write is needed to ensure that a
Al Viro6c0d46c2011-03-09 00:59:59 -05002129 * rw->ro transition does not occur between
Al Virofb1cc552009-12-24 01:58:28 -05002130 * the time when the file is created and when
2131 * a permanent write count is taken through
2132 * the 'struct file' in nameidata_to_filp().
2133 */
2134 error = mnt_want_write(nd->path.mnt);
2135 if (error)
2136 goto exit_mutex_unlock;
Al Viroca344a892011-03-09 00:36:45 -05002137 want_write = 1;
Al Viro9b44f1b2011-03-09 00:17:27 -05002138 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002139 open_flag &= ~O_TRUNC;
Al Viro6c0d46c2011-03-09 00:59:59 -05002140 will_truncate = 0;
Al Virobcda7652011-03-13 16:42:14 -04002141 acc_mode = MAY_OPEN;
Al Viro6c0d46c2011-03-09 00:59:59 -05002142 error = security_path_mknod(&nd->path, dentry, mode, 0);
2143 if (error)
2144 goto exit_mutex_unlock;
2145 error = vfs_create(dir->d_inode, dentry, mode, nd);
2146 if (error)
2147 goto exit_mutex_unlock;
2148 mutex_unlock(&dir->d_inode->i_mutex);
2149 dput(nd->path.dentry);
2150 nd->path.dentry = dentry;
Al Viroca344a892011-03-09 00:36:45 -05002151 goto common;
Al Virofb1cc552009-12-24 01:58:28 -05002152 }
2153
2154 /*
2155 * It already exists.
2156 */
2157 mutex_unlock(&dir->d_inode->i_mutex);
2158 audit_inode(pathname, path->dentry);
2159
2160 error = -EEXIST;
Al Viroca344a892011-03-09 00:36:45 -05002161 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002162 goto exit_dput;
2163
David Howells9875cf82011-01-14 18:45:21 +00002164 error = follow_managed(path, nd->flags);
2165 if (error < 0)
2166 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002167
2168 error = -ENOENT;
2169 if (!path->dentry->d_inode)
2170 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002171
2172 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002173 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002174
2175 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002176 nd->inode = path->dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05002177 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002178 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002179 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002180ok:
Al Viro6c0d46c2011-03-09 00:59:59 -05002181 if (!S_ISREG(nd->inode->i_mode))
2182 will_truncate = 0;
2183
Al Viro0f9d1a12011-03-09 00:13:14 -05002184 if (will_truncate) {
2185 error = mnt_want_write(nd->path.mnt);
2186 if (error)
2187 goto exit;
Al Viroca344a892011-03-09 00:36:45 -05002188 want_write = 1;
Al Viro0f9d1a12011-03-09 00:13:14 -05002189 }
Al Viroca344a892011-03-09 00:36:45 -05002190common:
Al Virobcda7652011-03-13 16:42:14 -04002191 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002192 if (error)
Al Viro0f9d1a12011-03-09 00:13:14 -05002193 goto exit;
Al Viro0f9d1a12011-03-09 00:13:14 -05002194 filp = nameidata_to_filp(nd);
2195 if (!IS_ERR(filp)) {
2196 error = ima_file_check(filp, op->acc_mode);
2197 if (error) {
2198 fput(filp);
2199 filp = ERR_PTR(error);
2200 }
2201 }
2202 if (!IS_ERR(filp)) {
2203 if (will_truncate) {
2204 error = handle_truncate(filp);
2205 if (error) {
2206 fput(filp);
2207 filp = ERR_PTR(error);
2208 }
2209 }
2210 }
Al Viroca344a892011-03-09 00:36:45 -05002211out:
2212 if (want_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002213 mnt_drop_write(nd->path.mnt);
2214 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002215 return filp;
2216
2217exit_mutex_unlock:
2218 mutex_unlock(&dir->d_inode->i_mutex);
2219exit_dput:
2220 path_put_conditional(path, nd);
2221exit:
Al Viroca344a892011-03-09 00:36:45 -05002222 filp = ERR_PTR(error);
2223 goto out;
Al Virofb1cc552009-12-24 01:58:28 -05002224}
2225
Al Viro13aab422011-02-23 17:54:08 -05002226static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002227 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228{
Al Virofe2d35f2011-03-05 22:58:25 -05002229 struct file *base = NULL;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002230 struct file *filp;
Al Viro9850c052010-01-13 15:01:15 -05002231 struct path path;
Al Viro13aab422011-02-23 17:54:08 -05002232 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002233
2234 filp = get_empty_filp();
2235 if (!filp)
2236 return ERR_PTR(-ENFILE);
2237
Al Viro47c805d2011-02-23 17:44:09 -05002238 filp->f_flags = op->open_flag;
Al Viro73d049a2011-03-11 12:08:24 -05002239 nd->intent.open.file = filp;
2240 nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2241 nd->intent.open.create_mode = op->mode;
Nick Piggin31e6b012011-01-07 17:49:52 +11002242
Al Viro73d049a2011-03-11 12:08:24 -05002243 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002244 if (unlikely(error))
Al Viro13aab422011-02-23 17:54:08 -05002245 goto out_filp;
Nick Piggin31e6b012011-01-07 17:49:52 +11002246
Al Virofe2d35f2011-03-05 22:58:25 -05002247 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002248 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002249 if (unlikely(error))
2250 goto out_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
Al Viro73d049a2011-03-11 12:08:24 -05002252 filp = do_last(nd, &path, op, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002253 while (unlikely(!filp)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002254 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05002255 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04002256 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05002257 path_put_conditional(&path, nd);
2258 path_put(&nd->path);
Al Viro40b39132011-03-09 16:22:18 -05002259 filp = ERR_PTR(-ELOOP);
2260 break;
2261 }
Al Viro73d049a2011-03-11 12:08:24 -05002262 nd->flags |= LOOKUP_PARENT;
2263 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04002264 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002265 if (unlikely(error))
Al Virof1afe9e2011-02-22 22:27:28 -05002266 filp = ERR_PTR(error);
Al Viroc3e380b2011-02-23 13:39:45 -05002267 else
Al Viro73d049a2011-03-11 12:08:24 -05002268 filp = do_last(nd, &path, op, pathname);
Al Viro574197e2011-03-14 22:20:34 -04002269 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002270 }
Al Viro10fa8e62009-12-26 07:09:49 -05002271out:
Al Viro73d049a2011-03-11 12:08:24 -05002272 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2273 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002274 if (base)
2275 fput(base);
Al Viro73d049a2011-03-11 12:08:24 -05002276 release_open_intent(nd);
Al Viro10fa8e62009-12-26 07:09:49 -05002277 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
Nick Piggin31e6b012011-01-07 17:49:52 +11002279out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002280 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002281 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282}
2283
Al Viro13aab422011-02-23 17:54:08 -05002284struct file *do_filp_open(int dfd, const char *pathname,
2285 const struct open_flags *op, int flags)
2286{
Al Viro73d049a2011-03-11 12:08:24 -05002287 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002288 struct file *filp;
2289
Al Viro73d049a2011-03-11 12:08:24 -05002290 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002291 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002292 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002293 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002294 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002295 return filp;
2296}
2297
Al Viro73d049a2011-03-11 12:08:24 -05002298struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2299 const char *name, const struct open_flags *op, int flags)
2300{
2301 struct nameidata nd;
2302 struct file *file;
2303
2304 nd.root.mnt = mnt;
2305 nd.root.dentry = dentry;
2306
2307 flags |= LOOKUP_ROOT;
2308
Al Virobcda7652011-03-13 16:42:14 -04002309 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002310 return ERR_PTR(-ELOOP);
2311
2312 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2313 if (unlikely(file == ERR_PTR(-ECHILD)))
2314 file = path_openat(-1, name, &nd, op, flags);
2315 if (unlikely(file == ERR_PTR(-ESTALE)))
2316 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2317 return file;
2318}
2319
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320/**
2321 * lookup_create - lookup a dentry, creating it if it doesn't exist
2322 * @nd: nameidata info
2323 * @is_dir: directory flag
2324 *
2325 * Simple function to lookup and return a dentry and create it
2326 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002327 *
Jan Blunck4ac91372008-02-14 19:34:32 -08002328 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 */
2330struct dentry *lookup_create(struct nameidata *nd, int is_dir)
2331{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002332 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Jan Blunck4ac91372008-02-14 19:34:32 -08002334 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002335 /*
2336 * Yucky last component or no last component at all?
2337 * (foo/., foo/.., /////)
2338 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 if (nd->last_type != LAST_NORM)
2340 goto fail;
2341 nd->flags &= ~LOOKUP_PARENT;
Al Viro35165862008-08-05 03:00:49 -04002342 nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
ASANO Masahiroa6349042006-08-22 20:06:02 -04002343 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002344
2345 /*
2346 * Do the final lookup.
2347 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08002348 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 if (IS_ERR(dentry))
2350 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002351
Al Viroe9baf6e2008-05-15 04:49:12 -04002352 if (dentry->d_inode)
2353 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002354 /*
2355 * Special case - lookup gave negative, but... we had foo/bar/
2356 * From the vfs_mknod() POV we just have a negative dentry -
2357 * all is fine. Let's be bastards - you had / on the end, you've
2358 * been asking for (non-existent) directory. -ENOENT for you.
2359 */
Al Viroe9baf6e2008-05-15 04:49:12 -04002360 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
2361 dput(dentry);
2362 dentry = ERR_PTR(-ENOENT);
2363 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002365eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002367 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368fail:
2369 return dentry;
2370}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07002371EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
2373int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2374{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002375 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377 if (error)
2378 return error;
2379
Serge E. Hallyne795b712011-03-23 16:43:25 -07002380 if ((S_ISCHR(mode) || S_ISBLK(mode)) &&
2381 !ns_capable(inode_userns(dir), CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 return -EPERM;
2383
Al Viroacfa4382008-12-04 10:06:33 -05002384 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 return -EPERM;
2386
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002387 error = devcgroup_inode_mknod(mode, dev);
2388 if (error)
2389 return error;
2390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 error = security_inode_mknod(dir, dentry, mode, dev);
2392 if (error)
2393 return error;
2394
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002396 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002397 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 return error;
2399}
2400
Dave Hansen463c3192008-02-15 14:37:57 -08002401static int may_mknod(mode_t mode)
2402{
2403 switch (mode & S_IFMT) {
2404 case S_IFREG:
2405 case S_IFCHR:
2406 case S_IFBLK:
2407 case S_IFIFO:
2408 case S_IFSOCK:
2409 case 0: /* zero mode translates to S_IFREG */
2410 return 0;
2411 case S_IFDIR:
2412 return -EPERM;
2413 default:
2414 return -EINVAL;
2415 }
2416}
2417
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002418SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2419 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420{
Al Viro2ad94ae2008-07-21 09:32:51 -04002421 int error;
2422 char *tmp;
2423 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 struct nameidata nd;
2425
2426 if (S_ISDIR(mode))
2427 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428
Al Viro2ad94ae2008-07-21 09:32:51 -04002429 error = user_path_parent(dfd, filename, &nd, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002431 return error;
2432
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 dentry = lookup_create(&nd, 0);
Dave Hansen463c3192008-02-15 14:37:57 -08002434 if (IS_ERR(dentry)) {
2435 error = PTR_ERR(dentry);
2436 goto out_unlock;
2437 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002438 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002439 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002440 error = may_mknod(mode);
2441 if (error)
2442 goto out_dput;
2443 error = mnt_want_write(nd.path.mnt);
2444 if (error)
2445 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002446 error = security_path_mknod(&nd.path, dentry, mode, dev);
2447 if (error)
2448 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002449 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08002451 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 break;
2453 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002454 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 new_decode_dev(dev));
2456 break;
2457 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002458 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002461out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002462 mnt_drop_write(nd.path.mnt);
2463out_dput:
2464 dput(dentry);
2465out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002466 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002467 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 putname(tmp);
2469
2470 return error;
2471}
2472
Heiko Carstens3480b252009-01-14 14:14:16 +01002473SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002474{
2475 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2476}
2477
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2479{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002480 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481
2482 if (error)
2483 return error;
2484
Al Viroacfa4382008-12-04 10:06:33 -05002485 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 return -EPERM;
2487
2488 mode &= (S_IRWXUGO|S_ISVTX);
2489 error = security_inode_mkdir(dir, dentry, mode);
2490 if (error)
2491 return error;
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002494 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002495 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 return error;
2497}
2498
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002499SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500{
2501 int error = 0;
2502 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002503 struct dentry *dentry;
2504 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505
Al Viro2ad94ae2008-07-21 09:32:51 -04002506 error = user_path_parent(dfd, pathname, &nd, &tmp);
2507 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002508 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Dave Hansen6902d922006-09-30 23:29:01 -07002510 dentry = lookup_create(&nd, 1);
2511 error = PTR_ERR(dentry);
2512 if (IS_ERR(dentry))
2513 goto out_unlock;
2514
Jan Blunck4ac91372008-02-14 19:34:32 -08002515 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002516 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002517 error = mnt_want_write(nd.path.mnt);
2518 if (error)
2519 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002520 error = security_path_mkdir(&nd.path, dentry, mode);
2521 if (error)
2522 goto out_drop_write;
Jan Blunck4ac91372008-02-14 19:34:32 -08002523 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002524out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002525 mnt_drop_write(nd.path.mnt);
2526out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002527 dput(dentry);
2528out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002529 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002530 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002531 putname(tmp);
2532out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 return error;
2534}
2535
Heiko Carstens3cdad422009-01-14 14:14:22 +01002536SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002537{
2538 return sys_mkdirat(AT_FDCWD, pathname, mode);
2539}
2540
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541/*
Sage Weila71905f2011-05-24 13:06:08 -07002542 * The dentry_unhash() helper will try to drop the dentry early: we
2543 * should have a usage count of 2 if we're the only user of this
2544 * dentry, and if that is true (possibly after pruning the dcache),
2545 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 *
2547 * A low-level filesystem can, if it choses, legally
2548 * do a
2549 *
2550 * if (!d_unhashed(dentry))
2551 * return -EBUSY;
2552 *
2553 * if it cannot handle the case of removing a directory
2554 * that is still in use by something else..
2555 */
2556void dentry_unhash(struct dentry *dentry)
2557{
Vasily Averindc168422006-12-06 20:37:07 -08002558 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 spin_lock(&dentry->d_lock);
Sage Weil64252c72011-05-24 13:06:05 -07002560 if (dentry->d_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 __d_drop(dentry);
2562 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563}
2564
2565int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2566{
2567 int error = may_delete(dir, dentry, 1);
2568
2569 if (error)
2570 return error;
2571
Al Viroacfa4382008-12-04 10:06:33 -05002572 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 return -EPERM;
2574
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002575 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
Sage Weil912dbc12011-05-24 13:06:11 -07002577 error = -EBUSY;
2578 if (d_mountpoint(dentry))
2579 goto out;
2580
2581 error = security_inode_rmdir(dir, dentry);
2582 if (error)
2583 goto out;
2584
Sage Weil3cebde22011-05-29 21:20:59 -07002585 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07002586 error = dir->i_op->rmdir(dir, dentry);
2587 if (error)
2588 goto out;
2589
2590 dentry->d_inode->i_flags |= S_DEAD;
2591 dont_mount(dentry);
2592
2593out:
2594 mutex_unlock(&dentry->d_inode->i_mutex);
2595 if (!error)
2596 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 return error;
2598}
2599
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002600static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601{
2602 int error = 0;
2603 char * name;
2604 struct dentry *dentry;
2605 struct nameidata nd;
2606
Al Viro2ad94ae2008-07-21 09:32:51 -04002607 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002609 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
2611 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002612 case LAST_DOTDOT:
2613 error = -ENOTEMPTY;
2614 goto exit1;
2615 case LAST_DOT:
2616 error = -EINVAL;
2617 goto exit1;
2618 case LAST_ROOT:
2619 error = -EBUSY;
2620 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002622
2623 nd.flags &= ~LOOKUP_PARENT;
2624
Jan Blunck4ac91372008-02-14 19:34:32 -08002625 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002626 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002628 if (IS_ERR(dentry))
2629 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002630 if (!dentry->d_inode) {
2631 error = -ENOENT;
2632 goto exit3;
2633 }
Dave Hansen06227532008-02-15 14:37:34 -08002634 error = mnt_want_write(nd.path.mnt);
2635 if (error)
2636 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002637 error = security_path_rmdir(&nd.path, dentry);
2638 if (error)
2639 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002640 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002641exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002642 mnt_drop_write(nd.path.mnt);
2643exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002644 dput(dentry);
2645exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002646 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002648 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 putname(name);
2650 return error;
2651}
2652
Heiko Carstens3cdad422009-01-14 14:14:22 +01002653SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002654{
2655 return do_rmdir(AT_FDCWD, pathname);
2656}
2657
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658int vfs_unlink(struct inode *dir, struct dentry *dentry)
2659{
2660 int error = may_delete(dir, dentry, 0);
2661
2662 if (error)
2663 return error;
2664
Al Viroacfa4382008-12-04 10:06:33 -05002665 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 return -EPERM;
2667
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002668 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 if (d_mountpoint(dentry))
2670 error = -EBUSY;
2671 else {
2672 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002673 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002675 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002676 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002677 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002679 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
2681 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2682 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002683 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 }
Robert Love0eeca282005-07-12 17:06:03 -04002686
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 return error;
2688}
2689
2690/*
2691 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002692 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 * writeout happening, and we don't want to prevent access to the directory
2694 * while waiting on the I/O.
2695 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002696static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697{
Al Viro2ad94ae2008-07-21 09:32:51 -04002698 int error;
2699 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 struct dentry *dentry;
2701 struct nameidata nd;
2702 struct inode *inode = NULL;
2703
Al Viro2ad94ae2008-07-21 09:32:51 -04002704 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002706 return error;
2707
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 error = -EISDIR;
2709 if (nd.last_type != LAST_NORM)
2710 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002711
2712 nd.flags &= ~LOOKUP_PARENT;
2713
Jan Blunck4ac91372008-02-14 19:34:32 -08002714 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002715 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 error = PTR_ERR(dentry);
2717 if (!IS_ERR(dentry)) {
2718 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03002719 if (nd.last.name[nd.last.len])
2720 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 inode = dentry->d_inode;
Török Edwin50338b82011-06-16 00:06:14 +03002722 if (!inode)
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002723 goto slashes;
2724 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002725 error = mnt_want_write(nd.path.mnt);
2726 if (error)
2727 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002728 error = security_path_unlink(&nd.path, dentry);
2729 if (error)
2730 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002731 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002732exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002733 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 exit2:
2735 dput(dentry);
2736 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002737 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 if (inode)
2739 iput(inode); /* truncate the inode here */
2740exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002741 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 putname(name);
2743 return error;
2744
2745slashes:
2746 error = !dentry->d_inode ? -ENOENT :
2747 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2748 goto exit2;
2749}
2750
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002751SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002752{
2753 if ((flag & ~AT_REMOVEDIR) != 0)
2754 return -EINVAL;
2755
2756 if (flag & AT_REMOVEDIR)
2757 return do_rmdir(dfd, pathname);
2758
2759 return do_unlinkat(dfd, pathname);
2760}
2761
Heiko Carstens3480b252009-01-14 14:14:16 +01002762SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002763{
2764 return do_unlinkat(AT_FDCWD, pathname);
2765}
2766
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002767int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002769 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770
2771 if (error)
2772 return error;
2773
Al Viroacfa4382008-12-04 10:06:33 -05002774 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 return -EPERM;
2776
2777 error = security_inode_symlink(dir, dentry, oldname);
2778 if (error)
2779 return error;
2780
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002782 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002783 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 return error;
2785}
2786
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002787SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2788 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789{
Al Viro2ad94ae2008-07-21 09:32:51 -04002790 int error;
2791 char *from;
2792 char *to;
Dave Hansen6902d922006-09-30 23:29:01 -07002793 struct dentry *dentry;
2794 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
2796 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002797 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002799
2800 error = user_path_parent(newdfd, newname, &nd, &to);
2801 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002802 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
Dave Hansen6902d922006-09-30 23:29:01 -07002804 dentry = lookup_create(&nd, 0);
2805 error = PTR_ERR(dentry);
2806 if (IS_ERR(dentry))
2807 goto out_unlock;
2808
Dave Hansen75c3f292008-02-15 14:37:45 -08002809 error = mnt_want_write(nd.path.mnt);
2810 if (error)
2811 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002812 error = security_path_symlink(&nd.path, dentry, from);
2813 if (error)
2814 goto out_drop_write;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002815 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002816out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002817 mnt_drop_write(nd.path.mnt);
2818out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002819 dput(dentry);
2820out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002821 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002822 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002823 putname(to);
2824out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 putname(from);
2826 return error;
2827}
2828
Heiko Carstens3480b252009-01-14 14:14:16 +01002829SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002830{
2831 return sys_symlinkat(oldname, AT_FDCWD, newname);
2832}
2833
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2835{
2836 struct inode *inode = old_dentry->d_inode;
2837 int error;
2838
2839 if (!inode)
2840 return -ENOENT;
2841
Miklos Szeredia95164d2008-07-30 15:08:48 +02002842 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 if (error)
2844 return error;
2845
2846 if (dir->i_sb != inode->i_sb)
2847 return -EXDEV;
2848
2849 /*
2850 * A link to an append-only or immutable file cannot be created.
2851 */
2852 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2853 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05002854 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002856 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 return -EPERM;
2858
2859 error = security_inode_link(old_dentry, dir, new_dentry);
2860 if (error)
2861 return error;
2862
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002863 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05302864 /* Make sure we don't allow creating hardlink to an unlinked file */
2865 if (inode->i_nlink == 0)
2866 error = -ENOENT;
2867 else
2868 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002869 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002870 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002871 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 return error;
2873}
2874
2875/*
2876 * Hardlinks are often used in delicate situations. We avoid
2877 * security-related surprises by not following symlinks on the
2878 * newname. --KAB
2879 *
2880 * We don't follow them on the oldname either to be compatible
2881 * with linux 2.0, and to avoid hard-linking to directories
2882 * and other special files. --ADM
2883 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002884SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2885 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886{
2887 struct dentry *new_dentry;
Al Viro2d8f3032008-07-22 09:59:21 -04002888 struct nameidata nd;
2889 struct path old_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302890 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 int error;
Al Viro2ad94ae2008-07-21 09:32:51 -04002892 char *to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302894 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002895 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302896 /*
2897 * To use null names we require CAP_DAC_READ_SEARCH
2898 * This ensures that not everyone will be able to create
2899 * handlink using the passed filedescriptor.
2900 */
2901 if (flags & AT_EMPTY_PATH) {
2902 if (!capable(CAP_DAC_READ_SEARCH))
2903 return -ENOENT;
2904 how = LOOKUP_EMPTY;
2905 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002906
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302907 if (flags & AT_SYMLINK_FOLLOW)
2908 how |= LOOKUP_FOLLOW;
2909
2910 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002912 return error;
2913
2914 error = user_path_parent(newdfd, newname, &nd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 if (error)
2916 goto out;
2917 error = -EXDEV;
Al Viro2d8f3032008-07-22 09:59:21 -04002918 if (old_path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 goto out_release;
2920 new_dentry = lookup_create(&nd, 0);
2921 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002922 if (IS_ERR(new_dentry))
2923 goto out_unlock;
Dave Hansen75c3f292008-02-15 14:37:45 -08002924 error = mnt_want_write(nd.path.mnt);
2925 if (error)
2926 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002927 error = security_path_link(old_path.dentry, &nd.path, new_dentry);
2928 if (error)
2929 goto out_drop_write;
Al Viro2d8f3032008-07-22 09:59:21 -04002930 error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002931out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002932 mnt_drop_write(nd.path.mnt);
2933out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002934 dput(new_dentry);
2935out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002936 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08002938 path_put(&nd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002939 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940out:
Al Viro2d8f3032008-07-22 09:59:21 -04002941 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
2943 return error;
2944}
2945
Heiko Carstens3480b252009-01-14 14:14:16 +01002946SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002947{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002948 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002949}
2950
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951/*
2952 * The worst of all namespace operations - renaming directory. "Perverted"
2953 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2954 * Problems:
2955 * a) we can get into loop creation. Check is done in is_subdir().
2956 * b) race potential - two innocent renames can create a loop together.
2957 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002958 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 * story.
2960 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002961 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 * whether the target exists). Solution: try to be smart with locking
2963 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002964 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 * move will be locked. Thus we can rank directories by the tree
2966 * (ancestors first) and rank all non-directories after them.
2967 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002968 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 * HOWEVER, it relies on the assumption that any object with ->lookup()
2970 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2971 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07002972 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002973 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05002975 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 * locking].
2977 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07002978static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2979 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980{
2981 int error = 0;
Sage Weil9055cba2011-05-24 13:06:12 -07002982 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
2984 /*
2985 * If we are going to change the parent - check write permissions,
2986 * we'll need to flip '..'.
2987 */
2988 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04002989 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 if (error)
2991 return error;
2992 }
2993
2994 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2995 if (error)
2996 return error;
2997
Al Virod83c49f2010-04-30 17:17:09 -04002998 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002999 mutex_lock(&target->i_mutex);
Sage Weil9055cba2011-05-24 13:06:12 -07003000
3001 error = -EBUSY;
3002 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3003 goto out;
3004
Sage Weil3cebde22011-05-29 21:20:59 -07003005 if (target)
3006 shrink_dcache_parent(new_dentry);
Sage Weil9055cba2011-05-24 13:06:12 -07003007 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3008 if (error)
3009 goto out;
3010
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 if (target) {
Sage Weil9055cba2011-05-24 13:06:12 -07003012 target->i_flags |= S_DEAD;
3013 dont_mount(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 }
Sage Weil9055cba2011-05-24 13:06:12 -07003015out:
3016 if (target)
3017 mutex_unlock(&target->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003018 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003019 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3020 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 return error;
3022}
3023
Adrian Bunk75c96f82005-05-05 16:16:09 -07003024static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3025 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026{
Sage Weil51892bb2011-05-24 13:06:13 -07003027 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 int error;
3029
3030 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3031 if (error)
3032 return error;
3033
3034 dget(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003036 mutex_lock(&target->i_mutex);
Sage Weil51892bb2011-05-24 13:06:13 -07003037
3038 error = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
Sage Weil51892bb2011-05-24 13:06:13 -07003040 goto out;
3041
3042 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3043 if (error)
3044 goto out;
3045
3046 if (target)
3047 dont_mount(new_dentry);
3048 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3049 d_move(old_dentry, new_dentry);
3050out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003052 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 dput(new_dentry);
3054 return error;
3055}
3056
3057int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3058 struct inode *new_dir, struct dentry *new_dentry)
3059{
3060 int error;
3061 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003062 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063
3064 if (old_dentry->d_inode == new_dentry->d_inode)
3065 return 0;
3066
3067 error = may_delete(old_dir, old_dentry, is_dir);
3068 if (error)
3069 return error;
3070
3071 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003072 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 else
3074 error = may_delete(new_dir, new_dentry, is_dir);
3075 if (error)
3076 return error;
3077
Al Viroacfa4382008-12-04 10:06:33 -05003078 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 return -EPERM;
3080
Robert Love0eeca282005-07-12 17:06:03 -04003081 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3082
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 if (is_dir)
3084 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3085 else
3086 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003087 if (!error)
3088 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003089 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003090 fsnotify_oldname_free(old_name);
3091
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 return error;
3093}
3094
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003095SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3096 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097{
Al Viro2ad94ae2008-07-21 09:32:51 -04003098 struct dentry *old_dir, *new_dir;
3099 struct dentry *old_dentry, *new_dentry;
3100 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003102 char *from;
3103 char *to;
3104 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105
Al Viro2ad94ae2008-07-21 09:32:51 -04003106 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 if (error)
3108 goto exit;
3109
Al Viro2ad94ae2008-07-21 09:32:51 -04003110 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 if (error)
3112 goto exit1;
3113
3114 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003115 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 goto exit2;
3117
Jan Blunck4ac91372008-02-14 19:34:32 -08003118 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 error = -EBUSY;
3120 if (oldnd.last_type != LAST_NORM)
3121 goto exit2;
3122
Jan Blunck4ac91372008-02-14 19:34:32 -08003123 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 if (newnd.last_type != LAST_NORM)
3125 goto exit2;
3126
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003127 oldnd.flags &= ~LOOKUP_PARENT;
3128 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003129 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003130
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 trap = lock_rename(new_dir, old_dir);
3132
Christoph Hellwig49705b72005-11-08 21:35:06 -08003133 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 error = PTR_ERR(old_dentry);
3135 if (IS_ERR(old_dentry))
3136 goto exit3;
3137 /* source must exist */
3138 error = -ENOENT;
3139 if (!old_dentry->d_inode)
3140 goto exit4;
3141 /* unless the source is a directory trailing slashes give -ENOTDIR */
3142 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3143 error = -ENOTDIR;
3144 if (oldnd.last.name[oldnd.last.len])
3145 goto exit4;
3146 if (newnd.last.name[newnd.last.len])
3147 goto exit4;
3148 }
3149 /* source should not be ancestor of target */
3150 error = -EINVAL;
3151 if (old_dentry == trap)
3152 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003153 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 error = PTR_ERR(new_dentry);
3155 if (IS_ERR(new_dentry))
3156 goto exit4;
3157 /* target should not be an ancestor of source */
3158 error = -ENOTEMPTY;
3159 if (new_dentry == trap)
3160 goto exit5;
3161
Dave Hansen9079b1e2008-02-15 14:37:49 -08003162 error = mnt_want_write(oldnd.path.mnt);
3163 if (error)
3164 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003165 error = security_path_rename(&oldnd.path, old_dentry,
3166 &newnd.path, new_dentry);
3167 if (error)
3168 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 error = vfs_rename(old_dir->d_inode, old_dentry,
3170 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003171exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003172 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173exit5:
3174 dput(new_dentry);
3175exit4:
3176 dput(old_dentry);
3177exit3:
3178 unlock_rename(new_dir, old_dir);
3179exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003180 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003181 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003183 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003185exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 return error;
3187}
3188
Heiko Carstensa26eab22009-01-14 14:14:17 +01003189SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003190{
3191 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3192}
3193
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3195{
3196 int len;
3197
3198 len = PTR_ERR(link);
3199 if (IS_ERR(link))
3200 goto out;
3201
3202 len = strlen(link);
3203 if (len > (unsigned) buflen)
3204 len = buflen;
3205 if (copy_to_user(buffer, link, len))
3206 len = -EFAULT;
3207out:
3208 return len;
3209}
3210
3211/*
3212 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3213 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3214 * using) it for any given inode is up to filesystem.
3215 */
3216int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3217{
3218 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003219 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003220 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003221
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003223 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003224 if (IS_ERR(cookie))
3225 return PTR_ERR(cookie);
3226
3227 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3228 if (dentry->d_inode->i_op->put_link)
3229 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3230 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231}
3232
3233int vfs_follow_link(struct nameidata *nd, const char *link)
3234{
3235 return __vfs_follow_link(nd, link);
3236}
3237
3238/* get the link contents into pagecache */
3239static char *page_getlink(struct dentry * dentry, struct page **ppage)
3240{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003241 char *kaddr;
3242 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003244 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003246 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003248 kaddr = kmap(page);
3249 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3250 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251}
3252
3253int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3254{
3255 struct page *page = NULL;
3256 char *s = page_getlink(dentry, &page);
3257 int res = vfs_readlink(dentry,buffer,buflen,s);
3258 if (page) {
3259 kunmap(page);
3260 page_cache_release(page);
3261 }
3262 return res;
3263}
3264
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003265void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003267 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003269 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270}
3271
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003272void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003274 struct page *page = cookie;
3275
3276 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 kunmap(page);
3278 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 }
3280}
3281
Nick Piggin54566b22009-01-04 12:00:53 -08003282/*
3283 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3284 */
3285int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286{
3287 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003288 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003289 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003290 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003292 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3293 if (nofs)
3294 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295
NeilBrown7e53cac2006-03-25 03:07:57 -08003296retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003297 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003298 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003300 goto fail;
3301
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 kaddr = kmap_atomic(page, KM_USER0);
3303 memcpy(kaddr, symname, len-1);
3304 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07003305
3306 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3307 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 if (err < 0)
3309 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003310 if (err < len-1)
3311 goto retry;
3312
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 mark_inode_dirty(inode);
3314 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315fail:
3316 return err;
3317}
3318
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003319int page_symlink(struct inode *inode, const char *symname, int len)
3320{
3321 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003322 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003323}
3324
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003325const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 .readlink = generic_readlink,
3327 .follow_link = page_follow_link_light,
3328 .put_link = page_put_link,
3329};
3330
Al Viro2d8f3032008-07-22 09:59:21 -04003331EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003332EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333EXPORT_SYMBOL(follow_down);
3334EXPORT_SYMBOL(follow_up);
3335EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3336EXPORT_SYMBOL(getname);
3337EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338EXPORT_SYMBOL(lookup_one_len);
3339EXPORT_SYMBOL(page_follow_link_light);
3340EXPORT_SYMBOL(page_put_link);
3341EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003342EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343EXPORT_SYMBOL(page_symlink);
3344EXPORT_SYMBOL(page_symlink_inode_operations);
Al Viroc9c6cac2011-02-16 15:15:47 -05003345EXPORT_SYMBOL(kern_path_parent);
Al Virod1811462008-08-02 00:49:18 -04003346EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003347EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003348EXPORT_SYMBOL(inode_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);