blob: b45a039216c7f3bcafccee58858f6dbbe77e8034 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/namei.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/*
8 * Some corrections by tytso.
9 */
10
11/* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
12 * lookup logic.
13 */
14/* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
15 */
16
17#include <linux/init.h>
18#include <linux/module.h>
19#include <linux/slab.h>
20#include <linux/fs.h>
21#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/pagemap.h>
Robert Love0eeca282005-07-12 17:06:03 -040023#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/personality.h>
25#include <linux/security.h>
Mimi Zohar6146f0d2009-02-04 09:06:57 -050026#include <linux/ima.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/syscalls.h>
28#include <linux/mount.h>
29#include <linux/audit.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080030#include <linux/capability.h>
Trond Myklebust834f2a42005-10-18 14:20:16 -070031#include <linux/file.h>
Ulrich Drepper5590ff02006-01-18 17:43:53 -080032#include <linux/fcntl.h>
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070033#include <linux/device_cgroup.h>
Al Viro5ad4e532009-03-29 19:50:06 -040034#include <linux/fs_struct.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/uaccess.h>
36
Eric Parise81e3f42009-12-04 15:47:36 -050037#include "internal.h"
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/* [Feb-1997 T. Schoebel-Theuer]
40 * Fundamental changes in the pathname lookup mechanisms (namei)
41 * were necessary because of omirr. The reason is that omirr needs
42 * to know the _real_ pathname, not the user-supplied one, in case
43 * of symlinks (and also when transname replacements occur).
44 *
45 * The new code replaces the old recursive symlink resolution with
46 * an iterative one (in case of non-nested symlink chains). It does
47 * this with calls to <fs>_follow_link().
48 * As a side effect, dir_namei(), _namei() and follow_link() are now
49 * replaced with a single function lookup_dentry() that can handle all
50 * the special cases of the former code.
51 *
52 * With the new dcache, the pathname is stored at each inode, at least as
53 * long as the refcount of the inode is positive. As a side effect, the
54 * size of the dcache depends on the inode cache and thus is dynamic.
55 *
56 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
57 * resolution to correspond with current state of the code.
58 *
59 * Note that the symlink resolution is not *completely* iterative.
60 * There is still a significant amount of tail- and mid- recursion in
61 * the algorithm. Also, note that <fs>_readlink() is not used in
62 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
63 * may return different results than <fs>_follow_link(). Many virtual
64 * filesystems (including /proc) exhibit this behavior.
65 */
66
67/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
68 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
69 * and the name already exists in form of a symlink, try to create the new
70 * name indicated by the symlink. The old code always complained that the
71 * name already exists, due to not following the symlink even if its target
72 * is nonexistent. The new semantics affects also mknod() and link() when
Lucas De Marchi25985ed2011-03-30 22:57:33 -030073 * the name is a symlink pointing to a non-existent name.
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 *
75 * I don't know which semantics is the right one, since I have no access
76 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
77 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
78 * "old" one. Personally, I think the new semantics is much more logical.
79 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
80 * file does succeed in both HP-UX and SunOs, but not in Solaris
81 * and in the old Linux semantics.
82 */
83
84/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
85 * semantics. See the comments in "open_namei" and "do_link" below.
86 *
87 * [10-Sep-98 Alan Modra] Another symlink change.
88 */
89
90/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
91 * inside the path - always follow.
92 * in the last component in creation/removal/renaming - never follow.
93 * if LOOKUP_FOLLOW passed - follow.
94 * if the pathname has trailing slashes - follow.
95 * otherwise - don't follow.
96 * (applied in that order).
97 *
98 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
99 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
100 * During the 2.4 we need to fix the userland stuff depending on it -
101 * hopefully we will be able to get rid of that wart in 2.5. So far only
102 * XEmacs seems to be relying on it...
103 */
104/*
105 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800106 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * any extra contention...
108 */
109
110/* In order to reduce some races, while at the same time doing additional
111 * checking and hopefully speeding things up, we copy filenames to the
112 * kernel data space before using them..
113 *
114 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
115 * PATH_MAX includes the nul terminator --RR.
116 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800117static int do_getname(const char __user *filename, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 int retval;
120 unsigned long len = PATH_MAX;
121
122 if (!segment_eq(get_fs(), KERNEL_DS)) {
123 if ((unsigned long) filename >= TASK_SIZE)
124 return -EFAULT;
125 if (TASK_SIZE - (unsigned long) filename < PATH_MAX)
126 len = TASK_SIZE - (unsigned long) filename;
127 }
128
129 retval = strncpy_from_user(page, filename, len);
130 if (retval > 0) {
131 if (retval < len)
132 return 0;
133 return -ENAMETOOLONG;
134 } else if (!retval)
135 retval = -ENOENT;
136 return retval;
137}
138
Al Virof52e0c12011-03-14 18:56:51 -0400139static char *getname_flags(const char __user * filename, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 char *tmp, *result;
142
143 result = ERR_PTR(-ENOMEM);
144 tmp = __getname();
145 if (tmp) {
146 int retval = do_getname(filename, tmp);
147
148 result = tmp;
149 if (retval < 0) {
Al Virof52e0c12011-03-14 18:56:51 -0400150 if (retval != -ENOENT || !(flags & LOOKUP_EMPTY)) {
151 __putname(tmp);
152 result = ERR_PTR(retval);
153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 }
155 }
156 audit_getname(result);
157 return result;
158}
159
Al Virof52e0c12011-03-14 18:56:51 -0400160char *getname(const char __user * filename)
161{
162 return getname_flags(filename, 0);
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#ifdef CONFIG_AUDITSYSCALL
166void putname(const char *name)
167{
Al Viro5ac3a9c2006-07-16 06:38:45 -0400168 if (unlikely(!audit_dummy_context()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 audit_putname(name);
170 else
171 __putname(name);
172}
173EXPORT_SYMBOL(putname);
174#endif
175
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700176/*
177 * This does basic POSIX ACL permission checking
178 */
Al Viro7e401452011-06-20 19:12:17 -0400179static int acl_permission_check(struct inode *inode, int mask)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700180{
Al Viro7e401452011-06-20 19:12:17 -0400181 int (*check_acl)(struct inode *inode, int mask);
Linus Torvalds26cf46b2011-05-13 11:51:01 -0700182 unsigned int mode = inode->i_mode;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700183
Al Viro9c2c7032011-06-20 19:06:22 -0400184 mask &= MAY_READ | MAY_WRITE | MAY_EXEC | MAY_NOT_BLOCK;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700185
Serge E. Hallyne795b712011-03-23 16:43:25 -0700186 if (current_user_ns() != inode_userns(inode))
187 goto other_perms;
188
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700189 if (current_fsuid() == inode->i_uid)
190 mode >>= 6;
191 else {
Al Viro178ea7352011-06-20 11:31:30 -0400192 check_acl = inode->i_op->check_acl;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700193 if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
Al Viro7e401452011-06-20 19:12:17 -0400194 int error = check_acl(inode, mask);
Nick Pigginb74c79e2011-01-07 17:49:58 +1100195 if (error != -EAGAIN)
196 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700197 }
198
199 if (in_group_p(inode->i_gid))
200 mode >>= 3;
201 }
202
Serge E. Hallyne795b712011-03-23 16:43:25 -0700203other_perms:
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700204 /*
205 * If the DACs are ok we don't need any capability check.
206 */
Al Viro9c2c7032011-06-20 19:06:22 -0400207 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700208 return 0;
209 return -EACCES;
210}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100213 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 * @inode: inode to check access rights for
215 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
Randy Dunlap39191622011-01-08 19:36:21 -0800216 * @flags: IPERM_FLAG_ flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 *
218 * Used to check for read/write/execute permissions on a file.
219 * We use "fsuid" for this, letting us set arbitrary permissions
220 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100221 * are used for other things.
222 *
223 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
224 * request cannot be satisfied (eg. requires blocking or too much complexity).
225 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 */
Al Viro2830ba72011-06-20 19:16:29 -0400227int generic_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700229 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231 /*
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700232 * Do the basic POSIX ACL permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 */
Al Viro7e401452011-06-20 19:12:17 -0400234 ret = acl_permission_check(inode, mask);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700235 if (ret != -EACCES)
236 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Al Virod594e7e2011-06-20 19:55:42 -0400238 if (S_ISDIR(inode->i_mode)) {
239 /* DACs are overridable for directories */
240 if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE))
241 return 0;
242 if (!(mask & MAY_WRITE))
243 if (ns_capable(inode_userns(inode), CAP_DAC_READ_SEARCH))
244 return 0;
245 return -EACCES;
246 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 /*
248 * Read/write DACs are always overridable.
Al Virod594e7e2011-06-20 19:55:42 -0400249 * Executable DACs are overridable when there is
250 * at least one exec bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 */
Al Virod594e7e2011-06-20 19:55:42 -0400252 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
Serge E. Hallyne795b712011-03-23 16:43:25 -0700253 if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return 0;
255
256 /*
257 * Searching includes executable on directories, else just read.
258 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600259 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Al Virod594e7e2011-06-20 19:55:42 -0400260 if (mask == MAY_READ)
Serge E. Hallyne795b712011-03-23 16:43:25 -0700261 if (ns_capable(inode_userns(inode), CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return 0;
263
264 return -EACCES;
265}
266
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200267/**
268 * inode_permission - check for access rights to a given inode
269 * @inode: inode to check permission on
270 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
271 *
272 * Used to check for read/write/execute permissions on an inode.
273 * We use "fsuid" for this, letting us set arbitrary permissions
274 * for filesystem access without changing the "normal" uids which
275 * are used for other things.
276 */
Al Virof419a2e2008-07-22 00:07:17 -0400277int inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
Al Viroe6305c42008-07-15 21:03:57 -0400279 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280
281 if (mask & MAY_WRITE) {
Miklos Szeredi22590e42007-10-16 23:27:08 -0700282 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 /*
285 * Nobody gets write access to a read-only fs.
286 */
287 if (IS_RDONLY(inode) &&
288 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
289 return -EROFS;
290
291 /*
292 * Nobody gets write access to an immutable file.
293 */
294 if (IS_IMMUTABLE(inode))
295 return -EACCES;
296 }
297
Al Viroacfa4382008-12-04 10:06:33 -0500298 if (inode->i_op->permission)
Al Viro10556cb2011-06-20 19:28:19 -0400299 retval = inode->i_op->permission(inode, mask);
Miklos Szeredif696a362008-07-31 13:41:58 +0200300 else
Al Viro2830ba72011-06-20 19:16:29 -0400301 retval = generic_permission(inode, mask);
Miklos Szeredif696a362008-07-31 13:41:58 +0200302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (retval)
304 return retval;
305
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700306 retval = devcgroup_inode_permission(inode, mask);
307 if (retval)
308 return retval;
309
Eric Parisd09ca732010-07-23 11:43:57 -0400310 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Al Virof4d6ff82011-06-19 13:14:21 -0400313/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800314 * path_get - get a reference to a path
315 * @path: path to get the reference to
316 *
317 * Given a path increment the reference count to the dentry and the vfsmount.
318 */
319void path_get(struct path *path)
320{
321 mntget(path->mnt);
322 dget(path->dentry);
323}
324EXPORT_SYMBOL(path_get);
325
326/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800327 * path_put - put a reference to a path
328 * @path: path to put the reference to
329 *
330 * Given a path decrement the reference count to the dentry and the vfsmount.
331 */
332void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
Jan Blunck1d957f92008-02-14 19:34:35 -0800334 dput(path->dentry);
335 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336}
Jan Blunck1d957f92008-02-14 19:34:35 -0800337EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Al Viro19660af2011-03-25 10:32:48 -0400339/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100340 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400341 * Documentation/filesystems/path-lookup.txt). In situations when we can't
342 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
343 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
344 * mode. Refcounts are grabbed at the last known good point before rcu-walk
345 * got stuck, so ref-walk may continue from there. If this is not successful
346 * (eg. a seqcount has changed), then failure is returned and it's up to caller
347 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100348 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100349
350/**
Al Viro19660af2011-03-25 10:32:48 -0400351 * unlazy_walk - try to switch to ref-walk mode.
352 * @nd: nameidata pathwalk data
353 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800354 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100355 *
Al Viro19660af2011-03-25 10:32:48 -0400356 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
357 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
358 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100359 */
Al Viro19660af2011-03-25 10:32:48 -0400360static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100361{
362 struct fs_struct *fs = current->fs;
363 struct dentry *parent = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500364 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100365
366 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500367 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
368 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100369 spin_lock(&fs->lock);
370 if (nd->root.mnt != fs->root.mnt ||
371 nd->root.dentry != fs->root.dentry)
372 goto err_root;
373 }
374 spin_lock(&parent->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400375 if (!dentry) {
376 if (!__d_rcu_to_refcount(parent, nd->seq))
377 goto err_parent;
378 BUG_ON(nd->inode != parent->d_inode);
379 } else {
Al Viro94c0d4e2011-07-12 21:40:23 -0400380 if (dentry->d_parent != parent)
381 goto err_parent;
Al Viro19660af2011-03-25 10:32:48 -0400382 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
383 if (!__d_rcu_to_refcount(dentry, nd->seq))
384 goto err_child;
385 /*
386 * If the sequence check on the child dentry passed, then
387 * the child has not been removed from its parent. This
388 * means the parent dentry must be valid and able to take
389 * a reference at this point.
390 */
391 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
392 BUG_ON(!parent->d_count);
393 parent->d_count++;
394 spin_unlock(&dentry->d_lock);
395 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100396 spin_unlock(&parent->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500397 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100398 path_get(&nd->root);
399 spin_unlock(&fs->lock);
400 }
401 mntget(nd->path.mnt);
402
403 rcu_read_unlock();
404 br_read_unlock(vfsmount_lock);
405 nd->flags &= ~LOOKUP_RCU;
406 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400407
408err_child:
Nick Piggin31e6b012011-01-07 17:49:52 +1100409 spin_unlock(&dentry->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400410err_parent:
Nick Piggin31e6b012011-01-07 17:49:52 +1100411 spin_unlock(&parent->d_lock);
412err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500413 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100414 spin_unlock(&fs->lock);
415 return -ECHILD;
416}
417
Nick Piggin31e6b012011-01-07 17:49:52 +1100418/**
Trond Myklebust834f2a42005-10-18 14:20:16 -0700419 * release_open_intent - free up open intent resources
420 * @nd: pointer to nameidata
421 */
422void release_open_intent(struct nameidata *nd)
423{
Linus Torvalds2dab5972011-02-11 15:53:38 -0800424 struct file *file = nd->intent.open.file;
425
426 if (file && !IS_ERR(file)) {
427 if (file->f_path.dentry == NULL)
428 put_filp(file);
429 else
430 fput(file);
431 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700432}
433
Al Virof60aef72011-02-15 01:35:28 -0500434static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
Nick Piggin34286d62011-01-07 17:49:57 +1100435{
Al Virof60aef72011-02-15 01:35:28 -0500436 return dentry->d_op->d_revalidate(dentry, nd);
Nick Piggin34286d62011-01-07 17:49:57 +1100437}
438
Al Viro9f1fafe2011-03-25 11:00:12 -0400439/**
440 * complete_walk - successful completion of path walk
441 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500442 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400443 * If we had been in RCU mode, drop out of it and legitimize nd->path.
444 * Revalidate the final result, unless we'd already done that during
445 * the path walk or the filesystem doesn't ask for it. Return 0 on
446 * success, -error on failure. In case of failure caller does not
447 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500448 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400449static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500450{
Al Viro16c2cd72011-02-22 15:50:10 -0500451 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500452 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500453
Al Viro9f1fafe2011-03-25 11:00:12 -0400454 if (nd->flags & LOOKUP_RCU) {
455 nd->flags &= ~LOOKUP_RCU;
456 if (!(nd->flags & LOOKUP_ROOT))
457 nd->root.mnt = NULL;
458 spin_lock(&dentry->d_lock);
459 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
460 spin_unlock(&dentry->d_lock);
461 rcu_read_unlock();
462 br_read_unlock(vfsmount_lock);
463 return -ECHILD;
464 }
465 BUG_ON(nd->inode != dentry->d_inode);
466 spin_unlock(&dentry->d_lock);
467 mntget(nd->path.mnt);
468 rcu_read_unlock();
469 br_read_unlock(vfsmount_lock);
470 }
471
Al Viro16c2cd72011-02-22 15:50:10 -0500472 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500473 return 0;
474
Al Viro16c2cd72011-02-22 15:50:10 -0500475 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
476 return 0;
477
478 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
479 return 0;
480
481 /* Note: we do not d_invalidate() */
Nick Piggin34286d62011-01-07 17:49:57 +1100482 status = d_revalidate(dentry, nd);
Jeff Layton39159de2009-12-07 12:01:50 -0500483 if (status > 0)
484 return 0;
485
Al Viro16c2cd72011-02-22 15:50:10 -0500486 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500487 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500488
Al Viro9f1fafe2011-03-25 11:00:12 -0400489 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500490 return status;
491}
492
Al Viro2a737872009-04-07 11:49:53 -0400493static __always_inline void set_root(struct nameidata *nd)
494{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200495 if (!nd->root.mnt)
496 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400497}
498
Al Viro6de88d72009-08-09 01:41:57 +0400499static int link_path_walk(const char *, struct nameidata *);
500
Nick Piggin31e6b012011-01-07 17:49:52 +1100501static __always_inline void set_root_rcu(struct nameidata *nd)
502{
503 if (!nd->root.mnt) {
504 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100505 unsigned seq;
506
507 do {
508 seq = read_seqcount_begin(&fs->seq);
509 nd->root = fs->root;
Tim Chenc1530012011-04-15 11:39:29 -0700510 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
Nick Pigginc28cc362011-01-07 17:49:53 +1100511 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100512 }
513}
514
Arjan van de Venf1662352006-01-14 13:21:31 -0800515static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Nick Piggin31e6b012011-01-07 17:49:52 +1100517 int ret;
518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (IS_ERR(link))
520 goto fail;
521
522 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400523 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800524 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400525 nd->path = nd->root;
526 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500527 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100529 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100530
Nick Piggin31e6b012011-01-07 17:49:52 +1100531 ret = link_path_walk(link, nd);
532 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800534 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 return PTR_ERR(link);
536}
537
Jan Blunck1d957f92008-02-14 19:34:35 -0800538static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700539{
540 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800541 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700542 mntput(path->mnt);
543}
544
Nick Piggin7b9337a2011-01-14 08:42:43 +0000545static inline void path_to_nameidata(const struct path *path,
546 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700547{
Nick Piggin31e6b012011-01-07 17:49:52 +1100548 if (!(nd->flags & LOOKUP_RCU)) {
549 dput(nd->path.dentry);
550 if (nd->path.mnt != path->mnt)
551 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800552 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100553 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800554 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700555}
556
Al Viro574197e2011-03-14 22:20:34 -0400557static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
558{
559 struct inode *inode = link->dentry->d_inode;
560 if (!IS_ERR(cookie) && inode->i_op->put_link)
561 inode->i_op->put_link(link->dentry, nd, cookie);
562 path_put(link);
563}
564
Al Virodef4af32009-12-26 08:37:05 -0500565static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400566follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800567{
568 int error;
Nick Piggin7b9337a2011-01-14 08:42:43 +0000569 struct dentry *dentry = link->dentry;
Ian Kent051d3812006-03-27 01:14:53 -0800570
Al Viro844a3912011-02-15 00:38:26 -0500571 BUG_ON(nd->flags & LOOKUP_RCU);
572
Al Viro0e794582011-03-16 02:45:02 -0400573 if (link->mnt == nd->path.mnt)
574 mntget(link->mnt);
575
Al Viro574197e2011-03-14 22:20:34 -0400576 if (unlikely(current->total_link_count >= 40)) {
577 *p = ERR_PTR(-ELOOP); /* no ->put_link(), please */
Al Viro574197e2011-03-14 22:20:34 -0400578 path_put(&nd->path);
579 return -ELOOP;
580 }
581 cond_resched();
582 current->total_link_count++;
583
Nick Piggin7b9337a2011-01-14 08:42:43 +0000584 touch_atime(link->mnt, dentry);
Ian Kent051d3812006-03-27 01:14:53 -0800585 nd_set_link(nd, NULL);
586
Al Viro36f3b4f2011-02-22 21:24:38 -0500587 error = security_inode_follow_link(link->dentry, nd);
588 if (error) {
589 *p = ERR_PTR(error); /* no ->put_link(), please */
590 path_put(&nd->path);
591 return error;
592 }
593
Al Viro86acdca12009-12-22 23:45:11 -0500594 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500595 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
596 error = PTR_ERR(*p);
597 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800598 char *s = nd_get_link(nd);
599 error = 0;
600 if (s)
601 error = __vfs_follow_link(nd, s);
Al Virobcda7652011-03-13 16:42:14 -0400602 else if (nd->last_type == LAST_BIND) {
Al Viro16c2cd72011-02-22 15:50:10 -0500603 nd->flags |= LOOKUP_JUMPED;
Al Virob21041d2011-03-14 20:01:51 -0400604 nd->inode = nd->path.dentry->d_inode;
605 if (nd->inode->i_op->follow_link) {
Al Virobcda7652011-03-13 16:42:14 -0400606 /* stepped on a _really_ weird one */
607 path_put(&nd->path);
608 error = -ELOOP;
609 }
610 }
Ian Kent051d3812006-03-27 01:14:53 -0800611 }
Ian Kent051d3812006-03-27 01:14:53 -0800612 return error;
613}
614
Nick Piggin31e6b012011-01-07 17:49:52 +1100615static int follow_up_rcu(struct path *path)
616{
617 struct vfsmount *parent;
618 struct dentry *mountpoint;
619
620 parent = path->mnt->mnt_parent;
621 if (parent == path->mnt)
622 return 0;
623 mountpoint = path->mnt->mnt_mountpoint;
624 path->dentry = mountpoint;
625 path->mnt = parent;
626 return 1;
627}
628
Al Virobab77eb2009-04-18 03:26:48 -0400629int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
631 struct vfsmount *parent;
632 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000633
634 br_read_lock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400635 parent = path->mnt->mnt_parent;
636 if (parent == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000637 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return 0;
639 }
640 mntget(parent);
Al Virobab77eb2009-04-18 03:26:48 -0400641 mountpoint = dget(path->mnt->mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000642 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400643 dput(path->dentry);
644 path->dentry = mountpoint;
645 mntput(path->mnt);
646 path->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return 1;
648}
649
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100650/*
David Howells9875cf82011-01-14 18:45:21 +0000651 * Perform an automount
652 * - return -EISDIR to tell follow_managed() to stop and return the path we
653 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 */
David Howells9875cf82011-01-14 18:45:21 +0000655static int follow_automount(struct path *path, unsigned flags,
656 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100657{
David Howells9875cf82011-01-14 18:45:21 +0000658 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000659 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100660
David Howells9875cf82011-01-14 18:45:21 +0000661 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
662 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700663
David Howells6f45b652011-01-14 18:45:31 +0000664 /* We don't want to mount if someone supplied AT_NO_AUTOMOUNT
665 * and this is the terminal part of the path.
666 */
Al Viro49084c32011-06-25 21:59:52 -0400667 if ((flags & LOOKUP_NO_AUTOMOUNT) && !(flags & LOOKUP_PARENT))
David Howells6f45b652011-01-14 18:45:31 +0000668 return -EISDIR; /* we actually want to stop here */
669
David Howells9875cf82011-01-14 18:45:21 +0000670 /* We want to mount if someone is trying to open/create a file of any
671 * type under the mountpoint, wants to traverse through the mountpoint
672 * or wants to open the mounted directory.
673 *
674 * We don't want to mount if someone's just doing a stat and they've
675 * set AT_SYMLINK_NOFOLLOW - unless they're stat'ing a directory and
676 * appended a '/' to the name.
677 */
678 if (!(flags & LOOKUP_FOLLOW) &&
Al Viro49084c32011-06-25 21:59:52 -0400679 !(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
David Howells9875cf82011-01-14 18:45:21 +0000680 LOOKUP_OPEN | LOOKUP_CREATE)))
681 return -EISDIR;
682
683 current->total_link_count++;
684 if (current->total_link_count >= 40)
685 return -ELOOP;
686
687 mnt = path->dentry->d_op->d_automount(path);
688 if (IS_ERR(mnt)) {
689 /*
690 * The filesystem is allowed to return -EISDIR here to indicate
691 * it doesn't want to automount. For instance, autofs would do
692 * this so that its userspace daemon can mount on this dentry.
693 *
694 * However, we can only permit this if it's a terminal point in
695 * the path being looked up; if it wasn't then the remainder of
696 * the path is inaccessible and we should say so.
697 */
Al Viro49084c32011-06-25 21:59:52 -0400698 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +0000699 return -EREMOTE;
700 return PTR_ERR(mnt);
701 }
David Howellsea5b7782011-01-14 19:10:03 +0000702
David Howells9875cf82011-01-14 18:45:21 +0000703 if (!mnt) /* mount collision */
704 return 0;
705
Al Viro8aef1882011-06-16 15:10:06 +0100706 if (!*need_mntput) {
707 /* lock_mount() may release path->mnt on error */
708 mntget(path->mnt);
709 *need_mntput = true;
710 }
Al Viro19a167a2011-01-17 01:35:23 -0500711 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000712
David Howellsea5b7782011-01-14 19:10:03 +0000713 switch (err) {
714 case -EBUSY:
715 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500716 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000717 case 0:
Al Viro8aef1882011-06-16 15:10:06 +0100718 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +0000719 path->mnt = mnt;
720 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +0000721 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500722 default:
723 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000724 }
Al Viro19a167a2011-01-17 01:35:23 -0500725
David Howells9875cf82011-01-14 18:45:21 +0000726}
727
728/*
729 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000730 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000731 * - Flagged as mountpoint
732 * - Flagged as automount point
733 *
734 * This may only be called in refwalk mode.
735 *
736 * Serialization is taken care of in namespace.c
737 */
738static int follow_managed(struct path *path, unsigned flags)
739{
Al Viro8aef1882011-06-16 15:10:06 +0100740 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +0000741 unsigned managed;
742 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +0100743 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +0000744
745 /* Given that we're not holding a lock here, we retain the value in a
746 * local variable for each dentry as we look at it so that we don't see
747 * the components of that value change under us */
748 while (managed = ACCESS_ONCE(path->dentry->d_flags),
749 managed &= DCACHE_MANAGED_DENTRY,
750 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000751 /* Allow the filesystem to manage the transit without i_mutex
752 * being held. */
753 if (managed & DCACHE_MANAGE_TRANSIT) {
754 BUG_ON(!path->dentry->d_op);
755 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -0400756 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000757 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100758 break;
David Howellscc53ce52011-01-14 18:45:26 +0000759 }
760
David Howells9875cf82011-01-14 18:45:21 +0000761 /* Transit to a mounted filesystem. */
762 if (managed & DCACHE_MOUNTED) {
763 struct vfsmount *mounted = lookup_mnt(path);
764 if (mounted) {
765 dput(path->dentry);
766 if (need_mntput)
767 mntput(path->mnt);
768 path->mnt = mounted;
769 path->dentry = dget(mounted->mnt_root);
770 need_mntput = true;
771 continue;
772 }
773
774 /* Something is mounted on this dentry in another
775 * namespace and/or whatever was mounted there in this
776 * namespace got unmounted before we managed to get the
777 * vfsmount_lock */
778 }
779
780 /* Handle an automount point */
781 if (managed & DCACHE_NEED_AUTOMOUNT) {
782 ret = follow_automount(path, flags, &need_mntput);
783 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100784 break;
David Howells9875cf82011-01-14 18:45:21 +0000785 continue;
786 }
787
788 /* We didn't change the current path point */
789 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
Al Viro8aef1882011-06-16 15:10:06 +0100791
792 if (need_mntput && path->mnt == mnt)
793 mntput(path->mnt);
794 if (ret == -EISDIR)
795 ret = 0;
796 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797}
798
David Howellscc53ce52011-01-14 18:45:26 +0000799int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800{
801 struct vfsmount *mounted;
802
Al Viro1c755af2009-04-18 14:06:57 -0400803 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400805 dput(path->dentry);
806 mntput(path->mnt);
807 path->mnt = mounted;
808 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return 1;
810 }
811 return 0;
812}
813
Ian Kent62a73752011-03-25 01:51:02 +0800814static inline bool managed_dentry_might_block(struct dentry *dentry)
815{
816 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
817 dentry->d_op->d_manage(dentry, true) < 0);
818}
819
David Howells9875cf82011-01-14 18:45:21 +0000820/*
Al Viro287548e2011-05-27 06:50:06 -0400821 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
822 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +0000823 */
824static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -0400825 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +0000826{
Ian Kent62a73752011-03-25 01:51:02 +0800827 for (;;) {
David Howells9875cf82011-01-14 18:45:21 +0000828 struct vfsmount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +0800829 /*
830 * Don't forget we might have a non-mountpoint managed dentry
831 * that wants to block transit.
832 */
Al Viro287548e2011-05-27 06:50:06 -0400833 if (unlikely(managed_dentry_might_block(path->dentry)))
David Howellsab909112011-01-14 18:46:51 +0000834 return false;
Ian Kent62a73752011-03-25 01:51:02 +0800835
836 if (!d_mountpoint(path->dentry))
837 break;
838
David Howells9875cf82011-01-14 18:45:21 +0000839 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
840 if (!mounted)
841 break;
842 path->mnt = mounted;
843 path->dentry = mounted->mnt_root;
844 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -0700845 /*
846 * Update the inode too. We don't need to re-check the
847 * dentry sequence number here after this d_inode read,
848 * because a mount-point is always pinned.
849 */
850 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +0000851 }
David Howells9875cf82011-01-14 18:45:21 +0000852 return true;
853}
854
Al Virodea39372011-05-27 06:53:39 -0400855static void follow_mount_rcu(struct nameidata *nd)
Al Viro287548e2011-05-27 06:50:06 -0400856{
Al Virodea39372011-05-27 06:53:39 -0400857 while (d_mountpoint(nd->path.dentry)) {
Al Viro287548e2011-05-27 06:50:06 -0400858 struct vfsmount *mounted;
Al Virodea39372011-05-27 06:53:39 -0400859 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
Al Viro287548e2011-05-27 06:50:06 -0400860 if (!mounted)
861 break;
Al Virodea39372011-05-27 06:53:39 -0400862 nd->path.mnt = mounted;
863 nd->path.dentry = mounted->mnt_root;
864 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro287548e2011-05-27 06:50:06 -0400865 }
866}
867
Nick Piggin31e6b012011-01-07 17:49:52 +1100868static int follow_dotdot_rcu(struct nameidata *nd)
869{
Nick Piggin31e6b012011-01-07 17:49:52 +1100870 set_root_rcu(nd);
871
David Howells9875cf82011-01-14 18:45:21 +0000872 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100873 if (nd->path.dentry == nd->root.dentry &&
874 nd->path.mnt == nd->root.mnt) {
875 break;
876 }
877 if (nd->path.dentry != nd->path.mnt->mnt_root) {
878 struct dentry *old = nd->path.dentry;
879 struct dentry *parent = old->d_parent;
880 unsigned seq;
881
882 seq = read_seqcount_begin(&parent->d_seq);
883 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -0500884 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +1100885 nd->path.dentry = parent;
886 nd->seq = seq;
887 break;
888 }
889 if (!follow_up_rcu(&nd->path))
890 break;
891 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +1100892 }
Al Virodea39372011-05-27 06:53:39 -0400893 follow_mount_rcu(nd);
894 nd->inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +1100895 return 0;
Al Viroef7562d2011-03-04 14:35:59 -0500896
897failed:
898 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -0500899 if (!(nd->flags & LOOKUP_ROOT))
900 nd->root.mnt = NULL;
Al Viroef7562d2011-03-04 14:35:59 -0500901 rcu_read_unlock();
902 br_read_unlock(vfsmount_lock);
903 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +1100904}
905
David Howells9875cf82011-01-14 18:45:21 +0000906/*
David Howellscc53ce52011-01-14 18:45:26 +0000907 * Follow down to the covering mount currently visible to userspace. At each
908 * point, the filesystem owning that dentry may be queried as to whether the
909 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +0000910 */
Al Viro7cc90cc2011-03-18 09:04:20 -0400911int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +0000912{
913 unsigned managed;
914 int ret;
915
916 while (managed = ACCESS_ONCE(path->dentry->d_flags),
917 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
918 /* Allow the filesystem to manage the transit without i_mutex
919 * being held.
920 *
921 * We indicate to the filesystem if someone is trying to mount
922 * something here. This gives autofs the chance to deny anyone
923 * other than its daemon the right to mount on its
924 * superstructure.
925 *
926 * The filesystem may sleep at this point.
927 */
928 if (managed & DCACHE_MANAGE_TRANSIT) {
929 BUG_ON(!path->dentry->d_op);
930 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +0000931 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -0400932 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000933 if (ret < 0)
934 return ret == -EISDIR ? 0 : ret;
935 }
936
937 /* Transit to a mounted filesystem. */
938 if (managed & DCACHE_MOUNTED) {
939 struct vfsmount *mounted = lookup_mnt(path);
940 if (!mounted)
941 break;
942 dput(path->dentry);
943 mntput(path->mnt);
944 path->mnt = mounted;
945 path->dentry = dget(mounted->mnt_root);
946 continue;
947 }
948
949 /* Don't handle automount points here */
950 break;
951 }
952 return 0;
953}
954
955/*
David Howells9875cf82011-01-14 18:45:21 +0000956 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
957 */
958static void follow_mount(struct path *path)
959{
960 while (d_mountpoint(path->dentry)) {
961 struct vfsmount *mounted = lookup_mnt(path);
962 if (!mounted)
963 break;
964 dput(path->dentry);
965 mntput(path->mnt);
966 path->mnt = mounted;
967 path->dentry = dget(mounted->mnt_root);
968 }
969}
970
Nick Piggin31e6b012011-01-07 17:49:52 +1100971static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972{
Al Viro2a737872009-04-07 11:49:53 -0400973 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -0700974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -0800976 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Al Viro2a737872009-04-07 11:49:53 -0400978 if (nd->path.dentry == nd->root.dentry &&
979 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 break;
981 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800982 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -0500983 /* rare case of legitimate dget_parent()... */
984 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 dput(old);
986 break;
987 }
Al Viro3088dd72010-01-30 15:47:29 -0500988 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 }
Al Viro79ed0222009-04-18 13:59:41 -0400991 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +1100992 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993}
994
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995/*
Nick Pigginbaa03892010-08-18 04:37:31 +1000996 * Allocate a dentry with name and parent, and perform a parent
997 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
998 * on error. parent->d_inode->i_mutex must be held. d_lookup must
999 * have verified that no child exists while under i_mutex.
1000 */
1001static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1002 struct qstr *name, struct nameidata *nd)
1003{
1004 struct inode *inode = parent->d_inode;
1005 struct dentry *dentry;
1006 struct dentry *old;
1007
1008 /* Don't create child dentry for a dead directory. */
1009 if (unlikely(IS_DEADDIR(inode)))
1010 return ERR_PTR(-ENOENT);
1011
1012 dentry = d_alloc(parent, name);
1013 if (unlikely(!dentry))
1014 return ERR_PTR(-ENOMEM);
1015
1016 old = inode->i_op->lookup(inode, dentry, nd);
1017 if (unlikely(old)) {
1018 dput(dentry);
1019 dentry = old;
1020 }
1021 return dentry;
1022}
1023
1024/*
Josef Bacik44396f42011-05-31 11:58:49 -04001025 * We already have a dentry, but require a lookup to be performed on the parent
1026 * directory to fill in d_inode. Returns the new dentry, or ERR_PTR on error.
1027 * parent->d_inode->i_mutex must be held. d_lookup must have verified that no
1028 * child exists while under i_mutex.
1029 */
1030static struct dentry *d_inode_lookup(struct dentry *parent, struct dentry *dentry,
1031 struct nameidata *nd)
1032{
1033 struct inode *inode = parent->d_inode;
1034 struct dentry *old;
1035
1036 /* Don't create child dentry for a dead directory. */
1037 if (unlikely(IS_DEADDIR(inode)))
1038 return ERR_PTR(-ENOENT);
1039
1040 old = inode->i_op->lookup(inode, dentry, nd);
1041 if (unlikely(old)) {
1042 dput(dentry);
1043 dentry = old;
1044 }
1045 return dentry;
1046}
1047
1048/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 * It's more convoluted than I'd like it to be, but... it's still fairly
1050 * small and for now I'd prefer to have fast path as straight as possible.
1051 * It _is_ time-critical.
1052 */
1053static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +11001054 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
Jan Blunck4ac91372008-02-14 19:34:32 -08001056 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001057 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001058 int need_reval = 1;
1059 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001060 int err;
1061
Al Viro3cac2602009-08-13 18:27:43 +04001062 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001063 * Rename seqlock is not required here because in the off chance
1064 * of a false negative due to a concurrent rename, we're going to
1065 * do the non-racy lookup, below.
1066 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001067 if (nd->flags & LOOKUP_RCU) {
1068 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001069 *inode = nd->inode;
1070 dentry = __d_lookup_rcu(parent, name, &seq, inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001071 if (!dentry)
1072 goto unlazy;
1073
Nick Piggin31e6b012011-01-07 17:49:52 +11001074 /* Memory barrier in read_seqcount_begin of child is enough */
1075 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1076 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001077 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001078
Al Viro24643082011-02-15 01:26:22 -05001079 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro5a18fff2011-03-11 04:44:53 -05001080 status = d_revalidate(dentry, nd);
1081 if (unlikely(status <= 0)) {
1082 if (status != -ECHILD)
1083 need_reval = 0;
1084 goto unlazy;
1085 }
Al Viro24643082011-02-15 01:26:22 -05001086 }
Josef Bacik44396f42011-05-31 11:58:49 -04001087 if (unlikely(d_need_lookup(dentry)))
1088 goto unlazy;
Nick Piggin31e6b012011-01-07 17:49:52 +11001089 path->mnt = mnt;
1090 path->dentry = dentry;
Al Virod6e9bd22011-05-27 07:03:15 -04001091 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1092 goto unlazy;
1093 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1094 goto unlazy;
1095 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001096unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001097 if (unlazy_walk(nd, dentry))
1098 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001099 } else {
1100 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001101 }
Al Viro5a18fff2011-03-11 04:44:53 -05001102
Josef Bacik44396f42011-05-31 11:58:49 -04001103 if (dentry && unlikely(d_need_lookup(dentry))) {
1104 dput(dentry);
1105 dentry = NULL;
1106 }
Al Viro5a18fff2011-03-11 04:44:53 -05001107retry:
1108 if (unlikely(!dentry)) {
1109 struct inode *dir = parent->d_inode;
1110 BUG_ON(nd->inode != dir);
1111
1112 mutex_lock(&dir->i_mutex);
1113 dentry = d_lookup(parent, name);
1114 if (likely(!dentry)) {
1115 dentry = d_alloc_and_lookup(parent, name, nd);
1116 if (IS_ERR(dentry)) {
1117 mutex_unlock(&dir->i_mutex);
1118 return PTR_ERR(dentry);
1119 }
1120 /* known good */
1121 need_reval = 0;
1122 status = 1;
Josef Bacik44396f42011-05-31 11:58:49 -04001123 } else if (unlikely(d_need_lookup(dentry))) {
1124 dentry = d_inode_lookup(parent, dentry, nd);
1125 if (IS_ERR(dentry)) {
1126 mutex_unlock(&dir->i_mutex);
1127 return PTR_ERR(dentry);
1128 }
1129 /* known good */
1130 need_reval = 0;
1131 status = 1;
Al Viro5a18fff2011-03-11 04:44:53 -05001132 }
1133 mutex_unlock(&dir->i_mutex);
Al Viro24643082011-02-15 01:26:22 -05001134 }
Al Viro5a18fff2011-03-11 04:44:53 -05001135 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1136 status = d_revalidate(dentry, nd);
1137 if (unlikely(status <= 0)) {
1138 if (status < 0) {
1139 dput(dentry);
1140 return status;
1141 }
1142 if (!d_invalidate(dentry)) {
1143 dput(dentry);
1144 dentry = NULL;
1145 need_reval = 1;
1146 goto retry;
1147 }
1148 }
1149
David Howells9875cf82011-01-14 18:45:21 +00001150 path->mnt = mnt;
1151 path->dentry = dentry;
1152 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001153 if (unlikely(err < 0)) {
1154 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001155 return err;
Ian Kent89312212011-01-18 12:06:10 +08001156 }
David Howells9875cf82011-01-14 18:45:21 +00001157 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159}
1160
Al Viro52094c82011-02-21 21:34:47 -05001161static inline int may_lookup(struct nameidata *nd)
1162{
1163 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001164 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001165 if (err != -ECHILD)
1166 return err;
Al Viro19660af2011-03-25 10:32:48 -04001167 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001168 return -ECHILD;
1169 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001170 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001171}
1172
Al Viro9856fa12011-03-04 14:22:06 -05001173static inline int handle_dots(struct nameidata *nd, int type)
1174{
1175 if (type == LAST_DOTDOT) {
1176 if (nd->flags & LOOKUP_RCU) {
1177 if (follow_dotdot_rcu(nd))
1178 return -ECHILD;
1179 } else
1180 follow_dotdot(nd);
1181 }
1182 return 0;
1183}
1184
Al Viro951361f2011-03-04 14:44:37 -05001185static void terminate_walk(struct nameidata *nd)
1186{
1187 if (!(nd->flags & LOOKUP_RCU)) {
1188 path_put(&nd->path);
1189 } else {
1190 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001191 if (!(nd->flags & LOOKUP_ROOT))
1192 nd->root.mnt = NULL;
Al Viro951361f2011-03-04 14:44:37 -05001193 rcu_read_unlock();
1194 br_read_unlock(vfsmount_lock);
1195 }
1196}
1197
Al Viroce57dfc2011-03-13 19:58:58 -04001198static inline int walk_component(struct nameidata *nd, struct path *path,
1199 struct qstr *name, int type, int follow)
1200{
1201 struct inode *inode;
1202 int err;
1203 /*
1204 * "." and ".." are special - ".." especially so because it has
1205 * to be able to know about the current root directory and
1206 * parent relationships.
1207 */
1208 if (unlikely(type != LAST_NORM))
1209 return handle_dots(nd, type);
1210 err = do_lookup(nd, name, path, &inode);
1211 if (unlikely(err)) {
1212 terminate_walk(nd);
1213 return err;
1214 }
1215 if (!inode) {
1216 path_to_nameidata(path, nd);
1217 terminate_walk(nd);
1218 return -ENOENT;
1219 }
1220 if (unlikely(inode->i_op->follow_link) && follow) {
Al Viro19660af2011-03-25 10:32:48 -04001221 if (nd->flags & LOOKUP_RCU) {
1222 if (unlikely(unlazy_walk(nd, path->dentry))) {
1223 terminate_walk(nd);
1224 return -ECHILD;
1225 }
1226 }
Al Viroce57dfc2011-03-13 19:58:58 -04001227 BUG_ON(inode != path->dentry->d_inode);
1228 return 1;
1229 }
1230 path_to_nameidata(path, nd);
1231 nd->inode = inode;
1232 return 0;
1233}
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235/*
Al Virob3563792011-03-14 21:54:55 -04001236 * This limits recursive symlink follows to 8, while
1237 * limiting consecutive symlinks to 40.
1238 *
1239 * Without that kind of total limit, nasty chains of consecutive
1240 * symlinks can cause almost arbitrarily long lookups.
1241 */
1242static inline int nested_symlink(struct path *path, struct nameidata *nd)
1243{
1244 int res;
1245
Al Virob3563792011-03-14 21:54:55 -04001246 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1247 path_put_conditional(path, nd);
1248 path_put(&nd->path);
1249 return -ELOOP;
1250 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001251 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001252
1253 nd->depth++;
1254 current->link_count++;
1255
1256 do {
1257 struct path link = *path;
1258 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001259
1260 res = follow_link(&link, nd, &cookie);
Al Virob3563792011-03-14 21:54:55 -04001261 if (!res)
1262 res = walk_component(nd, path, &nd->last,
1263 nd->last_type, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001264 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001265 } while (res > 0);
1266
1267 current->link_count--;
1268 nd->depth--;
1269 return res;
1270}
1271
1272/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001274 * This is the basic name resolution function, turning a pathname into
1275 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001277 * Returns 0 and nd will have valid dentry and mnt on success.
1278 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 */
Al Viro6de88d72009-08-09 01:41:57 +04001280static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
1282 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284
1285 while (*name=='/')
1286 name++;
1287 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001288 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 /* At this point we know we have a real path component. */
1291 for(;;) {
1292 unsigned long hash;
1293 struct qstr this;
1294 unsigned int c;
Al Virofe479a52011-02-22 15:10:03 -05001295 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Al Viro52094c82011-02-21 21:34:47 -05001297 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 if (err)
1299 break;
1300
1301 this.name = name;
1302 c = *(const unsigned char *)name;
1303
1304 hash = init_name_hash();
1305 do {
1306 name++;
1307 hash = partial_name_hash(c, hash);
1308 c = *(const unsigned char *)name;
1309 } while (c && (c != '/'));
1310 this.len = name - (const char *) this.name;
1311 this.hash = end_name_hash(hash);
1312
Al Virofe479a52011-02-22 15:10:03 -05001313 type = LAST_NORM;
1314 if (this.name[0] == '.') switch (this.len) {
1315 case 2:
Al Viro16c2cd72011-02-22 15:50:10 -05001316 if (this.name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001317 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001318 nd->flags |= LOOKUP_JUMPED;
1319 }
Al Virofe479a52011-02-22 15:10:03 -05001320 break;
1321 case 1:
1322 type = LAST_DOT;
1323 }
Al Viro5a202bc2011-03-08 14:17:44 -05001324 if (likely(type == LAST_NORM)) {
1325 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001326 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001327 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1328 err = parent->d_op->d_hash(parent, nd->inode,
1329 &this);
1330 if (err < 0)
1331 break;
1332 }
1333 }
Al Virofe479a52011-02-22 15:10:03 -05001334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 /* remove trailing slashes? */
1336 if (!c)
1337 goto last_component;
1338 while (*++name == '/');
1339 if (!*name)
Al Virob3563792011-03-14 21:54:55 -04001340 goto last_component;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Al Viroce57dfc2011-03-13 19:58:58 -04001342 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1343 if (err < 0)
1344 return err;
Al Virofe479a52011-02-22 15:10:03 -05001345
Al Viroce57dfc2011-03-13 19:58:58 -04001346 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001347 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001349 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001352 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 break;
1354 continue;
1355 /* here ends the main loop */
1356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357last_component:
Al Virob3563792011-03-14 21:54:55 -04001358 nd->last = this;
1359 nd->last_type = type;
Al Viro086e1832011-02-22 20:56:27 -05001360 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 }
Al Viro951361f2011-03-04 14:44:37 -05001362 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 return err;
1364}
1365
Al Viro70e9b352011-03-05 21:12:22 -05001366static int path_init(int dfd, const char *name, unsigned int flags,
1367 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001369 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001370 int fput_needed;
1371 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372
1373 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001374 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001376 if (flags & LOOKUP_ROOT) {
1377 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001378 if (*name) {
1379 if (!inode->i_op->lookup)
1380 return -ENOTDIR;
1381 retval = inode_permission(inode, MAY_EXEC);
1382 if (retval)
1383 return retval;
1384 }
Al Viro5b6ca022011-03-09 23:04:47 -05001385 nd->path = nd->root;
1386 nd->inode = inode;
1387 if (flags & LOOKUP_RCU) {
1388 br_read_lock(vfsmount_lock);
1389 rcu_read_lock();
1390 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1391 } else {
1392 path_get(&nd->path);
1393 }
1394 return 0;
1395 }
1396
Al Viro2a737872009-04-07 11:49:53 -04001397 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001400 if (flags & LOOKUP_RCU) {
1401 br_read_lock(vfsmount_lock);
1402 rcu_read_lock();
1403 set_root_rcu(nd);
1404 } else {
1405 set_root(nd);
1406 path_get(&nd->root);
1407 }
Al Viro2a737872009-04-07 11:49:53 -04001408 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001409 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001410 if (flags & LOOKUP_RCU) {
1411 struct fs_struct *fs = current->fs;
1412 unsigned seq;
1413
1414 br_read_lock(vfsmount_lock);
1415 rcu_read_lock();
1416
1417 do {
1418 seq = read_seqcount_begin(&fs->seq);
1419 nd->path = fs->pwd;
1420 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1421 } while (read_seqcount_retry(&fs->seq, seq));
1422 } else {
1423 get_fs_pwd(current->fs, &nd->path);
1424 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001425 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001426 struct dentry *dentry;
1427
Al Viro1abf0c72011-03-13 03:51:11 -04001428 file = fget_raw_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001429 retval = -EBADF;
1430 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001431 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001432
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001433 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001434
Al Virof52e0c12011-03-14 18:56:51 -04001435 if (*name) {
1436 retval = -ENOTDIR;
1437 if (!S_ISDIR(dentry->d_inode->i_mode))
1438 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001439
Al Viro4ad5abb2011-06-20 19:57:03 -04001440 retval = inode_permission(dentry->d_inode, MAY_EXEC);
Al Virof52e0c12011-03-14 18:56:51 -04001441 if (retval)
1442 goto fput_fail;
1443 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001444
Jan Blunck5dd784d02008-02-14 19:34:38 -08001445 nd->path = file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001446 if (flags & LOOKUP_RCU) {
1447 if (fput_needed)
Al Viro70e9b352011-03-05 21:12:22 -05001448 *fp = file;
Al Viroe41f7d42011-02-22 14:02:58 -05001449 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1450 br_read_lock(vfsmount_lock);
1451 rcu_read_lock();
1452 } else {
1453 path_get(&file->f_path);
1454 fput_light(file, fput_needed);
1455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 }
Al Viroe41f7d42011-02-22 14:02:58 -05001457
Nick Piggin31e6b012011-01-07 17:49:52 +11001458 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001459 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001460
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001461fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001462 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001463out_fail:
1464 return retval;
1465}
1466
Al Virobd92d7f2011-03-14 19:54:59 -04001467static inline int lookup_last(struct nameidata *nd, struct path *path)
1468{
1469 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1470 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1471
1472 nd->flags &= ~LOOKUP_PARENT;
1473 return walk_component(nd, path, &nd->last, nd->last_type,
1474 nd->flags & LOOKUP_FOLLOW);
1475}
1476
Al Viro9b4a9b12009-04-07 11:44:16 -04001477/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001478static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001479 unsigned int flags, struct nameidata *nd)
1480{
Al Viro70e9b352011-03-05 21:12:22 -05001481 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001482 struct path path;
1483 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001484
1485 /*
1486 * Path walking is largely split up into 2 different synchronisation
1487 * schemes, rcu-walk and ref-walk (explained in
1488 * Documentation/filesystems/path-lookup.txt). These share much of the
1489 * path walk code, but some things particularly setup, cleanup, and
1490 * following mounts are sufficiently divergent that functions are
1491 * duplicated. Typically there is a function foo(), and its RCU
1492 * analogue, foo_rcu().
1493 *
1494 * -ECHILD is the error number of choice (just to avoid clashes) that
1495 * is returned if some aspect of an rcu-walk fails. Such an error must
1496 * be handled by restarting a traditional ref-walk (which will always
1497 * be able to complete).
1498 */
Al Virobd92d7f2011-03-14 19:54:59 -04001499 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001500
Al Virobd92d7f2011-03-14 19:54:59 -04001501 if (unlikely(err))
1502 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001503
1504 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001505 err = link_path_walk(name, nd);
1506
1507 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001508 err = lookup_last(nd, &path);
1509 while (err > 0) {
1510 void *cookie;
1511 struct path link = path;
Al Virobd92d7f2011-03-14 19:54:59 -04001512 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001513 err = follow_link(&link, nd, &cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001514 if (!err)
1515 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001516 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001517 }
1518 }
Al Viroee0827c2011-02-21 23:38:09 -05001519
Al Viro9f1fafe2011-03-25 11:00:12 -04001520 if (!err)
1521 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001522
1523 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1524 if (!nd->inode->i_op->lookup) {
1525 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001526 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001527 }
1528 }
Al Viro16c2cd72011-02-22 15:50:10 -05001529
Al Viro70e9b352011-03-05 21:12:22 -05001530 if (base)
1531 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001532
Al Viro5b6ca022011-03-09 23:04:47 -05001533 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001534 path_put(&nd->root);
1535 nd->root.mnt = NULL;
1536 }
Al Virobd92d7f2011-03-14 19:54:59 -04001537 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001538}
Nick Piggin31e6b012011-01-07 17:49:52 +11001539
Al Viroee0827c2011-02-21 23:38:09 -05001540static int do_path_lookup(int dfd, const char *name,
1541 unsigned int flags, struct nameidata *nd)
1542{
1543 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1544 if (unlikely(retval == -ECHILD))
1545 retval = path_lookupat(dfd, name, flags, nd);
1546 if (unlikely(retval == -ESTALE))
1547 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001548
1549 if (likely(!retval)) {
1550 if (unlikely(!audit_dummy_context())) {
1551 if (nd->path.dentry && nd->inode)
1552 audit_inode(name, nd->path.dentry);
1553 }
1554 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001555 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556}
1557
Al Viroc9c6cac2011-02-16 15:15:47 -05001558int kern_path_parent(const char *name, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001559{
Al Viroc9c6cac2011-02-16 15:15:47 -05001560 return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001561}
1562
Al Virod1811462008-08-02 00:49:18 -04001563int kern_path(const char *name, unsigned int flags, struct path *path)
1564{
1565 struct nameidata nd;
1566 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1567 if (!res)
1568 *path = nd.path;
1569 return res;
1570}
1571
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001572/**
1573 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1574 * @dentry: pointer to dentry of the base directory
1575 * @mnt: pointer to vfs mount of the base directory
1576 * @name: pointer to file name
1577 * @flags: lookup flags
1578 * @nd: pointer to nameidata
1579 */
1580int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1581 const char *name, unsigned int flags,
1582 struct nameidata *nd)
1583{
Al Viro5b6ca022011-03-09 23:04:47 -05001584 nd->root.dentry = dentry;
1585 nd->root.mnt = mnt;
1586 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
1587 return do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, nd);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001588}
1589
Christoph Hellwigeead1912007-10-16 23:25:38 -07001590static struct dentry *__lookup_hash(struct qstr *name,
1591 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592{
Christoph Hellwig81fca442010-10-06 10:47:47 +02001593 struct inode *inode = base->d_inode;
James Morris057f6c02007-04-26 00:12:05 -07001594 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 int err;
1596
Al Viro4ad5abb2011-06-20 19:57:03 -04001597 err = inode_permission(inode, MAY_EXEC);
Christoph Hellwig81fca442010-10-06 10:47:47 +02001598 if (err)
1599 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
1601 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001602 * Don't bother with __d_lookup: callers are for creat as
1603 * well as unlink, so a lot of the time it would cost
1604 * a double lookup.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001605 */
Nick Pigginb04f7842010-08-18 04:37:34 +10001606 dentry = d_lookup(base, name);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001607
Josef Bacik44396f42011-05-31 11:58:49 -04001608 if (dentry && d_need_lookup(dentry)) {
1609 /*
1610 * __lookup_hash is called with the parent dir's i_mutex already
1611 * held, so we are good to go here.
1612 */
1613 dentry = d_inode_lookup(base, dentry, nd);
1614 if (IS_ERR(dentry))
1615 return dentry;
1616 }
1617
Al Virod2d9e9f2011-06-20 10:55:26 -04001618 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE)) {
1619 int status = d_revalidate(dentry, nd);
1620 if (unlikely(status <= 0)) {
1621 /*
1622 * The dentry failed validation.
1623 * If d_revalidate returned 0 attempt to invalidate
1624 * the dentry otherwise d_revalidate is asking us
1625 * to return a fail status.
1626 */
1627 if (status < 0) {
1628 dput(dentry);
1629 return ERR_PTR(status);
1630 } else if (!d_invalidate(dentry)) {
1631 dput(dentry);
1632 dentry = NULL;
1633 }
1634 }
1635 }
Al Viro6e6b1bd2009-08-13 23:38:37 +04001636
Nick Pigginbaa03892010-08-18 04:37:31 +10001637 if (!dentry)
1638 dentry = d_alloc_and_lookup(base, name, nd);
Al Viro5a202bc2011-03-08 14:17:44 -05001639
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 return dentry;
1641}
1642
James Morris057f6c02007-04-26 00:12:05 -07001643/*
1644 * Restricted form of lookup. Doesn't follow links, single-component only,
1645 * needs parent already locked. Doesn't follow mounts.
1646 * SMP-safe.
1647 */
Adrian Bunka244e162006-03-31 02:32:11 -08001648static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
Jan Blunck4ac91372008-02-14 19:34:32 -08001650 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651}
1652
Christoph Hellwigeead1912007-10-16 23:25:38 -07001653/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001654 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001655 * @name: pathname component to lookup
1656 * @base: base directory to lookup from
1657 * @len: maximum length @len should be interpreted to
1658 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001659 * Note that this routine is purely a helper for filesystem usage and should
1660 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001661 * nameidata argument is passed to the filesystem methods and a filesystem
1662 * using this helper needs to be prepared for that.
1663 */
James Morris057f6c02007-04-26 00:12:05 -07001664struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1665{
James Morris057f6c02007-04-26 00:12:05 -07001666 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05001667 unsigned long hash;
1668 unsigned int c;
James Morris057f6c02007-04-26 00:12:05 -07001669
David Woodhouse2f9092e2009-04-20 23:18:37 +01001670 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1671
Al Viro6a96ba52011-03-07 23:49:20 -05001672 this.name = name;
1673 this.len = len;
1674 if (!len)
1675 return ERR_PTR(-EACCES);
1676
1677 hash = init_name_hash();
1678 while (len--) {
1679 c = *(const unsigned char *)name++;
1680 if (c == '/' || c == '\0')
1681 return ERR_PTR(-EACCES);
1682 hash = partial_name_hash(c, hash);
1683 }
1684 this.hash = end_name_hash(hash);
Al Viro5a202bc2011-03-08 14:17:44 -05001685 /*
1686 * See if the low-level filesystem might want
1687 * to use its own hash..
1688 */
1689 if (base->d_flags & DCACHE_OP_HASH) {
1690 int err = base->d_op->d_hash(base, base->d_inode, &this);
1691 if (err < 0)
1692 return ERR_PTR(err);
1693 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07001694
Christoph Hellwig49705b72005-11-08 21:35:06 -08001695 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001696}
1697
Al Viro2d8f3032008-07-22 09:59:21 -04001698int user_path_at(int dfd, const char __user *name, unsigned flags,
1699 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700{
Al Viro2d8f3032008-07-22 09:59:21 -04001701 struct nameidata nd;
Al Virof52e0c12011-03-14 18:56:51 -04001702 char *tmp = getname_flags(name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001705
1706 BUG_ON(flags & LOOKUP_PARENT);
1707
1708 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001710 if (!err)
1711 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 }
1713 return err;
1714}
1715
Al Viro2ad94ae2008-07-21 09:32:51 -04001716static int user_path_parent(int dfd, const char __user *path,
1717 struct nameidata *nd, char **name)
1718{
1719 char *s = getname(path);
1720 int error;
1721
1722 if (IS_ERR(s))
1723 return PTR_ERR(s);
1724
1725 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1726 if (error)
1727 putname(s);
1728 else
1729 *name = s;
1730
1731 return error;
1732}
1733
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734/*
1735 * It's inline, so penalty for filesystems that don't use sticky bit is
1736 * minimal.
1737 */
1738static inline int check_sticky(struct inode *dir, struct inode *inode)
1739{
David Howellsda9592e2008-11-14 10:39:05 +11001740 uid_t fsuid = current_fsuid();
1741
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 if (!(dir->i_mode & S_ISVTX))
1743 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001744 if (current_user_ns() != inode_userns(inode))
1745 goto other_userns;
David Howellsda9592e2008-11-14 10:39:05 +11001746 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001748 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001750
1751other_userns:
1752 return !ns_capable(inode_userns(inode), CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753}
1754
1755/*
1756 * Check whether we can remove a link victim from directory dir, check
1757 * whether the type of victim is right.
1758 * 1. We can't do it if dir is read-only (done in permission())
1759 * 2. We should have write and exec permissions on dir
1760 * 3. We can't remove anything from append-only dir
1761 * 4. We can't do anything with immutable dir (done in permission())
1762 * 5. If the sticky bit on dir is set we should either
1763 * a. be owner of dir, or
1764 * b. be owner of victim, or
1765 * c. have CAP_FOWNER capability
1766 * 6. If the victim is append-only or immutable we can't do antyhing with
1767 * links pointing to it.
1768 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1769 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1770 * 9. We can't remove a root or mountpoint.
1771 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1772 * nfs_async_unlink().
1773 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001774static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
1776 int error;
1777
1778 if (!victim->d_inode)
1779 return -ENOENT;
1780
1781 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001782 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Al Virof419a2e2008-07-22 00:07:17 -04001784 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 if (error)
1786 return error;
1787 if (IS_APPEND(dir))
1788 return -EPERM;
1789 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001790 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 return -EPERM;
1792 if (isdir) {
1793 if (!S_ISDIR(victim->d_inode->i_mode))
1794 return -ENOTDIR;
1795 if (IS_ROOT(victim))
1796 return -EBUSY;
1797 } else if (S_ISDIR(victim->d_inode->i_mode))
1798 return -EISDIR;
1799 if (IS_DEADDIR(dir))
1800 return -ENOENT;
1801 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1802 return -EBUSY;
1803 return 0;
1804}
1805
1806/* Check whether we can create an object with dentry child in directory
1807 * dir.
1808 * 1. We can't do it if child already exists (open has special treatment for
1809 * this case, but since we are inlined it's OK)
1810 * 2. We can't do it if dir is read-only (done in permission())
1811 * 3. We should have write and exec permissions on dir
1812 * 4. We can't do it if dir is immutable (done in permission())
1813 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001814static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
1816 if (child->d_inode)
1817 return -EEXIST;
1818 if (IS_DEADDIR(dir))
1819 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001820 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823/*
1824 * p1 and p2 should be directories on the same fs.
1825 */
1826struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1827{
1828 struct dentry *p;
1829
1830 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001831 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 return NULL;
1833 }
1834
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001835 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001837 p = d_ancestor(p2, p1);
1838 if (p) {
1839 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1840 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1841 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
1843
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001844 p = d_ancestor(p1, p2);
1845 if (p) {
1846 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1847 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1848 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 }
1850
Ingo Molnarf2eace22006-07-03 00:25:05 -07001851 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1852 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 return NULL;
1854}
1855
1856void unlock_rename(struct dentry *p1, struct dentry *p2)
1857{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001858 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001860 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001861 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 }
1863}
1864
1865int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1866 struct nameidata *nd)
1867{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001868 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870 if (error)
1871 return error;
1872
Al Viroacfa4382008-12-04 10:06:33 -05001873 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 return -EACCES; /* shouldn't it be ENOSYS? */
1875 mode &= S_IALLUGO;
1876 mode |= S_IFREG;
1877 error = security_inode_create(dir, dentry, mode);
1878 if (error)
1879 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001881 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001882 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 return error;
1884}
1885
Al Viro73d049a2011-03-11 12:08:24 -05001886static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001888 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 struct inode *inode = dentry->d_inode;
1890 int error;
1891
Al Virobcda7652011-03-13 16:42:14 -04001892 /* O_PATH? */
1893 if (!acc_mode)
1894 return 0;
1895
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 if (!inode)
1897 return -ENOENT;
1898
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001899 switch (inode->i_mode & S_IFMT) {
1900 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001902 case S_IFDIR:
1903 if (acc_mode & MAY_WRITE)
1904 return -EISDIR;
1905 break;
1906 case S_IFBLK:
1907 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001908 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001910 /*FALLTHRU*/
1911 case S_IFIFO:
1912 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001914 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001915 }
Dave Hansenb41572e2007-10-16 23:31:14 -07001916
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001917 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07001918 if (error)
1919 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05001920
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 /*
1922 * An append-only file must be opened in append mode for writing.
1923 */
1924 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05001925 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05001926 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05001928 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
1930
1931 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001932 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05001933 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
1935 /*
1936 * Ensure there are no outstanding leases on the file.
1937 */
Al Virob65a9cf2009-12-16 06:27:40 -05001938 return break_lease(inode, flag);
Al Viro7715b522009-12-16 03:54:00 -05001939}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
Jeff Laytone1181ee2010-12-07 16:19:50 -05001941static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05001942{
Jeff Laytone1181ee2010-12-07 16:19:50 -05001943 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05001944 struct inode *inode = path->dentry->d_inode;
1945 int error = get_write_access(inode);
1946 if (error)
1947 return error;
1948 /*
1949 * Refuse to truncate files with mandatory locks held on them.
1950 */
1951 error = locks_verify_locked(inode);
1952 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09001953 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05001954 if (!error) {
1955 error = do_truncate(path->dentry, 0,
1956 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05001957 filp);
Al Viro7715b522009-12-16 03:54:00 -05001958 }
1959 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04001960 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961}
1962
Dave Hansend57999e2008-02-15 14:37:27 -08001963static inline int open_to_namei_flags(int flag)
1964{
Al Viro8a5e9292011-06-25 19:15:54 -04001965 if ((flag & O_ACCMODE) == 3)
1966 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08001967 return flag;
1968}
1969
Nick Piggin31e6b012011-01-07 17:49:52 +11001970/*
Al Virofe2d35f2011-03-05 22:58:25 -05001971 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11001972 */
Al Virofb1cc552009-12-24 01:58:28 -05001973static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viroc3e380b2011-02-23 13:39:45 -05001974 const struct open_flags *op, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05001975{
Al Viroa1e28032009-12-24 02:12:06 -05001976 struct dentry *dir = nd->path.dentry;
Al Viro6c0d46c2011-03-09 00:59:59 -05001977 struct dentry *dentry;
Al Viroca344a892011-03-09 00:36:45 -05001978 int open_flag = op->open_flag;
Al Viro6c0d46c2011-03-09 00:59:59 -05001979 int will_truncate = open_flag & O_TRUNC;
Al Viroca344a892011-03-09 00:36:45 -05001980 int want_write = 0;
Al Virobcda7652011-03-13 16:42:14 -04001981 int acc_mode = op->acc_mode;
Al Virofb1cc552009-12-24 01:58:28 -05001982 struct file *filp;
Al Viro16c2cd72011-02-22 15:50:10 -05001983 int error;
Al Virofb1cc552009-12-24 01:58:28 -05001984
Al Viroc3e380b2011-02-23 13:39:45 -05001985 nd->flags &= ~LOOKUP_PARENT;
1986 nd->flags |= op->intent;
1987
Al Viro1f36f772009-12-26 10:56:19 -05001988 switch (nd->last_type) {
1989 case LAST_DOTDOT:
Neil Brown176306f2010-05-24 16:57:56 +10001990 case LAST_DOT:
Al Virofe2d35f2011-03-05 22:58:25 -05001991 error = handle_dots(nd, nd->last_type);
1992 if (error)
1993 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05001994 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05001995 case LAST_ROOT:
Al Viro9f1fafe2011-03-25 11:00:12 -04001996 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05001997 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04001998 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05001999 audit_inode(pathname, nd->path.dentry);
Al Viroca344a892011-03-09 00:36:45 -05002000 if (open_flag & O_CREAT) {
Al Virofe2d35f2011-03-05 22:58:25 -05002001 error = -EISDIR;
2002 goto exit;
2003 }
2004 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002005 case LAST_BIND:
Al Viro9f1fafe2011-03-25 11:00:12 -04002006 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002007 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002008 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002009 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002010 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002011 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002012
Al Viroca344a892011-03-09 00:36:45 -05002013 if (!(open_flag & O_CREAT)) {
Al Virobcda7652011-03-13 16:42:14 -04002014 int symlink_ok = 0;
Al Virofe2d35f2011-03-05 22:58:25 -05002015 if (nd->last.name[nd->last.len])
2016 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002017 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2018 symlink_ok = 1;
Al Virofe2d35f2011-03-05 22:58:25 -05002019 /* we _can_ be in RCU mode here */
Al Viroce57dfc2011-03-13 19:58:58 -04002020 error = walk_component(nd, path, &nd->last, LAST_NORM,
2021 !symlink_ok);
2022 if (error < 0)
Al Virofe2d35f2011-03-05 22:58:25 -05002023 return ERR_PTR(error);
Al Viroce57dfc2011-03-13 19:58:58 -04002024 if (error) /* symlink */
Al Virofe2d35f2011-03-05 22:58:25 -05002025 return NULL;
Al Virofe2d35f2011-03-05 22:58:25 -05002026 /* sayonara */
Al Viro9f1fafe2011-03-25 11:00:12 -04002027 error = complete_walk(nd);
2028 if (error)
2029 return ERR_PTR(-ECHILD);
Al Virofe2d35f2011-03-05 22:58:25 -05002030
2031 error = -ENOTDIR;
2032 if (nd->flags & LOOKUP_DIRECTORY) {
Al Viroce57dfc2011-03-13 19:58:58 -04002033 if (!nd->inode->i_op->lookup)
Al Virofe2d35f2011-03-05 22:58:25 -05002034 goto exit;
2035 }
2036 audit_inode(pathname, nd->path.dentry);
2037 goto ok;
2038 }
2039
2040 /* create side of things */
Al Viro9f1fafe2011-03-25 11:00:12 -04002041 error = complete_walk(nd);
2042 if (error)
2043 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002044
2045 audit_inode(pathname, dir);
Al Viro16c2cd72011-02-22 15:50:10 -05002046 error = -EISDIR;
Al Viro1f36f772009-12-26 10:56:19 -05002047 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002048 if (nd->last.name[nd->last.len])
2049 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002050
Al Viroa1e28032009-12-24 02:12:06 -05002051 mutex_lock(&dir->d_inode->i_mutex);
2052
Al Viro6c0d46c2011-03-09 00:59:59 -05002053 dentry = lookup_hash(nd);
2054 error = PTR_ERR(dentry);
2055 if (IS_ERR(dentry)) {
Al Virofb1cc552009-12-24 01:58:28 -05002056 mutex_unlock(&dir->d_inode->i_mutex);
2057 goto exit;
2058 }
2059
Al Viro6c0d46c2011-03-09 00:59:59 -05002060 path->dentry = dentry;
2061 path->mnt = nd->path.mnt;
2062
Al Virofb1cc552009-12-24 01:58:28 -05002063 /* Negative dentry, just create the file */
Al Viro6c0d46c2011-03-09 00:59:59 -05002064 if (!dentry->d_inode) {
2065 int mode = op->mode;
2066 if (!IS_POSIXACL(dir->d_inode))
2067 mode &= ~current_umask();
Al Virofb1cc552009-12-24 01:58:28 -05002068 /*
2069 * This write is needed to ensure that a
Al Viro6c0d46c2011-03-09 00:59:59 -05002070 * rw->ro transition does not occur between
Al Virofb1cc552009-12-24 01:58:28 -05002071 * the time when the file is created and when
2072 * a permanent write count is taken through
2073 * the 'struct file' in nameidata_to_filp().
2074 */
2075 error = mnt_want_write(nd->path.mnt);
2076 if (error)
2077 goto exit_mutex_unlock;
Al Viroca344a892011-03-09 00:36:45 -05002078 want_write = 1;
Al Viro9b44f1b2011-03-09 00:17:27 -05002079 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002080 open_flag &= ~O_TRUNC;
Al Viro6c0d46c2011-03-09 00:59:59 -05002081 will_truncate = 0;
Al Virobcda7652011-03-13 16:42:14 -04002082 acc_mode = MAY_OPEN;
Al Viro6c0d46c2011-03-09 00:59:59 -05002083 error = security_path_mknod(&nd->path, dentry, mode, 0);
2084 if (error)
2085 goto exit_mutex_unlock;
2086 error = vfs_create(dir->d_inode, dentry, mode, nd);
2087 if (error)
2088 goto exit_mutex_unlock;
2089 mutex_unlock(&dir->d_inode->i_mutex);
2090 dput(nd->path.dentry);
2091 nd->path.dentry = dentry;
Al Viroca344a892011-03-09 00:36:45 -05002092 goto common;
Al Virofb1cc552009-12-24 01:58:28 -05002093 }
2094
2095 /*
2096 * It already exists.
2097 */
2098 mutex_unlock(&dir->d_inode->i_mutex);
2099 audit_inode(pathname, path->dentry);
2100
2101 error = -EEXIST;
Al Viroca344a892011-03-09 00:36:45 -05002102 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002103 goto exit_dput;
2104
David Howells9875cf82011-01-14 18:45:21 +00002105 error = follow_managed(path, nd->flags);
2106 if (error < 0)
2107 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002108
2109 error = -ENOENT;
2110 if (!path->dentry->d_inode)
2111 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002112
2113 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002114 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002115
2116 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002117 nd->inode = path->dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05002118 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002119 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002120 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002121ok:
Al Viro6c0d46c2011-03-09 00:59:59 -05002122 if (!S_ISREG(nd->inode->i_mode))
2123 will_truncate = 0;
2124
Al Viro0f9d1a12011-03-09 00:13:14 -05002125 if (will_truncate) {
2126 error = mnt_want_write(nd->path.mnt);
2127 if (error)
2128 goto exit;
Al Viroca344a892011-03-09 00:36:45 -05002129 want_write = 1;
Al Viro0f9d1a12011-03-09 00:13:14 -05002130 }
Al Viroca344a892011-03-09 00:36:45 -05002131common:
Al Virobcda7652011-03-13 16:42:14 -04002132 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002133 if (error)
Al Viro0f9d1a12011-03-09 00:13:14 -05002134 goto exit;
Al Viro0f9d1a12011-03-09 00:13:14 -05002135 filp = nameidata_to_filp(nd);
2136 if (!IS_ERR(filp)) {
2137 error = ima_file_check(filp, op->acc_mode);
2138 if (error) {
2139 fput(filp);
2140 filp = ERR_PTR(error);
2141 }
2142 }
2143 if (!IS_ERR(filp)) {
2144 if (will_truncate) {
2145 error = handle_truncate(filp);
2146 if (error) {
2147 fput(filp);
2148 filp = ERR_PTR(error);
2149 }
2150 }
2151 }
Al Viroca344a892011-03-09 00:36:45 -05002152out:
2153 if (want_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002154 mnt_drop_write(nd->path.mnt);
2155 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002156 return filp;
2157
2158exit_mutex_unlock:
2159 mutex_unlock(&dir->d_inode->i_mutex);
2160exit_dput:
2161 path_put_conditional(path, nd);
2162exit:
Al Viroca344a892011-03-09 00:36:45 -05002163 filp = ERR_PTR(error);
2164 goto out;
Al Virofb1cc552009-12-24 01:58:28 -05002165}
2166
Al Viro13aab422011-02-23 17:54:08 -05002167static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002168 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169{
Al Virofe2d35f2011-03-05 22:58:25 -05002170 struct file *base = NULL;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002171 struct file *filp;
Al Viro9850c052010-01-13 15:01:15 -05002172 struct path path;
Al Viro13aab422011-02-23 17:54:08 -05002173 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002174
2175 filp = get_empty_filp();
2176 if (!filp)
2177 return ERR_PTR(-ENFILE);
2178
Al Viro47c805d2011-02-23 17:44:09 -05002179 filp->f_flags = op->open_flag;
Al Viro73d049a2011-03-11 12:08:24 -05002180 nd->intent.open.file = filp;
2181 nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2182 nd->intent.open.create_mode = op->mode;
Nick Piggin31e6b012011-01-07 17:49:52 +11002183
Al Viro73d049a2011-03-11 12:08:24 -05002184 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002185 if (unlikely(error))
Al Viro13aab422011-02-23 17:54:08 -05002186 goto out_filp;
Nick Piggin31e6b012011-01-07 17:49:52 +11002187
Al Virofe2d35f2011-03-05 22:58:25 -05002188 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002189 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002190 if (unlikely(error))
2191 goto out_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Al Viro73d049a2011-03-11 12:08:24 -05002193 filp = do_last(nd, &path, op, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002194 while (unlikely(!filp)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002195 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05002196 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04002197 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05002198 path_put_conditional(&path, nd);
2199 path_put(&nd->path);
Al Viro40b39132011-03-09 16:22:18 -05002200 filp = ERR_PTR(-ELOOP);
2201 break;
2202 }
Al Viro73d049a2011-03-11 12:08:24 -05002203 nd->flags |= LOOKUP_PARENT;
2204 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04002205 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002206 if (unlikely(error))
Al Virof1afe9e2011-02-22 22:27:28 -05002207 filp = ERR_PTR(error);
Al Viroc3e380b2011-02-23 13:39:45 -05002208 else
Al Viro73d049a2011-03-11 12:08:24 -05002209 filp = do_last(nd, &path, op, pathname);
Al Viro574197e2011-03-14 22:20:34 -04002210 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002211 }
Al Viro10fa8e62009-12-26 07:09:49 -05002212out:
Al Viro73d049a2011-03-11 12:08:24 -05002213 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2214 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002215 if (base)
2216 fput(base);
Al Viro73d049a2011-03-11 12:08:24 -05002217 release_open_intent(nd);
Al Viro10fa8e62009-12-26 07:09:49 -05002218 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Nick Piggin31e6b012011-01-07 17:49:52 +11002220out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002221 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002222 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223}
2224
Al Viro13aab422011-02-23 17:54:08 -05002225struct file *do_filp_open(int dfd, const char *pathname,
2226 const struct open_flags *op, int flags)
2227{
Al Viro73d049a2011-03-11 12:08:24 -05002228 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002229 struct file *filp;
2230
Al Viro73d049a2011-03-11 12:08:24 -05002231 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002232 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002233 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002234 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002235 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002236 return filp;
2237}
2238
Al Viro73d049a2011-03-11 12:08:24 -05002239struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2240 const char *name, const struct open_flags *op, int flags)
2241{
2242 struct nameidata nd;
2243 struct file *file;
2244
2245 nd.root.mnt = mnt;
2246 nd.root.dentry = dentry;
2247
2248 flags |= LOOKUP_ROOT;
2249
Al Virobcda7652011-03-13 16:42:14 -04002250 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002251 return ERR_PTR(-ELOOP);
2252
2253 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2254 if (unlikely(file == ERR_PTR(-ECHILD)))
2255 file = path_openat(-1, name, &nd, op, flags);
2256 if (unlikely(file == ERR_PTR(-ESTALE)))
2257 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2258 return file;
2259}
2260
Al Viroed75e952011-06-27 16:53:43 -04002261struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path, int is_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002263 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viroed75e952011-06-27 16:53:43 -04002264 struct nameidata nd;
2265 int error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd);
2266 if (error)
2267 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002269 /*
2270 * Yucky last component or no last component at all?
2271 * (foo/., foo/.., /////)
2272 */
Al Viroed75e952011-06-27 16:53:43 -04002273 if (nd.last_type != LAST_NORM)
2274 goto out;
2275 nd.flags &= ~LOOKUP_PARENT;
2276 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
2277 nd.intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002278
2279 /*
2280 * Do the final lookup.
2281 */
Al Viroed75e952011-06-27 16:53:43 -04002282 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2283 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 if (IS_ERR(dentry))
2285 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002286
Al Viroe9baf6e2008-05-15 04:49:12 -04002287 if (dentry->d_inode)
2288 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002289 /*
2290 * Special case - lookup gave negative, but... we had foo/bar/
2291 * From the vfs_mknod() POV we just have a negative dentry -
2292 * all is fine. Let's be bastards - you had / on the end, you've
2293 * been asking for (non-existent) directory. -ENOENT for you.
2294 */
Al Viroed75e952011-06-27 16:53:43 -04002295 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
Al Viroe9baf6e2008-05-15 04:49:12 -04002296 dput(dentry);
2297 dentry = ERR_PTR(-ENOENT);
Al Viroed75e952011-06-27 16:53:43 -04002298 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04002299 }
Al Viroed75e952011-06-27 16:53:43 -04002300 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002302eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002304 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305fail:
Al Viroed75e952011-06-27 16:53:43 -04002306 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2307out:
2308 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 return dentry;
2310}
Al Virodae6ad82011-06-26 11:50:15 -04002311EXPORT_SYMBOL(kern_path_create);
2312
2313struct dentry *user_path_create(int dfd, const char __user *pathname, struct path *path, int is_dir)
2314{
2315 char *tmp = getname(pathname);
2316 struct dentry *res;
2317 if (IS_ERR(tmp))
2318 return ERR_CAST(tmp);
2319 res = kern_path_create(dfd, tmp, path, is_dir);
2320 putname(tmp);
2321 return res;
2322}
2323EXPORT_SYMBOL(user_path_create);
2324
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2326{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002327 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
2329 if (error)
2330 return error;
2331
Serge E. Hallyne795b712011-03-23 16:43:25 -07002332 if ((S_ISCHR(mode) || S_ISBLK(mode)) &&
2333 !ns_capable(inode_userns(dir), CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 return -EPERM;
2335
Al Viroacfa4382008-12-04 10:06:33 -05002336 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 return -EPERM;
2338
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002339 error = devcgroup_inode_mknod(mode, dev);
2340 if (error)
2341 return error;
2342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 error = security_inode_mknod(dir, dentry, mode, dev);
2344 if (error)
2345 return error;
2346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002348 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002349 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 return error;
2351}
2352
Dave Hansen463c3192008-02-15 14:37:57 -08002353static int may_mknod(mode_t mode)
2354{
2355 switch (mode & S_IFMT) {
2356 case S_IFREG:
2357 case S_IFCHR:
2358 case S_IFBLK:
2359 case S_IFIFO:
2360 case S_IFSOCK:
2361 case 0: /* zero mode translates to S_IFREG */
2362 return 0;
2363 case S_IFDIR:
2364 return -EPERM;
2365 default:
2366 return -EINVAL;
2367 }
2368}
2369
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002370SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2371 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372{
Al Viro2ad94ae2008-07-21 09:32:51 -04002373 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002374 struct path path;
2375 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377 if (S_ISDIR(mode))
2378 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Al Virodae6ad82011-06-26 11:50:15 -04002380 dentry = user_path_create(dfd, filename, &path, 0);
2381 if (IS_ERR(dentry))
2382 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04002383
Al Virodae6ad82011-06-26 11:50:15 -04002384 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002385 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002386 error = may_mknod(mode);
2387 if (error)
2388 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002389 error = mnt_want_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002390 if (error)
2391 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002392 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002393 if (error)
2394 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002395 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 case 0: case S_IFREG:
Al Virodae6ad82011-06-26 11:50:15 -04002397 error = vfs_create(path.dentry->d_inode,dentry,mode,NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 break;
2399 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04002400 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 new_decode_dev(dev));
2402 break;
2403 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04002404 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002407out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002408 mnt_drop_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002409out_dput:
2410 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002411 mutex_unlock(&path.dentry->d_inode->i_mutex);
2412 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
2414 return error;
2415}
2416
Heiko Carstens3480b252009-01-14 14:14:16 +01002417SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002418{
2419 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2420}
2421
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2423{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002424 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
2426 if (error)
2427 return error;
2428
Al Viroacfa4382008-12-04 10:06:33 -05002429 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430 return -EPERM;
2431
2432 mode &= (S_IRWXUGO|S_ISVTX);
2433 error = security_inode_mkdir(dir, dentry, mode);
2434 if (error)
2435 return error;
2436
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002438 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002439 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 return error;
2441}
2442
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002443SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444{
Dave Hansen6902d922006-09-30 23:29:01 -07002445 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002446 struct path path;
2447 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Al Virodae6ad82011-06-26 11:50:15 -04002449 dentry = user_path_create(dfd, pathname, &path, 1);
Dave Hansen6902d922006-09-30 23:29:01 -07002450 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04002451 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002452
Al Virodae6ad82011-06-26 11:50:15 -04002453 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002454 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04002455 error = mnt_want_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002456 if (error)
2457 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002458 error = security_path_mkdir(&path, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002459 if (error)
2460 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04002461 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002462out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002463 mnt_drop_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002464out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002465 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002466 mutex_unlock(&path.dentry->d_inode->i_mutex);
2467 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 return error;
2469}
2470
Heiko Carstens3cdad422009-01-14 14:14:22 +01002471SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002472{
2473 return sys_mkdirat(AT_FDCWD, pathname, mode);
2474}
2475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476/*
Sage Weila71905f2011-05-24 13:06:08 -07002477 * The dentry_unhash() helper will try to drop the dentry early: we
2478 * should have a usage count of 2 if we're the only user of this
2479 * dentry, and if that is true (possibly after pruning the dcache),
2480 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 *
2482 * A low-level filesystem can, if it choses, legally
2483 * do a
2484 *
2485 * if (!d_unhashed(dentry))
2486 * return -EBUSY;
2487 *
2488 * if it cannot handle the case of removing a directory
2489 * that is still in use by something else..
2490 */
2491void dentry_unhash(struct dentry *dentry)
2492{
Vasily Averindc168422006-12-06 20:37:07 -08002493 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 spin_lock(&dentry->d_lock);
Sage Weil64252c72011-05-24 13:06:05 -07002495 if (dentry->d_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 __d_drop(dentry);
2497 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498}
2499
2500int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2501{
2502 int error = may_delete(dir, dentry, 1);
2503
2504 if (error)
2505 return error;
2506
Al Viroacfa4382008-12-04 10:06:33 -05002507 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 return -EPERM;
2509
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002510 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511
Sage Weil912dbc12011-05-24 13:06:11 -07002512 error = -EBUSY;
2513 if (d_mountpoint(dentry))
2514 goto out;
2515
2516 error = security_inode_rmdir(dir, dentry);
2517 if (error)
2518 goto out;
2519
Sage Weil3cebde22011-05-29 21:20:59 -07002520 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07002521 error = dir->i_op->rmdir(dir, dentry);
2522 if (error)
2523 goto out;
2524
2525 dentry->d_inode->i_flags |= S_DEAD;
2526 dont_mount(dentry);
2527
2528out:
2529 mutex_unlock(&dentry->d_inode->i_mutex);
2530 if (!error)
2531 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 return error;
2533}
2534
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002535static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536{
2537 int error = 0;
2538 char * name;
2539 struct dentry *dentry;
2540 struct nameidata nd;
2541
Al Viro2ad94ae2008-07-21 09:32:51 -04002542 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002544 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
2546 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002547 case LAST_DOTDOT:
2548 error = -ENOTEMPTY;
2549 goto exit1;
2550 case LAST_DOT:
2551 error = -EINVAL;
2552 goto exit1;
2553 case LAST_ROOT:
2554 error = -EBUSY;
2555 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002557
2558 nd.flags &= ~LOOKUP_PARENT;
2559
Jan Blunck4ac91372008-02-14 19:34:32 -08002560 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002561 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002563 if (IS_ERR(dentry))
2564 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002565 if (!dentry->d_inode) {
2566 error = -ENOENT;
2567 goto exit3;
2568 }
Dave Hansen06227532008-02-15 14:37:34 -08002569 error = mnt_want_write(nd.path.mnt);
2570 if (error)
2571 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002572 error = security_path_rmdir(&nd.path, dentry);
2573 if (error)
2574 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002575 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002576exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002577 mnt_drop_write(nd.path.mnt);
2578exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002579 dput(dentry);
2580exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002581 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002583 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 putname(name);
2585 return error;
2586}
2587
Heiko Carstens3cdad422009-01-14 14:14:22 +01002588SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002589{
2590 return do_rmdir(AT_FDCWD, pathname);
2591}
2592
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593int vfs_unlink(struct inode *dir, struct dentry *dentry)
2594{
2595 int error = may_delete(dir, dentry, 0);
2596
2597 if (error)
2598 return error;
2599
Al Viroacfa4382008-12-04 10:06:33 -05002600 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 return -EPERM;
2602
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002603 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 if (d_mountpoint(dentry))
2605 error = -EBUSY;
2606 else {
2607 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002608 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002610 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002611 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002614 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
2616 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2617 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002618 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 }
Robert Love0eeca282005-07-12 17:06:03 -04002621
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 return error;
2623}
2624
2625/*
2626 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002627 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 * writeout happening, and we don't want to prevent access to the directory
2629 * while waiting on the I/O.
2630 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002631static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
Al Viro2ad94ae2008-07-21 09:32:51 -04002633 int error;
2634 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 struct dentry *dentry;
2636 struct nameidata nd;
2637 struct inode *inode = NULL;
2638
Al Viro2ad94ae2008-07-21 09:32:51 -04002639 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002641 return error;
2642
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 error = -EISDIR;
2644 if (nd.last_type != LAST_NORM)
2645 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002646
2647 nd.flags &= ~LOOKUP_PARENT;
2648
Jan Blunck4ac91372008-02-14 19:34:32 -08002649 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002650 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 error = PTR_ERR(dentry);
2652 if (!IS_ERR(dentry)) {
2653 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03002654 if (nd.last.name[nd.last.len])
2655 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 inode = dentry->d_inode;
Török Edwin50338b82011-06-16 00:06:14 +03002657 if (!inode)
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002658 goto slashes;
2659 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002660 error = mnt_want_write(nd.path.mnt);
2661 if (error)
2662 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002663 error = security_path_unlink(&nd.path, dentry);
2664 if (error)
2665 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002666 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002667exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002668 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 exit2:
2670 dput(dentry);
2671 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002672 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 if (inode)
2674 iput(inode); /* truncate the inode here */
2675exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002676 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 putname(name);
2678 return error;
2679
2680slashes:
2681 error = !dentry->d_inode ? -ENOENT :
2682 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2683 goto exit2;
2684}
2685
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002686SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002687{
2688 if ((flag & ~AT_REMOVEDIR) != 0)
2689 return -EINVAL;
2690
2691 if (flag & AT_REMOVEDIR)
2692 return do_rmdir(dfd, pathname);
2693
2694 return do_unlinkat(dfd, pathname);
2695}
2696
Heiko Carstens3480b252009-01-14 14:14:16 +01002697SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002698{
2699 return do_unlinkat(AT_FDCWD, pathname);
2700}
2701
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002702int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002704 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
2706 if (error)
2707 return error;
2708
Al Viroacfa4382008-12-04 10:06:33 -05002709 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 return -EPERM;
2711
2712 error = security_inode_symlink(dir, dentry, oldname);
2713 if (error)
2714 return error;
2715
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002717 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002718 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 return error;
2720}
2721
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002722SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2723 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724{
Al Viro2ad94ae2008-07-21 09:32:51 -04002725 int error;
2726 char *from;
Dave Hansen6902d922006-09-30 23:29:01 -07002727 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002728 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729
2730 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002731 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002733
Al Virodae6ad82011-06-26 11:50:15 -04002734 dentry = user_path_create(newdfd, newname, &path, 0);
Dave Hansen6902d922006-09-30 23:29:01 -07002735 error = PTR_ERR(dentry);
2736 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04002737 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07002738
Al Virodae6ad82011-06-26 11:50:15 -04002739 error = mnt_want_write(path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002740 if (error)
2741 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002742 error = security_path_symlink(&path, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002743 if (error)
2744 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04002745 error = vfs_symlink(path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002746out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002747 mnt_drop_write(path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002748out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002749 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002750 mutex_unlock(&path.dentry->d_inode->i_mutex);
2751 path_put(&path);
Dave Hansen6902d922006-09-30 23:29:01 -07002752out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 putname(from);
2754 return error;
2755}
2756
Heiko Carstens3480b252009-01-14 14:14:16 +01002757SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002758{
2759 return sys_symlinkat(oldname, AT_FDCWD, newname);
2760}
2761
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2763{
2764 struct inode *inode = old_dentry->d_inode;
2765 int error;
2766
2767 if (!inode)
2768 return -ENOENT;
2769
Miklos Szeredia95164d2008-07-30 15:08:48 +02002770 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 if (error)
2772 return error;
2773
2774 if (dir->i_sb != inode->i_sb)
2775 return -EXDEV;
2776
2777 /*
2778 * A link to an append-only or immutable file cannot be created.
2779 */
2780 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2781 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05002782 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002784 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 return -EPERM;
2786
2787 error = security_inode_link(old_dentry, dir, new_dentry);
2788 if (error)
2789 return error;
2790
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002791 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05302792 /* Make sure we don't allow creating hardlink to an unlinked file */
2793 if (inode->i_nlink == 0)
2794 error = -ENOENT;
2795 else
2796 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002797 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002798 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002799 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 return error;
2801}
2802
2803/*
2804 * Hardlinks are often used in delicate situations. We avoid
2805 * security-related surprises by not following symlinks on the
2806 * newname. --KAB
2807 *
2808 * We don't follow them on the oldname either to be compatible
2809 * with linux 2.0, and to avoid hard-linking to directories
2810 * and other special files. --ADM
2811 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002812SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2813 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814{
2815 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002816 struct path old_path, new_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302817 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302820 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002821 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302822 /*
2823 * To use null names we require CAP_DAC_READ_SEARCH
2824 * This ensures that not everyone will be able to create
2825 * handlink using the passed filedescriptor.
2826 */
2827 if (flags & AT_EMPTY_PATH) {
2828 if (!capable(CAP_DAC_READ_SEARCH))
2829 return -ENOENT;
2830 how = LOOKUP_EMPTY;
2831 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002832
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302833 if (flags & AT_SYMLINK_FOLLOW)
2834 how |= LOOKUP_FOLLOW;
2835
2836 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002838 return error;
2839
Al Virodae6ad82011-06-26 11:50:15 -04002840 new_dentry = user_path_create(newdfd, newname, &new_path, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002842 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04002843 goto out;
2844
2845 error = -EXDEV;
2846 if (old_path.mnt != new_path.mnt)
2847 goto out_dput;
2848 error = mnt_want_write(new_path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002849 if (error)
2850 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002851 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002852 if (error)
2853 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04002854 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002855out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002856 mnt_drop_write(new_path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002857out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002858 dput(new_dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002859 mutex_unlock(&new_path.dentry->d_inode->i_mutex);
2860 path_put(&new_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861out:
Al Viro2d8f3032008-07-22 09:59:21 -04002862 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
2864 return error;
2865}
2866
Heiko Carstens3480b252009-01-14 14:14:16 +01002867SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002868{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002869 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002870}
2871
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872/*
2873 * The worst of all namespace operations - renaming directory. "Perverted"
2874 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2875 * Problems:
2876 * a) we can get into loop creation. Check is done in is_subdir().
2877 * b) race potential - two innocent renames can create a loop together.
2878 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002879 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 * story.
2881 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002882 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 * whether the target exists). Solution: try to be smart with locking
2884 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002885 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 * move will be locked. Thus we can rank directories by the tree
2887 * (ancestors first) and rank all non-directories after them.
2888 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002889 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 * HOWEVER, it relies on the assumption that any object with ->lookup()
2891 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2892 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07002893 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002894 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05002896 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 * locking].
2898 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07002899static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2900 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901{
2902 int error = 0;
Sage Weil9055cba2011-05-24 13:06:12 -07002903 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
2905 /*
2906 * If we are going to change the parent - check write permissions,
2907 * we'll need to flip '..'.
2908 */
2909 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04002910 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 if (error)
2912 return error;
2913 }
2914
2915 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2916 if (error)
2917 return error;
2918
Al Virod83c49f2010-04-30 17:17:09 -04002919 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002920 mutex_lock(&target->i_mutex);
Sage Weil9055cba2011-05-24 13:06:12 -07002921
2922 error = -EBUSY;
2923 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
2924 goto out;
2925
Sage Weil3cebde22011-05-29 21:20:59 -07002926 if (target)
2927 shrink_dcache_parent(new_dentry);
Sage Weil9055cba2011-05-24 13:06:12 -07002928 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2929 if (error)
2930 goto out;
2931
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 if (target) {
Sage Weil9055cba2011-05-24 13:06:12 -07002933 target->i_flags |= S_DEAD;
2934 dont_mount(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 }
Sage Weil9055cba2011-05-24 13:06:12 -07002936out:
2937 if (target)
2938 mutex_unlock(&target->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002939 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07002940 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2941 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 return error;
2943}
2944
Adrian Bunk75c96f82005-05-05 16:16:09 -07002945static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
2946 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947{
Sage Weil51892bb2011-05-24 13:06:13 -07002948 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 int error;
2950
2951 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2952 if (error)
2953 return error;
2954
2955 dget(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002957 mutex_lock(&target->i_mutex);
Sage Weil51892bb2011-05-24 13:06:13 -07002958
2959 error = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
Sage Weil51892bb2011-05-24 13:06:13 -07002961 goto out;
2962
2963 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2964 if (error)
2965 goto out;
2966
2967 if (target)
2968 dont_mount(new_dentry);
2969 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2970 d_move(old_dentry, new_dentry);
2971out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002973 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 dput(new_dentry);
2975 return error;
2976}
2977
2978int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
2979 struct inode *new_dir, struct dentry *new_dentry)
2980{
2981 int error;
2982 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05002983 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
2985 if (old_dentry->d_inode == new_dentry->d_inode)
2986 return 0;
2987
2988 error = may_delete(old_dir, old_dentry, is_dir);
2989 if (error)
2990 return error;
2991
2992 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02002993 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 else
2995 error = may_delete(new_dir, new_dentry, is_dir);
2996 if (error)
2997 return error;
2998
Al Viroacfa4382008-12-04 10:06:33 -05002999 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 return -EPERM;
3001
Robert Love0eeca282005-07-12 17:06:03 -04003002 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3003
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 if (is_dir)
3005 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3006 else
3007 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003008 if (!error)
3009 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003010 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003011 fsnotify_oldname_free(old_name);
3012
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 return error;
3014}
3015
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003016SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3017 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018{
Al Viro2ad94ae2008-07-21 09:32:51 -04003019 struct dentry *old_dir, *new_dir;
3020 struct dentry *old_dentry, *new_dentry;
3021 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003023 char *from;
3024 char *to;
3025 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026
Al Viro2ad94ae2008-07-21 09:32:51 -04003027 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 if (error)
3029 goto exit;
3030
Al Viro2ad94ae2008-07-21 09:32:51 -04003031 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 if (error)
3033 goto exit1;
3034
3035 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003036 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 goto exit2;
3038
Jan Blunck4ac91372008-02-14 19:34:32 -08003039 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 error = -EBUSY;
3041 if (oldnd.last_type != LAST_NORM)
3042 goto exit2;
3043
Jan Blunck4ac91372008-02-14 19:34:32 -08003044 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 if (newnd.last_type != LAST_NORM)
3046 goto exit2;
3047
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003048 oldnd.flags &= ~LOOKUP_PARENT;
3049 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003050 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003051
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 trap = lock_rename(new_dir, old_dir);
3053
Christoph Hellwig49705b72005-11-08 21:35:06 -08003054 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 error = PTR_ERR(old_dentry);
3056 if (IS_ERR(old_dentry))
3057 goto exit3;
3058 /* source must exist */
3059 error = -ENOENT;
3060 if (!old_dentry->d_inode)
3061 goto exit4;
3062 /* unless the source is a directory trailing slashes give -ENOTDIR */
3063 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3064 error = -ENOTDIR;
3065 if (oldnd.last.name[oldnd.last.len])
3066 goto exit4;
3067 if (newnd.last.name[newnd.last.len])
3068 goto exit4;
3069 }
3070 /* source should not be ancestor of target */
3071 error = -EINVAL;
3072 if (old_dentry == trap)
3073 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003074 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 error = PTR_ERR(new_dentry);
3076 if (IS_ERR(new_dentry))
3077 goto exit4;
3078 /* target should not be an ancestor of source */
3079 error = -ENOTEMPTY;
3080 if (new_dentry == trap)
3081 goto exit5;
3082
Dave Hansen9079b1e2008-02-15 14:37:49 -08003083 error = mnt_want_write(oldnd.path.mnt);
3084 if (error)
3085 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003086 error = security_path_rename(&oldnd.path, old_dentry,
3087 &newnd.path, new_dentry);
3088 if (error)
3089 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 error = vfs_rename(old_dir->d_inode, old_dentry,
3091 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003092exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003093 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094exit5:
3095 dput(new_dentry);
3096exit4:
3097 dput(old_dentry);
3098exit3:
3099 unlock_rename(new_dir, old_dir);
3100exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003101 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003102 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003104 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003106exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 return error;
3108}
3109
Heiko Carstensa26eab22009-01-14 14:14:17 +01003110SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003111{
3112 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3113}
3114
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3116{
3117 int len;
3118
3119 len = PTR_ERR(link);
3120 if (IS_ERR(link))
3121 goto out;
3122
3123 len = strlen(link);
3124 if (len > (unsigned) buflen)
3125 len = buflen;
3126 if (copy_to_user(buffer, link, len))
3127 len = -EFAULT;
3128out:
3129 return len;
3130}
3131
3132/*
3133 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3134 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3135 * using) it for any given inode is up to filesystem.
3136 */
3137int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3138{
3139 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003140 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003141 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003142
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003144 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003145 if (IS_ERR(cookie))
3146 return PTR_ERR(cookie);
3147
3148 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3149 if (dentry->d_inode->i_op->put_link)
3150 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3151 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152}
3153
3154int vfs_follow_link(struct nameidata *nd, const char *link)
3155{
3156 return __vfs_follow_link(nd, link);
3157}
3158
3159/* get the link contents into pagecache */
3160static char *page_getlink(struct dentry * dentry, struct page **ppage)
3161{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003162 char *kaddr;
3163 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003165 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003167 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003169 kaddr = kmap(page);
3170 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3171 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172}
3173
3174int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3175{
3176 struct page *page = NULL;
3177 char *s = page_getlink(dentry, &page);
3178 int res = vfs_readlink(dentry,buffer,buflen,s);
3179 if (page) {
3180 kunmap(page);
3181 page_cache_release(page);
3182 }
3183 return res;
3184}
3185
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003186void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003188 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003190 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191}
3192
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003193void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003195 struct page *page = cookie;
3196
3197 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 kunmap(page);
3199 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 }
3201}
3202
Nick Piggin54566b22009-01-04 12:00:53 -08003203/*
3204 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3205 */
3206int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207{
3208 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003209 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003210 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003211 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003213 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3214 if (nofs)
3215 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
NeilBrown7e53cac2006-03-25 03:07:57 -08003217retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003218 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003219 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003221 goto fail;
3222
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 kaddr = kmap_atomic(page, KM_USER0);
3224 memcpy(kaddr, symname, len-1);
3225 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07003226
3227 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3228 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229 if (err < 0)
3230 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003231 if (err < len-1)
3232 goto retry;
3233
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 mark_inode_dirty(inode);
3235 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236fail:
3237 return err;
3238}
3239
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003240int page_symlink(struct inode *inode, const char *symname, int len)
3241{
3242 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003243 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003244}
3245
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003246const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247 .readlink = generic_readlink,
3248 .follow_link = page_follow_link_light,
3249 .put_link = page_put_link,
3250};
3251
Al Viro2d8f3032008-07-22 09:59:21 -04003252EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003253EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254EXPORT_SYMBOL(follow_down);
3255EXPORT_SYMBOL(follow_up);
3256EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3257EXPORT_SYMBOL(getname);
3258EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259EXPORT_SYMBOL(lookup_one_len);
3260EXPORT_SYMBOL(page_follow_link_light);
3261EXPORT_SYMBOL(page_put_link);
3262EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003263EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264EXPORT_SYMBOL(page_symlink);
3265EXPORT_SYMBOL(page_symlink_inode_operations);
Al Viroc9c6cac2011-02-16 15:15:47 -05003266EXPORT_SYMBOL(kern_path_parent);
Al Virod1811462008-08-02 00:49:18 -04003267EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003268EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003269EXPORT_SYMBOL(inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270EXPORT_SYMBOL(unlock_rename);
3271EXPORT_SYMBOL(vfs_create);
3272EXPORT_SYMBOL(vfs_follow_link);
3273EXPORT_SYMBOL(vfs_link);
3274EXPORT_SYMBOL(vfs_mkdir);
3275EXPORT_SYMBOL(vfs_mknod);
3276EXPORT_SYMBOL(generic_permission);
3277EXPORT_SYMBOL(vfs_readlink);
3278EXPORT_SYMBOL(vfs_rename);
3279EXPORT_SYMBOL(vfs_rmdir);
3280EXPORT_SYMBOL(vfs_symlink);
3281EXPORT_SYMBOL(vfs_unlink);
3282EXPORT_SYMBOL(dentry_unhash);
3283EXPORT_SYMBOL(generic_readlink);