blob: 3d607bd80e09f683fac132d6387f152c1df11f4c [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 Torvaldse77819e2011-07-22 19:30:19 -070035#include <linux/posix_acl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/uaccess.h>
37
Eric Parise81e3f42009-12-04 15:47:36 -050038#include "internal.h"
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/* [Feb-1997 T. Schoebel-Theuer]
41 * Fundamental changes in the pathname lookup mechanisms (namei)
42 * were necessary because of omirr. The reason is that omirr needs
43 * to know the _real_ pathname, not the user-supplied one, in case
44 * of symlinks (and also when transname replacements occur).
45 *
46 * The new code replaces the old recursive symlink resolution with
47 * an iterative one (in case of non-nested symlink chains). It does
48 * this with calls to <fs>_follow_link().
49 * As a side effect, dir_namei(), _namei() and follow_link() are now
50 * replaced with a single function lookup_dentry() that can handle all
51 * the special cases of the former code.
52 *
53 * With the new dcache, the pathname is stored at each inode, at least as
54 * long as the refcount of the inode is positive. As a side effect, the
55 * size of the dcache depends on the inode cache and thus is dynamic.
56 *
57 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
58 * resolution to correspond with current state of the code.
59 *
60 * Note that the symlink resolution is not *completely* iterative.
61 * There is still a significant amount of tail- and mid- recursion in
62 * the algorithm. Also, note that <fs>_readlink() is not used in
63 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
64 * may return different results than <fs>_follow_link(). Many virtual
65 * filesystems (including /proc) exhibit this behavior.
66 */
67
68/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
69 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
70 * and the name already exists in form of a symlink, try to create the new
71 * name indicated by the symlink. The old code always complained that the
72 * name already exists, due to not following the symlink even if its target
73 * is nonexistent. The new semantics affects also mknod() and link() when
Lucas De Marchi25985ed2011-03-30 22:57:33 -030074 * the name is a symlink pointing to a non-existent name.
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 *
76 * I don't know which semantics is the right one, since I have no access
77 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
78 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
79 * "old" one. Personally, I think the new semantics is much more logical.
80 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
81 * file does succeed in both HP-UX and SunOs, but not in Solaris
82 * and in the old Linux semantics.
83 */
84
85/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
86 * semantics. See the comments in "open_namei" and "do_link" below.
87 *
88 * [10-Sep-98 Alan Modra] Another symlink change.
89 */
90
91/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
92 * inside the path - always follow.
93 * in the last component in creation/removal/renaming - never follow.
94 * if LOOKUP_FOLLOW passed - follow.
95 * if the pathname has trailing slashes - follow.
96 * otherwise - don't follow.
97 * (applied in that order).
98 *
99 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
100 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
101 * During the 2.4 we need to fix the userland stuff depending on it -
102 * hopefully we will be able to get rid of that wart in 2.5. So far only
103 * XEmacs seems to be relying on it...
104 */
105/*
106 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800107 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 * any extra contention...
109 */
110
111/* In order to reduce some races, while at the same time doing additional
112 * checking and hopefully speeding things up, we copy filenames to the
113 * kernel data space before using them..
114 *
115 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
116 * PATH_MAX includes the nul terminator --RR.
117 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800118static int do_getname(const char __user *filename, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 int retval;
121 unsigned long len = PATH_MAX;
122
123 if (!segment_eq(get_fs(), KERNEL_DS)) {
124 if ((unsigned long) filename >= TASK_SIZE)
125 return -EFAULT;
126 if (TASK_SIZE - (unsigned long) filename < PATH_MAX)
127 len = TASK_SIZE - (unsigned long) filename;
128 }
129
130 retval = strncpy_from_user(page, filename, len);
131 if (retval > 0) {
132 if (retval < len)
133 return 0;
134 return -ENAMETOOLONG;
135 } else if (!retval)
136 retval = -ENOENT;
137 return retval;
138}
139
Al Virof52e0c12011-03-14 18:56:51 -0400140static char *getname_flags(const char __user * filename, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
142 char *tmp, *result;
143
144 result = ERR_PTR(-ENOMEM);
145 tmp = __getname();
146 if (tmp) {
147 int retval = do_getname(filename, tmp);
148
149 result = tmp;
150 if (retval < 0) {
Al Virof52e0c12011-03-14 18:56:51 -0400151 if (retval != -ENOENT || !(flags & LOOKUP_EMPTY)) {
152 __putname(tmp);
153 result = ERR_PTR(retval);
154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
156 }
157 audit_getname(result);
158 return result;
159}
160
Al Virof52e0c12011-03-14 18:56:51 -0400161char *getname(const char __user * filename)
162{
163 return getname_flags(filename, 0);
164}
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#ifdef CONFIG_AUDITSYSCALL
167void putname(const char *name)
168{
Al Viro5ac3a9c2006-07-16 06:38:45 -0400169 if (unlikely(!audit_dummy_context()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 audit_putname(name);
171 else
172 __putname(name);
173}
174EXPORT_SYMBOL(putname);
175#endif
176
Linus Torvaldse77819e2011-07-22 19:30:19 -0700177static int check_acl(struct inode *inode, int mask)
178{
Linus Torvalds84635d62011-07-25 22:47:03 -0700179#ifdef CONFIG_FS_POSIX_ACL
Linus Torvaldse77819e2011-07-22 19:30:19 -0700180 struct posix_acl *acl;
181
Linus Torvaldse77819e2011-07-22 19:30:19 -0700182 if (mask & MAY_NOT_BLOCK) {
Al Viro35678662011-08-02 21:32:13 -0400183 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
184 if (!acl)
Linus Torvaldse77819e2011-07-22 19:30:19 -0700185 return -EAGAIN;
Al Viro35678662011-08-02 21:32:13 -0400186 /* no ->get_acl() calls in RCU mode... */
187 if (acl == ACL_NOT_CACHED)
188 return -ECHILD;
189 return posix_acl_permission(inode, acl, mask);
Linus Torvaldse77819e2011-07-22 19:30:19 -0700190 }
191
192 acl = get_cached_acl(inode, ACL_TYPE_ACCESS);
193
194 /*
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200195 * A filesystem can force a ACL callback by just never filling the
196 * ACL cache. But normally you'd fill the cache either at inode
197 * instantiation time, or on the first ->get_acl call.
Linus Torvaldse77819e2011-07-22 19:30:19 -0700198 *
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200199 * If the filesystem doesn't have a get_acl() function at all, we'll
200 * just create the negative cache entry.
Linus Torvaldse77819e2011-07-22 19:30:19 -0700201 */
202 if (acl == ACL_NOT_CACHED) {
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200203 if (inode->i_op->get_acl) {
204 acl = inode->i_op->get_acl(inode, ACL_TYPE_ACCESS);
205 if (IS_ERR(acl))
206 return PTR_ERR(acl);
207 } else {
208 set_cached_acl(inode, ACL_TYPE_ACCESS, NULL);
209 return -EAGAIN;
210 }
Linus Torvaldse77819e2011-07-22 19:30:19 -0700211 }
212
213 if (acl) {
214 int error = posix_acl_permission(inode, acl, mask);
215 posix_acl_release(acl);
216 return error;
217 }
Linus Torvalds84635d62011-07-25 22:47:03 -0700218#endif
Linus Torvaldse77819e2011-07-22 19:30:19 -0700219
220 return -EAGAIN;
221}
222
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700223/*
224 * This does basic POSIX ACL permission checking
225 */
Al Viro7e401452011-06-20 19:12:17 -0400226static int acl_permission_check(struct inode *inode, int mask)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700227{
Linus Torvalds26cf46b2011-05-13 11:51:01 -0700228 unsigned int mode = inode->i_mode;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700229
Al Viro9c2c7032011-06-20 19:06:22 -0400230 mask &= MAY_READ | MAY_WRITE | MAY_EXEC | MAY_NOT_BLOCK;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700231
Serge E. Hallyne795b712011-03-23 16:43:25 -0700232 if (current_user_ns() != inode_userns(inode))
233 goto other_perms;
234
Linus Torvalds14067ff2011-07-25 19:55:52 -0700235 if (likely(current_fsuid() == inode->i_uid))
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700236 mode >>= 6;
237 else {
Linus Torvaldse77819e2011-07-22 19:30:19 -0700238 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
Al Viro7e401452011-06-20 19:12:17 -0400239 int error = check_acl(inode, mask);
Nick Pigginb74c79e2011-01-07 17:49:58 +1100240 if (error != -EAGAIN)
241 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700242 }
243
244 if (in_group_p(inode->i_gid))
245 mode >>= 3;
246 }
247
Serge E. Hallyne795b712011-03-23 16:43:25 -0700248other_perms:
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700249 /*
250 * If the DACs are ok we don't need any capability check.
251 */
Al Viro9c2c7032011-06-20 19:06:22 -0400252 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700253 return 0;
254 return -EACCES;
255}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
257/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100258 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 * @inode: inode to check access rights for
260 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 *
262 * Used to check for read/write/execute permissions on a file.
263 * We use "fsuid" for this, letting us set arbitrary permissions
264 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100265 * are used for other things.
266 *
267 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
268 * request cannot be satisfied (eg. requires blocking or too much complexity).
269 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 */
Al Viro2830ba72011-06-20 19:16:29 -0400271int generic_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700273 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 /*
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700276 * Do the basic POSIX ACL permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 */
Al Viro7e401452011-06-20 19:12:17 -0400278 ret = acl_permission_check(inode, mask);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700279 if (ret != -EACCES)
280 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
Al Virod594e7e2011-06-20 19:55:42 -0400282 if (S_ISDIR(inode->i_mode)) {
283 /* DACs are overridable for directories */
284 if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE))
285 return 0;
286 if (!(mask & MAY_WRITE))
287 if (ns_capable(inode_userns(inode), CAP_DAC_READ_SEARCH))
288 return 0;
289 return -EACCES;
290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 /*
292 * Read/write DACs are always overridable.
Al Virod594e7e2011-06-20 19:55:42 -0400293 * Executable DACs are overridable when there is
294 * at least one exec bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 */
Al Virod594e7e2011-06-20 19:55:42 -0400296 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
Serge E. Hallyne795b712011-03-23 16:43:25 -0700297 if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return 0;
299
300 /*
301 * Searching includes executable on directories, else just read.
302 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600303 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Al Virod594e7e2011-06-20 19:55:42 -0400304 if (mask == MAY_READ)
Serge E. Hallyne795b712011-03-23 16:43:25 -0700305 if (ns_capable(inode_userns(inode), CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 return 0;
307
308 return -EACCES;
309}
310
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200311/**
312 * inode_permission - check for access rights to a given inode
313 * @inode: inode to check permission on
314 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
315 *
316 * Used to check for read/write/execute permissions on an inode.
317 * We use "fsuid" for this, letting us set arbitrary permissions
318 * for filesystem access without changing the "normal" uids which
319 * are used for other things.
320 */
Al Virof419a2e2008-07-22 00:07:17 -0400321int inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
Al Viroe6305c42008-07-15 21:03:57 -0400323 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 if (mask & MAY_WRITE) {
Miklos Szeredi22590e42007-10-16 23:27:08 -0700326 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 /*
329 * Nobody gets write access to a read-only fs.
330 */
331 if (IS_RDONLY(inode) &&
332 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
333 return -EROFS;
334
335 /*
336 * Nobody gets write access to an immutable file.
337 */
338 if (IS_IMMUTABLE(inode))
339 return -EACCES;
340 }
341
Al Viroacfa4382008-12-04 10:06:33 -0500342 if (inode->i_op->permission)
Al Viro10556cb2011-06-20 19:28:19 -0400343 retval = inode->i_op->permission(inode, mask);
Miklos Szeredif696a362008-07-31 13:41:58 +0200344 else
Al Viro2830ba72011-06-20 19:16:29 -0400345 retval = generic_permission(inode, mask);
Miklos Szeredif696a362008-07-31 13:41:58 +0200346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 if (retval)
348 return retval;
349
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700350 retval = devcgroup_inode_permission(inode, mask);
351 if (retval)
352 return retval;
353
Eric Parisd09ca732010-07-23 11:43:57 -0400354 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
356
Al Virof4d6ff82011-06-19 13:14:21 -0400357/**
Jan Blunck5dd784d2008-02-14 19:34:38 -0800358 * path_get - get a reference to a path
359 * @path: path to get the reference to
360 *
361 * Given a path increment the reference count to the dentry and the vfsmount.
362 */
363void path_get(struct path *path)
364{
365 mntget(path->mnt);
366 dget(path->dentry);
367}
368EXPORT_SYMBOL(path_get);
369
370/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800371 * path_put - put a reference to a path
372 * @path: path to put the reference to
373 *
374 * Given a path decrement the reference count to the dentry and the vfsmount.
375 */
376void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Jan Blunck1d957f92008-02-14 19:34:35 -0800378 dput(path->dentry);
379 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
Jan Blunck1d957f92008-02-14 19:34:35 -0800381EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Al Viro19660af2011-03-25 10:32:48 -0400383/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100384 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400385 * Documentation/filesystems/path-lookup.txt). In situations when we can't
386 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
387 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
388 * mode. Refcounts are grabbed at the last known good point before rcu-walk
389 * got stuck, so ref-walk may continue from there. If this is not successful
390 * (eg. a seqcount has changed), then failure is returned and it's up to caller
391 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100392 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100393
394/**
Al Viro19660af2011-03-25 10:32:48 -0400395 * unlazy_walk - try to switch to ref-walk mode.
396 * @nd: nameidata pathwalk data
397 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800398 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100399 *
Al Viro19660af2011-03-25 10:32:48 -0400400 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
401 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
402 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100403 */
Al Viro19660af2011-03-25 10:32:48 -0400404static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100405{
406 struct fs_struct *fs = current->fs;
407 struct dentry *parent = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500408 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100409
410 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500411 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
412 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100413 spin_lock(&fs->lock);
414 if (nd->root.mnt != fs->root.mnt ||
415 nd->root.dentry != fs->root.dentry)
416 goto err_root;
417 }
418 spin_lock(&parent->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400419 if (!dentry) {
420 if (!__d_rcu_to_refcount(parent, nd->seq))
421 goto err_parent;
422 BUG_ON(nd->inode != parent->d_inode);
423 } else {
Al Viro94c0d4e2011-07-12 21:40:23 -0400424 if (dentry->d_parent != parent)
425 goto err_parent;
Al Viro19660af2011-03-25 10:32:48 -0400426 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
427 if (!__d_rcu_to_refcount(dentry, nd->seq))
428 goto err_child;
429 /*
430 * If the sequence check on the child dentry passed, then
431 * the child has not been removed from its parent. This
432 * means the parent dentry must be valid and able to take
433 * a reference at this point.
434 */
435 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
436 BUG_ON(!parent->d_count);
437 parent->d_count++;
438 spin_unlock(&dentry->d_lock);
439 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100440 spin_unlock(&parent->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500441 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100442 path_get(&nd->root);
443 spin_unlock(&fs->lock);
444 }
445 mntget(nd->path.mnt);
446
447 rcu_read_unlock();
448 br_read_unlock(vfsmount_lock);
449 nd->flags &= ~LOOKUP_RCU;
450 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400451
452err_child:
Nick Piggin31e6b012011-01-07 17:49:52 +1100453 spin_unlock(&dentry->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400454err_parent:
Nick Piggin31e6b012011-01-07 17:49:52 +1100455 spin_unlock(&parent->d_lock);
456err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500457 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100458 spin_unlock(&fs->lock);
459 return -ECHILD;
460}
461
Nick Piggin31e6b012011-01-07 17:49:52 +1100462/**
Trond Myklebust834f2a42005-10-18 14:20:16 -0700463 * release_open_intent - free up open intent resources
464 * @nd: pointer to nameidata
465 */
466void release_open_intent(struct nameidata *nd)
467{
Linus Torvalds2dab5972011-02-11 15:53:38 -0800468 struct file *file = nd->intent.open.file;
469
470 if (file && !IS_ERR(file)) {
471 if (file->f_path.dentry == NULL)
472 put_filp(file);
473 else
474 fput(file);
475 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700476}
477
Al Virof60aef72011-02-15 01:35:28 -0500478static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
Nick Piggin34286d62011-01-07 17:49:57 +1100479{
Al Virof60aef72011-02-15 01:35:28 -0500480 return dentry->d_op->d_revalidate(dentry, nd);
Nick Piggin34286d62011-01-07 17:49:57 +1100481}
482
Al Viro9f1fafe2011-03-25 11:00:12 -0400483/**
484 * complete_walk - successful completion of path walk
485 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500486 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400487 * If we had been in RCU mode, drop out of it and legitimize nd->path.
488 * Revalidate the final result, unless we'd already done that during
489 * the path walk or the filesystem doesn't ask for it. Return 0 on
490 * success, -error on failure. In case of failure caller does not
491 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500492 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400493static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500494{
Al Viro16c2cd72011-02-22 15:50:10 -0500495 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500496 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500497
Al Viro9f1fafe2011-03-25 11:00:12 -0400498 if (nd->flags & LOOKUP_RCU) {
499 nd->flags &= ~LOOKUP_RCU;
500 if (!(nd->flags & LOOKUP_ROOT))
501 nd->root.mnt = NULL;
502 spin_lock(&dentry->d_lock);
503 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
504 spin_unlock(&dentry->d_lock);
505 rcu_read_unlock();
506 br_read_unlock(vfsmount_lock);
507 return -ECHILD;
508 }
509 BUG_ON(nd->inode != dentry->d_inode);
510 spin_unlock(&dentry->d_lock);
511 mntget(nd->path.mnt);
512 rcu_read_unlock();
513 br_read_unlock(vfsmount_lock);
514 }
515
Al Viro16c2cd72011-02-22 15:50:10 -0500516 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500517 return 0;
518
Al Viro16c2cd72011-02-22 15:50:10 -0500519 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
520 return 0;
521
522 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
523 return 0;
524
525 /* Note: we do not d_invalidate() */
Nick Piggin34286d62011-01-07 17:49:57 +1100526 status = d_revalidate(dentry, nd);
Jeff Layton39159de2009-12-07 12:01:50 -0500527 if (status > 0)
528 return 0;
529
Al Viro16c2cd72011-02-22 15:50:10 -0500530 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500531 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500532
Al Viro9f1fafe2011-03-25 11:00:12 -0400533 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500534 return status;
535}
536
Al Viro2a737872009-04-07 11:49:53 -0400537static __always_inline void set_root(struct nameidata *nd)
538{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200539 if (!nd->root.mnt)
540 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400541}
542
Al Viro6de88d72009-08-09 01:41:57 +0400543static int link_path_walk(const char *, struct nameidata *);
544
Nick Piggin31e6b012011-01-07 17:49:52 +1100545static __always_inline void set_root_rcu(struct nameidata *nd)
546{
547 if (!nd->root.mnt) {
548 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100549 unsigned seq;
550
551 do {
552 seq = read_seqcount_begin(&fs->seq);
553 nd->root = fs->root;
Tim Chenc1530012011-04-15 11:39:29 -0700554 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
Nick Pigginc28cc362011-01-07 17:49:53 +1100555 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100556 }
557}
558
Arjan van de Venf1662352006-01-14 13:21:31 -0800559static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Nick Piggin31e6b012011-01-07 17:49:52 +1100561 int ret;
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 if (IS_ERR(link))
564 goto fail;
565
566 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400567 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800568 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400569 nd->path = nd->root;
570 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500571 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100573 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100574
Nick Piggin31e6b012011-01-07 17:49:52 +1100575 ret = link_path_walk(link, nd);
576 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800578 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return PTR_ERR(link);
580}
581
Jan Blunck1d957f92008-02-14 19:34:35 -0800582static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700583{
584 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800585 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700586 mntput(path->mnt);
587}
588
Nick Piggin7b9337a2011-01-14 08:42:43 +0000589static inline void path_to_nameidata(const struct path *path,
590 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700591{
Nick Piggin31e6b012011-01-07 17:49:52 +1100592 if (!(nd->flags & LOOKUP_RCU)) {
593 dput(nd->path.dentry);
594 if (nd->path.mnt != path->mnt)
595 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800596 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100597 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800598 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700599}
600
Al Viro574197e2011-03-14 22:20:34 -0400601static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
602{
603 struct inode *inode = link->dentry->d_inode;
604 if (!IS_ERR(cookie) && inode->i_op->put_link)
605 inode->i_op->put_link(link->dentry, nd, cookie);
606 path_put(link);
607}
608
Al Virodef4af32009-12-26 08:37:05 -0500609static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400610follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800611{
612 int error;
Nick Piggin7b9337a2011-01-14 08:42:43 +0000613 struct dentry *dentry = link->dentry;
Ian Kent051d3812006-03-27 01:14:53 -0800614
Al Viro844a3912011-02-15 00:38:26 -0500615 BUG_ON(nd->flags & LOOKUP_RCU);
616
Al Viro0e794582011-03-16 02:45:02 -0400617 if (link->mnt == nd->path.mnt)
618 mntget(link->mnt);
619
Al Viro574197e2011-03-14 22:20:34 -0400620 if (unlikely(current->total_link_count >= 40)) {
621 *p = ERR_PTR(-ELOOP); /* no ->put_link(), please */
Al Viro574197e2011-03-14 22:20:34 -0400622 path_put(&nd->path);
623 return -ELOOP;
624 }
625 cond_resched();
626 current->total_link_count++;
627
Nick Piggin7b9337a2011-01-14 08:42:43 +0000628 touch_atime(link->mnt, dentry);
Ian Kent051d3812006-03-27 01:14:53 -0800629 nd_set_link(nd, NULL);
630
Al Viro36f3b4f2011-02-22 21:24:38 -0500631 error = security_inode_follow_link(link->dentry, nd);
632 if (error) {
633 *p = ERR_PTR(error); /* no ->put_link(), please */
634 path_put(&nd->path);
635 return error;
636 }
637
Al Viro86acdca12009-12-22 23:45:11 -0500638 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500639 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
640 error = PTR_ERR(*p);
641 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800642 char *s = nd_get_link(nd);
643 error = 0;
644 if (s)
645 error = __vfs_follow_link(nd, s);
Al Virobcda7652011-03-13 16:42:14 -0400646 else if (nd->last_type == LAST_BIND) {
Al Viro16c2cd72011-02-22 15:50:10 -0500647 nd->flags |= LOOKUP_JUMPED;
Al Virob21041d2011-03-14 20:01:51 -0400648 nd->inode = nd->path.dentry->d_inode;
649 if (nd->inode->i_op->follow_link) {
Al Virobcda7652011-03-13 16:42:14 -0400650 /* stepped on a _really_ weird one */
651 path_put(&nd->path);
652 error = -ELOOP;
653 }
654 }
Ian Kent051d3812006-03-27 01:14:53 -0800655 }
Ian Kent051d3812006-03-27 01:14:53 -0800656 return error;
657}
658
Nick Piggin31e6b012011-01-07 17:49:52 +1100659static int follow_up_rcu(struct path *path)
660{
661 struct vfsmount *parent;
662 struct dentry *mountpoint;
663
664 parent = path->mnt->mnt_parent;
665 if (parent == path->mnt)
666 return 0;
667 mountpoint = path->mnt->mnt_mountpoint;
668 path->dentry = mountpoint;
669 path->mnt = parent;
670 return 1;
671}
672
Al Virobab77eb2009-04-18 03:26:48 -0400673int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
675 struct vfsmount *parent;
676 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000677
678 br_read_lock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400679 parent = path->mnt->mnt_parent;
680 if (parent == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000681 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return 0;
683 }
684 mntget(parent);
Al Virobab77eb2009-04-18 03:26:48 -0400685 mountpoint = dget(path->mnt->mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000686 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400687 dput(path->dentry);
688 path->dentry = mountpoint;
689 mntput(path->mnt);
690 path->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 return 1;
692}
693
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100694/*
David Howells9875cf82011-01-14 18:45:21 +0000695 * Perform an automount
696 * - return -EISDIR to tell follow_managed() to stop and return the path we
697 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 */
David Howells9875cf82011-01-14 18:45:21 +0000699static int follow_automount(struct path *path, unsigned flags,
700 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100701{
David Howells9875cf82011-01-14 18:45:21 +0000702 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000703 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100704
David Howells9875cf82011-01-14 18:45:21 +0000705 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
706 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700707
David Howells6f45b652011-01-14 18:45:31 +0000708 /* We don't want to mount if someone supplied AT_NO_AUTOMOUNT
709 * and this is the terminal part of the path.
710 */
Al Viro49084c32011-06-25 21:59:52 -0400711 if ((flags & LOOKUP_NO_AUTOMOUNT) && !(flags & LOOKUP_PARENT))
David Howells6f45b652011-01-14 18:45:31 +0000712 return -EISDIR; /* we actually want to stop here */
713
David Howells5a30d8a2011-07-11 14:20:57 +0100714 /*
David Howells9875cf82011-01-14 18:45:21 +0000715 * We don't want to mount if someone's just doing a stat and they've
716 * set AT_SYMLINK_NOFOLLOW - unless they're stat'ing a directory and
717 * appended a '/' to the name.
718 */
David Howells5a30d8a2011-07-11 14:20:57 +0100719 if (!(flags & LOOKUP_FOLLOW)) {
720 /* We do, however, want to mount if someone wants to open or
721 * create a file of any type under the mountpoint, wants to
722 * traverse through the mountpoint or wants to open the mounted
723 * directory.
724 * Also, autofs may mark negative dentries as being automount
725 * points. These will need the attentions of the daemon to
726 * instantiate them before they can be used.
727 */
728 if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
729 LOOKUP_OPEN | LOOKUP_CREATE)) &&
730 path->dentry->d_inode)
731 return -EISDIR;
732 }
David Howells9875cf82011-01-14 18:45:21 +0000733 current->total_link_count++;
734 if (current->total_link_count >= 40)
735 return -ELOOP;
736
737 mnt = path->dentry->d_op->d_automount(path);
738 if (IS_ERR(mnt)) {
739 /*
740 * The filesystem is allowed to return -EISDIR here to indicate
741 * it doesn't want to automount. For instance, autofs would do
742 * this so that its userspace daemon can mount on this dentry.
743 *
744 * However, we can only permit this if it's a terminal point in
745 * the path being looked up; if it wasn't then the remainder of
746 * the path is inaccessible and we should say so.
747 */
Al Viro49084c32011-06-25 21:59:52 -0400748 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +0000749 return -EREMOTE;
750 return PTR_ERR(mnt);
751 }
David Howellsea5b7782011-01-14 19:10:03 +0000752
David Howells9875cf82011-01-14 18:45:21 +0000753 if (!mnt) /* mount collision */
754 return 0;
755
Al Viro8aef1882011-06-16 15:10:06 +0100756 if (!*need_mntput) {
757 /* lock_mount() may release path->mnt on error */
758 mntget(path->mnt);
759 *need_mntput = true;
760 }
Al Viro19a167a2011-01-17 01:35:23 -0500761 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000762
David Howellsea5b7782011-01-14 19:10:03 +0000763 switch (err) {
764 case -EBUSY:
765 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500766 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000767 case 0:
Al Viro8aef1882011-06-16 15:10:06 +0100768 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +0000769 path->mnt = mnt;
770 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +0000771 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500772 default:
773 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000774 }
Al Viro19a167a2011-01-17 01:35:23 -0500775
David Howells9875cf82011-01-14 18:45:21 +0000776}
777
778/*
779 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000780 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000781 * - Flagged as mountpoint
782 * - Flagged as automount point
783 *
784 * This may only be called in refwalk mode.
785 *
786 * Serialization is taken care of in namespace.c
787 */
788static int follow_managed(struct path *path, unsigned flags)
789{
Al Viro8aef1882011-06-16 15:10:06 +0100790 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +0000791 unsigned managed;
792 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +0100793 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +0000794
795 /* Given that we're not holding a lock here, we retain the value in a
796 * local variable for each dentry as we look at it so that we don't see
797 * the components of that value change under us */
798 while (managed = ACCESS_ONCE(path->dentry->d_flags),
799 managed &= DCACHE_MANAGED_DENTRY,
800 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000801 /* Allow the filesystem to manage the transit without i_mutex
802 * being held. */
803 if (managed & DCACHE_MANAGE_TRANSIT) {
804 BUG_ON(!path->dentry->d_op);
805 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -0400806 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000807 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100808 break;
David Howellscc53ce52011-01-14 18:45:26 +0000809 }
810
David Howells9875cf82011-01-14 18:45:21 +0000811 /* Transit to a mounted filesystem. */
812 if (managed & DCACHE_MOUNTED) {
813 struct vfsmount *mounted = lookup_mnt(path);
814 if (mounted) {
815 dput(path->dentry);
816 if (need_mntput)
817 mntput(path->mnt);
818 path->mnt = mounted;
819 path->dentry = dget(mounted->mnt_root);
820 need_mntput = true;
821 continue;
822 }
823
824 /* Something is mounted on this dentry in another
825 * namespace and/or whatever was mounted there in this
826 * namespace got unmounted before we managed to get the
827 * vfsmount_lock */
828 }
829
830 /* Handle an automount point */
831 if (managed & DCACHE_NEED_AUTOMOUNT) {
832 ret = follow_automount(path, flags, &need_mntput);
833 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100834 break;
David Howells9875cf82011-01-14 18:45:21 +0000835 continue;
836 }
837
838 /* We didn't change the current path point */
839 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 }
Al Viro8aef1882011-06-16 15:10:06 +0100841
842 if (need_mntput && path->mnt == mnt)
843 mntput(path->mnt);
844 if (ret == -EISDIR)
845 ret = 0;
846 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847}
848
David Howellscc53ce52011-01-14 18:45:26 +0000849int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850{
851 struct vfsmount *mounted;
852
Al Viro1c755af2009-04-18 14:06:57 -0400853 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400855 dput(path->dentry);
856 mntput(path->mnt);
857 path->mnt = mounted;
858 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 return 1;
860 }
861 return 0;
862}
863
Ian Kent62a73752011-03-25 01:51:02 +0800864static inline bool managed_dentry_might_block(struct dentry *dentry)
865{
866 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
867 dentry->d_op->d_manage(dentry, true) < 0);
868}
869
David Howells9875cf82011-01-14 18:45:21 +0000870/*
Al Viro287548e2011-05-27 06:50:06 -0400871 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
872 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +0000873 */
874static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -0400875 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +0000876{
Ian Kent62a73752011-03-25 01:51:02 +0800877 for (;;) {
David Howells9875cf82011-01-14 18:45:21 +0000878 struct vfsmount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +0800879 /*
880 * Don't forget we might have a non-mountpoint managed dentry
881 * that wants to block transit.
882 */
Al Viro287548e2011-05-27 06:50:06 -0400883 if (unlikely(managed_dentry_might_block(path->dentry)))
David Howellsab909112011-01-14 18:46:51 +0000884 return false;
Ian Kent62a73752011-03-25 01:51:02 +0800885
886 if (!d_mountpoint(path->dentry))
887 break;
888
David Howells9875cf82011-01-14 18:45:21 +0000889 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
890 if (!mounted)
891 break;
892 path->mnt = mounted;
893 path->dentry = mounted->mnt_root;
894 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -0700895 /*
896 * Update the inode too. We don't need to re-check the
897 * dentry sequence number here after this d_inode read,
898 * because a mount-point is always pinned.
899 */
900 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +0000901 }
David Howells9875cf82011-01-14 18:45:21 +0000902 return true;
903}
904
Al Virodea39372011-05-27 06:53:39 -0400905static void follow_mount_rcu(struct nameidata *nd)
Al Viro287548e2011-05-27 06:50:06 -0400906{
Al Virodea39372011-05-27 06:53:39 -0400907 while (d_mountpoint(nd->path.dentry)) {
Al Viro287548e2011-05-27 06:50:06 -0400908 struct vfsmount *mounted;
Al Virodea39372011-05-27 06:53:39 -0400909 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
Al Viro287548e2011-05-27 06:50:06 -0400910 if (!mounted)
911 break;
Al Virodea39372011-05-27 06:53:39 -0400912 nd->path.mnt = mounted;
913 nd->path.dentry = mounted->mnt_root;
914 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro287548e2011-05-27 06:50:06 -0400915 }
916}
917
Nick Piggin31e6b012011-01-07 17:49:52 +1100918static int follow_dotdot_rcu(struct nameidata *nd)
919{
Nick Piggin31e6b012011-01-07 17:49:52 +1100920 set_root_rcu(nd);
921
David Howells9875cf82011-01-14 18:45:21 +0000922 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100923 if (nd->path.dentry == nd->root.dentry &&
924 nd->path.mnt == nd->root.mnt) {
925 break;
926 }
927 if (nd->path.dentry != nd->path.mnt->mnt_root) {
928 struct dentry *old = nd->path.dentry;
929 struct dentry *parent = old->d_parent;
930 unsigned seq;
931
932 seq = read_seqcount_begin(&parent->d_seq);
933 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -0500934 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +1100935 nd->path.dentry = parent;
936 nd->seq = seq;
937 break;
938 }
939 if (!follow_up_rcu(&nd->path))
940 break;
941 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +1100942 }
Al Virodea39372011-05-27 06:53:39 -0400943 follow_mount_rcu(nd);
944 nd->inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +1100945 return 0;
Al Viroef7562d2011-03-04 14:35:59 -0500946
947failed:
948 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -0500949 if (!(nd->flags & LOOKUP_ROOT))
950 nd->root.mnt = NULL;
Al Viroef7562d2011-03-04 14:35:59 -0500951 rcu_read_unlock();
952 br_read_unlock(vfsmount_lock);
953 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +1100954}
955
David Howells9875cf82011-01-14 18:45:21 +0000956/*
David Howellscc53ce52011-01-14 18:45:26 +0000957 * Follow down to the covering mount currently visible to userspace. At each
958 * point, the filesystem owning that dentry may be queried as to whether the
959 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +0000960 */
Al Viro7cc90cc2011-03-18 09:04:20 -0400961int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +0000962{
963 unsigned managed;
964 int ret;
965
966 while (managed = ACCESS_ONCE(path->dentry->d_flags),
967 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
968 /* Allow the filesystem to manage the transit without i_mutex
969 * being held.
970 *
971 * We indicate to the filesystem if someone is trying to mount
972 * something here. This gives autofs the chance to deny anyone
973 * other than its daemon the right to mount on its
974 * superstructure.
975 *
976 * The filesystem may sleep at this point.
977 */
978 if (managed & DCACHE_MANAGE_TRANSIT) {
979 BUG_ON(!path->dentry->d_op);
980 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +0000981 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -0400982 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000983 if (ret < 0)
984 return ret == -EISDIR ? 0 : ret;
985 }
986
987 /* Transit to a mounted filesystem. */
988 if (managed & DCACHE_MOUNTED) {
989 struct vfsmount *mounted = lookup_mnt(path);
990 if (!mounted)
991 break;
992 dput(path->dentry);
993 mntput(path->mnt);
994 path->mnt = mounted;
995 path->dentry = dget(mounted->mnt_root);
996 continue;
997 }
998
999 /* Don't handle automount points here */
1000 break;
1001 }
1002 return 0;
1003}
1004
1005/*
David Howells9875cf82011-01-14 18:45:21 +00001006 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1007 */
1008static void follow_mount(struct path *path)
1009{
1010 while (d_mountpoint(path->dentry)) {
1011 struct vfsmount *mounted = lookup_mnt(path);
1012 if (!mounted)
1013 break;
1014 dput(path->dentry);
1015 mntput(path->mnt);
1016 path->mnt = mounted;
1017 path->dentry = dget(mounted->mnt_root);
1018 }
1019}
1020
Nick Piggin31e6b012011-01-07 17:49:52 +11001021static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022{
Al Viro2a737872009-04-07 11:49:53 -04001023 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001026 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Al Viro2a737872009-04-07 11:49:53 -04001028 if (nd->path.dentry == nd->root.dentry &&
1029 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 break;
1031 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001032 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001033 /* rare case of legitimate dget_parent()... */
1034 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 dput(old);
1036 break;
1037 }
Al Viro3088dd72010-01-30 15:47:29 -05001038 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
Al Viro79ed0222009-04-18 13:59:41 -04001041 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001042 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}
1044
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045/*
Nick Pigginbaa03892010-08-18 04:37:31 +10001046 * Allocate a dentry with name and parent, and perform a parent
1047 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1048 * on error. parent->d_inode->i_mutex must be held. d_lookup must
1049 * have verified that no child exists while under i_mutex.
1050 */
1051static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1052 struct qstr *name, struct nameidata *nd)
1053{
1054 struct inode *inode = parent->d_inode;
1055 struct dentry *dentry;
1056 struct dentry *old;
1057
1058 /* Don't create child dentry for a dead directory. */
1059 if (unlikely(IS_DEADDIR(inode)))
1060 return ERR_PTR(-ENOENT);
1061
1062 dentry = d_alloc(parent, name);
1063 if (unlikely(!dentry))
1064 return ERR_PTR(-ENOMEM);
1065
1066 old = inode->i_op->lookup(inode, dentry, nd);
1067 if (unlikely(old)) {
1068 dput(dentry);
1069 dentry = old;
1070 }
1071 return dentry;
1072}
1073
1074/*
Josef Bacik44396f42011-05-31 11:58:49 -04001075 * We already have a dentry, but require a lookup to be performed on the parent
1076 * directory to fill in d_inode. Returns the new dentry, or ERR_PTR on error.
1077 * parent->d_inode->i_mutex must be held. d_lookup must have verified that no
1078 * child exists while under i_mutex.
1079 */
1080static struct dentry *d_inode_lookup(struct dentry *parent, struct dentry *dentry,
1081 struct nameidata *nd)
1082{
1083 struct inode *inode = parent->d_inode;
1084 struct dentry *old;
1085
1086 /* Don't create child dentry for a dead directory. */
1087 if (unlikely(IS_DEADDIR(inode)))
1088 return ERR_PTR(-ENOENT);
1089
1090 old = inode->i_op->lookup(inode, dentry, nd);
1091 if (unlikely(old)) {
1092 dput(dentry);
1093 dentry = old;
1094 }
1095 return dentry;
1096}
1097
1098/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 * It's more convoluted than I'd like it to be, but... it's still fairly
1100 * small and for now I'd prefer to have fast path as straight as possible.
1101 * It _is_ time-critical.
1102 */
1103static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +11001104 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Jan Blunck4ac91372008-02-14 19:34:32 -08001106 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001107 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001108 int need_reval = 1;
1109 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001110 int err;
1111
Al Viro3cac2602009-08-13 18:27:43 +04001112 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001113 * Rename seqlock is not required here because in the off chance
1114 * of a false negative due to a concurrent rename, we're going to
1115 * do the non-racy lookup, below.
1116 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001117 if (nd->flags & LOOKUP_RCU) {
1118 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001119 *inode = nd->inode;
1120 dentry = __d_lookup_rcu(parent, name, &seq, inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001121 if (!dentry)
1122 goto unlazy;
1123
Nick Piggin31e6b012011-01-07 17:49:52 +11001124 /* Memory barrier in read_seqcount_begin of child is enough */
1125 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1126 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001127 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001128
Al Viro24643082011-02-15 01:26:22 -05001129 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro5a18fff2011-03-11 04:44:53 -05001130 status = d_revalidate(dentry, nd);
1131 if (unlikely(status <= 0)) {
1132 if (status != -ECHILD)
1133 need_reval = 0;
1134 goto unlazy;
1135 }
Al Viro24643082011-02-15 01:26:22 -05001136 }
Josef Bacik44396f42011-05-31 11:58:49 -04001137 if (unlikely(d_need_lookup(dentry)))
1138 goto unlazy;
Nick Piggin31e6b012011-01-07 17:49:52 +11001139 path->mnt = mnt;
1140 path->dentry = dentry;
Al Virod6e9bd22011-05-27 07:03:15 -04001141 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1142 goto unlazy;
1143 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1144 goto unlazy;
1145 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001146unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001147 if (unlazy_walk(nd, dentry))
1148 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001149 } else {
1150 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001151 }
Al Viro5a18fff2011-03-11 04:44:53 -05001152
Josef Bacik44396f42011-05-31 11:58:49 -04001153 if (dentry && unlikely(d_need_lookup(dentry))) {
1154 dput(dentry);
1155 dentry = NULL;
1156 }
Al Viro5a18fff2011-03-11 04:44:53 -05001157retry:
1158 if (unlikely(!dentry)) {
1159 struct inode *dir = parent->d_inode;
1160 BUG_ON(nd->inode != dir);
1161
1162 mutex_lock(&dir->i_mutex);
1163 dentry = d_lookup(parent, name);
1164 if (likely(!dentry)) {
1165 dentry = d_alloc_and_lookup(parent, name, nd);
1166 if (IS_ERR(dentry)) {
1167 mutex_unlock(&dir->i_mutex);
1168 return PTR_ERR(dentry);
1169 }
1170 /* known good */
1171 need_reval = 0;
1172 status = 1;
Josef Bacik44396f42011-05-31 11:58:49 -04001173 } else if (unlikely(d_need_lookup(dentry))) {
1174 dentry = d_inode_lookup(parent, dentry, nd);
1175 if (IS_ERR(dentry)) {
1176 mutex_unlock(&dir->i_mutex);
1177 return PTR_ERR(dentry);
1178 }
1179 /* known good */
1180 need_reval = 0;
1181 status = 1;
Al Viro5a18fff2011-03-11 04:44:53 -05001182 }
1183 mutex_unlock(&dir->i_mutex);
Al Viro24643082011-02-15 01:26:22 -05001184 }
Al Viro5a18fff2011-03-11 04:44:53 -05001185 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1186 status = d_revalidate(dentry, nd);
1187 if (unlikely(status <= 0)) {
1188 if (status < 0) {
1189 dput(dentry);
1190 return status;
1191 }
1192 if (!d_invalidate(dentry)) {
1193 dput(dentry);
1194 dentry = NULL;
1195 need_reval = 1;
1196 goto retry;
1197 }
1198 }
1199
David Howells9875cf82011-01-14 18:45:21 +00001200 path->mnt = mnt;
1201 path->dentry = dentry;
1202 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001203 if (unlikely(err < 0)) {
1204 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001205 return err;
Ian Kent89312212011-01-18 12:06:10 +08001206 }
David Howells9875cf82011-01-14 18:45:21 +00001207 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209}
1210
Al Viro52094c82011-02-21 21:34:47 -05001211static inline int may_lookup(struct nameidata *nd)
1212{
1213 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001214 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001215 if (err != -ECHILD)
1216 return err;
Al Viro19660af2011-03-25 10:32:48 -04001217 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001218 return -ECHILD;
1219 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001220 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001221}
1222
Al Viro9856fa12011-03-04 14:22:06 -05001223static inline int handle_dots(struct nameidata *nd, int type)
1224{
1225 if (type == LAST_DOTDOT) {
1226 if (nd->flags & LOOKUP_RCU) {
1227 if (follow_dotdot_rcu(nd))
1228 return -ECHILD;
1229 } else
1230 follow_dotdot(nd);
1231 }
1232 return 0;
1233}
1234
Al Viro951361f2011-03-04 14:44:37 -05001235static void terminate_walk(struct nameidata *nd)
1236{
1237 if (!(nd->flags & LOOKUP_RCU)) {
1238 path_put(&nd->path);
1239 } else {
1240 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001241 if (!(nd->flags & LOOKUP_ROOT))
1242 nd->root.mnt = NULL;
Al Viro951361f2011-03-04 14:44:37 -05001243 rcu_read_unlock();
1244 br_read_unlock(vfsmount_lock);
1245 }
1246}
1247
Al Viroce57dfc2011-03-13 19:58:58 -04001248static inline int walk_component(struct nameidata *nd, struct path *path,
1249 struct qstr *name, int type, int follow)
1250{
1251 struct inode *inode;
1252 int err;
1253 /*
1254 * "." and ".." are special - ".." especially so because it has
1255 * to be able to know about the current root directory and
1256 * parent relationships.
1257 */
1258 if (unlikely(type != LAST_NORM))
1259 return handle_dots(nd, type);
1260 err = do_lookup(nd, name, path, &inode);
1261 if (unlikely(err)) {
1262 terminate_walk(nd);
1263 return err;
1264 }
1265 if (!inode) {
1266 path_to_nameidata(path, nd);
1267 terminate_walk(nd);
1268 return -ENOENT;
1269 }
1270 if (unlikely(inode->i_op->follow_link) && follow) {
Al Viro19660af2011-03-25 10:32:48 -04001271 if (nd->flags & LOOKUP_RCU) {
1272 if (unlikely(unlazy_walk(nd, path->dentry))) {
1273 terminate_walk(nd);
1274 return -ECHILD;
1275 }
1276 }
Al Viroce57dfc2011-03-13 19:58:58 -04001277 BUG_ON(inode != path->dentry->d_inode);
1278 return 1;
1279 }
1280 path_to_nameidata(path, nd);
1281 nd->inode = inode;
1282 return 0;
1283}
1284
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285/*
Al Virob3563792011-03-14 21:54:55 -04001286 * This limits recursive symlink follows to 8, while
1287 * limiting consecutive symlinks to 40.
1288 *
1289 * Without that kind of total limit, nasty chains of consecutive
1290 * symlinks can cause almost arbitrarily long lookups.
1291 */
1292static inline int nested_symlink(struct path *path, struct nameidata *nd)
1293{
1294 int res;
1295
Al Virob3563792011-03-14 21:54:55 -04001296 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1297 path_put_conditional(path, nd);
1298 path_put(&nd->path);
1299 return -ELOOP;
1300 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001301 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001302
1303 nd->depth++;
1304 current->link_count++;
1305
1306 do {
1307 struct path link = *path;
1308 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001309
1310 res = follow_link(&link, nd, &cookie);
Al Virob3563792011-03-14 21:54:55 -04001311 if (!res)
1312 res = walk_component(nd, path, &nd->last,
1313 nd->last_type, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001314 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001315 } while (res > 0);
1316
1317 current->link_count--;
1318 nd->depth--;
1319 return res;
1320}
1321
1322/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001324 * This is the basic name resolution function, turning a pathname into
1325 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001327 * Returns 0 and nd will have valid dentry and mnt on success.
1328 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 */
Al Viro6de88d72009-08-09 01:41:57 +04001330static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331{
1332 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
1335 while (*name=='/')
1336 name++;
1337 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001338 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 /* At this point we know we have a real path component. */
1341 for(;;) {
1342 unsigned long hash;
1343 struct qstr this;
1344 unsigned int c;
Al Virofe479a52011-02-22 15:10:03 -05001345 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Al Viro52094c82011-02-21 21:34:47 -05001347 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 if (err)
1349 break;
1350
1351 this.name = name;
1352 c = *(const unsigned char *)name;
1353
1354 hash = init_name_hash();
1355 do {
1356 name++;
1357 hash = partial_name_hash(c, hash);
1358 c = *(const unsigned char *)name;
1359 } while (c && (c != '/'));
1360 this.len = name - (const char *) this.name;
1361 this.hash = end_name_hash(hash);
1362
Al Virofe479a52011-02-22 15:10:03 -05001363 type = LAST_NORM;
1364 if (this.name[0] == '.') switch (this.len) {
1365 case 2:
Al Viro16c2cd72011-02-22 15:50:10 -05001366 if (this.name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001367 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001368 nd->flags |= LOOKUP_JUMPED;
1369 }
Al Virofe479a52011-02-22 15:10:03 -05001370 break;
1371 case 1:
1372 type = LAST_DOT;
1373 }
Al Viro5a202bc2011-03-08 14:17:44 -05001374 if (likely(type == LAST_NORM)) {
1375 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001376 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001377 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1378 err = parent->d_op->d_hash(parent, nd->inode,
1379 &this);
1380 if (err < 0)
1381 break;
1382 }
1383 }
Al Virofe479a52011-02-22 15:10:03 -05001384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 /* remove trailing slashes? */
1386 if (!c)
1387 goto last_component;
1388 while (*++name == '/');
1389 if (!*name)
Al Virob3563792011-03-14 21:54:55 -04001390 goto last_component;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Al Viroce57dfc2011-03-13 19:58:58 -04001392 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1393 if (err < 0)
1394 return err;
Al Virofe479a52011-02-22 15:10:03 -05001395
Al Viroce57dfc2011-03-13 19:58:58 -04001396 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001397 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001399 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001402 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 break;
1404 continue;
1405 /* here ends the main loop */
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407last_component:
Al Virob3563792011-03-14 21:54:55 -04001408 nd->last = this;
1409 nd->last_type = type;
Al Viro086e1832011-02-22 20:56:27 -05001410 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 }
Al Viro951361f2011-03-04 14:44:37 -05001412 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 return err;
1414}
1415
Al Viro70e9b352011-03-05 21:12:22 -05001416static int path_init(int dfd, const char *name, unsigned int flags,
1417 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001419 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001420 int fput_needed;
1421 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
1423 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001424 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001426 if (flags & LOOKUP_ROOT) {
1427 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001428 if (*name) {
1429 if (!inode->i_op->lookup)
1430 return -ENOTDIR;
1431 retval = inode_permission(inode, MAY_EXEC);
1432 if (retval)
1433 return retval;
1434 }
Al Viro5b6ca022011-03-09 23:04:47 -05001435 nd->path = nd->root;
1436 nd->inode = inode;
1437 if (flags & LOOKUP_RCU) {
1438 br_read_lock(vfsmount_lock);
1439 rcu_read_lock();
1440 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1441 } else {
1442 path_get(&nd->path);
1443 }
1444 return 0;
1445 }
1446
Al Viro2a737872009-04-07 11:49:53 -04001447 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001450 if (flags & LOOKUP_RCU) {
1451 br_read_lock(vfsmount_lock);
1452 rcu_read_lock();
1453 set_root_rcu(nd);
1454 } else {
1455 set_root(nd);
1456 path_get(&nd->root);
1457 }
Al Viro2a737872009-04-07 11:49:53 -04001458 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001459 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001460 if (flags & LOOKUP_RCU) {
1461 struct fs_struct *fs = current->fs;
1462 unsigned seq;
1463
1464 br_read_lock(vfsmount_lock);
1465 rcu_read_lock();
1466
1467 do {
1468 seq = read_seqcount_begin(&fs->seq);
1469 nd->path = fs->pwd;
1470 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1471 } while (read_seqcount_retry(&fs->seq, seq));
1472 } else {
1473 get_fs_pwd(current->fs, &nd->path);
1474 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001475 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001476 struct dentry *dentry;
1477
Al Viro1abf0c72011-03-13 03:51:11 -04001478 file = fget_raw_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001479 retval = -EBADF;
1480 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001481 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001482
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001483 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001484
Al Virof52e0c12011-03-14 18:56:51 -04001485 if (*name) {
1486 retval = -ENOTDIR;
1487 if (!S_ISDIR(dentry->d_inode->i_mode))
1488 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001489
Al Viro4ad5abb2011-06-20 19:57:03 -04001490 retval = inode_permission(dentry->d_inode, MAY_EXEC);
Al Virof52e0c12011-03-14 18:56:51 -04001491 if (retval)
1492 goto fput_fail;
1493 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001494
Jan Blunck5dd784d2008-02-14 19:34:38 -08001495 nd->path = file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001496 if (flags & LOOKUP_RCU) {
1497 if (fput_needed)
Al Viro70e9b352011-03-05 21:12:22 -05001498 *fp = file;
Al Viroe41f7d42011-02-22 14:02:58 -05001499 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1500 br_read_lock(vfsmount_lock);
1501 rcu_read_lock();
1502 } else {
1503 path_get(&file->f_path);
1504 fput_light(file, fput_needed);
1505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 }
Al Viroe41f7d42011-02-22 14:02:58 -05001507
Nick Piggin31e6b012011-01-07 17:49:52 +11001508 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001509 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001510
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001511fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001512 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001513out_fail:
1514 return retval;
1515}
1516
Al Virobd92d7f2011-03-14 19:54:59 -04001517static inline int lookup_last(struct nameidata *nd, struct path *path)
1518{
1519 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1520 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1521
1522 nd->flags &= ~LOOKUP_PARENT;
1523 return walk_component(nd, path, &nd->last, nd->last_type,
1524 nd->flags & LOOKUP_FOLLOW);
1525}
1526
Al Viro9b4a9b12009-04-07 11:44:16 -04001527/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001528static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001529 unsigned int flags, struct nameidata *nd)
1530{
Al Viro70e9b352011-03-05 21:12:22 -05001531 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001532 struct path path;
1533 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001534
1535 /*
1536 * Path walking is largely split up into 2 different synchronisation
1537 * schemes, rcu-walk and ref-walk (explained in
1538 * Documentation/filesystems/path-lookup.txt). These share much of the
1539 * path walk code, but some things particularly setup, cleanup, and
1540 * following mounts are sufficiently divergent that functions are
1541 * duplicated. Typically there is a function foo(), and its RCU
1542 * analogue, foo_rcu().
1543 *
1544 * -ECHILD is the error number of choice (just to avoid clashes) that
1545 * is returned if some aspect of an rcu-walk fails. Such an error must
1546 * be handled by restarting a traditional ref-walk (which will always
1547 * be able to complete).
1548 */
Al Virobd92d7f2011-03-14 19:54:59 -04001549 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001550
Al Virobd92d7f2011-03-14 19:54:59 -04001551 if (unlikely(err))
1552 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001553
1554 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001555 err = link_path_walk(name, nd);
1556
1557 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001558 err = lookup_last(nd, &path);
1559 while (err > 0) {
1560 void *cookie;
1561 struct path link = path;
Al Virobd92d7f2011-03-14 19:54:59 -04001562 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001563 err = follow_link(&link, nd, &cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001564 if (!err)
1565 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001566 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001567 }
1568 }
Al Viroee0827c2011-02-21 23:38:09 -05001569
Al Viro9f1fafe2011-03-25 11:00:12 -04001570 if (!err)
1571 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001572
1573 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1574 if (!nd->inode->i_op->lookup) {
1575 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001576 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001577 }
1578 }
Al Viro16c2cd72011-02-22 15:50:10 -05001579
Al Viro70e9b352011-03-05 21:12:22 -05001580 if (base)
1581 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001582
Al Viro5b6ca022011-03-09 23:04:47 -05001583 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001584 path_put(&nd->root);
1585 nd->root.mnt = NULL;
1586 }
Al Virobd92d7f2011-03-14 19:54:59 -04001587 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001588}
Nick Piggin31e6b012011-01-07 17:49:52 +11001589
Al Viroee0827c2011-02-21 23:38:09 -05001590static int do_path_lookup(int dfd, const char *name,
1591 unsigned int flags, struct nameidata *nd)
1592{
1593 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1594 if (unlikely(retval == -ECHILD))
1595 retval = path_lookupat(dfd, name, flags, nd);
1596 if (unlikely(retval == -ESTALE))
1597 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001598
1599 if (likely(!retval)) {
1600 if (unlikely(!audit_dummy_context())) {
1601 if (nd->path.dentry && nd->inode)
1602 audit_inode(name, nd->path.dentry);
1603 }
1604 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001605 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606}
1607
Al Viroc9c6cac2011-02-16 15:15:47 -05001608int kern_path_parent(const char *name, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001609{
Al Viroc9c6cac2011-02-16 15:15:47 -05001610 return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001611}
1612
Al Virod1811462008-08-02 00:49:18 -04001613int kern_path(const char *name, unsigned int flags, struct path *path)
1614{
1615 struct nameidata nd;
1616 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1617 if (!res)
1618 *path = nd.path;
1619 return res;
1620}
1621
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001622/**
1623 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1624 * @dentry: pointer to dentry of the base directory
1625 * @mnt: pointer to vfs mount of the base directory
1626 * @name: pointer to file name
1627 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04001628 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001629 */
1630int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1631 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04001632 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001633{
Al Viroe0a01242011-06-27 17:00:37 -04001634 struct nameidata nd;
1635 int err;
1636 nd.root.dentry = dentry;
1637 nd.root.mnt = mnt;
1638 BUG_ON(flags & LOOKUP_PARENT);
Al Viro5b6ca022011-03-09 23:04:47 -05001639 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
Al Viroe0a01242011-06-27 17:00:37 -04001640 err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
1641 if (!err)
1642 *path = nd.path;
1643 return err;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001644}
1645
Christoph Hellwigeead1912007-10-16 23:25:38 -07001646static struct dentry *__lookup_hash(struct qstr *name,
1647 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648{
Christoph Hellwig81fca442010-10-06 10:47:47 +02001649 struct inode *inode = base->d_inode;
James Morris057f6c02007-04-26 00:12:05 -07001650 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 int err;
1652
Al Viro4ad5abb2011-06-20 19:57:03 -04001653 err = inode_permission(inode, MAY_EXEC);
Christoph Hellwig81fca442010-10-06 10:47:47 +02001654 if (err)
1655 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
1657 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001658 * Don't bother with __d_lookup: callers are for creat as
1659 * well as unlink, so a lot of the time it would cost
1660 * a double lookup.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001661 */
Nick Pigginb04f7842010-08-18 04:37:34 +10001662 dentry = d_lookup(base, name);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001663
Josef Bacik44396f42011-05-31 11:58:49 -04001664 if (dentry && d_need_lookup(dentry)) {
1665 /*
1666 * __lookup_hash is called with the parent dir's i_mutex already
1667 * held, so we are good to go here.
1668 */
1669 dentry = d_inode_lookup(base, dentry, nd);
1670 if (IS_ERR(dentry))
1671 return dentry;
1672 }
1673
Al Virod2d9e9f2011-06-20 10:55:26 -04001674 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE)) {
1675 int status = d_revalidate(dentry, nd);
1676 if (unlikely(status <= 0)) {
1677 /*
1678 * The dentry failed validation.
1679 * If d_revalidate returned 0 attempt to invalidate
1680 * the dentry otherwise d_revalidate is asking us
1681 * to return a fail status.
1682 */
1683 if (status < 0) {
1684 dput(dentry);
1685 return ERR_PTR(status);
1686 } else if (!d_invalidate(dentry)) {
1687 dput(dentry);
1688 dentry = NULL;
1689 }
1690 }
1691 }
Al Viro6e6b1bd2009-08-13 23:38:37 +04001692
Nick Pigginbaa03892010-08-18 04:37:31 +10001693 if (!dentry)
1694 dentry = d_alloc_and_lookup(base, name, nd);
Al Viro5a202bc2011-03-08 14:17:44 -05001695
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 return dentry;
1697}
1698
James Morris057f6c02007-04-26 00:12:05 -07001699/*
1700 * Restricted form of lookup. Doesn't follow links, single-component only,
1701 * needs parent already locked. Doesn't follow mounts.
1702 * SMP-safe.
1703 */
Adrian Bunka244e162006-03-31 02:32:11 -08001704static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
Jan Blunck4ac91372008-02-14 19:34:32 -08001706 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707}
1708
Christoph Hellwigeead1912007-10-16 23:25:38 -07001709/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001710 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001711 * @name: pathname component to lookup
1712 * @base: base directory to lookup from
1713 * @len: maximum length @len should be interpreted to
1714 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001715 * Note that this routine is purely a helper for filesystem usage and should
1716 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001717 * nameidata argument is passed to the filesystem methods and a filesystem
1718 * using this helper needs to be prepared for that.
1719 */
James Morris057f6c02007-04-26 00:12:05 -07001720struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1721{
James Morris057f6c02007-04-26 00:12:05 -07001722 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05001723 unsigned long hash;
1724 unsigned int c;
James Morris057f6c02007-04-26 00:12:05 -07001725
David Woodhouse2f9092e2009-04-20 23:18:37 +01001726 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1727
Al Viro6a96ba52011-03-07 23:49:20 -05001728 this.name = name;
1729 this.len = len;
1730 if (!len)
1731 return ERR_PTR(-EACCES);
1732
1733 hash = init_name_hash();
1734 while (len--) {
1735 c = *(const unsigned char *)name++;
1736 if (c == '/' || c == '\0')
1737 return ERR_PTR(-EACCES);
1738 hash = partial_name_hash(c, hash);
1739 }
1740 this.hash = end_name_hash(hash);
Al Viro5a202bc2011-03-08 14:17:44 -05001741 /*
1742 * See if the low-level filesystem might want
1743 * to use its own hash..
1744 */
1745 if (base->d_flags & DCACHE_OP_HASH) {
1746 int err = base->d_op->d_hash(base, base->d_inode, &this);
1747 if (err < 0)
1748 return ERR_PTR(err);
1749 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07001750
Christoph Hellwig49705b72005-11-08 21:35:06 -08001751 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001752}
1753
Al Viro2d8f3032008-07-22 09:59:21 -04001754int user_path_at(int dfd, const char __user *name, unsigned flags,
1755 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756{
Al Viro2d8f3032008-07-22 09:59:21 -04001757 struct nameidata nd;
Al Virof52e0c12011-03-14 18:56:51 -04001758 char *tmp = getname_flags(name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001761
1762 BUG_ON(flags & LOOKUP_PARENT);
1763
1764 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001766 if (!err)
1767 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 }
1769 return err;
1770}
1771
Al Viro2ad94ae2008-07-21 09:32:51 -04001772static int user_path_parent(int dfd, const char __user *path,
1773 struct nameidata *nd, char **name)
1774{
1775 char *s = getname(path);
1776 int error;
1777
1778 if (IS_ERR(s))
1779 return PTR_ERR(s);
1780
1781 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1782 if (error)
1783 putname(s);
1784 else
1785 *name = s;
1786
1787 return error;
1788}
1789
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790/*
1791 * It's inline, so penalty for filesystems that don't use sticky bit is
1792 * minimal.
1793 */
1794static inline int check_sticky(struct inode *dir, struct inode *inode)
1795{
David Howellsda9592e2008-11-14 10:39:05 +11001796 uid_t fsuid = current_fsuid();
1797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 if (!(dir->i_mode & S_ISVTX))
1799 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001800 if (current_user_ns() != inode_userns(inode))
1801 goto other_userns;
David Howellsda9592e2008-11-14 10:39:05 +11001802 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001804 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001806
1807other_userns:
1808 return !ns_capable(inode_userns(inode), CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809}
1810
1811/*
1812 * Check whether we can remove a link victim from directory dir, check
1813 * whether the type of victim is right.
1814 * 1. We can't do it if dir is read-only (done in permission())
1815 * 2. We should have write and exec permissions on dir
1816 * 3. We can't remove anything from append-only dir
1817 * 4. We can't do anything with immutable dir (done in permission())
1818 * 5. If the sticky bit on dir is set we should either
1819 * a. be owner of dir, or
1820 * b. be owner of victim, or
1821 * c. have CAP_FOWNER capability
1822 * 6. If the victim is append-only or immutable we can't do antyhing with
1823 * links pointing to it.
1824 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1825 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1826 * 9. We can't remove a root or mountpoint.
1827 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1828 * nfs_async_unlink().
1829 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001830static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
1832 int error;
1833
1834 if (!victim->d_inode)
1835 return -ENOENT;
1836
1837 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001838 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Al Virof419a2e2008-07-22 00:07:17 -04001840 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 if (error)
1842 return error;
1843 if (IS_APPEND(dir))
1844 return -EPERM;
1845 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001846 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 return -EPERM;
1848 if (isdir) {
1849 if (!S_ISDIR(victim->d_inode->i_mode))
1850 return -ENOTDIR;
1851 if (IS_ROOT(victim))
1852 return -EBUSY;
1853 } else if (S_ISDIR(victim->d_inode->i_mode))
1854 return -EISDIR;
1855 if (IS_DEADDIR(dir))
1856 return -ENOENT;
1857 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1858 return -EBUSY;
1859 return 0;
1860}
1861
1862/* Check whether we can create an object with dentry child in directory
1863 * dir.
1864 * 1. We can't do it if child already exists (open has special treatment for
1865 * this case, but since we are inlined it's OK)
1866 * 2. We can't do it if dir is read-only (done in permission())
1867 * 3. We should have write and exec permissions on dir
1868 * 4. We can't do it if dir is immutable (done in permission())
1869 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001870static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871{
1872 if (child->d_inode)
1873 return -EEXIST;
1874 if (IS_DEADDIR(dir))
1875 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001876 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877}
1878
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879/*
1880 * p1 and p2 should be directories on the same fs.
1881 */
1882struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1883{
1884 struct dentry *p;
1885
1886 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001887 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return NULL;
1889 }
1890
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001891 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001893 p = d_ancestor(p2, p1);
1894 if (p) {
1895 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1896 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1897 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
1899
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001900 p = d_ancestor(p1, p2);
1901 if (p) {
1902 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1903 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1904 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 }
1906
Ingo Molnarf2eace22006-07-03 00:25:05 -07001907 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1908 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 return NULL;
1910}
1911
1912void unlock_rename(struct dentry *p1, struct dentry *p2)
1913{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001914 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001916 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001917 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
1919}
1920
1921int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1922 struct nameidata *nd)
1923{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001924 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926 if (error)
1927 return error;
1928
Al Viroacfa4382008-12-04 10:06:33 -05001929 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 return -EACCES; /* shouldn't it be ENOSYS? */
1931 mode &= S_IALLUGO;
1932 mode |= S_IFREG;
1933 error = security_inode_create(dir, dentry, mode);
1934 if (error)
1935 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001937 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001938 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 return error;
1940}
1941
Al Viro73d049a2011-03-11 12:08:24 -05001942static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001944 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 struct inode *inode = dentry->d_inode;
1946 int error;
1947
Al Virobcda7652011-03-13 16:42:14 -04001948 /* O_PATH? */
1949 if (!acc_mode)
1950 return 0;
1951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 if (!inode)
1953 return -ENOENT;
1954
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001955 switch (inode->i_mode & S_IFMT) {
1956 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001958 case S_IFDIR:
1959 if (acc_mode & MAY_WRITE)
1960 return -EISDIR;
1961 break;
1962 case S_IFBLK:
1963 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001964 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001966 /*FALLTHRU*/
1967 case S_IFIFO:
1968 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001970 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001971 }
Dave Hansenb41572e2007-10-16 23:31:14 -07001972
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001973 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07001974 if (error)
1975 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05001976
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 /*
1978 * An append-only file must be opened in append mode for writing.
1979 */
1980 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05001981 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05001982 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05001984 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 }
1986
1987 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001988 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05001989 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990
1991 /*
1992 * Ensure there are no outstanding leases on the file.
1993 */
Al Virob65a9cf2009-12-16 06:27:40 -05001994 return break_lease(inode, flag);
Al Viro7715b522009-12-16 03:54:00 -05001995}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Jeff Laytone1181ee2010-12-07 16:19:50 -05001997static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05001998{
Jeff Laytone1181ee2010-12-07 16:19:50 -05001999 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002000 struct inode *inode = path->dentry->d_inode;
2001 int error = get_write_access(inode);
2002 if (error)
2003 return error;
2004 /*
2005 * Refuse to truncate files with mandatory locks held on them.
2006 */
2007 error = locks_verify_locked(inode);
2008 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002009 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002010 if (!error) {
2011 error = do_truncate(path->dentry, 0,
2012 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002013 filp);
Al Viro7715b522009-12-16 03:54:00 -05002014 }
2015 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002016 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017}
2018
Dave Hansend57999e2008-02-15 14:37:27 -08002019static inline int open_to_namei_flags(int flag)
2020{
Al Viro8a5e9292011-06-25 19:15:54 -04002021 if ((flag & O_ACCMODE) == 3)
2022 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002023 return flag;
2024}
2025
Nick Piggin31e6b012011-01-07 17:49:52 +11002026/*
Al Virofe2d35f2011-03-05 22:58:25 -05002027 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002028 */
Al Virofb1cc552009-12-24 01:58:28 -05002029static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viroc3e380b2011-02-23 13:39:45 -05002030 const struct open_flags *op, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002031{
Al Viroa1e28032009-12-24 02:12:06 -05002032 struct dentry *dir = nd->path.dentry;
Al Viro6c0d46c2011-03-09 00:59:59 -05002033 struct dentry *dentry;
Al Viroca344a892011-03-09 00:36:45 -05002034 int open_flag = op->open_flag;
Al Viro6c0d46c2011-03-09 00:59:59 -05002035 int will_truncate = open_flag & O_TRUNC;
Al Viroca344a892011-03-09 00:36:45 -05002036 int want_write = 0;
Al Virobcda7652011-03-13 16:42:14 -04002037 int acc_mode = op->acc_mode;
Al Virofb1cc552009-12-24 01:58:28 -05002038 struct file *filp;
Al Viro16c2cd72011-02-22 15:50:10 -05002039 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002040
Al Viroc3e380b2011-02-23 13:39:45 -05002041 nd->flags &= ~LOOKUP_PARENT;
2042 nd->flags |= op->intent;
2043
Al Viro1f36f772009-12-26 10:56:19 -05002044 switch (nd->last_type) {
2045 case LAST_DOTDOT:
Neil Brown176306f2010-05-24 16:57:56 +10002046 case LAST_DOT:
Al Virofe2d35f2011-03-05 22:58:25 -05002047 error = handle_dots(nd, nd->last_type);
2048 if (error)
2049 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002050 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002051 case LAST_ROOT:
Al Viro9f1fafe2011-03-25 11:00:12 -04002052 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002053 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002054 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002055 audit_inode(pathname, nd->path.dentry);
Al Viroca344a892011-03-09 00:36:45 -05002056 if (open_flag & O_CREAT) {
Al Virofe2d35f2011-03-05 22:58:25 -05002057 error = -EISDIR;
2058 goto exit;
2059 }
2060 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002061 case LAST_BIND:
Al Viro9f1fafe2011-03-25 11:00:12 -04002062 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002063 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002064 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002065 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002066 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002067 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002068
Al Viroca344a892011-03-09 00:36:45 -05002069 if (!(open_flag & O_CREAT)) {
Al Virobcda7652011-03-13 16:42:14 -04002070 int symlink_ok = 0;
Al Virofe2d35f2011-03-05 22:58:25 -05002071 if (nd->last.name[nd->last.len])
2072 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002073 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2074 symlink_ok = 1;
Al Virofe2d35f2011-03-05 22:58:25 -05002075 /* we _can_ be in RCU mode here */
Al Viroce57dfc2011-03-13 19:58:58 -04002076 error = walk_component(nd, path, &nd->last, LAST_NORM,
2077 !symlink_ok);
2078 if (error < 0)
Al Virofe2d35f2011-03-05 22:58:25 -05002079 return ERR_PTR(error);
Al Viroce57dfc2011-03-13 19:58:58 -04002080 if (error) /* symlink */
Al Virofe2d35f2011-03-05 22:58:25 -05002081 return NULL;
Al Virofe2d35f2011-03-05 22:58:25 -05002082 /* sayonara */
Al Viro9f1fafe2011-03-25 11:00:12 -04002083 error = complete_walk(nd);
2084 if (error)
2085 return ERR_PTR(-ECHILD);
Al Virofe2d35f2011-03-05 22:58:25 -05002086
2087 error = -ENOTDIR;
2088 if (nd->flags & LOOKUP_DIRECTORY) {
Al Viroce57dfc2011-03-13 19:58:58 -04002089 if (!nd->inode->i_op->lookup)
Al Virofe2d35f2011-03-05 22:58:25 -05002090 goto exit;
2091 }
2092 audit_inode(pathname, nd->path.dentry);
2093 goto ok;
2094 }
2095
2096 /* create side of things */
Al Viro9f1fafe2011-03-25 11:00:12 -04002097 error = complete_walk(nd);
2098 if (error)
2099 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002100
2101 audit_inode(pathname, dir);
Al Viro16c2cd72011-02-22 15:50:10 -05002102 error = -EISDIR;
Al Viro1f36f772009-12-26 10:56:19 -05002103 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002104 if (nd->last.name[nd->last.len])
2105 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002106
Al Viroa1e28032009-12-24 02:12:06 -05002107 mutex_lock(&dir->d_inode->i_mutex);
2108
Al Viro6c0d46c2011-03-09 00:59:59 -05002109 dentry = lookup_hash(nd);
2110 error = PTR_ERR(dentry);
2111 if (IS_ERR(dentry)) {
Al Virofb1cc552009-12-24 01:58:28 -05002112 mutex_unlock(&dir->d_inode->i_mutex);
2113 goto exit;
2114 }
2115
Al Viro6c0d46c2011-03-09 00:59:59 -05002116 path->dentry = dentry;
2117 path->mnt = nd->path.mnt;
2118
Al Virofb1cc552009-12-24 01:58:28 -05002119 /* Negative dentry, just create the file */
Al Viro6c0d46c2011-03-09 00:59:59 -05002120 if (!dentry->d_inode) {
2121 int mode = op->mode;
2122 if (!IS_POSIXACL(dir->d_inode))
2123 mode &= ~current_umask();
Al Virofb1cc552009-12-24 01:58:28 -05002124 /*
2125 * This write is needed to ensure that a
Al Viro6c0d46c2011-03-09 00:59:59 -05002126 * rw->ro transition does not occur between
Al Virofb1cc552009-12-24 01:58:28 -05002127 * the time when the file is created and when
2128 * a permanent write count is taken through
2129 * the 'struct file' in nameidata_to_filp().
2130 */
2131 error = mnt_want_write(nd->path.mnt);
2132 if (error)
2133 goto exit_mutex_unlock;
Al Viroca344a892011-03-09 00:36:45 -05002134 want_write = 1;
Al Viro9b44f1b2011-03-09 00:17:27 -05002135 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002136 open_flag &= ~O_TRUNC;
Al Viro6c0d46c2011-03-09 00:59:59 -05002137 will_truncate = 0;
Al Virobcda7652011-03-13 16:42:14 -04002138 acc_mode = MAY_OPEN;
Al Viro6c0d46c2011-03-09 00:59:59 -05002139 error = security_path_mknod(&nd->path, dentry, mode, 0);
2140 if (error)
2141 goto exit_mutex_unlock;
2142 error = vfs_create(dir->d_inode, dentry, mode, nd);
2143 if (error)
2144 goto exit_mutex_unlock;
2145 mutex_unlock(&dir->d_inode->i_mutex);
2146 dput(nd->path.dentry);
2147 nd->path.dentry = dentry;
Al Viroca344a892011-03-09 00:36:45 -05002148 goto common;
Al Virofb1cc552009-12-24 01:58:28 -05002149 }
2150
2151 /*
2152 * It already exists.
2153 */
2154 mutex_unlock(&dir->d_inode->i_mutex);
2155 audit_inode(pathname, path->dentry);
2156
2157 error = -EEXIST;
Al Viroca344a892011-03-09 00:36:45 -05002158 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002159 goto exit_dput;
2160
David Howells9875cf82011-01-14 18:45:21 +00002161 error = follow_managed(path, nd->flags);
2162 if (error < 0)
2163 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002164
2165 error = -ENOENT;
2166 if (!path->dentry->d_inode)
2167 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002168
2169 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002170 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002171
2172 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002173 nd->inode = path->dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05002174 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002175 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002176 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002177ok:
Al Viro6c0d46c2011-03-09 00:59:59 -05002178 if (!S_ISREG(nd->inode->i_mode))
2179 will_truncate = 0;
2180
Al Viro0f9d1a12011-03-09 00:13:14 -05002181 if (will_truncate) {
2182 error = mnt_want_write(nd->path.mnt);
2183 if (error)
2184 goto exit;
Al Viroca344a892011-03-09 00:36:45 -05002185 want_write = 1;
Al Viro0f9d1a12011-03-09 00:13:14 -05002186 }
Al Viroca344a892011-03-09 00:36:45 -05002187common:
Al Virobcda7652011-03-13 16:42:14 -04002188 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002189 if (error)
Al Viro0f9d1a12011-03-09 00:13:14 -05002190 goto exit;
Al Viro0f9d1a12011-03-09 00:13:14 -05002191 filp = nameidata_to_filp(nd);
2192 if (!IS_ERR(filp)) {
2193 error = ima_file_check(filp, op->acc_mode);
2194 if (error) {
2195 fput(filp);
2196 filp = ERR_PTR(error);
2197 }
2198 }
2199 if (!IS_ERR(filp)) {
2200 if (will_truncate) {
2201 error = handle_truncate(filp);
2202 if (error) {
2203 fput(filp);
2204 filp = ERR_PTR(error);
2205 }
2206 }
2207 }
Al Viroca344a892011-03-09 00:36:45 -05002208out:
2209 if (want_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002210 mnt_drop_write(nd->path.mnt);
2211 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002212 return filp;
2213
2214exit_mutex_unlock:
2215 mutex_unlock(&dir->d_inode->i_mutex);
2216exit_dput:
2217 path_put_conditional(path, nd);
2218exit:
Al Viroca344a892011-03-09 00:36:45 -05002219 filp = ERR_PTR(error);
2220 goto out;
Al Virofb1cc552009-12-24 01:58:28 -05002221}
2222
Al Viro13aab422011-02-23 17:54:08 -05002223static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002224 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225{
Al Virofe2d35f2011-03-05 22:58:25 -05002226 struct file *base = NULL;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002227 struct file *filp;
Al Viro9850c052010-01-13 15:01:15 -05002228 struct path path;
Al Viro13aab422011-02-23 17:54:08 -05002229 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002230
2231 filp = get_empty_filp();
2232 if (!filp)
2233 return ERR_PTR(-ENFILE);
2234
Al Viro47c805d2011-02-23 17:44:09 -05002235 filp->f_flags = op->open_flag;
Al Viro73d049a2011-03-11 12:08:24 -05002236 nd->intent.open.file = filp;
2237 nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2238 nd->intent.open.create_mode = op->mode;
Nick Piggin31e6b012011-01-07 17:49:52 +11002239
Al Viro73d049a2011-03-11 12:08:24 -05002240 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002241 if (unlikely(error))
Al Viro13aab422011-02-23 17:54:08 -05002242 goto out_filp;
Nick Piggin31e6b012011-01-07 17:49:52 +11002243
Al Virofe2d35f2011-03-05 22:58:25 -05002244 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002245 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002246 if (unlikely(error))
2247 goto out_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
Al Viro73d049a2011-03-11 12:08:24 -05002249 filp = do_last(nd, &path, op, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002250 while (unlikely(!filp)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002251 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05002252 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04002253 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05002254 path_put_conditional(&path, nd);
2255 path_put(&nd->path);
Al Viro40b39132011-03-09 16:22:18 -05002256 filp = ERR_PTR(-ELOOP);
2257 break;
2258 }
Al Viro73d049a2011-03-11 12:08:24 -05002259 nd->flags |= LOOKUP_PARENT;
2260 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04002261 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002262 if (unlikely(error))
Al Virof1afe9e2011-02-22 22:27:28 -05002263 filp = ERR_PTR(error);
Al Viroc3e380b2011-02-23 13:39:45 -05002264 else
Al Viro73d049a2011-03-11 12:08:24 -05002265 filp = do_last(nd, &path, op, pathname);
Al Viro574197e2011-03-14 22:20:34 -04002266 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002267 }
Al Viro10fa8e62009-12-26 07:09:49 -05002268out:
Al Viro73d049a2011-03-11 12:08:24 -05002269 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2270 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002271 if (base)
2272 fput(base);
Al Viro73d049a2011-03-11 12:08:24 -05002273 release_open_intent(nd);
Al Viro10fa8e62009-12-26 07:09:49 -05002274 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Nick Piggin31e6b012011-01-07 17:49:52 +11002276out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002277 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002278 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279}
2280
Al Viro13aab422011-02-23 17:54:08 -05002281struct file *do_filp_open(int dfd, const char *pathname,
2282 const struct open_flags *op, int flags)
2283{
Al Viro73d049a2011-03-11 12:08:24 -05002284 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002285 struct file *filp;
2286
Al Viro73d049a2011-03-11 12:08:24 -05002287 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002288 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002289 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002290 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002291 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002292 return filp;
2293}
2294
Al Viro73d049a2011-03-11 12:08:24 -05002295struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2296 const char *name, const struct open_flags *op, int flags)
2297{
2298 struct nameidata nd;
2299 struct file *file;
2300
2301 nd.root.mnt = mnt;
2302 nd.root.dentry = dentry;
2303
2304 flags |= LOOKUP_ROOT;
2305
Al Virobcda7652011-03-13 16:42:14 -04002306 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002307 return ERR_PTR(-ELOOP);
2308
2309 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2310 if (unlikely(file == ERR_PTR(-ECHILD)))
2311 file = path_openat(-1, name, &nd, op, flags);
2312 if (unlikely(file == ERR_PTR(-ESTALE)))
2313 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2314 return file;
2315}
2316
Al Viroed75e952011-06-27 16:53:43 -04002317struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path, int is_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002319 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viroed75e952011-06-27 16:53:43 -04002320 struct nameidata nd;
2321 int error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd);
2322 if (error)
2323 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002325 /*
2326 * Yucky last component or no last component at all?
2327 * (foo/., foo/.., /////)
2328 */
Al Viroed75e952011-06-27 16:53:43 -04002329 if (nd.last_type != LAST_NORM)
2330 goto out;
2331 nd.flags &= ~LOOKUP_PARENT;
2332 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
2333 nd.intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002334
2335 /*
2336 * Do the final lookup.
2337 */
Al Viroed75e952011-06-27 16:53:43 -04002338 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2339 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 if (IS_ERR(dentry))
2341 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002342
Al Viroe9baf6e2008-05-15 04:49:12 -04002343 if (dentry->d_inode)
2344 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002345 /*
2346 * Special case - lookup gave negative, but... we had foo/bar/
2347 * From the vfs_mknod() POV we just have a negative dentry -
2348 * all is fine. Let's be bastards - you had / on the end, you've
2349 * been asking for (non-existent) directory. -ENOENT for you.
2350 */
Al Viroed75e952011-06-27 16:53:43 -04002351 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
Al Viroe9baf6e2008-05-15 04:49:12 -04002352 dput(dentry);
2353 dentry = ERR_PTR(-ENOENT);
Al Viroed75e952011-06-27 16:53:43 -04002354 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04002355 }
Al Viroed75e952011-06-27 16:53:43 -04002356 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002358eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002360 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361fail:
Al Viroed75e952011-06-27 16:53:43 -04002362 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2363out:
2364 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 return dentry;
2366}
Al Virodae6ad82011-06-26 11:50:15 -04002367EXPORT_SYMBOL(kern_path_create);
2368
2369struct dentry *user_path_create(int dfd, const char __user *pathname, struct path *path, int is_dir)
2370{
2371 char *tmp = getname(pathname);
2372 struct dentry *res;
2373 if (IS_ERR(tmp))
2374 return ERR_CAST(tmp);
2375 res = kern_path_create(dfd, tmp, path, is_dir);
2376 putname(tmp);
2377 return res;
2378}
2379EXPORT_SYMBOL(user_path_create);
2380
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2382{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002383 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
2385 if (error)
2386 return error;
2387
Serge E. Hallyne795b712011-03-23 16:43:25 -07002388 if ((S_ISCHR(mode) || S_ISBLK(mode)) &&
2389 !ns_capable(inode_userns(dir), CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 return -EPERM;
2391
Al Viroacfa4382008-12-04 10:06:33 -05002392 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 return -EPERM;
2394
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002395 error = devcgroup_inode_mknod(mode, dev);
2396 if (error)
2397 return error;
2398
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 error = security_inode_mknod(dir, dentry, mode, dev);
2400 if (error)
2401 return error;
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002404 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002405 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 return error;
2407}
2408
Dave Hansen463c3192008-02-15 14:37:57 -08002409static int may_mknod(mode_t mode)
2410{
2411 switch (mode & S_IFMT) {
2412 case S_IFREG:
2413 case S_IFCHR:
2414 case S_IFBLK:
2415 case S_IFIFO:
2416 case S_IFSOCK:
2417 case 0: /* zero mode translates to S_IFREG */
2418 return 0;
2419 case S_IFDIR:
2420 return -EPERM;
2421 default:
2422 return -EINVAL;
2423 }
2424}
2425
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002426SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2427 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428{
Al Viro2ad94ae2008-07-21 09:32:51 -04002429 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002430 struct path path;
2431 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
2433 if (S_ISDIR(mode))
2434 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Al Virodae6ad82011-06-26 11:50:15 -04002436 dentry = user_path_create(dfd, filename, &path, 0);
2437 if (IS_ERR(dentry))
2438 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04002439
Al Virodae6ad82011-06-26 11:50:15 -04002440 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002441 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002442 error = may_mknod(mode);
2443 if (error)
2444 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002445 error = mnt_want_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002446 if (error)
2447 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002448 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002449 if (error)
2450 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002451 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 case 0: case S_IFREG:
Al Virodae6ad82011-06-26 11:50:15 -04002453 error = vfs_create(path.dentry->d_inode,dentry,mode,NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 break;
2455 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04002456 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 new_decode_dev(dev));
2458 break;
2459 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04002460 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002463out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002464 mnt_drop_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002465out_dput:
2466 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002467 mutex_unlock(&path.dentry->d_inode->i_mutex);
2468 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
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{
Dave Hansen6902d922006-09-30 23:29:01 -07002501 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002502 struct path path;
2503 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
Al Virodae6ad82011-06-26 11:50:15 -04002505 dentry = user_path_create(dfd, pathname, &path, 1);
Dave Hansen6902d922006-09-30 23:29:01 -07002506 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04002507 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002508
Al Virodae6ad82011-06-26 11:50:15 -04002509 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002510 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04002511 error = mnt_want_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002512 if (error)
2513 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002514 error = security_path_mkdir(&path, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002515 if (error)
2516 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04002517 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002518out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002519 mnt_drop_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002520out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002521 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002522 mutex_unlock(&path.dentry->d_inode->i_mutex);
2523 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 return error;
2525}
2526
Heiko Carstens3cdad422009-01-14 14:14:22 +01002527SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002528{
2529 return sys_mkdirat(AT_FDCWD, pathname, mode);
2530}
2531
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532/*
Sage Weila71905f2011-05-24 13:06:08 -07002533 * The dentry_unhash() helper will try to drop the dentry early: we
2534 * should have a usage count of 2 if we're the only user of this
2535 * dentry, and if that is true (possibly after pruning the dcache),
2536 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 *
2538 * A low-level filesystem can, if it choses, legally
2539 * do a
2540 *
2541 * if (!d_unhashed(dentry))
2542 * return -EBUSY;
2543 *
2544 * if it cannot handle the case of removing a directory
2545 * that is still in use by something else..
2546 */
2547void dentry_unhash(struct dentry *dentry)
2548{
Vasily Averindc168422006-12-06 20:37:07 -08002549 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 spin_lock(&dentry->d_lock);
Sage Weil64252c72011-05-24 13:06:05 -07002551 if (dentry->d_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 __d_drop(dentry);
2553 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554}
2555
2556int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2557{
2558 int error = may_delete(dir, dentry, 1);
2559
2560 if (error)
2561 return error;
2562
Al Viroacfa4382008-12-04 10:06:33 -05002563 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 return -EPERM;
2565
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002566 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
Sage Weil912dbc12011-05-24 13:06:11 -07002568 error = -EBUSY;
2569 if (d_mountpoint(dentry))
2570 goto out;
2571
2572 error = security_inode_rmdir(dir, dentry);
2573 if (error)
2574 goto out;
2575
Sage Weil3cebde22011-05-29 21:20:59 -07002576 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07002577 error = dir->i_op->rmdir(dir, dentry);
2578 if (error)
2579 goto out;
2580
2581 dentry->d_inode->i_flags |= S_DEAD;
2582 dont_mount(dentry);
2583
2584out:
2585 mutex_unlock(&dentry->d_inode->i_mutex);
2586 if (!error)
2587 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 return error;
2589}
2590
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002591static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592{
2593 int error = 0;
2594 char * name;
2595 struct dentry *dentry;
2596 struct nameidata nd;
2597
Al Viro2ad94ae2008-07-21 09:32:51 -04002598 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002600 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
2602 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002603 case LAST_DOTDOT:
2604 error = -ENOTEMPTY;
2605 goto exit1;
2606 case LAST_DOT:
2607 error = -EINVAL;
2608 goto exit1;
2609 case LAST_ROOT:
2610 error = -EBUSY;
2611 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002613
2614 nd.flags &= ~LOOKUP_PARENT;
2615
Jan Blunck4ac91372008-02-14 19:34:32 -08002616 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002617 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002619 if (IS_ERR(dentry))
2620 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002621 if (!dentry->d_inode) {
2622 error = -ENOENT;
2623 goto exit3;
2624 }
Dave Hansen06227532008-02-15 14:37:34 -08002625 error = mnt_want_write(nd.path.mnt);
2626 if (error)
2627 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002628 error = security_path_rmdir(&nd.path, dentry);
2629 if (error)
2630 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002631 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002632exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002633 mnt_drop_write(nd.path.mnt);
2634exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002635 dput(dentry);
2636exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002637 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002639 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 putname(name);
2641 return error;
2642}
2643
Heiko Carstens3cdad422009-01-14 14:14:22 +01002644SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002645{
2646 return do_rmdir(AT_FDCWD, pathname);
2647}
2648
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649int vfs_unlink(struct inode *dir, struct dentry *dentry)
2650{
2651 int error = may_delete(dir, dentry, 0);
2652
2653 if (error)
2654 return error;
2655
Al Viroacfa4382008-12-04 10:06:33 -05002656 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 return -EPERM;
2658
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002659 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 if (d_mountpoint(dentry))
2661 error = -EBUSY;
2662 else {
2663 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002664 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002666 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002667 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002670 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
2672 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2673 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002674 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 }
Robert Love0eeca282005-07-12 17:06:03 -04002677
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 return error;
2679}
2680
2681/*
2682 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002683 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 * writeout happening, and we don't want to prevent access to the directory
2685 * while waiting on the I/O.
2686 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002687static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688{
Al Viro2ad94ae2008-07-21 09:32:51 -04002689 int error;
2690 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 struct dentry *dentry;
2692 struct nameidata nd;
2693 struct inode *inode = NULL;
2694
Al Viro2ad94ae2008-07-21 09:32:51 -04002695 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002697 return error;
2698
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 error = -EISDIR;
2700 if (nd.last_type != LAST_NORM)
2701 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002702
2703 nd.flags &= ~LOOKUP_PARENT;
2704
Jan Blunck4ac91372008-02-14 19:34:32 -08002705 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002706 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 error = PTR_ERR(dentry);
2708 if (!IS_ERR(dentry)) {
2709 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03002710 if (nd.last.name[nd.last.len])
2711 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 inode = dentry->d_inode;
Török Edwin50338b82011-06-16 00:06:14 +03002713 if (!inode)
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002714 goto slashes;
2715 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002716 error = mnt_want_write(nd.path.mnt);
2717 if (error)
2718 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002719 error = security_path_unlink(&nd.path, dentry);
2720 if (error)
2721 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002722 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002723exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002724 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 exit2:
2726 dput(dentry);
2727 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002728 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 if (inode)
2730 iput(inode); /* truncate the inode here */
2731exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002732 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 putname(name);
2734 return error;
2735
2736slashes:
2737 error = !dentry->d_inode ? -ENOENT :
2738 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2739 goto exit2;
2740}
2741
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002742SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002743{
2744 if ((flag & ~AT_REMOVEDIR) != 0)
2745 return -EINVAL;
2746
2747 if (flag & AT_REMOVEDIR)
2748 return do_rmdir(dfd, pathname);
2749
2750 return do_unlinkat(dfd, pathname);
2751}
2752
Heiko Carstens3480b252009-01-14 14:14:16 +01002753SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002754{
2755 return do_unlinkat(AT_FDCWD, pathname);
2756}
2757
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002758int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002760 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
2762 if (error)
2763 return error;
2764
Al Viroacfa4382008-12-04 10:06:33 -05002765 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 return -EPERM;
2767
2768 error = security_inode_symlink(dir, dentry, oldname);
2769 if (error)
2770 return error;
2771
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002773 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002774 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 return error;
2776}
2777
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002778SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2779 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780{
Al Viro2ad94ae2008-07-21 09:32:51 -04002781 int error;
2782 char *from;
Dave Hansen6902d922006-09-30 23:29:01 -07002783 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002784 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
2786 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002787 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002789
Al Virodae6ad82011-06-26 11:50:15 -04002790 dentry = user_path_create(newdfd, newname, &path, 0);
Dave Hansen6902d922006-09-30 23:29:01 -07002791 error = PTR_ERR(dentry);
2792 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04002793 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07002794
Al Virodae6ad82011-06-26 11:50:15 -04002795 error = mnt_want_write(path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002796 if (error)
2797 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002798 error = security_path_symlink(&path, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002799 if (error)
2800 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04002801 error = vfs_symlink(path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002802out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002803 mnt_drop_write(path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002804out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002805 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002806 mutex_unlock(&path.dentry->d_inode->i_mutex);
2807 path_put(&path);
Dave Hansen6902d922006-09-30 23:29:01 -07002808out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 putname(from);
2810 return error;
2811}
2812
Heiko Carstens3480b252009-01-14 14:14:16 +01002813SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002814{
2815 return sys_symlinkat(oldname, AT_FDCWD, newname);
2816}
2817
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2819{
2820 struct inode *inode = old_dentry->d_inode;
2821 int error;
2822
2823 if (!inode)
2824 return -ENOENT;
2825
Miklos Szeredia95164d2008-07-30 15:08:48 +02002826 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 if (error)
2828 return error;
2829
2830 if (dir->i_sb != inode->i_sb)
2831 return -EXDEV;
2832
2833 /*
2834 * A link to an append-only or immutable file cannot be created.
2835 */
2836 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2837 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05002838 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002840 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 return -EPERM;
2842
2843 error = security_inode_link(old_dentry, dir, new_dentry);
2844 if (error)
2845 return error;
2846
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002847 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05302848 /* Make sure we don't allow creating hardlink to an unlinked file */
2849 if (inode->i_nlink == 0)
2850 error = -ENOENT;
2851 else
2852 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002853 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002854 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002855 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 return error;
2857}
2858
2859/*
2860 * Hardlinks are often used in delicate situations. We avoid
2861 * security-related surprises by not following symlinks on the
2862 * newname. --KAB
2863 *
2864 * We don't follow them on the oldname either to be compatible
2865 * with linux 2.0, and to avoid hard-linking to directories
2866 * and other special files. --ADM
2867 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002868SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2869 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870{
2871 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002872 struct path old_path, new_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302873 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302876 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002877 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302878 /*
2879 * To use null names we require CAP_DAC_READ_SEARCH
2880 * This ensures that not everyone will be able to create
2881 * handlink using the passed filedescriptor.
2882 */
2883 if (flags & AT_EMPTY_PATH) {
2884 if (!capable(CAP_DAC_READ_SEARCH))
2885 return -ENOENT;
2886 how = LOOKUP_EMPTY;
2887 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002888
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302889 if (flags & AT_SYMLINK_FOLLOW)
2890 how |= LOOKUP_FOLLOW;
2891
2892 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002894 return error;
2895
Al Virodae6ad82011-06-26 11:50:15 -04002896 new_dentry = user_path_create(newdfd, newname, &new_path, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002898 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04002899 goto out;
2900
2901 error = -EXDEV;
2902 if (old_path.mnt != new_path.mnt)
2903 goto out_dput;
2904 error = mnt_want_write(new_path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002905 if (error)
2906 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002907 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002908 if (error)
2909 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04002910 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002911out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002912 mnt_drop_write(new_path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002913out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002914 dput(new_dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002915 mutex_unlock(&new_path.dentry->d_inode->i_mutex);
2916 path_put(&new_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917out:
Al Viro2d8f3032008-07-22 09:59:21 -04002918 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
2920 return error;
2921}
2922
Heiko Carstens3480b252009-01-14 14:14:16 +01002923SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002924{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002925 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002926}
2927
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928/*
2929 * The worst of all namespace operations - renaming directory. "Perverted"
2930 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2931 * Problems:
2932 * a) we can get into loop creation. Check is done in is_subdir().
2933 * b) race potential - two innocent renames can create a loop together.
2934 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002935 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 * story.
2937 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002938 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 * whether the target exists). Solution: try to be smart with locking
2940 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002941 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 * move will be locked. Thus we can rank directories by the tree
2943 * (ancestors first) and rank all non-directories after them.
2944 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002945 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 * HOWEVER, it relies on the assumption that any object with ->lookup()
2947 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2948 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07002949 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002950 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05002952 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 * locking].
2954 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07002955static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2956 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957{
2958 int error = 0;
Sage Weil9055cba2011-05-24 13:06:12 -07002959 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
2961 /*
2962 * If we are going to change the parent - check write permissions,
2963 * we'll need to flip '..'.
2964 */
2965 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04002966 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 if (error)
2968 return error;
2969 }
2970
2971 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2972 if (error)
2973 return error;
2974
Al Virod83c49f2010-04-30 17:17:09 -04002975 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002976 mutex_lock(&target->i_mutex);
Sage Weil9055cba2011-05-24 13:06:12 -07002977
2978 error = -EBUSY;
2979 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
2980 goto out;
2981
Sage Weil3cebde22011-05-29 21:20:59 -07002982 if (target)
2983 shrink_dcache_parent(new_dentry);
Sage Weil9055cba2011-05-24 13:06:12 -07002984 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2985 if (error)
2986 goto out;
2987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 if (target) {
Sage Weil9055cba2011-05-24 13:06:12 -07002989 target->i_flags |= S_DEAD;
2990 dont_mount(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 }
Sage Weil9055cba2011-05-24 13:06:12 -07002992out:
2993 if (target)
2994 mutex_unlock(&target->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002995 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07002996 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2997 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 return error;
2999}
3000
Adrian Bunk75c96f82005-05-05 16:16:09 -07003001static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3002 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003{
Sage Weil51892bb2011-05-24 13:06:13 -07003004 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 int error;
3006
3007 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3008 if (error)
3009 return error;
3010
3011 dget(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003013 mutex_lock(&target->i_mutex);
Sage Weil51892bb2011-05-24 13:06:13 -07003014
3015 error = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
Sage Weil51892bb2011-05-24 13:06:13 -07003017 goto out;
3018
3019 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3020 if (error)
3021 goto out;
3022
3023 if (target)
3024 dont_mount(new_dentry);
3025 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3026 d_move(old_dentry, new_dentry);
3027out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003029 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 dput(new_dentry);
3031 return error;
3032}
3033
3034int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3035 struct inode *new_dir, struct dentry *new_dentry)
3036{
3037 int error;
3038 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003039 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
3041 if (old_dentry->d_inode == new_dentry->d_inode)
3042 return 0;
3043
3044 error = may_delete(old_dir, old_dentry, is_dir);
3045 if (error)
3046 return error;
3047
3048 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003049 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 else
3051 error = may_delete(new_dir, new_dentry, is_dir);
3052 if (error)
3053 return error;
3054
Al Viroacfa4382008-12-04 10:06:33 -05003055 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 return -EPERM;
3057
Robert Love0eeca282005-07-12 17:06:03 -04003058 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3059
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 if (is_dir)
3061 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3062 else
3063 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003064 if (!error)
3065 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003066 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003067 fsnotify_oldname_free(old_name);
3068
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 return error;
3070}
3071
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003072SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3073 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074{
Al Viro2ad94ae2008-07-21 09:32:51 -04003075 struct dentry *old_dir, *new_dir;
3076 struct dentry *old_dentry, *new_dentry;
3077 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003079 char *from;
3080 char *to;
3081 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082
Al Viro2ad94ae2008-07-21 09:32:51 -04003083 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 if (error)
3085 goto exit;
3086
Al Viro2ad94ae2008-07-21 09:32:51 -04003087 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 if (error)
3089 goto exit1;
3090
3091 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003092 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 goto exit2;
3094
Jan Blunck4ac91372008-02-14 19:34:32 -08003095 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 error = -EBUSY;
3097 if (oldnd.last_type != LAST_NORM)
3098 goto exit2;
3099
Jan Blunck4ac91372008-02-14 19:34:32 -08003100 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 if (newnd.last_type != LAST_NORM)
3102 goto exit2;
3103
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003104 oldnd.flags &= ~LOOKUP_PARENT;
3105 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003106 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003107
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 trap = lock_rename(new_dir, old_dir);
3109
Christoph Hellwig49705b72005-11-08 21:35:06 -08003110 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 error = PTR_ERR(old_dentry);
3112 if (IS_ERR(old_dentry))
3113 goto exit3;
3114 /* source must exist */
3115 error = -ENOENT;
3116 if (!old_dentry->d_inode)
3117 goto exit4;
3118 /* unless the source is a directory trailing slashes give -ENOTDIR */
3119 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3120 error = -ENOTDIR;
3121 if (oldnd.last.name[oldnd.last.len])
3122 goto exit4;
3123 if (newnd.last.name[newnd.last.len])
3124 goto exit4;
3125 }
3126 /* source should not be ancestor of target */
3127 error = -EINVAL;
3128 if (old_dentry == trap)
3129 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003130 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 error = PTR_ERR(new_dentry);
3132 if (IS_ERR(new_dentry))
3133 goto exit4;
3134 /* target should not be an ancestor of source */
3135 error = -ENOTEMPTY;
3136 if (new_dentry == trap)
3137 goto exit5;
3138
Dave Hansen9079b1e2008-02-15 14:37:49 -08003139 error = mnt_want_write(oldnd.path.mnt);
3140 if (error)
3141 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003142 error = security_path_rename(&oldnd.path, old_dentry,
3143 &newnd.path, new_dentry);
3144 if (error)
3145 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 error = vfs_rename(old_dir->d_inode, old_dentry,
3147 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003148exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003149 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150exit5:
3151 dput(new_dentry);
3152exit4:
3153 dput(old_dentry);
3154exit3:
3155 unlock_rename(new_dir, old_dir);
3156exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003157 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003158 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003160 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003162exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 return error;
3164}
3165
Heiko Carstensa26eab22009-01-14 14:14:17 +01003166SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003167{
3168 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3169}
3170
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3172{
3173 int len;
3174
3175 len = PTR_ERR(link);
3176 if (IS_ERR(link))
3177 goto out;
3178
3179 len = strlen(link);
3180 if (len > (unsigned) buflen)
3181 len = buflen;
3182 if (copy_to_user(buffer, link, len))
3183 len = -EFAULT;
3184out:
3185 return len;
3186}
3187
3188/*
3189 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3190 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3191 * using) it for any given inode is up to filesystem.
3192 */
3193int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3194{
3195 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003196 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003197 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003198
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003200 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003201 if (IS_ERR(cookie))
3202 return PTR_ERR(cookie);
3203
3204 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3205 if (dentry->d_inode->i_op->put_link)
3206 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3207 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208}
3209
3210int vfs_follow_link(struct nameidata *nd, const char *link)
3211{
3212 return __vfs_follow_link(nd, link);
3213}
3214
3215/* get the link contents into pagecache */
3216static char *page_getlink(struct dentry * dentry, struct page **ppage)
3217{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003218 char *kaddr;
3219 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003221 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003223 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003225 kaddr = kmap(page);
3226 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3227 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228}
3229
3230int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3231{
3232 struct page *page = NULL;
3233 char *s = page_getlink(dentry, &page);
3234 int res = vfs_readlink(dentry,buffer,buflen,s);
3235 if (page) {
3236 kunmap(page);
3237 page_cache_release(page);
3238 }
3239 return res;
3240}
3241
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003242void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003244 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003246 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247}
3248
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003249void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003251 struct page *page = cookie;
3252
3253 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 kunmap(page);
3255 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 }
3257}
3258
Nick Piggin54566b22009-01-04 12:00:53 -08003259/*
3260 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3261 */
3262int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263{
3264 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003265 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003266 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003267 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003269 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3270 if (nofs)
3271 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272
NeilBrown7e53cac2006-03-25 03:07:57 -08003273retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003274 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003275 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003277 goto fail;
3278
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 kaddr = kmap_atomic(page, KM_USER0);
3280 memcpy(kaddr, symname, len-1);
3281 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07003282
3283 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3284 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 if (err < 0)
3286 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003287 if (err < len-1)
3288 goto retry;
3289
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 mark_inode_dirty(inode);
3291 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292fail:
3293 return err;
3294}
3295
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003296int page_symlink(struct inode *inode, const char *symname, int len)
3297{
3298 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003299 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003300}
3301
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003302const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 .readlink = generic_readlink,
3304 .follow_link = page_follow_link_light,
3305 .put_link = page_put_link,
3306};
3307
Al Viro2d8f3032008-07-22 09:59:21 -04003308EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003309EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310EXPORT_SYMBOL(follow_down);
3311EXPORT_SYMBOL(follow_up);
3312EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3313EXPORT_SYMBOL(getname);
3314EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315EXPORT_SYMBOL(lookup_one_len);
3316EXPORT_SYMBOL(page_follow_link_light);
3317EXPORT_SYMBOL(page_put_link);
3318EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003319EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320EXPORT_SYMBOL(page_symlink);
3321EXPORT_SYMBOL(page_symlink_inode_operations);
Al Virod1811462008-08-02 00:49:18 -04003322EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003323EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003324EXPORT_SYMBOL(inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325EXPORT_SYMBOL(unlock_rename);
3326EXPORT_SYMBOL(vfs_create);
3327EXPORT_SYMBOL(vfs_follow_link);
3328EXPORT_SYMBOL(vfs_link);
3329EXPORT_SYMBOL(vfs_mkdir);
3330EXPORT_SYMBOL(vfs_mknod);
3331EXPORT_SYMBOL(generic_permission);
3332EXPORT_SYMBOL(vfs_readlink);
3333EXPORT_SYMBOL(vfs_rename);
3334EXPORT_SYMBOL(vfs_rmdir);
3335EXPORT_SYMBOL(vfs_symlink);
3336EXPORT_SYMBOL(vfs_unlink);
3337EXPORT_SYMBOL(dentry_unhash);
3338EXPORT_SYMBOL(generic_readlink);