blob: 5ba42c453e31e500598e8d8738ad9590a27dbc03 [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
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800306/**
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800307 * file_permission - check for additional access rights to a given file
308 * @file: file to check access rights for
309 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
310 *
311 * Used to check for read/write/execute permissions on an already opened
312 * file.
313 *
314 * Note:
315 * Do not use this function in new code. All access checks should
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200316 * be done using inode_permission().
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800317 */
318int file_permission(struct file *file, int mask)
319{
Al Virof419a2e2008-07-22 00:07:17 -0400320 return inode_permission(file->f_path.dentry->d_inode, mask);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800321}
322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323/*
324 * get_write_access() gets write permission for a file.
325 * put_write_access() releases this write permission.
326 * This is used for regular files.
327 * We cannot support write (and maybe mmap read-write shared) accesses and
328 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
329 * can have the following values:
330 * 0: no writers, no VM_DENYWRITE mappings
331 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
332 * > 0: (i_writecount) users are writing to the file.
333 *
334 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
335 * except for the cases where we don't hold i_writecount yet. Then we need to
336 * use {get,deny}_write_access() - these functions check the sign and refuse
337 * to do the change if sign is wrong. Exclusion between them is provided by
338 * the inode->i_lock spinlock.
339 */
340
341int get_write_access(struct inode * inode)
342{
343 spin_lock(&inode->i_lock);
344 if (atomic_read(&inode->i_writecount) < 0) {
345 spin_unlock(&inode->i_lock);
346 return -ETXTBSY;
347 }
348 atomic_inc(&inode->i_writecount);
349 spin_unlock(&inode->i_lock);
350
351 return 0;
352}
353
354int deny_write_access(struct file * file)
355{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800356 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
358 spin_lock(&inode->i_lock);
359 if (atomic_read(&inode->i_writecount) > 0) {
360 spin_unlock(&inode->i_lock);
361 return -ETXTBSY;
362 }
363 atomic_dec(&inode->i_writecount);
364 spin_unlock(&inode->i_lock);
365
366 return 0;
367}
368
Jan Blunck1d957f92008-02-14 19:34:35 -0800369/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800370 * path_get - get a reference to a path
371 * @path: path to get the reference to
372 *
373 * Given a path increment the reference count to the dentry and the vfsmount.
374 */
375void path_get(struct path *path)
376{
377 mntget(path->mnt);
378 dget(path->dentry);
379}
380EXPORT_SYMBOL(path_get);
381
382/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800383 * path_put - put a reference to a path
384 * @path: path to put the reference to
385 *
386 * Given a path decrement the reference count to the dentry and the vfsmount.
387 */
388void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
Jan Blunck1d957f92008-02-14 19:34:35 -0800390 dput(path->dentry);
391 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
Jan Blunck1d957f92008-02-14 19:34:35 -0800393EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Al Viro19660af2011-03-25 10:32:48 -0400395/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100396 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400397 * Documentation/filesystems/path-lookup.txt). In situations when we can't
398 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
399 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
400 * mode. Refcounts are grabbed at the last known good point before rcu-walk
401 * got stuck, so ref-walk may continue from there. If this is not successful
402 * (eg. a seqcount has changed), then failure is returned and it's up to caller
403 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100404 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100405
406/**
Al Viro19660af2011-03-25 10:32:48 -0400407 * unlazy_walk - try to switch to ref-walk mode.
408 * @nd: nameidata pathwalk data
409 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800410 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100411 *
Al Viro19660af2011-03-25 10:32:48 -0400412 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
413 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
414 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100415 */
Al Viro19660af2011-03-25 10:32:48 -0400416static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100417{
418 struct fs_struct *fs = current->fs;
419 struct dentry *parent = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500420 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100421
422 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500423 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
424 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100425 spin_lock(&fs->lock);
426 if (nd->root.mnt != fs->root.mnt ||
427 nd->root.dentry != fs->root.dentry)
428 goto err_root;
429 }
430 spin_lock(&parent->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400431 if (!dentry) {
432 if (!__d_rcu_to_refcount(parent, nd->seq))
433 goto err_parent;
434 BUG_ON(nd->inode != parent->d_inode);
435 } else {
Al Viro94c0d4e2011-07-12 21:40:23 -0400436 if (dentry->d_parent != parent)
437 goto err_parent;
Al Viro19660af2011-03-25 10:32:48 -0400438 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
439 if (!__d_rcu_to_refcount(dentry, nd->seq))
440 goto err_child;
441 /*
442 * If the sequence check on the child dentry passed, then
443 * the child has not been removed from its parent. This
444 * means the parent dentry must be valid and able to take
445 * a reference at this point.
446 */
447 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
448 BUG_ON(!parent->d_count);
449 parent->d_count++;
450 spin_unlock(&dentry->d_lock);
451 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100452 spin_unlock(&parent->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500453 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100454 path_get(&nd->root);
455 spin_unlock(&fs->lock);
456 }
457 mntget(nd->path.mnt);
458
459 rcu_read_unlock();
460 br_read_unlock(vfsmount_lock);
461 nd->flags &= ~LOOKUP_RCU;
462 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400463
464err_child:
Nick Piggin31e6b012011-01-07 17:49:52 +1100465 spin_unlock(&dentry->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400466err_parent:
Nick Piggin31e6b012011-01-07 17:49:52 +1100467 spin_unlock(&parent->d_lock);
468err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500469 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100470 spin_unlock(&fs->lock);
471 return -ECHILD;
472}
473
Nick Piggin31e6b012011-01-07 17:49:52 +1100474/**
Trond Myklebust834f2a42005-10-18 14:20:16 -0700475 * release_open_intent - free up open intent resources
476 * @nd: pointer to nameidata
477 */
478void release_open_intent(struct nameidata *nd)
479{
Linus Torvalds2dab5972011-02-11 15:53:38 -0800480 struct file *file = nd->intent.open.file;
481
482 if (file && !IS_ERR(file)) {
483 if (file->f_path.dentry == NULL)
484 put_filp(file);
485 else
486 fput(file);
487 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700488}
489
Al Virof60aef72011-02-15 01:35:28 -0500490static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
Nick Piggin34286d62011-01-07 17:49:57 +1100491{
Al Virof60aef72011-02-15 01:35:28 -0500492 return dentry->d_op->d_revalidate(dentry, nd);
Nick Piggin34286d62011-01-07 17:49:57 +1100493}
494
Al Virof5e1c1c2011-02-15 01:32:55 -0500495static struct dentry *
Ian Kentbcdc5e02006-09-27 01:50:44 -0700496do_revalidate(struct dentry *dentry, struct nameidata *nd)
497{
Al Virof5e1c1c2011-02-15 01:32:55 -0500498 int status = d_revalidate(dentry, nd);
Ian Kentbcdc5e02006-09-27 01:50:44 -0700499 if (unlikely(status <= 0)) {
500 /*
501 * The dentry failed validation.
502 * If d_revalidate returned 0 attempt to invalidate
503 * the dentry otherwise d_revalidate is asking us
504 * to return a fail status.
505 */
Nick Piggin34286d62011-01-07 17:49:57 +1100506 if (status < 0) {
Al Virof5e1c1c2011-02-15 01:32:55 -0500507 dput(dentry);
Nick Piggin34286d62011-01-07 17:49:57 +1100508 dentry = ERR_PTR(status);
Al Virof5e1c1c2011-02-15 01:32:55 -0500509 } else if (!d_invalidate(dentry)) {
510 dput(dentry);
511 dentry = NULL;
Ian Kentbcdc5e02006-09-27 01:50:44 -0700512 }
513 }
514 return dentry;
515}
516
Al Viro9f1fafe2011-03-25 11:00:12 -0400517/**
518 * complete_walk - successful completion of path walk
519 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500520 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400521 * If we had been in RCU mode, drop out of it and legitimize nd->path.
522 * Revalidate the final result, unless we'd already done that during
523 * the path walk or the filesystem doesn't ask for it. Return 0 on
524 * success, -error on failure. In case of failure caller does not
525 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500526 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400527static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500528{
Al Viro16c2cd72011-02-22 15:50:10 -0500529 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500530 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500531
Al Viro9f1fafe2011-03-25 11:00:12 -0400532 if (nd->flags & LOOKUP_RCU) {
533 nd->flags &= ~LOOKUP_RCU;
534 if (!(nd->flags & LOOKUP_ROOT))
535 nd->root.mnt = NULL;
536 spin_lock(&dentry->d_lock);
537 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
538 spin_unlock(&dentry->d_lock);
539 rcu_read_unlock();
540 br_read_unlock(vfsmount_lock);
541 return -ECHILD;
542 }
543 BUG_ON(nd->inode != dentry->d_inode);
544 spin_unlock(&dentry->d_lock);
545 mntget(nd->path.mnt);
546 rcu_read_unlock();
547 br_read_unlock(vfsmount_lock);
548 }
549
Al Viro16c2cd72011-02-22 15:50:10 -0500550 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500551 return 0;
552
Al Viro16c2cd72011-02-22 15:50:10 -0500553 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
554 return 0;
555
556 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
557 return 0;
558
559 /* Note: we do not d_invalidate() */
Nick Piggin34286d62011-01-07 17:49:57 +1100560 status = d_revalidate(dentry, nd);
Jeff Layton39159de2009-12-07 12:01:50 -0500561 if (status > 0)
562 return 0;
563
Al Viro16c2cd72011-02-22 15:50:10 -0500564 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500565 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500566
Al Viro9f1fafe2011-03-25 11:00:12 -0400567 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500568 return status;
569}
570
571/*
Al Virob75b5082009-12-16 01:01:38 -0500572 * Short-cut version of permission(), for calling on directories
573 * during pathname resolution. Combines parts of permission()
574 * and generic_permission(), and tests ONLY for MAY_EXEC permission.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 *
576 * If appropriate, check DAC only. If not appropriate, or
Al Virob75b5082009-12-16 01:01:38 -0500577 * short-cut DAC fails, then call ->permission() to do more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 * complete permission check.
579 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100580static inline int exec_permission(struct inode *inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700582 int ret;
Serge E. Hallyne795b712011-03-23 16:43:25 -0700583 struct user_namespace *ns = inode_userns(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700585 if (inode->i_op->permission) {
Nick Pigginb74c79e2011-01-07 17:49:58 +1100586 ret = inode->i_op->permission(inode, MAY_EXEC, flags);
587 } else {
588 ret = acl_permission_check(inode, MAY_EXEC, flags,
589 inode->i_op->check_acl);
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700590 }
Nick Pigginb74c79e2011-01-07 17:49:58 +1100591 if (likely(!ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 goto ok;
Nick Pigginb74c79e2011-01-07 17:49:58 +1100593 if (ret == -ECHILD)
Nick Piggin31e6b012011-01-07 17:49:52 +1100594 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Serge E. Hallyne795b712011-03-23 16:43:25 -0700596 if (ns_capable(ns, CAP_DAC_OVERRIDE) ||
597 ns_capable(ns, CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 goto ok;
599
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700600 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601ok:
Nick Pigginb74c79e2011-01-07 17:49:58 +1100602 return security_inode_exec_permission(inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
Al Viro2a737872009-04-07 11:49:53 -0400605static __always_inline void set_root(struct nameidata *nd)
606{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200607 if (!nd->root.mnt)
608 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400609}
610
Al Viro6de88d72009-08-09 01:41:57 +0400611static int link_path_walk(const char *, struct nameidata *);
612
Nick Piggin31e6b012011-01-07 17:49:52 +1100613static __always_inline void set_root_rcu(struct nameidata *nd)
614{
615 if (!nd->root.mnt) {
616 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100617 unsigned seq;
618
619 do {
620 seq = read_seqcount_begin(&fs->seq);
621 nd->root = fs->root;
Tim Chenc1530012011-04-15 11:39:29 -0700622 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
Nick Pigginc28cc362011-01-07 17:49:53 +1100623 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100624 }
625}
626
Arjan van de Venf1662352006-01-14 13:21:31 -0800627static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Nick Piggin31e6b012011-01-07 17:49:52 +1100629 int ret;
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 if (IS_ERR(link))
632 goto fail;
633
634 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400635 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800636 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400637 nd->path = nd->root;
638 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500639 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100641 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100642
Nick Piggin31e6b012011-01-07 17:49:52 +1100643 ret = link_path_walk(link, nd);
644 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800646 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 return PTR_ERR(link);
648}
649
Jan Blunck1d957f92008-02-14 19:34:35 -0800650static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700651{
652 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800653 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700654 mntput(path->mnt);
655}
656
Nick Piggin7b9337a2011-01-14 08:42:43 +0000657static inline void path_to_nameidata(const struct path *path,
658 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700659{
Nick Piggin31e6b012011-01-07 17:49:52 +1100660 if (!(nd->flags & LOOKUP_RCU)) {
661 dput(nd->path.dentry);
662 if (nd->path.mnt != path->mnt)
663 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800664 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100665 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800666 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700667}
668
Al Viro574197e2011-03-14 22:20:34 -0400669static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
670{
671 struct inode *inode = link->dentry->d_inode;
672 if (!IS_ERR(cookie) && inode->i_op->put_link)
673 inode->i_op->put_link(link->dentry, nd, cookie);
674 path_put(link);
675}
676
Al Virodef4af32009-12-26 08:37:05 -0500677static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400678follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800679{
680 int error;
Nick Piggin7b9337a2011-01-14 08:42:43 +0000681 struct dentry *dentry = link->dentry;
Ian Kent051d3812006-03-27 01:14:53 -0800682
Al Viro844a3912011-02-15 00:38:26 -0500683 BUG_ON(nd->flags & LOOKUP_RCU);
684
Al Viro0e794582011-03-16 02:45:02 -0400685 if (link->mnt == nd->path.mnt)
686 mntget(link->mnt);
687
Al Viro574197e2011-03-14 22:20:34 -0400688 if (unlikely(current->total_link_count >= 40)) {
689 *p = ERR_PTR(-ELOOP); /* no ->put_link(), please */
Al Viro574197e2011-03-14 22:20:34 -0400690 path_put(&nd->path);
691 return -ELOOP;
692 }
693 cond_resched();
694 current->total_link_count++;
695
Nick Piggin7b9337a2011-01-14 08:42:43 +0000696 touch_atime(link->mnt, dentry);
Ian Kent051d3812006-03-27 01:14:53 -0800697 nd_set_link(nd, NULL);
698
Al Viro36f3b4f2011-02-22 21:24:38 -0500699 error = security_inode_follow_link(link->dentry, nd);
700 if (error) {
701 *p = ERR_PTR(error); /* no ->put_link(), please */
702 path_put(&nd->path);
703 return error;
704 }
705
Al Viro86acdca12009-12-22 23:45:11 -0500706 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500707 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
708 error = PTR_ERR(*p);
709 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800710 char *s = nd_get_link(nd);
711 error = 0;
712 if (s)
713 error = __vfs_follow_link(nd, s);
Al Virobcda7652011-03-13 16:42:14 -0400714 else if (nd->last_type == LAST_BIND) {
Al Viro16c2cd72011-02-22 15:50:10 -0500715 nd->flags |= LOOKUP_JUMPED;
Al Virob21041d2011-03-14 20:01:51 -0400716 nd->inode = nd->path.dentry->d_inode;
717 if (nd->inode->i_op->follow_link) {
Al Virobcda7652011-03-13 16:42:14 -0400718 /* stepped on a _really_ weird one */
719 path_put(&nd->path);
720 error = -ELOOP;
721 }
722 }
Ian Kent051d3812006-03-27 01:14:53 -0800723 }
Ian Kent051d3812006-03-27 01:14:53 -0800724 return error;
725}
726
Nick Piggin31e6b012011-01-07 17:49:52 +1100727static int follow_up_rcu(struct path *path)
728{
729 struct vfsmount *parent;
730 struct dentry *mountpoint;
731
732 parent = path->mnt->mnt_parent;
733 if (parent == path->mnt)
734 return 0;
735 mountpoint = path->mnt->mnt_mountpoint;
736 path->dentry = mountpoint;
737 path->mnt = parent;
738 return 1;
739}
740
Al Virobab77eb2009-04-18 03:26:48 -0400741int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 struct vfsmount *parent;
744 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000745
746 br_read_lock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400747 parent = path->mnt->mnt_parent;
748 if (parent == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000749 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 return 0;
751 }
752 mntget(parent);
Al Virobab77eb2009-04-18 03:26:48 -0400753 mountpoint = dget(path->mnt->mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000754 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400755 dput(path->dentry);
756 path->dentry = mountpoint;
757 mntput(path->mnt);
758 path->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return 1;
760}
761
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100762/*
David Howells9875cf82011-01-14 18:45:21 +0000763 * Perform an automount
764 * - return -EISDIR to tell follow_managed() to stop and return the path we
765 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 */
David Howells9875cf82011-01-14 18:45:21 +0000767static int follow_automount(struct path *path, unsigned flags,
768 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100769{
David Howells9875cf82011-01-14 18:45:21 +0000770 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000771 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100772
David Howells9875cf82011-01-14 18:45:21 +0000773 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
774 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700775
David Howells6f45b652011-01-14 18:45:31 +0000776 /* We don't want to mount if someone supplied AT_NO_AUTOMOUNT
777 * and this is the terminal part of the path.
778 */
779 if ((flags & LOOKUP_NO_AUTOMOUNT) && !(flags & LOOKUP_CONTINUE))
780 return -EISDIR; /* we actually want to stop here */
781
David Howells9875cf82011-01-14 18:45:21 +0000782 /* We want to mount if someone is trying to open/create a file of any
783 * type under the mountpoint, wants to traverse through the mountpoint
784 * or wants to open the mounted directory.
785 *
786 * We don't want to mount if someone's just doing a stat and they've
787 * set AT_SYMLINK_NOFOLLOW - unless they're stat'ing a directory and
788 * appended a '/' to the name.
789 */
790 if (!(flags & LOOKUP_FOLLOW) &&
791 !(flags & (LOOKUP_CONTINUE | LOOKUP_DIRECTORY |
792 LOOKUP_OPEN | LOOKUP_CREATE)))
793 return -EISDIR;
794
795 current->total_link_count++;
796 if (current->total_link_count >= 40)
797 return -ELOOP;
798
799 mnt = path->dentry->d_op->d_automount(path);
800 if (IS_ERR(mnt)) {
801 /*
802 * The filesystem is allowed to return -EISDIR here to indicate
803 * it doesn't want to automount. For instance, autofs would do
804 * this so that its userspace daemon can mount on this dentry.
805 *
806 * However, we can only permit this if it's a terminal point in
807 * the path being looked up; if it wasn't then the remainder of
808 * the path is inaccessible and we should say so.
809 */
810 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_CONTINUE))
811 return -EREMOTE;
812 return PTR_ERR(mnt);
813 }
David Howellsea5b7782011-01-14 19:10:03 +0000814
David Howells9875cf82011-01-14 18:45:21 +0000815 if (!mnt) /* mount collision */
816 return 0;
817
Al Viro8aef1882011-06-16 15:10:06 +0100818 if (!*need_mntput) {
819 /* lock_mount() may release path->mnt on error */
820 mntget(path->mnt);
821 *need_mntput = true;
822 }
Al Viro19a167a2011-01-17 01:35:23 -0500823 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000824
David Howellsea5b7782011-01-14 19:10:03 +0000825 switch (err) {
826 case -EBUSY:
827 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500828 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000829 case 0:
Al Viro8aef1882011-06-16 15:10:06 +0100830 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +0000831 path->mnt = mnt;
832 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +0000833 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500834 default:
835 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000836 }
Al Viro19a167a2011-01-17 01:35:23 -0500837
David Howells9875cf82011-01-14 18:45:21 +0000838}
839
840/*
841 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000842 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000843 * - Flagged as mountpoint
844 * - Flagged as automount point
845 *
846 * This may only be called in refwalk mode.
847 *
848 * Serialization is taken care of in namespace.c
849 */
850static int follow_managed(struct path *path, unsigned flags)
851{
Al Viro8aef1882011-06-16 15:10:06 +0100852 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +0000853 unsigned managed;
854 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +0100855 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +0000856
857 /* Given that we're not holding a lock here, we retain the value in a
858 * local variable for each dentry as we look at it so that we don't see
859 * the components of that value change under us */
860 while (managed = ACCESS_ONCE(path->dentry->d_flags),
861 managed &= DCACHE_MANAGED_DENTRY,
862 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000863 /* Allow the filesystem to manage the transit without i_mutex
864 * being held. */
865 if (managed & DCACHE_MANAGE_TRANSIT) {
866 BUG_ON(!path->dentry->d_op);
867 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -0400868 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000869 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100870 break;
David Howellscc53ce52011-01-14 18:45:26 +0000871 }
872
David Howells9875cf82011-01-14 18:45:21 +0000873 /* Transit to a mounted filesystem. */
874 if (managed & DCACHE_MOUNTED) {
875 struct vfsmount *mounted = lookup_mnt(path);
876 if (mounted) {
877 dput(path->dentry);
878 if (need_mntput)
879 mntput(path->mnt);
880 path->mnt = mounted;
881 path->dentry = dget(mounted->mnt_root);
882 need_mntput = true;
883 continue;
884 }
885
886 /* Something is mounted on this dentry in another
887 * namespace and/or whatever was mounted there in this
888 * namespace got unmounted before we managed to get the
889 * vfsmount_lock */
890 }
891
892 /* Handle an automount point */
893 if (managed & DCACHE_NEED_AUTOMOUNT) {
894 ret = follow_automount(path, flags, &need_mntput);
895 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100896 break;
David Howells9875cf82011-01-14 18:45:21 +0000897 continue;
898 }
899
900 /* We didn't change the current path point */
901 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
Al Viro8aef1882011-06-16 15:10:06 +0100903
904 if (need_mntput && path->mnt == mnt)
905 mntput(path->mnt);
906 if (ret == -EISDIR)
907 ret = 0;
908 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909}
910
David Howellscc53ce52011-01-14 18:45:26 +0000911int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 struct vfsmount *mounted;
914
Al Viro1c755af2009-04-18 14:06:57 -0400915 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400917 dput(path->dentry);
918 mntput(path->mnt);
919 path->mnt = mounted;
920 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return 1;
922 }
923 return 0;
924}
925
Ian Kent62a73752011-03-25 01:51:02 +0800926static inline bool managed_dentry_might_block(struct dentry *dentry)
927{
928 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
929 dentry->d_op->d_manage(dentry, true) < 0);
930}
931
David Howells9875cf82011-01-14 18:45:21 +0000932/*
Al Viro287548e2011-05-27 06:50:06 -0400933 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
934 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +0000935 */
936static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -0400937 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +0000938{
Ian Kent62a73752011-03-25 01:51:02 +0800939 for (;;) {
David Howells9875cf82011-01-14 18:45:21 +0000940 struct vfsmount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +0800941 /*
942 * Don't forget we might have a non-mountpoint managed dentry
943 * that wants to block transit.
944 */
Al Viro287548e2011-05-27 06:50:06 -0400945 if (unlikely(managed_dentry_might_block(path->dentry)))
David Howellsab909112011-01-14 18:46:51 +0000946 return false;
Ian Kent62a73752011-03-25 01:51:02 +0800947
948 if (!d_mountpoint(path->dentry))
949 break;
950
David Howells9875cf82011-01-14 18:45:21 +0000951 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
952 if (!mounted)
953 break;
954 path->mnt = mounted;
955 path->dentry = mounted->mnt_root;
956 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -0700957 /*
958 * Update the inode too. We don't need to re-check the
959 * dentry sequence number here after this d_inode read,
960 * because a mount-point is always pinned.
961 */
962 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +0000963 }
David Howells9875cf82011-01-14 18:45:21 +0000964 return true;
965}
966
Al Virodea39372011-05-27 06:53:39 -0400967static void follow_mount_rcu(struct nameidata *nd)
Al Viro287548e2011-05-27 06:50:06 -0400968{
Al Virodea39372011-05-27 06:53:39 -0400969 while (d_mountpoint(nd->path.dentry)) {
Al Viro287548e2011-05-27 06:50:06 -0400970 struct vfsmount *mounted;
Al Virodea39372011-05-27 06:53:39 -0400971 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
Al Viro287548e2011-05-27 06:50:06 -0400972 if (!mounted)
973 break;
Al Virodea39372011-05-27 06:53:39 -0400974 nd->path.mnt = mounted;
975 nd->path.dentry = mounted->mnt_root;
976 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro287548e2011-05-27 06:50:06 -0400977 }
978}
979
Nick Piggin31e6b012011-01-07 17:49:52 +1100980static int follow_dotdot_rcu(struct nameidata *nd)
981{
Nick Piggin31e6b012011-01-07 17:49:52 +1100982 set_root_rcu(nd);
983
David Howells9875cf82011-01-14 18:45:21 +0000984 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100985 if (nd->path.dentry == nd->root.dentry &&
986 nd->path.mnt == nd->root.mnt) {
987 break;
988 }
989 if (nd->path.dentry != nd->path.mnt->mnt_root) {
990 struct dentry *old = nd->path.dentry;
991 struct dentry *parent = old->d_parent;
992 unsigned seq;
993
994 seq = read_seqcount_begin(&parent->d_seq);
995 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -0500996 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +1100997 nd->path.dentry = parent;
998 nd->seq = seq;
999 break;
1000 }
1001 if (!follow_up_rcu(&nd->path))
1002 break;
1003 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +11001004 }
Al Virodea39372011-05-27 06:53:39 -04001005 follow_mount_rcu(nd);
1006 nd->inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001007 return 0;
Al Viroef7562d2011-03-04 14:35:59 -05001008
1009failed:
1010 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001011 if (!(nd->flags & LOOKUP_ROOT))
1012 nd->root.mnt = NULL;
Al Viroef7562d2011-03-04 14:35:59 -05001013 rcu_read_unlock();
1014 br_read_unlock(vfsmount_lock);
1015 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001016}
1017
David Howells9875cf82011-01-14 18:45:21 +00001018/*
David Howellscc53ce52011-01-14 18:45:26 +00001019 * Follow down to the covering mount currently visible to userspace. At each
1020 * point, the filesystem owning that dentry may be queried as to whether the
1021 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001022 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001023int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001024{
1025 unsigned managed;
1026 int ret;
1027
1028 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1029 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1030 /* Allow the filesystem to manage the transit without i_mutex
1031 * being held.
1032 *
1033 * We indicate to the filesystem if someone is trying to mount
1034 * something here. This gives autofs the chance to deny anyone
1035 * other than its daemon the right to mount on its
1036 * superstructure.
1037 *
1038 * The filesystem may sleep at this point.
1039 */
1040 if (managed & DCACHE_MANAGE_TRANSIT) {
1041 BUG_ON(!path->dentry->d_op);
1042 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001043 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001044 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001045 if (ret < 0)
1046 return ret == -EISDIR ? 0 : ret;
1047 }
1048
1049 /* Transit to a mounted filesystem. */
1050 if (managed & DCACHE_MOUNTED) {
1051 struct vfsmount *mounted = lookup_mnt(path);
1052 if (!mounted)
1053 break;
1054 dput(path->dentry);
1055 mntput(path->mnt);
1056 path->mnt = mounted;
1057 path->dentry = dget(mounted->mnt_root);
1058 continue;
1059 }
1060
1061 /* Don't handle automount points here */
1062 break;
1063 }
1064 return 0;
1065}
1066
1067/*
David Howells9875cf82011-01-14 18:45:21 +00001068 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1069 */
1070static void follow_mount(struct path *path)
1071{
1072 while (d_mountpoint(path->dentry)) {
1073 struct vfsmount *mounted = lookup_mnt(path);
1074 if (!mounted)
1075 break;
1076 dput(path->dentry);
1077 mntput(path->mnt);
1078 path->mnt = mounted;
1079 path->dentry = dget(mounted->mnt_root);
1080 }
1081}
1082
Nick Piggin31e6b012011-01-07 17:49:52 +11001083static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084{
Al Viro2a737872009-04-07 11:49:53 -04001085 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001086
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001088 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089
Al Viro2a737872009-04-07 11:49:53 -04001090 if (nd->path.dentry == nd->root.dentry &&
1091 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 break;
1093 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001094 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001095 /* rare case of legitimate dget_parent()... */
1096 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 dput(old);
1098 break;
1099 }
Al Viro3088dd72010-01-30 15:47:29 -05001100 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
Al Viro79ed0222009-04-18 13:59:41 -04001103 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001104 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107/*
Nick Pigginbaa03892010-08-18 04:37:31 +10001108 * Allocate a dentry with name and parent, and perform a parent
1109 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1110 * on error. parent->d_inode->i_mutex must be held. d_lookup must
1111 * have verified that no child exists while under i_mutex.
1112 */
1113static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1114 struct qstr *name, struct nameidata *nd)
1115{
1116 struct inode *inode = parent->d_inode;
1117 struct dentry *dentry;
1118 struct dentry *old;
1119
1120 /* Don't create child dentry for a dead directory. */
1121 if (unlikely(IS_DEADDIR(inode)))
1122 return ERR_PTR(-ENOENT);
1123
1124 dentry = d_alloc(parent, name);
1125 if (unlikely(!dentry))
1126 return ERR_PTR(-ENOMEM);
1127
1128 old = inode->i_op->lookup(inode, dentry, nd);
1129 if (unlikely(old)) {
1130 dput(dentry);
1131 dentry = old;
1132 }
1133 return dentry;
1134}
1135
1136/*
Josef Bacik44396f42011-05-31 11:58:49 -04001137 * We already have a dentry, but require a lookup to be performed on the parent
1138 * directory to fill in d_inode. Returns the new dentry, or ERR_PTR on error.
1139 * parent->d_inode->i_mutex must be held. d_lookup must have verified that no
1140 * child exists while under i_mutex.
1141 */
1142static struct dentry *d_inode_lookup(struct dentry *parent, struct dentry *dentry,
1143 struct nameidata *nd)
1144{
1145 struct inode *inode = parent->d_inode;
1146 struct dentry *old;
1147
1148 /* Don't create child dentry for a dead directory. */
1149 if (unlikely(IS_DEADDIR(inode)))
1150 return ERR_PTR(-ENOENT);
1151
1152 old = inode->i_op->lookup(inode, dentry, nd);
1153 if (unlikely(old)) {
1154 dput(dentry);
1155 dentry = old;
1156 }
1157 return dentry;
1158}
1159
1160/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 * It's more convoluted than I'd like it to be, but... it's still fairly
1162 * small and for now I'd prefer to have fast path as straight as possible.
1163 * It _is_ time-critical.
1164 */
1165static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +11001166 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167{
Jan Blunck4ac91372008-02-14 19:34:32 -08001168 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001169 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001170 int need_reval = 1;
1171 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001172 int err;
1173
Al Viro3cac2602009-08-13 18:27:43 +04001174 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001175 * Rename seqlock is not required here because in the off chance
1176 * of a false negative due to a concurrent rename, we're going to
1177 * do the non-racy lookup, below.
1178 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001179 if (nd->flags & LOOKUP_RCU) {
1180 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001181 *inode = nd->inode;
1182 dentry = __d_lookup_rcu(parent, name, &seq, inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001183 if (!dentry)
1184 goto unlazy;
1185
Nick Piggin31e6b012011-01-07 17:49:52 +11001186 /* Memory barrier in read_seqcount_begin of child is enough */
1187 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1188 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001189 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001190
Al Viro24643082011-02-15 01:26:22 -05001191 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro5a18fff2011-03-11 04:44:53 -05001192 status = d_revalidate(dentry, nd);
1193 if (unlikely(status <= 0)) {
1194 if (status != -ECHILD)
1195 need_reval = 0;
1196 goto unlazy;
1197 }
Al Viro24643082011-02-15 01:26:22 -05001198 }
Josef Bacik44396f42011-05-31 11:58:49 -04001199 if (unlikely(d_need_lookup(dentry)))
1200 goto unlazy;
Nick Piggin31e6b012011-01-07 17:49:52 +11001201 path->mnt = mnt;
1202 path->dentry = dentry;
Al Virod6e9bd22011-05-27 07:03:15 -04001203 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1204 goto unlazy;
1205 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1206 goto unlazy;
1207 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001208unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001209 if (unlazy_walk(nd, dentry))
1210 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001211 } else {
1212 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001213 }
Al Viro5a18fff2011-03-11 04:44:53 -05001214
Josef Bacik44396f42011-05-31 11:58:49 -04001215 if (dentry && unlikely(d_need_lookup(dentry))) {
1216 dput(dentry);
1217 dentry = NULL;
1218 }
Al Viro5a18fff2011-03-11 04:44:53 -05001219retry:
1220 if (unlikely(!dentry)) {
1221 struct inode *dir = parent->d_inode;
1222 BUG_ON(nd->inode != dir);
1223
1224 mutex_lock(&dir->i_mutex);
1225 dentry = d_lookup(parent, name);
1226 if (likely(!dentry)) {
1227 dentry = d_alloc_and_lookup(parent, name, nd);
1228 if (IS_ERR(dentry)) {
1229 mutex_unlock(&dir->i_mutex);
1230 return PTR_ERR(dentry);
1231 }
1232 /* known good */
1233 need_reval = 0;
1234 status = 1;
Josef Bacik44396f42011-05-31 11:58:49 -04001235 } else if (unlikely(d_need_lookup(dentry))) {
1236 dentry = d_inode_lookup(parent, dentry, nd);
1237 if (IS_ERR(dentry)) {
1238 mutex_unlock(&dir->i_mutex);
1239 return PTR_ERR(dentry);
1240 }
1241 /* known good */
1242 need_reval = 0;
1243 status = 1;
Al Viro5a18fff2011-03-11 04:44:53 -05001244 }
1245 mutex_unlock(&dir->i_mutex);
Al Viro24643082011-02-15 01:26:22 -05001246 }
Al Viro5a18fff2011-03-11 04:44:53 -05001247 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1248 status = d_revalidate(dentry, nd);
1249 if (unlikely(status <= 0)) {
1250 if (status < 0) {
1251 dput(dentry);
1252 return status;
1253 }
1254 if (!d_invalidate(dentry)) {
1255 dput(dentry);
1256 dentry = NULL;
1257 need_reval = 1;
1258 goto retry;
1259 }
1260 }
1261
David Howells9875cf82011-01-14 18:45:21 +00001262 path->mnt = mnt;
1263 path->dentry = dentry;
1264 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001265 if (unlikely(err < 0)) {
1266 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001267 return err;
Ian Kent89312212011-01-18 12:06:10 +08001268 }
David Howells9875cf82011-01-14 18:45:21 +00001269 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
1272
Al Viro52094c82011-02-21 21:34:47 -05001273static inline int may_lookup(struct nameidata *nd)
1274{
1275 if (nd->flags & LOOKUP_RCU) {
1276 int err = exec_permission(nd->inode, IPERM_FLAG_RCU);
1277 if (err != -ECHILD)
1278 return err;
Al Viro19660af2011-03-25 10:32:48 -04001279 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001280 return -ECHILD;
1281 }
1282 return exec_permission(nd->inode, 0);
1283}
1284
Al Viro9856fa12011-03-04 14:22:06 -05001285static inline int handle_dots(struct nameidata *nd, int type)
1286{
1287 if (type == LAST_DOTDOT) {
1288 if (nd->flags & LOOKUP_RCU) {
1289 if (follow_dotdot_rcu(nd))
1290 return -ECHILD;
1291 } else
1292 follow_dotdot(nd);
1293 }
1294 return 0;
1295}
1296
Al Viro951361f2011-03-04 14:44:37 -05001297static void terminate_walk(struct nameidata *nd)
1298{
1299 if (!(nd->flags & LOOKUP_RCU)) {
1300 path_put(&nd->path);
1301 } else {
1302 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001303 if (!(nd->flags & LOOKUP_ROOT))
1304 nd->root.mnt = NULL;
Al Viro951361f2011-03-04 14:44:37 -05001305 rcu_read_unlock();
1306 br_read_unlock(vfsmount_lock);
1307 }
1308}
1309
Al Viroce57dfc2011-03-13 19:58:58 -04001310static inline int walk_component(struct nameidata *nd, struct path *path,
1311 struct qstr *name, int type, int follow)
1312{
1313 struct inode *inode;
1314 int err;
1315 /*
1316 * "." and ".." are special - ".." especially so because it has
1317 * to be able to know about the current root directory and
1318 * parent relationships.
1319 */
1320 if (unlikely(type != LAST_NORM))
1321 return handle_dots(nd, type);
1322 err = do_lookup(nd, name, path, &inode);
1323 if (unlikely(err)) {
1324 terminate_walk(nd);
1325 return err;
1326 }
1327 if (!inode) {
1328 path_to_nameidata(path, nd);
1329 terminate_walk(nd);
1330 return -ENOENT;
1331 }
1332 if (unlikely(inode->i_op->follow_link) && follow) {
Al Viro19660af2011-03-25 10:32:48 -04001333 if (nd->flags & LOOKUP_RCU) {
1334 if (unlikely(unlazy_walk(nd, path->dentry))) {
1335 terminate_walk(nd);
1336 return -ECHILD;
1337 }
1338 }
Al Viroce57dfc2011-03-13 19:58:58 -04001339 BUG_ON(inode != path->dentry->d_inode);
1340 return 1;
1341 }
1342 path_to_nameidata(path, nd);
1343 nd->inode = inode;
1344 return 0;
1345}
1346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347/*
Al Virob3563792011-03-14 21:54:55 -04001348 * This limits recursive symlink follows to 8, while
1349 * limiting consecutive symlinks to 40.
1350 *
1351 * Without that kind of total limit, nasty chains of consecutive
1352 * symlinks can cause almost arbitrarily long lookups.
1353 */
1354static inline int nested_symlink(struct path *path, struct nameidata *nd)
1355{
1356 int res;
1357
Al Virob3563792011-03-14 21:54:55 -04001358 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1359 path_put_conditional(path, nd);
1360 path_put(&nd->path);
1361 return -ELOOP;
1362 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001363 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001364
1365 nd->depth++;
1366 current->link_count++;
1367
1368 do {
1369 struct path link = *path;
1370 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001371
1372 res = follow_link(&link, nd, &cookie);
Al Virob3563792011-03-14 21:54:55 -04001373 if (!res)
1374 res = walk_component(nd, path, &nd->last,
1375 nd->last_type, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001376 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001377 } while (res > 0);
1378
1379 current->link_count--;
1380 nd->depth--;
1381 return res;
1382}
1383
1384/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001386 * This is the basic name resolution function, turning a pathname into
1387 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001389 * Returns 0 and nd will have valid dentry and mnt on success.
1390 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 */
Al Viro6de88d72009-08-09 01:41:57 +04001392static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
1394 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 int err;
1396 unsigned int lookup_flags = nd->flags;
1397
1398 while (*name=='/')
1399 name++;
1400 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001401 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 /* At this point we know we have a real path component. */
1404 for(;;) {
1405 unsigned long hash;
1406 struct qstr this;
1407 unsigned int c;
Al Virofe479a52011-02-22 15:10:03 -05001408 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Trond Myklebustcdce5d62005-10-18 14:20:18 -07001410 nd->flags |= LOOKUP_CONTINUE;
Al Viro52094c82011-02-21 21:34:47 -05001411
1412 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 if (err)
1414 break;
1415
1416 this.name = name;
1417 c = *(const unsigned char *)name;
1418
1419 hash = init_name_hash();
1420 do {
1421 name++;
1422 hash = partial_name_hash(c, hash);
1423 c = *(const unsigned char *)name;
1424 } while (c && (c != '/'));
1425 this.len = name - (const char *) this.name;
1426 this.hash = end_name_hash(hash);
1427
Al Virofe479a52011-02-22 15:10:03 -05001428 type = LAST_NORM;
1429 if (this.name[0] == '.') switch (this.len) {
1430 case 2:
Al Viro16c2cd72011-02-22 15:50:10 -05001431 if (this.name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001432 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001433 nd->flags |= LOOKUP_JUMPED;
1434 }
Al Virofe479a52011-02-22 15:10:03 -05001435 break;
1436 case 1:
1437 type = LAST_DOT;
1438 }
Al Viro5a202bc2011-03-08 14:17:44 -05001439 if (likely(type == LAST_NORM)) {
1440 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001441 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001442 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1443 err = parent->d_op->d_hash(parent, nd->inode,
1444 &this);
1445 if (err < 0)
1446 break;
1447 }
1448 }
Al Virofe479a52011-02-22 15:10:03 -05001449
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 /* remove trailing slashes? */
1451 if (!c)
1452 goto last_component;
1453 while (*++name == '/');
1454 if (!*name)
Al Virob3563792011-03-14 21:54:55 -04001455 goto last_component;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Al Viroce57dfc2011-03-13 19:58:58 -04001457 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1458 if (err < 0)
1459 return err;
Al Virofe479a52011-02-22 15:10:03 -05001460
Al Viroce57dfc2011-03-13 19:58:58 -04001461 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001462 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001464 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001467 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 break;
1469 continue;
1470 /* here ends the main loop */
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -08001473 /* Clear LOOKUP_CONTINUE iff it was previously unset */
1474 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Al Virob3563792011-03-14 21:54:55 -04001475 nd->last = this;
1476 nd->last_type = type;
Al Viro086e1832011-02-22 20:56:27 -05001477 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 }
Al Viro951361f2011-03-04 14:44:37 -05001479 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 return err;
1481}
1482
Al Viro70e9b352011-03-05 21:12:22 -05001483static int path_init(int dfd, const char *name, unsigned int flags,
1484 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001486 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001487 int fput_needed;
1488 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
1490 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001491 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001493 if (flags & LOOKUP_ROOT) {
1494 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001495 if (*name) {
1496 if (!inode->i_op->lookup)
1497 return -ENOTDIR;
1498 retval = inode_permission(inode, MAY_EXEC);
1499 if (retval)
1500 return retval;
1501 }
Al Viro5b6ca022011-03-09 23:04:47 -05001502 nd->path = nd->root;
1503 nd->inode = inode;
1504 if (flags & LOOKUP_RCU) {
1505 br_read_lock(vfsmount_lock);
1506 rcu_read_lock();
1507 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1508 } else {
1509 path_get(&nd->path);
1510 }
1511 return 0;
1512 }
1513
Al Viro2a737872009-04-07 11:49:53 -04001514 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001517 if (flags & LOOKUP_RCU) {
1518 br_read_lock(vfsmount_lock);
1519 rcu_read_lock();
1520 set_root_rcu(nd);
1521 } else {
1522 set_root(nd);
1523 path_get(&nd->root);
1524 }
Al Viro2a737872009-04-07 11:49:53 -04001525 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001526 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001527 if (flags & LOOKUP_RCU) {
1528 struct fs_struct *fs = current->fs;
1529 unsigned seq;
1530
1531 br_read_lock(vfsmount_lock);
1532 rcu_read_lock();
1533
1534 do {
1535 seq = read_seqcount_begin(&fs->seq);
1536 nd->path = fs->pwd;
1537 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1538 } while (read_seqcount_retry(&fs->seq, seq));
1539 } else {
1540 get_fs_pwd(current->fs, &nd->path);
1541 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001542 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001543 struct dentry *dentry;
1544
Al Viro1abf0c72011-03-13 03:51:11 -04001545 file = fget_raw_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001546 retval = -EBADF;
1547 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001548 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001549
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001550 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001551
Al Virof52e0c12011-03-14 18:56:51 -04001552 if (*name) {
1553 retval = -ENOTDIR;
1554 if (!S_ISDIR(dentry->d_inode->i_mode))
1555 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001556
Al Virof52e0c12011-03-14 18:56:51 -04001557 retval = file_permission(file, MAY_EXEC);
1558 if (retval)
1559 goto fput_fail;
1560 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001561
Jan Blunck5dd784d02008-02-14 19:34:38 -08001562 nd->path = file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001563 if (flags & LOOKUP_RCU) {
1564 if (fput_needed)
Al Viro70e9b352011-03-05 21:12:22 -05001565 *fp = file;
Al Viroe41f7d42011-02-22 14:02:58 -05001566 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1567 br_read_lock(vfsmount_lock);
1568 rcu_read_lock();
1569 } else {
1570 path_get(&file->f_path);
1571 fput_light(file, fput_needed);
1572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 }
Al Viroe41f7d42011-02-22 14:02:58 -05001574
Nick Piggin31e6b012011-01-07 17:49:52 +11001575 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001576 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001577
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001578fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001579 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001580out_fail:
1581 return retval;
1582}
1583
Al Virobd92d7f2011-03-14 19:54:59 -04001584static inline int lookup_last(struct nameidata *nd, struct path *path)
1585{
1586 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1587 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1588
1589 nd->flags &= ~LOOKUP_PARENT;
1590 return walk_component(nd, path, &nd->last, nd->last_type,
1591 nd->flags & LOOKUP_FOLLOW);
1592}
1593
Al Viro9b4a9b12009-04-07 11:44:16 -04001594/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001595static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001596 unsigned int flags, struct nameidata *nd)
1597{
Al Viro70e9b352011-03-05 21:12:22 -05001598 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001599 struct path path;
1600 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001601
1602 /*
1603 * Path walking is largely split up into 2 different synchronisation
1604 * schemes, rcu-walk and ref-walk (explained in
1605 * Documentation/filesystems/path-lookup.txt). These share much of the
1606 * path walk code, but some things particularly setup, cleanup, and
1607 * following mounts are sufficiently divergent that functions are
1608 * duplicated. Typically there is a function foo(), and its RCU
1609 * analogue, foo_rcu().
1610 *
1611 * -ECHILD is the error number of choice (just to avoid clashes) that
1612 * is returned if some aspect of an rcu-walk fails. Such an error must
1613 * be handled by restarting a traditional ref-walk (which will always
1614 * be able to complete).
1615 */
Al Virobd92d7f2011-03-14 19:54:59 -04001616 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001617
Al Virobd92d7f2011-03-14 19:54:59 -04001618 if (unlikely(err))
1619 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001620
1621 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001622 err = link_path_walk(name, nd);
1623
1624 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001625 err = lookup_last(nd, &path);
1626 while (err > 0) {
1627 void *cookie;
1628 struct path link = path;
Al Virobd92d7f2011-03-14 19:54:59 -04001629 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001630 err = follow_link(&link, nd, &cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001631 if (!err)
1632 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001633 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001634 }
1635 }
Al Viroee0827c2011-02-21 23:38:09 -05001636
Al Viro9f1fafe2011-03-25 11:00:12 -04001637 if (!err)
1638 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001639
1640 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1641 if (!nd->inode->i_op->lookup) {
1642 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001643 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001644 }
1645 }
Al Viro16c2cd72011-02-22 15:50:10 -05001646
Al Viro70e9b352011-03-05 21:12:22 -05001647 if (base)
1648 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001649
Al Viro5b6ca022011-03-09 23:04:47 -05001650 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001651 path_put(&nd->root);
1652 nd->root.mnt = NULL;
1653 }
Al Virobd92d7f2011-03-14 19:54:59 -04001654 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001655}
Nick Piggin31e6b012011-01-07 17:49:52 +11001656
Al Viroee0827c2011-02-21 23:38:09 -05001657static int do_path_lookup(int dfd, const char *name,
1658 unsigned int flags, struct nameidata *nd)
1659{
1660 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1661 if (unlikely(retval == -ECHILD))
1662 retval = path_lookupat(dfd, name, flags, nd);
1663 if (unlikely(retval == -ESTALE))
1664 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001665
1666 if (likely(!retval)) {
1667 if (unlikely(!audit_dummy_context())) {
1668 if (nd->path.dentry && nd->inode)
1669 audit_inode(name, nd->path.dentry);
1670 }
1671 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001672 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673}
1674
Al Viroc9c6cac2011-02-16 15:15:47 -05001675int kern_path_parent(const char *name, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001676{
Al Viroc9c6cac2011-02-16 15:15:47 -05001677 return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001678}
1679
Al Virod1811462008-08-02 00:49:18 -04001680int kern_path(const char *name, unsigned int flags, struct path *path)
1681{
1682 struct nameidata nd;
1683 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1684 if (!res)
1685 *path = nd.path;
1686 return res;
1687}
1688
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001689/**
1690 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1691 * @dentry: pointer to dentry of the base directory
1692 * @mnt: pointer to vfs mount of the base directory
1693 * @name: pointer to file name
1694 * @flags: lookup flags
1695 * @nd: pointer to nameidata
1696 */
1697int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1698 const char *name, unsigned int flags,
1699 struct nameidata *nd)
1700{
Al Viro5b6ca022011-03-09 23:04:47 -05001701 nd->root.dentry = dentry;
1702 nd->root.mnt = mnt;
1703 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
1704 return do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, nd);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001705}
1706
Christoph Hellwigeead1912007-10-16 23:25:38 -07001707static struct dentry *__lookup_hash(struct qstr *name,
1708 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
Christoph Hellwig81fca442010-10-06 10:47:47 +02001710 struct inode *inode = base->d_inode;
James Morris057f6c02007-04-26 00:12:05 -07001711 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 int err;
1713
Nick Pigginb74c79e2011-01-07 17:49:58 +11001714 err = exec_permission(inode, 0);
Christoph Hellwig81fca442010-10-06 10:47:47 +02001715 if (err)
1716 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001719 * Don't bother with __d_lookup: callers are for creat as
1720 * well as unlink, so a lot of the time it would cost
1721 * a double lookup.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001722 */
Nick Pigginb04f7842010-08-18 04:37:34 +10001723 dentry = d_lookup(base, name);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001724
Josef Bacik44396f42011-05-31 11:58:49 -04001725 if (dentry && d_need_lookup(dentry)) {
1726 /*
1727 * __lookup_hash is called with the parent dir's i_mutex already
1728 * held, so we are good to go here.
1729 */
1730 dentry = d_inode_lookup(base, dentry, nd);
1731 if (IS_ERR(dentry))
1732 return dentry;
1733 }
1734
Nick Pigginfb045ad2011-01-07 17:49:55 +11001735 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE))
Al Viro6e6b1bd2009-08-13 23:38:37 +04001736 dentry = do_revalidate(dentry, nd);
1737
Nick Pigginbaa03892010-08-18 04:37:31 +10001738 if (!dentry)
1739 dentry = d_alloc_and_lookup(base, name, nd);
Al Viro5a202bc2011-03-08 14:17:44 -05001740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 return dentry;
1742}
1743
James Morris057f6c02007-04-26 00:12:05 -07001744/*
1745 * Restricted form of lookup. Doesn't follow links, single-component only,
1746 * needs parent already locked. Doesn't follow mounts.
1747 * SMP-safe.
1748 */
Adrian Bunka244e162006-03-31 02:32:11 -08001749static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
Jan Blunck4ac91372008-02-14 19:34:32 -08001751 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752}
1753
Christoph Hellwigeead1912007-10-16 23:25:38 -07001754/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001755 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001756 * @name: pathname component to lookup
1757 * @base: base directory to lookup from
1758 * @len: maximum length @len should be interpreted to
1759 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001760 * Note that this routine is purely a helper for filesystem usage and should
1761 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001762 * nameidata argument is passed to the filesystem methods and a filesystem
1763 * using this helper needs to be prepared for that.
1764 */
James Morris057f6c02007-04-26 00:12:05 -07001765struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1766{
James Morris057f6c02007-04-26 00:12:05 -07001767 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05001768 unsigned long hash;
1769 unsigned int c;
James Morris057f6c02007-04-26 00:12:05 -07001770
David Woodhouse2f9092e2009-04-20 23:18:37 +01001771 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1772
Al Viro6a96ba52011-03-07 23:49:20 -05001773 this.name = name;
1774 this.len = len;
1775 if (!len)
1776 return ERR_PTR(-EACCES);
1777
1778 hash = init_name_hash();
1779 while (len--) {
1780 c = *(const unsigned char *)name++;
1781 if (c == '/' || c == '\0')
1782 return ERR_PTR(-EACCES);
1783 hash = partial_name_hash(c, hash);
1784 }
1785 this.hash = end_name_hash(hash);
Al Viro5a202bc2011-03-08 14:17:44 -05001786 /*
1787 * See if the low-level filesystem might want
1788 * to use its own hash..
1789 */
1790 if (base->d_flags & DCACHE_OP_HASH) {
1791 int err = base->d_op->d_hash(base, base->d_inode, &this);
1792 if (err < 0)
1793 return ERR_PTR(err);
1794 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07001795
Christoph Hellwig49705b72005-11-08 21:35:06 -08001796 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001797}
1798
Al Viro2d8f3032008-07-22 09:59:21 -04001799int user_path_at(int dfd, const char __user *name, unsigned flags,
1800 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
Al Viro2d8f3032008-07-22 09:59:21 -04001802 struct nameidata nd;
Al Virof52e0c12011-03-14 18:56:51 -04001803 char *tmp = getname_flags(name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001806
1807 BUG_ON(flags & LOOKUP_PARENT);
1808
1809 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001811 if (!err)
1812 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
1814 return err;
1815}
1816
Al Viro2ad94ae2008-07-21 09:32:51 -04001817static int user_path_parent(int dfd, const char __user *path,
1818 struct nameidata *nd, char **name)
1819{
1820 char *s = getname(path);
1821 int error;
1822
1823 if (IS_ERR(s))
1824 return PTR_ERR(s);
1825
1826 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1827 if (error)
1828 putname(s);
1829 else
1830 *name = s;
1831
1832 return error;
1833}
1834
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835/*
1836 * It's inline, so penalty for filesystems that don't use sticky bit is
1837 * minimal.
1838 */
1839static inline int check_sticky(struct inode *dir, struct inode *inode)
1840{
David Howellsda9592e2008-11-14 10:39:05 +11001841 uid_t fsuid = current_fsuid();
1842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 if (!(dir->i_mode & S_ISVTX))
1844 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001845 if (current_user_ns() != inode_userns(inode))
1846 goto other_userns;
David Howellsda9592e2008-11-14 10:39:05 +11001847 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001849 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001851
1852other_userns:
1853 return !ns_capable(inode_userns(inode), CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854}
1855
1856/*
1857 * Check whether we can remove a link victim from directory dir, check
1858 * whether the type of victim is right.
1859 * 1. We can't do it if dir is read-only (done in permission())
1860 * 2. We should have write and exec permissions on dir
1861 * 3. We can't remove anything from append-only dir
1862 * 4. We can't do anything with immutable dir (done in permission())
1863 * 5. If the sticky bit on dir is set we should either
1864 * a. be owner of dir, or
1865 * b. be owner of victim, or
1866 * c. have CAP_FOWNER capability
1867 * 6. If the victim is append-only or immutable we can't do antyhing with
1868 * links pointing to it.
1869 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1870 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1871 * 9. We can't remove a root or mountpoint.
1872 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1873 * nfs_async_unlink().
1874 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001875static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876{
1877 int error;
1878
1879 if (!victim->d_inode)
1880 return -ENOENT;
1881
1882 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001883 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
Al Virof419a2e2008-07-22 00:07:17 -04001885 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 if (error)
1887 return error;
1888 if (IS_APPEND(dir))
1889 return -EPERM;
1890 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001891 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 return -EPERM;
1893 if (isdir) {
1894 if (!S_ISDIR(victim->d_inode->i_mode))
1895 return -ENOTDIR;
1896 if (IS_ROOT(victim))
1897 return -EBUSY;
1898 } else if (S_ISDIR(victim->d_inode->i_mode))
1899 return -EISDIR;
1900 if (IS_DEADDIR(dir))
1901 return -ENOENT;
1902 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1903 return -EBUSY;
1904 return 0;
1905}
1906
1907/* Check whether we can create an object with dentry child in directory
1908 * dir.
1909 * 1. We can't do it if child already exists (open has special treatment for
1910 * this case, but since we are inlined it's OK)
1911 * 2. We can't do it if dir is read-only (done in permission())
1912 * 3. We should have write and exec permissions on dir
1913 * 4. We can't do it if dir is immutable (done in permission())
1914 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001915static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916{
1917 if (child->d_inode)
1918 return -EEXIST;
1919 if (IS_DEADDIR(dir))
1920 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001921 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922}
1923
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924/*
1925 * p1 and p2 should be directories on the same fs.
1926 */
1927struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1928{
1929 struct dentry *p;
1930
1931 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001932 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 return NULL;
1934 }
1935
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001936 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001938 p = d_ancestor(p2, p1);
1939 if (p) {
1940 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1941 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1942 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 }
1944
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001945 p = d_ancestor(p1, p2);
1946 if (p) {
1947 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1948 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1949 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 }
1951
Ingo Molnarf2eace22006-07-03 00:25:05 -07001952 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1953 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 return NULL;
1955}
1956
1957void unlock_rename(struct dentry *p1, struct dentry *p2)
1958{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001959 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001961 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001962 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 }
1964}
1965
1966int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1967 struct nameidata *nd)
1968{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001969 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
1971 if (error)
1972 return error;
1973
Al Viroacfa4382008-12-04 10:06:33 -05001974 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 return -EACCES; /* shouldn't it be ENOSYS? */
1976 mode &= S_IALLUGO;
1977 mode |= S_IFREG;
1978 error = security_inode_create(dir, dentry, mode);
1979 if (error)
1980 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001982 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001983 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 return error;
1985}
1986
Al Viro73d049a2011-03-11 12:08:24 -05001987static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001989 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 struct inode *inode = dentry->d_inode;
1991 int error;
1992
Al Virobcda7652011-03-13 16:42:14 -04001993 /* O_PATH? */
1994 if (!acc_mode)
1995 return 0;
1996
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 if (!inode)
1998 return -ENOENT;
1999
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002000 switch (inode->i_mode & S_IFMT) {
2001 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002003 case S_IFDIR:
2004 if (acc_mode & MAY_WRITE)
2005 return -EISDIR;
2006 break;
2007 case S_IFBLK:
2008 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002009 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002011 /*FALLTHRU*/
2012 case S_IFIFO:
2013 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002015 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002016 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002017
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002018 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002019 if (error)
2020 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002021
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 /*
2023 * An append-only file must be opened in append mode for writing.
2024 */
2025 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002026 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002027 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002029 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 }
2031
2032 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002033 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002034 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
2036 /*
2037 * Ensure there are no outstanding leases on the file.
2038 */
Al Virob65a9cf2009-12-16 06:27:40 -05002039 return break_lease(inode, flag);
Al Viro7715b522009-12-16 03:54:00 -05002040}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Jeff Laytone1181ee2010-12-07 16:19:50 -05002042static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002043{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002044 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002045 struct inode *inode = path->dentry->d_inode;
2046 int error = get_write_access(inode);
2047 if (error)
2048 return error;
2049 /*
2050 * Refuse to truncate files with mandatory locks held on them.
2051 */
2052 error = locks_verify_locked(inode);
2053 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002054 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002055 if (!error) {
2056 error = do_truncate(path->dentry, 0,
2057 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002058 filp);
Al Viro7715b522009-12-16 03:54:00 -05002059 }
2060 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002061 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062}
2063
Dave Hansend57999e2008-02-15 14:37:27 -08002064/*
Dave Hansend57999e2008-02-15 14:37:27 -08002065 * Note that while the flag value (low two bits) for sys_open means:
2066 * 00 - read-only
2067 * 01 - write-only
2068 * 10 - read-write
2069 * 11 - special
2070 * it is changed into
2071 * 00 - no permissions needed
2072 * 01 - read-permission
2073 * 10 - write-permission
2074 * 11 - read-write
2075 * for the internal routines (ie open_namei()/follow_link() etc)
2076 * This is more logical, and also allows the 00 "no perm needed"
2077 * to be used for symlinks (where the permissions are checked
2078 * later).
2079 *
2080*/
2081static inline int open_to_namei_flags(int flag)
2082{
2083 if ((flag+1) & O_ACCMODE)
2084 flag++;
2085 return flag;
2086}
2087
Nick Piggin31e6b012011-01-07 17:49:52 +11002088/*
Al Virofe2d35f2011-03-05 22:58:25 -05002089 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002090 */
Al Virofb1cc552009-12-24 01:58:28 -05002091static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viroc3e380b2011-02-23 13:39:45 -05002092 const struct open_flags *op, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002093{
Al Viroa1e28032009-12-24 02:12:06 -05002094 struct dentry *dir = nd->path.dentry;
Al Viro6c0d46c2011-03-09 00:59:59 -05002095 struct dentry *dentry;
Al Viroca344a892011-03-09 00:36:45 -05002096 int open_flag = op->open_flag;
Al Viro6c0d46c2011-03-09 00:59:59 -05002097 int will_truncate = open_flag & O_TRUNC;
Al Viroca344a892011-03-09 00:36:45 -05002098 int want_write = 0;
Al Virobcda7652011-03-13 16:42:14 -04002099 int acc_mode = op->acc_mode;
Al Virofb1cc552009-12-24 01:58:28 -05002100 struct file *filp;
Al Viro16c2cd72011-02-22 15:50:10 -05002101 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002102
Al Viroc3e380b2011-02-23 13:39:45 -05002103 nd->flags &= ~LOOKUP_PARENT;
2104 nd->flags |= op->intent;
2105
Al Viro1f36f772009-12-26 10:56:19 -05002106 switch (nd->last_type) {
2107 case LAST_DOTDOT:
Neil Brown176306f2010-05-24 16:57:56 +10002108 case LAST_DOT:
Al Virofe2d35f2011-03-05 22:58:25 -05002109 error = handle_dots(nd, nd->last_type);
2110 if (error)
2111 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002112 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002113 case LAST_ROOT:
Al Viro9f1fafe2011-03-25 11:00:12 -04002114 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002115 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002116 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002117 audit_inode(pathname, nd->path.dentry);
Al Viroca344a892011-03-09 00:36:45 -05002118 if (open_flag & O_CREAT) {
Al Virofe2d35f2011-03-05 22:58:25 -05002119 error = -EISDIR;
2120 goto exit;
2121 }
2122 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002123 case LAST_BIND:
Al Viro9f1fafe2011-03-25 11:00:12 -04002124 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002125 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002126 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002127 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002128 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002129 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002130
Al Viroca344a892011-03-09 00:36:45 -05002131 if (!(open_flag & O_CREAT)) {
Al Virobcda7652011-03-13 16:42:14 -04002132 int symlink_ok = 0;
Al Virofe2d35f2011-03-05 22:58:25 -05002133 if (nd->last.name[nd->last.len])
2134 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002135 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2136 symlink_ok = 1;
Al Virofe2d35f2011-03-05 22:58:25 -05002137 /* we _can_ be in RCU mode here */
Al Viroce57dfc2011-03-13 19:58:58 -04002138 error = walk_component(nd, path, &nd->last, LAST_NORM,
2139 !symlink_ok);
2140 if (error < 0)
Al Virofe2d35f2011-03-05 22:58:25 -05002141 return ERR_PTR(error);
Al Viroce57dfc2011-03-13 19:58:58 -04002142 if (error) /* symlink */
Al Virofe2d35f2011-03-05 22:58:25 -05002143 return NULL;
Al Virofe2d35f2011-03-05 22:58:25 -05002144 /* sayonara */
Al Viro9f1fafe2011-03-25 11:00:12 -04002145 error = complete_walk(nd);
2146 if (error)
2147 return ERR_PTR(-ECHILD);
Al Virofe2d35f2011-03-05 22:58:25 -05002148
2149 error = -ENOTDIR;
2150 if (nd->flags & LOOKUP_DIRECTORY) {
Al Viroce57dfc2011-03-13 19:58:58 -04002151 if (!nd->inode->i_op->lookup)
Al Virofe2d35f2011-03-05 22:58:25 -05002152 goto exit;
2153 }
2154 audit_inode(pathname, nd->path.dentry);
2155 goto ok;
2156 }
2157
2158 /* create side of things */
Al Viro9f1fafe2011-03-25 11:00:12 -04002159 error = complete_walk(nd);
2160 if (error)
2161 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002162
2163 audit_inode(pathname, dir);
Al Viro16c2cd72011-02-22 15:50:10 -05002164 error = -EISDIR;
Al Viro1f36f772009-12-26 10:56:19 -05002165 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002166 if (nd->last.name[nd->last.len])
2167 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002168
Al Viroa1e28032009-12-24 02:12:06 -05002169 mutex_lock(&dir->d_inode->i_mutex);
2170
Al Viro6c0d46c2011-03-09 00:59:59 -05002171 dentry = lookup_hash(nd);
2172 error = PTR_ERR(dentry);
2173 if (IS_ERR(dentry)) {
Al Virofb1cc552009-12-24 01:58:28 -05002174 mutex_unlock(&dir->d_inode->i_mutex);
2175 goto exit;
2176 }
2177
Al Viro6c0d46c2011-03-09 00:59:59 -05002178 path->dentry = dentry;
2179 path->mnt = nd->path.mnt;
2180
Al Virofb1cc552009-12-24 01:58:28 -05002181 /* Negative dentry, just create the file */
Al Viro6c0d46c2011-03-09 00:59:59 -05002182 if (!dentry->d_inode) {
2183 int mode = op->mode;
2184 if (!IS_POSIXACL(dir->d_inode))
2185 mode &= ~current_umask();
Al Virofb1cc552009-12-24 01:58:28 -05002186 /*
2187 * This write is needed to ensure that a
Al Viro6c0d46c2011-03-09 00:59:59 -05002188 * rw->ro transition does not occur between
Al Virofb1cc552009-12-24 01:58:28 -05002189 * the time when the file is created and when
2190 * a permanent write count is taken through
2191 * the 'struct file' in nameidata_to_filp().
2192 */
2193 error = mnt_want_write(nd->path.mnt);
2194 if (error)
2195 goto exit_mutex_unlock;
Al Viroca344a892011-03-09 00:36:45 -05002196 want_write = 1;
Al Viro9b44f1b2011-03-09 00:17:27 -05002197 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002198 open_flag &= ~O_TRUNC;
Al Viro6c0d46c2011-03-09 00:59:59 -05002199 will_truncate = 0;
Al Virobcda7652011-03-13 16:42:14 -04002200 acc_mode = MAY_OPEN;
Al Viro6c0d46c2011-03-09 00:59:59 -05002201 error = security_path_mknod(&nd->path, dentry, mode, 0);
2202 if (error)
2203 goto exit_mutex_unlock;
2204 error = vfs_create(dir->d_inode, dentry, mode, nd);
2205 if (error)
2206 goto exit_mutex_unlock;
2207 mutex_unlock(&dir->d_inode->i_mutex);
2208 dput(nd->path.dentry);
2209 nd->path.dentry = dentry;
Al Viroca344a892011-03-09 00:36:45 -05002210 goto common;
Al Virofb1cc552009-12-24 01:58:28 -05002211 }
2212
2213 /*
2214 * It already exists.
2215 */
2216 mutex_unlock(&dir->d_inode->i_mutex);
2217 audit_inode(pathname, path->dentry);
2218
2219 error = -EEXIST;
Al Viroca344a892011-03-09 00:36:45 -05002220 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002221 goto exit_dput;
2222
David Howells9875cf82011-01-14 18:45:21 +00002223 error = follow_managed(path, nd->flags);
2224 if (error < 0)
2225 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002226
2227 error = -ENOENT;
2228 if (!path->dentry->d_inode)
2229 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002230
2231 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002232 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002233
2234 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002235 nd->inode = path->dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05002236 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002237 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002238 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002239ok:
Al Viro6c0d46c2011-03-09 00:59:59 -05002240 if (!S_ISREG(nd->inode->i_mode))
2241 will_truncate = 0;
2242
Al Viro0f9d1a12011-03-09 00:13:14 -05002243 if (will_truncate) {
2244 error = mnt_want_write(nd->path.mnt);
2245 if (error)
2246 goto exit;
Al Viroca344a892011-03-09 00:36:45 -05002247 want_write = 1;
Al Viro0f9d1a12011-03-09 00:13:14 -05002248 }
Al Viroca344a892011-03-09 00:36:45 -05002249common:
Al Virobcda7652011-03-13 16:42:14 -04002250 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002251 if (error)
Al Viro0f9d1a12011-03-09 00:13:14 -05002252 goto exit;
Al Viro0f9d1a12011-03-09 00:13:14 -05002253 filp = nameidata_to_filp(nd);
2254 if (!IS_ERR(filp)) {
2255 error = ima_file_check(filp, op->acc_mode);
2256 if (error) {
2257 fput(filp);
2258 filp = ERR_PTR(error);
2259 }
2260 }
2261 if (!IS_ERR(filp)) {
2262 if (will_truncate) {
2263 error = handle_truncate(filp);
2264 if (error) {
2265 fput(filp);
2266 filp = ERR_PTR(error);
2267 }
2268 }
2269 }
Al Viroca344a892011-03-09 00:36:45 -05002270out:
2271 if (want_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002272 mnt_drop_write(nd->path.mnt);
2273 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002274 return filp;
2275
2276exit_mutex_unlock:
2277 mutex_unlock(&dir->d_inode->i_mutex);
2278exit_dput:
2279 path_put_conditional(path, nd);
2280exit:
Al Viroca344a892011-03-09 00:36:45 -05002281 filp = ERR_PTR(error);
2282 goto out;
Al Virofb1cc552009-12-24 01:58:28 -05002283}
2284
Al Viro13aab422011-02-23 17:54:08 -05002285static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002286 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287{
Al Virofe2d35f2011-03-05 22:58:25 -05002288 struct file *base = NULL;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002289 struct file *filp;
Al Viro9850c052010-01-13 15:01:15 -05002290 struct path path;
Al Viro13aab422011-02-23 17:54:08 -05002291 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002292
2293 filp = get_empty_filp();
2294 if (!filp)
2295 return ERR_PTR(-ENFILE);
2296
Al Viro47c805d2011-02-23 17:44:09 -05002297 filp->f_flags = op->open_flag;
Al Viro73d049a2011-03-11 12:08:24 -05002298 nd->intent.open.file = filp;
2299 nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2300 nd->intent.open.create_mode = op->mode;
Nick Piggin31e6b012011-01-07 17:49:52 +11002301
Al Viro73d049a2011-03-11 12:08:24 -05002302 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002303 if (unlikely(error))
Al Viro13aab422011-02-23 17:54:08 -05002304 goto out_filp;
Nick Piggin31e6b012011-01-07 17:49:52 +11002305
Al Virofe2d35f2011-03-05 22:58:25 -05002306 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002307 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002308 if (unlikely(error))
2309 goto out_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310
Al Viro73d049a2011-03-11 12:08:24 -05002311 filp = do_last(nd, &path, op, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002312 while (unlikely(!filp)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002313 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05002314 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04002315 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05002316 path_put_conditional(&path, nd);
2317 path_put(&nd->path);
Al Viro40b39132011-03-09 16:22:18 -05002318 filp = ERR_PTR(-ELOOP);
2319 break;
2320 }
Al Viro73d049a2011-03-11 12:08:24 -05002321 nd->flags |= LOOKUP_PARENT;
2322 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04002323 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002324 if (unlikely(error))
Al Virof1afe9e2011-02-22 22:27:28 -05002325 filp = ERR_PTR(error);
Al Viroc3e380b2011-02-23 13:39:45 -05002326 else
Al Viro73d049a2011-03-11 12:08:24 -05002327 filp = do_last(nd, &path, op, pathname);
Al Viro574197e2011-03-14 22:20:34 -04002328 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002329 }
Al Viro10fa8e62009-12-26 07:09:49 -05002330out:
Al Viro73d049a2011-03-11 12:08:24 -05002331 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2332 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002333 if (base)
2334 fput(base);
Al Viro73d049a2011-03-11 12:08:24 -05002335 release_open_intent(nd);
Al Viro10fa8e62009-12-26 07:09:49 -05002336 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
Nick Piggin31e6b012011-01-07 17:49:52 +11002338out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002339 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002340 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341}
2342
Al Viro13aab422011-02-23 17:54:08 -05002343struct file *do_filp_open(int dfd, const char *pathname,
2344 const struct open_flags *op, int flags)
2345{
Al Viro73d049a2011-03-11 12:08:24 -05002346 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002347 struct file *filp;
2348
Al Viro73d049a2011-03-11 12:08:24 -05002349 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002350 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002351 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002352 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002353 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002354 return filp;
2355}
2356
Al Viro73d049a2011-03-11 12:08:24 -05002357struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2358 const char *name, const struct open_flags *op, int flags)
2359{
2360 struct nameidata nd;
2361 struct file *file;
2362
2363 nd.root.mnt = mnt;
2364 nd.root.dentry = dentry;
2365
2366 flags |= LOOKUP_ROOT;
2367
Al Virobcda7652011-03-13 16:42:14 -04002368 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002369 return ERR_PTR(-ELOOP);
2370
2371 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2372 if (unlikely(file == ERR_PTR(-ECHILD)))
2373 file = path_openat(-1, name, &nd, op, flags);
2374 if (unlikely(file == ERR_PTR(-ESTALE)))
2375 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2376 return file;
2377}
2378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379/**
2380 * lookup_create - lookup a dentry, creating it if it doesn't exist
2381 * @nd: nameidata info
2382 * @is_dir: directory flag
2383 *
2384 * Simple function to lookup and return a dentry and create it
2385 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002386 *
Jan Blunck4ac91372008-02-14 19:34:32 -08002387 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 */
2389struct dentry *lookup_create(struct nameidata *nd, int is_dir)
2390{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002391 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Jan Blunck4ac91372008-02-14 19:34:32 -08002393 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002394 /*
2395 * Yucky last component or no last component at all?
2396 * (foo/., foo/.., /////)
2397 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 if (nd->last_type != LAST_NORM)
2399 goto fail;
2400 nd->flags &= ~LOOKUP_PARENT;
Al Viro35165862008-08-05 03:00:49 -04002401 nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
ASANO Masahiroa6349042006-08-22 20:06:02 -04002402 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002403
2404 /*
2405 * Do the final lookup.
2406 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08002407 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 if (IS_ERR(dentry))
2409 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002410
Al Viroe9baf6e2008-05-15 04:49:12 -04002411 if (dentry->d_inode)
2412 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002413 /*
2414 * Special case - lookup gave negative, but... we had foo/bar/
2415 * From the vfs_mknod() POV we just have a negative dentry -
2416 * all is fine. Let's be bastards - you had / on the end, you've
2417 * been asking for (non-existent) directory. -ENOENT for you.
2418 */
Al Viroe9baf6e2008-05-15 04:49:12 -04002419 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
2420 dput(dentry);
2421 dentry = ERR_PTR(-ENOENT);
2422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002424eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002426 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427fail:
2428 return dentry;
2429}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07002430EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
2432int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2433{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002434 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
2436 if (error)
2437 return error;
2438
Serge E. Hallyne795b712011-03-23 16:43:25 -07002439 if ((S_ISCHR(mode) || S_ISBLK(mode)) &&
2440 !ns_capable(inode_userns(dir), CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 return -EPERM;
2442
Al Viroacfa4382008-12-04 10:06:33 -05002443 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 return -EPERM;
2445
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002446 error = devcgroup_inode_mknod(mode, dev);
2447 if (error)
2448 return error;
2449
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 error = security_inode_mknod(dir, dentry, mode, dev);
2451 if (error)
2452 return error;
2453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002455 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002456 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 return error;
2458}
2459
Dave Hansen463c3192008-02-15 14:37:57 -08002460static int may_mknod(mode_t mode)
2461{
2462 switch (mode & S_IFMT) {
2463 case S_IFREG:
2464 case S_IFCHR:
2465 case S_IFBLK:
2466 case S_IFIFO:
2467 case S_IFSOCK:
2468 case 0: /* zero mode translates to S_IFREG */
2469 return 0;
2470 case S_IFDIR:
2471 return -EPERM;
2472 default:
2473 return -EINVAL;
2474 }
2475}
2476
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002477SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2478 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479{
Al Viro2ad94ae2008-07-21 09:32:51 -04002480 int error;
2481 char *tmp;
2482 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 struct nameidata nd;
2484
2485 if (S_ISDIR(mode))
2486 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
Al Viro2ad94ae2008-07-21 09:32:51 -04002488 error = user_path_parent(dfd, filename, &nd, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002490 return error;
2491
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 dentry = lookup_create(&nd, 0);
Dave Hansen463c3192008-02-15 14:37:57 -08002493 if (IS_ERR(dentry)) {
2494 error = PTR_ERR(dentry);
2495 goto out_unlock;
2496 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002497 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002498 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002499 error = may_mknod(mode);
2500 if (error)
2501 goto out_dput;
2502 error = mnt_want_write(nd.path.mnt);
2503 if (error)
2504 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002505 error = security_path_mknod(&nd.path, dentry, mode, dev);
2506 if (error)
2507 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002508 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08002510 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 break;
2512 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002513 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 new_decode_dev(dev));
2515 break;
2516 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002517 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002520out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002521 mnt_drop_write(nd.path.mnt);
2522out_dput:
2523 dput(dentry);
2524out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002525 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002526 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 putname(tmp);
2528
2529 return error;
2530}
2531
Heiko Carstens3480b252009-01-14 14:14:16 +01002532SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002533{
2534 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2535}
2536
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2538{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002539 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
2541 if (error)
2542 return error;
2543
Al Viroacfa4382008-12-04 10:06:33 -05002544 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 return -EPERM;
2546
2547 mode &= (S_IRWXUGO|S_ISVTX);
2548 error = security_inode_mkdir(dir, dentry, mode);
2549 if (error)
2550 return error;
2551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002553 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002554 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 return error;
2556}
2557
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002558SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559{
2560 int error = 0;
2561 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002562 struct dentry *dentry;
2563 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Al Viro2ad94ae2008-07-21 09:32:51 -04002565 error = user_path_parent(dfd, pathname, &nd, &tmp);
2566 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002567 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568
Dave Hansen6902d922006-09-30 23:29:01 -07002569 dentry = lookup_create(&nd, 1);
2570 error = PTR_ERR(dentry);
2571 if (IS_ERR(dentry))
2572 goto out_unlock;
2573
Jan Blunck4ac91372008-02-14 19:34:32 -08002574 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002575 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002576 error = mnt_want_write(nd.path.mnt);
2577 if (error)
2578 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002579 error = security_path_mkdir(&nd.path, dentry, mode);
2580 if (error)
2581 goto out_drop_write;
Jan Blunck4ac91372008-02-14 19:34:32 -08002582 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002583out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002584 mnt_drop_write(nd.path.mnt);
2585out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002586 dput(dentry);
2587out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002588 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002589 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002590 putname(tmp);
2591out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 return error;
2593}
2594
Heiko Carstens3cdad422009-01-14 14:14:22 +01002595SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002596{
2597 return sys_mkdirat(AT_FDCWD, pathname, mode);
2598}
2599
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600/*
Sage Weila71905f2011-05-24 13:06:08 -07002601 * The dentry_unhash() helper will try to drop the dentry early: we
2602 * should have a usage count of 2 if we're the only user of this
2603 * dentry, and if that is true (possibly after pruning the dcache),
2604 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 *
2606 * A low-level filesystem can, if it choses, legally
2607 * do a
2608 *
2609 * if (!d_unhashed(dentry))
2610 * return -EBUSY;
2611 *
2612 * if it cannot handle the case of removing a directory
2613 * that is still in use by something else..
2614 */
2615void dentry_unhash(struct dentry *dentry)
2616{
Vasily Averindc168422006-12-06 20:37:07 -08002617 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 spin_lock(&dentry->d_lock);
Sage Weil64252c72011-05-24 13:06:05 -07002619 if (dentry->d_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 __d_drop(dentry);
2621 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622}
2623
2624int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2625{
2626 int error = may_delete(dir, dentry, 1);
2627
2628 if (error)
2629 return error;
2630
Al Viroacfa4382008-12-04 10:06:33 -05002631 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 return -EPERM;
2633
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002634 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
Sage Weil912dbc12011-05-24 13:06:11 -07002636 error = -EBUSY;
2637 if (d_mountpoint(dentry))
2638 goto out;
2639
2640 error = security_inode_rmdir(dir, dentry);
2641 if (error)
2642 goto out;
2643
Sage Weil3cebde22011-05-29 21:20:59 -07002644 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07002645 error = dir->i_op->rmdir(dir, dentry);
2646 if (error)
2647 goto out;
2648
2649 dentry->d_inode->i_flags |= S_DEAD;
2650 dont_mount(dentry);
2651
2652out:
2653 mutex_unlock(&dentry->d_inode->i_mutex);
2654 if (!error)
2655 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 return error;
2657}
2658
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002659static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660{
2661 int error = 0;
2662 char * name;
2663 struct dentry *dentry;
2664 struct nameidata nd;
2665
Al Viro2ad94ae2008-07-21 09:32:51 -04002666 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002668 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
2670 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002671 case LAST_DOTDOT:
2672 error = -ENOTEMPTY;
2673 goto exit1;
2674 case LAST_DOT:
2675 error = -EINVAL;
2676 goto exit1;
2677 case LAST_ROOT:
2678 error = -EBUSY;
2679 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002681
2682 nd.flags &= ~LOOKUP_PARENT;
2683
Jan Blunck4ac91372008-02-14 19:34:32 -08002684 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002685 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002687 if (IS_ERR(dentry))
2688 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002689 if (!dentry->d_inode) {
2690 error = -ENOENT;
2691 goto exit3;
2692 }
Dave Hansen06227532008-02-15 14:37:34 -08002693 error = mnt_want_write(nd.path.mnt);
2694 if (error)
2695 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002696 error = security_path_rmdir(&nd.path, dentry);
2697 if (error)
2698 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002699 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002700exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002701 mnt_drop_write(nd.path.mnt);
2702exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002703 dput(dentry);
2704exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002705 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002707 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 putname(name);
2709 return error;
2710}
2711
Heiko Carstens3cdad422009-01-14 14:14:22 +01002712SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002713{
2714 return do_rmdir(AT_FDCWD, pathname);
2715}
2716
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717int vfs_unlink(struct inode *dir, struct dentry *dentry)
2718{
2719 int error = may_delete(dir, dentry, 0);
2720
2721 if (error)
2722 return error;
2723
Al Viroacfa4382008-12-04 10:06:33 -05002724 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725 return -EPERM;
2726
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002727 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 if (d_mountpoint(dentry))
2729 error = -EBUSY;
2730 else {
2731 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002732 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002734 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002735 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002738 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
2740 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2741 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002742 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 }
Robert Love0eeca282005-07-12 17:06:03 -04002745
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 return error;
2747}
2748
2749/*
2750 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002751 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 * writeout happening, and we don't want to prevent access to the directory
2753 * while waiting on the I/O.
2754 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002755static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756{
Al Viro2ad94ae2008-07-21 09:32:51 -04002757 int error;
2758 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 struct dentry *dentry;
2760 struct nameidata nd;
2761 struct inode *inode = NULL;
2762
Al Viro2ad94ae2008-07-21 09:32:51 -04002763 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002765 return error;
2766
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 error = -EISDIR;
2768 if (nd.last_type != LAST_NORM)
2769 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002770
2771 nd.flags &= ~LOOKUP_PARENT;
2772
Jan Blunck4ac91372008-02-14 19:34:32 -08002773 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002774 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 error = PTR_ERR(dentry);
2776 if (!IS_ERR(dentry)) {
2777 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03002778 if (nd.last.name[nd.last.len])
2779 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 inode = dentry->d_inode;
Török Edwin50338b82011-06-16 00:06:14 +03002781 if (!inode)
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002782 goto slashes;
2783 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002784 error = mnt_want_write(nd.path.mnt);
2785 if (error)
2786 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002787 error = security_path_unlink(&nd.path, dentry);
2788 if (error)
2789 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002790 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002791exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002792 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 exit2:
2794 dput(dentry);
2795 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002796 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 if (inode)
2798 iput(inode); /* truncate the inode here */
2799exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002800 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 putname(name);
2802 return error;
2803
2804slashes:
2805 error = !dentry->d_inode ? -ENOENT :
2806 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2807 goto exit2;
2808}
2809
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002810SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002811{
2812 if ((flag & ~AT_REMOVEDIR) != 0)
2813 return -EINVAL;
2814
2815 if (flag & AT_REMOVEDIR)
2816 return do_rmdir(dfd, pathname);
2817
2818 return do_unlinkat(dfd, pathname);
2819}
2820
Heiko Carstens3480b252009-01-14 14:14:16 +01002821SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002822{
2823 return do_unlinkat(AT_FDCWD, pathname);
2824}
2825
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002826int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002828 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829
2830 if (error)
2831 return error;
2832
Al Viroacfa4382008-12-04 10:06:33 -05002833 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 return -EPERM;
2835
2836 error = security_inode_symlink(dir, dentry, oldname);
2837 if (error)
2838 return error;
2839
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002841 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002842 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 return error;
2844}
2845
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002846SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2847 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848{
Al Viro2ad94ae2008-07-21 09:32:51 -04002849 int error;
2850 char *from;
2851 char *to;
Dave Hansen6902d922006-09-30 23:29:01 -07002852 struct dentry *dentry;
2853 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
2855 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002856 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002858
2859 error = user_path_parent(newdfd, newname, &nd, &to);
2860 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002861 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
Dave Hansen6902d922006-09-30 23:29:01 -07002863 dentry = lookup_create(&nd, 0);
2864 error = PTR_ERR(dentry);
2865 if (IS_ERR(dentry))
2866 goto out_unlock;
2867
Dave Hansen75c3f292008-02-15 14:37:45 -08002868 error = mnt_want_write(nd.path.mnt);
2869 if (error)
2870 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002871 error = security_path_symlink(&nd.path, dentry, from);
2872 if (error)
2873 goto out_drop_write;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002874 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002875out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002876 mnt_drop_write(nd.path.mnt);
2877out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002878 dput(dentry);
2879out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002880 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002881 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002882 putname(to);
2883out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 putname(from);
2885 return error;
2886}
2887
Heiko Carstens3480b252009-01-14 14:14:16 +01002888SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002889{
2890 return sys_symlinkat(oldname, AT_FDCWD, newname);
2891}
2892
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2894{
2895 struct inode *inode = old_dentry->d_inode;
2896 int error;
2897
2898 if (!inode)
2899 return -ENOENT;
2900
Miklos Szeredia95164d2008-07-30 15:08:48 +02002901 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 if (error)
2903 return error;
2904
2905 if (dir->i_sb != inode->i_sb)
2906 return -EXDEV;
2907
2908 /*
2909 * A link to an append-only or immutable file cannot be created.
2910 */
2911 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2912 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05002913 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002915 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 return -EPERM;
2917
2918 error = security_inode_link(old_dentry, dir, new_dentry);
2919 if (error)
2920 return error;
2921
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002922 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05302923 /* Make sure we don't allow creating hardlink to an unlinked file */
2924 if (inode->i_nlink == 0)
2925 error = -ENOENT;
2926 else
2927 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002928 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002929 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002930 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 return error;
2932}
2933
2934/*
2935 * Hardlinks are often used in delicate situations. We avoid
2936 * security-related surprises by not following symlinks on the
2937 * newname. --KAB
2938 *
2939 * We don't follow them on the oldname either to be compatible
2940 * with linux 2.0, and to avoid hard-linking to directories
2941 * and other special files. --ADM
2942 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002943SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2944 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945{
2946 struct dentry *new_dentry;
Al Viro2d8f3032008-07-22 09:59:21 -04002947 struct nameidata nd;
2948 struct path old_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302949 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 int error;
Al Viro2ad94ae2008-07-21 09:32:51 -04002951 char *to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302953 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002954 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302955 /*
2956 * To use null names we require CAP_DAC_READ_SEARCH
2957 * This ensures that not everyone will be able to create
2958 * handlink using the passed filedescriptor.
2959 */
2960 if (flags & AT_EMPTY_PATH) {
2961 if (!capable(CAP_DAC_READ_SEARCH))
2962 return -ENOENT;
2963 how = LOOKUP_EMPTY;
2964 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002965
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302966 if (flags & AT_SYMLINK_FOLLOW)
2967 how |= LOOKUP_FOLLOW;
2968
2969 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002971 return error;
2972
2973 error = user_path_parent(newdfd, newname, &nd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 if (error)
2975 goto out;
2976 error = -EXDEV;
Al Viro2d8f3032008-07-22 09:59:21 -04002977 if (old_path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 goto out_release;
2979 new_dentry = lookup_create(&nd, 0);
2980 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002981 if (IS_ERR(new_dentry))
2982 goto out_unlock;
Dave Hansen75c3f292008-02-15 14:37:45 -08002983 error = mnt_want_write(nd.path.mnt);
2984 if (error)
2985 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002986 error = security_path_link(old_path.dentry, &nd.path, new_dentry);
2987 if (error)
2988 goto out_drop_write;
Al Viro2d8f3032008-07-22 09:59:21 -04002989 error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002990out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002991 mnt_drop_write(nd.path.mnt);
2992out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002993 dput(new_dentry);
2994out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002995 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08002997 path_put(&nd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002998 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999out:
Al Viro2d8f3032008-07-22 09:59:21 -04003000 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001
3002 return error;
3003}
3004
Heiko Carstens3480b252009-01-14 14:14:16 +01003005SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003006{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003007 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003008}
3009
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010/*
3011 * The worst of all namespace operations - renaming directory. "Perverted"
3012 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3013 * Problems:
3014 * a) we can get into loop creation. Check is done in is_subdir().
3015 * b) race potential - two innocent renames can create a loop together.
3016 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003017 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 * story.
3019 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003020 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 * whether the target exists). Solution: try to be smart with locking
3022 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003023 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 * move will be locked. Thus we can rank directories by the tree
3025 * (ancestors first) and rank all non-directories after them.
3026 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003027 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 * HOWEVER, it relies on the assumption that any object with ->lookup()
3029 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3030 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07003031 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003032 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003034 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 * locking].
3036 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07003037static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3038 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039{
3040 int error = 0;
Sage Weil9055cba2011-05-24 13:06:12 -07003041 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
3043 /*
3044 * If we are going to change the parent - check write permissions,
3045 * we'll need to flip '..'.
3046 */
3047 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04003048 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 if (error)
3050 return error;
3051 }
3052
3053 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3054 if (error)
3055 return error;
3056
Al Virod83c49f2010-04-30 17:17:09 -04003057 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003058 mutex_lock(&target->i_mutex);
Sage Weil9055cba2011-05-24 13:06:12 -07003059
3060 error = -EBUSY;
3061 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3062 goto out;
3063
Sage Weil3cebde22011-05-29 21:20:59 -07003064 if (target)
3065 shrink_dcache_parent(new_dentry);
Sage Weil9055cba2011-05-24 13:06:12 -07003066 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3067 if (error)
3068 goto out;
3069
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 if (target) {
Sage Weil9055cba2011-05-24 13:06:12 -07003071 target->i_flags |= S_DEAD;
3072 dont_mount(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 }
Sage Weil9055cba2011-05-24 13:06:12 -07003074out:
3075 if (target)
3076 mutex_unlock(&target->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003077 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003078 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3079 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 return error;
3081}
3082
Adrian Bunk75c96f82005-05-05 16:16:09 -07003083static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3084 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085{
Sage Weil51892bb2011-05-24 13:06:13 -07003086 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 int error;
3088
3089 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3090 if (error)
3091 return error;
3092
3093 dget(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003095 mutex_lock(&target->i_mutex);
Sage Weil51892bb2011-05-24 13:06:13 -07003096
3097 error = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
Sage Weil51892bb2011-05-24 13:06:13 -07003099 goto out;
3100
3101 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3102 if (error)
3103 goto out;
3104
3105 if (target)
3106 dont_mount(new_dentry);
3107 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3108 d_move(old_dentry, new_dentry);
3109out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003111 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 dput(new_dentry);
3113 return error;
3114}
3115
3116int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3117 struct inode *new_dir, struct dentry *new_dentry)
3118{
3119 int error;
3120 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003121 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
3123 if (old_dentry->d_inode == new_dentry->d_inode)
3124 return 0;
3125
3126 error = may_delete(old_dir, old_dentry, is_dir);
3127 if (error)
3128 return error;
3129
3130 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003131 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 else
3133 error = may_delete(new_dir, new_dentry, is_dir);
3134 if (error)
3135 return error;
3136
Al Viroacfa4382008-12-04 10:06:33 -05003137 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 return -EPERM;
3139
Robert Love0eeca282005-07-12 17:06:03 -04003140 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3141
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 if (is_dir)
3143 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3144 else
3145 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003146 if (!error)
3147 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003148 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003149 fsnotify_oldname_free(old_name);
3150
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 return error;
3152}
3153
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003154SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3155 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156{
Al Viro2ad94ae2008-07-21 09:32:51 -04003157 struct dentry *old_dir, *new_dir;
3158 struct dentry *old_dentry, *new_dentry;
3159 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003161 char *from;
3162 char *to;
3163 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164
Al Viro2ad94ae2008-07-21 09:32:51 -04003165 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 if (error)
3167 goto exit;
3168
Al Viro2ad94ae2008-07-21 09:32:51 -04003169 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 if (error)
3171 goto exit1;
3172
3173 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003174 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 goto exit2;
3176
Jan Blunck4ac91372008-02-14 19:34:32 -08003177 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 error = -EBUSY;
3179 if (oldnd.last_type != LAST_NORM)
3180 goto exit2;
3181
Jan Blunck4ac91372008-02-14 19:34:32 -08003182 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 if (newnd.last_type != LAST_NORM)
3184 goto exit2;
3185
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003186 oldnd.flags &= ~LOOKUP_PARENT;
3187 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003188 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003189
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 trap = lock_rename(new_dir, old_dir);
3191
Christoph Hellwig49705b72005-11-08 21:35:06 -08003192 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 error = PTR_ERR(old_dentry);
3194 if (IS_ERR(old_dentry))
3195 goto exit3;
3196 /* source must exist */
3197 error = -ENOENT;
3198 if (!old_dentry->d_inode)
3199 goto exit4;
3200 /* unless the source is a directory trailing slashes give -ENOTDIR */
3201 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3202 error = -ENOTDIR;
3203 if (oldnd.last.name[oldnd.last.len])
3204 goto exit4;
3205 if (newnd.last.name[newnd.last.len])
3206 goto exit4;
3207 }
3208 /* source should not be ancestor of target */
3209 error = -EINVAL;
3210 if (old_dentry == trap)
3211 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003212 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 error = PTR_ERR(new_dentry);
3214 if (IS_ERR(new_dentry))
3215 goto exit4;
3216 /* target should not be an ancestor of source */
3217 error = -ENOTEMPTY;
3218 if (new_dentry == trap)
3219 goto exit5;
3220
Dave Hansen9079b1e2008-02-15 14:37:49 -08003221 error = mnt_want_write(oldnd.path.mnt);
3222 if (error)
3223 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003224 error = security_path_rename(&oldnd.path, old_dentry,
3225 &newnd.path, new_dentry);
3226 if (error)
3227 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 error = vfs_rename(old_dir->d_inode, old_dentry,
3229 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003230exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003231 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232exit5:
3233 dput(new_dentry);
3234exit4:
3235 dput(old_dentry);
3236exit3:
3237 unlock_rename(new_dir, old_dir);
3238exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003239 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003240 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003242 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003244exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 return error;
3246}
3247
Heiko Carstensa26eab22009-01-14 14:14:17 +01003248SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003249{
3250 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3251}
3252
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3254{
3255 int len;
3256
3257 len = PTR_ERR(link);
3258 if (IS_ERR(link))
3259 goto out;
3260
3261 len = strlen(link);
3262 if (len > (unsigned) buflen)
3263 len = buflen;
3264 if (copy_to_user(buffer, link, len))
3265 len = -EFAULT;
3266out:
3267 return len;
3268}
3269
3270/*
3271 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3272 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3273 * using) it for any given inode is up to filesystem.
3274 */
3275int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3276{
3277 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003278 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003279 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003280
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003282 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003283 if (IS_ERR(cookie))
3284 return PTR_ERR(cookie);
3285
3286 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3287 if (dentry->d_inode->i_op->put_link)
3288 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3289 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290}
3291
3292int vfs_follow_link(struct nameidata *nd, const char *link)
3293{
3294 return __vfs_follow_link(nd, link);
3295}
3296
3297/* get the link contents into pagecache */
3298static char *page_getlink(struct dentry * dentry, struct page **ppage)
3299{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003300 char *kaddr;
3301 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003303 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003305 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003307 kaddr = kmap(page);
3308 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3309 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310}
3311
3312int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3313{
3314 struct page *page = NULL;
3315 char *s = page_getlink(dentry, &page);
3316 int res = vfs_readlink(dentry,buffer,buflen,s);
3317 if (page) {
3318 kunmap(page);
3319 page_cache_release(page);
3320 }
3321 return res;
3322}
3323
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003324void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003326 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003328 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329}
3330
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003331void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003333 struct page *page = cookie;
3334
3335 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 kunmap(page);
3337 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 }
3339}
3340
Nick Piggin54566b22009-01-04 12:00:53 -08003341/*
3342 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3343 */
3344int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345{
3346 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003347 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003348 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003349 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003351 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3352 if (nofs)
3353 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354
NeilBrown7e53cac2006-03-25 03:07:57 -08003355retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003356 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003357 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003359 goto fail;
3360
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361 kaddr = kmap_atomic(page, KM_USER0);
3362 memcpy(kaddr, symname, len-1);
3363 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07003364
3365 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3366 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 if (err < 0)
3368 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003369 if (err < len-1)
3370 goto retry;
3371
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 mark_inode_dirty(inode);
3373 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374fail:
3375 return err;
3376}
3377
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003378int page_symlink(struct inode *inode, const char *symname, int len)
3379{
3380 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003381 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003382}
3383
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003384const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 .readlink = generic_readlink,
3386 .follow_link = page_follow_link_light,
3387 .put_link = page_put_link,
3388};
3389
Al Viro2d8f3032008-07-22 09:59:21 -04003390EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003391EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392EXPORT_SYMBOL(follow_down);
3393EXPORT_SYMBOL(follow_up);
3394EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3395EXPORT_SYMBOL(getname);
3396EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397EXPORT_SYMBOL(lookup_one_len);
3398EXPORT_SYMBOL(page_follow_link_light);
3399EXPORT_SYMBOL(page_put_link);
3400EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003401EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402EXPORT_SYMBOL(page_symlink);
3403EXPORT_SYMBOL(page_symlink_inode_operations);
Al Viroc9c6cac2011-02-16 15:15:47 -05003404EXPORT_SYMBOL(kern_path_parent);
Al Virod1811462008-08-02 00:49:18 -04003405EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003406EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003407EXPORT_SYMBOL(inode_permission);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -08003408EXPORT_SYMBOL(file_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409EXPORT_SYMBOL(unlock_rename);
3410EXPORT_SYMBOL(vfs_create);
3411EXPORT_SYMBOL(vfs_follow_link);
3412EXPORT_SYMBOL(vfs_link);
3413EXPORT_SYMBOL(vfs_mkdir);
3414EXPORT_SYMBOL(vfs_mknod);
3415EXPORT_SYMBOL(generic_permission);
3416EXPORT_SYMBOL(vfs_readlink);
3417EXPORT_SYMBOL(vfs_rename);
3418EXPORT_SYMBOL(vfs_rmdir);
3419EXPORT_SYMBOL(vfs_symlink);
3420EXPORT_SYMBOL(vfs_unlink);
3421EXPORT_SYMBOL(dentry_unhash);
3422EXPORT_SYMBOL(generic_readlink);