blob: e04f15ae4b07d04a265ecdfe4d1d224c225902d3 [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
Al Virof4d6ff82011-06-19 13:14:21 -0400306/**
307 * exec_permission - check for right to do lookups in a given directory
308 * @inode: inode to check permission on
309 * @flags: IPERM_FLAG_ flags.
310 *
311 * Short-cut version of inode_permission(), for calling on directories
312 * during pathname resolution. Combines parts of inode_permission()
313 * and generic_permission(), and tests ONLY for MAY_EXEC permission.
314 *
315 * If appropriate, check DAC only. If not appropriate, or
316 * short-cut DAC fails, then call ->permission() to do more
317 * complete permission check.
318 */
319static inline int exec_permission(struct inode *inode, unsigned int flags)
320{
321 int ret;
322 struct user_namespace *ns = inode_userns(inode);
323
324 if (inode->i_op->permission) {
325 ret = inode->i_op->permission(inode, MAY_EXEC, flags);
326 if (likely(!ret))
327 goto ok;
328 } else {
329 ret = acl_permission_check(inode, MAY_EXEC, flags,
330 inode->i_op->check_acl);
331 if (likely(!ret))
332 goto ok;
333 if (ret != -EACCES)
334 return ret;
335 if (ns_capable(ns, CAP_DAC_OVERRIDE) ||
336 ns_capable(ns, CAP_DAC_READ_SEARCH))
337 goto ok;
338 }
339 return ret;
340ok:
341 return security_inode_exec_permission(inode, flags);
342}
343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344/*
345 * get_write_access() gets write permission for a file.
346 * put_write_access() releases this write permission.
347 * This is used for regular files.
348 * We cannot support write (and maybe mmap read-write shared) accesses and
349 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
350 * can have the following values:
351 * 0: no writers, no VM_DENYWRITE mappings
352 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
353 * > 0: (i_writecount) users are writing to the file.
354 *
355 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
356 * except for the cases where we don't hold i_writecount yet. Then we need to
357 * use {get,deny}_write_access() - these functions check the sign and refuse
358 * to do the change if sign is wrong. Exclusion between them is provided by
359 * the inode->i_lock spinlock.
360 */
361
362int get_write_access(struct inode * inode)
363{
364 spin_lock(&inode->i_lock);
365 if (atomic_read(&inode->i_writecount) < 0) {
366 spin_unlock(&inode->i_lock);
367 return -ETXTBSY;
368 }
369 atomic_inc(&inode->i_writecount);
370 spin_unlock(&inode->i_lock);
371
372 return 0;
373}
374
375int deny_write_access(struct file * file)
376{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800377 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
379 spin_lock(&inode->i_lock);
380 if (atomic_read(&inode->i_writecount) > 0) {
381 spin_unlock(&inode->i_lock);
382 return -ETXTBSY;
383 }
384 atomic_dec(&inode->i_writecount);
385 spin_unlock(&inode->i_lock);
386
387 return 0;
388}
389
Jan Blunck1d957f92008-02-14 19:34:35 -0800390/**
Jan Blunck5dd784d2008-02-14 19:34:38 -0800391 * path_get - get a reference to a path
392 * @path: path to get the reference to
393 *
394 * Given a path increment the reference count to the dentry and the vfsmount.
395 */
396void path_get(struct path *path)
397{
398 mntget(path->mnt);
399 dget(path->dentry);
400}
401EXPORT_SYMBOL(path_get);
402
403/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800404 * path_put - put a reference to a path
405 * @path: path to put the reference to
406 *
407 * Given a path decrement the reference count to the dentry and the vfsmount.
408 */
409void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Jan Blunck1d957f92008-02-14 19:34:35 -0800411 dput(path->dentry);
412 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413}
Jan Blunck1d957f92008-02-14 19:34:35 -0800414EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Al Viro19660af2011-03-25 10:32:48 -0400416/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100417 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400418 * Documentation/filesystems/path-lookup.txt). In situations when we can't
419 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
420 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
421 * mode. Refcounts are grabbed at the last known good point before rcu-walk
422 * got stuck, so ref-walk may continue from there. If this is not successful
423 * (eg. a seqcount has changed), then failure is returned and it's up to caller
424 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100425 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100426
427/**
Al Viro19660af2011-03-25 10:32:48 -0400428 * unlazy_walk - try to switch to ref-walk mode.
429 * @nd: nameidata pathwalk data
430 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800431 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100432 *
Al Viro19660af2011-03-25 10:32:48 -0400433 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
434 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
435 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100436 */
Al Viro19660af2011-03-25 10:32:48 -0400437static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100438{
439 struct fs_struct *fs = current->fs;
440 struct dentry *parent = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500441 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100442
443 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500444 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
445 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100446 spin_lock(&fs->lock);
447 if (nd->root.mnt != fs->root.mnt ||
448 nd->root.dentry != fs->root.dentry)
449 goto err_root;
450 }
451 spin_lock(&parent->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400452 if (!dentry) {
453 if (!__d_rcu_to_refcount(parent, nd->seq))
454 goto err_parent;
455 BUG_ON(nd->inode != parent->d_inode);
456 } else {
Al Viro94c0d4e2011-07-12 21:40:23 -0400457 if (dentry->d_parent != parent)
458 goto err_parent;
Al Viro19660af2011-03-25 10:32:48 -0400459 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
460 if (!__d_rcu_to_refcount(dentry, nd->seq))
461 goto err_child;
462 /*
463 * If the sequence check on the child dentry passed, then
464 * the child has not been removed from its parent. This
465 * means the parent dentry must be valid and able to take
466 * a reference at this point.
467 */
468 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
469 BUG_ON(!parent->d_count);
470 parent->d_count++;
471 spin_unlock(&dentry->d_lock);
472 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100473 spin_unlock(&parent->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500474 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100475 path_get(&nd->root);
476 spin_unlock(&fs->lock);
477 }
478 mntget(nd->path.mnt);
479
480 rcu_read_unlock();
481 br_read_unlock(vfsmount_lock);
482 nd->flags &= ~LOOKUP_RCU;
483 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400484
485err_child:
Nick Piggin31e6b012011-01-07 17:49:52 +1100486 spin_unlock(&dentry->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400487err_parent:
Nick Piggin31e6b012011-01-07 17:49:52 +1100488 spin_unlock(&parent->d_lock);
489err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500490 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100491 spin_unlock(&fs->lock);
492 return -ECHILD;
493}
494
Nick Piggin31e6b012011-01-07 17:49:52 +1100495/**
Trond Myklebust834f2a42005-10-18 14:20:16 -0700496 * release_open_intent - free up open intent resources
497 * @nd: pointer to nameidata
498 */
499void release_open_intent(struct nameidata *nd)
500{
Linus Torvalds2dab5972011-02-11 15:53:38 -0800501 struct file *file = nd->intent.open.file;
502
503 if (file && !IS_ERR(file)) {
504 if (file->f_path.dentry == NULL)
505 put_filp(file);
506 else
507 fput(file);
508 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700509}
510
Al Virof60aef72011-02-15 01:35:28 -0500511static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
Nick Piggin34286d62011-01-07 17:49:57 +1100512{
Al Virof60aef72011-02-15 01:35:28 -0500513 return dentry->d_op->d_revalidate(dentry, nd);
Nick Piggin34286d62011-01-07 17:49:57 +1100514}
515
Al Virof5e1c1c2011-02-15 01:32:55 -0500516static struct dentry *
Ian Kentbcdc5e02006-09-27 01:50:44 -0700517do_revalidate(struct dentry *dentry, struct nameidata *nd)
518{
Al Virof5e1c1c2011-02-15 01:32:55 -0500519 int status = d_revalidate(dentry, nd);
Ian Kentbcdc5e02006-09-27 01:50:44 -0700520 if (unlikely(status <= 0)) {
521 /*
522 * The dentry failed validation.
523 * If d_revalidate returned 0 attempt to invalidate
524 * the dentry otherwise d_revalidate is asking us
525 * to return a fail status.
526 */
Nick Piggin34286d62011-01-07 17:49:57 +1100527 if (status < 0) {
Al Virof5e1c1c2011-02-15 01:32:55 -0500528 dput(dentry);
Nick Piggin34286d62011-01-07 17:49:57 +1100529 dentry = ERR_PTR(status);
Al Virof5e1c1c2011-02-15 01:32:55 -0500530 } else if (!d_invalidate(dentry)) {
531 dput(dentry);
532 dentry = NULL;
Ian Kentbcdc5e02006-09-27 01:50:44 -0700533 }
534 }
535 return dentry;
536}
537
Al Viro9f1fafe2011-03-25 11:00:12 -0400538/**
539 * complete_walk - successful completion of path walk
540 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500541 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400542 * If we had been in RCU mode, drop out of it and legitimize nd->path.
543 * Revalidate the final result, unless we'd already done that during
544 * the path walk or the filesystem doesn't ask for it. Return 0 on
545 * success, -error on failure. In case of failure caller does not
546 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500547 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400548static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500549{
Al Viro16c2cd72011-02-22 15:50:10 -0500550 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500551 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500552
Al Viro9f1fafe2011-03-25 11:00:12 -0400553 if (nd->flags & LOOKUP_RCU) {
554 nd->flags &= ~LOOKUP_RCU;
555 if (!(nd->flags & LOOKUP_ROOT))
556 nd->root.mnt = NULL;
557 spin_lock(&dentry->d_lock);
558 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
559 spin_unlock(&dentry->d_lock);
560 rcu_read_unlock();
561 br_read_unlock(vfsmount_lock);
562 return -ECHILD;
563 }
564 BUG_ON(nd->inode != dentry->d_inode);
565 spin_unlock(&dentry->d_lock);
566 mntget(nd->path.mnt);
567 rcu_read_unlock();
568 br_read_unlock(vfsmount_lock);
569 }
570
Al Viro16c2cd72011-02-22 15:50:10 -0500571 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500572 return 0;
573
Al Viro16c2cd72011-02-22 15:50:10 -0500574 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
575 return 0;
576
577 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
578 return 0;
579
580 /* Note: we do not d_invalidate() */
Nick Piggin34286d62011-01-07 17:49:57 +1100581 status = d_revalidate(dentry, nd);
Jeff Layton39159de2009-12-07 12:01:50 -0500582 if (status > 0)
583 return 0;
584
Al Viro16c2cd72011-02-22 15:50:10 -0500585 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500586 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500587
Al Viro9f1fafe2011-03-25 11:00:12 -0400588 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500589 return status;
590}
591
Al Viro2a737872009-04-07 11:49:53 -0400592static __always_inline void set_root(struct nameidata *nd)
593{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200594 if (!nd->root.mnt)
595 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400596}
597
Al Viro6de88d72009-08-09 01:41:57 +0400598static int link_path_walk(const char *, struct nameidata *);
599
Nick Piggin31e6b012011-01-07 17:49:52 +1100600static __always_inline void set_root_rcu(struct nameidata *nd)
601{
602 if (!nd->root.mnt) {
603 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100604 unsigned seq;
605
606 do {
607 seq = read_seqcount_begin(&fs->seq);
608 nd->root = fs->root;
Tim Chenc1530012011-04-15 11:39:29 -0700609 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
Nick Pigginc28cc362011-01-07 17:49:53 +1100610 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100611 }
612}
613
Arjan van de Venf1662352006-01-14 13:21:31 -0800614static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Nick Piggin31e6b012011-01-07 17:49:52 +1100616 int ret;
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 if (IS_ERR(link))
619 goto fail;
620
621 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400622 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800623 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400624 nd->path = nd->root;
625 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500626 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100628 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100629
Nick Piggin31e6b012011-01-07 17:49:52 +1100630 ret = link_path_walk(link, nd);
631 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800633 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 return PTR_ERR(link);
635}
636
Jan Blunck1d957f92008-02-14 19:34:35 -0800637static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700638{
639 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800640 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700641 mntput(path->mnt);
642}
643
Nick Piggin7b9337a2011-01-14 08:42:43 +0000644static inline void path_to_nameidata(const struct path *path,
645 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700646{
Nick Piggin31e6b012011-01-07 17:49:52 +1100647 if (!(nd->flags & LOOKUP_RCU)) {
648 dput(nd->path.dentry);
649 if (nd->path.mnt != path->mnt)
650 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800651 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100652 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800653 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700654}
655
Al Viro574197e2011-03-14 22:20:34 -0400656static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
657{
658 struct inode *inode = link->dentry->d_inode;
659 if (!IS_ERR(cookie) && inode->i_op->put_link)
660 inode->i_op->put_link(link->dentry, nd, cookie);
661 path_put(link);
662}
663
Al Virodef4af32009-12-26 08:37:05 -0500664static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400665follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800666{
667 int error;
Nick Piggin7b9337a2011-01-14 08:42:43 +0000668 struct dentry *dentry = link->dentry;
Ian Kent051d3812006-03-27 01:14:53 -0800669
Al Viro844a3912011-02-15 00:38:26 -0500670 BUG_ON(nd->flags & LOOKUP_RCU);
671
Al Viro0e794582011-03-16 02:45:02 -0400672 if (link->mnt == nd->path.mnt)
673 mntget(link->mnt);
674
Al Viro574197e2011-03-14 22:20:34 -0400675 if (unlikely(current->total_link_count >= 40)) {
676 *p = ERR_PTR(-ELOOP); /* no ->put_link(), please */
Al Viro574197e2011-03-14 22:20:34 -0400677 path_put(&nd->path);
678 return -ELOOP;
679 }
680 cond_resched();
681 current->total_link_count++;
682
Nick Piggin7b9337a2011-01-14 08:42:43 +0000683 touch_atime(link->mnt, dentry);
Ian Kent051d3812006-03-27 01:14:53 -0800684 nd_set_link(nd, NULL);
685
Al Viro36f3b4f2011-02-22 21:24:38 -0500686 error = security_inode_follow_link(link->dentry, nd);
687 if (error) {
688 *p = ERR_PTR(error); /* no ->put_link(), please */
689 path_put(&nd->path);
690 return error;
691 }
692
Al Viro86acdca12009-12-22 23:45:11 -0500693 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500694 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
695 error = PTR_ERR(*p);
696 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800697 char *s = nd_get_link(nd);
698 error = 0;
699 if (s)
700 error = __vfs_follow_link(nd, s);
Al Virobcda7652011-03-13 16:42:14 -0400701 else if (nd->last_type == LAST_BIND) {
Al Viro16c2cd72011-02-22 15:50:10 -0500702 nd->flags |= LOOKUP_JUMPED;
Al Virob21041d2011-03-14 20:01:51 -0400703 nd->inode = nd->path.dentry->d_inode;
704 if (nd->inode->i_op->follow_link) {
Al Virobcda7652011-03-13 16:42:14 -0400705 /* stepped on a _really_ weird one */
706 path_put(&nd->path);
707 error = -ELOOP;
708 }
709 }
Ian Kent051d3812006-03-27 01:14:53 -0800710 }
Ian Kent051d3812006-03-27 01:14:53 -0800711 return error;
712}
713
Nick Piggin31e6b012011-01-07 17:49:52 +1100714static int follow_up_rcu(struct path *path)
715{
716 struct vfsmount *parent;
717 struct dentry *mountpoint;
718
719 parent = path->mnt->mnt_parent;
720 if (parent == path->mnt)
721 return 0;
722 mountpoint = path->mnt->mnt_mountpoint;
723 path->dentry = mountpoint;
724 path->mnt = parent;
725 return 1;
726}
727
Al Virobab77eb2009-04-18 03:26:48 -0400728int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
730 struct vfsmount *parent;
731 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000732
733 br_read_lock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400734 parent = path->mnt->mnt_parent;
735 if (parent == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000736 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return 0;
738 }
739 mntget(parent);
Al Virobab77eb2009-04-18 03:26:48 -0400740 mountpoint = dget(path->mnt->mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000741 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400742 dput(path->dentry);
743 path->dentry = mountpoint;
744 mntput(path->mnt);
745 path->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return 1;
747}
748
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100749/*
David Howells9875cf82011-01-14 18:45:21 +0000750 * Perform an automount
751 * - return -EISDIR to tell follow_managed() to stop and return the path we
752 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 */
David Howells9875cf82011-01-14 18:45:21 +0000754static int follow_automount(struct path *path, unsigned flags,
755 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100756{
David Howells9875cf82011-01-14 18:45:21 +0000757 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000758 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100759
David Howells9875cf82011-01-14 18:45:21 +0000760 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
761 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700762
David Howells6f45b652011-01-14 18:45:31 +0000763 /* We don't want to mount if someone supplied AT_NO_AUTOMOUNT
764 * and this is the terminal part of the path.
765 */
766 if ((flags & LOOKUP_NO_AUTOMOUNT) && !(flags & LOOKUP_CONTINUE))
767 return -EISDIR; /* we actually want to stop here */
768
David Howells9875cf82011-01-14 18:45:21 +0000769 /* We want to mount if someone is trying to open/create a file of any
770 * type under the mountpoint, wants to traverse through the mountpoint
771 * or wants to open the mounted directory.
772 *
773 * We don't want to mount if someone's just doing a stat and they've
774 * set AT_SYMLINK_NOFOLLOW - unless they're stat'ing a directory and
775 * appended a '/' to the name.
776 */
777 if (!(flags & LOOKUP_FOLLOW) &&
778 !(flags & (LOOKUP_CONTINUE | LOOKUP_DIRECTORY |
779 LOOKUP_OPEN | LOOKUP_CREATE)))
780 return -EISDIR;
781
782 current->total_link_count++;
783 if (current->total_link_count >= 40)
784 return -ELOOP;
785
786 mnt = path->dentry->d_op->d_automount(path);
787 if (IS_ERR(mnt)) {
788 /*
789 * The filesystem is allowed to return -EISDIR here to indicate
790 * it doesn't want to automount. For instance, autofs would do
791 * this so that its userspace daemon can mount on this dentry.
792 *
793 * However, we can only permit this if it's a terminal point in
794 * the path being looked up; if it wasn't then the remainder of
795 * the path is inaccessible and we should say so.
796 */
797 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_CONTINUE))
798 return -EREMOTE;
799 return PTR_ERR(mnt);
800 }
David Howellsea5b7782011-01-14 19:10:03 +0000801
David Howells9875cf82011-01-14 18:45:21 +0000802 if (!mnt) /* mount collision */
803 return 0;
804
Al Viro8aef1882011-06-16 15:10:06 +0100805 if (!*need_mntput) {
806 /* lock_mount() may release path->mnt on error */
807 mntget(path->mnt);
808 *need_mntput = true;
809 }
Al Viro19a167a2011-01-17 01:35:23 -0500810 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000811
David Howellsea5b7782011-01-14 19:10:03 +0000812 switch (err) {
813 case -EBUSY:
814 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500815 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000816 case 0:
Al Viro8aef1882011-06-16 15:10:06 +0100817 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +0000818 path->mnt = mnt;
819 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +0000820 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500821 default:
822 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000823 }
Al Viro19a167a2011-01-17 01:35:23 -0500824
David Howells9875cf82011-01-14 18:45:21 +0000825}
826
827/*
828 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000829 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000830 * - Flagged as mountpoint
831 * - Flagged as automount point
832 *
833 * This may only be called in refwalk mode.
834 *
835 * Serialization is taken care of in namespace.c
836 */
837static int follow_managed(struct path *path, unsigned flags)
838{
Al Viro8aef1882011-06-16 15:10:06 +0100839 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +0000840 unsigned managed;
841 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +0100842 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +0000843
844 /* Given that we're not holding a lock here, we retain the value in a
845 * local variable for each dentry as we look at it so that we don't see
846 * the components of that value change under us */
847 while (managed = ACCESS_ONCE(path->dentry->d_flags),
848 managed &= DCACHE_MANAGED_DENTRY,
849 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000850 /* Allow the filesystem to manage the transit without i_mutex
851 * being held. */
852 if (managed & DCACHE_MANAGE_TRANSIT) {
853 BUG_ON(!path->dentry->d_op);
854 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -0400855 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000856 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100857 break;
David Howellscc53ce52011-01-14 18:45:26 +0000858 }
859
David Howells9875cf82011-01-14 18:45:21 +0000860 /* Transit to a mounted filesystem. */
861 if (managed & DCACHE_MOUNTED) {
862 struct vfsmount *mounted = lookup_mnt(path);
863 if (mounted) {
864 dput(path->dentry);
865 if (need_mntput)
866 mntput(path->mnt);
867 path->mnt = mounted;
868 path->dentry = dget(mounted->mnt_root);
869 need_mntput = true;
870 continue;
871 }
872
873 /* Something is mounted on this dentry in another
874 * namespace and/or whatever was mounted there in this
875 * namespace got unmounted before we managed to get the
876 * vfsmount_lock */
877 }
878
879 /* Handle an automount point */
880 if (managed & DCACHE_NEED_AUTOMOUNT) {
881 ret = follow_automount(path, flags, &need_mntput);
882 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100883 break;
David Howells9875cf82011-01-14 18:45:21 +0000884 continue;
885 }
886
887 /* We didn't change the current path point */
888 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
Al Viro8aef1882011-06-16 15:10:06 +0100890
891 if (need_mntput && path->mnt == mnt)
892 mntput(path->mnt);
893 if (ret == -EISDIR)
894 ret = 0;
895 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
897
David Howellscc53ce52011-01-14 18:45:26 +0000898int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
900 struct vfsmount *mounted;
901
Al Viro1c755af2009-04-18 14:06:57 -0400902 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400904 dput(path->dentry);
905 mntput(path->mnt);
906 path->mnt = mounted;
907 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 return 1;
909 }
910 return 0;
911}
912
Ian Kent62a73752011-03-25 01:51:02 +0800913static inline bool managed_dentry_might_block(struct dentry *dentry)
914{
915 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
916 dentry->d_op->d_manage(dentry, true) < 0);
917}
918
David Howells9875cf82011-01-14 18:45:21 +0000919/*
Al Viro287548e2011-05-27 06:50:06 -0400920 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
921 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +0000922 */
923static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -0400924 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +0000925{
Ian Kent62a73752011-03-25 01:51:02 +0800926 for (;;) {
David Howells9875cf82011-01-14 18:45:21 +0000927 struct vfsmount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +0800928 /*
929 * Don't forget we might have a non-mountpoint managed dentry
930 * that wants to block transit.
931 */
Al Viro287548e2011-05-27 06:50:06 -0400932 if (unlikely(managed_dentry_might_block(path->dentry)))
David Howellsab909112011-01-14 18:46:51 +0000933 return false;
Ian Kent62a73752011-03-25 01:51:02 +0800934
935 if (!d_mountpoint(path->dentry))
936 break;
937
David Howells9875cf82011-01-14 18:45:21 +0000938 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
939 if (!mounted)
940 break;
941 path->mnt = mounted;
942 path->dentry = mounted->mnt_root;
943 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -0700944 /*
945 * Update the inode too. We don't need to re-check the
946 * dentry sequence number here after this d_inode read,
947 * because a mount-point is always pinned.
948 */
949 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +0000950 }
David Howells9875cf82011-01-14 18:45:21 +0000951 return true;
952}
953
Al Virodea39372011-05-27 06:53:39 -0400954static void follow_mount_rcu(struct nameidata *nd)
Al Viro287548e2011-05-27 06:50:06 -0400955{
Al Virodea39372011-05-27 06:53:39 -0400956 while (d_mountpoint(nd->path.dentry)) {
Al Viro287548e2011-05-27 06:50:06 -0400957 struct vfsmount *mounted;
Al Virodea39372011-05-27 06:53:39 -0400958 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
Al Viro287548e2011-05-27 06:50:06 -0400959 if (!mounted)
960 break;
Al Virodea39372011-05-27 06:53:39 -0400961 nd->path.mnt = mounted;
962 nd->path.dentry = mounted->mnt_root;
963 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro287548e2011-05-27 06:50:06 -0400964 }
965}
966
Nick Piggin31e6b012011-01-07 17:49:52 +1100967static int follow_dotdot_rcu(struct nameidata *nd)
968{
Nick Piggin31e6b012011-01-07 17:49:52 +1100969 set_root_rcu(nd);
970
David Howells9875cf82011-01-14 18:45:21 +0000971 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100972 if (nd->path.dentry == nd->root.dentry &&
973 nd->path.mnt == nd->root.mnt) {
974 break;
975 }
976 if (nd->path.dentry != nd->path.mnt->mnt_root) {
977 struct dentry *old = nd->path.dentry;
978 struct dentry *parent = old->d_parent;
979 unsigned seq;
980
981 seq = read_seqcount_begin(&parent->d_seq);
982 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -0500983 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +1100984 nd->path.dentry = parent;
985 nd->seq = seq;
986 break;
987 }
988 if (!follow_up_rcu(&nd->path))
989 break;
990 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +1100991 }
Al Virodea39372011-05-27 06:53:39 -0400992 follow_mount_rcu(nd);
993 nd->inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +1100994 return 0;
Al Viroef7562d2011-03-04 14:35:59 -0500995
996failed:
997 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -0500998 if (!(nd->flags & LOOKUP_ROOT))
999 nd->root.mnt = NULL;
Al Viroef7562d2011-03-04 14:35:59 -05001000 rcu_read_unlock();
1001 br_read_unlock(vfsmount_lock);
1002 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001003}
1004
David Howells9875cf82011-01-14 18:45:21 +00001005/*
David Howellscc53ce52011-01-14 18:45:26 +00001006 * Follow down to the covering mount currently visible to userspace. At each
1007 * point, the filesystem owning that dentry may be queried as to whether the
1008 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001009 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001010int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001011{
1012 unsigned managed;
1013 int ret;
1014
1015 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1016 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1017 /* Allow the filesystem to manage the transit without i_mutex
1018 * being held.
1019 *
1020 * We indicate to the filesystem if someone is trying to mount
1021 * something here. This gives autofs the chance to deny anyone
1022 * other than its daemon the right to mount on its
1023 * superstructure.
1024 *
1025 * The filesystem may sleep at this point.
1026 */
1027 if (managed & DCACHE_MANAGE_TRANSIT) {
1028 BUG_ON(!path->dentry->d_op);
1029 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001030 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001031 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001032 if (ret < 0)
1033 return ret == -EISDIR ? 0 : ret;
1034 }
1035
1036 /* Transit to a mounted filesystem. */
1037 if (managed & DCACHE_MOUNTED) {
1038 struct vfsmount *mounted = lookup_mnt(path);
1039 if (!mounted)
1040 break;
1041 dput(path->dentry);
1042 mntput(path->mnt);
1043 path->mnt = mounted;
1044 path->dentry = dget(mounted->mnt_root);
1045 continue;
1046 }
1047
1048 /* Don't handle automount points here */
1049 break;
1050 }
1051 return 0;
1052}
1053
1054/*
David Howells9875cf82011-01-14 18:45:21 +00001055 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1056 */
1057static void follow_mount(struct path *path)
1058{
1059 while (d_mountpoint(path->dentry)) {
1060 struct vfsmount *mounted = lookup_mnt(path);
1061 if (!mounted)
1062 break;
1063 dput(path->dentry);
1064 mntput(path->mnt);
1065 path->mnt = mounted;
1066 path->dentry = dget(mounted->mnt_root);
1067 }
1068}
1069
Nick Piggin31e6b012011-01-07 17:49:52 +11001070static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
Al Viro2a737872009-04-07 11:49:53 -04001072 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001073
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001075 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076
Al Viro2a737872009-04-07 11:49:53 -04001077 if (nd->path.dentry == nd->root.dentry &&
1078 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 break;
1080 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001081 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001082 /* rare case of legitimate dget_parent()... */
1083 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 dput(old);
1085 break;
1086 }
Al Viro3088dd72010-01-30 15:47:29 -05001087 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 }
Al Viro79ed0222009-04-18 13:59:41 -04001090 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001091 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092}
1093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094/*
Nick Pigginbaa03892010-08-18 04:37:31 +10001095 * Allocate a dentry with name and parent, and perform a parent
1096 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1097 * on error. parent->d_inode->i_mutex must be held. d_lookup must
1098 * have verified that no child exists while under i_mutex.
1099 */
1100static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1101 struct qstr *name, struct nameidata *nd)
1102{
1103 struct inode *inode = parent->d_inode;
1104 struct dentry *dentry;
1105 struct dentry *old;
1106
1107 /* Don't create child dentry for a dead directory. */
1108 if (unlikely(IS_DEADDIR(inode)))
1109 return ERR_PTR(-ENOENT);
1110
1111 dentry = d_alloc(parent, name);
1112 if (unlikely(!dentry))
1113 return ERR_PTR(-ENOMEM);
1114
1115 old = inode->i_op->lookup(inode, dentry, nd);
1116 if (unlikely(old)) {
1117 dput(dentry);
1118 dentry = old;
1119 }
1120 return dentry;
1121}
1122
1123/*
Josef Bacik44396f42011-05-31 11:58:49 -04001124 * We already have a dentry, but require a lookup to be performed on the parent
1125 * directory to fill in d_inode. Returns the new dentry, or ERR_PTR on error.
1126 * parent->d_inode->i_mutex must be held. d_lookup must have verified that no
1127 * child exists while under i_mutex.
1128 */
1129static struct dentry *d_inode_lookup(struct dentry *parent, struct dentry *dentry,
1130 struct nameidata *nd)
1131{
1132 struct inode *inode = parent->d_inode;
1133 struct dentry *old;
1134
1135 /* Don't create child dentry for a dead directory. */
1136 if (unlikely(IS_DEADDIR(inode)))
1137 return ERR_PTR(-ENOENT);
1138
1139 old = inode->i_op->lookup(inode, dentry, nd);
1140 if (unlikely(old)) {
1141 dput(dentry);
1142 dentry = old;
1143 }
1144 return dentry;
1145}
1146
1147/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 * It's more convoluted than I'd like it to be, but... it's still fairly
1149 * small and for now I'd prefer to have fast path as straight as possible.
1150 * It _is_ time-critical.
1151 */
1152static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +11001153 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154{
Jan Blunck4ac91372008-02-14 19:34:32 -08001155 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001156 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001157 int need_reval = 1;
1158 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001159 int err;
1160
Al Viro3cac2602009-08-13 18:27:43 +04001161 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001162 * Rename seqlock is not required here because in the off chance
1163 * of a false negative due to a concurrent rename, we're going to
1164 * do the non-racy lookup, below.
1165 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001166 if (nd->flags & LOOKUP_RCU) {
1167 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001168 *inode = nd->inode;
1169 dentry = __d_lookup_rcu(parent, name, &seq, inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001170 if (!dentry)
1171 goto unlazy;
1172
Nick Piggin31e6b012011-01-07 17:49:52 +11001173 /* Memory barrier in read_seqcount_begin of child is enough */
1174 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1175 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001176 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001177
Al Viro24643082011-02-15 01:26:22 -05001178 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro5a18fff2011-03-11 04:44:53 -05001179 status = d_revalidate(dentry, nd);
1180 if (unlikely(status <= 0)) {
1181 if (status != -ECHILD)
1182 need_reval = 0;
1183 goto unlazy;
1184 }
Al Viro24643082011-02-15 01:26:22 -05001185 }
Josef Bacik44396f42011-05-31 11:58:49 -04001186 if (unlikely(d_need_lookup(dentry)))
1187 goto unlazy;
Nick Piggin31e6b012011-01-07 17:49:52 +11001188 path->mnt = mnt;
1189 path->dentry = dentry;
Al Virod6e9bd22011-05-27 07:03:15 -04001190 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1191 goto unlazy;
1192 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1193 goto unlazy;
1194 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001195unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001196 if (unlazy_walk(nd, dentry))
1197 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001198 } else {
1199 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001200 }
Al Viro5a18fff2011-03-11 04:44:53 -05001201
Josef Bacik44396f42011-05-31 11:58:49 -04001202 if (dentry && unlikely(d_need_lookup(dentry))) {
1203 dput(dentry);
1204 dentry = NULL;
1205 }
Al Viro5a18fff2011-03-11 04:44:53 -05001206retry:
1207 if (unlikely(!dentry)) {
1208 struct inode *dir = parent->d_inode;
1209 BUG_ON(nd->inode != dir);
1210
1211 mutex_lock(&dir->i_mutex);
1212 dentry = d_lookup(parent, name);
1213 if (likely(!dentry)) {
1214 dentry = d_alloc_and_lookup(parent, name, nd);
1215 if (IS_ERR(dentry)) {
1216 mutex_unlock(&dir->i_mutex);
1217 return PTR_ERR(dentry);
1218 }
1219 /* known good */
1220 need_reval = 0;
1221 status = 1;
Josef Bacik44396f42011-05-31 11:58:49 -04001222 } else if (unlikely(d_need_lookup(dentry))) {
1223 dentry = d_inode_lookup(parent, dentry, nd);
1224 if (IS_ERR(dentry)) {
1225 mutex_unlock(&dir->i_mutex);
1226 return PTR_ERR(dentry);
1227 }
1228 /* known good */
1229 need_reval = 0;
1230 status = 1;
Al Viro5a18fff2011-03-11 04:44:53 -05001231 }
1232 mutex_unlock(&dir->i_mutex);
Al Viro24643082011-02-15 01:26:22 -05001233 }
Al Viro5a18fff2011-03-11 04:44:53 -05001234 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1235 status = d_revalidate(dentry, nd);
1236 if (unlikely(status <= 0)) {
1237 if (status < 0) {
1238 dput(dentry);
1239 return status;
1240 }
1241 if (!d_invalidate(dentry)) {
1242 dput(dentry);
1243 dentry = NULL;
1244 need_reval = 1;
1245 goto retry;
1246 }
1247 }
1248
David Howells9875cf82011-01-14 18:45:21 +00001249 path->mnt = mnt;
1250 path->dentry = dentry;
1251 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001252 if (unlikely(err < 0)) {
1253 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001254 return err;
Ian Kent89312212011-01-18 12:06:10 +08001255 }
David Howells9875cf82011-01-14 18:45:21 +00001256 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258}
1259
Al Viro52094c82011-02-21 21:34:47 -05001260static inline int may_lookup(struct nameidata *nd)
1261{
1262 if (nd->flags & LOOKUP_RCU) {
1263 int err = exec_permission(nd->inode, IPERM_FLAG_RCU);
1264 if (err != -ECHILD)
1265 return err;
Al Viro19660af2011-03-25 10:32:48 -04001266 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001267 return -ECHILD;
1268 }
1269 return exec_permission(nd->inode, 0);
1270}
1271
Al Viro9856fa12011-03-04 14:22:06 -05001272static inline int handle_dots(struct nameidata *nd, int type)
1273{
1274 if (type == LAST_DOTDOT) {
1275 if (nd->flags & LOOKUP_RCU) {
1276 if (follow_dotdot_rcu(nd))
1277 return -ECHILD;
1278 } else
1279 follow_dotdot(nd);
1280 }
1281 return 0;
1282}
1283
Al Viro951361f2011-03-04 14:44:37 -05001284static void terminate_walk(struct nameidata *nd)
1285{
1286 if (!(nd->flags & LOOKUP_RCU)) {
1287 path_put(&nd->path);
1288 } else {
1289 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001290 if (!(nd->flags & LOOKUP_ROOT))
1291 nd->root.mnt = NULL;
Al Viro951361f2011-03-04 14:44:37 -05001292 rcu_read_unlock();
1293 br_read_unlock(vfsmount_lock);
1294 }
1295}
1296
Al Viroce57dfc2011-03-13 19:58:58 -04001297static inline int walk_component(struct nameidata *nd, struct path *path,
1298 struct qstr *name, int type, int follow)
1299{
1300 struct inode *inode;
1301 int err;
1302 /*
1303 * "." and ".." are special - ".." especially so because it has
1304 * to be able to know about the current root directory and
1305 * parent relationships.
1306 */
1307 if (unlikely(type != LAST_NORM))
1308 return handle_dots(nd, type);
1309 err = do_lookup(nd, name, path, &inode);
1310 if (unlikely(err)) {
1311 terminate_walk(nd);
1312 return err;
1313 }
1314 if (!inode) {
1315 path_to_nameidata(path, nd);
1316 terminate_walk(nd);
1317 return -ENOENT;
1318 }
1319 if (unlikely(inode->i_op->follow_link) && follow) {
Al Viro19660af2011-03-25 10:32:48 -04001320 if (nd->flags & LOOKUP_RCU) {
1321 if (unlikely(unlazy_walk(nd, path->dentry))) {
1322 terminate_walk(nd);
1323 return -ECHILD;
1324 }
1325 }
Al Viroce57dfc2011-03-13 19:58:58 -04001326 BUG_ON(inode != path->dentry->d_inode);
1327 return 1;
1328 }
1329 path_to_nameidata(path, nd);
1330 nd->inode = inode;
1331 return 0;
1332}
1333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334/*
Al Virob3563792011-03-14 21:54:55 -04001335 * This limits recursive symlink follows to 8, while
1336 * limiting consecutive symlinks to 40.
1337 *
1338 * Without that kind of total limit, nasty chains of consecutive
1339 * symlinks can cause almost arbitrarily long lookups.
1340 */
1341static inline int nested_symlink(struct path *path, struct nameidata *nd)
1342{
1343 int res;
1344
Al Virob3563792011-03-14 21:54:55 -04001345 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1346 path_put_conditional(path, nd);
1347 path_put(&nd->path);
1348 return -ELOOP;
1349 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001350 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001351
1352 nd->depth++;
1353 current->link_count++;
1354
1355 do {
1356 struct path link = *path;
1357 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001358
1359 res = follow_link(&link, nd, &cookie);
Al Virob3563792011-03-14 21:54:55 -04001360 if (!res)
1361 res = walk_component(nd, path, &nd->last,
1362 nd->last_type, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001363 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001364 } while (res > 0);
1365
1366 current->link_count--;
1367 nd->depth--;
1368 return res;
1369}
1370
1371/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001373 * This is the basic name resolution function, turning a pathname into
1374 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001376 * Returns 0 and nd will have valid dentry and mnt on success.
1377 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 */
Al Viro6de88d72009-08-09 01:41:57 +04001379static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380{
1381 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 int err;
1383 unsigned int lookup_flags = nd->flags;
1384
1385 while (*name=='/')
1386 name++;
1387 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001388 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 /* At this point we know we have a real path component. */
1391 for(;;) {
1392 unsigned long hash;
1393 struct qstr this;
1394 unsigned int c;
Al Virofe479a52011-02-22 15:10:03 -05001395 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Trond Myklebustcdce5d62005-10-18 14:20:18 -07001397 nd->flags |= LOOKUP_CONTINUE;
Al Viro52094c82011-02-21 21:34:47 -05001398
1399 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 if (err)
1401 break;
1402
1403 this.name = name;
1404 c = *(const unsigned char *)name;
1405
1406 hash = init_name_hash();
1407 do {
1408 name++;
1409 hash = partial_name_hash(c, hash);
1410 c = *(const unsigned char *)name;
1411 } while (c && (c != '/'));
1412 this.len = name - (const char *) this.name;
1413 this.hash = end_name_hash(hash);
1414
Al Virofe479a52011-02-22 15:10:03 -05001415 type = LAST_NORM;
1416 if (this.name[0] == '.') switch (this.len) {
1417 case 2:
Al Viro16c2cd72011-02-22 15:50:10 -05001418 if (this.name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001419 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001420 nd->flags |= LOOKUP_JUMPED;
1421 }
Al Virofe479a52011-02-22 15:10:03 -05001422 break;
1423 case 1:
1424 type = LAST_DOT;
1425 }
Al Viro5a202bc2011-03-08 14:17:44 -05001426 if (likely(type == LAST_NORM)) {
1427 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001428 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001429 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1430 err = parent->d_op->d_hash(parent, nd->inode,
1431 &this);
1432 if (err < 0)
1433 break;
1434 }
1435 }
Al Virofe479a52011-02-22 15:10:03 -05001436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 /* remove trailing slashes? */
1438 if (!c)
1439 goto last_component;
1440 while (*++name == '/');
1441 if (!*name)
Al Virob3563792011-03-14 21:54:55 -04001442 goto last_component;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443
Al Viroce57dfc2011-03-13 19:58:58 -04001444 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1445 if (err < 0)
1446 return err;
Al Virofe479a52011-02-22 15:10:03 -05001447
Al Viroce57dfc2011-03-13 19:58:58 -04001448 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001449 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001451 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001452 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001454 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 break;
1456 continue;
1457 /* here ends the main loop */
1458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -08001460 /* Clear LOOKUP_CONTINUE iff it was previously unset */
1461 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Al Virob3563792011-03-14 21:54:55 -04001462 nd->last = this;
1463 nd->last_type = type;
Al Viro086e1832011-02-22 20:56:27 -05001464 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 }
Al Viro951361f2011-03-04 14:44:37 -05001466 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 return err;
1468}
1469
Al Viro70e9b352011-03-05 21:12:22 -05001470static int path_init(int dfd, const char *name, unsigned int flags,
1471 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001473 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001474 int fput_needed;
1475 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
1477 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001478 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001480 if (flags & LOOKUP_ROOT) {
1481 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001482 if (*name) {
1483 if (!inode->i_op->lookup)
1484 return -ENOTDIR;
1485 retval = inode_permission(inode, MAY_EXEC);
1486 if (retval)
1487 return retval;
1488 }
Al Viro5b6ca022011-03-09 23:04:47 -05001489 nd->path = nd->root;
1490 nd->inode = inode;
1491 if (flags & LOOKUP_RCU) {
1492 br_read_lock(vfsmount_lock);
1493 rcu_read_lock();
1494 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1495 } else {
1496 path_get(&nd->path);
1497 }
1498 return 0;
1499 }
1500
Al Viro2a737872009-04-07 11:49:53 -04001501 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001504 if (flags & LOOKUP_RCU) {
1505 br_read_lock(vfsmount_lock);
1506 rcu_read_lock();
1507 set_root_rcu(nd);
1508 } else {
1509 set_root(nd);
1510 path_get(&nd->root);
1511 }
Al Viro2a737872009-04-07 11:49:53 -04001512 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001513 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001514 if (flags & LOOKUP_RCU) {
1515 struct fs_struct *fs = current->fs;
1516 unsigned seq;
1517
1518 br_read_lock(vfsmount_lock);
1519 rcu_read_lock();
1520
1521 do {
1522 seq = read_seqcount_begin(&fs->seq);
1523 nd->path = fs->pwd;
1524 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1525 } while (read_seqcount_retry(&fs->seq, seq));
1526 } else {
1527 get_fs_pwd(current->fs, &nd->path);
1528 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001529 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001530 struct dentry *dentry;
1531
Al Viro1abf0c72011-03-13 03:51:11 -04001532 file = fget_raw_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001533 retval = -EBADF;
1534 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001535 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001536
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001537 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001538
Al Virof52e0c12011-03-14 18:56:51 -04001539 if (*name) {
1540 retval = -ENOTDIR;
1541 if (!S_ISDIR(dentry->d_inode->i_mode))
1542 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001543
Al Viro78f32a92011-06-19 11:54:42 -04001544 retval = exec_permission(dentry->d_inode, 0);
Al Virof52e0c12011-03-14 18:56:51 -04001545 if (retval)
1546 goto fput_fail;
1547 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001548
Jan Blunck5dd784d2008-02-14 19:34:38 -08001549 nd->path = file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001550 if (flags & LOOKUP_RCU) {
1551 if (fput_needed)
Al Viro70e9b352011-03-05 21:12:22 -05001552 *fp = file;
Al Viroe41f7d42011-02-22 14:02:58 -05001553 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1554 br_read_lock(vfsmount_lock);
1555 rcu_read_lock();
1556 } else {
1557 path_get(&file->f_path);
1558 fput_light(file, fput_needed);
1559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 }
Al Viroe41f7d42011-02-22 14:02:58 -05001561
Nick Piggin31e6b012011-01-07 17:49:52 +11001562 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001563 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001564
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001565fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001566 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001567out_fail:
1568 return retval;
1569}
1570
Al Virobd92d7f2011-03-14 19:54:59 -04001571static inline int lookup_last(struct nameidata *nd, struct path *path)
1572{
1573 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1574 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1575
1576 nd->flags &= ~LOOKUP_PARENT;
1577 return walk_component(nd, path, &nd->last, nd->last_type,
1578 nd->flags & LOOKUP_FOLLOW);
1579}
1580
Al Viro9b4a9b12009-04-07 11:44:16 -04001581/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001582static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001583 unsigned int flags, struct nameidata *nd)
1584{
Al Viro70e9b352011-03-05 21:12:22 -05001585 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001586 struct path path;
1587 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001588
1589 /*
1590 * Path walking is largely split up into 2 different synchronisation
1591 * schemes, rcu-walk and ref-walk (explained in
1592 * Documentation/filesystems/path-lookup.txt). These share much of the
1593 * path walk code, but some things particularly setup, cleanup, and
1594 * following mounts are sufficiently divergent that functions are
1595 * duplicated. Typically there is a function foo(), and its RCU
1596 * analogue, foo_rcu().
1597 *
1598 * -ECHILD is the error number of choice (just to avoid clashes) that
1599 * is returned if some aspect of an rcu-walk fails. Such an error must
1600 * be handled by restarting a traditional ref-walk (which will always
1601 * be able to complete).
1602 */
Al Virobd92d7f2011-03-14 19:54:59 -04001603 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001604
Al Virobd92d7f2011-03-14 19:54:59 -04001605 if (unlikely(err))
1606 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001607
1608 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001609 err = link_path_walk(name, nd);
1610
1611 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001612 err = lookup_last(nd, &path);
1613 while (err > 0) {
1614 void *cookie;
1615 struct path link = path;
Al Virobd92d7f2011-03-14 19:54:59 -04001616 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001617 err = follow_link(&link, nd, &cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001618 if (!err)
1619 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001620 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001621 }
1622 }
Al Viroee0827c2011-02-21 23:38:09 -05001623
Al Viro9f1fafe2011-03-25 11:00:12 -04001624 if (!err)
1625 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001626
1627 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1628 if (!nd->inode->i_op->lookup) {
1629 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001630 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001631 }
1632 }
Al Viro16c2cd72011-02-22 15:50:10 -05001633
Al Viro70e9b352011-03-05 21:12:22 -05001634 if (base)
1635 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001636
Al Viro5b6ca022011-03-09 23:04:47 -05001637 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001638 path_put(&nd->root);
1639 nd->root.mnt = NULL;
1640 }
Al Virobd92d7f2011-03-14 19:54:59 -04001641 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001642}
Nick Piggin31e6b012011-01-07 17:49:52 +11001643
Al Viroee0827c2011-02-21 23:38:09 -05001644static int do_path_lookup(int dfd, const char *name,
1645 unsigned int flags, struct nameidata *nd)
1646{
1647 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1648 if (unlikely(retval == -ECHILD))
1649 retval = path_lookupat(dfd, name, flags, nd);
1650 if (unlikely(retval == -ESTALE))
1651 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001652
1653 if (likely(!retval)) {
1654 if (unlikely(!audit_dummy_context())) {
1655 if (nd->path.dentry && nd->inode)
1656 audit_inode(name, nd->path.dentry);
1657 }
1658 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001659 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660}
1661
Al Viroc9c6cac2011-02-16 15:15:47 -05001662int kern_path_parent(const char *name, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001663{
Al Viroc9c6cac2011-02-16 15:15:47 -05001664 return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001665}
1666
Al Virod1811462008-08-02 00:49:18 -04001667int kern_path(const char *name, unsigned int flags, struct path *path)
1668{
1669 struct nameidata nd;
1670 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1671 if (!res)
1672 *path = nd.path;
1673 return res;
1674}
1675
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001676/**
1677 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1678 * @dentry: pointer to dentry of the base directory
1679 * @mnt: pointer to vfs mount of the base directory
1680 * @name: pointer to file name
1681 * @flags: lookup flags
1682 * @nd: pointer to nameidata
1683 */
1684int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1685 const char *name, unsigned int flags,
1686 struct nameidata *nd)
1687{
Al Viro5b6ca022011-03-09 23:04:47 -05001688 nd->root.dentry = dentry;
1689 nd->root.mnt = mnt;
1690 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
1691 return do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, nd);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001692}
1693
Christoph Hellwigeead1912007-10-16 23:25:38 -07001694static struct dentry *__lookup_hash(struct qstr *name,
1695 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696{
Christoph Hellwig81fca442010-10-06 10:47:47 +02001697 struct inode *inode = base->d_inode;
James Morris057f6c02007-04-26 00:12:05 -07001698 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 int err;
1700
Nick Pigginb74c79e2011-01-07 17:49:58 +11001701 err = exec_permission(inode, 0);
Christoph Hellwig81fca442010-10-06 10:47:47 +02001702 if (err)
1703 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
1705 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001706 * Don't bother with __d_lookup: callers are for creat as
1707 * well as unlink, so a lot of the time it would cost
1708 * a double lookup.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001709 */
Nick Pigginb04f7842010-08-18 04:37:34 +10001710 dentry = d_lookup(base, name);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001711
Josef Bacik44396f42011-05-31 11:58:49 -04001712 if (dentry && d_need_lookup(dentry)) {
1713 /*
1714 * __lookup_hash is called with the parent dir's i_mutex already
1715 * held, so we are good to go here.
1716 */
1717 dentry = d_inode_lookup(base, dentry, nd);
1718 if (IS_ERR(dentry))
1719 return dentry;
1720 }
1721
Nick Pigginfb045ad2011-01-07 17:49:55 +11001722 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE))
Al Viro6e6b1bd2009-08-13 23:38:37 +04001723 dentry = do_revalidate(dentry, nd);
1724
Nick Pigginbaa03892010-08-18 04:37:31 +10001725 if (!dentry)
1726 dentry = d_alloc_and_lookup(base, name, nd);
Al Viro5a202bc2011-03-08 14:17:44 -05001727
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 return dentry;
1729}
1730
James Morris057f6c02007-04-26 00:12:05 -07001731/*
1732 * Restricted form of lookup. Doesn't follow links, single-component only,
1733 * needs parent already locked. Doesn't follow mounts.
1734 * SMP-safe.
1735 */
Adrian Bunka244e162006-03-31 02:32:11 -08001736static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
Jan Blunck4ac91372008-02-14 19:34:32 -08001738 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739}
1740
Christoph Hellwigeead1912007-10-16 23:25:38 -07001741/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001742 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001743 * @name: pathname component to lookup
1744 * @base: base directory to lookup from
1745 * @len: maximum length @len should be interpreted to
1746 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001747 * Note that this routine is purely a helper for filesystem usage and should
1748 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001749 * nameidata argument is passed to the filesystem methods and a filesystem
1750 * using this helper needs to be prepared for that.
1751 */
James Morris057f6c02007-04-26 00:12:05 -07001752struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1753{
James Morris057f6c02007-04-26 00:12:05 -07001754 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05001755 unsigned long hash;
1756 unsigned int c;
James Morris057f6c02007-04-26 00:12:05 -07001757
David Woodhouse2f9092e2009-04-20 23:18:37 +01001758 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1759
Al Viro6a96ba52011-03-07 23:49:20 -05001760 this.name = name;
1761 this.len = len;
1762 if (!len)
1763 return ERR_PTR(-EACCES);
1764
1765 hash = init_name_hash();
1766 while (len--) {
1767 c = *(const unsigned char *)name++;
1768 if (c == '/' || c == '\0')
1769 return ERR_PTR(-EACCES);
1770 hash = partial_name_hash(c, hash);
1771 }
1772 this.hash = end_name_hash(hash);
Al Viro5a202bc2011-03-08 14:17:44 -05001773 /*
1774 * See if the low-level filesystem might want
1775 * to use its own hash..
1776 */
1777 if (base->d_flags & DCACHE_OP_HASH) {
1778 int err = base->d_op->d_hash(base, base->d_inode, &this);
1779 if (err < 0)
1780 return ERR_PTR(err);
1781 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07001782
Christoph Hellwig49705b72005-11-08 21:35:06 -08001783 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001784}
1785
Al Viro2d8f3032008-07-22 09:59:21 -04001786int user_path_at(int dfd, const char __user *name, unsigned flags,
1787 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788{
Al Viro2d8f3032008-07-22 09:59:21 -04001789 struct nameidata nd;
Al Virof52e0c12011-03-14 18:56:51 -04001790 char *tmp = getname_flags(name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001793
1794 BUG_ON(flags & LOOKUP_PARENT);
1795
1796 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001798 if (!err)
1799 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 }
1801 return err;
1802}
1803
Al Viro2ad94ae2008-07-21 09:32:51 -04001804static int user_path_parent(int dfd, const char __user *path,
1805 struct nameidata *nd, char **name)
1806{
1807 char *s = getname(path);
1808 int error;
1809
1810 if (IS_ERR(s))
1811 return PTR_ERR(s);
1812
1813 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1814 if (error)
1815 putname(s);
1816 else
1817 *name = s;
1818
1819 return error;
1820}
1821
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822/*
1823 * It's inline, so penalty for filesystems that don't use sticky bit is
1824 * minimal.
1825 */
1826static inline int check_sticky(struct inode *dir, struct inode *inode)
1827{
David Howellsda9592e2008-11-14 10:39:05 +11001828 uid_t fsuid = current_fsuid();
1829
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 if (!(dir->i_mode & S_ISVTX))
1831 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001832 if (current_user_ns() != inode_userns(inode))
1833 goto other_userns;
David Howellsda9592e2008-11-14 10:39:05 +11001834 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001836 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001838
1839other_userns:
1840 return !ns_capable(inode_userns(inode), CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841}
1842
1843/*
1844 * Check whether we can remove a link victim from directory dir, check
1845 * whether the type of victim is right.
1846 * 1. We can't do it if dir is read-only (done in permission())
1847 * 2. We should have write and exec permissions on dir
1848 * 3. We can't remove anything from append-only dir
1849 * 4. We can't do anything with immutable dir (done in permission())
1850 * 5. If the sticky bit on dir is set we should either
1851 * a. be owner of dir, or
1852 * b. be owner of victim, or
1853 * c. have CAP_FOWNER capability
1854 * 6. If the victim is append-only or immutable we can't do antyhing with
1855 * links pointing to it.
1856 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1857 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1858 * 9. We can't remove a root or mountpoint.
1859 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1860 * nfs_async_unlink().
1861 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001862static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
1864 int error;
1865
1866 if (!victim->d_inode)
1867 return -ENOENT;
1868
1869 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001870 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Al Virof419a2e2008-07-22 00:07:17 -04001872 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 if (error)
1874 return error;
1875 if (IS_APPEND(dir))
1876 return -EPERM;
1877 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001878 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 return -EPERM;
1880 if (isdir) {
1881 if (!S_ISDIR(victim->d_inode->i_mode))
1882 return -ENOTDIR;
1883 if (IS_ROOT(victim))
1884 return -EBUSY;
1885 } else if (S_ISDIR(victim->d_inode->i_mode))
1886 return -EISDIR;
1887 if (IS_DEADDIR(dir))
1888 return -ENOENT;
1889 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1890 return -EBUSY;
1891 return 0;
1892}
1893
1894/* Check whether we can create an object with dentry child in directory
1895 * dir.
1896 * 1. We can't do it if child already exists (open has special treatment for
1897 * this case, but since we are inlined it's OK)
1898 * 2. We can't do it if dir is read-only (done in permission())
1899 * 3. We should have write and exec permissions on dir
1900 * 4. We can't do it if dir is immutable (done in permission())
1901 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001902static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
1904 if (child->d_inode)
1905 return -EEXIST;
1906 if (IS_DEADDIR(dir))
1907 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001908 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909}
1910
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911/*
1912 * p1 and p2 should be directories on the same fs.
1913 */
1914struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1915{
1916 struct dentry *p;
1917
1918 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001919 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 return NULL;
1921 }
1922
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001923 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001925 p = d_ancestor(p2, p1);
1926 if (p) {
1927 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1928 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1929 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 }
1931
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001932 p = d_ancestor(p1, p2);
1933 if (p) {
1934 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1935 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1936 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
1938
Ingo Molnarf2eace22006-07-03 00:25:05 -07001939 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1940 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 return NULL;
1942}
1943
1944void unlock_rename(struct dentry *p1, struct dentry *p2)
1945{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001946 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001948 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001949 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 }
1951}
1952
1953int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1954 struct nameidata *nd)
1955{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001956 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
1958 if (error)
1959 return error;
1960
Al Viroacfa4382008-12-04 10:06:33 -05001961 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 return -EACCES; /* shouldn't it be ENOSYS? */
1963 mode &= S_IALLUGO;
1964 mode |= S_IFREG;
1965 error = security_inode_create(dir, dentry, mode);
1966 if (error)
1967 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001969 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001970 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 return error;
1972}
1973
Al Viro73d049a2011-03-11 12:08:24 -05001974static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001976 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 struct inode *inode = dentry->d_inode;
1978 int error;
1979
Al Virobcda7652011-03-13 16:42:14 -04001980 /* O_PATH? */
1981 if (!acc_mode)
1982 return 0;
1983
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 if (!inode)
1985 return -ENOENT;
1986
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001987 switch (inode->i_mode & S_IFMT) {
1988 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001990 case S_IFDIR:
1991 if (acc_mode & MAY_WRITE)
1992 return -EISDIR;
1993 break;
1994 case S_IFBLK:
1995 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001996 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001998 /*FALLTHRU*/
1999 case S_IFIFO:
2000 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002002 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002003 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002004
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002005 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002006 if (error)
2007 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 /*
2010 * An append-only file must be opened in append mode for writing.
2011 */
2012 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002013 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002014 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002016 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 }
2018
2019 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002020 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002021 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
2023 /*
2024 * Ensure there are no outstanding leases on the file.
2025 */
Al Virob65a9cf2009-12-16 06:27:40 -05002026 return break_lease(inode, flag);
Al Viro7715b522009-12-16 03:54:00 -05002027}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Jeff Laytone1181ee2010-12-07 16:19:50 -05002029static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002030{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002031 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002032 struct inode *inode = path->dentry->d_inode;
2033 int error = get_write_access(inode);
2034 if (error)
2035 return error;
2036 /*
2037 * Refuse to truncate files with mandatory locks held on them.
2038 */
2039 error = locks_verify_locked(inode);
2040 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002041 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002042 if (!error) {
2043 error = do_truncate(path->dentry, 0,
2044 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002045 filp);
Al Viro7715b522009-12-16 03:54:00 -05002046 }
2047 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002048 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049}
2050
Dave Hansend57999e2008-02-15 14:37:27 -08002051/*
Dave Hansend57999e2008-02-15 14:37:27 -08002052 * Note that while the flag value (low two bits) for sys_open means:
2053 * 00 - read-only
2054 * 01 - write-only
2055 * 10 - read-write
2056 * 11 - special
2057 * it is changed into
2058 * 00 - no permissions needed
2059 * 01 - read-permission
2060 * 10 - write-permission
2061 * 11 - read-write
2062 * for the internal routines (ie open_namei()/follow_link() etc)
2063 * This is more logical, and also allows the 00 "no perm needed"
2064 * to be used for symlinks (where the permissions are checked
2065 * later).
2066 *
2067*/
2068static inline int open_to_namei_flags(int flag)
2069{
2070 if ((flag+1) & O_ACCMODE)
2071 flag++;
2072 return flag;
2073}
2074
Nick Piggin31e6b012011-01-07 17:49:52 +11002075/*
Al Virofe2d35f2011-03-05 22:58:25 -05002076 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002077 */
Al Virofb1cc552009-12-24 01:58:28 -05002078static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viroc3e380b2011-02-23 13:39:45 -05002079 const struct open_flags *op, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002080{
Al Viroa1e28032009-12-24 02:12:06 -05002081 struct dentry *dir = nd->path.dentry;
Al Viro6c0d46c2011-03-09 00:59:59 -05002082 struct dentry *dentry;
Al Viroca344a892011-03-09 00:36:45 -05002083 int open_flag = op->open_flag;
Al Viro6c0d46c2011-03-09 00:59:59 -05002084 int will_truncate = open_flag & O_TRUNC;
Al Viroca344a892011-03-09 00:36:45 -05002085 int want_write = 0;
Al Virobcda7652011-03-13 16:42:14 -04002086 int acc_mode = op->acc_mode;
Al Virofb1cc552009-12-24 01:58:28 -05002087 struct file *filp;
Al Viro16c2cd72011-02-22 15:50:10 -05002088 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002089
Al Viroc3e380b2011-02-23 13:39:45 -05002090 nd->flags &= ~LOOKUP_PARENT;
2091 nd->flags |= op->intent;
2092
Al Viro1f36f772009-12-26 10:56:19 -05002093 switch (nd->last_type) {
2094 case LAST_DOTDOT:
Neil Brown176306f2010-05-24 16:57:56 +10002095 case LAST_DOT:
Al Virofe2d35f2011-03-05 22:58:25 -05002096 error = handle_dots(nd, nd->last_type);
2097 if (error)
2098 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002099 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002100 case LAST_ROOT:
Al Viro9f1fafe2011-03-25 11:00:12 -04002101 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002102 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002103 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002104 audit_inode(pathname, nd->path.dentry);
Al Viroca344a892011-03-09 00:36:45 -05002105 if (open_flag & O_CREAT) {
Al Virofe2d35f2011-03-05 22:58:25 -05002106 error = -EISDIR;
2107 goto exit;
2108 }
2109 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002110 case LAST_BIND:
Al Viro9f1fafe2011-03-25 11:00:12 -04002111 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002112 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002113 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002114 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002115 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002116 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002117
Al Viroca344a892011-03-09 00:36:45 -05002118 if (!(open_flag & O_CREAT)) {
Al Virobcda7652011-03-13 16:42:14 -04002119 int symlink_ok = 0;
Al Virofe2d35f2011-03-05 22:58:25 -05002120 if (nd->last.name[nd->last.len])
2121 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002122 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2123 symlink_ok = 1;
Al Virofe2d35f2011-03-05 22:58:25 -05002124 /* we _can_ be in RCU mode here */
Al Viroce57dfc2011-03-13 19:58:58 -04002125 error = walk_component(nd, path, &nd->last, LAST_NORM,
2126 !symlink_ok);
2127 if (error < 0)
Al Virofe2d35f2011-03-05 22:58:25 -05002128 return ERR_PTR(error);
Al Viroce57dfc2011-03-13 19:58:58 -04002129 if (error) /* symlink */
Al Virofe2d35f2011-03-05 22:58:25 -05002130 return NULL;
Al Virofe2d35f2011-03-05 22:58:25 -05002131 /* sayonara */
Al Viro9f1fafe2011-03-25 11:00:12 -04002132 error = complete_walk(nd);
2133 if (error)
2134 return ERR_PTR(-ECHILD);
Al Virofe2d35f2011-03-05 22:58:25 -05002135
2136 error = -ENOTDIR;
2137 if (nd->flags & LOOKUP_DIRECTORY) {
Al Viroce57dfc2011-03-13 19:58:58 -04002138 if (!nd->inode->i_op->lookup)
Al Virofe2d35f2011-03-05 22:58:25 -05002139 goto exit;
2140 }
2141 audit_inode(pathname, nd->path.dentry);
2142 goto ok;
2143 }
2144
2145 /* create side of things */
Al Viro9f1fafe2011-03-25 11:00:12 -04002146 error = complete_walk(nd);
2147 if (error)
2148 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002149
2150 audit_inode(pathname, dir);
Al Viro16c2cd72011-02-22 15:50:10 -05002151 error = -EISDIR;
Al Viro1f36f772009-12-26 10:56:19 -05002152 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002153 if (nd->last.name[nd->last.len])
2154 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002155
Al Viroa1e28032009-12-24 02:12:06 -05002156 mutex_lock(&dir->d_inode->i_mutex);
2157
Al Viro6c0d46c2011-03-09 00:59:59 -05002158 dentry = lookup_hash(nd);
2159 error = PTR_ERR(dentry);
2160 if (IS_ERR(dentry)) {
Al Virofb1cc552009-12-24 01:58:28 -05002161 mutex_unlock(&dir->d_inode->i_mutex);
2162 goto exit;
2163 }
2164
Al Viro6c0d46c2011-03-09 00:59:59 -05002165 path->dentry = dentry;
2166 path->mnt = nd->path.mnt;
2167
Al Virofb1cc552009-12-24 01:58:28 -05002168 /* Negative dentry, just create the file */
Al Viro6c0d46c2011-03-09 00:59:59 -05002169 if (!dentry->d_inode) {
2170 int mode = op->mode;
2171 if (!IS_POSIXACL(dir->d_inode))
2172 mode &= ~current_umask();
Al Virofb1cc552009-12-24 01:58:28 -05002173 /*
2174 * This write is needed to ensure that a
Al Viro6c0d46c2011-03-09 00:59:59 -05002175 * rw->ro transition does not occur between
Al Virofb1cc552009-12-24 01:58:28 -05002176 * the time when the file is created and when
2177 * a permanent write count is taken through
2178 * the 'struct file' in nameidata_to_filp().
2179 */
2180 error = mnt_want_write(nd->path.mnt);
2181 if (error)
2182 goto exit_mutex_unlock;
Al Viroca344a892011-03-09 00:36:45 -05002183 want_write = 1;
Al Viro9b44f1b2011-03-09 00:17:27 -05002184 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002185 open_flag &= ~O_TRUNC;
Al Viro6c0d46c2011-03-09 00:59:59 -05002186 will_truncate = 0;
Al Virobcda7652011-03-13 16:42:14 -04002187 acc_mode = MAY_OPEN;
Al Viro6c0d46c2011-03-09 00:59:59 -05002188 error = security_path_mknod(&nd->path, dentry, mode, 0);
2189 if (error)
2190 goto exit_mutex_unlock;
2191 error = vfs_create(dir->d_inode, dentry, mode, nd);
2192 if (error)
2193 goto exit_mutex_unlock;
2194 mutex_unlock(&dir->d_inode->i_mutex);
2195 dput(nd->path.dentry);
2196 nd->path.dentry = dentry;
Al Viroca344a892011-03-09 00:36:45 -05002197 goto common;
Al Virofb1cc552009-12-24 01:58:28 -05002198 }
2199
2200 /*
2201 * It already exists.
2202 */
2203 mutex_unlock(&dir->d_inode->i_mutex);
2204 audit_inode(pathname, path->dentry);
2205
2206 error = -EEXIST;
Al Viroca344a892011-03-09 00:36:45 -05002207 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002208 goto exit_dput;
2209
David Howells9875cf82011-01-14 18:45:21 +00002210 error = follow_managed(path, nd->flags);
2211 if (error < 0)
2212 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002213
2214 error = -ENOENT;
2215 if (!path->dentry->d_inode)
2216 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002217
2218 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002219 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002220
2221 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002222 nd->inode = path->dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05002223 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002224 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002225 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002226ok:
Al Viro6c0d46c2011-03-09 00:59:59 -05002227 if (!S_ISREG(nd->inode->i_mode))
2228 will_truncate = 0;
2229
Al Viro0f9d1a12011-03-09 00:13:14 -05002230 if (will_truncate) {
2231 error = mnt_want_write(nd->path.mnt);
2232 if (error)
2233 goto exit;
Al Viroca344a892011-03-09 00:36:45 -05002234 want_write = 1;
Al Viro0f9d1a12011-03-09 00:13:14 -05002235 }
Al Viroca344a892011-03-09 00:36:45 -05002236common:
Al Virobcda7652011-03-13 16:42:14 -04002237 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002238 if (error)
Al Viro0f9d1a12011-03-09 00:13:14 -05002239 goto exit;
Al Viro0f9d1a12011-03-09 00:13:14 -05002240 filp = nameidata_to_filp(nd);
2241 if (!IS_ERR(filp)) {
2242 error = ima_file_check(filp, op->acc_mode);
2243 if (error) {
2244 fput(filp);
2245 filp = ERR_PTR(error);
2246 }
2247 }
2248 if (!IS_ERR(filp)) {
2249 if (will_truncate) {
2250 error = handle_truncate(filp);
2251 if (error) {
2252 fput(filp);
2253 filp = ERR_PTR(error);
2254 }
2255 }
2256 }
Al Viroca344a892011-03-09 00:36:45 -05002257out:
2258 if (want_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002259 mnt_drop_write(nd->path.mnt);
2260 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002261 return filp;
2262
2263exit_mutex_unlock:
2264 mutex_unlock(&dir->d_inode->i_mutex);
2265exit_dput:
2266 path_put_conditional(path, nd);
2267exit:
Al Viroca344a892011-03-09 00:36:45 -05002268 filp = ERR_PTR(error);
2269 goto out;
Al Virofb1cc552009-12-24 01:58:28 -05002270}
2271
Al Viro13aab422011-02-23 17:54:08 -05002272static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002273 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274{
Al Virofe2d35f2011-03-05 22:58:25 -05002275 struct file *base = NULL;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002276 struct file *filp;
Al Viro9850c052010-01-13 15:01:15 -05002277 struct path path;
Al Viro13aab422011-02-23 17:54:08 -05002278 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002279
2280 filp = get_empty_filp();
2281 if (!filp)
2282 return ERR_PTR(-ENFILE);
2283
Al Viro47c805d2011-02-23 17:44:09 -05002284 filp->f_flags = op->open_flag;
Al Viro73d049a2011-03-11 12:08:24 -05002285 nd->intent.open.file = filp;
2286 nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2287 nd->intent.open.create_mode = op->mode;
Nick Piggin31e6b012011-01-07 17:49:52 +11002288
Al Viro73d049a2011-03-11 12:08:24 -05002289 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002290 if (unlikely(error))
Al Viro13aab422011-02-23 17:54:08 -05002291 goto out_filp;
Nick Piggin31e6b012011-01-07 17:49:52 +11002292
Al Virofe2d35f2011-03-05 22:58:25 -05002293 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002294 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002295 if (unlikely(error))
2296 goto out_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Al Viro73d049a2011-03-11 12:08:24 -05002298 filp = do_last(nd, &path, op, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002299 while (unlikely(!filp)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002300 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05002301 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04002302 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05002303 path_put_conditional(&path, nd);
2304 path_put(&nd->path);
Al Viro40b39132011-03-09 16:22:18 -05002305 filp = ERR_PTR(-ELOOP);
2306 break;
2307 }
Al Viro73d049a2011-03-11 12:08:24 -05002308 nd->flags |= LOOKUP_PARENT;
2309 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04002310 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002311 if (unlikely(error))
Al Virof1afe9e2011-02-22 22:27:28 -05002312 filp = ERR_PTR(error);
Al Viroc3e380b2011-02-23 13:39:45 -05002313 else
Al Viro73d049a2011-03-11 12:08:24 -05002314 filp = do_last(nd, &path, op, pathname);
Al Viro574197e2011-03-14 22:20:34 -04002315 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002316 }
Al Viro10fa8e62009-12-26 07:09:49 -05002317out:
Al Viro73d049a2011-03-11 12:08:24 -05002318 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2319 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002320 if (base)
2321 fput(base);
Al Viro73d049a2011-03-11 12:08:24 -05002322 release_open_intent(nd);
Al Viro10fa8e62009-12-26 07:09:49 -05002323 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
Nick Piggin31e6b012011-01-07 17:49:52 +11002325out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002326 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002327 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328}
2329
Al Viro13aab422011-02-23 17:54:08 -05002330struct file *do_filp_open(int dfd, const char *pathname,
2331 const struct open_flags *op, int flags)
2332{
Al Viro73d049a2011-03-11 12:08:24 -05002333 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002334 struct file *filp;
2335
Al Viro73d049a2011-03-11 12:08:24 -05002336 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002337 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002338 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002339 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002340 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002341 return filp;
2342}
2343
Al Viro73d049a2011-03-11 12:08:24 -05002344struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2345 const char *name, const struct open_flags *op, int flags)
2346{
2347 struct nameidata nd;
2348 struct file *file;
2349
2350 nd.root.mnt = mnt;
2351 nd.root.dentry = dentry;
2352
2353 flags |= LOOKUP_ROOT;
2354
Al Virobcda7652011-03-13 16:42:14 -04002355 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002356 return ERR_PTR(-ELOOP);
2357
2358 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2359 if (unlikely(file == ERR_PTR(-ECHILD)))
2360 file = path_openat(-1, name, &nd, op, flags);
2361 if (unlikely(file == ERR_PTR(-ESTALE)))
2362 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2363 return file;
2364}
2365
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366/**
2367 * lookup_create - lookup a dentry, creating it if it doesn't exist
2368 * @nd: nameidata info
2369 * @is_dir: directory flag
2370 *
2371 * Simple function to lookup and return a dentry and create it
2372 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002373 *
Jan Blunck4ac91372008-02-14 19:34:32 -08002374 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 */
2376struct dentry *lookup_create(struct nameidata *nd, int is_dir)
2377{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002378 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Jan Blunck4ac91372008-02-14 19:34:32 -08002380 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002381 /*
2382 * Yucky last component or no last component at all?
2383 * (foo/., foo/.., /////)
2384 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 if (nd->last_type != LAST_NORM)
2386 goto fail;
2387 nd->flags &= ~LOOKUP_PARENT;
Al Viro35165862008-08-05 03:00:49 -04002388 nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
ASANO Masahiroa6349042006-08-22 20:06:02 -04002389 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002390
2391 /*
2392 * Do the final lookup.
2393 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08002394 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 if (IS_ERR(dentry))
2396 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002397
Al Viroe9baf6e2008-05-15 04:49:12 -04002398 if (dentry->d_inode)
2399 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002400 /*
2401 * Special case - lookup gave negative, but... we had foo/bar/
2402 * From the vfs_mknod() POV we just have a negative dentry -
2403 * all is fine. Let's be bastards - you had / on the end, you've
2404 * been asking for (non-existent) directory. -ENOENT for you.
2405 */
Al Viroe9baf6e2008-05-15 04:49:12 -04002406 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
2407 dput(dentry);
2408 dentry = ERR_PTR(-ENOENT);
2409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002411eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002413 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414fail:
2415 return dentry;
2416}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07002417EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418
2419int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2420{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002421 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
2423 if (error)
2424 return error;
2425
Serge E. Hallyne795b712011-03-23 16:43:25 -07002426 if ((S_ISCHR(mode) || S_ISBLK(mode)) &&
2427 !ns_capable(inode_userns(dir), CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 return -EPERM;
2429
Al Viroacfa4382008-12-04 10:06:33 -05002430 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 return -EPERM;
2432
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002433 error = devcgroup_inode_mknod(mode, dev);
2434 if (error)
2435 return error;
2436
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 error = security_inode_mknod(dir, dentry, mode, dev);
2438 if (error)
2439 return error;
2440
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002442 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002443 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 return error;
2445}
2446
Dave Hansen463c3192008-02-15 14:37:57 -08002447static int may_mknod(mode_t mode)
2448{
2449 switch (mode & S_IFMT) {
2450 case S_IFREG:
2451 case S_IFCHR:
2452 case S_IFBLK:
2453 case S_IFIFO:
2454 case S_IFSOCK:
2455 case 0: /* zero mode translates to S_IFREG */
2456 return 0;
2457 case S_IFDIR:
2458 return -EPERM;
2459 default:
2460 return -EINVAL;
2461 }
2462}
2463
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002464SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2465 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466{
Al Viro2ad94ae2008-07-21 09:32:51 -04002467 int error;
2468 char *tmp;
2469 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 struct nameidata nd;
2471
2472 if (S_ISDIR(mode))
2473 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
Al Viro2ad94ae2008-07-21 09:32:51 -04002475 error = user_path_parent(dfd, filename, &nd, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002477 return error;
2478
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 dentry = lookup_create(&nd, 0);
Dave Hansen463c3192008-02-15 14:37:57 -08002480 if (IS_ERR(dentry)) {
2481 error = PTR_ERR(dentry);
2482 goto out_unlock;
2483 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002484 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002485 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002486 error = may_mknod(mode);
2487 if (error)
2488 goto out_dput;
2489 error = mnt_want_write(nd.path.mnt);
2490 if (error)
2491 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002492 error = security_path_mknod(&nd.path, dentry, mode, dev);
2493 if (error)
2494 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002495 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08002497 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 break;
2499 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002500 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 new_decode_dev(dev));
2502 break;
2503 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002504 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002507out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002508 mnt_drop_write(nd.path.mnt);
2509out_dput:
2510 dput(dentry);
2511out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002512 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002513 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 putname(tmp);
2515
2516 return error;
2517}
2518
Heiko Carstens3480b252009-01-14 14:14:16 +01002519SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002520{
2521 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2522}
2523
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2525{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002526 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
2528 if (error)
2529 return error;
2530
Al Viroacfa4382008-12-04 10:06:33 -05002531 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 return -EPERM;
2533
2534 mode &= (S_IRWXUGO|S_ISVTX);
2535 error = security_inode_mkdir(dir, dentry, mode);
2536 if (error)
2537 return error;
2538
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002540 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002541 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 return error;
2543}
2544
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002545SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546{
2547 int error = 0;
2548 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002549 struct dentry *dentry;
2550 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
Al Viro2ad94ae2008-07-21 09:32:51 -04002552 error = user_path_parent(dfd, pathname, &nd, &tmp);
2553 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002554 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
Dave Hansen6902d922006-09-30 23:29:01 -07002556 dentry = lookup_create(&nd, 1);
2557 error = PTR_ERR(dentry);
2558 if (IS_ERR(dentry))
2559 goto out_unlock;
2560
Jan Blunck4ac91372008-02-14 19:34:32 -08002561 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002562 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002563 error = mnt_want_write(nd.path.mnt);
2564 if (error)
2565 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002566 error = security_path_mkdir(&nd.path, dentry, mode);
2567 if (error)
2568 goto out_drop_write;
Jan Blunck4ac91372008-02-14 19:34:32 -08002569 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002570out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002571 mnt_drop_write(nd.path.mnt);
2572out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002573 dput(dentry);
2574out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002575 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002576 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002577 putname(tmp);
2578out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 return error;
2580}
2581
Heiko Carstens3cdad422009-01-14 14:14:22 +01002582SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002583{
2584 return sys_mkdirat(AT_FDCWD, pathname, mode);
2585}
2586
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587/*
Sage Weila71905f2011-05-24 13:06:08 -07002588 * The dentry_unhash() helper will try to drop the dentry early: we
2589 * should have a usage count of 2 if we're the only user of this
2590 * dentry, and if that is true (possibly after pruning the dcache),
2591 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 *
2593 * A low-level filesystem can, if it choses, legally
2594 * do a
2595 *
2596 * if (!d_unhashed(dentry))
2597 * return -EBUSY;
2598 *
2599 * if it cannot handle the case of removing a directory
2600 * that is still in use by something else..
2601 */
2602void dentry_unhash(struct dentry *dentry)
2603{
Vasily Averindc168422006-12-06 20:37:07 -08002604 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 spin_lock(&dentry->d_lock);
Sage Weil64252c72011-05-24 13:06:05 -07002606 if (dentry->d_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 __d_drop(dentry);
2608 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609}
2610
2611int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2612{
2613 int error = may_delete(dir, dentry, 1);
2614
2615 if (error)
2616 return error;
2617
Al Viroacfa4382008-12-04 10:06:33 -05002618 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 return -EPERM;
2620
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002621 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
Sage Weil912dbc12011-05-24 13:06:11 -07002623 error = -EBUSY;
2624 if (d_mountpoint(dentry))
2625 goto out;
2626
2627 error = security_inode_rmdir(dir, dentry);
2628 if (error)
2629 goto out;
2630
Sage Weil3cebde22011-05-29 21:20:59 -07002631 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07002632 error = dir->i_op->rmdir(dir, dentry);
2633 if (error)
2634 goto out;
2635
2636 dentry->d_inode->i_flags |= S_DEAD;
2637 dont_mount(dentry);
2638
2639out:
2640 mutex_unlock(&dentry->d_inode->i_mutex);
2641 if (!error)
2642 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 return error;
2644}
2645
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002646static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647{
2648 int error = 0;
2649 char * name;
2650 struct dentry *dentry;
2651 struct nameidata nd;
2652
Al Viro2ad94ae2008-07-21 09:32:51 -04002653 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002655 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656
2657 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002658 case LAST_DOTDOT:
2659 error = -ENOTEMPTY;
2660 goto exit1;
2661 case LAST_DOT:
2662 error = -EINVAL;
2663 goto exit1;
2664 case LAST_ROOT:
2665 error = -EBUSY;
2666 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002668
2669 nd.flags &= ~LOOKUP_PARENT;
2670
Jan Blunck4ac91372008-02-14 19:34:32 -08002671 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002672 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002674 if (IS_ERR(dentry))
2675 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002676 if (!dentry->d_inode) {
2677 error = -ENOENT;
2678 goto exit3;
2679 }
Dave Hansen06227532008-02-15 14:37:34 -08002680 error = mnt_want_write(nd.path.mnt);
2681 if (error)
2682 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002683 error = security_path_rmdir(&nd.path, dentry);
2684 if (error)
2685 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002686 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002687exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002688 mnt_drop_write(nd.path.mnt);
2689exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002690 dput(dentry);
2691exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002692 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002694 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 putname(name);
2696 return error;
2697}
2698
Heiko Carstens3cdad422009-01-14 14:14:22 +01002699SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002700{
2701 return do_rmdir(AT_FDCWD, pathname);
2702}
2703
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704int vfs_unlink(struct inode *dir, struct dentry *dentry)
2705{
2706 int error = may_delete(dir, dentry, 0);
2707
2708 if (error)
2709 return error;
2710
Al Viroacfa4382008-12-04 10:06:33 -05002711 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 return -EPERM;
2713
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002714 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 if (d_mountpoint(dentry))
2716 error = -EBUSY;
2717 else {
2718 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002719 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002721 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002722 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002725 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
2727 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2728 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002729 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 }
Robert Love0eeca282005-07-12 17:06:03 -04002732
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 return error;
2734}
2735
2736/*
2737 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002738 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 * writeout happening, and we don't want to prevent access to the directory
2740 * while waiting on the I/O.
2741 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002742static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743{
Al Viro2ad94ae2008-07-21 09:32:51 -04002744 int error;
2745 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 struct dentry *dentry;
2747 struct nameidata nd;
2748 struct inode *inode = NULL;
2749
Al Viro2ad94ae2008-07-21 09:32:51 -04002750 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002752 return error;
2753
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 error = -EISDIR;
2755 if (nd.last_type != LAST_NORM)
2756 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002757
2758 nd.flags &= ~LOOKUP_PARENT;
2759
Jan Blunck4ac91372008-02-14 19:34:32 -08002760 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002761 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 error = PTR_ERR(dentry);
2763 if (!IS_ERR(dentry)) {
2764 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03002765 if (nd.last.name[nd.last.len])
2766 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 inode = dentry->d_inode;
Török Edwin50338b82011-06-16 00:06:14 +03002768 if (!inode)
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002769 goto slashes;
2770 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002771 error = mnt_want_write(nd.path.mnt);
2772 if (error)
2773 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002774 error = security_path_unlink(&nd.path, dentry);
2775 if (error)
2776 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002777 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002778exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002779 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 exit2:
2781 dput(dentry);
2782 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002783 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 if (inode)
2785 iput(inode); /* truncate the inode here */
2786exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002787 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 putname(name);
2789 return error;
2790
2791slashes:
2792 error = !dentry->d_inode ? -ENOENT :
2793 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2794 goto exit2;
2795}
2796
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002797SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002798{
2799 if ((flag & ~AT_REMOVEDIR) != 0)
2800 return -EINVAL;
2801
2802 if (flag & AT_REMOVEDIR)
2803 return do_rmdir(dfd, pathname);
2804
2805 return do_unlinkat(dfd, pathname);
2806}
2807
Heiko Carstens3480b252009-01-14 14:14:16 +01002808SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002809{
2810 return do_unlinkat(AT_FDCWD, pathname);
2811}
2812
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002813int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002815 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816
2817 if (error)
2818 return error;
2819
Al Viroacfa4382008-12-04 10:06:33 -05002820 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 return -EPERM;
2822
2823 error = security_inode_symlink(dir, dentry, oldname);
2824 if (error)
2825 return error;
2826
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002828 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002829 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 return error;
2831}
2832
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002833SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2834 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835{
Al Viro2ad94ae2008-07-21 09:32:51 -04002836 int error;
2837 char *from;
2838 char *to;
Dave Hansen6902d922006-09-30 23:29:01 -07002839 struct dentry *dentry;
2840 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841
2842 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002843 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002845
2846 error = user_path_parent(newdfd, newname, &nd, &to);
2847 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002848 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849
Dave Hansen6902d922006-09-30 23:29:01 -07002850 dentry = lookup_create(&nd, 0);
2851 error = PTR_ERR(dentry);
2852 if (IS_ERR(dentry))
2853 goto out_unlock;
2854
Dave Hansen75c3f292008-02-15 14:37:45 -08002855 error = mnt_want_write(nd.path.mnt);
2856 if (error)
2857 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002858 error = security_path_symlink(&nd.path, dentry, from);
2859 if (error)
2860 goto out_drop_write;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002861 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002862out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002863 mnt_drop_write(nd.path.mnt);
2864out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002865 dput(dentry);
2866out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002867 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002868 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002869 putname(to);
2870out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 putname(from);
2872 return error;
2873}
2874
Heiko Carstens3480b252009-01-14 14:14:16 +01002875SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002876{
2877 return sys_symlinkat(oldname, AT_FDCWD, newname);
2878}
2879
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2881{
2882 struct inode *inode = old_dentry->d_inode;
2883 int error;
2884
2885 if (!inode)
2886 return -ENOENT;
2887
Miklos Szeredia95164d2008-07-30 15:08:48 +02002888 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 if (error)
2890 return error;
2891
2892 if (dir->i_sb != inode->i_sb)
2893 return -EXDEV;
2894
2895 /*
2896 * A link to an append-only or immutable file cannot be created.
2897 */
2898 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2899 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05002900 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002902 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 return -EPERM;
2904
2905 error = security_inode_link(old_dentry, dir, new_dentry);
2906 if (error)
2907 return error;
2908
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002909 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05302910 /* Make sure we don't allow creating hardlink to an unlinked file */
2911 if (inode->i_nlink == 0)
2912 error = -ENOENT;
2913 else
2914 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002915 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002916 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002917 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 return error;
2919}
2920
2921/*
2922 * Hardlinks are often used in delicate situations. We avoid
2923 * security-related surprises by not following symlinks on the
2924 * newname. --KAB
2925 *
2926 * We don't follow them on the oldname either to be compatible
2927 * with linux 2.0, and to avoid hard-linking to directories
2928 * and other special files. --ADM
2929 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002930SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2931 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932{
2933 struct dentry *new_dentry;
Al Viro2d8f3032008-07-22 09:59:21 -04002934 struct nameidata nd;
2935 struct path old_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302936 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 int error;
Al Viro2ad94ae2008-07-21 09:32:51 -04002938 char *to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302940 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002941 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302942 /*
2943 * To use null names we require CAP_DAC_READ_SEARCH
2944 * This ensures that not everyone will be able to create
2945 * handlink using the passed filedescriptor.
2946 */
2947 if (flags & AT_EMPTY_PATH) {
2948 if (!capable(CAP_DAC_READ_SEARCH))
2949 return -ENOENT;
2950 how = LOOKUP_EMPTY;
2951 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002952
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302953 if (flags & AT_SYMLINK_FOLLOW)
2954 how |= LOOKUP_FOLLOW;
2955
2956 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002958 return error;
2959
2960 error = user_path_parent(newdfd, newname, &nd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 if (error)
2962 goto out;
2963 error = -EXDEV;
Al Viro2d8f3032008-07-22 09:59:21 -04002964 if (old_path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 goto out_release;
2966 new_dentry = lookup_create(&nd, 0);
2967 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002968 if (IS_ERR(new_dentry))
2969 goto out_unlock;
Dave Hansen75c3f292008-02-15 14:37:45 -08002970 error = mnt_want_write(nd.path.mnt);
2971 if (error)
2972 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002973 error = security_path_link(old_path.dentry, &nd.path, new_dentry);
2974 if (error)
2975 goto out_drop_write;
Al Viro2d8f3032008-07-22 09:59:21 -04002976 error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002977out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002978 mnt_drop_write(nd.path.mnt);
2979out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002980 dput(new_dentry);
2981out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002982 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08002984 path_put(&nd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002985 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986out:
Al Viro2d8f3032008-07-22 09:59:21 -04002987 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
2989 return error;
2990}
2991
Heiko Carstens3480b252009-01-14 14:14:16 +01002992SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002993{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002994 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002995}
2996
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997/*
2998 * The worst of all namespace operations - renaming directory. "Perverted"
2999 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3000 * Problems:
3001 * a) we can get into loop creation. Check is done in is_subdir().
3002 * b) race potential - two innocent renames can create a loop together.
3003 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003004 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 * story.
3006 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003007 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 * whether the target exists). Solution: try to be smart with locking
3009 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003010 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 * move will be locked. Thus we can rank directories by the tree
3012 * (ancestors first) and rank all non-directories after them.
3013 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003014 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 * HOWEVER, it relies on the assumption that any object with ->lookup()
3016 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3017 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07003018 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003019 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003021 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 * locking].
3023 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07003024static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3025 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026{
3027 int error = 0;
Sage Weil9055cba2011-05-24 13:06:12 -07003028 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
3030 /*
3031 * If we are going to change the parent - check write permissions,
3032 * we'll need to flip '..'.
3033 */
3034 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04003035 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 if (error)
3037 return error;
3038 }
3039
3040 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3041 if (error)
3042 return error;
3043
Al Virod83c49f2010-04-30 17:17:09 -04003044 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003045 mutex_lock(&target->i_mutex);
Sage Weil9055cba2011-05-24 13:06:12 -07003046
3047 error = -EBUSY;
3048 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3049 goto out;
3050
Sage Weil3cebde22011-05-29 21:20:59 -07003051 if (target)
3052 shrink_dcache_parent(new_dentry);
Sage Weil9055cba2011-05-24 13:06:12 -07003053 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3054 if (error)
3055 goto out;
3056
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 if (target) {
Sage Weil9055cba2011-05-24 13:06:12 -07003058 target->i_flags |= S_DEAD;
3059 dont_mount(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 }
Sage Weil9055cba2011-05-24 13:06:12 -07003061out:
3062 if (target)
3063 mutex_unlock(&target->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003064 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003065 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3066 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 return error;
3068}
3069
Adrian Bunk75c96f82005-05-05 16:16:09 -07003070static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3071 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072{
Sage Weil51892bb2011-05-24 13:06:13 -07003073 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 int error;
3075
3076 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3077 if (error)
3078 return error;
3079
3080 dget(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003082 mutex_lock(&target->i_mutex);
Sage Weil51892bb2011-05-24 13:06:13 -07003083
3084 error = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
Sage Weil51892bb2011-05-24 13:06:13 -07003086 goto out;
3087
3088 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3089 if (error)
3090 goto out;
3091
3092 if (target)
3093 dont_mount(new_dentry);
3094 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3095 d_move(old_dentry, new_dentry);
3096out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003098 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 dput(new_dentry);
3100 return error;
3101}
3102
3103int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3104 struct inode *new_dir, struct dentry *new_dentry)
3105{
3106 int error;
3107 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003108 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
3110 if (old_dentry->d_inode == new_dentry->d_inode)
3111 return 0;
3112
3113 error = may_delete(old_dir, old_dentry, is_dir);
3114 if (error)
3115 return error;
3116
3117 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003118 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003119 else
3120 error = may_delete(new_dir, new_dentry, is_dir);
3121 if (error)
3122 return error;
3123
Al Viroacfa4382008-12-04 10:06:33 -05003124 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 return -EPERM;
3126
Robert Love0eeca282005-07-12 17:06:03 -04003127 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3128
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 if (is_dir)
3130 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3131 else
3132 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003133 if (!error)
3134 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003135 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003136 fsnotify_oldname_free(old_name);
3137
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 return error;
3139}
3140
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003141SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3142 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143{
Al Viro2ad94ae2008-07-21 09:32:51 -04003144 struct dentry *old_dir, *new_dir;
3145 struct dentry *old_dentry, *new_dentry;
3146 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003148 char *from;
3149 char *to;
3150 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
Al Viro2ad94ae2008-07-21 09:32:51 -04003152 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 if (error)
3154 goto exit;
3155
Al Viro2ad94ae2008-07-21 09:32:51 -04003156 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 if (error)
3158 goto exit1;
3159
3160 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003161 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 goto exit2;
3163
Jan Blunck4ac91372008-02-14 19:34:32 -08003164 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 error = -EBUSY;
3166 if (oldnd.last_type != LAST_NORM)
3167 goto exit2;
3168
Jan Blunck4ac91372008-02-14 19:34:32 -08003169 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 if (newnd.last_type != LAST_NORM)
3171 goto exit2;
3172
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003173 oldnd.flags &= ~LOOKUP_PARENT;
3174 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003175 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003176
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 trap = lock_rename(new_dir, old_dir);
3178
Christoph Hellwig49705b72005-11-08 21:35:06 -08003179 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 error = PTR_ERR(old_dentry);
3181 if (IS_ERR(old_dentry))
3182 goto exit3;
3183 /* source must exist */
3184 error = -ENOENT;
3185 if (!old_dentry->d_inode)
3186 goto exit4;
3187 /* unless the source is a directory trailing slashes give -ENOTDIR */
3188 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3189 error = -ENOTDIR;
3190 if (oldnd.last.name[oldnd.last.len])
3191 goto exit4;
3192 if (newnd.last.name[newnd.last.len])
3193 goto exit4;
3194 }
3195 /* source should not be ancestor of target */
3196 error = -EINVAL;
3197 if (old_dentry == trap)
3198 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003199 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 error = PTR_ERR(new_dentry);
3201 if (IS_ERR(new_dentry))
3202 goto exit4;
3203 /* target should not be an ancestor of source */
3204 error = -ENOTEMPTY;
3205 if (new_dentry == trap)
3206 goto exit5;
3207
Dave Hansen9079b1e2008-02-15 14:37:49 -08003208 error = mnt_want_write(oldnd.path.mnt);
3209 if (error)
3210 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003211 error = security_path_rename(&oldnd.path, old_dentry,
3212 &newnd.path, new_dentry);
3213 if (error)
3214 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 error = vfs_rename(old_dir->d_inode, old_dentry,
3216 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003217exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003218 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219exit5:
3220 dput(new_dentry);
3221exit4:
3222 dput(old_dentry);
3223exit3:
3224 unlock_rename(new_dir, old_dir);
3225exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003226 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003227 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003229 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003231exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 return error;
3233}
3234
Heiko Carstensa26eab22009-01-14 14:14:17 +01003235SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003236{
3237 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3238}
3239
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3241{
3242 int len;
3243
3244 len = PTR_ERR(link);
3245 if (IS_ERR(link))
3246 goto out;
3247
3248 len = strlen(link);
3249 if (len > (unsigned) buflen)
3250 len = buflen;
3251 if (copy_to_user(buffer, link, len))
3252 len = -EFAULT;
3253out:
3254 return len;
3255}
3256
3257/*
3258 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3259 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3260 * using) it for any given inode is up to filesystem.
3261 */
3262int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3263{
3264 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003265 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003266 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003267
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003269 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003270 if (IS_ERR(cookie))
3271 return PTR_ERR(cookie);
3272
3273 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3274 if (dentry->d_inode->i_op->put_link)
3275 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3276 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277}
3278
3279int vfs_follow_link(struct nameidata *nd, const char *link)
3280{
3281 return __vfs_follow_link(nd, link);
3282}
3283
3284/* get the link contents into pagecache */
3285static char *page_getlink(struct dentry * dentry, struct page **ppage)
3286{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003287 char *kaddr;
3288 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003290 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003292 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003294 kaddr = kmap(page);
3295 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3296 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297}
3298
3299int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3300{
3301 struct page *page = NULL;
3302 char *s = page_getlink(dentry, &page);
3303 int res = vfs_readlink(dentry,buffer,buflen,s);
3304 if (page) {
3305 kunmap(page);
3306 page_cache_release(page);
3307 }
3308 return res;
3309}
3310
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003311void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003312{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003313 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003315 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316}
3317
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003318void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003320 struct page *page = cookie;
3321
3322 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 kunmap(page);
3324 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 }
3326}
3327
Nick Piggin54566b22009-01-04 12:00:53 -08003328/*
3329 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3330 */
3331int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332{
3333 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003334 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003335 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003336 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003338 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3339 if (nofs)
3340 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341
NeilBrown7e53cac2006-03-25 03:07:57 -08003342retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003343 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003344 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003346 goto fail;
3347
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 kaddr = kmap_atomic(page, KM_USER0);
3349 memcpy(kaddr, symname, len-1);
3350 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07003351
3352 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3353 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 if (err < 0)
3355 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003356 if (err < len-1)
3357 goto retry;
3358
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 mark_inode_dirty(inode);
3360 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361fail:
3362 return err;
3363}
3364
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003365int page_symlink(struct inode *inode, const char *symname, int len)
3366{
3367 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003368 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003369}
3370
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003371const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 .readlink = generic_readlink,
3373 .follow_link = page_follow_link_light,
3374 .put_link = page_put_link,
3375};
3376
Al Viro2d8f3032008-07-22 09:59:21 -04003377EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003378EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379EXPORT_SYMBOL(follow_down);
3380EXPORT_SYMBOL(follow_up);
3381EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3382EXPORT_SYMBOL(getname);
3383EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384EXPORT_SYMBOL(lookup_one_len);
3385EXPORT_SYMBOL(page_follow_link_light);
3386EXPORT_SYMBOL(page_put_link);
3387EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003388EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389EXPORT_SYMBOL(page_symlink);
3390EXPORT_SYMBOL(page_symlink_inode_operations);
Al Viroc9c6cac2011-02-16 15:15:47 -05003391EXPORT_SYMBOL(kern_path_parent);
Al Virod1811462008-08-02 00:49:18 -04003392EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003393EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003394EXPORT_SYMBOL(inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395EXPORT_SYMBOL(unlock_rename);
3396EXPORT_SYMBOL(vfs_create);
3397EXPORT_SYMBOL(vfs_follow_link);
3398EXPORT_SYMBOL(vfs_link);
3399EXPORT_SYMBOL(vfs_mkdir);
3400EXPORT_SYMBOL(vfs_mknod);
3401EXPORT_SYMBOL(generic_permission);
3402EXPORT_SYMBOL(vfs_readlink);
3403EXPORT_SYMBOL(vfs_rename);
3404EXPORT_SYMBOL(vfs_rmdir);
3405EXPORT_SYMBOL(vfs_symlink);
3406EXPORT_SYMBOL(vfs_unlink);
3407EXPORT_SYMBOL(dentry_unhash);
3408EXPORT_SYMBOL(generic_readlink);