blob: 4ad2b781a65c063ed66b74391e24bdc1a884cd2f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/namei.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/*
8 * Some corrections by tytso.
9 */
10
11/* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
12 * lookup logic.
13 */
14/* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
15 */
16
17#include <linux/init.h>
18#include <linux/module.h>
19#include <linux/slab.h>
20#include <linux/fs.h>
21#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/pagemap.h>
Robert Love0eeca282005-07-12 17:06:03 -040023#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/personality.h>
25#include <linux/security.h>
Mimi Zohar6146f0d2009-02-04 09:06:57 -050026#include <linux/ima.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/syscalls.h>
28#include <linux/mount.h>
29#include <linux/audit.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080030#include <linux/capability.h>
Trond Myklebust834f2a42005-10-18 14:20:16 -070031#include <linux/file.h>
Ulrich Drepper5590ff02006-01-18 17:43:53 -080032#include <linux/fcntl.h>
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070033#include <linux/device_cgroup.h>
Al Viro5ad4e532009-03-29 19:50:06 -040034#include <linux/fs_struct.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/uaccess.h>
36
Eric Parise81e3f42009-12-04 15:47:36 -050037#include "internal.h"
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/* [Feb-1997 T. Schoebel-Theuer]
40 * Fundamental changes in the pathname lookup mechanisms (namei)
41 * were necessary because of omirr. The reason is that omirr needs
42 * to know the _real_ pathname, not the user-supplied one, in case
43 * of symlinks (and also when transname replacements occur).
44 *
45 * The new code replaces the old recursive symlink resolution with
46 * an iterative one (in case of non-nested symlink chains). It does
47 * this with calls to <fs>_follow_link().
48 * As a side effect, dir_namei(), _namei() and follow_link() are now
49 * replaced with a single function lookup_dentry() that can handle all
50 * the special cases of the former code.
51 *
52 * With the new dcache, the pathname is stored at each inode, at least as
53 * long as the refcount of the inode is positive. As a side effect, the
54 * size of the dcache depends on the inode cache and thus is dynamic.
55 *
56 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
57 * resolution to correspond with current state of the code.
58 *
59 * Note that the symlink resolution is not *completely* iterative.
60 * There is still a significant amount of tail- and mid- recursion in
61 * the algorithm. Also, note that <fs>_readlink() is not used in
62 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
63 * may return different results than <fs>_follow_link(). Many virtual
64 * filesystems (including /proc) exhibit this behavior.
65 */
66
67/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
68 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
69 * and the name already exists in form of a symlink, try to create the new
70 * name indicated by the symlink. The old code always complained that the
71 * name already exists, due to not following the symlink even if its target
72 * is nonexistent. The new semantics affects also mknod() and link() when
Lucas De Marchi25985ed2011-03-30 22:57:33 -030073 * the name is a symlink pointing to a non-existent name.
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 *
75 * I don't know which semantics is the right one, since I have no access
76 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
77 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
78 * "old" one. Personally, I think the new semantics is much more logical.
79 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
80 * file does succeed in both HP-UX and SunOs, but not in Solaris
81 * and in the old Linux semantics.
82 */
83
84/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
85 * semantics. See the comments in "open_namei" and "do_link" below.
86 *
87 * [10-Sep-98 Alan Modra] Another symlink change.
88 */
89
90/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
91 * inside the path - always follow.
92 * in the last component in creation/removal/renaming - never follow.
93 * if LOOKUP_FOLLOW passed - follow.
94 * if the pathname has trailing slashes - follow.
95 * otherwise - don't follow.
96 * (applied in that order).
97 *
98 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
99 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
100 * During the 2.4 we need to fix the userland stuff depending on it -
101 * hopefully we will be able to get rid of that wart in 2.5. So far only
102 * XEmacs seems to be relying on it...
103 */
104/*
105 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800106 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * any extra contention...
108 */
109
110/* In order to reduce some races, while at the same time doing additional
111 * checking and hopefully speeding things up, we copy filenames to the
112 * kernel data space before using them..
113 *
114 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
115 * PATH_MAX includes the nul terminator --RR.
116 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800117static int do_getname(const char __user *filename, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 int retval;
120 unsigned long len = PATH_MAX;
121
122 if (!segment_eq(get_fs(), KERNEL_DS)) {
123 if ((unsigned long) filename >= TASK_SIZE)
124 return -EFAULT;
125 if (TASK_SIZE - (unsigned long) filename < PATH_MAX)
126 len = TASK_SIZE - (unsigned long) filename;
127 }
128
129 retval = strncpy_from_user(page, filename, len);
130 if (retval > 0) {
131 if (retval < len)
132 return 0;
133 return -ENAMETOOLONG;
134 } else if (!retval)
135 retval = -ENOENT;
136 return retval;
137}
138
Al Virof52e0c12011-03-14 18:56:51 -0400139static char *getname_flags(const char __user * filename, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 char *tmp, *result;
142
143 result = ERR_PTR(-ENOMEM);
144 tmp = __getname();
145 if (tmp) {
146 int retval = do_getname(filename, tmp);
147
148 result = tmp;
149 if (retval < 0) {
Al Virof52e0c12011-03-14 18:56:51 -0400150 if (retval != -ENOENT || !(flags & LOOKUP_EMPTY)) {
151 __putname(tmp);
152 result = ERR_PTR(retval);
153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 }
155 }
156 audit_getname(result);
157 return result;
158}
159
Al Virof52e0c12011-03-14 18:56:51 -0400160char *getname(const char __user * filename)
161{
162 return getname_flags(filename, 0);
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#ifdef CONFIG_AUDITSYSCALL
166void putname(const char *name)
167{
Al Viro5ac3a9c2006-07-16 06:38:45 -0400168 if (unlikely(!audit_dummy_context()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 audit_putname(name);
170 else
171 __putname(name);
172}
173EXPORT_SYMBOL(putname);
174#endif
175
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700176/*
177 * This does basic POSIX ACL permission checking
178 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100179static int acl_permission_check(struct inode *inode, int mask, unsigned int flags,
180 int (*check_acl)(struct inode *inode, int mask, unsigned int flags))
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700181{
Linus Torvalds26cf46b2011-05-13 11:51:01 -0700182 unsigned int mode = inode->i_mode;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700183
184 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
185
Serge E. Hallyne795b712011-03-23 16:43:25 -0700186 if (current_user_ns() != inode_userns(inode))
187 goto other_perms;
188
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700189 if (current_fsuid() == inode->i_uid)
190 mode >>= 6;
191 else {
192 if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
Nick Pigginb74c79e2011-01-07 17:49:58 +1100193 int error = check_acl(inode, mask, flags);
194 if (error != -EAGAIN)
195 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700196 }
197
198 if (in_group_p(inode->i_gid))
199 mode >>= 3;
200 }
201
Serge E. Hallyne795b712011-03-23 16:43:25 -0700202other_perms:
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700203 /*
204 * If the DACs are ok we don't need any capability check.
205 */
206 if ((mask & ~mode) == 0)
207 return 0;
208 return -EACCES;
209}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100212 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 * @inode: inode to check access rights for
214 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
215 * @check_acl: optional callback to check for Posix ACLs
Randy Dunlap39191622011-01-08 19:36:21 -0800216 * @flags: IPERM_FLAG_ flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 *
218 * Used to check for read/write/execute permissions on a file.
219 * We use "fsuid" for this, letting us set arbitrary permissions
220 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100221 * are used for other things.
222 *
223 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
224 * request cannot be satisfied (eg. requires blocking or too much complexity).
225 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100227int generic_permission(struct inode *inode, int mask, unsigned int flags,
228 int (*check_acl)(struct inode *inode, int mask, unsigned int flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700230 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 /*
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700233 * Do the basic POSIX ACL permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100235 ret = acl_permission_check(inode, mask, flags, check_acl);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700236 if (ret != -EACCES)
237 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 /*
240 * Read/write DACs are always overridable.
Al Viro8e833fd2011-06-19 01:56:53 -0400241 * Executable DACs are overridable for all directories and
242 * for non-directories that have least one exec bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200244 if (!(mask & MAY_EXEC) || execute_ok(inode))
Serge E. Hallyne795b712011-03-23 16:43:25 -0700245 if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 return 0;
247
248 /*
249 * Searching includes executable on directories, else just read.
250 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600251 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
Serge E. Hallyne795b712011-03-23 16:43:25 -0700253 if (ns_capable(inode_userns(inode), CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 return 0;
255
256 return -EACCES;
257}
258
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200259/**
260 * inode_permission - check for access rights to a given inode
261 * @inode: inode to check permission on
262 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
263 *
264 * Used to check for read/write/execute permissions on an inode.
265 * We use "fsuid" for this, letting us set arbitrary permissions
266 * for filesystem access without changing the "normal" uids which
267 * are used for other things.
268 */
Al Virof419a2e2008-07-22 00:07:17 -0400269int inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Al Viroe6305c42008-07-15 21:03:57 -0400271 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273 if (mask & MAY_WRITE) {
Miklos Szeredi22590e42007-10-16 23:27:08 -0700274 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 /*
277 * Nobody gets write access to a read-only fs.
278 */
279 if (IS_RDONLY(inode) &&
280 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
281 return -EROFS;
282
283 /*
284 * Nobody gets write access to an immutable file.
285 */
286 if (IS_IMMUTABLE(inode))
287 return -EACCES;
288 }
289
Al Viroacfa4382008-12-04 10:06:33 -0500290 if (inode->i_op->permission)
Nick Pigginb74c79e2011-01-07 17:49:58 +1100291 retval = inode->i_op->permission(inode, mask, 0);
Miklos Szeredif696a362008-07-31 13:41:58 +0200292 else
Nick Pigginb74c79e2011-01-07 17:49:58 +1100293 retval = generic_permission(inode, mask, 0,
294 inode->i_op->check_acl);
Miklos Szeredif696a362008-07-31 13:41:58 +0200295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if (retval)
297 return retval;
298
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700299 retval = devcgroup_inode_permission(inode, mask);
300 if (retval)
301 return retval;
302
Eric Parisd09ca732010-07-23 11:43:57 -0400303 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304}
305
306/*
307 * get_write_access() gets write permission for a file.
308 * put_write_access() releases this write permission.
309 * This is used for regular files.
310 * We cannot support write (and maybe mmap read-write shared) accesses and
311 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
312 * can have the following values:
313 * 0: no writers, no VM_DENYWRITE mappings
314 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
315 * > 0: (i_writecount) users are writing to the file.
316 *
317 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
318 * except for the cases where we don't hold i_writecount yet. Then we need to
319 * use {get,deny}_write_access() - these functions check the sign and refuse
320 * to do the change if sign is wrong. Exclusion between them is provided by
321 * the inode->i_lock spinlock.
322 */
323
324int get_write_access(struct inode * inode)
325{
326 spin_lock(&inode->i_lock);
327 if (atomic_read(&inode->i_writecount) < 0) {
328 spin_unlock(&inode->i_lock);
329 return -ETXTBSY;
330 }
331 atomic_inc(&inode->i_writecount);
332 spin_unlock(&inode->i_lock);
333
334 return 0;
335}
336
337int deny_write_access(struct file * file)
338{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800339 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 spin_lock(&inode->i_lock);
342 if (atomic_read(&inode->i_writecount) > 0) {
343 spin_unlock(&inode->i_lock);
344 return -ETXTBSY;
345 }
346 atomic_dec(&inode->i_writecount);
347 spin_unlock(&inode->i_lock);
348
349 return 0;
350}
351
Jan Blunck1d957f92008-02-14 19:34:35 -0800352/**
Jan Blunck5dd784d2008-02-14 19:34:38 -0800353 * path_get - get a reference to a path
354 * @path: path to get the reference to
355 *
356 * Given a path increment the reference count to the dentry and the vfsmount.
357 */
358void path_get(struct path *path)
359{
360 mntget(path->mnt);
361 dget(path->dentry);
362}
363EXPORT_SYMBOL(path_get);
364
365/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800366 * path_put - put a reference to a path
367 * @path: path to put the reference to
368 *
369 * Given a path decrement the reference count to the dentry and the vfsmount.
370 */
371void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372{
Jan Blunck1d957f92008-02-14 19:34:35 -0800373 dput(path->dentry);
374 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375}
Jan Blunck1d957f92008-02-14 19:34:35 -0800376EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Al Viro19660af2011-03-25 10:32:48 -0400378/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100379 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400380 * Documentation/filesystems/path-lookup.txt). In situations when we can't
381 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
382 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
383 * mode. Refcounts are grabbed at the last known good point before rcu-walk
384 * got stuck, so ref-walk may continue from there. If this is not successful
385 * (eg. a seqcount has changed), then failure is returned and it's up to caller
386 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100387 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100388
389/**
Al Viro19660af2011-03-25 10:32:48 -0400390 * unlazy_walk - try to switch to ref-walk mode.
391 * @nd: nameidata pathwalk data
392 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800393 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100394 *
Al Viro19660af2011-03-25 10:32:48 -0400395 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
396 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
397 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100398 */
Al Viro19660af2011-03-25 10:32:48 -0400399static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100400{
401 struct fs_struct *fs = current->fs;
402 struct dentry *parent = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500403 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100404
405 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500406 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
407 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100408 spin_lock(&fs->lock);
409 if (nd->root.mnt != fs->root.mnt ||
410 nd->root.dentry != fs->root.dentry)
411 goto err_root;
412 }
413 spin_lock(&parent->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400414 if (!dentry) {
415 if (!__d_rcu_to_refcount(parent, nd->seq))
416 goto err_parent;
417 BUG_ON(nd->inode != parent->d_inode);
418 } else {
Al Viro94c0d4e2011-07-12 21:40:23 -0400419 if (dentry->d_parent != parent)
420 goto err_parent;
Al Viro19660af2011-03-25 10:32:48 -0400421 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
422 if (!__d_rcu_to_refcount(dentry, nd->seq))
423 goto err_child;
424 /*
425 * If the sequence check on the child dentry passed, then
426 * the child has not been removed from its parent. This
427 * means the parent dentry must be valid and able to take
428 * a reference at this point.
429 */
430 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
431 BUG_ON(!parent->d_count);
432 parent->d_count++;
433 spin_unlock(&dentry->d_lock);
434 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100435 spin_unlock(&parent->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500436 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100437 path_get(&nd->root);
438 spin_unlock(&fs->lock);
439 }
440 mntget(nd->path.mnt);
441
442 rcu_read_unlock();
443 br_read_unlock(vfsmount_lock);
444 nd->flags &= ~LOOKUP_RCU;
445 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400446
447err_child:
Nick Piggin31e6b012011-01-07 17:49:52 +1100448 spin_unlock(&dentry->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400449err_parent:
Nick Piggin31e6b012011-01-07 17:49:52 +1100450 spin_unlock(&parent->d_lock);
451err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500452 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100453 spin_unlock(&fs->lock);
454 return -ECHILD;
455}
456
Nick Piggin31e6b012011-01-07 17:49:52 +1100457/**
Trond Myklebust834f2a42005-10-18 14:20:16 -0700458 * release_open_intent - free up open intent resources
459 * @nd: pointer to nameidata
460 */
461void release_open_intent(struct nameidata *nd)
462{
Linus Torvalds2dab5972011-02-11 15:53:38 -0800463 struct file *file = nd->intent.open.file;
464
465 if (file && !IS_ERR(file)) {
466 if (file->f_path.dentry == NULL)
467 put_filp(file);
468 else
469 fput(file);
470 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700471}
472
Al Virof60aef72011-02-15 01:35:28 -0500473static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
Nick Piggin34286d62011-01-07 17:49:57 +1100474{
Al Virof60aef72011-02-15 01:35:28 -0500475 return dentry->d_op->d_revalidate(dentry, nd);
Nick Piggin34286d62011-01-07 17:49:57 +1100476}
477
Al Virof5e1c1c2011-02-15 01:32:55 -0500478static struct dentry *
Ian Kentbcdc5e02006-09-27 01:50:44 -0700479do_revalidate(struct dentry *dentry, struct nameidata *nd)
480{
Al Virof5e1c1c2011-02-15 01:32:55 -0500481 int status = d_revalidate(dentry, nd);
Ian Kentbcdc5e02006-09-27 01:50:44 -0700482 if (unlikely(status <= 0)) {
483 /*
484 * The dentry failed validation.
485 * If d_revalidate returned 0 attempt to invalidate
486 * the dentry otherwise d_revalidate is asking us
487 * to return a fail status.
488 */
Nick Piggin34286d62011-01-07 17:49:57 +1100489 if (status < 0) {
Al Virof5e1c1c2011-02-15 01:32:55 -0500490 dput(dentry);
Nick Piggin34286d62011-01-07 17:49:57 +1100491 dentry = ERR_PTR(status);
Al Virof5e1c1c2011-02-15 01:32:55 -0500492 } else if (!d_invalidate(dentry)) {
493 dput(dentry);
494 dentry = NULL;
Ian Kentbcdc5e02006-09-27 01:50:44 -0700495 }
496 }
497 return dentry;
498}
499
Al Viro9f1fafe2011-03-25 11:00:12 -0400500/**
501 * complete_walk - successful completion of path walk
502 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500503 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400504 * If we had been in RCU mode, drop out of it and legitimize nd->path.
505 * Revalidate the final result, unless we'd already done that during
506 * the path walk or the filesystem doesn't ask for it. Return 0 on
507 * success, -error on failure. In case of failure caller does not
508 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500509 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400510static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500511{
Al Viro16c2cd72011-02-22 15:50:10 -0500512 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500513 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500514
Al Viro9f1fafe2011-03-25 11:00:12 -0400515 if (nd->flags & LOOKUP_RCU) {
516 nd->flags &= ~LOOKUP_RCU;
517 if (!(nd->flags & LOOKUP_ROOT))
518 nd->root.mnt = NULL;
519 spin_lock(&dentry->d_lock);
520 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
521 spin_unlock(&dentry->d_lock);
522 rcu_read_unlock();
523 br_read_unlock(vfsmount_lock);
524 return -ECHILD;
525 }
526 BUG_ON(nd->inode != dentry->d_inode);
527 spin_unlock(&dentry->d_lock);
528 mntget(nd->path.mnt);
529 rcu_read_unlock();
530 br_read_unlock(vfsmount_lock);
531 }
532
Al Viro16c2cd72011-02-22 15:50:10 -0500533 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500534 return 0;
535
Al Viro16c2cd72011-02-22 15:50:10 -0500536 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
537 return 0;
538
539 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
540 return 0;
541
542 /* Note: we do not d_invalidate() */
Nick Piggin34286d62011-01-07 17:49:57 +1100543 status = d_revalidate(dentry, nd);
Jeff Layton39159de2009-12-07 12:01:50 -0500544 if (status > 0)
545 return 0;
546
Al Viro16c2cd72011-02-22 15:50:10 -0500547 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500548 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500549
Al Viro9f1fafe2011-03-25 11:00:12 -0400550 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500551 return status;
552}
553
554/*
Al Virob75b5082009-12-16 01:01:38 -0500555 * Short-cut version of permission(), for calling on directories
556 * during pathname resolution. Combines parts of permission()
557 * and generic_permission(), and tests ONLY for MAY_EXEC permission.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 *
559 * If appropriate, check DAC only. If not appropriate, or
Al Virob75b5082009-12-16 01:01:38 -0500560 * short-cut DAC fails, then call ->permission() to do more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 * complete permission check.
562 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100563static inline int exec_permission(struct inode *inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700565 int ret;
Serge E. Hallyne795b712011-03-23 16:43:25 -0700566 struct user_namespace *ns = inode_userns(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700568 if (inode->i_op->permission) {
Nick Pigginb74c79e2011-01-07 17:49:58 +1100569 ret = inode->i_op->permission(inode, MAY_EXEC, flags);
Al Viro4cf27142011-06-19 01:50:08 -0400570 if (likely(!ret))
571 goto ok;
Nick Pigginb74c79e2011-01-07 17:49:58 +1100572 } else {
573 ret = acl_permission_check(inode, MAY_EXEC, flags,
574 inode->i_op->check_acl);
Al Viro4cf27142011-06-19 01:50:08 -0400575 if (likely(!ret))
576 goto ok;
577 if (ret != -EACCES)
578 return ret;
579 if (ns_capable(ns, CAP_DAC_OVERRIDE) ||
580 ns_capable(ns, CAP_DAC_READ_SEARCH))
581 goto ok;
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700582 }
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700583 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584ok:
Nick Pigginb74c79e2011-01-07 17:49:58 +1100585 return security_inode_exec_permission(inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
Al Viro2a737872009-04-07 11:49:53 -0400588static __always_inline void set_root(struct nameidata *nd)
589{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200590 if (!nd->root.mnt)
591 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400592}
593
Al Viro6de88d72009-08-09 01:41:57 +0400594static int link_path_walk(const char *, struct nameidata *);
595
Nick Piggin31e6b012011-01-07 17:49:52 +1100596static __always_inline void set_root_rcu(struct nameidata *nd)
597{
598 if (!nd->root.mnt) {
599 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100600 unsigned seq;
601
602 do {
603 seq = read_seqcount_begin(&fs->seq);
604 nd->root = fs->root;
Tim Chenc1530012011-04-15 11:39:29 -0700605 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
Nick Pigginc28cc362011-01-07 17:49:53 +1100606 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100607 }
608}
609
Arjan van de Venf1662352006-01-14 13:21:31 -0800610static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
Nick Piggin31e6b012011-01-07 17:49:52 +1100612 int ret;
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 if (IS_ERR(link))
615 goto fail;
616
617 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400618 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800619 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400620 nd->path = nd->root;
621 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500622 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100624 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100625
Nick Piggin31e6b012011-01-07 17:49:52 +1100626 ret = link_path_walk(link, nd);
627 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800629 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return PTR_ERR(link);
631}
632
Jan Blunck1d957f92008-02-14 19:34:35 -0800633static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700634{
635 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800636 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700637 mntput(path->mnt);
638}
639
Nick Piggin7b9337a2011-01-14 08:42:43 +0000640static inline void path_to_nameidata(const struct path *path,
641 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700642{
Nick Piggin31e6b012011-01-07 17:49:52 +1100643 if (!(nd->flags & LOOKUP_RCU)) {
644 dput(nd->path.dentry);
645 if (nd->path.mnt != path->mnt)
646 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800647 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100648 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800649 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700650}
651
Al Viro574197e2011-03-14 22:20:34 -0400652static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
653{
654 struct inode *inode = link->dentry->d_inode;
655 if (!IS_ERR(cookie) && inode->i_op->put_link)
656 inode->i_op->put_link(link->dentry, nd, cookie);
657 path_put(link);
658}
659
Al Virodef4af32009-12-26 08:37:05 -0500660static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400661follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800662{
663 int error;
Nick Piggin7b9337a2011-01-14 08:42:43 +0000664 struct dentry *dentry = link->dentry;
Ian Kent051d3812006-03-27 01:14:53 -0800665
Al Viro844a3912011-02-15 00:38:26 -0500666 BUG_ON(nd->flags & LOOKUP_RCU);
667
Al Viro0e794582011-03-16 02:45:02 -0400668 if (link->mnt == nd->path.mnt)
669 mntget(link->mnt);
670
Al Viro574197e2011-03-14 22:20:34 -0400671 if (unlikely(current->total_link_count >= 40)) {
672 *p = ERR_PTR(-ELOOP); /* no ->put_link(), please */
Al Viro574197e2011-03-14 22:20:34 -0400673 path_put(&nd->path);
674 return -ELOOP;
675 }
676 cond_resched();
677 current->total_link_count++;
678
Nick Piggin7b9337a2011-01-14 08:42:43 +0000679 touch_atime(link->mnt, dentry);
Ian Kent051d3812006-03-27 01:14:53 -0800680 nd_set_link(nd, NULL);
681
Al Viro36f3b4f2011-02-22 21:24:38 -0500682 error = security_inode_follow_link(link->dentry, nd);
683 if (error) {
684 *p = ERR_PTR(error); /* no ->put_link(), please */
685 path_put(&nd->path);
686 return error;
687 }
688
Al Viro86acdca12009-12-22 23:45:11 -0500689 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500690 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
691 error = PTR_ERR(*p);
692 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800693 char *s = nd_get_link(nd);
694 error = 0;
695 if (s)
696 error = __vfs_follow_link(nd, s);
Al Virobcda7652011-03-13 16:42:14 -0400697 else if (nd->last_type == LAST_BIND) {
Al Viro16c2cd72011-02-22 15:50:10 -0500698 nd->flags |= LOOKUP_JUMPED;
Al Virob21041d2011-03-14 20:01:51 -0400699 nd->inode = nd->path.dentry->d_inode;
700 if (nd->inode->i_op->follow_link) {
Al Virobcda7652011-03-13 16:42:14 -0400701 /* stepped on a _really_ weird one */
702 path_put(&nd->path);
703 error = -ELOOP;
704 }
705 }
Ian Kent051d3812006-03-27 01:14:53 -0800706 }
Ian Kent051d3812006-03-27 01:14:53 -0800707 return error;
708}
709
Nick Piggin31e6b012011-01-07 17:49:52 +1100710static int follow_up_rcu(struct path *path)
711{
712 struct vfsmount *parent;
713 struct dentry *mountpoint;
714
715 parent = path->mnt->mnt_parent;
716 if (parent == path->mnt)
717 return 0;
718 mountpoint = path->mnt->mnt_mountpoint;
719 path->dentry = mountpoint;
720 path->mnt = parent;
721 return 1;
722}
723
Al Virobab77eb2009-04-18 03:26:48 -0400724int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
726 struct vfsmount *parent;
727 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000728
729 br_read_lock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400730 parent = path->mnt->mnt_parent;
731 if (parent == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000732 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 return 0;
734 }
735 mntget(parent);
Al Virobab77eb2009-04-18 03:26:48 -0400736 mountpoint = dget(path->mnt->mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000737 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400738 dput(path->dentry);
739 path->dentry = mountpoint;
740 mntput(path->mnt);
741 path->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 return 1;
743}
744
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100745/*
David Howells9875cf82011-01-14 18:45:21 +0000746 * Perform an automount
747 * - return -EISDIR to tell follow_managed() to stop and return the path we
748 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 */
David Howells9875cf82011-01-14 18:45:21 +0000750static int follow_automount(struct path *path, unsigned flags,
751 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100752{
David Howells9875cf82011-01-14 18:45:21 +0000753 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000754 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100755
David Howells9875cf82011-01-14 18:45:21 +0000756 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
757 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700758
David Howells6f45b652011-01-14 18:45:31 +0000759 /* We don't want to mount if someone supplied AT_NO_AUTOMOUNT
760 * and this is the terminal part of the path.
761 */
762 if ((flags & LOOKUP_NO_AUTOMOUNT) && !(flags & LOOKUP_CONTINUE))
763 return -EISDIR; /* we actually want to stop here */
764
David Howells9875cf82011-01-14 18:45:21 +0000765 /* We want to mount if someone is trying to open/create a file of any
766 * type under the mountpoint, wants to traverse through the mountpoint
767 * or wants to open the mounted directory.
768 *
769 * We don't want to mount if someone's just doing a stat and they've
770 * set AT_SYMLINK_NOFOLLOW - unless they're stat'ing a directory and
771 * appended a '/' to the name.
772 */
773 if (!(flags & LOOKUP_FOLLOW) &&
774 !(flags & (LOOKUP_CONTINUE | LOOKUP_DIRECTORY |
775 LOOKUP_OPEN | LOOKUP_CREATE)))
776 return -EISDIR;
777
778 current->total_link_count++;
779 if (current->total_link_count >= 40)
780 return -ELOOP;
781
782 mnt = path->dentry->d_op->d_automount(path);
783 if (IS_ERR(mnt)) {
784 /*
785 * The filesystem is allowed to return -EISDIR here to indicate
786 * it doesn't want to automount. For instance, autofs would do
787 * this so that its userspace daemon can mount on this dentry.
788 *
789 * However, we can only permit this if it's a terminal point in
790 * the path being looked up; if it wasn't then the remainder of
791 * the path is inaccessible and we should say so.
792 */
793 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_CONTINUE))
794 return -EREMOTE;
795 return PTR_ERR(mnt);
796 }
David Howellsea5b7782011-01-14 19:10:03 +0000797
David Howells9875cf82011-01-14 18:45:21 +0000798 if (!mnt) /* mount collision */
799 return 0;
800
Al Viro8aef1882011-06-16 15:10:06 +0100801 if (!*need_mntput) {
802 /* lock_mount() may release path->mnt on error */
803 mntget(path->mnt);
804 *need_mntput = true;
805 }
Al Viro19a167a2011-01-17 01:35:23 -0500806 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000807
David Howellsea5b7782011-01-14 19:10:03 +0000808 switch (err) {
809 case -EBUSY:
810 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500811 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000812 case 0:
Al Viro8aef1882011-06-16 15:10:06 +0100813 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +0000814 path->mnt = mnt;
815 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +0000816 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500817 default:
818 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000819 }
Al Viro19a167a2011-01-17 01:35:23 -0500820
David Howells9875cf82011-01-14 18:45:21 +0000821}
822
823/*
824 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000825 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000826 * - Flagged as mountpoint
827 * - Flagged as automount point
828 *
829 * This may only be called in refwalk mode.
830 *
831 * Serialization is taken care of in namespace.c
832 */
833static int follow_managed(struct path *path, unsigned flags)
834{
Al Viro8aef1882011-06-16 15:10:06 +0100835 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +0000836 unsigned managed;
837 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +0100838 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +0000839
840 /* Given that we're not holding a lock here, we retain the value in a
841 * local variable for each dentry as we look at it so that we don't see
842 * the components of that value change under us */
843 while (managed = ACCESS_ONCE(path->dentry->d_flags),
844 managed &= DCACHE_MANAGED_DENTRY,
845 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000846 /* Allow the filesystem to manage the transit without i_mutex
847 * being held. */
848 if (managed & DCACHE_MANAGE_TRANSIT) {
849 BUG_ON(!path->dentry->d_op);
850 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -0400851 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000852 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100853 break;
David Howellscc53ce52011-01-14 18:45:26 +0000854 }
855
David Howells9875cf82011-01-14 18:45:21 +0000856 /* Transit to a mounted filesystem. */
857 if (managed & DCACHE_MOUNTED) {
858 struct vfsmount *mounted = lookup_mnt(path);
859 if (mounted) {
860 dput(path->dentry);
861 if (need_mntput)
862 mntput(path->mnt);
863 path->mnt = mounted;
864 path->dentry = dget(mounted->mnt_root);
865 need_mntput = true;
866 continue;
867 }
868
869 /* Something is mounted on this dentry in another
870 * namespace and/or whatever was mounted there in this
871 * namespace got unmounted before we managed to get the
872 * vfsmount_lock */
873 }
874
875 /* Handle an automount point */
876 if (managed & DCACHE_NEED_AUTOMOUNT) {
877 ret = follow_automount(path, flags, &need_mntput);
878 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100879 break;
David Howells9875cf82011-01-14 18:45:21 +0000880 continue;
881 }
882
883 /* We didn't change the current path point */
884 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 }
Al Viro8aef1882011-06-16 15:10:06 +0100886
887 if (need_mntput && path->mnt == mnt)
888 mntput(path->mnt);
889 if (ret == -EISDIR)
890 ret = 0;
891 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892}
893
David Howellscc53ce52011-01-14 18:45:26 +0000894int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
896 struct vfsmount *mounted;
897
Al Viro1c755af2009-04-18 14:06:57 -0400898 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400900 dput(path->dentry);
901 mntput(path->mnt);
902 path->mnt = mounted;
903 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 return 1;
905 }
906 return 0;
907}
908
Ian Kent62a73752011-03-25 01:51:02 +0800909static inline bool managed_dentry_might_block(struct dentry *dentry)
910{
911 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
912 dentry->d_op->d_manage(dentry, true) < 0);
913}
914
David Howells9875cf82011-01-14 18:45:21 +0000915/*
Al Viro287548e2011-05-27 06:50:06 -0400916 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
917 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +0000918 */
919static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -0400920 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +0000921{
Ian Kent62a73752011-03-25 01:51:02 +0800922 for (;;) {
David Howells9875cf82011-01-14 18:45:21 +0000923 struct vfsmount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +0800924 /*
925 * Don't forget we might have a non-mountpoint managed dentry
926 * that wants to block transit.
927 */
Al Viro287548e2011-05-27 06:50:06 -0400928 if (unlikely(managed_dentry_might_block(path->dentry)))
David Howellsab909112011-01-14 18:46:51 +0000929 return false;
Ian Kent62a73752011-03-25 01:51:02 +0800930
931 if (!d_mountpoint(path->dentry))
932 break;
933
David Howells9875cf82011-01-14 18:45:21 +0000934 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
935 if (!mounted)
936 break;
937 path->mnt = mounted;
938 path->dentry = mounted->mnt_root;
939 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -0700940 /*
941 * Update the inode too. We don't need to re-check the
942 * dentry sequence number here after this d_inode read,
943 * because a mount-point is always pinned.
944 */
945 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +0000946 }
David Howells9875cf82011-01-14 18:45:21 +0000947 return true;
948}
949
Al Virodea39372011-05-27 06:53:39 -0400950static void follow_mount_rcu(struct nameidata *nd)
Al Viro287548e2011-05-27 06:50:06 -0400951{
Al Virodea39372011-05-27 06:53:39 -0400952 while (d_mountpoint(nd->path.dentry)) {
Al Viro287548e2011-05-27 06:50:06 -0400953 struct vfsmount *mounted;
Al Virodea39372011-05-27 06:53:39 -0400954 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
Al Viro287548e2011-05-27 06:50:06 -0400955 if (!mounted)
956 break;
Al Virodea39372011-05-27 06:53:39 -0400957 nd->path.mnt = mounted;
958 nd->path.dentry = mounted->mnt_root;
959 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro287548e2011-05-27 06:50:06 -0400960 }
961}
962
Nick Piggin31e6b012011-01-07 17:49:52 +1100963static int follow_dotdot_rcu(struct nameidata *nd)
964{
Nick Piggin31e6b012011-01-07 17:49:52 +1100965 set_root_rcu(nd);
966
David Howells9875cf82011-01-14 18:45:21 +0000967 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100968 if (nd->path.dentry == nd->root.dentry &&
969 nd->path.mnt == nd->root.mnt) {
970 break;
971 }
972 if (nd->path.dentry != nd->path.mnt->mnt_root) {
973 struct dentry *old = nd->path.dentry;
974 struct dentry *parent = old->d_parent;
975 unsigned seq;
976
977 seq = read_seqcount_begin(&parent->d_seq);
978 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -0500979 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +1100980 nd->path.dentry = parent;
981 nd->seq = seq;
982 break;
983 }
984 if (!follow_up_rcu(&nd->path))
985 break;
986 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +1100987 }
Al Virodea39372011-05-27 06:53:39 -0400988 follow_mount_rcu(nd);
989 nd->inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +1100990 return 0;
Al Viroef7562d2011-03-04 14:35:59 -0500991
992failed:
993 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -0500994 if (!(nd->flags & LOOKUP_ROOT))
995 nd->root.mnt = NULL;
Al Viroef7562d2011-03-04 14:35:59 -0500996 rcu_read_unlock();
997 br_read_unlock(vfsmount_lock);
998 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +1100999}
1000
David Howells9875cf82011-01-14 18:45:21 +00001001/*
David Howellscc53ce52011-01-14 18:45:26 +00001002 * Follow down to the covering mount currently visible to userspace. At each
1003 * point, the filesystem owning that dentry may be queried as to whether the
1004 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001005 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001006int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001007{
1008 unsigned managed;
1009 int ret;
1010
1011 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1012 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1013 /* Allow the filesystem to manage the transit without i_mutex
1014 * being held.
1015 *
1016 * We indicate to the filesystem if someone is trying to mount
1017 * something here. This gives autofs the chance to deny anyone
1018 * other than its daemon the right to mount on its
1019 * superstructure.
1020 *
1021 * The filesystem may sleep at this point.
1022 */
1023 if (managed & DCACHE_MANAGE_TRANSIT) {
1024 BUG_ON(!path->dentry->d_op);
1025 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001026 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001027 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001028 if (ret < 0)
1029 return ret == -EISDIR ? 0 : ret;
1030 }
1031
1032 /* Transit to a mounted filesystem. */
1033 if (managed & DCACHE_MOUNTED) {
1034 struct vfsmount *mounted = lookup_mnt(path);
1035 if (!mounted)
1036 break;
1037 dput(path->dentry);
1038 mntput(path->mnt);
1039 path->mnt = mounted;
1040 path->dentry = dget(mounted->mnt_root);
1041 continue;
1042 }
1043
1044 /* Don't handle automount points here */
1045 break;
1046 }
1047 return 0;
1048}
1049
1050/*
David Howells9875cf82011-01-14 18:45:21 +00001051 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1052 */
1053static void follow_mount(struct path *path)
1054{
1055 while (d_mountpoint(path->dentry)) {
1056 struct vfsmount *mounted = lookup_mnt(path);
1057 if (!mounted)
1058 break;
1059 dput(path->dentry);
1060 mntput(path->mnt);
1061 path->mnt = mounted;
1062 path->dentry = dget(mounted->mnt_root);
1063 }
1064}
1065
Nick Piggin31e6b012011-01-07 17:49:52 +11001066static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
Al Viro2a737872009-04-07 11:49:53 -04001068 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001069
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001071 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
Al Viro2a737872009-04-07 11:49:53 -04001073 if (nd->path.dentry == nd->root.dentry &&
1074 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075 break;
1076 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001077 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001078 /* rare case of legitimate dget_parent()... */
1079 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 dput(old);
1081 break;
1082 }
Al Viro3088dd72010-01-30 15:47:29 -05001083 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 }
Al Viro79ed0222009-04-18 13:59:41 -04001086 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001087 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090/*
Nick Pigginbaa03892010-08-18 04:37:31 +10001091 * Allocate a dentry with name and parent, and perform a parent
1092 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1093 * on error. parent->d_inode->i_mutex must be held. d_lookup must
1094 * have verified that no child exists while under i_mutex.
1095 */
1096static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1097 struct qstr *name, struct nameidata *nd)
1098{
1099 struct inode *inode = parent->d_inode;
1100 struct dentry *dentry;
1101 struct dentry *old;
1102
1103 /* Don't create child dentry for a dead directory. */
1104 if (unlikely(IS_DEADDIR(inode)))
1105 return ERR_PTR(-ENOENT);
1106
1107 dentry = d_alloc(parent, name);
1108 if (unlikely(!dentry))
1109 return ERR_PTR(-ENOMEM);
1110
1111 old = inode->i_op->lookup(inode, dentry, nd);
1112 if (unlikely(old)) {
1113 dput(dentry);
1114 dentry = old;
1115 }
1116 return dentry;
1117}
1118
1119/*
Josef Bacik44396f42011-05-31 11:58:49 -04001120 * We already have a dentry, but require a lookup to be performed on the parent
1121 * directory to fill in d_inode. Returns the new dentry, or ERR_PTR on error.
1122 * parent->d_inode->i_mutex must be held. d_lookup must have verified that no
1123 * child exists while under i_mutex.
1124 */
1125static struct dentry *d_inode_lookup(struct dentry *parent, struct dentry *dentry,
1126 struct nameidata *nd)
1127{
1128 struct inode *inode = parent->d_inode;
1129 struct dentry *old;
1130
1131 /* Don't create child dentry for a dead directory. */
1132 if (unlikely(IS_DEADDIR(inode)))
1133 return ERR_PTR(-ENOENT);
1134
1135 old = inode->i_op->lookup(inode, dentry, nd);
1136 if (unlikely(old)) {
1137 dput(dentry);
1138 dentry = old;
1139 }
1140 return dentry;
1141}
1142
1143/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 * It's more convoluted than I'd like it to be, but... it's still fairly
1145 * small and for now I'd prefer to have fast path as straight as possible.
1146 * It _is_ time-critical.
1147 */
1148static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +11001149 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150{
Jan Blunck4ac91372008-02-14 19:34:32 -08001151 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001152 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001153 int need_reval = 1;
1154 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001155 int err;
1156
Al Viro3cac2602009-08-13 18:27:43 +04001157 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001158 * Rename seqlock is not required here because in the off chance
1159 * of a false negative due to a concurrent rename, we're going to
1160 * do the non-racy lookup, below.
1161 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001162 if (nd->flags & LOOKUP_RCU) {
1163 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001164 *inode = nd->inode;
1165 dentry = __d_lookup_rcu(parent, name, &seq, inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001166 if (!dentry)
1167 goto unlazy;
1168
Nick Piggin31e6b012011-01-07 17:49:52 +11001169 /* Memory barrier in read_seqcount_begin of child is enough */
1170 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1171 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001172 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001173
Al Viro24643082011-02-15 01:26:22 -05001174 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro5a18fff2011-03-11 04:44:53 -05001175 status = d_revalidate(dentry, nd);
1176 if (unlikely(status <= 0)) {
1177 if (status != -ECHILD)
1178 need_reval = 0;
1179 goto unlazy;
1180 }
Al Viro24643082011-02-15 01:26:22 -05001181 }
Josef Bacik44396f42011-05-31 11:58:49 -04001182 if (unlikely(d_need_lookup(dentry)))
1183 goto unlazy;
Nick Piggin31e6b012011-01-07 17:49:52 +11001184 path->mnt = mnt;
1185 path->dentry = dentry;
Al Virod6e9bd22011-05-27 07:03:15 -04001186 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1187 goto unlazy;
1188 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1189 goto unlazy;
1190 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001191unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001192 if (unlazy_walk(nd, dentry))
1193 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001194 } else {
1195 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001196 }
Al Viro5a18fff2011-03-11 04:44:53 -05001197
Josef Bacik44396f42011-05-31 11:58:49 -04001198 if (dentry && unlikely(d_need_lookup(dentry))) {
1199 dput(dentry);
1200 dentry = NULL;
1201 }
Al Viro5a18fff2011-03-11 04:44:53 -05001202retry:
1203 if (unlikely(!dentry)) {
1204 struct inode *dir = parent->d_inode;
1205 BUG_ON(nd->inode != dir);
1206
1207 mutex_lock(&dir->i_mutex);
1208 dentry = d_lookup(parent, name);
1209 if (likely(!dentry)) {
1210 dentry = d_alloc_and_lookup(parent, name, nd);
1211 if (IS_ERR(dentry)) {
1212 mutex_unlock(&dir->i_mutex);
1213 return PTR_ERR(dentry);
1214 }
1215 /* known good */
1216 need_reval = 0;
1217 status = 1;
Josef Bacik44396f42011-05-31 11:58:49 -04001218 } else if (unlikely(d_need_lookup(dentry))) {
1219 dentry = d_inode_lookup(parent, dentry, nd);
1220 if (IS_ERR(dentry)) {
1221 mutex_unlock(&dir->i_mutex);
1222 return PTR_ERR(dentry);
1223 }
1224 /* known good */
1225 need_reval = 0;
1226 status = 1;
Al Viro5a18fff2011-03-11 04:44:53 -05001227 }
1228 mutex_unlock(&dir->i_mutex);
Al Viro24643082011-02-15 01:26:22 -05001229 }
Al Viro5a18fff2011-03-11 04:44:53 -05001230 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1231 status = d_revalidate(dentry, nd);
1232 if (unlikely(status <= 0)) {
1233 if (status < 0) {
1234 dput(dentry);
1235 return status;
1236 }
1237 if (!d_invalidate(dentry)) {
1238 dput(dentry);
1239 dentry = NULL;
1240 need_reval = 1;
1241 goto retry;
1242 }
1243 }
1244
David Howells9875cf82011-01-14 18:45:21 +00001245 path->mnt = mnt;
1246 path->dentry = dentry;
1247 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001248 if (unlikely(err < 0)) {
1249 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001250 return err;
Ian Kent89312212011-01-18 12:06:10 +08001251 }
David Howells9875cf82011-01-14 18:45:21 +00001252 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254}
1255
Al Viro52094c82011-02-21 21:34:47 -05001256static inline int may_lookup(struct nameidata *nd)
1257{
1258 if (nd->flags & LOOKUP_RCU) {
1259 int err = exec_permission(nd->inode, IPERM_FLAG_RCU);
1260 if (err != -ECHILD)
1261 return err;
Al Viro19660af2011-03-25 10:32:48 -04001262 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001263 return -ECHILD;
1264 }
1265 return exec_permission(nd->inode, 0);
1266}
1267
Al Viro9856fa12011-03-04 14:22:06 -05001268static inline int handle_dots(struct nameidata *nd, int type)
1269{
1270 if (type == LAST_DOTDOT) {
1271 if (nd->flags & LOOKUP_RCU) {
1272 if (follow_dotdot_rcu(nd))
1273 return -ECHILD;
1274 } else
1275 follow_dotdot(nd);
1276 }
1277 return 0;
1278}
1279
Al Viro951361f2011-03-04 14:44:37 -05001280static void terminate_walk(struct nameidata *nd)
1281{
1282 if (!(nd->flags & LOOKUP_RCU)) {
1283 path_put(&nd->path);
1284 } else {
1285 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001286 if (!(nd->flags & LOOKUP_ROOT))
1287 nd->root.mnt = NULL;
Al Viro951361f2011-03-04 14:44:37 -05001288 rcu_read_unlock();
1289 br_read_unlock(vfsmount_lock);
1290 }
1291}
1292
Al Viroce57dfc2011-03-13 19:58:58 -04001293static inline int walk_component(struct nameidata *nd, struct path *path,
1294 struct qstr *name, int type, int follow)
1295{
1296 struct inode *inode;
1297 int err;
1298 /*
1299 * "." and ".." are special - ".." especially so because it has
1300 * to be able to know about the current root directory and
1301 * parent relationships.
1302 */
1303 if (unlikely(type != LAST_NORM))
1304 return handle_dots(nd, type);
1305 err = do_lookup(nd, name, path, &inode);
1306 if (unlikely(err)) {
1307 terminate_walk(nd);
1308 return err;
1309 }
1310 if (!inode) {
1311 path_to_nameidata(path, nd);
1312 terminate_walk(nd);
1313 return -ENOENT;
1314 }
1315 if (unlikely(inode->i_op->follow_link) && follow) {
Al Viro19660af2011-03-25 10:32:48 -04001316 if (nd->flags & LOOKUP_RCU) {
1317 if (unlikely(unlazy_walk(nd, path->dentry))) {
1318 terminate_walk(nd);
1319 return -ECHILD;
1320 }
1321 }
Al Viroce57dfc2011-03-13 19:58:58 -04001322 BUG_ON(inode != path->dentry->d_inode);
1323 return 1;
1324 }
1325 path_to_nameidata(path, nd);
1326 nd->inode = inode;
1327 return 0;
1328}
1329
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330/*
Al Virob3563792011-03-14 21:54:55 -04001331 * This limits recursive symlink follows to 8, while
1332 * limiting consecutive symlinks to 40.
1333 *
1334 * Without that kind of total limit, nasty chains of consecutive
1335 * symlinks can cause almost arbitrarily long lookups.
1336 */
1337static inline int nested_symlink(struct path *path, struct nameidata *nd)
1338{
1339 int res;
1340
Al Virob3563792011-03-14 21:54:55 -04001341 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1342 path_put_conditional(path, nd);
1343 path_put(&nd->path);
1344 return -ELOOP;
1345 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001346 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001347
1348 nd->depth++;
1349 current->link_count++;
1350
1351 do {
1352 struct path link = *path;
1353 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001354
1355 res = follow_link(&link, nd, &cookie);
Al Virob3563792011-03-14 21:54:55 -04001356 if (!res)
1357 res = walk_component(nd, path, &nd->last,
1358 nd->last_type, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001359 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001360 } while (res > 0);
1361
1362 current->link_count--;
1363 nd->depth--;
1364 return res;
1365}
1366
1367/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001369 * This is the basic name resolution function, turning a pathname into
1370 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001372 * Returns 0 and nd will have valid dentry and mnt on success.
1373 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 */
Al Viro6de88d72009-08-09 01:41:57 +04001375static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376{
1377 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 int err;
1379 unsigned int lookup_flags = nd->flags;
1380
1381 while (*name=='/')
1382 name++;
1383 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001384 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 /* At this point we know we have a real path component. */
1387 for(;;) {
1388 unsigned long hash;
1389 struct qstr this;
1390 unsigned int c;
Al Virofe479a52011-02-22 15:10:03 -05001391 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Trond Myklebustcdce5d62005-10-18 14:20:18 -07001393 nd->flags |= LOOKUP_CONTINUE;
Al Viro52094c82011-02-21 21:34:47 -05001394
1395 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 if (err)
1397 break;
1398
1399 this.name = name;
1400 c = *(const unsigned char *)name;
1401
1402 hash = init_name_hash();
1403 do {
1404 name++;
1405 hash = partial_name_hash(c, hash);
1406 c = *(const unsigned char *)name;
1407 } while (c && (c != '/'));
1408 this.len = name - (const char *) this.name;
1409 this.hash = end_name_hash(hash);
1410
Al Virofe479a52011-02-22 15:10:03 -05001411 type = LAST_NORM;
1412 if (this.name[0] == '.') switch (this.len) {
1413 case 2:
Al Viro16c2cd72011-02-22 15:50:10 -05001414 if (this.name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001415 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001416 nd->flags |= LOOKUP_JUMPED;
1417 }
Al Virofe479a52011-02-22 15:10:03 -05001418 break;
1419 case 1:
1420 type = LAST_DOT;
1421 }
Al Viro5a202bc2011-03-08 14:17:44 -05001422 if (likely(type == LAST_NORM)) {
1423 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001424 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001425 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1426 err = parent->d_op->d_hash(parent, nd->inode,
1427 &this);
1428 if (err < 0)
1429 break;
1430 }
1431 }
Al Virofe479a52011-02-22 15:10:03 -05001432
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 /* remove trailing slashes? */
1434 if (!c)
1435 goto last_component;
1436 while (*++name == '/');
1437 if (!*name)
Al Virob3563792011-03-14 21:54:55 -04001438 goto last_component;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Al Viroce57dfc2011-03-13 19:58:58 -04001440 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1441 if (err < 0)
1442 return err;
Al Virofe479a52011-02-22 15:10:03 -05001443
Al Viroce57dfc2011-03-13 19:58:58 -04001444 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001445 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001447 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001448 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001450 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 break;
1452 continue;
1453 /* here ends the main loop */
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -08001456 /* Clear LOOKUP_CONTINUE iff it was previously unset */
1457 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Al Virob3563792011-03-14 21:54:55 -04001458 nd->last = this;
1459 nd->last_type = type;
Al Viro086e1832011-02-22 20:56:27 -05001460 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 }
Al Viro951361f2011-03-04 14:44:37 -05001462 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 return err;
1464}
1465
Al Viro70e9b352011-03-05 21:12:22 -05001466static int path_init(int dfd, const char *name, unsigned int flags,
1467 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001469 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001470 int fput_needed;
1471 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001474 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001476 if (flags & LOOKUP_ROOT) {
1477 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001478 if (*name) {
1479 if (!inode->i_op->lookup)
1480 return -ENOTDIR;
1481 retval = inode_permission(inode, MAY_EXEC);
1482 if (retval)
1483 return retval;
1484 }
Al Viro5b6ca022011-03-09 23:04:47 -05001485 nd->path = nd->root;
1486 nd->inode = inode;
1487 if (flags & LOOKUP_RCU) {
1488 br_read_lock(vfsmount_lock);
1489 rcu_read_lock();
1490 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1491 } else {
1492 path_get(&nd->path);
1493 }
1494 return 0;
1495 }
1496
Al Viro2a737872009-04-07 11:49:53 -04001497 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001500 if (flags & LOOKUP_RCU) {
1501 br_read_lock(vfsmount_lock);
1502 rcu_read_lock();
1503 set_root_rcu(nd);
1504 } else {
1505 set_root(nd);
1506 path_get(&nd->root);
1507 }
Al Viro2a737872009-04-07 11:49:53 -04001508 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001509 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001510 if (flags & LOOKUP_RCU) {
1511 struct fs_struct *fs = current->fs;
1512 unsigned seq;
1513
1514 br_read_lock(vfsmount_lock);
1515 rcu_read_lock();
1516
1517 do {
1518 seq = read_seqcount_begin(&fs->seq);
1519 nd->path = fs->pwd;
1520 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1521 } while (read_seqcount_retry(&fs->seq, seq));
1522 } else {
1523 get_fs_pwd(current->fs, &nd->path);
1524 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001525 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001526 struct dentry *dentry;
1527
Al Viro1abf0c72011-03-13 03:51:11 -04001528 file = fget_raw_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001529 retval = -EBADF;
1530 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001531 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001532
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001533 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001534
Al Virof52e0c12011-03-14 18:56:51 -04001535 if (*name) {
1536 retval = -ENOTDIR;
1537 if (!S_ISDIR(dentry->d_inode->i_mode))
1538 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001539
Al Viro78f32a92011-06-19 11:54:42 -04001540 retval = exec_permission(dentry->d_inode, 0);
Al Virof52e0c12011-03-14 18:56:51 -04001541 if (retval)
1542 goto fput_fail;
1543 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001544
Jan Blunck5dd784d2008-02-14 19:34:38 -08001545 nd->path = file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001546 if (flags & LOOKUP_RCU) {
1547 if (fput_needed)
Al Viro70e9b352011-03-05 21:12:22 -05001548 *fp = file;
Al Viroe41f7d42011-02-22 14:02:58 -05001549 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1550 br_read_lock(vfsmount_lock);
1551 rcu_read_lock();
1552 } else {
1553 path_get(&file->f_path);
1554 fput_light(file, fput_needed);
1555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
Al Viroe41f7d42011-02-22 14:02:58 -05001557
Nick Piggin31e6b012011-01-07 17:49:52 +11001558 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001559 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001560
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001561fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001562 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001563out_fail:
1564 return retval;
1565}
1566
Al Virobd92d7f2011-03-14 19:54:59 -04001567static inline int lookup_last(struct nameidata *nd, struct path *path)
1568{
1569 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1570 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1571
1572 nd->flags &= ~LOOKUP_PARENT;
1573 return walk_component(nd, path, &nd->last, nd->last_type,
1574 nd->flags & LOOKUP_FOLLOW);
1575}
1576
Al Viro9b4a9b12009-04-07 11:44:16 -04001577/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001578static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001579 unsigned int flags, struct nameidata *nd)
1580{
Al Viro70e9b352011-03-05 21:12:22 -05001581 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001582 struct path path;
1583 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001584
1585 /*
1586 * Path walking is largely split up into 2 different synchronisation
1587 * schemes, rcu-walk and ref-walk (explained in
1588 * Documentation/filesystems/path-lookup.txt). These share much of the
1589 * path walk code, but some things particularly setup, cleanup, and
1590 * following mounts are sufficiently divergent that functions are
1591 * duplicated. Typically there is a function foo(), and its RCU
1592 * analogue, foo_rcu().
1593 *
1594 * -ECHILD is the error number of choice (just to avoid clashes) that
1595 * is returned if some aspect of an rcu-walk fails. Such an error must
1596 * be handled by restarting a traditional ref-walk (which will always
1597 * be able to complete).
1598 */
Al Virobd92d7f2011-03-14 19:54:59 -04001599 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001600
Al Virobd92d7f2011-03-14 19:54:59 -04001601 if (unlikely(err))
1602 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001603
1604 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001605 err = link_path_walk(name, nd);
1606
1607 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001608 err = lookup_last(nd, &path);
1609 while (err > 0) {
1610 void *cookie;
1611 struct path link = path;
Al Virobd92d7f2011-03-14 19:54:59 -04001612 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001613 err = follow_link(&link, nd, &cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001614 if (!err)
1615 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001616 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001617 }
1618 }
Al Viroee0827c2011-02-21 23:38:09 -05001619
Al Viro9f1fafe2011-03-25 11:00:12 -04001620 if (!err)
1621 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001622
1623 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1624 if (!nd->inode->i_op->lookup) {
1625 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001626 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001627 }
1628 }
Al Viro16c2cd72011-02-22 15:50:10 -05001629
Al Viro70e9b352011-03-05 21:12:22 -05001630 if (base)
1631 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001632
Al Viro5b6ca022011-03-09 23:04:47 -05001633 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001634 path_put(&nd->root);
1635 nd->root.mnt = NULL;
1636 }
Al Virobd92d7f2011-03-14 19:54:59 -04001637 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001638}
Nick Piggin31e6b012011-01-07 17:49:52 +11001639
Al Viroee0827c2011-02-21 23:38:09 -05001640static int do_path_lookup(int dfd, const char *name,
1641 unsigned int flags, struct nameidata *nd)
1642{
1643 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1644 if (unlikely(retval == -ECHILD))
1645 retval = path_lookupat(dfd, name, flags, nd);
1646 if (unlikely(retval == -ESTALE))
1647 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001648
1649 if (likely(!retval)) {
1650 if (unlikely(!audit_dummy_context())) {
1651 if (nd->path.dentry && nd->inode)
1652 audit_inode(name, nd->path.dentry);
1653 }
1654 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001655 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656}
1657
Al Viroc9c6cac2011-02-16 15:15:47 -05001658int kern_path_parent(const char *name, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001659{
Al Viroc9c6cac2011-02-16 15:15:47 -05001660 return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001661}
1662
Al Virod1811462008-08-02 00:49:18 -04001663int kern_path(const char *name, unsigned int flags, struct path *path)
1664{
1665 struct nameidata nd;
1666 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1667 if (!res)
1668 *path = nd.path;
1669 return res;
1670}
1671
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001672/**
1673 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1674 * @dentry: pointer to dentry of the base directory
1675 * @mnt: pointer to vfs mount of the base directory
1676 * @name: pointer to file name
1677 * @flags: lookup flags
1678 * @nd: pointer to nameidata
1679 */
1680int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1681 const char *name, unsigned int flags,
1682 struct nameidata *nd)
1683{
Al Viro5b6ca022011-03-09 23:04:47 -05001684 nd->root.dentry = dentry;
1685 nd->root.mnt = mnt;
1686 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
1687 return do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, nd);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001688}
1689
Christoph Hellwigeead1912007-10-16 23:25:38 -07001690static struct dentry *__lookup_hash(struct qstr *name,
1691 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692{
Christoph Hellwig81fca442010-10-06 10:47:47 +02001693 struct inode *inode = base->d_inode;
James Morris057f6c02007-04-26 00:12:05 -07001694 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 int err;
1696
Nick Pigginb74c79e2011-01-07 17:49:58 +11001697 err = exec_permission(inode, 0);
Christoph Hellwig81fca442010-10-06 10:47:47 +02001698 if (err)
1699 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
1701 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001702 * Don't bother with __d_lookup: callers are for creat as
1703 * well as unlink, so a lot of the time it would cost
1704 * a double lookup.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001705 */
Nick Pigginb04f7842010-08-18 04:37:34 +10001706 dentry = d_lookup(base, name);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001707
Josef Bacik44396f42011-05-31 11:58:49 -04001708 if (dentry && d_need_lookup(dentry)) {
1709 /*
1710 * __lookup_hash is called with the parent dir's i_mutex already
1711 * held, so we are good to go here.
1712 */
1713 dentry = d_inode_lookup(base, dentry, nd);
1714 if (IS_ERR(dentry))
1715 return dentry;
1716 }
1717
Nick Pigginfb045ad2011-01-07 17:49:55 +11001718 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE))
Al Viro6e6b1bd2009-08-13 23:38:37 +04001719 dentry = do_revalidate(dentry, nd);
1720
Nick Pigginbaa03892010-08-18 04:37:31 +10001721 if (!dentry)
1722 dentry = d_alloc_and_lookup(base, name, nd);
Al Viro5a202bc2011-03-08 14:17:44 -05001723
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 return dentry;
1725}
1726
James Morris057f6c02007-04-26 00:12:05 -07001727/*
1728 * Restricted form of lookup. Doesn't follow links, single-component only,
1729 * needs parent already locked. Doesn't follow mounts.
1730 * SMP-safe.
1731 */
Adrian Bunka244e162006-03-31 02:32:11 -08001732static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733{
Jan Blunck4ac91372008-02-14 19:34:32 -08001734 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735}
1736
Christoph Hellwigeead1912007-10-16 23:25:38 -07001737/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001738 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001739 * @name: pathname component to lookup
1740 * @base: base directory to lookup from
1741 * @len: maximum length @len should be interpreted to
1742 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001743 * Note that this routine is purely a helper for filesystem usage and should
1744 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001745 * nameidata argument is passed to the filesystem methods and a filesystem
1746 * using this helper needs to be prepared for that.
1747 */
James Morris057f6c02007-04-26 00:12:05 -07001748struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1749{
James Morris057f6c02007-04-26 00:12:05 -07001750 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05001751 unsigned long hash;
1752 unsigned int c;
James Morris057f6c02007-04-26 00:12:05 -07001753
David Woodhouse2f9092e2009-04-20 23:18:37 +01001754 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1755
Al Viro6a96ba52011-03-07 23:49:20 -05001756 this.name = name;
1757 this.len = len;
1758 if (!len)
1759 return ERR_PTR(-EACCES);
1760
1761 hash = init_name_hash();
1762 while (len--) {
1763 c = *(const unsigned char *)name++;
1764 if (c == '/' || c == '\0')
1765 return ERR_PTR(-EACCES);
1766 hash = partial_name_hash(c, hash);
1767 }
1768 this.hash = end_name_hash(hash);
Al Viro5a202bc2011-03-08 14:17:44 -05001769 /*
1770 * See if the low-level filesystem might want
1771 * to use its own hash..
1772 */
1773 if (base->d_flags & DCACHE_OP_HASH) {
1774 int err = base->d_op->d_hash(base, base->d_inode, &this);
1775 if (err < 0)
1776 return ERR_PTR(err);
1777 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07001778
Christoph Hellwig49705b72005-11-08 21:35:06 -08001779 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001780}
1781
Al Viro2d8f3032008-07-22 09:59:21 -04001782int user_path_at(int dfd, const char __user *name, unsigned flags,
1783 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
Al Viro2d8f3032008-07-22 09:59:21 -04001785 struct nameidata nd;
Al Virof52e0c12011-03-14 18:56:51 -04001786 char *tmp = getname_flags(name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001789
1790 BUG_ON(flags & LOOKUP_PARENT);
1791
1792 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001794 if (!err)
1795 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 }
1797 return err;
1798}
1799
Al Viro2ad94ae2008-07-21 09:32:51 -04001800static int user_path_parent(int dfd, const char __user *path,
1801 struct nameidata *nd, char **name)
1802{
1803 char *s = getname(path);
1804 int error;
1805
1806 if (IS_ERR(s))
1807 return PTR_ERR(s);
1808
1809 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1810 if (error)
1811 putname(s);
1812 else
1813 *name = s;
1814
1815 return error;
1816}
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818/*
1819 * It's inline, so penalty for filesystems that don't use sticky bit is
1820 * minimal.
1821 */
1822static inline int check_sticky(struct inode *dir, struct inode *inode)
1823{
David Howellsda9592e2008-11-14 10:39:05 +11001824 uid_t fsuid = current_fsuid();
1825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 if (!(dir->i_mode & S_ISVTX))
1827 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001828 if (current_user_ns() != inode_userns(inode))
1829 goto other_userns;
David Howellsda9592e2008-11-14 10:39:05 +11001830 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001832 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001834
1835other_userns:
1836 return !ns_capable(inode_userns(inode), CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837}
1838
1839/*
1840 * Check whether we can remove a link victim from directory dir, check
1841 * whether the type of victim is right.
1842 * 1. We can't do it if dir is read-only (done in permission())
1843 * 2. We should have write and exec permissions on dir
1844 * 3. We can't remove anything from append-only dir
1845 * 4. We can't do anything with immutable dir (done in permission())
1846 * 5. If the sticky bit on dir is set we should either
1847 * a. be owner of dir, or
1848 * b. be owner of victim, or
1849 * c. have CAP_FOWNER capability
1850 * 6. If the victim is append-only or immutable we can't do antyhing with
1851 * links pointing to it.
1852 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1853 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1854 * 9. We can't remove a root or mountpoint.
1855 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1856 * nfs_async_unlink().
1857 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001858static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859{
1860 int error;
1861
1862 if (!victim->d_inode)
1863 return -ENOENT;
1864
1865 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001866 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
Al Virof419a2e2008-07-22 00:07:17 -04001868 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 if (error)
1870 return error;
1871 if (IS_APPEND(dir))
1872 return -EPERM;
1873 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001874 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return -EPERM;
1876 if (isdir) {
1877 if (!S_ISDIR(victim->d_inode->i_mode))
1878 return -ENOTDIR;
1879 if (IS_ROOT(victim))
1880 return -EBUSY;
1881 } else if (S_ISDIR(victim->d_inode->i_mode))
1882 return -EISDIR;
1883 if (IS_DEADDIR(dir))
1884 return -ENOENT;
1885 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1886 return -EBUSY;
1887 return 0;
1888}
1889
1890/* Check whether we can create an object with dentry child in directory
1891 * dir.
1892 * 1. We can't do it if child already exists (open has special treatment for
1893 * this case, but since we are inlined it's OK)
1894 * 2. We can't do it if dir is read-only (done in permission())
1895 * 3. We should have write and exec permissions on dir
1896 * 4. We can't do it if dir is immutable (done in permission())
1897 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001898static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
1900 if (child->d_inode)
1901 return -EEXIST;
1902 if (IS_DEADDIR(dir))
1903 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001904 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905}
1906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907/*
1908 * p1 and p2 should be directories on the same fs.
1909 */
1910struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1911{
1912 struct dentry *p;
1913
1914 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001915 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 return NULL;
1917 }
1918
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001919 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001921 p = d_ancestor(p2, p1);
1922 if (p) {
1923 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1924 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1925 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 }
1927
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001928 p = d_ancestor(p1, p2);
1929 if (p) {
1930 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1931 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1932 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 }
1934
Ingo Molnarf2eace22006-07-03 00:25:05 -07001935 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1936 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 return NULL;
1938}
1939
1940void unlock_rename(struct dentry *p1, struct dentry *p2)
1941{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001942 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001944 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001945 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 }
1947}
1948
1949int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1950 struct nameidata *nd)
1951{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001952 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
1954 if (error)
1955 return error;
1956
Al Viroacfa4382008-12-04 10:06:33 -05001957 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 return -EACCES; /* shouldn't it be ENOSYS? */
1959 mode &= S_IALLUGO;
1960 mode |= S_IFREG;
1961 error = security_inode_create(dir, dentry, mode);
1962 if (error)
1963 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001965 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001966 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 return error;
1968}
1969
Al Viro73d049a2011-03-11 12:08:24 -05001970static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001972 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 struct inode *inode = dentry->d_inode;
1974 int error;
1975
Al Virobcda7652011-03-13 16:42:14 -04001976 /* O_PATH? */
1977 if (!acc_mode)
1978 return 0;
1979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 if (!inode)
1981 return -ENOENT;
1982
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001983 switch (inode->i_mode & S_IFMT) {
1984 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001986 case S_IFDIR:
1987 if (acc_mode & MAY_WRITE)
1988 return -EISDIR;
1989 break;
1990 case S_IFBLK:
1991 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001992 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001994 /*FALLTHRU*/
1995 case S_IFIFO:
1996 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001998 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001999 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002000
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002001 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002002 if (error)
2003 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002004
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 /*
2006 * An append-only file must be opened in append mode for writing.
2007 */
2008 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002009 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002010 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002012 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 }
2014
2015 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002016 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002017 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
2019 /*
2020 * Ensure there are no outstanding leases on the file.
2021 */
Al Virob65a9cf2009-12-16 06:27:40 -05002022 return break_lease(inode, flag);
Al Viro7715b522009-12-16 03:54:00 -05002023}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Jeff Laytone1181ee2010-12-07 16:19:50 -05002025static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002026{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002027 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002028 struct inode *inode = path->dentry->d_inode;
2029 int error = get_write_access(inode);
2030 if (error)
2031 return error;
2032 /*
2033 * Refuse to truncate files with mandatory locks held on them.
2034 */
2035 error = locks_verify_locked(inode);
2036 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002037 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002038 if (!error) {
2039 error = do_truncate(path->dentry, 0,
2040 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002041 filp);
Al Viro7715b522009-12-16 03:54:00 -05002042 }
2043 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002044 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045}
2046
Dave Hansend57999e2008-02-15 14:37:27 -08002047/*
Dave Hansend57999e2008-02-15 14:37:27 -08002048 * Note that while the flag value (low two bits) for sys_open means:
2049 * 00 - read-only
2050 * 01 - write-only
2051 * 10 - read-write
2052 * 11 - special
2053 * it is changed into
2054 * 00 - no permissions needed
2055 * 01 - read-permission
2056 * 10 - write-permission
2057 * 11 - read-write
2058 * for the internal routines (ie open_namei()/follow_link() etc)
2059 * This is more logical, and also allows the 00 "no perm needed"
2060 * to be used for symlinks (where the permissions are checked
2061 * later).
2062 *
2063*/
2064static inline int open_to_namei_flags(int flag)
2065{
2066 if ((flag+1) & O_ACCMODE)
2067 flag++;
2068 return flag;
2069}
2070
Nick Piggin31e6b012011-01-07 17:49:52 +11002071/*
Al Virofe2d35f2011-03-05 22:58:25 -05002072 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002073 */
Al Virofb1cc552009-12-24 01:58:28 -05002074static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viroc3e380b2011-02-23 13:39:45 -05002075 const struct open_flags *op, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002076{
Al Viroa1e28032009-12-24 02:12:06 -05002077 struct dentry *dir = nd->path.dentry;
Al Viro6c0d46c2011-03-09 00:59:59 -05002078 struct dentry *dentry;
Al Viroca344a892011-03-09 00:36:45 -05002079 int open_flag = op->open_flag;
Al Viro6c0d46c2011-03-09 00:59:59 -05002080 int will_truncate = open_flag & O_TRUNC;
Al Viroca344a892011-03-09 00:36:45 -05002081 int want_write = 0;
Al Virobcda7652011-03-13 16:42:14 -04002082 int acc_mode = op->acc_mode;
Al Virofb1cc552009-12-24 01:58:28 -05002083 struct file *filp;
Al Viro16c2cd72011-02-22 15:50:10 -05002084 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002085
Al Viroc3e380b2011-02-23 13:39:45 -05002086 nd->flags &= ~LOOKUP_PARENT;
2087 nd->flags |= op->intent;
2088
Al Viro1f36f772009-12-26 10:56:19 -05002089 switch (nd->last_type) {
2090 case LAST_DOTDOT:
Neil Brown176306f2010-05-24 16:57:56 +10002091 case LAST_DOT:
Al Virofe2d35f2011-03-05 22:58:25 -05002092 error = handle_dots(nd, nd->last_type);
2093 if (error)
2094 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002095 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002096 case LAST_ROOT:
Al Viro9f1fafe2011-03-25 11:00:12 -04002097 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002098 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002099 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002100 audit_inode(pathname, nd->path.dentry);
Al Viroca344a892011-03-09 00:36:45 -05002101 if (open_flag & O_CREAT) {
Al Virofe2d35f2011-03-05 22:58:25 -05002102 error = -EISDIR;
2103 goto exit;
2104 }
2105 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002106 case LAST_BIND:
Al Viro9f1fafe2011-03-25 11:00:12 -04002107 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002108 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002109 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002110 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002111 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002112 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002113
Al Viroca344a892011-03-09 00:36:45 -05002114 if (!(open_flag & O_CREAT)) {
Al Virobcda7652011-03-13 16:42:14 -04002115 int symlink_ok = 0;
Al Virofe2d35f2011-03-05 22:58:25 -05002116 if (nd->last.name[nd->last.len])
2117 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002118 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2119 symlink_ok = 1;
Al Virofe2d35f2011-03-05 22:58:25 -05002120 /* we _can_ be in RCU mode here */
Al Viroce57dfc2011-03-13 19:58:58 -04002121 error = walk_component(nd, path, &nd->last, LAST_NORM,
2122 !symlink_ok);
2123 if (error < 0)
Al Virofe2d35f2011-03-05 22:58:25 -05002124 return ERR_PTR(error);
Al Viroce57dfc2011-03-13 19:58:58 -04002125 if (error) /* symlink */
Al Virofe2d35f2011-03-05 22:58:25 -05002126 return NULL;
Al Virofe2d35f2011-03-05 22:58:25 -05002127 /* sayonara */
Al Viro9f1fafe2011-03-25 11:00:12 -04002128 error = complete_walk(nd);
2129 if (error)
2130 return ERR_PTR(-ECHILD);
Al Virofe2d35f2011-03-05 22:58:25 -05002131
2132 error = -ENOTDIR;
2133 if (nd->flags & LOOKUP_DIRECTORY) {
Al Viroce57dfc2011-03-13 19:58:58 -04002134 if (!nd->inode->i_op->lookup)
Al Virofe2d35f2011-03-05 22:58:25 -05002135 goto exit;
2136 }
2137 audit_inode(pathname, nd->path.dentry);
2138 goto ok;
2139 }
2140
2141 /* create side of things */
Al Viro9f1fafe2011-03-25 11:00:12 -04002142 error = complete_walk(nd);
2143 if (error)
2144 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002145
2146 audit_inode(pathname, dir);
Al Viro16c2cd72011-02-22 15:50:10 -05002147 error = -EISDIR;
Al Viro1f36f772009-12-26 10:56:19 -05002148 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002149 if (nd->last.name[nd->last.len])
2150 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002151
Al Viroa1e28032009-12-24 02:12:06 -05002152 mutex_lock(&dir->d_inode->i_mutex);
2153
Al Viro6c0d46c2011-03-09 00:59:59 -05002154 dentry = lookup_hash(nd);
2155 error = PTR_ERR(dentry);
2156 if (IS_ERR(dentry)) {
Al Virofb1cc552009-12-24 01:58:28 -05002157 mutex_unlock(&dir->d_inode->i_mutex);
2158 goto exit;
2159 }
2160
Al Viro6c0d46c2011-03-09 00:59:59 -05002161 path->dentry = dentry;
2162 path->mnt = nd->path.mnt;
2163
Al Virofb1cc552009-12-24 01:58:28 -05002164 /* Negative dentry, just create the file */
Al Viro6c0d46c2011-03-09 00:59:59 -05002165 if (!dentry->d_inode) {
2166 int mode = op->mode;
2167 if (!IS_POSIXACL(dir->d_inode))
2168 mode &= ~current_umask();
Al Virofb1cc552009-12-24 01:58:28 -05002169 /*
2170 * This write is needed to ensure that a
Al Viro6c0d46c2011-03-09 00:59:59 -05002171 * rw->ro transition does not occur between
Al Virofb1cc552009-12-24 01:58:28 -05002172 * the time when the file is created and when
2173 * a permanent write count is taken through
2174 * the 'struct file' in nameidata_to_filp().
2175 */
2176 error = mnt_want_write(nd->path.mnt);
2177 if (error)
2178 goto exit_mutex_unlock;
Al Viroca344a892011-03-09 00:36:45 -05002179 want_write = 1;
Al Viro9b44f1b2011-03-09 00:17:27 -05002180 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002181 open_flag &= ~O_TRUNC;
Al Viro6c0d46c2011-03-09 00:59:59 -05002182 will_truncate = 0;
Al Virobcda7652011-03-13 16:42:14 -04002183 acc_mode = MAY_OPEN;
Al Viro6c0d46c2011-03-09 00:59:59 -05002184 error = security_path_mknod(&nd->path, dentry, mode, 0);
2185 if (error)
2186 goto exit_mutex_unlock;
2187 error = vfs_create(dir->d_inode, dentry, mode, nd);
2188 if (error)
2189 goto exit_mutex_unlock;
2190 mutex_unlock(&dir->d_inode->i_mutex);
2191 dput(nd->path.dentry);
2192 nd->path.dentry = dentry;
Al Viroca344a892011-03-09 00:36:45 -05002193 goto common;
Al Virofb1cc552009-12-24 01:58:28 -05002194 }
2195
2196 /*
2197 * It already exists.
2198 */
2199 mutex_unlock(&dir->d_inode->i_mutex);
2200 audit_inode(pathname, path->dentry);
2201
2202 error = -EEXIST;
Al Viroca344a892011-03-09 00:36:45 -05002203 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002204 goto exit_dput;
2205
David Howells9875cf82011-01-14 18:45:21 +00002206 error = follow_managed(path, nd->flags);
2207 if (error < 0)
2208 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002209
2210 error = -ENOENT;
2211 if (!path->dentry->d_inode)
2212 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002213
2214 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002215 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002216
2217 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002218 nd->inode = path->dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05002219 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002220 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002221 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002222ok:
Al Viro6c0d46c2011-03-09 00:59:59 -05002223 if (!S_ISREG(nd->inode->i_mode))
2224 will_truncate = 0;
2225
Al Viro0f9d1a12011-03-09 00:13:14 -05002226 if (will_truncate) {
2227 error = mnt_want_write(nd->path.mnt);
2228 if (error)
2229 goto exit;
Al Viroca344a892011-03-09 00:36:45 -05002230 want_write = 1;
Al Viro0f9d1a12011-03-09 00:13:14 -05002231 }
Al Viroca344a892011-03-09 00:36:45 -05002232common:
Al Virobcda7652011-03-13 16:42:14 -04002233 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002234 if (error)
Al Viro0f9d1a12011-03-09 00:13:14 -05002235 goto exit;
Al Viro0f9d1a12011-03-09 00:13:14 -05002236 filp = nameidata_to_filp(nd);
2237 if (!IS_ERR(filp)) {
2238 error = ima_file_check(filp, op->acc_mode);
2239 if (error) {
2240 fput(filp);
2241 filp = ERR_PTR(error);
2242 }
2243 }
2244 if (!IS_ERR(filp)) {
2245 if (will_truncate) {
2246 error = handle_truncate(filp);
2247 if (error) {
2248 fput(filp);
2249 filp = ERR_PTR(error);
2250 }
2251 }
2252 }
Al Viroca344a892011-03-09 00:36:45 -05002253out:
2254 if (want_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002255 mnt_drop_write(nd->path.mnt);
2256 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002257 return filp;
2258
2259exit_mutex_unlock:
2260 mutex_unlock(&dir->d_inode->i_mutex);
2261exit_dput:
2262 path_put_conditional(path, nd);
2263exit:
Al Viroca344a892011-03-09 00:36:45 -05002264 filp = ERR_PTR(error);
2265 goto out;
Al Virofb1cc552009-12-24 01:58:28 -05002266}
2267
Al Viro13aab422011-02-23 17:54:08 -05002268static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002269 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270{
Al Virofe2d35f2011-03-05 22:58:25 -05002271 struct file *base = NULL;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002272 struct file *filp;
Al Viro9850c052010-01-13 15:01:15 -05002273 struct path path;
Al Viro13aab422011-02-23 17:54:08 -05002274 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002275
2276 filp = get_empty_filp();
2277 if (!filp)
2278 return ERR_PTR(-ENFILE);
2279
Al Viro47c805d2011-02-23 17:44:09 -05002280 filp->f_flags = op->open_flag;
Al Viro73d049a2011-03-11 12:08:24 -05002281 nd->intent.open.file = filp;
2282 nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2283 nd->intent.open.create_mode = op->mode;
Nick Piggin31e6b012011-01-07 17:49:52 +11002284
Al Viro73d049a2011-03-11 12:08:24 -05002285 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002286 if (unlikely(error))
Al Viro13aab422011-02-23 17:54:08 -05002287 goto out_filp;
Nick Piggin31e6b012011-01-07 17:49:52 +11002288
Al Virofe2d35f2011-03-05 22:58:25 -05002289 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002290 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002291 if (unlikely(error))
2292 goto out_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293
Al Viro73d049a2011-03-11 12:08:24 -05002294 filp = do_last(nd, &path, op, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002295 while (unlikely(!filp)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002296 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05002297 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04002298 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05002299 path_put_conditional(&path, nd);
2300 path_put(&nd->path);
Al Viro40b39132011-03-09 16:22:18 -05002301 filp = ERR_PTR(-ELOOP);
2302 break;
2303 }
Al Viro73d049a2011-03-11 12:08:24 -05002304 nd->flags |= LOOKUP_PARENT;
2305 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04002306 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002307 if (unlikely(error))
Al Virof1afe9e2011-02-22 22:27:28 -05002308 filp = ERR_PTR(error);
Al Viroc3e380b2011-02-23 13:39:45 -05002309 else
Al Viro73d049a2011-03-11 12:08:24 -05002310 filp = do_last(nd, &path, op, pathname);
Al Viro574197e2011-03-14 22:20:34 -04002311 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002312 }
Al Viro10fa8e62009-12-26 07:09:49 -05002313out:
Al Viro73d049a2011-03-11 12:08:24 -05002314 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2315 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002316 if (base)
2317 fput(base);
Al Viro73d049a2011-03-11 12:08:24 -05002318 release_open_intent(nd);
Al Viro10fa8e62009-12-26 07:09:49 -05002319 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
Nick Piggin31e6b012011-01-07 17:49:52 +11002321out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002322 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002323 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324}
2325
Al Viro13aab422011-02-23 17:54:08 -05002326struct file *do_filp_open(int dfd, const char *pathname,
2327 const struct open_flags *op, int flags)
2328{
Al Viro73d049a2011-03-11 12:08:24 -05002329 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002330 struct file *filp;
2331
Al Viro73d049a2011-03-11 12:08:24 -05002332 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002333 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002334 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002335 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002336 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002337 return filp;
2338}
2339
Al Viro73d049a2011-03-11 12:08:24 -05002340struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2341 const char *name, const struct open_flags *op, int flags)
2342{
2343 struct nameidata nd;
2344 struct file *file;
2345
2346 nd.root.mnt = mnt;
2347 nd.root.dentry = dentry;
2348
2349 flags |= LOOKUP_ROOT;
2350
Al Virobcda7652011-03-13 16:42:14 -04002351 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002352 return ERR_PTR(-ELOOP);
2353
2354 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2355 if (unlikely(file == ERR_PTR(-ECHILD)))
2356 file = path_openat(-1, name, &nd, op, flags);
2357 if (unlikely(file == ERR_PTR(-ESTALE)))
2358 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2359 return file;
2360}
2361
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362/**
2363 * lookup_create - lookup a dentry, creating it if it doesn't exist
2364 * @nd: nameidata info
2365 * @is_dir: directory flag
2366 *
2367 * Simple function to lookup and return a dentry and create it
2368 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002369 *
Jan Blunck4ac91372008-02-14 19:34:32 -08002370 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 */
2372struct dentry *lookup_create(struct nameidata *nd, int is_dir)
2373{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002374 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375
Jan Blunck4ac91372008-02-14 19:34:32 -08002376 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002377 /*
2378 * Yucky last component or no last component at all?
2379 * (foo/., foo/.., /////)
2380 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 if (nd->last_type != LAST_NORM)
2382 goto fail;
2383 nd->flags &= ~LOOKUP_PARENT;
Al Viro35165862008-08-05 03:00:49 -04002384 nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
ASANO Masahiroa6349042006-08-22 20:06:02 -04002385 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002386
2387 /*
2388 * Do the final lookup.
2389 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08002390 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 if (IS_ERR(dentry))
2392 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002393
Al Viroe9baf6e2008-05-15 04:49:12 -04002394 if (dentry->d_inode)
2395 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002396 /*
2397 * Special case - lookup gave negative, but... we had foo/bar/
2398 * From the vfs_mknod() POV we just have a negative dentry -
2399 * all is fine. Let's be bastards - you had / on the end, you've
2400 * been asking for (non-existent) directory. -ENOENT for you.
2401 */
Al Viroe9baf6e2008-05-15 04:49:12 -04002402 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
2403 dput(dentry);
2404 dentry = ERR_PTR(-ENOENT);
2405 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002407eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002409 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410fail:
2411 return dentry;
2412}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07002413EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414
2415int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2416{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002417 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
2419 if (error)
2420 return error;
2421
Serge E. Hallyne795b712011-03-23 16:43:25 -07002422 if ((S_ISCHR(mode) || S_ISBLK(mode)) &&
2423 !ns_capable(inode_userns(dir), CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 return -EPERM;
2425
Al Viroacfa4382008-12-04 10:06:33 -05002426 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 return -EPERM;
2428
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002429 error = devcgroup_inode_mknod(mode, dev);
2430 if (error)
2431 return error;
2432
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 error = security_inode_mknod(dir, dentry, mode, dev);
2434 if (error)
2435 return error;
2436
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002438 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002439 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 return error;
2441}
2442
Dave Hansen463c3192008-02-15 14:37:57 -08002443static int may_mknod(mode_t mode)
2444{
2445 switch (mode & S_IFMT) {
2446 case S_IFREG:
2447 case S_IFCHR:
2448 case S_IFBLK:
2449 case S_IFIFO:
2450 case S_IFSOCK:
2451 case 0: /* zero mode translates to S_IFREG */
2452 return 0;
2453 case S_IFDIR:
2454 return -EPERM;
2455 default:
2456 return -EINVAL;
2457 }
2458}
2459
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002460SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2461 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462{
Al Viro2ad94ae2008-07-21 09:32:51 -04002463 int error;
2464 char *tmp;
2465 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 struct nameidata nd;
2467
2468 if (S_ISDIR(mode))
2469 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
Al Viro2ad94ae2008-07-21 09:32:51 -04002471 error = user_path_parent(dfd, filename, &nd, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002473 return error;
2474
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 dentry = lookup_create(&nd, 0);
Dave Hansen463c3192008-02-15 14:37:57 -08002476 if (IS_ERR(dentry)) {
2477 error = PTR_ERR(dentry);
2478 goto out_unlock;
2479 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002480 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002481 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002482 error = may_mknod(mode);
2483 if (error)
2484 goto out_dput;
2485 error = mnt_want_write(nd.path.mnt);
2486 if (error)
2487 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002488 error = security_path_mknod(&nd.path, dentry, mode, dev);
2489 if (error)
2490 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002491 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08002493 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 break;
2495 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002496 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497 new_decode_dev(dev));
2498 break;
2499 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002500 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002503out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002504 mnt_drop_write(nd.path.mnt);
2505out_dput:
2506 dput(dentry);
2507out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002508 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002509 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 putname(tmp);
2511
2512 return error;
2513}
2514
Heiko Carstens3480b252009-01-14 14:14:16 +01002515SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002516{
2517 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2518}
2519
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2521{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002522 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
2524 if (error)
2525 return error;
2526
Al Viroacfa4382008-12-04 10:06:33 -05002527 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 return -EPERM;
2529
2530 mode &= (S_IRWXUGO|S_ISVTX);
2531 error = security_inode_mkdir(dir, dentry, mode);
2532 if (error)
2533 return error;
2534
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002536 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002537 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 return error;
2539}
2540
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002541SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542{
2543 int error = 0;
2544 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002545 struct dentry *dentry;
2546 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Al Viro2ad94ae2008-07-21 09:32:51 -04002548 error = user_path_parent(dfd, pathname, &nd, &tmp);
2549 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002550 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
Dave Hansen6902d922006-09-30 23:29:01 -07002552 dentry = lookup_create(&nd, 1);
2553 error = PTR_ERR(dentry);
2554 if (IS_ERR(dentry))
2555 goto out_unlock;
2556
Jan Blunck4ac91372008-02-14 19:34:32 -08002557 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002558 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002559 error = mnt_want_write(nd.path.mnt);
2560 if (error)
2561 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002562 error = security_path_mkdir(&nd.path, dentry, mode);
2563 if (error)
2564 goto out_drop_write;
Jan Blunck4ac91372008-02-14 19:34:32 -08002565 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002566out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002567 mnt_drop_write(nd.path.mnt);
2568out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002569 dput(dentry);
2570out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002571 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002572 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002573 putname(tmp);
2574out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 return error;
2576}
2577
Heiko Carstens3cdad422009-01-14 14:14:22 +01002578SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002579{
2580 return sys_mkdirat(AT_FDCWD, pathname, mode);
2581}
2582
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583/*
Sage Weila71905f2011-05-24 13:06:08 -07002584 * The dentry_unhash() helper will try to drop the dentry early: we
2585 * should have a usage count of 2 if we're the only user of this
2586 * dentry, and if that is true (possibly after pruning the dcache),
2587 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 *
2589 * A low-level filesystem can, if it choses, legally
2590 * do a
2591 *
2592 * if (!d_unhashed(dentry))
2593 * return -EBUSY;
2594 *
2595 * if it cannot handle the case of removing a directory
2596 * that is still in use by something else..
2597 */
2598void dentry_unhash(struct dentry *dentry)
2599{
Vasily Averindc168422006-12-06 20:37:07 -08002600 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 spin_lock(&dentry->d_lock);
Sage Weil64252c72011-05-24 13:06:05 -07002602 if (dentry->d_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 __d_drop(dentry);
2604 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605}
2606
2607int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2608{
2609 int error = may_delete(dir, dentry, 1);
2610
2611 if (error)
2612 return error;
2613
Al Viroacfa4382008-12-04 10:06:33 -05002614 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 return -EPERM;
2616
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002617 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Sage Weil912dbc12011-05-24 13:06:11 -07002619 error = -EBUSY;
2620 if (d_mountpoint(dentry))
2621 goto out;
2622
2623 error = security_inode_rmdir(dir, dentry);
2624 if (error)
2625 goto out;
2626
Sage Weil3cebde22011-05-29 21:20:59 -07002627 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07002628 error = dir->i_op->rmdir(dir, dentry);
2629 if (error)
2630 goto out;
2631
2632 dentry->d_inode->i_flags |= S_DEAD;
2633 dont_mount(dentry);
2634
2635out:
2636 mutex_unlock(&dentry->d_inode->i_mutex);
2637 if (!error)
2638 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 return error;
2640}
2641
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002642static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643{
2644 int error = 0;
2645 char * name;
2646 struct dentry *dentry;
2647 struct nameidata nd;
2648
Al Viro2ad94ae2008-07-21 09:32:51 -04002649 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002651 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
2653 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002654 case LAST_DOTDOT:
2655 error = -ENOTEMPTY;
2656 goto exit1;
2657 case LAST_DOT:
2658 error = -EINVAL;
2659 goto exit1;
2660 case LAST_ROOT:
2661 error = -EBUSY;
2662 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002664
2665 nd.flags &= ~LOOKUP_PARENT;
2666
Jan Blunck4ac91372008-02-14 19:34:32 -08002667 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002668 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002670 if (IS_ERR(dentry))
2671 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002672 if (!dentry->d_inode) {
2673 error = -ENOENT;
2674 goto exit3;
2675 }
Dave Hansen06227532008-02-15 14:37:34 -08002676 error = mnt_want_write(nd.path.mnt);
2677 if (error)
2678 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002679 error = security_path_rmdir(&nd.path, dentry);
2680 if (error)
2681 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002682 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002683exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002684 mnt_drop_write(nd.path.mnt);
2685exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002686 dput(dentry);
2687exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002688 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002690 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 putname(name);
2692 return error;
2693}
2694
Heiko Carstens3cdad422009-01-14 14:14:22 +01002695SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002696{
2697 return do_rmdir(AT_FDCWD, pathname);
2698}
2699
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700int vfs_unlink(struct inode *dir, struct dentry *dentry)
2701{
2702 int error = may_delete(dir, dentry, 0);
2703
2704 if (error)
2705 return error;
2706
Al Viroacfa4382008-12-04 10:06:33 -05002707 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 return -EPERM;
2709
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002710 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 if (d_mountpoint(dentry))
2712 error = -EBUSY;
2713 else {
2714 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002715 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002717 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002718 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002721 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
2723 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2724 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002725 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 }
Robert Love0eeca282005-07-12 17:06:03 -04002728
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 return error;
2730}
2731
2732/*
2733 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002734 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 * writeout happening, and we don't want to prevent access to the directory
2736 * while waiting on the I/O.
2737 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002738static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739{
Al Viro2ad94ae2008-07-21 09:32:51 -04002740 int error;
2741 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 struct dentry *dentry;
2743 struct nameidata nd;
2744 struct inode *inode = NULL;
2745
Al Viro2ad94ae2008-07-21 09:32:51 -04002746 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002748 return error;
2749
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 error = -EISDIR;
2751 if (nd.last_type != LAST_NORM)
2752 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002753
2754 nd.flags &= ~LOOKUP_PARENT;
2755
Jan Blunck4ac91372008-02-14 19:34:32 -08002756 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002757 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 error = PTR_ERR(dentry);
2759 if (!IS_ERR(dentry)) {
2760 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03002761 if (nd.last.name[nd.last.len])
2762 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 inode = dentry->d_inode;
Török Edwin50338b82011-06-16 00:06:14 +03002764 if (!inode)
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002765 goto slashes;
2766 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002767 error = mnt_want_write(nd.path.mnt);
2768 if (error)
2769 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002770 error = security_path_unlink(&nd.path, dentry);
2771 if (error)
2772 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002773 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002774exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002775 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 exit2:
2777 dput(dentry);
2778 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002779 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 if (inode)
2781 iput(inode); /* truncate the inode here */
2782exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002783 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 putname(name);
2785 return error;
2786
2787slashes:
2788 error = !dentry->d_inode ? -ENOENT :
2789 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2790 goto exit2;
2791}
2792
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002793SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002794{
2795 if ((flag & ~AT_REMOVEDIR) != 0)
2796 return -EINVAL;
2797
2798 if (flag & AT_REMOVEDIR)
2799 return do_rmdir(dfd, pathname);
2800
2801 return do_unlinkat(dfd, pathname);
2802}
2803
Heiko Carstens3480b252009-01-14 14:14:16 +01002804SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002805{
2806 return do_unlinkat(AT_FDCWD, pathname);
2807}
2808
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002809int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002811 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
2813 if (error)
2814 return error;
2815
Al Viroacfa4382008-12-04 10:06:33 -05002816 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 return -EPERM;
2818
2819 error = security_inode_symlink(dir, dentry, oldname);
2820 if (error)
2821 return error;
2822
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002824 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002825 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 return error;
2827}
2828
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002829SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2830 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831{
Al Viro2ad94ae2008-07-21 09:32:51 -04002832 int error;
2833 char *from;
2834 char *to;
Dave Hansen6902d922006-09-30 23:29:01 -07002835 struct dentry *dentry;
2836 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
2838 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002839 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002841
2842 error = user_path_parent(newdfd, newname, &nd, &to);
2843 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002844 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
Dave Hansen6902d922006-09-30 23:29:01 -07002846 dentry = lookup_create(&nd, 0);
2847 error = PTR_ERR(dentry);
2848 if (IS_ERR(dentry))
2849 goto out_unlock;
2850
Dave Hansen75c3f292008-02-15 14:37:45 -08002851 error = mnt_want_write(nd.path.mnt);
2852 if (error)
2853 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002854 error = security_path_symlink(&nd.path, dentry, from);
2855 if (error)
2856 goto out_drop_write;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002857 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002858out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002859 mnt_drop_write(nd.path.mnt);
2860out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002861 dput(dentry);
2862out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002863 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002864 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002865 putname(to);
2866out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 putname(from);
2868 return error;
2869}
2870
Heiko Carstens3480b252009-01-14 14:14:16 +01002871SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002872{
2873 return sys_symlinkat(oldname, AT_FDCWD, newname);
2874}
2875
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2877{
2878 struct inode *inode = old_dentry->d_inode;
2879 int error;
2880
2881 if (!inode)
2882 return -ENOENT;
2883
Miklos Szeredia95164d2008-07-30 15:08:48 +02002884 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 if (error)
2886 return error;
2887
2888 if (dir->i_sb != inode->i_sb)
2889 return -EXDEV;
2890
2891 /*
2892 * A link to an append-only or immutable file cannot be created.
2893 */
2894 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2895 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05002896 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002898 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 return -EPERM;
2900
2901 error = security_inode_link(old_dentry, dir, new_dentry);
2902 if (error)
2903 return error;
2904
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002905 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05302906 /* Make sure we don't allow creating hardlink to an unlinked file */
2907 if (inode->i_nlink == 0)
2908 error = -ENOENT;
2909 else
2910 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002911 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002912 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002913 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 return error;
2915}
2916
2917/*
2918 * Hardlinks are often used in delicate situations. We avoid
2919 * security-related surprises by not following symlinks on the
2920 * newname. --KAB
2921 *
2922 * We don't follow them on the oldname either to be compatible
2923 * with linux 2.0, and to avoid hard-linking to directories
2924 * and other special files. --ADM
2925 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002926SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2927 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928{
2929 struct dentry *new_dentry;
Al Viro2d8f3032008-07-22 09:59:21 -04002930 struct nameidata nd;
2931 struct path old_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302932 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 int error;
Al Viro2ad94ae2008-07-21 09:32:51 -04002934 char *to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302936 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002937 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302938 /*
2939 * To use null names we require CAP_DAC_READ_SEARCH
2940 * This ensures that not everyone will be able to create
2941 * handlink using the passed filedescriptor.
2942 */
2943 if (flags & AT_EMPTY_PATH) {
2944 if (!capable(CAP_DAC_READ_SEARCH))
2945 return -ENOENT;
2946 how = LOOKUP_EMPTY;
2947 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002948
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302949 if (flags & AT_SYMLINK_FOLLOW)
2950 how |= LOOKUP_FOLLOW;
2951
2952 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002954 return error;
2955
2956 error = user_path_parent(newdfd, newname, &nd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 if (error)
2958 goto out;
2959 error = -EXDEV;
Al Viro2d8f3032008-07-22 09:59:21 -04002960 if (old_path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 goto out_release;
2962 new_dentry = lookup_create(&nd, 0);
2963 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002964 if (IS_ERR(new_dentry))
2965 goto out_unlock;
Dave Hansen75c3f292008-02-15 14:37:45 -08002966 error = mnt_want_write(nd.path.mnt);
2967 if (error)
2968 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002969 error = security_path_link(old_path.dentry, &nd.path, new_dentry);
2970 if (error)
2971 goto out_drop_write;
Al Viro2d8f3032008-07-22 09:59:21 -04002972 error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002973out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002974 mnt_drop_write(nd.path.mnt);
2975out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002976 dput(new_dentry);
2977out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002978 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08002980 path_put(&nd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002981 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982out:
Al Viro2d8f3032008-07-22 09:59:21 -04002983 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984
2985 return error;
2986}
2987
Heiko Carstens3480b252009-01-14 14:14:16 +01002988SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002989{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002990 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002991}
2992
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993/*
2994 * The worst of all namespace operations - renaming directory. "Perverted"
2995 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2996 * Problems:
2997 * a) we can get into loop creation. Check is done in is_subdir().
2998 * b) race potential - two innocent renames can create a loop together.
2999 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003000 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 * story.
3002 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003003 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 * whether the target exists). Solution: try to be smart with locking
3005 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003006 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 * move will be locked. Thus we can rank directories by the tree
3008 * (ancestors first) and rank all non-directories after them.
3009 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003010 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 * HOWEVER, it relies on the assumption that any object with ->lookup()
3012 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3013 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07003014 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003015 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003017 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 * locking].
3019 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07003020static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3021 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022{
3023 int error = 0;
Sage Weil9055cba2011-05-24 13:06:12 -07003024 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025
3026 /*
3027 * If we are going to change the parent - check write permissions,
3028 * we'll need to flip '..'.
3029 */
3030 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04003031 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 if (error)
3033 return error;
3034 }
3035
3036 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3037 if (error)
3038 return error;
3039
Al Virod83c49f2010-04-30 17:17:09 -04003040 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003041 mutex_lock(&target->i_mutex);
Sage Weil9055cba2011-05-24 13:06:12 -07003042
3043 error = -EBUSY;
3044 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3045 goto out;
3046
Sage Weil3cebde22011-05-29 21:20:59 -07003047 if (target)
3048 shrink_dcache_parent(new_dentry);
Sage Weil9055cba2011-05-24 13:06:12 -07003049 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3050 if (error)
3051 goto out;
3052
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 if (target) {
Sage Weil9055cba2011-05-24 13:06:12 -07003054 target->i_flags |= S_DEAD;
3055 dont_mount(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 }
Sage Weil9055cba2011-05-24 13:06:12 -07003057out:
3058 if (target)
3059 mutex_unlock(&target->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003060 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003061 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3062 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 return error;
3064}
3065
Adrian Bunk75c96f82005-05-05 16:16:09 -07003066static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3067 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068{
Sage Weil51892bb2011-05-24 13:06:13 -07003069 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 int error;
3071
3072 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3073 if (error)
3074 return error;
3075
3076 dget(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003078 mutex_lock(&target->i_mutex);
Sage Weil51892bb2011-05-24 13:06:13 -07003079
3080 error = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
Sage Weil51892bb2011-05-24 13:06:13 -07003082 goto out;
3083
3084 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3085 if (error)
3086 goto out;
3087
3088 if (target)
3089 dont_mount(new_dentry);
3090 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3091 d_move(old_dentry, new_dentry);
3092out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003094 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 dput(new_dentry);
3096 return error;
3097}
3098
3099int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3100 struct inode *new_dir, struct dentry *new_dentry)
3101{
3102 int error;
3103 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003104 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105
3106 if (old_dentry->d_inode == new_dentry->d_inode)
3107 return 0;
3108
3109 error = may_delete(old_dir, old_dentry, is_dir);
3110 if (error)
3111 return error;
3112
3113 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003114 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 else
3116 error = may_delete(new_dir, new_dentry, is_dir);
3117 if (error)
3118 return error;
3119
Al Viroacfa4382008-12-04 10:06:33 -05003120 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 return -EPERM;
3122
Robert Love0eeca282005-07-12 17:06:03 -04003123 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3124
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 if (is_dir)
3126 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3127 else
3128 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003129 if (!error)
3130 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003131 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003132 fsnotify_oldname_free(old_name);
3133
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 return error;
3135}
3136
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003137SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3138 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139{
Al Viro2ad94ae2008-07-21 09:32:51 -04003140 struct dentry *old_dir, *new_dir;
3141 struct dentry *old_dentry, *new_dentry;
3142 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003144 char *from;
3145 char *to;
3146 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147
Al Viro2ad94ae2008-07-21 09:32:51 -04003148 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 if (error)
3150 goto exit;
3151
Al Viro2ad94ae2008-07-21 09:32:51 -04003152 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 if (error)
3154 goto exit1;
3155
3156 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003157 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 goto exit2;
3159
Jan Blunck4ac91372008-02-14 19:34:32 -08003160 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 error = -EBUSY;
3162 if (oldnd.last_type != LAST_NORM)
3163 goto exit2;
3164
Jan Blunck4ac91372008-02-14 19:34:32 -08003165 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 if (newnd.last_type != LAST_NORM)
3167 goto exit2;
3168
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003169 oldnd.flags &= ~LOOKUP_PARENT;
3170 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003171 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003172
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 trap = lock_rename(new_dir, old_dir);
3174
Christoph Hellwig49705b72005-11-08 21:35:06 -08003175 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176 error = PTR_ERR(old_dentry);
3177 if (IS_ERR(old_dentry))
3178 goto exit3;
3179 /* source must exist */
3180 error = -ENOENT;
3181 if (!old_dentry->d_inode)
3182 goto exit4;
3183 /* unless the source is a directory trailing slashes give -ENOTDIR */
3184 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3185 error = -ENOTDIR;
3186 if (oldnd.last.name[oldnd.last.len])
3187 goto exit4;
3188 if (newnd.last.name[newnd.last.len])
3189 goto exit4;
3190 }
3191 /* source should not be ancestor of target */
3192 error = -EINVAL;
3193 if (old_dentry == trap)
3194 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003195 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 error = PTR_ERR(new_dentry);
3197 if (IS_ERR(new_dentry))
3198 goto exit4;
3199 /* target should not be an ancestor of source */
3200 error = -ENOTEMPTY;
3201 if (new_dentry == trap)
3202 goto exit5;
3203
Dave Hansen9079b1e2008-02-15 14:37:49 -08003204 error = mnt_want_write(oldnd.path.mnt);
3205 if (error)
3206 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003207 error = security_path_rename(&oldnd.path, old_dentry,
3208 &newnd.path, new_dentry);
3209 if (error)
3210 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 error = vfs_rename(old_dir->d_inode, old_dentry,
3212 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003213exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003214 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215exit5:
3216 dput(new_dentry);
3217exit4:
3218 dput(old_dentry);
3219exit3:
3220 unlock_rename(new_dir, old_dir);
3221exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003222 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003223 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003225 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003227exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 return error;
3229}
3230
Heiko Carstensa26eab22009-01-14 14:14:17 +01003231SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003232{
3233 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3234}
3235
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3237{
3238 int len;
3239
3240 len = PTR_ERR(link);
3241 if (IS_ERR(link))
3242 goto out;
3243
3244 len = strlen(link);
3245 if (len > (unsigned) buflen)
3246 len = buflen;
3247 if (copy_to_user(buffer, link, len))
3248 len = -EFAULT;
3249out:
3250 return len;
3251}
3252
3253/*
3254 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3255 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3256 * using) it for any given inode is up to filesystem.
3257 */
3258int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3259{
3260 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003261 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003262 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003263
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003265 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003266 if (IS_ERR(cookie))
3267 return PTR_ERR(cookie);
3268
3269 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3270 if (dentry->d_inode->i_op->put_link)
3271 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3272 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273}
3274
3275int vfs_follow_link(struct nameidata *nd, const char *link)
3276{
3277 return __vfs_follow_link(nd, link);
3278}
3279
3280/* get the link contents into pagecache */
3281static char *page_getlink(struct dentry * dentry, struct page **ppage)
3282{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003283 char *kaddr;
3284 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003286 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003288 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003290 kaddr = kmap(page);
3291 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3292 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293}
3294
3295int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3296{
3297 struct page *page = NULL;
3298 char *s = page_getlink(dentry, &page);
3299 int res = vfs_readlink(dentry,buffer,buflen,s);
3300 if (page) {
3301 kunmap(page);
3302 page_cache_release(page);
3303 }
3304 return res;
3305}
3306
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003307void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003309 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003311 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312}
3313
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003314void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003316 struct page *page = cookie;
3317
3318 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 kunmap(page);
3320 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 }
3322}
3323
Nick Piggin54566b22009-01-04 12:00:53 -08003324/*
3325 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3326 */
3327int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328{
3329 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003330 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003331 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003332 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003334 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3335 if (nofs)
3336 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
NeilBrown7e53cac2006-03-25 03:07:57 -08003338retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003339 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003340 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003342 goto fail;
3343
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 kaddr = kmap_atomic(page, KM_USER0);
3345 memcpy(kaddr, symname, len-1);
3346 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07003347
3348 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3349 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 if (err < 0)
3351 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003352 if (err < len-1)
3353 goto retry;
3354
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 mark_inode_dirty(inode);
3356 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357fail:
3358 return err;
3359}
3360
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003361int page_symlink(struct inode *inode, const char *symname, int len)
3362{
3363 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003364 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003365}
3366
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003367const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 .readlink = generic_readlink,
3369 .follow_link = page_follow_link_light,
3370 .put_link = page_put_link,
3371};
3372
Al Viro2d8f3032008-07-22 09:59:21 -04003373EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003374EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375EXPORT_SYMBOL(follow_down);
3376EXPORT_SYMBOL(follow_up);
3377EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3378EXPORT_SYMBOL(getname);
3379EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380EXPORT_SYMBOL(lookup_one_len);
3381EXPORT_SYMBOL(page_follow_link_light);
3382EXPORT_SYMBOL(page_put_link);
3383EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003384EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385EXPORT_SYMBOL(page_symlink);
3386EXPORT_SYMBOL(page_symlink_inode_operations);
Al Viroc9c6cac2011-02-16 15:15:47 -05003387EXPORT_SYMBOL(kern_path_parent);
Al Virod1811462008-08-02 00:49:18 -04003388EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003389EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003390EXPORT_SYMBOL(inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391EXPORT_SYMBOL(unlock_rename);
3392EXPORT_SYMBOL(vfs_create);
3393EXPORT_SYMBOL(vfs_follow_link);
3394EXPORT_SYMBOL(vfs_link);
3395EXPORT_SYMBOL(vfs_mkdir);
3396EXPORT_SYMBOL(vfs_mknod);
3397EXPORT_SYMBOL(generic_permission);
3398EXPORT_SYMBOL(vfs_readlink);
3399EXPORT_SYMBOL(vfs_rename);
3400EXPORT_SYMBOL(vfs_rmdir);
3401EXPORT_SYMBOL(vfs_symlink);
3402EXPORT_SYMBOL(vfs_unlink);
3403EXPORT_SYMBOL(dentry_unhash);
3404EXPORT_SYMBOL(generic_readlink);