blob: b7fad009bbf69884ab938ed26d4fd6ab0a257d9c [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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 *
217 * Used to check for read/write/execute permissions on a file.
218 * We use "fsuid" for this, letting us set arbitrary permissions
219 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100220 * are used for other things.
221 *
222 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
223 * request cannot be satisfied (eg. requires blocking or too much complexity).
224 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 */
Al Viro2830ba72011-06-20 19:16:29 -0400226int generic_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700228 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 /*
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700231 * Do the basic POSIX ACL permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 */
Al Viro7e401452011-06-20 19:12:17 -0400233 ret = acl_permission_check(inode, mask);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700234 if (ret != -EACCES)
235 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Al Virod594e7e2011-06-20 19:55:42 -0400237 if (S_ISDIR(inode->i_mode)) {
238 /* DACs are overridable for directories */
239 if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE))
240 return 0;
241 if (!(mask & MAY_WRITE))
242 if (ns_capable(inode_userns(inode), CAP_DAC_READ_SEARCH))
243 return 0;
244 return -EACCES;
245 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 /*
247 * Read/write DACs are always overridable.
Al Virod594e7e2011-06-20 19:55:42 -0400248 * Executable DACs are overridable when there is
249 * at least one exec bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 */
Al Virod594e7e2011-06-20 19:55:42 -0400251 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
Serge E. Hallyne795b712011-03-23 16:43:25 -0700252 if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return 0;
254
255 /*
256 * Searching includes executable on directories, else just read.
257 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600258 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Al Virod594e7e2011-06-20 19:55:42 -0400259 if (mask == MAY_READ)
Serge E. Hallyne795b712011-03-23 16:43:25 -0700260 if (ns_capable(inode_userns(inode), CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return 0;
262
263 return -EACCES;
264}
265
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200266/**
267 * inode_permission - check for access rights to a given inode
268 * @inode: inode to check permission on
269 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
270 *
271 * Used to check for read/write/execute permissions on an inode.
272 * We use "fsuid" for this, letting us set arbitrary permissions
273 * for filesystem access without changing the "normal" uids which
274 * are used for other things.
275 */
Al Virof419a2e2008-07-22 00:07:17 -0400276int inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
Al Viroe6305c42008-07-15 21:03:57 -0400278 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 if (mask & MAY_WRITE) {
Miklos Szeredi22590e42007-10-16 23:27:08 -0700281 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 /*
284 * Nobody gets write access to a read-only fs.
285 */
286 if (IS_RDONLY(inode) &&
287 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
288 return -EROFS;
289
290 /*
291 * Nobody gets write access to an immutable file.
292 */
293 if (IS_IMMUTABLE(inode))
294 return -EACCES;
295 }
296
Al Viroacfa4382008-12-04 10:06:33 -0500297 if (inode->i_op->permission)
Al Viro10556cb2011-06-20 19:28:19 -0400298 retval = inode->i_op->permission(inode, mask);
Miklos Szeredif696a362008-07-31 13:41:58 +0200299 else
Al Viro2830ba72011-06-20 19:16:29 -0400300 retval = generic_permission(inode, mask);
Miklos Szeredif696a362008-07-31 13:41:58 +0200301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (retval)
303 return retval;
304
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700305 retval = devcgroup_inode_permission(inode, mask);
306 if (retval)
307 return retval;
308
Eric Parisd09ca732010-07-23 11:43:57 -0400309 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310}
311
Al Virof4d6ff82011-06-19 13:14:21 -0400312/**
Jan Blunck5dd784d2008-02-14 19:34:38 -0800313 * path_get - get a reference to a path
314 * @path: path to get the reference to
315 *
316 * Given a path increment the reference count to the dentry and the vfsmount.
317 */
318void path_get(struct path *path)
319{
320 mntget(path->mnt);
321 dget(path->dentry);
322}
323EXPORT_SYMBOL(path_get);
324
325/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800326 * path_put - put a reference to a path
327 * @path: path to put the reference to
328 *
329 * Given a path decrement the reference count to the dentry and the vfsmount.
330 */
331void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Jan Blunck1d957f92008-02-14 19:34:35 -0800333 dput(path->dentry);
334 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
Jan Blunck1d957f92008-02-14 19:34:35 -0800336EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Al Viro19660af2011-03-25 10:32:48 -0400338/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100339 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400340 * Documentation/filesystems/path-lookup.txt). In situations when we can't
341 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
342 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
343 * mode. Refcounts are grabbed at the last known good point before rcu-walk
344 * got stuck, so ref-walk may continue from there. If this is not successful
345 * (eg. a seqcount has changed), then failure is returned and it's up to caller
346 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100347 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100348
349/**
Al Viro19660af2011-03-25 10:32:48 -0400350 * unlazy_walk - try to switch to ref-walk mode.
351 * @nd: nameidata pathwalk data
352 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800353 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100354 *
Al Viro19660af2011-03-25 10:32:48 -0400355 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
356 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
357 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100358 */
Al Viro19660af2011-03-25 10:32:48 -0400359static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100360{
361 struct fs_struct *fs = current->fs;
362 struct dentry *parent = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500363 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100364
365 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500366 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
367 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100368 spin_lock(&fs->lock);
369 if (nd->root.mnt != fs->root.mnt ||
370 nd->root.dentry != fs->root.dentry)
371 goto err_root;
372 }
373 spin_lock(&parent->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400374 if (!dentry) {
375 if (!__d_rcu_to_refcount(parent, nd->seq))
376 goto err_parent;
377 BUG_ON(nd->inode != parent->d_inode);
378 } else {
Al Viro94c0d4e2011-07-12 21:40:23 -0400379 if (dentry->d_parent != parent)
380 goto err_parent;
Al Viro19660af2011-03-25 10:32:48 -0400381 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
382 if (!__d_rcu_to_refcount(dentry, nd->seq))
383 goto err_child;
384 /*
385 * If the sequence check on the child dentry passed, then
386 * the child has not been removed from its parent. This
387 * means the parent dentry must be valid and able to take
388 * a reference at this point.
389 */
390 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
391 BUG_ON(!parent->d_count);
392 parent->d_count++;
393 spin_unlock(&dentry->d_lock);
394 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100395 spin_unlock(&parent->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500396 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100397 path_get(&nd->root);
398 spin_unlock(&fs->lock);
399 }
400 mntget(nd->path.mnt);
401
402 rcu_read_unlock();
403 br_read_unlock(vfsmount_lock);
404 nd->flags &= ~LOOKUP_RCU;
405 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400406
407err_child:
Nick Piggin31e6b012011-01-07 17:49:52 +1100408 spin_unlock(&dentry->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400409err_parent:
Nick Piggin31e6b012011-01-07 17:49:52 +1100410 spin_unlock(&parent->d_lock);
411err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500412 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100413 spin_unlock(&fs->lock);
414 return -ECHILD;
415}
416
Nick Piggin31e6b012011-01-07 17:49:52 +1100417/**
Trond Myklebust834f2a42005-10-18 14:20:16 -0700418 * release_open_intent - free up open intent resources
419 * @nd: pointer to nameidata
420 */
421void release_open_intent(struct nameidata *nd)
422{
Linus Torvalds2dab5972011-02-11 15:53:38 -0800423 struct file *file = nd->intent.open.file;
424
425 if (file && !IS_ERR(file)) {
426 if (file->f_path.dentry == NULL)
427 put_filp(file);
428 else
429 fput(file);
430 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700431}
432
Al Virof60aef72011-02-15 01:35:28 -0500433static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
Nick Piggin34286d62011-01-07 17:49:57 +1100434{
Al Virof60aef72011-02-15 01:35:28 -0500435 return dentry->d_op->d_revalidate(dentry, nd);
Nick Piggin34286d62011-01-07 17:49:57 +1100436}
437
Al Viro9f1fafe2011-03-25 11:00:12 -0400438/**
439 * complete_walk - successful completion of path walk
440 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500441 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400442 * If we had been in RCU mode, drop out of it and legitimize nd->path.
443 * Revalidate the final result, unless we'd already done that during
444 * the path walk or the filesystem doesn't ask for it. Return 0 on
445 * success, -error on failure. In case of failure caller does not
446 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500447 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400448static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500449{
Al Viro16c2cd72011-02-22 15:50:10 -0500450 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500451 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500452
Al Viro9f1fafe2011-03-25 11:00:12 -0400453 if (nd->flags & LOOKUP_RCU) {
454 nd->flags &= ~LOOKUP_RCU;
455 if (!(nd->flags & LOOKUP_ROOT))
456 nd->root.mnt = NULL;
457 spin_lock(&dentry->d_lock);
458 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
459 spin_unlock(&dentry->d_lock);
460 rcu_read_unlock();
461 br_read_unlock(vfsmount_lock);
462 return -ECHILD;
463 }
464 BUG_ON(nd->inode != dentry->d_inode);
465 spin_unlock(&dentry->d_lock);
466 mntget(nd->path.mnt);
467 rcu_read_unlock();
468 br_read_unlock(vfsmount_lock);
469 }
470
Al Viro16c2cd72011-02-22 15:50:10 -0500471 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500472 return 0;
473
Al Viro16c2cd72011-02-22 15:50:10 -0500474 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
475 return 0;
476
477 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
478 return 0;
479
480 /* Note: we do not d_invalidate() */
Nick Piggin34286d62011-01-07 17:49:57 +1100481 status = d_revalidate(dentry, nd);
Jeff Layton39159de2009-12-07 12:01:50 -0500482 if (status > 0)
483 return 0;
484
Al Viro16c2cd72011-02-22 15:50:10 -0500485 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500486 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500487
Al Viro9f1fafe2011-03-25 11:00:12 -0400488 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500489 return status;
490}
491
Al Viro2a737872009-04-07 11:49:53 -0400492static __always_inline void set_root(struct nameidata *nd)
493{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200494 if (!nd->root.mnt)
495 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400496}
497
Al Viro6de88d72009-08-09 01:41:57 +0400498static int link_path_walk(const char *, struct nameidata *);
499
Nick Piggin31e6b012011-01-07 17:49:52 +1100500static __always_inline void set_root_rcu(struct nameidata *nd)
501{
502 if (!nd->root.mnt) {
503 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100504 unsigned seq;
505
506 do {
507 seq = read_seqcount_begin(&fs->seq);
508 nd->root = fs->root;
Tim Chenc1530012011-04-15 11:39:29 -0700509 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
Nick Pigginc28cc362011-01-07 17:49:53 +1100510 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100511 }
512}
513
Arjan van de Venf1662352006-01-14 13:21:31 -0800514static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Nick Piggin31e6b012011-01-07 17:49:52 +1100516 int ret;
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 if (IS_ERR(link))
519 goto fail;
520
521 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400522 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800523 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400524 nd->path = nd->root;
525 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500526 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100528 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100529
Nick Piggin31e6b012011-01-07 17:49:52 +1100530 ret = link_path_walk(link, nd);
531 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800533 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 return PTR_ERR(link);
535}
536
Jan Blunck1d957f92008-02-14 19:34:35 -0800537static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700538{
539 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800540 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700541 mntput(path->mnt);
542}
543
Nick Piggin7b9337a2011-01-14 08:42:43 +0000544static inline void path_to_nameidata(const struct path *path,
545 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700546{
Nick Piggin31e6b012011-01-07 17:49:52 +1100547 if (!(nd->flags & LOOKUP_RCU)) {
548 dput(nd->path.dentry);
549 if (nd->path.mnt != path->mnt)
550 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800551 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100552 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800553 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700554}
555
Al Viro574197e2011-03-14 22:20:34 -0400556static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
557{
558 struct inode *inode = link->dentry->d_inode;
559 if (!IS_ERR(cookie) && inode->i_op->put_link)
560 inode->i_op->put_link(link->dentry, nd, cookie);
561 path_put(link);
562}
563
Al Virodef4af32009-12-26 08:37:05 -0500564static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400565follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800566{
567 int error;
Nick Piggin7b9337a2011-01-14 08:42:43 +0000568 struct dentry *dentry = link->dentry;
Ian Kent051d3812006-03-27 01:14:53 -0800569
Al Viro844a3912011-02-15 00:38:26 -0500570 BUG_ON(nd->flags & LOOKUP_RCU);
571
Al Viro0e794582011-03-16 02:45:02 -0400572 if (link->mnt == nd->path.mnt)
573 mntget(link->mnt);
574
Al Viro574197e2011-03-14 22:20:34 -0400575 if (unlikely(current->total_link_count >= 40)) {
576 *p = ERR_PTR(-ELOOP); /* no ->put_link(), please */
Al Viro574197e2011-03-14 22:20:34 -0400577 path_put(&nd->path);
578 return -ELOOP;
579 }
580 cond_resched();
581 current->total_link_count++;
582
Nick Piggin7b9337a2011-01-14 08:42:43 +0000583 touch_atime(link->mnt, dentry);
Ian Kent051d3812006-03-27 01:14:53 -0800584 nd_set_link(nd, NULL);
585
Al Viro36f3b4f2011-02-22 21:24:38 -0500586 error = security_inode_follow_link(link->dentry, nd);
587 if (error) {
588 *p = ERR_PTR(error); /* no ->put_link(), please */
589 path_put(&nd->path);
590 return error;
591 }
592
Al Viro86acdca12009-12-22 23:45:11 -0500593 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500594 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
595 error = PTR_ERR(*p);
596 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800597 char *s = nd_get_link(nd);
598 error = 0;
599 if (s)
600 error = __vfs_follow_link(nd, s);
Al Virobcda7652011-03-13 16:42:14 -0400601 else if (nd->last_type == LAST_BIND) {
Al Viro16c2cd72011-02-22 15:50:10 -0500602 nd->flags |= LOOKUP_JUMPED;
Al Virob21041d2011-03-14 20:01:51 -0400603 nd->inode = nd->path.dentry->d_inode;
604 if (nd->inode->i_op->follow_link) {
Al Virobcda7652011-03-13 16:42:14 -0400605 /* stepped on a _really_ weird one */
606 path_put(&nd->path);
607 error = -ELOOP;
608 }
609 }
Ian Kent051d3812006-03-27 01:14:53 -0800610 }
Ian Kent051d3812006-03-27 01:14:53 -0800611 return error;
612}
613
Nick Piggin31e6b012011-01-07 17:49:52 +1100614static int follow_up_rcu(struct path *path)
615{
616 struct vfsmount *parent;
617 struct dentry *mountpoint;
618
619 parent = path->mnt->mnt_parent;
620 if (parent == path->mnt)
621 return 0;
622 mountpoint = path->mnt->mnt_mountpoint;
623 path->dentry = mountpoint;
624 path->mnt = parent;
625 return 1;
626}
627
Al Virobab77eb2009-04-18 03:26:48 -0400628int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
630 struct vfsmount *parent;
631 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000632
633 br_read_lock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400634 parent = path->mnt->mnt_parent;
635 if (parent == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000636 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return 0;
638 }
639 mntget(parent);
Al Virobab77eb2009-04-18 03:26:48 -0400640 mountpoint = dget(path->mnt->mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000641 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400642 dput(path->dentry);
643 path->dentry = mountpoint;
644 mntput(path->mnt);
645 path->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return 1;
647}
648
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100649/*
David Howells9875cf82011-01-14 18:45:21 +0000650 * Perform an automount
651 * - return -EISDIR to tell follow_managed() to stop and return the path we
652 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 */
David Howells9875cf82011-01-14 18:45:21 +0000654static int follow_automount(struct path *path, unsigned flags,
655 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100656{
David Howells9875cf82011-01-14 18:45:21 +0000657 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000658 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100659
David Howells9875cf82011-01-14 18:45:21 +0000660 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
661 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700662
David Howells6f45b652011-01-14 18:45:31 +0000663 /* We don't want to mount if someone supplied AT_NO_AUTOMOUNT
664 * and this is the terminal part of the path.
665 */
Al Viro49084c32011-06-25 21:59:52 -0400666 if ((flags & LOOKUP_NO_AUTOMOUNT) && !(flags & LOOKUP_PARENT))
David Howells6f45b652011-01-14 18:45:31 +0000667 return -EISDIR; /* we actually want to stop here */
668
David Howells9875cf82011-01-14 18:45:21 +0000669 /* We want to mount if someone is trying to open/create a file of any
670 * type under the mountpoint, wants to traverse through the mountpoint
671 * or wants to open the mounted directory.
672 *
673 * We don't want to mount if someone's just doing a stat and they've
674 * set AT_SYMLINK_NOFOLLOW - unless they're stat'ing a directory and
675 * appended a '/' to the name.
676 */
677 if (!(flags & LOOKUP_FOLLOW) &&
Al Viro49084c32011-06-25 21:59:52 -0400678 !(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
David Howells9875cf82011-01-14 18:45:21 +0000679 LOOKUP_OPEN | LOOKUP_CREATE)))
680 return -EISDIR;
681
682 current->total_link_count++;
683 if (current->total_link_count >= 40)
684 return -ELOOP;
685
686 mnt = path->dentry->d_op->d_automount(path);
687 if (IS_ERR(mnt)) {
688 /*
689 * The filesystem is allowed to return -EISDIR here to indicate
690 * it doesn't want to automount. For instance, autofs would do
691 * this so that its userspace daemon can mount on this dentry.
692 *
693 * However, we can only permit this if it's a terminal point in
694 * the path being looked up; if it wasn't then the remainder of
695 * the path is inaccessible and we should say so.
696 */
Al Viro49084c32011-06-25 21:59:52 -0400697 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +0000698 return -EREMOTE;
699 return PTR_ERR(mnt);
700 }
David Howellsea5b7782011-01-14 19:10:03 +0000701
David Howells9875cf82011-01-14 18:45:21 +0000702 if (!mnt) /* mount collision */
703 return 0;
704
Al Viro8aef1882011-06-16 15:10:06 +0100705 if (!*need_mntput) {
706 /* lock_mount() may release path->mnt on error */
707 mntget(path->mnt);
708 *need_mntput = true;
709 }
Al Viro19a167a2011-01-17 01:35:23 -0500710 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000711
David Howellsea5b7782011-01-14 19:10:03 +0000712 switch (err) {
713 case -EBUSY:
714 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500715 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000716 case 0:
Al Viro8aef1882011-06-16 15:10:06 +0100717 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +0000718 path->mnt = mnt;
719 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +0000720 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500721 default:
722 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000723 }
Al Viro19a167a2011-01-17 01:35:23 -0500724
David Howells9875cf82011-01-14 18:45:21 +0000725}
726
727/*
728 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000729 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000730 * - Flagged as mountpoint
731 * - Flagged as automount point
732 *
733 * This may only be called in refwalk mode.
734 *
735 * Serialization is taken care of in namespace.c
736 */
737static int follow_managed(struct path *path, unsigned flags)
738{
Al Viro8aef1882011-06-16 15:10:06 +0100739 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +0000740 unsigned managed;
741 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +0100742 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +0000743
744 /* Given that we're not holding a lock here, we retain the value in a
745 * local variable for each dentry as we look at it so that we don't see
746 * the components of that value change under us */
747 while (managed = ACCESS_ONCE(path->dentry->d_flags),
748 managed &= DCACHE_MANAGED_DENTRY,
749 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000750 /* Allow the filesystem to manage the transit without i_mutex
751 * being held. */
752 if (managed & DCACHE_MANAGE_TRANSIT) {
753 BUG_ON(!path->dentry->d_op);
754 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -0400755 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000756 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100757 break;
David Howellscc53ce52011-01-14 18:45:26 +0000758 }
759
David Howells9875cf82011-01-14 18:45:21 +0000760 /* Transit to a mounted filesystem. */
761 if (managed & DCACHE_MOUNTED) {
762 struct vfsmount *mounted = lookup_mnt(path);
763 if (mounted) {
764 dput(path->dentry);
765 if (need_mntput)
766 mntput(path->mnt);
767 path->mnt = mounted;
768 path->dentry = dget(mounted->mnt_root);
769 need_mntput = true;
770 continue;
771 }
772
773 /* Something is mounted on this dentry in another
774 * namespace and/or whatever was mounted there in this
775 * namespace got unmounted before we managed to get the
776 * vfsmount_lock */
777 }
778
779 /* Handle an automount point */
780 if (managed & DCACHE_NEED_AUTOMOUNT) {
781 ret = follow_automount(path, flags, &need_mntput);
782 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100783 break;
David Howells9875cf82011-01-14 18:45:21 +0000784 continue;
785 }
786
787 /* We didn't change the current path point */
788 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 }
Al Viro8aef1882011-06-16 15:10:06 +0100790
791 if (need_mntput && path->mnt == mnt)
792 mntput(path->mnt);
793 if (ret == -EISDIR)
794 ret = 0;
795 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796}
797
David Howellscc53ce52011-01-14 18:45:26 +0000798int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
800 struct vfsmount *mounted;
801
Al Viro1c755af2009-04-18 14:06:57 -0400802 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400804 dput(path->dentry);
805 mntput(path->mnt);
806 path->mnt = mounted;
807 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return 1;
809 }
810 return 0;
811}
812
Ian Kent62a73752011-03-25 01:51:02 +0800813static inline bool managed_dentry_might_block(struct dentry *dentry)
814{
815 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
816 dentry->d_op->d_manage(dentry, true) < 0);
817}
818
David Howells9875cf82011-01-14 18:45:21 +0000819/*
Al Viro287548e2011-05-27 06:50:06 -0400820 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
821 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +0000822 */
823static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -0400824 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +0000825{
Ian Kent62a73752011-03-25 01:51:02 +0800826 for (;;) {
David Howells9875cf82011-01-14 18:45:21 +0000827 struct vfsmount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +0800828 /*
829 * Don't forget we might have a non-mountpoint managed dentry
830 * that wants to block transit.
831 */
Al Viro287548e2011-05-27 06:50:06 -0400832 if (unlikely(managed_dentry_might_block(path->dentry)))
David Howellsab909112011-01-14 18:46:51 +0000833 return false;
Ian Kent62a73752011-03-25 01:51:02 +0800834
835 if (!d_mountpoint(path->dentry))
836 break;
837
David Howells9875cf82011-01-14 18:45:21 +0000838 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
839 if (!mounted)
840 break;
841 path->mnt = mounted;
842 path->dentry = mounted->mnt_root;
843 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -0700844 /*
845 * Update the inode too. We don't need to re-check the
846 * dentry sequence number here after this d_inode read,
847 * because a mount-point is always pinned.
848 */
849 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +0000850 }
David Howells9875cf82011-01-14 18:45:21 +0000851 return true;
852}
853
Al Virodea39372011-05-27 06:53:39 -0400854static void follow_mount_rcu(struct nameidata *nd)
Al Viro287548e2011-05-27 06:50:06 -0400855{
Al Virodea39372011-05-27 06:53:39 -0400856 while (d_mountpoint(nd->path.dentry)) {
Al Viro287548e2011-05-27 06:50:06 -0400857 struct vfsmount *mounted;
Al Virodea39372011-05-27 06:53:39 -0400858 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
Al Viro287548e2011-05-27 06:50:06 -0400859 if (!mounted)
860 break;
Al Virodea39372011-05-27 06:53:39 -0400861 nd->path.mnt = mounted;
862 nd->path.dentry = mounted->mnt_root;
863 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro287548e2011-05-27 06:50:06 -0400864 }
865}
866
Nick Piggin31e6b012011-01-07 17:49:52 +1100867static int follow_dotdot_rcu(struct nameidata *nd)
868{
Nick Piggin31e6b012011-01-07 17:49:52 +1100869 set_root_rcu(nd);
870
David Howells9875cf82011-01-14 18:45:21 +0000871 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100872 if (nd->path.dentry == nd->root.dentry &&
873 nd->path.mnt == nd->root.mnt) {
874 break;
875 }
876 if (nd->path.dentry != nd->path.mnt->mnt_root) {
877 struct dentry *old = nd->path.dentry;
878 struct dentry *parent = old->d_parent;
879 unsigned seq;
880
881 seq = read_seqcount_begin(&parent->d_seq);
882 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -0500883 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +1100884 nd->path.dentry = parent;
885 nd->seq = seq;
886 break;
887 }
888 if (!follow_up_rcu(&nd->path))
889 break;
890 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +1100891 }
Al Virodea39372011-05-27 06:53:39 -0400892 follow_mount_rcu(nd);
893 nd->inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +1100894 return 0;
Al Viroef7562d2011-03-04 14:35:59 -0500895
896failed:
897 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -0500898 if (!(nd->flags & LOOKUP_ROOT))
899 nd->root.mnt = NULL;
Al Viroef7562d2011-03-04 14:35:59 -0500900 rcu_read_unlock();
901 br_read_unlock(vfsmount_lock);
902 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +1100903}
904
David Howells9875cf82011-01-14 18:45:21 +0000905/*
David Howellscc53ce52011-01-14 18:45:26 +0000906 * Follow down to the covering mount currently visible to userspace. At each
907 * point, the filesystem owning that dentry may be queried as to whether the
908 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +0000909 */
Al Viro7cc90cc2011-03-18 09:04:20 -0400910int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +0000911{
912 unsigned managed;
913 int ret;
914
915 while (managed = ACCESS_ONCE(path->dentry->d_flags),
916 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
917 /* Allow the filesystem to manage the transit without i_mutex
918 * being held.
919 *
920 * We indicate to the filesystem if someone is trying to mount
921 * something here. This gives autofs the chance to deny anyone
922 * other than its daemon the right to mount on its
923 * superstructure.
924 *
925 * The filesystem may sleep at this point.
926 */
927 if (managed & DCACHE_MANAGE_TRANSIT) {
928 BUG_ON(!path->dentry->d_op);
929 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +0000930 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -0400931 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000932 if (ret < 0)
933 return ret == -EISDIR ? 0 : ret;
934 }
935
936 /* Transit to a mounted filesystem. */
937 if (managed & DCACHE_MOUNTED) {
938 struct vfsmount *mounted = lookup_mnt(path);
939 if (!mounted)
940 break;
941 dput(path->dentry);
942 mntput(path->mnt);
943 path->mnt = mounted;
944 path->dentry = dget(mounted->mnt_root);
945 continue;
946 }
947
948 /* Don't handle automount points here */
949 break;
950 }
951 return 0;
952}
953
954/*
David Howells9875cf82011-01-14 18:45:21 +0000955 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
956 */
957static void follow_mount(struct path *path)
958{
959 while (d_mountpoint(path->dentry)) {
960 struct vfsmount *mounted = lookup_mnt(path);
961 if (!mounted)
962 break;
963 dput(path->dentry);
964 mntput(path->mnt);
965 path->mnt = mounted;
966 path->dentry = dget(mounted->mnt_root);
967 }
968}
969
Nick Piggin31e6b012011-01-07 17:49:52 +1100970static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
Al Viro2a737872009-04-07 11:49:53 -0400972 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -0700973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -0800975 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Al Viro2a737872009-04-07 11:49:53 -0400977 if (nd->path.dentry == nd->root.dentry &&
978 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 break;
980 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800981 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -0500982 /* rare case of legitimate dget_parent()... */
983 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 dput(old);
985 break;
986 }
Al Viro3088dd72010-01-30 15:47:29 -0500987 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
Al Viro79ed0222009-04-18 13:59:41 -0400990 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +1100991 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994/*
Nick Pigginbaa03892010-08-18 04:37:31 +1000995 * Allocate a dentry with name and parent, and perform a parent
996 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
997 * on error. parent->d_inode->i_mutex must be held. d_lookup must
998 * have verified that no child exists while under i_mutex.
999 */
1000static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1001 struct qstr *name, struct nameidata *nd)
1002{
1003 struct inode *inode = parent->d_inode;
1004 struct dentry *dentry;
1005 struct dentry *old;
1006
1007 /* Don't create child dentry for a dead directory. */
1008 if (unlikely(IS_DEADDIR(inode)))
1009 return ERR_PTR(-ENOENT);
1010
1011 dentry = d_alloc(parent, name);
1012 if (unlikely(!dentry))
1013 return ERR_PTR(-ENOMEM);
1014
1015 old = inode->i_op->lookup(inode, dentry, nd);
1016 if (unlikely(old)) {
1017 dput(dentry);
1018 dentry = old;
1019 }
1020 return dentry;
1021}
1022
1023/*
Josef Bacik44396f42011-05-31 11:58:49 -04001024 * We already have a dentry, but require a lookup to be performed on the parent
1025 * directory to fill in d_inode. Returns the new dentry, or ERR_PTR on error.
1026 * parent->d_inode->i_mutex must be held. d_lookup must have verified that no
1027 * child exists while under i_mutex.
1028 */
1029static struct dentry *d_inode_lookup(struct dentry *parent, struct dentry *dentry,
1030 struct nameidata *nd)
1031{
1032 struct inode *inode = parent->d_inode;
1033 struct dentry *old;
1034
1035 /* Don't create child dentry for a dead directory. */
1036 if (unlikely(IS_DEADDIR(inode)))
1037 return ERR_PTR(-ENOENT);
1038
1039 old = inode->i_op->lookup(inode, dentry, nd);
1040 if (unlikely(old)) {
1041 dput(dentry);
1042 dentry = old;
1043 }
1044 return dentry;
1045}
1046
1047/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 * It's more convoluted than I'd like it to be, but... it's still fairly
1049 * small and for now I'd prefer to have fast path as straight as possible.
1050 * It _is_ time-critical.
1051 */
1052static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +11001053 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
Jan Blunck4ac91372008-02-14 19:34:32 -08001055 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001056 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001057 int need_reval = 1;
1058 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001059 int err;
1060
Al Viro3cac2602009-08-13 18:27:43 +04001061 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001062 * Rename seqlock is not required here because in the off chance
1063 * of a false negative due to a concurrent rename, we're going to
1064 * do the non-racy lookup, below.
1065 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001066 if (nd->flags & LOOKUP_RCU) {
1067 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001068 *inode = nd->inode;
1069 dentry = __d_lookup_rcu(parent, name, &seq, inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001070 if (!dentry)
1071 goto unlazy;
1072
Nick Piggin31e6b012011-01-07 17:49:52 +11001073 /* Memory barrier in read_seqcount_begin of child is enough */
1074 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1075 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001076 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001077
Al Viro24643082011-02-15 01:26:22 -05001078 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro5a18fff2011-03-11 04:44:53 -05001079 status = d_revalidate(dentry, nd);
1080 if (unlikely(status <= 0)) {
1081 if (status != -ECHILD)
1082 need_reval = 0;
1083 goto unlazy;
1084 }
Al Viro24643082011-02-15 01:26:22 -05001085 }
Josef Bacik44396f42011-05-31 11:58:49 -04001086 if (unlikely(d_need_lookup(dentry)))
1087 goto unlazy;
Nick Piggin31e6b012011-01-07 17:49:52 +11001088 path->mnt = mnt;
1089 path->dentry = dentry;
Al Virod6e9bd22011-05-27 07:03:15 -04001090 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1091 goto unlazy;
1092 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1093 goto unlazy;
1094 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001095unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001096 if (unlazy_walk(nd, dentry))
1097 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001098 } else {
1099 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001100 }
Al Viro5a18fff2011-03-11 04:44:53 -05001101
Josef Bacik44396f42011-05-31 11:58:49 -04001102 if (dentry && unlikely(d_need_lookup(dentry))) {
1103 dput(dentry);
1104 dentry = NULL;
1105 }
Al Viro5a18fff2011-03-11 04:44:53 -05001106retry:
1107 if (unlikely(!dentry)) {
1108 struct inode *dir = parent->d_inode;
1109 BUG_ON(nd->inode != dir);
1110
1111 mutex_lock(&dir->i_mutex);
1112 dentry = d_lookup(parent, name);
1113 if (likely(!dentry)) {
1114 dentry = d_alloc_and_lookup(parent, name, nd);
1115 if (IS_ERR(dentry)) {
1116 mutex_unlock(&dir->i_mutex);
1117 return PTR_ERR(dentry);
1118 }
1119 /* known good */
1120 need_reval = 0;
1121 status = 1;
Josef Bacik44396f42011-05-31 11:58:49 -04001122 } else if (unlikely(d_need_lookup(dentry))) {
1123 dentry = d_inode_lookup(parent, dentry, nd);
1124 if (IS_ERR(dentry)) {
1125 mutex_unlock(&dir->i_mutex);
1126 return PTR_ERR(dentry);
1127 }
1128 /* known good */
1129 need_reval = 0;
1130 status = 1;
Al Viro5a18fff2011-03-11 04:44:53 -05001131 }
1132 mutex_unlock(&dir->i_mutex);
Al Viro24643082011-02-15 01:26:22 -05001133 }
Al Viro5a18fff2011-03-11 04:44:53 -05001134 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1135 status = d_revalidate(dentry, nd);
1136 if (unlikely(status <= 0)) {
1137 if (status < 0) {
1138 dput(dentry);
1139 return status;
1140 }
1141 if (!d_invalidate(dentry)) {
1142 dput(dentry);
1143 dentry = NULL;
1144 need_reval = 1;
1145 goto retry;
1146 }
1147 }
1148
David Howells9875cf82011-01-14 18:45:21 +00001149 path->mnt = mnt;
1150 path->dentry = dentry;
1151 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001152 if (unlikely(err < 0)) {
1153 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001154 return err;
Ian Kent89312212011-01-18 12:06:10 +08001155 }
David Howells9875cf82011-01-14 18:45:21 +00001156 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158}
1159
Al Viro52094c82011-02-21 21:34:47 -05001160static inline int may_lookup(struct nameidata *nd)
1161{
1162 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001163 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001164 if (err != -ECHILD)
1165 return err;
Al Viro19660af2011-03-25 10:32:48 -04001166 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001167 return -ECHILD;
1168 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001169 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001170}
1171
Al Viro9856fa12011-03-04 14:22:06 -05001172static inline int handle_dots(struct nameidata *nd, int type)
1173{
1174 if (type == LAST_DOTDOT) {
1175 if (nd->flags & LOOKUP_RCU) {
1176 if (follow_dotdot_rcu(nd))
1177 return -ECHILD;
1178 } else
1179 follow_dotdot(nd);
1180 }
1181 return 0;
1182}
1183
Al Viro951361f2011-03-04 14:44:37 -05001184static void terminate_walk(struct nameidata *nd)
1185{
1186 if (!(nd->flags & LOOKUP_RCU)) {
1187 path_put(&nd->path);
1188 } else {
1189 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001190 if (!(nd->flags & LOOKUP_ROOT))
1191 nd->root.mnt = NULL;
Al Viro951361f2011-03-04 14:44:37 -05001192 rcu_read_unlock();
1193 br_read_unlock(vfsmount_lock);
1194 }
1195}
1196
Al Viroce57dfc2011-03-13 19:58:58 -04001197static inline int walk_component(struct nameidata *nd, struct path *path,
1198 struct qstr *name, int type, int follow)
1199{
1200 struct inode *inode;
1201 int err;
1202 /*
1203 * "." and ".." are special - ".." especially so because it has
1204 * to be able to know about the current root directory and
1205 * parent relationships.
1206 */
1207 if (unlikely(type != LAST_NORM))
1208 return handle_dots(nd, type);
1209 err = do_lookup(nd, name, path, &inode);
1210 if (unlikely(err)) {
1211 terminate_walk(nd);
1212 return err;
1213 }
1214 if (!inode) {
1215 path_to_nameidata(path, nd);
1216 terminate_walk(nd);
1217 return -ENOENT;
1218 }
1219 if (unlikely(inode->i_op->follow_link) && follow) {
Al Viro19660af2011-03-25 10:32:48 -04001220 if (nd->flags & LOOKUP_RCU) {
1221 if (unlikely(unlazy_walk(nd, path->dentry))) {
1222 terminate_walk(nd);
1223 return -ECHILD;
1224 }
1225 }
Al Viroce57dfc2011-03-13 19:58:58 -04001226 BUG_ON(inode != path->dentry->d_inode);
1227 return 1;
1228 }
1229 path_to_nameidata(path, nd);
1230 nd->inode = inode;
1231 return 0;
1232}
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234/*
Al Virob3563792011-03-14 21:54:55 -04001235 * This limits recursive symlink follows to 8, while
1236 * limiting consecutive symlinks to 40.
1237 *
1238 * Without that kind of total limit, nasty chains of consecutive
1239 * symlinks can cause almost arbitrarily long lookups.
1240 */
1241static inline int nested_symlink(struct path *path, struct nameidata *nd)
1242{
1243 int res;
1244
Al Virob3563792011-03-14 21:54:55 -04001245 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1246 path_put_conditional(path, nd);
1247 path_put(&nd->path);
1248 return -ELOOP;
1249 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001250 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001251
1252 nd->depth++;
1253 current->link_count++;
1254
1255 do {
1256 struct path link = *path;
1257 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001258
1259 res = follow_link(&link, nd, &cookie);
Al Virob3563792011-03-14 21:54:55 -04001260 if (!res)
1261 res = walk_component(nd, path, &nd->last,
1262 nd->last_type, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001263 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001264 } while (res > 0);
1265
1266 current->link_count--;
1267 nd->depth--;
1268 return res;
1269}
1270
1271/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001273 * This is the basic name resolution function, turning a pathname into
1274 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001276 * Returns 0 and nd will have valid dentry and mnt on success.
1277 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 */
Al Viro6de88d72009-08-09 01:41:57 +04001279static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280{
1281 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
1284 while (*name=='/')
1285 name++;
1286 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001287 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 /* At this point we know we have a real path component. */
1290 for(;;) {
1291 unsigned long hash;
1292 struct qstr this;
1293 unsigned int c;
Al Virofe479a52011-02-22 15:10:03 -05001294 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
Al Viro52094c82011-02-21 21:34:47 -05001296 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 if (err)
1298 break;
1299
1300 this.name = name;
1301 c = *(const unsigned char *)name;
1302
1303 hash = init_name_hash();
1304 do {
1305 name++;
1306 hash = partial_name_hash(c, hash);
1307 c = *(const unsigned char *)name;
1308 } while (c && (c != '/'));
1309 this.len = name - (const char *) this.name;
1310 this.hash = end_name_hash(hash);
1311
Al Virofe479a52011-02-22 15:10:03 -05001312 type = LAST_NORM;
1313 if (this.name[0] == '.') switch (this.len) {
1314 case 2:
Al Viro16c2cd72011-02-22 15:50:10 -05001315 if (this.name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001316 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001317 nd->flags |= LOOKUP_JUMPED;
1318 }
Al Virofe479a52011-02-22 15:10:03 -05001319 break;
1320 case 1:
1321 type = LAST_DOT;
1322 }
Al Viro5a202bc2011-03-08 14:17:44 -05001323 if (likely(type == LAST_NORM)) {
1324 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001325 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001326 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1327 err = parent->d_op->d_hash(parent, nd->inode,
1328 &this);
1329 if (err < 0)
1330 break;
1331 }
1332 }
Al Virofe479a52011-02-22 15:10:03 -05001333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 /* remove trailing slashes? */
1335 if (!c)
1336 goto last_component;
1337 while (*++name == '/');
1338 if (!*name)
Al Virob3563792011-03-14 21:54:55 -04001339 goto last_component;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340
Al Viroce57dfc2011-03-13 19:58:58 -04001341 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1342 if (err < 0)
1343 return err;
Al Virofe479a52011-02-22 15:10:03 -05001344
Al Viroce57dfc2011-03-13 19:58:58 -04001345 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001346 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001348 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001351 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 break;
1353 continue;
1354 /* here ends the main loop */
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356last_component:
Al Virob3563792011-03-14 21:54:55 -04001357 nd->last = this;
1358 nd->last_type = type;
Al Viro086e1832011-02-22 20:56:27 -05001359 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 }
Al Viro951361f2011-03-04 14:44:37 -05001361 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 return err;
1363}
1364
Al Viro70e9b352011-03-05 21:12:22 -05001365static int path_init(int dfd, const char *name, unsigned int flags,
1366 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001368 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001369 int fput_needed;
1370 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001373 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001375 if (flags & LOOKUP_ROOT) {
1376 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001377 if (*name) {
1378 if (!inode->i_op->lookup)
1379 return -ENOTDIR;
1380 retval = inode_permission(inode, MAY_EXEC);
1381 if (retval)
1382 return retval;
1383 }
Al Viro5b6ca022011-03-09 23:04:47 -05001384 nd->path = nd->root;
1385 nd->inode = inode;
1386 if (flags & LOOKUP_RCU) {
1387 br_read_lock(vfsmount_lock);
1388 rcu_read_lock();
1389 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1390 } else {
1391 path_get(&nd->path);
1392 }
1393 return 0;
1394 }
1395
Al Viro2a737872009-04-07 11:49:53 -04001396 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001399 if (flags & LOOKUP_RCU) {
1400 br_read_lock(vfsmount_lock);
1401 rcu_read_lock();
1402 set_root_rcu(nd);
1403 } else {
1404 set_root(nd);
1405 path_get(&nd->root);
1406 }
Al Viro2a737872009-04-07 11:49:53 -04001407 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001408 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001409 if (flags & LOOKUP_RCU) {
1410 struct fs_struct *fs = current->fs;
1411 unsigned seq;
1412
1413 br_read_lock(vfsmount_lock);
1414 rcu_read_lock();
1415
1416 do {
1417 seq = read_seqcount_begin(&fs->seq);
1418 nd->path = fs->pwd;
1419 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1420 } while (read_seqcount_retry(&fs->seq, seq));
1421 } else {
1422 get_fs_pwd(current->fs, &nd->path);
1423 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001424 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001425 struct dentry *dentry;
1426
Al Viro1abf0c72011-03-13 03:51:11 -04001427 file = fget_raw_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001428 retval = -EBADF;
1429 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001430 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001431
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001432 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001433
Al Virof52e0c12011-03-14 18:56:51 -04001434 if (*name) {
1435 retval = -ENOTDIR;
1436 if (!S_ISDIR(dentry->d_inode->i_mode))
1437 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001438
Al Viro4ad5abb2011-06-20 19:57:03 -04001439 retval = inode_permission(dentry->d_inode, MAY_EXEC);
Al Virof52e0c12011-03-14 18:56:51 -04001440 if (retval)
1441 goto fput_fail;
1442 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001443
Jan Blunck5dd784d2008-02-14 19:34:38 -08001444 nd->path = file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001445 if (flags & LOOKUP_RCU) {
1446 if (fput_needed)
Al Viro70e9b352011-03-05 21:12:22 -05001447 *fp = file;
Al Viroe41f7d42011-02-22 14:02:58 -05001448 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1449 br_read_lock(vfsmount_lock);
1450 rcu_read_lock();
1451 } else {
1452 path_get(&file->f_path);
1453 fput_light(file, fput_needed);
1454 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 }
Al Viroe41f7d42011-02-22 14:02:58 -05001456
Nick Piggin31e6b012011-01-07 17:49:52 +11001457 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001458 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001459
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001460fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001461 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001462out_fail:
1463 return retval;
1464}
1465
Al Virobd92d7f2011-03-14 19:54:59 -04001466static inline int lookup_last(struct nameidata *nd, struct path *path)
1467{
1468 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1469 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1470
1471 nd->flags &= ~LOOKUP_PARENT;
1472 return walk_component(nd, path, &nd->last, nd->last_type,
1473 nd->flags & LOOKUP_FOLLOW);
1474}
1475
Al Viro9b4a9b12009-04-07 11:44:16 -04001476/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001477static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001478 unsigned int flags, struct nameidata *nd)
1479{
Al Viro70e9b352011-03-05 21:12:22 -05001480 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001481 struct path path;
1482 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001483
1484 /*
1485 * Path walking is largely split up into 2 different synchronisation
1486 * schemes, rcu-walk and ref-walk (explained in
1487 * Documentation/filesystems/path-lookup.txt). These share much of the
1488 * path walk code, but some things particularly setup, cleanup, and
1489 * following mounts are sufficiently divergent that functions are
1490 * duplicated. Typically there is a function foo(), and its RCU
1491 * analogue, foo_rcu().
1492 *
1493 * -ECHILD is the error number of choice (just to avoid clashes) that
1494 * is returned if some aspect of an rcu-walk fails. Such an error must
1495 * be handled by restarting a traditional ref-walk (which will always
1496 * be able to complete).
1497 */
Al Virobd92d7f2011-03-14 19:54:59 -04001498 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001499
Al Virobd92d7f2011-03-14 19:54:59 -04001500 if (unlikely(err))
1501 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001502
1503 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001504 err = link_path_walk(name, nd);
1505
1506 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001507 err = lookup_last(nd, &path);
1508 while (err > 0) {
1509 void *cookie;
1510 struct path link = path;
Al Virobd92d7f2011-03-14 19:54:59 -04001511 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001512 err = follow_link(&link, nd, &cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001513 if (!err)
1514 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001515 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001516 }
1517 }
Al Viroee0827c2011-02-21 23:38:09 -05001518
Al Viro9f1fafe2011-03-25 11:00:12 -04001519 if (!err)
1520 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001521
1522 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1523 if (!nd->inode->i_op->lookup) {
1524 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001525 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001526 }
1527 }
Al Viro16c2cd72011-02-22 15:50:10 -05001528
Al Viro70e9b352011-03-05 21:12:22 -05001529 if (base)
1530 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001531
Al Viro5b6ca022011-03-09 23:04:47 -05001532 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001533 path_put(&nd->root);
1534 nd->root.mnt = NULL;
1535 }
Al Virobd92d7f2011-03-14 19:54:59 -04001536 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001537}
Nick Piggin31e6b012011-01-07 17:49:52 +11001538
Al Viroee0827c2011-02-21 23:38:09 -05001539static int do_path_lookup(int dfd, const char *name,
1540 unsigned int flags, struct nameidata *nd)
1541{
1542 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1543 if (unlikely(retval == -ECHILD))
1544 retval = path_lookupat(dfd, name, flags, nd);
1545 if (unlikely(retval == -ESTALE))
1546 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001547
1548 if (likely(!retval)) {
1549 if (unlikely(!audit_dummy_context())) {
1550 if (nd->path.dentry && nd->inode)
1551 audit_inode(name, nd->path.dentry);
1552 }
1553 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001554 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555}
1556
Al Viroc9c6cac2011-02-16 15:15:47 -05001557int kern_path_parent(const char *name, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001558{
Al Viroc9c6cac2011-02-16 15:15:47 -05001559 return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001560}
1561
Al Virod1811462008-08-02 00:49:18 -04001562int kern_path(const char *name, unsigned int flags, struct path *path)
1563{
1564 struct nameidata nd;
1565 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1566 if (!res)
1567 *path = nd.path;
1568 return res;
1569}
1570
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001571/**
1572 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1573 * @dentry: pointer to dentry of the base directory
1574 * @mnt: pointer to vfs mount of the base directory
1575 * @name: pointer to file name
1576 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04001577 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001578 */
1579int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1580 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04001581 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001582{
Al Viroe0a01242011-06-27 17:00:37 -04001583 struct nameidata nd;
1584 int err;
1585 nd.root.dentry = dentry;
1586 nd.root.mnt = mnt;
1587 BUG_ON(flags & LOOKUP_PARENT);
Al Viro5b6ca022011-03-09 23:04:47 -05001588 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
Al Viroe0a01242011-06-27 17:00:37 -04001589 err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
1590 if (!err)
1591 *path = nd.path;
1592 return err;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001593}
1594
Christoph Hellwigeead1912007-10-16 23:25:38 -07001595static struct dentry *__lookup_hash(struct qstr *name,
1596 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597{
Christoph Hellwig81fca442010-10-06 10:47:47 +02001598 struct inode *inode = base->d_inode;
James Morris057f6c02007-04-26 00:12:05 -07001599 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 int err;
1601
Al Viro4ad5abb2011-06-20 19:57:03 -04001602 err = inode_permission(inode, MAY_EXEC);
Christoph Hellwig81fca442010-10-06 10:47:47 +02001603 if (err)
1604 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001607 * Don't bother with __d_lookup: callers are for creat as
1608 * well as unlink, so a lot of the time it would cost
1609 * a double lookup.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001610 */
Nick Pigginb04f7842010-08-18 04:37:34 +10001611 dentry = d_lookup(base, name);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001612
Josef Bacik44396f42011-05-31 11:58:49 -04001613 if (dentry && d_need_lookup(dentry)) {
1614 /*
1615 * __lookup_hash is called with the parent dir's i_mutex already
1616 * held, so we are good to go here.
1617 */
1618 dentry = d_inode_lookup(base, dentry, nd);
1619 if (IS_ERR(dentry))
1620 return dentry;
1621 }
1622
Al Virod2d9e9f2011-06-20 10:55:26 -04001623 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE)) {
1624 int status = d_revalidate(dentry, nd);
1625 if (unlikely(status <= 0)) {
1626 /*
1627 * The dentry failed validation.
1628 * If d_revalidate returned 0 attempt to invalidate
1629 * the dentry otherwise d_revalidate is asking us
1630 * to return a fail status.
1631 */
1632 if (status < 0) {
1633 dput(dentry);
1634 return ERR_PTR(status);
1635 } else if (!d_invalidate(dentry)) {
1636 dput(dentry);
1637 dentry = NULL;
1638 }
1639 }
1640 }
Al Viro6e6b1bd2009-08-13 23:38:37 +04001641
Nick Pigginbaa03892010-08-18 04:37:31 +10001642 if (!dentry)
1643 dentry = d_alloc_and_lookup(base, name, nd);
Al Viro5a202bc2011-03-08 14:17:44 -05001644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 return dentry;
1646}
1647
James Morris057f6c02007-04-26 00:12:05 -07001648/*
1649 * Restricted form of lookup. Doesn't follow links, single-component only,
1650 * needs parent already locked. Doesn't follow mounts.
1651 * SMP-safe.
1652 */
Adrian Bunka244e162006-03-31 02:32:11 -08001653static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654{
Jan Blunck4ac91372008-02-14 19:34:32 -08001655 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656}
1657
Christoph Hellwigeead1912007-10-16 23:25:38 -07001658/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001659 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001660 * @name: pathname component to lookup
1661 * @base: base directory to lookup from
1662 * @len: maximum length @len should be interpreted to
1663 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001664 * Note that this routine is purely a helper for filesystem usage and should
1665 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001666 * nameidata argument is passed to the filesystem methods and a filesystem
1667 * using this helper needs to be prepared for that.
1668 */
James Morris057f6c02007-04-26 00:12:05 -07001669struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1670{
James Morris057f6c02007-04-26 00:12:05 -07001671 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05001672 unsigned long hash;
1673 unsigned int c;
James Morris057f6c02007-04-26 00:12:05 -07001674
David Woodhouse2f9092e2009-04-20 23:18:37 +01001675 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1676
Al Viro6a96ba52011-03-07 23:49:20 -05001677 this.name = name;
1678 this.len = len;
1679 if (!len)
1680 return ERR_PTR(-EACCES);
1681
1682 hash = init_name_hash();
1683 while (len--) {
1684 c = *(const unsigned char *)name++;
1685 if (c == '/' || c == '\0')
1686 return ERR_PTR(-EACCES);
1687 hash = partial_name_hash(c, hash);
1688 }
1689 this.hash = end_name_hash(hash);
Al Viro5a202bc2011-03-08 14:17:44 -05001690 /*
1691 * See if the low-level filesystem might want
1692 * to use its own hash..
1693 */
1694 if (base->d_flags & DCACHE_OP_HASH) {
1695 int err = base->d_op->d_hash(base, base->d_inode, &this);
1696 if (err < 0)
1697 return ERR_PTR(err);
1698 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07001699
Christoph Hellwig49705b72005-11-08 21:35:06 -08001700 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001701}
1702
Al Viro2d8f3032008-07-22 09:59:21 -04001703int user_path_at(int dfd, const char __user *name, unsigned flags,
1704 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705{
Al Viro2d8f3032008-07-22 09:59:21 -04001706 struct nameidata nd;
Al Virof52e0c12011-03-14 18:56:51 -04001707 char *tmp = getname_flags(name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001710
1711 BUG_ON(flags & LOOKUP_PARENT);
1712
1713 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001715 if (!err)
1716 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 }
1718 return err;
1719}
1720
Al Viro2ad94ae2008-07-21 09:32:51 -04001721static int user_path_parent(int dfd, const char __user *path,
1722 struct nameidata *nd, char **name)
1723{
1724 char *s = getname(path);
1725 int error;
1726
1727 if (IS_ERR(s))
1728 return PTR_ERR(s);
1729
1730 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1731 if (error)
1732 putname(s);
1733 else
1734 *name = s;
1735
1736 return error;
1737}
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739/*
1740 * It's inline, so penalty for filesystems that don't use sticky bit is
1741 * minimal.
1742 */
1743static inline int check_sticky(struct inode *dir, struct inode *inode)
1744{
David Howellsda9592e2008-11-14 10:39:05 +11001745 uid_t fsuid = current_fsuid();
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 if (!(dir->i_mode & S_ISVTX))
1748 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001749 if (current_user_ns() != inode_userns(inode))
1750 goto other_userns;
David Howellsda9592e2008-11-14 10:39:05 +11001751 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001753 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001755
1756other_userns:
1757 return !ns_capable(inode_userns(inode), CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758}
1759
1760/*
1761 * Check whether we can remove a link victim from directory dir, check
1762 * whether the type of victim is right.
1763 * 1. We can't do it if dir is read-only (done in permission())
1764 * 2. We should have write and exec permissions on dir
1765 * 3. We can't remove anything from append-only dir
1766 * 4. We can't do anything with immutable dir (done in permission())
1767 * 5. If the sticky bit on dir is set we should either
1768 * a. be owner of dir, or
1769 * b. be owner of victim, or
1770 * c. have CAP_FOWNER capability
1771 * 6. If the victim is append-only or immutable we can't do antyhing with
1772 * links pointing to it.
1773 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1774 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1775 * 9. We can't remove a root or mountpoint.
1776 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1777 * nfs_async_unlink().
1778 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001779static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
1781 int error;
1782
1783 if (!victim->d_inode)
1784 return -ENOENT;
1785
1786 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001787 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788
Al Virof419a2e2008-07-22 00:07:17 -04001789 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (error)
1791 return error;
1792 if (IS_APPEND(dir))
1793 return -EPERM;
1794 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001795 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 return -EPERM;
1797 if (isdir) {
1798 if (!S_ISDIR(victim->d_inode->i_mode))
1799 return -ENOTDIR;
1800 if (IS_ROOT(victim))
1801 return -EBUSY;
1802 } else if (S_ISDIR(victim->d_inode->i_mode))
1803 return -EISDIR;
1804 if (IS_DEADDIR(dir))
1805 return -ENOENT;
1806 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1807 return -EBUSY;
1808 return 0;
1809}
1810
1811/* Check whether we can create an object with dentry child in directory
1812 * dir.
1813 * 1. We can't do it if child already exists (open has special treatment for
1814 * this case, but since we are inlined it's OK)
1815 * 2. We can't do it if dir is read-only (done in permission())
1816 * 3. We should have write and exec permissions on dir
1817 * 4. We can't do it if dir is immutable (done in permission())
1818 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001819static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
1821 if (child->d_inode)
1822 return -EEXIST;
1823 if (IS_DEADDIR(dir))
1824 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001825 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826}
1827
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828/*
1829 * p1 and p2 should be directories on the same fs.
1830 */
1831struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1832{
1833 struct dentry *p;
1834
1835 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001836 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 return NULL;
1838 }
1839
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001840 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001842 p = d_ancestor(p2, p1);
1843 if (p) {
1844 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1845 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1846 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 }
1848
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001849 p = d_ancestor(p1, p2);
1850 if (p) {
1851 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1852 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1853 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 }
1855
Ingo Molnarf2eace22006-07-03 00:25:05 -07001856 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1857 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 return NULL;
1859}
1860
1861void unlock_rename(struct dentry *p1, struct dentry *p2)
1862{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001863 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001865 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001866 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 }
1868}
1869
1870int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1871 struct nameidata *nd)
1872{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001873 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
1875 if (error)
1876 return error;
1877
Al Viroacfa4382008-12-04 10:06:33 -05001878 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 return -EACCES; /* shouldn't it be ENOSYS? */
1880 mode &= S_IALLUGO;
1881 mode |= S_IFREG;
1882 error = security_inode_create(dir, dentry, mode);
1883 if (error)
1884 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001886 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001887 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return error;
1889}
1890
Al Viro73d049a2011-03-11 12:08:24 -05001891static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001893 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 struct inode *inode = dentry->d_inode;
1895 int error;
1896
Al Virobcda7652011-03-13 16:42:14 -04001897 /* O_PATH? */
1898 if (!acc_mode)
1899 return 0;
1900
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 if (!inode)
1902 return -ENOENT;
1903
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001904 switch (inode->i_mode & S_IFMT) {
1905 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001907 case S_IFDIR:
1908 if (acc_mode & MAY_WRITE)
1909 return -EISDIR;
1910 break;
1911 case S_IFBLK:
1912 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001913 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001915 /*FALLTHRU*/
1916 case S_IFIFO:
1917 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001919 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001920 }
Dave Hansenb41572e2007-10-16 23:31:14 -07001921
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001922 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07001923 if (error)
1924 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05001925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 /*
1927 * An append-only file must be opened in append mode for writing.
1928 */
1929 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05001930 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05001931 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05001933 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 }
1935
1936 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07001937 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05001938 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
1940 /*
1941 * Ensure there are no outstanding leases on the file.
1942 */
Al Virob65a9cf2009-12-16 06:27:40 -05001943 return break_lease(inode, flag);
Al Viro7715b522009-12-16 03:54:00 -05001944}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Jeff Laytone1181ee2010-12-07 16:19:50 -05001946static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05001947{
Jeff Laytone1181ee2010-12-07 16:19:50 -05001948 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05001949 struct inode *inode = path->dentry->d_inode;
1950 int error = get_write_access(inode);
1951 if (error)
1952 return error;
1953 /*
1954 * Refuse to truncate files with mandatory locks held on them.
1955 */
1956 error = locks_verify_locked(inode);
1957 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09001958 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05001959 if (!error) {
1960 error = do_truncate(path->dentry, 0,
1961 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05001962 filp);
Al Viro7715b522009-12-16 03:54:00 -05001963 }
1964 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04001965 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966}
1967
Dave Hansend57999e2008-02-15 14:37:27 -08001968static inline int open_to_namei_flags(int flag)
1969{
Al Viro8a5e9292011-06-25 19:15:54 -04001970 if ((flag & O_ACCMODE) == 3)
1971 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08001972 return flag;
1973}
1974
Nick Piggin31e6b012011-01-07 17:49:52 +11001975/*
Al Virofe2d35f2011-03-05 22:58:25 -05001976 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11001977 */
Al Virofb1cc552009-12-24 01:58:28 -05001978static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viroc3e380b2011-02-23 13:39:45 -05001979 const struct open_flags *op, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05001980{
Al Viroa1e28032009-12-24 02:12:06 -05001981 struct dentry *dir = nd->path.dentry;
Al Viro6c0d46c2011-03-09 00:59:59 -05001982 struct dentry *dentry;
Al Viroca344a892011-03-09 00:36:45 -05001983 int open_flag = op->open_flag;
Al Viro6c0d46c2011-03-09 00:59:59 -05001984 int will_truncate = open_flag & O_TRUNC;
Al Viroca344a892011-03-09 00:36:45 -05001985 int want_write = 0;
Al Virobcda7652011-03-13 16:42:14 -04001986 int acc_mode = op->acc_mode;
Al Virofb1cc552009-12-24 01:58:28 -05001987 struct file *filp;
Al Viro16c2cd72011-02-22 15:50:10 -05001988 int error;
Al Virofb1cc552009-12-24 01:58:28 -05001989
Al Viroc3e380b2011-02-23 13:39:45 -05001990 nd->flags &= ~LOOKUP_PARENT;
1991 nd->flags |= op->intent;
1992
Al Viro1f36f772009-12-26 10:56:19 -05001993 switch (nd->last_type) {
1994 case LAST_DOTDOT:
Neil Brown176306f2010-05-24 16:57:56 +10001995 case LAST_DOT:
Al Virofe2d35f2011-03-05 22:58:25 -05001996 error = handle_dots(nd, nd->last_type);
1997 if (error)
1998 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05001999 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002000 case LAST_ROOT:
Al Viro9f1fafe2011-03-25 11:00:12 -04002001 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002002 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002003 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002004 audit_inode(pathname, nd->path.dentry);
Al Viroca344a892011-03-09 00:36:45 -05002005 if (open_flag & O_CREAT) {
Al Virofe2d35f2011-03-05 22:58:25 -05002006 error = -EISDIR;
2007 goto exit;
2008 }
2009 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002010 case LAST_BIND:
Al Viro9f1fafe2011-03-25 11:00:12 -04002011 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002012 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002013 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002014 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002015 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002016 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002017
Al Viroca344a892011-03-09 00:36:45 -05002018 if (!(open_flag & O_CREAT)) {
Al Virobcda7652011-03-13 16:42:14 -04002019 int symlink_ok = 0;
Al Virofe2d35f2011-03-05 22:58:25 -05002020 if (nd->last.name[nd->last.len])
2021 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002022 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2023 symlink_ok = 1;
Al Virofe2d35f2011-03-05 22:58:25 -05002024 /* we _can_ be in RCU mode here */
Al Viroce57dfc2011-03-13 19:58:58 -04002025 error = walk_component(nd, path, &nd->last, LAST_NORM,
2026 !symlink_ok);
2027 if (error < 0)
Al Virofe2d35f2011-03-05 22:58:25 -05002028 return ERR_PTR(error);
Al Viroce57dfc2011-03-13 19:58:58 -04002029 if (error) /* symlink */
Al Virofe2d35f2011-03-05 22:58:25 -05002030 return NULL;
Al Virofe2d35f2011-03-05 22:58:25 -05002031 /* sayonara */
Al Viro9f1fafe2011-03-25 11:00:12 -04002032 error = complete_walk(nd);
2033 if (error)
2034 return ERR_PTR(-ECHILD);
Al Virofe2d35f2011-03-05 22:58:25 -05002035
2036 error = -ENOTDIR;
2037 if (nd->flags & LOOKUP_DIRECTORY) {
Al Viroce57dfc2011-03-13 19:58:58 -04002038 if (!nd->inode->i_op->lookup)
Al Virofe2d35f2011-03-05 22:58:25 -05002039 goto exit;
2040 }
2041 audit_inode(pathname, nd->path.dentry);
2042 goto ok;
2043 }
2044
2045 /* create side of things */
Al Viro9f1fafe2011-03-25 11:00:12 -04002046 error = complete_walk(nd);
2047 if (error)
2048 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002049
2050 audit_inode(pathname, dir);
Al Viro16c2cd72011-02-22 15:50:10 -05002051 error = -EISDIR;
Al Viro1f36f772009-12-26 10:56:19 -05002052 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002053 if (nd->last.name[nd->last.len])
2054 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002055
Al Viroa1e28032009-12-24 02:12:06 -05002056 mutex_lock(&dir->d_inode->i_mutex);
2057
Al Viro6c0d46c2011-03-09 00:59:59 -05002058 dentry = lookup_hash(nd);
2059 error = PTR_ERR(dentry);
2060 if (IS_ERR(dentry)) {
Al Virofb1cc552009-12-24 01:58:28 -05002061 mutex_unlock(&dir->d_inode->i_mutex);
2062 goto exit;
2063 }
2064
Al Viro6c0d46c2011-03-09 00:59:59 -05002065 path->dentry = dentry;
2066 path->mnt = nd->path.mnt;
2067
Al Virofb1cc552009-12-24 01:58:28 -05002068 /* Negative dentry, just create the file */
Al Viro6c0d46c2011-03-09 00:59:59 -05002069 if (!dentry->d_inode) {
2070 int mode = op->mode;
2071 if (!IS_POSIXACL(dir->d_inode))
2072 mode &= ~current_umask();
Al Virofb1cc552009-12-24 01:58:28 -05002073 /*
2074 * This write is needed to ensure that a
Al Viro6c0d46c2011-03-09 00:59:59 -05002075 * rw->ro transition does not occur between
Al Virofb1cc552009-12-24 01:58:28 -05002076 * the time when the file is created and when
2077 * a permanent write count is taken through
2078 * the 'struct file' in nameidata_to_filp().
2079 */
2080 error = mnt_want_write(nd->path.mnt);
2081 if (error)
2082 goto exit_mutex_unlock;
Al Viroca344a892011-03-09 00:36:45 -05002083 want_write = 1;
Al Viro9b44f1b2011-03-09 00:17:27 -05002084 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002085 open_flag &= ~O_TRUNC;
Al Viro6c0d46c2011-03-09 00:59:59 -05002086 will_truncate = 0;
Al Virobcda7652011-03-13 16:42:14 -04002087 acc_mode = MAY_OPEN;
Al Viro6c0d46c2011-03-09 00:59:59 -05002088 error = security_path_mknod(&nd->path, dentry, mode, 0);
2089 if (error)
2090 goto exit_mutex_unlock;
2091 error = vfs_create(dir->d_inode, dentry, mode, nd);
2092 if (error)
2093 goto exit_mutex_unlock;
2094 mutex_unlock(&dir->d_inode->i_mutex);
2095 dput(nd->path.dentry);
2096 nd->path.dentry = dentry;
Al Viroca344a892011-03-09 00:36:45 -05002097 goto common;
Al Virofb1cc552009-12-24 01:58:28 -05002098 }
2099
2100 /*
2101 * It already exists.
2102 */
2103 mutex_unlock(&dir->d_inode->i_mutex);
2104 audit_inode(pathname, path->dentry);
2105
2106 error = -EEXIST;
Al Viroca344a892011-03-09 00:36:45 -05002107 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002108 goto exit_dput;
2109
David Howells9875cf82011-01-14 18:45:21 +00002110 error = follow_managed(path, nd->flags);
2111 if (error < 0)
2112 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002113
2114 error = -ENOENT;
2115 if (!path->dentry->d_inode)
2116 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002117
2118 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002119 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002120
2121 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002122 nd->inode = path->dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05002123 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002124 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002125 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002126ok:
Al Viro6c0d46c2011-03-09 00:59:59 -05002127 if (!S_ISREG(nd->inode->i_mode))
2128 will_truncate = 0;
2129
Al Viro0f9d1a12011-03-09 00:13:14 -05002130 if (will_truncate) {
2131 error = mnt_want_write(nd->path.mnt);
2132 if (error)
2133 goto exit;
Al Viroca344a892011-03-09 00:36:45 -05002134 want_write = 1;
Al Viro0f9d1a12011-03-09 00:13:14 -05002135 }
Al Viroca344a892011-03-09 00:36:45 -05002136common:
Al Virobcda7652011-03-13 16:42:14 -04002137 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002138 if (error)
Al Viro0f9d1a12011-03-09 00:13:14 -05002139 goto exit;
Al Viro0f9d1a12011-03-09 00:13:14 -05002140 filp = nameidata_to_filp(nd);
2141 if (!IS_ERR(filp)) {
2142 error = ima_file_check(filp, op->acc_mode);
2143 if (error) {
2144 fput(filp);
2145 filp = ERR_PTR(error);
2146 }
2147 }
2148 if (!IS_ERR(filp)) {
2149 if (will_truncate) {
2150 error = handle_truncate(filp);
2151 if (error) {
2152 fput(filp);
2153 filp = ERR_PTR(error);
2154 }
2155 }
2156 }
Al Viroca344a892011-03-09 00:36:45 -05002157out:
2158 if (want_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002159 mnt_drop_write(nd->path.mnt);
2160 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002161 return filp;
2162
2163exit_mutex_unlock:
2164 mutex_unlock(&dir->d_inode->i_mutex);
2165exit_dput:
2166 path_put_conditional(path, nd);
2167exit:
Al Viroca344a892011-03-09 00:36:45 -05002168 filp = ERR_PTR(error);
2169 goto out;
Al Virofb1cc552009-12-24 01:58:28 -05002170}
2171
Al Viro13aab422011-02-23 17:54:08 -05002172static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002173 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174{
Al Virofe2d35f2011-03-05 22:58:25 -05002175 struct file *base = NULL;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002176 struct file *filp;
Al Viro9850c052010-01-13 15:01:15 -05002177 struct path path;
Al Viro13aab422011-02-23 17:54:08 -05002178 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002179
2180 filp = get_empty_filp();
2181 if (!filp)
2182 return ERR_PTR(-ENFILE);
2183
Al Viro47c805d2011-02-23 17:44:09 -05002184 filp->f_flags = op->open_flag;
Al Viro73d049a2011-03-11 12:08:24 -05002185 nd->intent.open.file = filp;
2186 nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2187 nd->intent.open.create_mode = op->mode;
Nick Piggin31e6b012011-01-07 17:49:52 +11002188
Al Viro73d049a2011-03-11 12:08:24 -05002189 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002190 if (unlikely(error))
Al Viro13aab422011-02-23 17:54:08 -05002191 goto out_filp;
Nick Piggin31e6b012011-01-07 17:49:52 +11002192
Al Virofe2d35f2011-03-05 22:58:25 -05002193 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002194 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002195 if (unlikely(error))
2196 goto out_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
Al Viro73d049a2011-03-11 12:08:24 -05002198 filp = do_last(nd, &path, op, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002199 while (unlikely(!filp)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002200 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05002201 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04002202 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05002203 path_put_conditional(&path, nd);
2204 path_put(&nd->path);
Al Viro40b39132011-03-09 16:22:18 -05002205 filp = ERR_PTR(-ELOOP);
2206 break;
2207 }
Al Viro73d049a2011-03-11 12:08:24 -05002208 nd->flags |= LOOKUP_PARENT;
2209 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04002210 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002211 if (unlikely(error))
Al Virof1afe9e2011-02-22 22:27:28 -05002212 filp = ERR_PTR(error);
Al Viroc3e380b2011-02-23 13:39:45 -05002213 else
Al Viro73d049a2011-03-11 12:08:24 -05002214 filp = do_last(nd, &path, op, pathname);
Al Viro574197e2011-03-14 22:20:34 -04002215 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002216 }
Al Viro10fa8e62009-12-26 07:09:49 -05002217out:
Al Viro73d049a2011-03-11 12:08:24 -05002218 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2219 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002220 if (base)
2221 fput(base);
Al Viro73d049a2011-03-11 12:08:24 -05002222 release_open_intent(nd);
Al Viro10fa8e62009-12-26 07:09:49 -05002223 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224
Nick Piggin31e6b012011-01-07 17:49:52 +11002225out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002226 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002227 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228}
2229
Al Viro13aab422011-02-23 17:54:08 -05002230struct file *do_filp_open(int dfd, const char *pathname,
2231 const struct open_flags *op, int flags)
2232{
Al Viro73d049a2011-03-11 12:08:24 -05002233 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002234 struct file *filp;
2235
Al Viro73d049a2011-03-11 12:08:24 -05002236 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002237 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002238 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002239 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002240 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002241 return filp;
2242}
2243
Al Viro73d049a2011-03-11 12:08:24 -05002244struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2245 const char *name, const struct open_flags *op, int flags)
2246{
2247 struct nameidata nd;
2248 struct file *file;
2249
2250 nd.root.mnt = mnt;
2251 nd.root.dentry = dentry;
2252
2253 flags |= LOOKUP_ROOT;
2254
Al Virobcda7652011-03-13 16:42:14 -04002255 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002256 return ERR_PTR(-ELOOP);
2257
2258 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2259 if (unlikely(file == ERR_PTR(-ECHILD)))
2260 file = path_openat(-1, name, &nd, op, flags);
2261 if (unlikely(file == ERR_PTR(-ESTALE)))
2262 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2263 return file;
2264}
2265
Al Viroed75e952011-06-27 16:53:43 -04002266struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path, int is_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002268 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viroed75e952011-06-27 16:53:43 -04002269 struct nameidata nd;
2270 int error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd);
2271 if (error)
2272 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002274 /*
2275 * Yucky last component or no last component at all?
2276 * (foo/., foo/.., /////)
2277 */
Al Viroed75e952011-06-27 16:53:43 -04002278 if (nd.last_type != LAST_NORM)
2279 goto out;
2280 nd.flags &= ~LOOKUP_PARENT;
2281 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
2282 nd.intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002283
2284 /*
2285 * Do the final lookup.
2286 */
Al Viroed75e952011-06-27 16:53:43 -04002287 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2288 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 if (IS_ERR(dentry))
2290 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002291
Al Viroe9baf6e2008-05-15 04:49:12 -04002292 if (dentry->d_inode)
2293 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002294 /*
2295 * Special case - lookup gave negative, but... we had foo/bar/
2296 * From the vfs_mknod() POV we just have a negative dentry -
2297 * all is fine. Let's be bastards - you had / on the end, you've
2298 * been asking for (non-existent) directory. -ENOENT for you.
2299 */
Al Viroed75e952011-06-27 16:53:43 -04002300 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
Al Viroe9baf6e2008-05-15 04:49:12 -04002301 dput(dentry);
2302 dentry = ERR_PTR(-ENOENT);
Al Viroed75e952011-06-27 16:53:43 -04002303 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04002304 }
Al Viroed75e952011-06-27 16:53:43 -04002305 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002307eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002309 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310fail:
Al Viroed75e952011-06-27 16:53:43 -04002311 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2312out:
2313 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 return dentry;
2315}
Al Virodae6ad82011-06-26 11:50:15 -04002316EXPORT_SYMBOL(kern_path_create);
2317
2318struct dentry *user_path_create(int dfd, const char __user *pathname, struct path *path, int is_dir)
2319{
2320 char *tmp = getname(pathname);
2321 struct dentry *res;
2322 if (IS_ERR(tmp))
2323 return ERR_CAST(tmp);
2324 res = kern_path_create(dfd, tmp, path, is_dir);
2325 putname(tmp);
2326 return res;
2327}
2328EXPORT_SYMBOL(user_path_create);
2329
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2331{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002332 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
2334 if (error)
2335 return error;
2336
Serge E. Hallyne795b712011-03-23 16:43:25 -07002337 if ((S_ISCHR(mode) || S_ISBLK(mode)) &&
2338 !ns_capable(inode_userns(dir), CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 return -EPERM;
2340
Al Viroacfa4382008-12-04 10:06:33 -05002341 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 return -EPERM;
2343
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002344 error = devcgroup_inode_mknod(mode, dev);
2345 if (error)
2346 return error;
2347
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 error = security_inode_mknod(dir, dentry, mode, dev);
2349 if (error)
2350 return error;
2351
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002353 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002354 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 return error;
2356}
2357
Dave Hansen463c3192008-02-15 14:37:57 -08002358static int may_mknod(mode_t mode)
2359{
2360 switch (mode & S_IFMT) {
2361 case S_IFREG:
2362 case S_IFCHR:
2363 case S_IFBLK:
2364 case S_IFIFO:
2365 case S_IFSOCK:
2366 case 0: /* zero mode translates to S_IFREG */
2367 return 0;
2368 case S_IFDIR:
2369 return -EPERM;
2370 default:
2371 return -EINVAL;
2372 }
2373}
2374
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002375SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2376 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377{
Al Viro2ad94ae2008-07-21 09:32:51 -04002378 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002379 struct path path;
2380 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381
2382 if (S_ISDIR(mode))
2383 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
Al Virodae6ad82011-06-26 11:50:15 -04002385 dentry = user_path_create(dfd, filename, &path, 0);
2386 if (IS_ERR(dentry))
2387 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04002388
Al Virodae6ad82011-06-26 11:50:15 -04002389 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002390 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002391 error = may_mknod(mode);
2392 if (error)
2393 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002394 error = mnt_want_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002395 if (error)
2396 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002397 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002398 if (error)
2399 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002400 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 case 0: case S_IFREG:
Al Virodae6ad82011-06-26 11:50:15 -04002402 error = vfs_create(path.dentry->d_inode,dentry,mode,NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 break;
2404 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04002405 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 new_decode_dev(dev));
2407 break;
2408 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04002409 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002412out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002413 mnt_drop_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002414out_dput:
2415 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002416 mutex_unlock(&path.dentry->d_inode->i_mutex);
2417 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
2419 return error;
2420}
2421
Heiko Carstens3480b252009-01-14 14:14:16 +01002422SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002423{
2424 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2425}
2426
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2428{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002429 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
2431 if (error)
2432 return error;
2433
Al Viroacfa4382008-12-04 10:06:33 -05002434 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 return -EPERM;
2436
2437 mode &= (S_IRWXUGO|S_ISVTX);
2438 error = security_inode_mkdir(dir, dentry, mode);
2439 if (error)
2440 return error;
2441
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002443 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002444 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 return error;
2446}
2447
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002448SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449{
Dave Hansen6902d922006-09-30 23:29:01 -07002450 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002451 struct path path;
2452 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Al Virodae6ad82011-06-26 11:50:15 -04002454 dentry = user_path_create(dfd, pathname, &path, 1);
Dave Hansen6902d922006-09-30 23:29:01 -07002455 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04002456 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002457
Al Virodae6ad82011-06-26 11:50:15 -04002458 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002459 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04002460 error = mnt_want_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002461 if (error)
2462 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002463 error = security_path_mkdir(&path, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002464 if (error)
2465 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04002466 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002467out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002468 mnt_drop_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002469out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002470 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002471 mutex_unlock(&path.dentry->d_inode->i_mutex);
2472 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 return error;
2474}
2475
Heiko Carstens3cdad422009-01-14 14:14:22 +01002476SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002477{
2478 return sys_mkdirat(AT_FDCWD, pathname, mode);
2479}
2480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481/*
Sage Weila71905f2011-05-24 13:06:08 -07002482 * The dentry_unhash() helper will try to drop the dentry early: we
2483 * should have a usage count of 2 if we're the only user of this
2484 * dentry, and if that is true (possibly after pruning the dcache),
2485 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 *
2487 * A low-level filesystem can, if it choses, legally
2488 * do a
2489 *
2490 * if (!d_unhashed(dentry))
2491 * return -EBUSY;
2492 *
2493 * if it cannot handle the case of removing a directory
2494 * that is still in use by something else..
2495 */
2496void dentry_unhash(struct dentry *dentry)
2497{
Vasily Averindc168422006-12-06 20:37:07 -08002498 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 spin_lock(&dentry->d_lock);
Sage Weil64252c72011-05-24 13:06:05 -07002500 if (dentry->d_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 __d_drop(dentry);
2502 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503}
2504
2505int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2506{
2507 int error = may_delete(dir, dentry, 1);
2508
2509 if (error)
2510 return error;
2511
Al Viroacfa4382008-12-04 10:06:33 -05002512 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 return -EPERM;
2514
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002515 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
Sage Weil912dbc12011-05-24 13:06:11 -07002517 error = -EBUSY;
2518 if (d_mountpoint(dentry))
2519 goto out;
2520
2521 error = security_inode_rmdir(dir, dentry);
2522 if (error)
2523 goto out;
2524
Sage Weil3cebde22011-05-29 21:20:59 -07002525 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07002526 error = dir->i_op->rmdir(dir, dentry);
2527 if (error)
2528 goto out;
2529
2530 dentry->d_inode->i_flags |= S_DEAD;
2531 dont_mount(dentry);
2532
2533out:
2534 mutex_unlock(&dentry->d_inode->i_mutex);
2535 if (!error)
2536 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 return error;
2538}
2539
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002540static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541{
2542 int error = 0;
2543 char * name;
2544 struct dentry *dentry;
2545 struct nameidata nd;
2546
Al Viro2ad94ae2008-07-21 09:32:51 -04002547 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002549 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550
2551 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002552 case LAST_DOTDOT:
2553 error = -ENOTEMPTY;
2554 goto exit1;
2555 case LAST_DOT:
2556 error = -EINVAL;
2557 goto exit1;
2558 case LAST_ROOT:
2559 error = -EBUSY;
2560 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002562
2563 nd.flags &= ~LOOKUP_PARENT;
2564
Jan Blunck4ac91372008-02-14 19:34:32 -08002565 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002566 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002568 if (IS_ERR(dentry))
2569 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002570 if (!dentry->d_inode) {
2571 error = -ENOENT;
2572 goto exit3;
2573 }
Dave Hansen06227532008-02-15 14:37:34 -08002574 error = mnt_want_write(nd.path.mnt);
2575 if (error)
2576 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002577 error = security_path_rmdir(&nd.path, dentry);
2578 if (error)
2579 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002580 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002581exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002582 mnt_drop_write(nd.path.mnt);
2583exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002584 dput(dentry);
2585exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002586 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002588 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 putname(name);
2590 return error;
2591}
2592
Heiko Carstens3cdad422009-01-14 14:14:22 +01002593SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002594{
2595 return do_rmdir(AT_FDCWD, pathname);
2596}
2597
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598int vfs_unlink(struct inode *dir, struct dentry *dentry)
2599{
2600 int error = may_delete(dir, dentry, 0);
2601
2602 if (error)
2603 return error;
2604
Al Viroacfa4382008-12-04 10:06:33 -05002605 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 return -EPERM;
2607
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002608 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 if (d_mountpoint(dentry))
2610 error = -EBUSY;
2611 else {
2612 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002613 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002615 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002616 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002619 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
2621 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2622 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002623 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 }
Robert Love0eeca282005-07-12 17:06:03 -04002626
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 return error;
2628}
2629
2630/*
2631 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002632 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 * writeout happening, and we don't want to prevent access to the directory
2634 * while waiting on the I/O.
2635 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002636static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637{
Al Viro2ad94ae2008-07-21 09:32:51 -04002638 int error;
2639 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 struct dentry *dentry;
2641 struct nameidata nd;
2642 struct inode *inode = NULL;
2643
Al Viro2ad94ae2008-07-21 09:32:51 -04002644 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002646 return error;
2647
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 error = -EISDIR;
2649 if (nd.last_type != LAST_NORM)
2650 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002651
2652 nd.flags &= ~LOOKUP_PARENT;
2653
Jan Blunck4ac91372008-02-14 19:34:32 -08002654 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002655 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 error = PTR_ERR(dentry);
2657 if (!IS_ERR(dentry)) {
2658 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03002659 if (nd.last.name[nd.last.len])
2660 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 inode = dentry->d_inode;
Török Edwin50338b82011-06-16 00:06:14 +03002662 if (!inode)
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002663 goto slashes;
2664 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002665 error = mnt_want_write(nd.path.mnt);
2666 if (error)
2667 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002668 error = security_path_unlink(&nd.path, dentry);
2669 if (error)
2670 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002671 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002672exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002673 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 exit2:
2675 dput(dentry);
2676 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002677 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 if (inode)
2679 iput(inode); /* truncate the inode here */
2680exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002681 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 putname(name);
2683 return error;
2684
2685slashes:
2686 error = !dentry->d_inode ? -ENOENT :
2687 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2688 goto exit2;
2689}
2690
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002691SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002692{
2693 if ((flag & ~AT_REMOVEDIR) != 0)
2694 return -EINVAL;
2695
2696 if (flag & AT_REMOVEDIR)
2697 return do_rmdir(dfd, pathname);
2698
2699 return do_unlinkat(dfd, pathname);
2700}
2701
Heiko Carstens3480b252009-01-14 14:14:16 +01002702SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002703{
2704 return do_unlinkat(AT_FDCWD, pathname);
2705}
2706
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002707int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002709 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
2711 if (error)
2712 return error;
2713
Al Viroacfa4382008-12-04 10:06:33 -05002714 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 return -EPERM;
2716
2717 error = security_inode_symlink(dir, dentry, oldname);
2718 if (error)
2719 return error;
2720
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002722 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002723 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 return error;
2725}
2726
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002727SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2728 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729{
Al Viro2ad94ae2008-07-21 09:32:51 -04002730 int error;
2731 char *from;
Dave Hansen6902d922006-09-30 23:29:01 -07002732 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002733 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734
2735 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002736 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002738
Al Virodae6ad82011-06-26 11:50:15 -04002739 dentry = user_path_create(newdfd, newname, &path, 0);
Dave Hansen6902d922006-09-30 23:29:01 -07002740 error = PTR_ERR(dentry);
2741 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04002742 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07002743
Al Virodae6ad82011-06-26 11:50:15 -04002744 error = mnt_want_write(path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002745 if (error)
2746 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002747 error = security_path_symlink(&path, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002748 if (error)
2749 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04002750 error = vfs_symlink(path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002751out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002752 mnt_drop_write(path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002753out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002754 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002755 mutex_unlock(&path.dentry->d_inode->i_mutex);
2756 path_put(&path);
Dave Hansen6902d922006-09-30 23:29:01 -07002757out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 putname(from);
2759 return error;
2760}
2761
Heiko Carstens3480b252009-01-14 14:14:16 +01002762SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002763{
2764 return sys_symlinkat(oldname, AT_FDCWD, newname);
2765}
2766
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2768{
2769 struct inode *inode = old_dentry->d_inode;
2770 int error;
2771
2772 if (!inode)
2773 return -ENOENT;
2774
Miklos Szeredia95164d2008-07-30 15:08:48 +02002775 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 if (error)
2777 return error;
2778
2779 if (dir->i_sb != inode->i_sb)
2780 return -EXDEV;
2781
2782 /*
2783 * A link to an append-only or immutable file cannot be created.
2784 */
2785 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2786 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05002787 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002789 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 return -EPERM;
2791
2792 error = security_inode_link(old_dentry, dir, new_dentry);
2793 if (error)
2794 return error;
2795
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002796 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05302797 /* Make sure we don't allow creating hardlink to an unlinked file */
2798 if (inode->i_nlink == 0)
2799 error = -ENOENT;
2800 else
2801 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002802 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002803 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002804 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 return error;
2806}
2807
2808/*
2809 * Hardlinks are often used in delicate situations. We avoid
2810 * security-related surprises by not following symlinks on the
2811 * newname. --KAB
2812 *
2813 * We don't follow them on the oldname either to be compatible
2814 * with linux 2.0, and to avoid hard-linking to directories
2815 * and other special files. --ADM
2816 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002817SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2818 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819{
2820 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002821 struct path old_path, new_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302822 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302825 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002826 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302827 /*
2828 * To use null names we require CAP_DAC_READ_SEARCH
2829 * This ensures that not everyone will be able to create
2830 * handlink using the passed filedescriptor.
2831 */
2832 if (flags & AT_EMPTY_PATH) {
2833 if (!capable(CAP_DAC_READ_SEARCH))
2834 return -ENOENT;
2835 how = LOOKUP_EMPTY;
2836 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002837
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302838 if (flags & AT_SYMLINK_FOLLOW)
2839 how |= LOOKUP_FOLLOW;
2840
2841 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002843 return error;
2844
Al Virodae6ad82011-06-26 11:50:15 -04002845 new_dentry = user_path_create(newdfd, newname, &new_path, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002847 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04002848 goto out;
2849
2850 error = -EXDEV;
2851 if (old_path.mnt != new_path.mnt)
2852 goto out_dput;
2853 error = mnt_want_write(new_path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002854 if (error)
2855 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002856 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002857 if (error)
2858 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04002859 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002860out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002861 mnt_drop_write(new_path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002862out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002863 dput(new_dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002864 mutex_unlock(&new_path.dentry->d_inode->i_mutex);
2865 path_put(&new_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866out:
Al Viro2d8f3032008-07-22 09:59:21 -04002867 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
2869 return error;
2870}
2871
Heiko Carstens3480b252009-01-14 14:14:16 +01002872SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002873{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002874 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002875}
2876
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877/*
2878 * The worst of all namespace operations - renaming directory. "Perverted"
2879 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2880 * Problems:
2881 * a) we can get into loop creation. Check is done in is_subdir().
2882 * b) race potential - two innocent renames can create a loop together.
2883 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002884 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 * story.
2886 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002887 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 * whether the target exists). Solution: try to be smart with locking
2889 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002890 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 * move will be locked. Thus we can rank directories by the tree
2892 * (ancestors first) and rank all non-directories after them.
2893 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002894 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 * HOWEVER, it relies on the assumption that any object with ->lookup()
2896 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2897 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07002898 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002899 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05002901 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 * locking].
2903 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07002904static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
2905 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906{
2907 int error = 0;
Sage Weil9055cba2011-05-24 13:06:12 -07002908 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
2910 /*
2911 * If we are going to change the parent - check write permissions,
2912 * we'll need to flip '..'.
2913 */
2914 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04002915 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 if (error)
2917 return error;
2918 }
2919
2920 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2921 if (error)
2922 return error;
2923
Al Virod83c49f2010-04-30 17:17:09 -04002924 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002925 mutex_lock(&target->i_mutex);
Sage Weil9055cba2011-05-24 13:06:12 -07002926
2927 error = -EBUSY;
2928 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
2929 goto out;
2930
Sage Weil3cebde22011-05-29 21:20:59 -07002931 if (target)
2932 shrink_dcache_parent(new_dentry);
Sage Weil9055cba2011-05-24 13:06:12 -07002933 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2934 if (error)
2935 goto out;
2936
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 if (target) {
Sage Weil9055cba2011-05-24 13:06:12 -07002938 target->i_flags |= S_DEAD;
2939 dont_mount(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 }
Sage Weil9055cba2011-05-24 13:06:12 -07002941out:
2942 if (target)
2943 mutex_unlock(&target->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002944 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07002945 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2946 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 return error;
2948}
2949
Adrian Bunk75c96f82005-05-05 16:16:09 -07002950static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
2951 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952{
Sage Weil51892bb2011-05-24 13:06:13 -07002953 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 int error;
2955
2956 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
2957 if (error)
2958 return error;
2959
2960 dget(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002962 mutex_lock(&target->i_mutex);
Sage Weil51892bb2011-05-24 13:06:13 -07002963
2964 error = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
Sage Weil51892bb2011-05-24 13:06:13 -07002966 goto out;
2967
2968 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
2969 if (error)
2970 goto out;
2971
2972 if (target)
2973 dont_mount(new_dentry);
2974 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
2975 d_move(old_dentry, new_dentry);
2976out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002978 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 dput(new_dentry);
2980 return error;
2981}
2982
2983int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
2984 struct inode *new_dir, struct dentry *new_dentry)
2985{
2986 int error;
2987 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05002988 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989
2990 if (old_dentry->d_inode == new_dentry->d_inode)
2991 return 0;
2992
2993 error = may_delete(old_dir, old_dentry, is_dir);
2994 if (error)
2995 return error;
2996
2997 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02002998 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 else
3000 error = may_delete(new_dir, new_dentry, is_dir);
3001 if (error)
3002 return error;
3003
Al Viroacfa4382008-12-04 10:06:33 -05003004 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 return -EPERM;
3006
Robert Love0eeca282005-07-12 17:06:03 -04003007 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3008
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009 if (is_dir)
3010 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3011 else
3012 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003013 if (!error)
3014 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003015 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003016 fsnotify_oldname_free(old_name);
3017
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 return error;
3019}
3020
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003021SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3022 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023{
Al Viro2ad94ae2008-07-21 09:32:51 -04003024 struct dentry *old_dir, *new_dir;
3025 struct dentry *old_dentry, *new_dentry;
3026 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003028 char *from;
3029 char *to;
3030 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031
Al Viro2ad94ae2008-07-21 09:32:51 -04003032 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 if (error)
3034 goto exit;
3035
Al Viro2ad94ae2008-07-21 09:32:51 -04003036 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 if (error)
3038 goto exit1;
3039
3040 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003041 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 goto exit2;
3043
Jan Blunck4ac91372008-02-14 19:34:32 -08003044 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 error = -EBUSY;
3046 if (oldnd.last_type != LAST_NORM)
3047 goto exit2;
3048
Jan Blunck4ac91372008-02-14 19:34:32 -08003049 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 if (newnd.last_type != LAST_NORM)
3051 goto exit2;
3052
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003053 oldnd.flags &= ~LOOKUP_PARENT;
3054 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003055 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003056
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 trap = lock_rename(new_dir, old_dir);
3058
Christoph Hellwig49705b72005-11-08 21:35:06 -08003059 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 error = PTR_ERR(old_dentry);
3061 if (IS_ERR(old_dentry))
3062 goto exit3;
3063 /* source must exist */
3064 error = -ENOENT;
3065 if (!old_dentry->d_inode)
3066 goto exit4;
3067 /* unless the source is a directory trailing slashes give -ENOTDIR */
3068 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3069 error = -ENOTDIR;
3070 if (oldnd.last.name[oldnd.last.len])
3071 goto exit4;
3072 if (newnd.last.name[newnd.last.len])
3073 goto exit4;
3074 }
3075 /* source should not be ancestor of target */
3076 error = -EINVAL;
3077 if (old_dentry == trap)
3078 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003079 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 error = PTR_ERR(new_dentry);
3081 if (IS_ERR(new_dentry))
3082 goto exit4;
3083 /* target should not be an ancestor of source */
3084 error = -ENOTEMPTY;
3085 if (new_dentry == trap)
3086 goto exit5;
3087
Dave Hansen9079b1e2008-02-15 14:37:49 -08003088 error = mnt_want_write(oldnd.path.mnt);
3089 if (error)
3090 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003091 error = security_path_rename(&oldnd.path, old_dentry,
3092 &newnd.path, new_dentry);
3093 if (error)
3094 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 error = vfs_rename(old_dir->d_inode, old_dentry,
3096 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003097exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003098 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099exit5:
3100 dput(new_dentry);
3101exit4:
3102 dput(old_dentry);
3103exit3:
3104 unlock_rename(new_dir, old_dir);
3105exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003106 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003107 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003109 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003111exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 return error;
3113}
3114
Heiko Carstensa26eab22009-01-14 14:14:17 +01003115SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003116{
3117 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3118}
3119
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3121{
3122 int len;
3123
3124 len = PTR_ERR(link);
3125 if (IS_ERR(link))
3126 goto out;
3127
3128 len = strlen(link);
3129 if (len > (unsigned) buflen)
3130 len = buflen;
3131 if (copy_to_user(buffer, link, len))
3132 len = -EFAULT;
3133out:
3134 return len;
3135}
3136
3137/*
3138 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3139 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3140 * using) it for any given inode is up to filesystem.
3141 */
3142int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3143{
3144 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003145 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003146 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003147
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003149 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003150 if (IS_ERR(cookie))
3151 return PTR_ERR(cookie);
3152
3153 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3154 if (dentry->d_inode->i_op->put_link)
3155 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3156 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157}
3158
3159int vfs_follow_link(struct nameidata *nd, const char *link)
3160{
3161 return __vfs_follow_link(nd, link);
3162}
3163
3164/* get the link contents into pagecache */
3165static char *page_getlink(struct dentry * dentry, struct page **ppage)
3166{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003167 char *kaddr;
3168 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003170 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003172 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003174 kaddr = kmap(page);
3175 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3176 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177}
3178
3179int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3180{
3181 struct page *page = NULL;
3182 char *s = page_getlink(dentry, &page);
3183 int res = vfs_readlink(dentry,buffer,buflen,s);
3184 if (page) {
3185 kunmap(page);
3186 page_cache_release(page);
3187 }
3188 return res;
3189}
3190
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003191void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003193 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003195 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196}
3197
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003198void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003200 struct page *page = cookie;
3201
3202 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 kunmap(page);
3204 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 }
3206}
3207
Nick Piggin54566b22009-01-04 12:00:53 -08003208/*
3209 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3210 */
3211int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212{
3213 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003214 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003215 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003216 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003218 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3219 if (nofs)
3220 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221
NeilBrown7e53cac2006-03-25 03:07:57 -08003222retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003223 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003224 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003226 goto fail;
3227
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 kaddr = kmap_atomic(page, KM_USER0);
3229 memcpy(kaddr, symname, len-1);
3230 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07003231
3232 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3233 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 if (err < 0)
3235 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003236 if (err < len-1)
3237 goto retry;
3238
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 mark_inode_dirty(inode);
3240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241fail:
3242 return err;
3243}
3244
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003245int page_symlink(struct inode *inode, const char *symname, int len)
3246{
3247 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003248 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003249}
3250
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003251const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 .readlink = generic_readlink,
3253 .follow_link = page_follow_link_light,
3254 .put_link = page_put_link,
3255};
3256
Al Viro2d8f3032008-07-22 09:59:21 -04003257EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003258EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259EXPORT_SYMBOL(follow_down);
3260EXPORT_SYMBOL(follow_up);
3261EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3262EXPORT_SYMBOL(getname);
3263EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264EXPORT_SYMBOL(lookup_one_len);
3265EXPORT_SYMBOL(page_follow_link_light);
3266EXPORT_SYMBOL(page_put_link);
3267EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003268EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269EXPORT_SYMBOL(page_symlink);
3270EXPORT_SYMBOL(page_symlink_inode_operations);
Al Virod1811462008-08-02 00:49:18 -04003271EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003272EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003273EXPORT_SYMBOL(inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003274EXPORT_SYMBOL(unlock_rename);
3275EXPORT_SYMBOL(vfs_create);
3276EXPORT_SYMBOL(vfs_follow_link);
3277EXPORT_SYMBOL(vfs_link);
3278EXPORT_SYMBOL(vfs_mkdir);
3279EXPORT_SYMBOL(vfs_mknod);
3280EXPORT_SYMBOL(generic_permission);
3281EXPORT_SYMBOL(vfs_readlink);
3282EXPORT_SYMBOL(vfs_rename);
3283EXPORT_SYMBOL(vfs_rmdir);
3284EXPORT_SYMBOL(vfs_symlink);
3285EXPORT_SYMBOL(vfs_unlink);
3286EXPORT_SYMBOL(dentry_unhash);
3287EXPORT_SYMBOL(generic_readlink);