blob: a3431639e166dbd766c0f9eb70c82530aec0110f [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
73 * the name is a symlink pointing to a non-existant name.
74 *
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{
182 umode_t mode = inode->i_mode;
183
184 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
185
186 if (current_fsuid() == inode->i_uid)
187 mode >>= 6;
188 else {
189 if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
Nick Pigginb74c79e2011-01-07 17:49:58 +1100190 int error = check_acl(inode, mask, flags);
191 if (error != -EAGAIN)
192 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700193 }
194
195 if (in_group_p(inode->i_gid))
196 mode >>= 3;
197 }
198
199 /*
200 * If the DACs are ok we don't need any capability check.
201 */
202 if ((mask & ~mode) == 0)
203 return 0;
204 return -EACCES;
205}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
207/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100208 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 * @inode: inode to check access rights for
210 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
211 * @check_acl: optional callback to check for Posix ACLs
Randy Dunlap39191622011-01-08 19:36:21 -0800212 * @flags: IPERM_FLAG_ flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 *
214 * Used to check for read/write/execute permissions on a file.
215 * We use "fsuid" for this, letting us set arbitrary permissions
216 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100217 * are used for other things.
218 *
219 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
220 * request cannot be satisfied (eg. requires blocking or too much complexity).
221 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100223int generic_permission(struct inode *inode, int mask, unsigned int flags,
224 int (*check_acl)(struct inode *inode, int mask, unsigned int flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700226 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 /*
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700229 * Do the basic POSIX ACL permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100231 ret = acl_permission_check(inode, mask, flags, check_acl);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700232 if (ret != -EACCES)
233 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 /*
236 * Read/write DACs are always overridable.
237 * Executable DACs are overridable if at least one exec bit is set.
238 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200239 if (!(mask & MAY_EXEC) || execute_ok(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (capable(CAP_DAC_OVERRIDE))
241 return 0;
242
243 /*
244 * Searching includes executable on directories, else just read.
245 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600246 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
248 if (capable(CAP_DAC_READ_SEARCH))
249 return 0;
250
251 return -EACCES;
252}
253
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200254/**
255 * inode_permission - check for access rights to a given inode
256 * @inode: inode to check permission on
257 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
258 *
259 * Used to check for read/write/execute permissions on an inode.
260 * We use "fsuid" for this, letting us set arbitrary permissions
261 * for filesystem access without changing the "normal" uids which
262 * are used for other things.
263 */
Al Virof419a2e2008-07-22 00:07:17 -0400264int inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
Al Viroe6305c42008-07-15 21:03:57 -0400266 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
268 if (mask & MAY_WRITE) {
Miklos Szeredi22590e42007-10-16 23:27:08 -0700269 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 /*
272 * Nobody gets write access to a read-only fs.
273 */
274 if (IS_RDONLY(inode) &&
275 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
276 return -EROFS;
277
278 /*
279 * Nobody gets write access to an immutable file.
280 */
281 if (IS_IMMUTABLE(inode))
282 return -EACCES;
283 }
284
Al Viroacfa4382008-12-04 10:06:33 -0500285 if (inode->i_op->permission)
Nick Pigginb74c79e2011-01-07 17:49:58 +1100286 retval = inode->i_op->permission(inode, mask, 0);
Miklos Szeredif696a362008-07-31 13:41:58 +0200287 else
Nick Pigginb74c79e2011-01-07 17:49:58 +1100288 retval = generic_permission(inode, mask, 0,
289 inode->i_op->check_acl);
Miklos Szeredif696a362008-07-31 13:41:58 +0200290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (retval)
292 return retval;
293
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700294 retval = devcgroup_inode_permission(inode, mask);
295 if (retval)
296 return retval;
297
Eric Parisd09ca732010-07-23 11:43:57 -0400298 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800301/**
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800302 * file_permission - check for additional access rights to a given file
303 * @file: file to check access rights for
304 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
305 *
306 * Used to check for read/write/execute permissions on an already opened
307 * file.
308 *
309 * Note:
310 * Do not use this function in new code. All access checks should
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200311 * be done using inode_permission().
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800312 */
313int file_permission(struct file *file, int mask)
314{
Al Virof419a2e2008-07-22 00:07:17 -0400315 return inode_permission(file->f_path.dentry->d_inode, mask);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800316}
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318/*
319 * get_write_access() gets write permission for a file.
320 * put_write_access() releases this write permission.
321 * This is used for regular files.
322 * We cannot support write (and maybe mmap read-write shared) accesses and
323 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
324 * can have the following values:
325 * 0: no writers, no VM_DENYWRITE mappings
326 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
327 * > 0: (i_writecount) users are writing to the file.
328 *
329 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
330 * except for the cases where we don't hold i_writecount yet. Then we need to
331 * use {get,deny}_write_access() - these functions check the sign and refuse
332 * to do the change if sign is wrong. Exclusion between them is provided by
333 * the inode->i_lock spinlock.
334 */
335
336int get_write_access(struct inode * inode)
337{
338 spin_lock(&inode->i_lock);
339 if (atomic_read(&inode->i_writecount) < 0) {
340 spin_unlock(&inode->i_lock);
341 return -ETXTBSY;
342 }
343 atomic_inc(&inode->i_writecount);
344 spin_unlock(&inode->i_lock);
345
346 return 0;
347}
348
349int deny_write_access(struct file * file)
350{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800351 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 spin_lock(&inode->i_lock);
354 if (atomic_read(&inode->i_writecount) > 0) {
355 spin_unlock(&inode->i_lock);
356 return -ETXTBSY;
357 }
358 atomic_dec(&inode->i_writecount);
359 spin_unlock(&inode->i_lock);
360
361 return 0;
362}
363
Jan Blunck1d957f92008-02-14 19:34:35 -0800364/**
Jan Blunck5dd784d2008-02-14 19:34:38 -0800365 * path_get - get a reference to a path
366 * @path: path to get the reference to
367 *
368 * Given a path increment the reference count to the dentry and the vfsmount.
369 */
370void path_get(struct path *path)
371{
372 mntget(path->mnt);
373 dget(path->dentry);
374}
375EXPORT_SYMBOL(path_get);
376
377/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800378 * path_put - put a reference to a path
379 * @path: path to put the reference to
380 *
381 * Given a path decrement the reference count to the dentry and the vfsmount.
382 */
383void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384{
Jan Blunck1d957f92008-02-14 19:34:35 -0800385 dput(path->dentry);
386 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
Jan Blunck1d957f92008-02-14 19:34:35 -0800388EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Trond Myklebust834f2a42005-10-18 14:20:16 -0700390/**
Nick Piggin31e6b012011-01-07 17:49:52 +1100391 * nameidata_drop_rcu - drop this nameidata out of rcu-walk
392 * @nd: nameidata pathwalk data to drop
Randy Dunlap39191622011-01-08 19:36:21 -0800393 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100394 *
395 * Path walking has 2 modes, rcu-walk and ref-walk (see
396 * Documentation/filesystems/path-lookup.txt). __drop_rcu* functions attempt
397 * to drop out of rcu-walk mode and take normal reference counts on dentries
398 * and vfsmounts to transition to rcu-walk mode. __drop_rcu* functions take
399 * refcounts at the last known good point before rcu-walk got stuck, so
400 * ref-walk may continue from there. If this is not successful (eg. a seqcount
401 * has changed), then failure is returned and path walk restarts from the
402 * beginning in ref-walk mode.
403 *
404 * nameidata_drop_rcu attempts to drop the current nd->path and nd->root into
405 * ref-walk. Must be called from rcu-walk context.
406 */
407static int nameidata_drop_rcu(struct nameidata *nd)
408{
409 struct fs_struct *fs = current->fs;
410 struct dentry *dentry = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500411 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100412
413 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500414 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
415 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100416 spin_lock(&fs->lock);
417 if (nd->root.mnt != fs->root.mnt ||
418 nd->root.dentry != fs->root.dentry)
419 goto err_root;
420 }
421 spin_lock(&dentry->d_lock);
422 if (!__d_rcu_to_refcount(dentry, nd->seq))
423 goto err;
424 BUG_ON(nd->inode != dentry->d_inode);
425 spin_unlock(&dentry->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500426 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100427 path_get(&nd->root);
428 spin_unlock(&fs->lock);
429 }
430 mntget(nd->path.mnt);
431
432 rcu_read_unlock();
433 br_read_unlock(vfsmount_lock);
434 nd->flags &= ~LOOKUP_RCU;
435 return 0;
436err:
437 spin_unlock(&dentry->d_lock);
438err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500439 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100440 spin_unlock(&fs->lock);
441 return -ECHILD;
442}
443
444/* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing. */
445static inline int nameidata_drop_rcu_maybe(struct nameidata *nd)
446{
447 if (nd->flags & LOOKUP_RCU)
448 return nameidata_drop_rcu(nd);
449 return 0;
450}
451
452/**
453 * nameidata_dentry_drop_rcu - drop nameidata and dentry out of rcu-walk
454 * @nd: nameidata pathwalk data to drop
455 * @dentry: dentry to drop
Randy Dunlap39191622011-01-08 19:36:21 -0800456 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100457 *
458 * nameidata_dentry_drop_rcu attempts to drop the current nd->path and nd->root,
459 * and dentry into ref-walk. @dentry must be a path found by a do_lookup call on
460 * @nd. Must be called from rcu-walk context.
461 */
462static int nameidata_dentry_drop_rcu(struct nameidata *nd, struct dentry *dentry)
463{
464 struct fs_struct *fs = current->fs;
465 struct dentry *parent = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500466 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100467
468 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500469 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
470 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100471 spin_lock(&fs->lock);
472 if (nd->root.mnt != fs->root.mnt ||
473 nd->root.dentry != fs->root.dentry)
474 goto err_root;
475 }
476 spin_lock(&parent->d_lock);
477 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
478 if (!__d_rcu_to_refcount(dentry, nd->seq))
479 goto err;
480 /*
481 * If the sequence check on the child dentry passed, then the child has
482 * not been removed from its parent. This means the parent dentry must
483 * be valid and able to take a reference at this point.
484 */
485 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
486 BUG_ON(!parent->d_count);
487 parent->d_count++;
488 spin_unlock(&dentry->d_lock);
489 spin_unlock(&parent->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500490 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100491 path_get(&nd->root);
492 spin_unlock(&fs->lock);
493 }
494 mntget(nd->path.mnt);
495
496 rcu_read_unlock();
497 br_read_unlock(vfsmount_lock);
498 nd->flags &= ~LOOKUP_RCU;
499 return 0;
500err:
501 spin_unlock(&dentry->d_lock);
502 spin_unlock(&parent->d_lock);
503err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500504 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100505 spin_unlock(&fs->lock);
506 return -ECHILD;
507}
508
509/* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing. */
510static inline int nameidata_dentry_drop_rcu_maybe(struct nameidata *nd, struct dentry *dentry)
511{
Al Viroa7472ba2011-03-04 14:39:30 -0500512 if (nd->flags & LOOKUP_RCU) {
513 if (unlikely(nameidata_dentry_drop_rcu(nd, dentry))) {
514 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -0500515 if (!(nd->flags & LOOKUP_ROOT))
516 nd->root.mnt = NULL;
Al Viroa7472ba2011-03-04 14:39:30 -0500517 rcu_read_unlock();
518 br_read_unlock(vfsmount_lock);
519 return -ECHILD;
520 }
521 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100522 return 0;
523}
524
525/**
526 * nameidata_drop_rcu_last - drop nameidata ending path walk out of rcu-walk
527 * @nd: nameidata pathwalk data to drop
Randy Dunlap39191622011-01-08 19:36:21 -0800528 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100529 *
530 * nameidata_drop_rcu_last attempts to drop the current nd->path into ref-walk.
531 * nd->path should be the final element of the lookup, so nd->root is discarded.
532 * Must be called from rcu-walk context.
533 */
534static int nameidata_drop_rcu_last(struct nameidata *nd)
535{
536 struct dentry *dentry = nd->path.dentry;
537
538 BUG_ON(!(nd->flags & LOOKUP_RCU));
539 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -0500540 if (!(nd->flags & LOOKUP_ROOT))
541 nd->root.mnt = NULL;
Nick Piggin31e6b012011-01-07 17:49:52 +1100542 spin_lock(&dentry->d_lock);
543 if (!__d_rcu_to_refcount(dentry, nd->seq))
544 goto err_unlock;
545 BUG_ON(nd->inode != dentry->d_inode);
546 spin_unlock(&dentry->d_lock);
547
548 mntget(nd->path.mnt);
549
550 rcu_read_unlock();
551 br_read_unlock(vfsmount_lock);
552
553 return 0;
554
555err_unlock:
556 spin_unlock(&dentry->d_lock);
557 rcu_read_unlock();
558 br_read_unlock(vfsmount_lock);
559 return -ECHILD;
560}
561
Nick Piggin31e6b012011-01-07 17:49:52 +1100562/**
Trond Myklebust834f2a42005-10-18 14:20:16 -0700563 * release_open_intent - free up open intent resources
564 * @nd: pointer to nameidata
565 */
566void release_open_intent(struct nameidata *nd)
567{
Linus Torvalds2dab5972011-02-11 15:53:38 -0800568 struct file *file = nd->intent.open.file;
569
570 if (file && !IS_ERR(file)) {
571 if (file->f_path.dentry == NULL)
572 put_filp(file);
573 else
574 fput(file);
575 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700576}
577
Al Virof60aef72011-02-15 01:35:28 -0500578static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
Nick Piggin34286d62011-01-07 17:49:57 +1100579{
Al Virof60aef72011-02-15 01:35:28 -0500580 return dentry->d_op->d_revalidate(dentry, nd);
Nick Piggin34286d62011-01-07 17:49:57 +1100581}
582
Al Virof5e1c1c2011-02-15 01:32:55 -0500583static struct dentry *
Ian Kentbcdc5e02006-09-27 01:50:44 -0700584do_revalidate(struct dentry *dentry, struct nameidata *nd)
585{
Al Virof5e1c1c2011-02-15 01:32:55 -0500586 int status = d_revalidate(dentry, nd);
Ian Kentbcdc5e02006-09-27 01:50:44 -0700587 if (unlikely(status <= 0)) {
588 /*
589 * The dentry failed validation.
590 * If d_revalidate returned 0 attempt to invalidate
591 * the dentry otherwise d_revalidate is asking us
592 * to return a fail status.
593 */
Nick Piggin34286d62011-01-07 17:49:57 +1100594 if (status < 0) {
Al Virof5e1c1c2011-02-15 01:32:55 -0500595 dput(dentry);
Nick Piggin34286d62011-01-07 17:49:57 +1100596 dentry = ERR_PTR(status);
Al Virof5e1c1c2011-02-15 01:32:55 -0500597 } else if (!d_invalidate(dentry)) {
598 dput(dentry);
599 dentry = NULL;
Ian Kentbcdc5e02006-09-27 01:50:44 -0700600 }
601 }
602 return dentry;
603}
604
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605/*
Al Viro16c2cd72011-02-22 15:50:10 -0500606 * handle_reval_path - force revalidation of a dentry
Jeff Layton39159de2009-12-07 12:01:50 -0500607 *
608 * In some situations the path walking code will trust dentries without
609 * revalidating them. This causes problems for filesystems that depend on
610 * d_revalidate to handle file opens (e.g. NFSv4). When FS_REVAL_DOT is set
611 * (which indicates that it's possible for the dentry to go stale), force
612 * a d_revalidate call before proceeding.
613 *
614 * Returns 0 if the revalidation was successful. If the revalidation fails,
615 * either return the error returned by d_revalidate or -ESTALE if the
616 * revalidation it just returned 0. If d_revalidate returns 0, we attempt to
617 * invalidate the dentry. It's up to the caller to handle putting references
618 * to the path if necessary.
619 */
Al Viro16c2cd72011-02-22 15:50:10 -0500620static inline int handle_reval_path(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500621{
Al Viro16c2cd72011-02-22 15:50:10 -0500622 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500623 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500624
Al Viro16c2cd72011-02-22 15:50:10 -0500625 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500626 return 0;
627
Al Viro16c2cd72011-02-22 15:50:10 -0500628 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
629 return 0;
630
631 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
632 return 0;
633
634 /* Note: we do not d_invalidate() */
Nick Piggin34286d62011-01-07 17:49:57 +1100635 status = d_revalidate(dentry, nd);
Jeff Layton39159de2009-12-07 12:01:50 -0500636 if (status > 0)
637 return 0;
638
Al Viro16c2cd72011-02-22 15:50:10 -0500639 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500640 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500641
Jeff Layton39159de2009-12-07 12:01:50 -0500642 return status;
643}
644
645/*
Al Virob75b5082009-12-16 01:01:38 -0500646 * Short-cut version of permission(), for calling on directories
647 * during pathname resolution. Combines parts of permission()
648 * and generic_permission(), and tests ONLY for MAY_EXEC permission.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 *
650 * If appropriate, check DAC only. If not appropriate, or
Al Virob75b5082009-12-16 01:01:38 -0500651 * short-cut DAC fails, then call ->permission() to do more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 * complete permission check.
653 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100654static inline int exec_permission(struct inode *inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700656 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700658 if (inode->i_op->permission) {
Nick Pigginb74c79e2011-01-07 17:49:58 +1100659 ret = inode->i_op->permission(inode, MAY_EXEC, flags);
660 } else {
661 ret = acl_permission_check(inode, MAY_EXEC, flags,
662 inode->i_op->check_acl);
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700663 }
Nick Pigginb74c79e2011-01-07 17:49:58 +1100664 if (likely(!ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 goto ok;
Nick Pigginb74c79e2011-01-07 17:49:58 +1100666 if (ret == -ECHILD)
Nick Piggin31e6b012011-01-07 17:49:52 +1100667 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Linus Torvaldsf1ac9f62009-08-28 10:53:56 -0700669 if (capable(CAP_DAC_OVERRIDE) || capable(CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 goto ok;
671
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700672 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673ok:
Nick Pigginb74c79e2011-01-07 17:49:58 +1100674 return security_inode_exec_permission(inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
Al Viro2a737872009-04-07 11:49:53 -0400677static __always_inline void set_root(struct nameidata *nd)
678{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200679 if (!nd->root.mnt)
680 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400681}
682
Al Viro6de88d72009-08-09 01:41:57 +0400683static int link_path_walk(const char *, struct nameidata *);
684
Nick Piggin31e6b012011-01-07 17:49:52 +1100685static __always_inline void set_root_rcu(struct nameidata *nd)
686{
687 if (!nd->root.mnt) {
688 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100689 unsigned seq;
690
691 do {
692 seq = read_seqcount_begin(&fs->seq);
693 nd->root = fs->root;
694 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100695 }
696}
697
Arjan van de Venf1662352006-01-14 13:21:31 -0800698static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Nick Piggin31e6b012011-01-07 17:49:52 +1100700 int ret;
701
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (IS_ERR(link))
703 goto fail;
704
705 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400706 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800707 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400708 nd->path = nd->root;
709 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500710 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100712 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100713
Nick Piggin31e6b012011-01-07 17:49:52 +1100714 ret = link_path_walk(link, nd);
715 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800717 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 return PTR_ERR(link);
719}
720
Jan Blunck1d957f92008-02-14 19:34:35 -0800721static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700722{
723 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800724 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700725 mntput(path->mnt);
726}
727
Nick Piggin7b9337a2011-01-14 08:42:43 +0000728static inline void path_to_nameidata(const struct path *path,
729 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700730{
Nick Piggin31e6b012011-01-07 17:49:52 +1100731 if (!(nd->flags & LOOKUP_RCU)) {
732 dput(nd->path.dentry);
733 if (nd->path.mnt != path->mnt)
734 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800735 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100736 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800737 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700738}
739
Al Virodef4af32009-12-26 08:37:05 -0500740static __always_inline int
Nick Piggin7b9337a2011-01-14 08:42:43 +0000741__do_follow_link(const struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800742{
743 int error;
Nick Piggin7b9337a2011-01-14 08:42:43 +0000744 struct dentry *dentry = link->dentry;
Ian Kent051d3812006-03-27 01:14:53 -0800745
Al Viro844a3912011-02-15 00:38:26 -0500746 BUG_ON(nd->flags & LOOKUP_RCU);
747
Nick Piggin7b9337a2011-01-14 08:42:43 +0000748 touch_atime(link->mnt, dentry);
Ian Kent051d3812006-03-27 01:14:53 -0800749 nd_set_link(nd, NULL);
750
David Howells87556ef2011-01-14 18:46:46 +0000751 if (link->mnt == nd->path.mnt)
752 mntget(link->mnt);
Nick Piggin31e6b012011-01-07 17:49:52 +1100753
Al Viro36f3b4f2011-02-22 21:24:38 -0500754 error = security_inode_follow_link(link->dentry, nd);
755 if (error) {
756 *p = ERR_PTR(error); /* no ->put_link(), please */
757 path_put(&nd->path);
758 return error;
759 }
760
Al Viro86acdca12009-12-22 23:45:11 -0500761 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500762 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
763 error = PTR_ERR(*p);
764 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800765 char *s = nd_get_link(nd);
766 error = 0;
767 if (s)
768 error = __vfs_follow_link(nd, s);
Al Virobcda7652011-03-13 16:42:14 -0400769 else if (nd->last_type == LAST_BIND) {
Al Viro16c2cd72011-02-22 15:50:10 -0500770 nd->flags |= LOOKUP_JUMPED;
Al Virob21041d2011-03-14 20:01:51 -0400771 nd->inode = nd->path.dentry->d_inode;
772 if (nd->inode->i_op->follow_link) {
Al Virobcda7652011-03-13 16:42:14 -0400773 /* stepped on a _really_ weird one */
774 path_put(&nd->path);
775 error = -ELOOP;
776 }
777 }
Ian Kent051d3812006-03-27 01:14:53 -0800778 }
Ian Kent051d3812006-03-27 01:14:53 -0800779 return error;
780}
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782/*
783 * This limits recursive symlink follows to 8, while
784 * limiting consecutive symlinks to 40.
785 *
786 * Without that kind of total limit, nasty chains of consecutive
787 * symlinks can cause almost arbitrarily long lookups.
788 */
Al Viroce57dfc2011-03-13 19:58:58 -0400789static inline int do_follow_link(struct path *path, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Al Virodef4af32009-12-26 08:37:05 -0500791 void *cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 int err = -ELOOP;
Al Viro844a3912011-02-15 00:38:26 -0500793
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 if (current->link_count >= MAX_NESTED_LINKS)
795 goto loop;
796 if (current->total_link_count >= 40)
797 goto loop;
798 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
799 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 current->link_count++;
801 current->total_link_count++;
802 nd->depth++;
Al Virodef4af32009-12-26 08:37:05 -0500803 err = __do_follow_link(path, nd, &cookie);
804 if (!IS_ERR(cookie) && path->dentry->d_inode->i_op->put_link)
805 path->dentry->d_inode->i_op->put_link(path->dentry, nd, cookie);
Al Viro258fa992009-08-09 01:32:02 +0400806 path_put(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 current->link_count--;
808 nd->depth--;
809 return err;
810loop:
Jan Blunck1d957f92008-02-14 19:34:35 -0800811 path_put_conditional(path, nd);
812 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return err;
814}
815
Nick Piggin31e6b012011-01-07 17:49:52 +1100816static int follow_up_rcu(struct path *path)
817{
818 struct vfsmount *parent;
819 struct dentry *mountpoint;
820
821 parent = path->mnt->mnt_parent;
822 if (parent == path->mnt)
823 return 0;
824 mountpoint = path->mnt->mnt_mountpoint;
825 path->dentry = mountpoint;
826 path->mnt = parent;
827 return 1;
828}
829
Al Virobab77eb2009-04-18 03:26:48 -0400830int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
832 struct vfsmount *parent;
833 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000834
835 br_read_lock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400836 parent = path->mnt->mnt_parent;
837 if (parent == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000838 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 return 0;
840 }
841 mntget(parent);
Al Virobab77eb2009-04-18 03:26:48 -0400842 mountpoint = dget(path->mnt->mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000843 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400844 dput(path->dentry);
845 path->dentry = mountpoint;
846 mntput(path->mnt);
847 path->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return 1;
849}
850
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100851/*
David Howells9875cf82011-01-14 18:45:21 +0000852 * Perform an automount
853 * - return -EISDIR to tell follow_managed() to stop and return the path we
854 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 */
David Howells9875cf82011-01-14 18:45:21 +0000856static int follow_automount(struct path *path, unsigned flags,
857 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100858{
David Howells9875cf82011-01-14 18:45:21 +0000859 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000860 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100861
David Howells9875cf82011-01-14 18:45:21 +0000862 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
863 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700864
David Howells6f45b652011-01-14 18:45:31 +0000865 /* We don't want to mount if someone supplied AT_NO_AUTOMOUNT
866 * and this is the terminal part of the path.
867 */
868 if ((flags & LOOKUP_NO_AUTOMOUNT) && !(flags & LOOKUP_CONTINUE))
869 return -EISDIR; /* we actually want to stop here */
870
David Howells9875cf82011-01-14 18:45:21 +0000871 /* We want to mount if someone is trying to open/create a file of any
872 * type under the mountpoint, wants to traverse through the mountpoint
873 * or wants to open the mounted directory.
874 *
875 * We don't want to mount if someone's just doing a stat and they've
876 * set AT_SYMLINK_NOFOLLOW - unless they're stat'ing a directory and
877 * appended a '/' to the name.
878 */
879 if (!(flags & LOOKUP_FOLLOW) &&
880 !(flags & (LOOKUP_CONTINUE | LOOKUP_DIRECTORY |
881 LOOKUP_OPEN | LOOKUP_CREATE)))
882 return -EISDIR;
883
884 current->total_link_count++;
885 if (current->total_link_count >= 40)
886 return -ELOOP;
887
888 mnt = path->dentry->d_op->d_automount(path);
889 if (IS_ERR(mnt)) {
890 /*
891 * The filesystem is allowed to return -EISDIR here to indicate
892 * it doesn't want to automount. For instance, autofs would do
893 * this so that its userspace daemon can mount on this dentry.
894 *
895 * However, we can only permit this if it's a terminal point in
896 * the path being looked up; if it wasn't then the remainder of
897 * the path is inaccessible and we should say so.
898 */
899 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_CONTINUE))
900 return -EREMOTE;
901 return PTR_ERR(mnt);
902 }
David Howellsea5b7782011-01-14 19:10:03 +0000903
David Howells9875cf82011-01-14 18:45:21 +0000904 if (!mnt) /* mount collision */
905 return 0;
906
Al Viro19a167a2011-01-17 01:35:23 -0500907 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000908
David Howellsea5b7782011-01-14 19:10:03 +0000909 switch (err) {
910 case -EBUSY:
911 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500912 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000913 case 0:
David Howellsea5b7782011-01-14 19:10:03 +0000914 dput(path->dentry);
915 if (*need_mntput)
916 mntput(path->mnt);
917 path->mnt = mnt;
918 path->dentry = dget(mnt->mnt_root);
919 *need_mntput = true;
920 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500921 default:
922 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000923 }
Al Viro19a167a2011-01-17 01:35:23 -0500924
David Howells9875cf82011-01-14 18:45:21 +0000925}
926
927/*
928 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000929 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000930 * - Flagged as mountpoint
931 * - Flagged as automount point
932 *
933 * This may only be called in refwalk mode.
934 *
935 * Serialization is taken care of in namespace.c
936 */
937static int follow_managed(struct path *path, unsigned flags)
938{
939 unsigned managed;
940 bool need_mntput = false;
941 int ret;
942
943 /* Given that we're not holding a lock here, we retain the value in a
944 * local variable for each dentry as we look at it so that we don't see
945 * the components of that value change under us */
946 while (managed = ACCESS_ONCE(path->dentry->d_flags),
947 managed &= DCACHE_MANAGED_DENTRY,
948 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000949 /* Allow the filesystem to manage the transit without i_mutex
950 * being held. */
951 if (managed & DCACHE_MANAGE_TRANSIT) {
952 BUG_ON(!path->dentry->d_op);
953 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +0000954 ret = path->dentry->d_op->d_manage(path->dentry,
955 false, false);
David Howellscc53ce52011-01-14 18:45:26 +0000956 if (ret < 0)
957 return ret == -EISDIR ? 0 : ret;
958 }
959
David Howells9875cf82011-01-14 18:45:21 +0000960 /* Transit to a mounted filesystem. */
961 if (managed & DCACHE_MOUNTED) {
962 struct vfsmount *mounted = lookup_mnt(path);
963 if (mounted) {
964 dput(path->dentry);
965 if (need_mntput)
966 mntput(path->mnt);
967 path->mnt = mounted;
968 path->dentry = dget(mounted->mnt_root);
969 need_mntput = true;
970 continue;
971 }
972
973 /* Something is mounted on this dentry in another
974 * namespace and/or whatever was mounted there in this
975 * namespace got unmounted before we managed to get the
976 * vfsmount_lock */
977 }
978
979 /* Handle an automount point */
980 if (managed & DCACHE_NEED_AUTOMOUNT) {
981 ret = follow_automount(path, flags, &need_mntput);
982 if (ret < 0)
983 return ret == -EISDIR ? 0 : ret;
984 continue;
985 }
986
987 /* We didn't change the current path point */
988 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
David Howells9875cf82011-01-14 18:45:21 +0000990 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991}
992
David Howellscc53ce52011-01-14 18:45:26 +0000993int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
995 struct vfsmount *mounted;
996
Al Viro1c755af2009-04-18 14:06:57 -0400997 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400999 dput(path->dentry);
1000 mntput(path->mnt);
1001 path->mnt = mounted;
1002 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 return 1;
1004 }
1005 return 0;
1006}
1007
David Howells9875cf82011-01-14 18:45:21 +00001008/*
1009 * Skip to top of mountpoint pile in rcuwalk mode. We abort the rcu-walk if we
David Howellscc53ce52011-01-14 18:45:26 +00001010 * meet a managed dentry and we're not walking to "..". True is returned to
David Howells9875cf82011-01-14 18:45:21 +00001011 * continue, false to abort.
1012 */
1013static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
1014 struct inode **inode, bool reverse_transit)
1015{
1016 while (d_mountpoint(path->dentry)) {
1017 struct vfsmount *mounted;
David Howellsab909112011-01-14 18:46:51 +00001018 if (unlikely(path->dentry->d_flags & DCACHE_MANAGE_TRANSIT) &&
1019 !reverse_transit &&
1020 path->dentry->d_op->d_manage(path->dentry, false, true) < 0)
1021 return false;
David Howells9875cf82011-01-14 18:45:21 +00001022 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
1023 if (!mounted)
1024 break;
1025 path->mnt = mounted;
1026 path->dentry = mounted->mnt_root;
1027 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
1028 *inode = path->dentry->d_inode;
1029 }
1030
1031 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1032 return reverse_transit;
1033 return true;
1034}
1035
Nick Piggin31e6b012011-01-07 17:49:52 +11001036static int follow_dotdot_rcu(struct nameidata *nd)
1037{
1038 struct inode *inode = nd->inode;
1039
1040 set_root_rcu(nd);
1041
David Howells9875cf82011-01-14 18:45:21 +00001042 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001043 if (nd->path.dentry == nd->root.dentry &&
1044 nd->path.mnt == nd->root.mnt) {
1045 break;
1046 }
1047 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1048 struct dentry *old = nd->path.dentry;
1049 struct dentry *parent = old->d_parent;
1050 unsigned seq;
1051
1052 seq = read_seqcount_begin(&parent->d_seq);
1053 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -05001054 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +11001055 inode = parent->d_inode;
1056 nd->path.dentry = parent;
1057 nd->seq = seq;
1058 break;
1059 }
1060 if (!follow_up_rcu(&nd->path))
1061 break;
1062 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1063 inode = nd->path.dentry->d_inode;
1064 }
David Howells9875cf82011-01-14 18:45:21 +00001065 __follow_mount_rcu(nd, &nd->path, &inode, true);
Nick Piggin31e6b012011-01-07 17:49:52 +11001066 nd->inode = inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001067 return 0;
Al Viroef7562d2011-03-04 14:35:59 -05001068
1069failed:
1070 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001071 if (!(nd->flags & LOOKUP_ROOT))
1072 nd->root.mnt = NULL;
Al Viroef7562d2011-03-04 14:35:59 -05001073 rcu_read_unlock();
1074 br_read_unlock(vfsmount_lock);
1075 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001076}
1077
David Howells9875cf82011-01-14 18:45:21 +00001078/*
David Howellscc53ce52011-01-14 18:45:26 +00001079 * Follow down to the covering mount currently visible to userspace. At each
1080 * point, the filesystem owning that dentry may be queried as to whether the
1081 * caller is permitted to proceed or not.
1082 *
1083 * Care must be taken as namespace_sem may be held (indicated by mounting_here
1084 * being true).
1085 */
1086int follow_down(struct path *path, bool mounting_here)
1087{
1088 unsigned managed;
1089 int ret;
1090
1091 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1092 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1093 /* Allow the filesystem to manage the transit without i_mutex
1094 * being held.
1095 *
1096 * We indicate to the filesystem if someone is trying to mount
1097 * something here. This gives autofs the chance to deny anyone
1098 * other than its daemon the right to mount on its
1099 * superstructure.
1100 *
1101 * The filesystem may sleep at this point.
1102 */
1103 if (managed & DCACHE_MANAGE_TRANSIT) {
1104 BUG_ON(!path->dentry->d_op);
1105 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001106 ret = path->dentry->d_op->d_manage(
1107 path->dentry, mounting_here, false);
David Howellscc53ce52011-01-14 18:45:26 +00001108 if (ret < 0)
1109 return ret == -EISDIR ? 0 : ret;
1110 }
1111
1112 /* Transit to a mounted filesystem. */
1113 if (managed & DCACHE_MOUNTED) {
1114 struct vfsmount *mounted = lookup_mnt(path);
1115 if (!mounted)
1116 break;
1117 dput(path->dentry);
1118 mntput(path->mnt);
1119 path->mnt = mounted;
1120 path->dentry = dget(mounted->mnt_root);
1121 continue;
1122 }
1123
1124 /* Don't handle automount points here */
1125 break;
1126 }
1127 return 0;
1128}
1129
1130/*
David Howells9875cf82011-01-14 18:45:21 +00001131 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1132 */
1133static void follow_mount(struct path *path)
1134{
1135 while (d_mountpoint(path->dentry)) {
1136 struct vfsmount *mounted = lookup_mnt(path);
1137 if (!mounted)
1138 break;
1139 dput(path->dentry);
1140 mntput(path->mnt);
1141 path->mnt = mounted;
1142 path->dentry = dget(mounted->mnt_root);
1143 }
1144}
1145
Nick Piggin31e6b012011-01-07 17:49:52 +11001146static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
Al Viro2a737872009-04-07 11:49:53 -04001148 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001149
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001151 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Al Viro2a737872009-04-07 11:49:53 -04001153 if (nd->path.dentry == nd->root.dentry &&
1154 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 break;
1156 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001157 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001158 /* rare case of legitimate dget_parent()... */
1159 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 dput(old);
1161 break;
1162 }
Al Viro3088dd72010-01-30 15:47:29 -05001163 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 }
Al Viro79ed0222009-04-18 13:59:41 -04001166 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001167 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168}
1169
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170/*
Nick Pigginbaa03892010-08-18 04:37:31 +10001171 * Allocate a dentry with name and parent, and perform a parent
1172 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1173 * on error. parent->d_inode->i_mutex must be held. d_lookup must
1174 * have verified that no child exists while under i_mutex.
1175 */
1176static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1177 struct qstr *name, struct nameidata *nd)
1178{
1179 struct inode *inode = parent->d_inode;
1180 struct dentry *dentry;
1181 struct dentry *old;
1182
1183 /* Don't create child dentry for a dead directory. */
1184 if (unlikely(IS_DEADDIR(inode)))
1185 return ERR_PTR(-ENOENT);
1186
1187 dentry = d_alloc(parent, name);
1188 if (unlikely(!dentry))
1189 return ERR_PTR(-ENOMEM);
1190
1191 old = inode->i_op->lookup(inode, dentry, nd);
1192 if (unlikely(old)) {
1193 dput(dentry);
1194 dentry = old;
1195 }
1196 return dentry;
1197}
1198
1199/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 * It's more convoluted than I'd like it to be, but... it's still fairly
1201 * small and for now I'd prefer to have fast path as straight as possible.
1202 * It _is_ time-critical.
1203 */
1204static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +11001205 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206{
Jan Blunck4ac91372008-02-14 19:34:32 -08001207 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001208 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001209 int need_reval = 1;
1210 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001211 int err;
1212
Al Viro3cac2602009-08-13 18:27:43 +04001213 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001214 * Rename seqlock is not required here because in the off chance
1215 * of a false negative due to a concurrent rename, we're going to
1216 * do the non-racy lookup, below.
1217 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001218 if (nd->flags & LOOKUP_RCU) {
1219 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001220 *inode = nd->inode;
1221 dentry = __d_lookup_rcu(parent, name, &seq, inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001222 if (!dentry)
1223 goto unlazy;
1224
Nick Piggin31e6b012011-01-07 17:49:52 +11001225 /* Memory barrier in read_seqcount_begin of child is enough */
1226 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1227 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001228 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001229
Al Viro24643082011-02-15 01:26:22 -05001230 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro5a18fff2011-03-11 04:44:53 -05001231 status = d_revalidate(dentry, nd);
1232 if (unlikely(status <= 0)) {
1233 if (status != -ECHILD)
1234 need_reval = 0;
1235 goto unlazy;
1236 }
Al Viro24643082011-02-15 01:26:22 -05001237 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001238 path->mnt = mnt;
1239 path->dentry = dentry;
David Howells9875cf82011-01-14 18:45:21 +00001240 if (likely(__follow_mount_rcu(nd, path, inode, false)))
1241 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001242unlazy:
1243 if (dentry) {
1244 if (nameidata_dentry_drop_rcu(nd, dentry))
1245 return -ECHILD;
1246 } else {
1247 if (nameidata_drop_rcu(nd))
1248 return -ECHILD;
1249 }
1250 } else {
1251 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001252 }
Al Viro5a18fff2011-03-11 04:44:53 -05001253
1254retry:
1255 if (unlikely(!dentry)) {
1256 struct inode *dir = parent->d_inode;
1257 BUG_ON(nd->inode != dir);
1258
1259 mutex_lock(&dir->i_mutex);
1260 dentry = d_lookup(parent, name);
1261 if (likely(!dentry)) {
1262 dentry = d_alloc_and_lookup(parent, name, nd);
1263 if (IS_ERR(dentry)) {
1264 mutex_unlock(&dir->i_mutex);
1265 return PTR_ERR(dentry);
1266 }
1267 /* known good */
1268 need_reval = 0;
1269 status = 1;
1270 }
1271 mutex_unlock(&dir->i_mutex);
Al Viro24643082011-02-15 01:26:22 -05001272 }
Al Viro5a18fff2011-03-11 04:44:53 -05001273 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1274 status = d_revalidate(dentry, nd);
1275 if (unlikely(status <= 0)) {
1276 if (status < 0) {
1277 dput(dentry);
1278 return status;
1279 }
1280 if (!d_invalidate(dentry)) {
1281 dput(dentry);
1282 dentry = NULL;
1283 need_reval = 1;
1284 goto retry;
1285 }
1286 }
1287
David Howells9875cf82011-01-14 18:45:21 +00001288 path->mnt = mnt;
1289 path->dentry = dentry;
1290 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001291 if (unlikely(err < 0)) {
1292 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001293 return err;
Ian Kent89312212011-01-18 12:06:10 +08001294 }
David Howells9875cf82011-01-14 18:45:21 +00001295 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297}
1298
Al Viro52094c82011-02-21 21:34:47 -05001299static inline int may_lookup(struct nameidata *nd)
1300{
1301 if (nd->flags & LOOKUP_RCU) {
1302 int err = exec_permission(nd->inode, IPERM_FLAG_RCU);
1303 if (err != -ECHILD)
1304 return err;
1305 if (nameidata_drop_rcu(nd))
1306 return -ECHILD;
1307 }
1308 return exec_permission(nd->inode, 0);
1309}
1310
Al Viro9856fa12011-03-04 14:22:06 -05001311static inline int handle_dots(struct nameidata *nd, int type)
1312{
1313 if (type == LAST_DOTDOT) {
1314 if (nd->flags & LOOKUP_RCU) {
1315 if (follow_dotdot_rcu(nd))
1316 return -ECHILD;
1317 } else
1318 follow_dotdot(nd);
1319 }
1320 return 0;
1321}
1322
Al Viro951361f2011-03-04 14:44:37 -05001323static void terminate_walk(struct nameidata *nd)
1324{
1325 if (!(nd->flags & LOOKUP_RCU)) {
1326 path_put(&nd->path);
1327 } else {
1328 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001329 if (!(nd->flags & LOOKUP_ROOT))
1330 nd->root.mnt = NULL;
Al Viro951361f2011-03-04 14:44:37 -05001331 rcu_read_unlock();
1332 br_read_unlock(vfsmount_lock);
1333 }
1334}
1335
Al Viroce57dfc2011-03-13 19:58:58 -04001336static inline int walk_component(struct nameidata *nd, struct path *path,
1337 struct qstr *name, int type, int follow)
1338{
1339 struct inode *inode;
1340 int err;
1341 /*
1342 * "." and ".." are special - ".." especially so because it has
1343 * to be able to know about the current root directory and
1344 * parent relationships.
1345 */
1346 if (unlikely(type != LAST_NORM))
1347 return handle_dots(nd, type);
1348 err = do_lookup(nd, name, path, &inode);
1349 if (unlikely(err)) {
1350 terminate_walk(nd);
1351 return err;
1352 }
1353 if (!inode) {
1354 path_to_nameidata(path, nd);
1355 terminate_walk(nd);
1356 return -ENOENT;
1357 }
1358 if (unlikely(inode->i_op->follow_link) && follow) {
1359 if (nameidata_dentry_drop_rcu_maybe(nd, path->dentry))
1360 return -ECHILD;
1361 BUG_ON(inode != path->dentry->d_inode);
1362 return 1;
1363 }
1364 path_to_nameidata(path, nd);
1365 nd->inode = inode;
1366 return 0;
1367}
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369/*
1370 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001371 * This is the basic name resolution function, turning a pathname into
1372 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001374 * Returns 0 and nd will have valid dentry and mnt on success.
1375 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 */
Al Viro6de88d72009-08-09 01:41:57 +04001377static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
1379 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 int err;
1381 unsigned int lookup_flags = nd->flags;
1382
1383 while (*name=='/')
1384 name++;
1385 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001386 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 if (nd->depth)
Trond Myklebustf55eab82006-02-04 23:28:01 -08001389 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 /* At this point we know we have a real path component. */
1392 for(;;) {
1393 unsigned long hash;
1394 struct qstr this;
1395 unsigned int c;
Al Virofe479a52011-02-22 15:10:03 -05001396 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Trond Myklebustcdce5d62005-10-18 14:20:18 -07001398 nd->flags |= LOOKUP_CONTINUE;
Al Viro52094c82011-02-21 21:34:47 -05001399
1400 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 if (err)
1402 break;
1403
1404 this.name = name;
1405 c = *(const unsigned char *)name;
1406
1407 hash = init_name_hash();
1408 do {
1409 name++;
1410 hash = partial_name_hash(c, hash);
1411 c = *(const unsigned char *)name;
1412 } while (c && (c != '/'));
1413 this.len = name - (const char *) this.name;
1414 this.hash = end_name_hash(hash);
1415
Al Virofe479a52011-02-22 15:10:03 -05001416 type = LAST_NORM;
1417 if (this.name[0] == '.') switch (this.len) {
1418 case 2:
Al Viro16c2cd72011-02-22 15:50:10 -05001419 if (this.name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001420 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001421 nd->flags |= LOOKUP_JUMPED;
1422 }
Al Virofe479a52011-02-22 15:10:03 -05001423 break;
1424 case 1:
1425 type = LAST_DOT;
1426 }
Al Viro5a202bc2011-03-08 14:17:44 -05001427 if (likely(type == LAST_NORM)) {
1428 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001429 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001430 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1431 err = parent->d_op->d_hash(parent, nd->inode,
1432 &this);
1433 if (err < 0)
1434 break;
1435 }
1436 }
Al Virofe479a52011-02-22 15:10:03 -05001437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 /* remove trailing slashes? */
1439 if (!c)
1440 goto last_component;
1441 while (*++name == '/');
1442 if (!*name)
1443 goto last_with_slashes;
1444
Al Viroce57dfc2011-03-13 19:58:58 -04001445 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1446 if (err < 0)
1447 return err;
Al Virofe479a52011-02-22 15:10:03 -05001448
Al Viroce57dfc2011-03-13 19:58:58 -04001449 if (err) {
1450 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001452 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001455 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 break;
1457 continue;
1458 /* here ends the main loop */
1459
1460last_with_slashes:
1461 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1462last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -08001463 /* Clear LOOKUP_CONTINUE iff it was previously unset */
1464 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Al Viroce57dfc2011-03-13 19:58:58 -04001465 if (lookup_flags & LOOKUP_PARENT) {
1466 nd->last = this;
1467 nd->last_type = type;
1468 return 0;
1469 }
1470 err = walk_component(nd, &next, &this, type,
1471 lookup_flags & LOOKUP_FOLLOW);
1472 if (err < 0)
1473 return err;
1474 if (err) {
1475 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001477 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001478 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 if (lookup_flags & LOOKUP_DIRECTORY) {
1480 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001481 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 break;
1483 }
Al Viro086e1832011-02-22 20:56:27 -05001484 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 }
Al Viro951361f2011-03-04 14:44:37 -05001486 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 return err;
1488}
1489
Al Viro70e9b352011-03-05 21:12:22 -05001490static int path_init(int dfd, const char *name, unsigned int flags,
1491 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001493 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001494 int fput_needed;
1495 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001498 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001500 if (flags & LOOKUP_ROOT) {
1501 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001502 if (*name) {
1503 if (!inode->i_op->lookup)
1504 return -ENOTDIR;
1505 retval = inode_permission(inode, MAY_EXEC);
1506 if (retval)
1507 return retval;
1508 }
Al Viro5b6ca022011-03-09 23:04:47 -05001509 nd->path = nd->root;
1510 nd->inode = inode;
1511 if (flags & LOOKUP_RCU) {
1512 br_read_lock(vfsmount_lock);
1513 rcu_read_lock();
1514 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1515 } else {
1516 path_get(&nd->path);
1517 }
1518 return 0;
1519 }
1520
Al Viro2a737872009-04-07 11:49:53 -04001521 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001524 if (flags & LOOKUP_RCU) {
1525 br_read_lock(vfsmount_lock);
1526 rcu_read_lock();
1527 set_root_rcu(nd);
1528 } else {
1529 set_root(nd);
1530 path_get(&nd->root);
1531 }
Al Viro2a737872009-04-07 11:49:53 -04001532 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001533 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001534 if (flags & LOOKUP_RCU) {
1535 struct fs_struct *fs = current->fs;
1536 unsigned seq;
1537
1538 br_read_lock(vfsmount_lock);
1539 rcu_read_lock();
1540
1541 do {
1542 seq = read_seqcount_begin(&fs->seq);
1543 nd->path = fs->pwd;
1544 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1545 } while (read_seqcount_retry(&fs->seq, seq));
1546 } else {
1547 get_fs_pwd(current->fs, &nd->path);
1548 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001549 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001550 struct dentry *dentry;
1551
Al Viro1abf0c72011-03-13 03:51:11 -04001552 file = fget_raw_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001553 retval = -EBADF;
1554 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001555 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001556
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001557 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001558
Al Virof52e0c12011-03-14 18:56:51 -04001559 if (*name) {
1560 retval = -ENOTDIR;
1561 if (!S_ISDIR(dentry->d_inode->i_mode))
1562 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001563
Al Virof52e0c12011-03-14 18:56:51 -04001564 retval = file_permission(file, MAY_EXEC);
1565 if (retval)
1566 goto fput_fail;
1567 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001568
Jan Blunck5dd784d2008-02-14 19:34:38 -08001569 nd->path = file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001570 if (flags & LOOKUP_RCU) {
1571 if (fput_needed)
Al Viro70e9b352011-03-05 21:12:22 -05001572 *fp = file;
Al Viroe41f7d42011-02-22 14:02:58 -05001573 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1574 br_read_lock(vfsmount_lock);
1575 rcu_read_lock();
1576 } else {
1577 path_get(&file->f_path);
1578 fput_light(file, fput_needed);
1579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 }
Al Viroe41f7d42011-02-22 14:02:58 -05001581
Nick Piggin31e6b012011-01-07 17:49:52 +11001582 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001583 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001584
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001585fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001586 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001587out_fail:
1588 return retval;
1589}
1590
Al Virobd92d7f2011-03-14 19:54:59 -04001591static inline int lookup_last(struct nameidata *nd, struct path *path)
1592{
1593 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1594 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1595
1596 nd->flags &= ~LOOKUP_PARENT;
1597 return walk_component(nd, path, &nd->last, nd->last_type,
1598 nd->flags & LOOKUP_FOLLOW);
1599}
1600
Al Viro9b4a9b12009-04-07 11:44:16 -04001601/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001602static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001603 unsigned int flags, struct nameidata *nd)
1604{
Al Viro70e9b352011-03-05 21:12:22 -05001605 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001606 struct path path;
1607 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001608
1609 /*
1610 * Path walking is largely split up into 2 different synchronisation
1611 * schemes, rcu-walk and ref-walk (explained in
1612 * Documentation/filesystems/path-lookup.txt). These share much of the
1613 * path walk code, but some things particularly setup, cleanup, and
1614 * following mounts are sufficiently divergent that functions are
1615 * duplicated. Typically there is a function foo(), and its RCU
1616 * analogue, foo_rcu().
1617 *
1618 * -ECHILD is the error number of choice (just to avoid clashes) that
1619 * is returned if some aspect of an rcu-walk fails. Such an error must
1620 * be handled by restarting a traditional ref-walk (which will always
1621 * be able to complete).
1622 */
Al Virobd92d7f2011-03-14 19:54:59 -04001623 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001624
Al Virobd92d7f2011-03-14 19:54:59 -04001625 if (unlikely(err))
1626 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001627
1628 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001629 err = link_path_walk(name, nd);
1630
1631 if (!err && !(flags & LOOKUP_PARENT)) {
1632 int count = 0;
1633 err = lookup_last(nd, &path);
1634 while (err > 0) {
1635 void *cookie;
1636 struct path link = path;
1637 struct inode *inode = link.dentry->d_inode;
1638
1639 if (count++ > 32) {
1640 path_put_conditional(&path, nd);
1641 path_put(&nd->path);
1642 err = -ELOOP;
1643 break;
1644 }
1645 cond_resched();
1646 nd->flags |= LOOKUP_PARENT;
1647 err = __do_follow_link(&link, nd, &cookie);
1648 if (!err)
1649 err = lookup_last(nd, &path);
1650 if (!IS_ERR(cookie) && inode->i_op->put_link)
1651 inode->i_op->put_link(link.dentry, nd, cookie);
1652 path_put(&link);
1653 }
1654 }
Al Viroee0827c2011-02-21 23:38:09 -05001655
1656 if (nd->flags & LOOKUP_RCU) {
Al Viro4455ca62011-03-04 14:28:10 -05001657 /* went all way through without dropping RCU */
Al Virobd92d7f2011-03-14 19:54:59 -04001658 BUG_ON(err);
Al Viro4455ca62011-03-04 14:28:10 -05001659 if (nameidata_drop_rcu_last(nd))
Al Virobd92d7f2011-03-14 19:54:59 -04001660 err = -ECHILD;
Al Viroee0827c2011-02-21 23:38:09 -05001661 }
1662
Al Virobd92d7f2011-03-14 19:54:59 -04001663 if (!err)
1664 err = handle_reval_path(nd);
1665
1666 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1667 if (!nd->inode->i_op->lookup) {
1668 path_put(&nd->path);
1669 return -ENOTDIR;
1670 }
1671 }
Al Viro16c2cd72011-02-22 15:50:10 -05001672
Al Viro70e9b352011-03-05 21:12:22 -05001673 if (base)
1674 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001675
Al Viro5b6ca022011-03-09 23:04:47 -05001676 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001677 path_put(&nd->root);
1678 nd->root.mnt = NULL;
1679 }
Al Virobd92d7f2011-03-14 19:54:59 -04001680 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001681}
Nick Piggin31e6b012011-01-07 17:49:52 +11001682
Al Viroee0827c2011-02-21 23:38:09 -05001683static int do_path_lookup(int dfd, const char *name,
1684 unsigned int flags, struct nameidata *nd)
1685{
1686 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1687 if (unlikely(retval == -ECHILD))
1688 retval = path_lookupat(dfd, name, flags, nd);
1689 if (unlikely(retval == -ESTALE))
1690 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001691
1692 if (likely(!retval)) {
1693 if (unlikely(!audit_dummy_context())) {
1694 if (nd->path.dentry && nd->inode)
1695 audit_inode(name, nd->path.dentry);
1696 }
1697 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001698 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699}
1700
Al Viroc9c6cac2011-02-16 15:15:47 -05001701int kern_path_parent(const char *name, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001702{
Al Viroc9c6cac2011-02-16 15:15:47 -05001703 return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001704}
1705
Al Virod1811462008-08-02 00:49:18 -04001706int kern_path(const char *name, unsigned int flags, struct path *path)
1707{
1708 struct nameidata nd;
1709 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1710 if (!res)
1711 *path = nd.path;
1712 return res;
1713}
1714
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001715/**
1716 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1717 * @dentry: pointer to dentry of the base directory
1718 * @mnt: pointer to vfs mount of the base directory
1719 * @name: pointer to file name
1720 * @flags: lookup flags
1721 * @nd: pointer to nameidata
1722 */
1723int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1724 const char *name, unsigned int flags,
1725 struct nameidata *nd)
1726{
Al Viro5b6ca022011-03-09 23:04:47 -05001727 nd->root.dentry = dentry;
1728 nd->root.mnt = mnt;
1729 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
1730 return do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, nd);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001731}
1732
Christoph Hellwigeead1912007-10-16 23:25:38 -07001733static struct dentry *__lookup_hash(struct qstr *name,
1734 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
Christoph Hellwig81fca442010-10-06 10:47:47 +02001736 struct inode *inode = base->d_inode;
James Morris057f6c02007-04-26 00:12:05 -07001737 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 int err;
1739
Nick Pigginb74c79e2011-01-07 17:49:58 +11001740 err = exec_permission(inode, 0);
Christoph Hellwig81fca442010-10-06 10:47:47 +02001741 if (err)
1742 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743
1744 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001745 * Don't bother with __d_lookup: callers are for creat as
1746 * well as unlink, so a lot of the time it would cost
1747 * a double lookup.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001748 */
Nick Pigginb04f7842010-08-18 04:37:34 +10001749 dentry = d_lookup(base, name);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001750
Nick Pigginfb045ad2011-01-07 17:49:55 +11001751 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE))
Al Viro6e6b1bd2009-08-13 23:38:37 +04001752 dentry = do_revalidate(dentry, nd);
1753
Nick Pigginbaa03892010-08-18 04:37:31 +10001754 if (!dentry)
1755 dentry = d_alloc_and_lookup(base, name, nd);
Al Viro5a202bc2011-03-08 14:17:44 -05001756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 return dentry;
1758}
1759
James Morris057f6c02007-04-26 00:12:05 -07001760/*
1761 * Restricted form of lookup. Doesn't follow links, single-component only,
1762 * needs parent already locked. Doesn't follow mounts.
1763 * SMP-safe.
1764 */
Adrian Bunka244e162006-03-31 02:32:11 -08001765static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
Jan Blunck4ac91372008-02-14 19:34:32 -08001767 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768}
1769
Christoph Hellwigeead1912007-10-16 23:25:38 -07001770/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001771 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001772 * @name: pathname component to lookup
1773 * @base: base directory to lookup from
1774 * @len: maximum length @len should be interpreted to
1775 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001776 * Note that this routine is purely a helper for filesystem usage and should
1777 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001778 * nameidata argument is passed to the filesystem methods and a filesystem
1779 * using this helper needs to be prepared for that.
1780 */
James Morris057f6c02007-04-26 00:12:05 -07001781struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1782{
James Morris057f6c02007-04-26 00:12:05 -07001783 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05001784 unsigned long hash;
1785 unsigned int c;
James Morris057f6c02007-04-26 00:12:05 -07001786
David Woodhouse2f9092e2009-04-20 23:18:37 +01001787 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1788
Al Viro6a96ba52011-03-07 23:49:20 -05001789 this.name = name;
1790 this.len = len;
1791 if (!len)
1792 return ERR_PTR(-EACCES);
1793
1794 hash = init_name_hash();
1795 while (len--) {
1796 c = *(const unsigned char *)name++;
1797 if (c == '/' || c == '\0')
1798 return ERR_PTR(-EACCES);
1799 hash = partial_name_hash(c, hash);
1800 }
1801 this.hash = end_name_hash(hash);
Al Viro5a202bc2011-03-08 14:17:44 -05001802 /*
1803 * See if the low-level filesystem might want
1804 * to use its own hash..
1805 */
1806 if (base->d_flags & DCACHE_OP_HASH) {
1807 int err = base->d_op->d_hash(base, base->d_inode, &this);
1808 if (err < 0)
1809 return ERR_PTR(err);
1810 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07001811
Christoph Hellwig49705b72005-11-08 21:35:06 -08001812 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001813}
1814
Al Viro2d8f3032008-07-22 09:59:21 -04001815int user_path_at(int dfd, const char __user *name, unsigned flags,
1816 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
Al Viro2d8f3032008-07-22 09:59:21 -04001818 struct nameidata nd;
Al Virof52e0c12011-03-14 18:56:51 -04001819 char *tmp = getname_flags(name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001822
1823 BUG_ON(flags & LOOKUP_PARENT);
1824
1825 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001827 if (!err)
1828 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 }
1830 return err;
1831}
1832
Al Viro2ad94ae2008-07-21 09:32:51 -04001833static int user_path_parent(int dfd, const char __user *path,
1834 struct nameidata *nd, char **name)
1835{
1836 char *s = getname(path);
1837 int error;
1838
1839 if (IS_ERR(s))
1840 return PTR_ERR(s);
1841
1842 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1843 if (error)
1844 putname(s);
1845 else
1846 *name = s;
1847
1848 return error;
1849}
1850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851/*
1852 * It's inline, so penalty for filesystems that don't use sticky bit is
1853 * minimal.
1854 */
1855static inline int check_sticky(struct inode *dir, struct inode *inode)
1856{
David Howellsda9592e2008-11-14 10:39:05 +11001857 uid_t fsuid = current_fsuid();
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 if (!(dir->i_mode & S_ISVTX))
1860 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001861 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001863 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 return 0;
1865 return !capable(CAP_FOWNER);
1866}
1867
1868/*
1869 * Check whether we can remove a link victim from directory dir, check
1870 * whether the type of victim is right.
1871 * 1. We can't do it if dir is read-only (done in permission())
1872 * 2. We should have write and exec permissions on dir
1873 * 3. We can't remove anything from append-only dir
1874 * 4. We can't do anything with immutable dir (done in permission())
1875 * 5. If the sticky bit on dir is set we should either
1876 * a. be owner of dir, or
1877 * b. be owner of victim, or
1878 * c. have CAP_FOWNER capability
1879 * 6. If the victim is append-only or immutable we can't do antyhing with
1880 * links pointing to it.
1881 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1882 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1883 * 9. We can't remove a root or mountpoint.
1884 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1885 * nfs_async_unlink().
1886 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001887static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
1889 int error;
1890
1891 if (!victim->d_inode)
1892 return -ENOENT;
1893
1894 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001895 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Al Virof419a2e2008-07-22 00:07:17 -04001897 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 if (error)
1899 return error;
1900 if (IS_APPEND(dir))
1901 return -EPERM;
1902 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001903 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 return -EPERM;
1905 if (isdir) {
1906 if (!S_ISDIR(victim->d_inode->i_mode))
1907 return -ENOTDIR;
1908 if (IS_ROOT(victim))
1909 return -EBUSY;
1910 } else if (S_ISDIR(victim->d_inode->i_mode))
1911 return -EISDIR;
1912 if (IS_DEADDIR(dir))
1913 return -ENOENT;
1914 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1915 return -EBUSY;
1916 return 0;
1917}
1918
1919/* Check whether we can create an object with dentry child in directory
1920 * dir.
1921 * 1. We can't do it if child already exists (open has special treatment for
1922 * this case, but since we are inlined it's OK)
1923 * 2. We can't do it if dir is read-only (done in permission())
1924 * 3. We should have write and exec permissions on dir
1925 * 4. We can't do it if dir is immutable (done in permission())
1926 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001927static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928{
1929 if (child->d_inode)
1930 return -EEXIST;
1931 if (IS_DEADDIR(dir))
1932 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001933 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934}
1935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936/*
1937 * p1 and p2 should be directories on the same fs.
1938 */
1939struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1940{
1941 struct dentry *p;
1942
1943 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001944 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 return NULL;
1946 }
1947
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001948 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001950 p = d_ancestor(p2, p1);
1951 if (p) {
1952 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1953 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1954 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 }
1956
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001957 p = d_ancestor(p1, p2);
1958 if (p) {
1959 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1960 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1961 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 }
1963
Ingo Molnarf2eace22006-07-03 00:25:05 -07001964 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1965 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return NULL;
1967}
1968
1969void unlock_rename(struct dentry *p1, struct dentry *p2)
1970{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001971 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001973 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001974 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
1976}
1977
1978int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1979 struct nameidata *nd)
1980{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001981 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982
1983 if (error)
1984 return error;
1985
Al Viroacfa4382008-12-04 10:06:33 -05001986 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 return -EACCES; /* shouldn't it be ENOSYS? */
1988 mode &= S_IALLUGO;
1989 mode |= S_IFREG;
1990 error = security_inode_create(dir, dentry, mode);
1991 if (error)
1992 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001994 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001995 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 return error;
1997}
1998
Al Viro73d049a2011-03-11 12:08:24 -05001999static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002001 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 struct inode *inode = dentry->d_inode;
2003 int error;
2004
Al Virobcda7652011-03-13 16:42:14 -04002005 /* O_PATH? */
2006 if (!acc_mode)
2007 return 0;
2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 if (!inode)
2010 return -ENOENT;
2011
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002012 switch (inode->i_mode & S_IFMT) {
2013 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002015 case S_IFDIR:
2016 if (acc_mode & MAY_WRITE)
2017 return -EISDIR;
2018 break;
2019 case S_IFBLK:
2020 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002021 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002023 /*FALLTHRU*/
2024 case S_IFIFO:
2025 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002027 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002028 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002029
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002030 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002031 if (error)
2032 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002033
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 /*
2035 * An append-only file must be opened in append mode for writing.
2036 */
2037 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002038 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002039 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002041 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 }
2043
2044 /* O_NOATIME can only be set by the owner or superuser */
Al Viro7715b522009-12-16 03:54:00 -05002045 if (flag & O_NOATIME && !is_owner_or_cap(inode))
2046 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048 /*
2049 * Ensure there are no outstanding leases on the file.
2050 */
Al Virob65a9cf2009-12-16 06:27:40 -05002051 return break_lease(inode, flag);
Al Viro7715b522009-12-16 03:54:00 -05002052}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053
Jeff Laytone1181ee2010-12-07 16:19:50 -05002054static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002055{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002056 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002057 struct inode *inode = path->dentry->d_inode;
2058 int error = get_write_access(inode);
2059 if (error)
2060 return error;
2061 /*
2062 * Refuse to truncate files with mandatory locks held on them.
2063 */
2064 error = locks_verify_locked(inode);
2065 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002066 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002067 if (!error) {
2068 error = do_truncate(path->dentry, 0,
2069 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002070 filp);
Al Viro7715b522009-12-16 03:54:00 -05002071 }
2072 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002073 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074}
2075
Dave Hansend57999e2008-02-15 14:37:27 -08002076/*
Dave Hansend57999e2008-02-15 14:37:27 -08002077 * Note that while the flag value (low two bits) for sys_open means:
2078 * 00 - read-only
2079 * 01 - write-only
2080 * 10 - read-write
2081 * 11 - special
2082 * it is changed into
2083 * 00 - no permissions needed
2084 * 01 - read-permission
2085 * 10 - write-permission
2086 * 11 - read-write
2087 * for the internal routines (ie open_namei()/follow_link() etc)
2088 * This is more logical, and also allows the 00 "no perm needed"
2089 * to be used for symlinks (where the permissions are checked
2090 * later).
2091 *
2092*/
2093static inline int open_to_namei_flags(int flag)
2094{
2095 if ((flag+1) & O_ACCMODE)
2096 flag++;
2097 return flag;
2098}
2099
Nick Piggin31e6b012011-01-07 17:49:52 +11002100/*
Al Virofe2d35f2011-03-05 22:58:25 -05002101 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002102 */
Al Virofb1cc552009-12-24 01:58:28 -05002103static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viroc3e380b2011-02-23 13:39:45 -05002104 const struct open_flags *op, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002105{
Al Viroa1e28032009-12-24 02:12:06 -05002106 struct dentry *dir = nd->path.dentry;
Al Viro6c0d46c2011-03-09 00:59:59 -05002107 struct dentry *dentry;
Al Viroca344a892011-03-09 00:36:45 -05002108 int open_flag = op->open_flag;
Al Viro6c0d46c2011-03-09 00:59:59 -05002109 int will_truncate = open_flag & O_TRUNC;
Al Viroca344a892011-03-09 00:36:45 -05002110 int want_write = 0;
Al Virobcda7652011-03-13 16:42:14 -04002111 int acc_mode = op->acc_mode;
Al Virofb1cc552009-12-24 01:58:28 -05002112 struct file *filp;
Al Viro16c2cd72011-02-22 15:50:10 -05002113 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002114
Al Viroc3e380b2011-02-23 13:39:45 -05002115 nd->flags &= ~LOOKUP_PARENT;
2116 nd->flags |= op->intent;
2117
Al Viro1f36f772009-12-26 10:56:19 -05002118 switch (nd->last_type) {
2119 case LAST_DOTDOT:
Neil Brown176306f2010-05-24 16:57:56 +10002120 case LAST_DOT:
Al Virofe2d35f2011-03-05 22:58:25 -05002121 error = handle_dots(nd, nd->last_type);
2122 if (error)
2123 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002124 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002125 case LAST_ROOT:
Al Virofe2d35f2011-03-05 22:58:25 -05002126 if (nd->flags & LOOKUP_RCU) {
2127 if (nameidata_drop_rcu_last(nd))
2128 return ERR_PTR(-ECHILD);
2129 }
Al Viro16c2cd72011-02-22 15:50:10 -05002130 error = handle_reval_path(nd);
2131 if (error)
2132 goto exit;
Al Virofe2d35f2011-03-05 22:58:25 -05002133 audit_inode(pathname, nd->path.dentry);
Al Viroca344a892011-03-09 00:36:45 -05002134 if (open_flag & O_CREAT) {
Al Virofe2d35f2011-03-05 22:58:25 -05002135 error = -EISDIR;
2136 goto exit;
2137 }
2138 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002139 case LAST_BIND:
Al Virofe2d35f2011-03-05 22:58:25 -05002140 /* can't be RCU mode here */
Al Viro16c2cd72011-02-22 15:50:10 -05002141 error = handle_reval_path(nd);
2142 if (error)
2143 goto exit;
Al Viro1f36f772009-12-26 10:56:19 -05002144 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002145 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002146 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002147
Al Viroca344a892011-03-09 00:36:45 -05002148 if (!(open_flag & O_CREAT)) {
Al Virobcda7652011-03-13 16:42:14 -04002149 int symlink_ok = 0;
Al Virofe2d35f2011-03-05 22:58:25 -05002150 if (nd->last.name[nd->last.len])
2151 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002152 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2153 symlink_ok = 1;
Al Virofe2d35f2011-03-05 22:58:25 -05002154 /* we _can_ be in RCU mode here */
Al Viroce57dfc2011-03-13 19:58:58 -04002155 error = walk_component(nd, path, &nd->last, LAST_NORM,
2156 !symlink_ok);
2157 if (error < 0)
Al Virofe2d35f2011-03-05 22:58:25 -05002158 return ERR_PTR(error);
Al Viroce57dfc2011-03-13 19:58:58 -04002159 if (error) /* symlink */
Al Virofe2d35f2011-03-05 22:58:25 -05002160 return NULL;
Al Virofe2d35f2011-03-05 22:58:25 -05002161 /* sayonara */
2162 if (nd->flags & LOOKUP_RCU) {
2163 if (nameidata_drop_rcu_last(nd))
2164 return ERR_PTR(-ECHILD);
2165 }
2166
2167 error = -ENOTDIR;
2168 if (nd->flags & LOOKUP_DIRECTORY) {
Al Viroce57dfc2011-03-13 19:58:58 -04002169 if (!nd->inode->i_op->lookup)
Al Virofe2d35f2011-03-05 22:58:25 -05002170 goto exit;
2171 }
2172 audit_inode(pathname, nd->path.dentry);
2173 goto ok;
2174 }
2175
2176 /* create side of things */
2177
2178 if (nd->flags & LOOKUP_RCU) {
2179 if (nameidata_drop_rcu_last(nd))
2180 return ERR_PTR(-ECHILD);
2181 }
2182
2183 audit_inode(pathname, dir);
Al Viro16c2cd72011-02-22 15:50:10 -05002184 error = -EISDIR;
Al Viro1f36f772009-12-26 10:56:19 -05002185 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002186 if (nd->last.name[nd->last.len])
2187 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002188
Al Viroa1e28032009-12-24 02:12:06 -05002189 mutex_lock(&dir->d_inode->i_mutex);
2190
Al Viro6c0d46c2011-03-09 00:59:59 -05002191 dentry = lookup_hash(nd);
2192 error = PTR_ERR(dentry);
2193 if (IS_ERR(dentry)) {
Al Virofb1cc552009-12-24 01:58:28 -05002194 mutex_unlock(&dir->d_inode->i_mutex);
2195 goto exit;
2196 }
2197
Al Viro6c0d46c2011-03-09 00:59:59 -05002198 path->dentry = dentry;
2199 path->mnt = nd->path.mnt;
2200
Al Virofb1cc552009-12-24 01:58:28 -05002201 /* Negative dentry, just create the file */
Al Viro6c0d46c2011-03-09 00:59:59 -05002202 if (!dentry->d_inode) {
2203 int mode = op->mode;
2204 if (!IS_POSIXACL(dir->d_inode))
2205 mode &= ~current_umask();
Al Virofb1cc552009-12-24 01:58:28 -05002206 /*
2207 * This write is needed to ensure that a
Al Viro6c0d46c2011-03-09 00:59:59 -05002208 * rw->ro transition does not occur between
Al Virofb1cc552009-12-24 01:58:28 -05002209 * the time when the file is created and when
2210 * a permanent write count is taken through
2211 * the 'struct file' in nameidata_to_filp().
2212 */
2213 error = mnt_want_write(nd->path.mnt);
2214 if (error)
2215 goto exit_mutex_unlock;
Al Viroca344a892011-03-09 00:36:45 -05002216 want_write = 1;
Al Viro9b44f1b2011-03-09 00:17:27 -05002217 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002218 open_flag &= ~O_TRUNC;
Al Viro6c0d46c2011-03-09 00:59:59 -05002219 will_truncate = 0;
Al Virobcda7652011-03-13 16:42:14 -04002220 acc_mode = MAY_OPEN;
Al Viro6c0d46c2011-03-09 00:59:59 -05002221 error = security_path_mknod(&nd->path, dentry, mode, 0);
2222 if (error)
2223 goto exit_mutex_unlock;
2224 error = vfs_create(dir->d_inode, dentry, mode, nd);
2225 if (error)
2226 goto exit_mutex_unlock;
2227 mutex_unlock(&dir->d_inode->i_mutex);
2228 dput(nd->path.dentry);
2229 nd->path.dentry = dentry;
Al Viroca344a892011-03-09 00:36:45 -05002230 goto common;
Al Virofb1cc552009-12-24 01:58:28 -05002231 }
2232
2233 /*
2234 * It already exists.
2235 */
2236 mutex_unlock(&dir->d_inode->i_mutex);
2237 audit_inode(pathname, path->dentry);
2238
2239 error = -EEXIST;
Al Viroca344a892011-03-09 00:36:45 -05002240 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002241 goto exit_dput;
2242
David Howells9875cf82011-01-14 18:45:21 +00002243 error = follow_managed(path, nd->flags);
2244 if (error < 0)
2245 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002246
2247 error = -ENOENT;
2248 if (!path->dentry->d_inode)
2249 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002250
2251 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002252 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002253
2254 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002255 nd->inode = path->dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05002256 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002257 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002258 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002259ok:
Al Viro6c0d46c2011-03-09 00:59:59 -05002260 if (!S_ISREG(nd->inode->i_mode))
2261 will_truncate = 0;
2262
Al Viro0f9d1a12011-03-09 00:13:14 -05002263 if (will_truncate) {
2264 error = mnt_want_write(nd->path.mnt);
2265 if (error)
2266 goto exit;
Al Viroca344a892011-03-09 00:36:45 -05002267 want_write = 1;
Al Viro0f9d1a12011-03-09 00:13:14 -05002268 }
Al Viroca344a892011-03-09 00:36:45 -05002269common:
Al Virobcda7652011-03-13 16:42:14 -04002270 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002271 if (error)
Al Viro0f9d1a12011-03-09 00:13:14 -05002272 goto exit;
Al Viro0f9d1a12011-03-09 00:13:14 -05002273 filp = nameidata_to_filp(nd);
2274 if (!IS_ERR(filp)) {
2275 error = ima_file_check(filp, op->acc_mode);
2276 if (error) {
2277 fput(filp);
2278 filp = ERR_PTR(error);
2279 }
2280 }
2281 if (!IS_ERR(filp)) {
2282 if (will_truncate) {
2283 error = handle_truncate(filp);
2284 if (error) {
2285 fput(filp);
2286 filp = ERR_PTR(error);
2287 }
2288 }
2289 }
Al Viroca344a892011-03-09 00:36:45 -05002290out:
2291 if (want_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002292 mnt_drop_write(nd->path.mnt);
2293 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002294 return filp;
2295
2296exit_mutex_unlock:
2297 mutex_unlock(&dir->d_inode->i_mutex);
2298exit_dput:
2299 path_put_conditional(path, nd);
2300exit:
Al Viroca344a892011-03-09 00:36:45 -05002301 filp = ERR_PTR(error);
2302 goto out;
Al Virofb1cc552009-12-24 01:58:28 -05002303}
2304
Al Viro13aab422011-02-23 17:54:08 -05002305static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002306 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307{
Al Virofe2d35f2011-03-05 22:58:25 -05002308 struct file *base = NULL;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002309 struct file *filp;
Al Viro9850c052010-01-13 15:01:15 -05002310 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 int count = 0;
Al Viro13aab422011-02-23 17:54:08 -05002312 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002313
2314 filp = get_empty_filp();
2315 if (!filp)
2316 return ERR_PTR(-ENFILE);
2317
Al Viro47c805d2011-02-23 17:44:09 -05002318 filp->f_flags = op->open_flag;
Al Viro73d049a2011-03-11 12:08:24 -05002319 nd->intent.open.file = filp;
2320 nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2321 nd->intent.open.create_mode = op->mode;
Nick Piggin31e6b012011-01-07 17:49:52 +11002322
Al Viro73d049a2011-03-11 12:08:24 -05002323 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002324 if (unlikely(error))
Al Viro13aab422011-02-23 17:54:08 -05002325 goto out_filp;
Nick Piggin31e6b012011-01-07 17:49:52 +11002326
Al Virofe2d35f2011-03-05 22:58:25 -05002327 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002328 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002329 if (unlikely(error))
2330 goto out_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Al Viro73d049a2011-03-11 12:08:24 -05002332 filp = do_last(nd, &path, op, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002333 while (unlikely(!filp)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002334 struct path link = path;
2335 struct inode *linki = link.dentry->d_inode;
Al Virodef4af32009-12-26 08:37:05 -05002336 void *cookie;
Al Viro73d049a2011-03-11 12:08:24 -05002337 if (!(nd->flags & LOOKUP_FOLLOW) || count++ == 32) {
2338 path_put_conditional(&path, nd);
2339 path_put(&nd->path);
Al Viro40b39132011-03-09 16:22:18 -05002340 filp = ERR_PTR(-ELOOP);
2341 break;
2342 }
Al Viro806b6812009-12-26 07:16:40 -05002343 /*
2344 * This is subtle. Instead of calling do_follow_link() we do
2345 * the thing by hands. The reason is that this way we have zero
2346 * link_count and path_walk() (called from ->follow_link)
2347 * honoring LOOKUP_PARENT. After that we have the parent and
2348 * last component, i.e. we are in the same situation as after
2349 * the first path_walk(). Well, almost - if the last component
2350 * is normal we get its copy stored in nd->last.name and we will
2351 * have to putname() it when we are done. Procfs-like symlinks
2352 * just set LAST_BIND.
2353 */
Al Viro73d049a2011-03-11 12:08:24 -05002354 nd->flags |= LOOKUP_PARENT;
2355 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
2356 error = __do_follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002357 if (unlikely(error))
Al Virof1afe9e2011-02-22 22:27:28 -05002358 filp = ERR_PTR(error);
Al Viroc3e380b2011-02-23 13:39:45 -05002359 else
Al Viro73d049a2011-03-11 12:08:24 -05002360 filp = do_last(nd, &path, op, pathname);
Al Virof1afe9e2011-02-22 22:27:28 -05002361 if (!IS_ERR(cookie) && linki->i_op->put_link)
Al Viro73d049a2011-03-11 12:08:24 -05002362 linki->i_op->put_link(link.dentry, nd, cookie);
Nick Piggin7b9337a2011-01-14 08:42:43 +00002363 path_put(&link);
Al Viro806b6812009-12-26 07:16:40 -05002364 }
Al Viro10fa8e62009-12-26 07:09:49 -05002365out:
Al Viro73d049a2011-03-11 12:08:24 -05002366 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2367 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002368 if (base)
2369 fput(base);
Al Viro73d049a2011-03-11 12:08:24 -05002370 release_open_intent(nd);
Al Viro10fa8e62009-12-26 07:09:49 -05002371 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
Nick Piggin31e6b012011-01-07 17:49:52 +11002373out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002374 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002375 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376}
2377
Al Viro13aab422011-02-23 17:54:08 -05002378struct file *do_filp_open(int dfd, const char *pathname,
2379 const struct open_flags *op, int flags)
2380{
Al Viro73d049a2011-03-11 12:08:24 -05002381 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002382 struct file *filp;
2383
Al Viro73d049a2011-03-11 12:08:24 -05002384 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002385 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002386 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002387 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002388 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002389 return filp;
2390}
2391
Al Viro73d049a2011-03-11 12:08:24 -05002392struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2393 const char *name, const struct open_flags *op, int flags)
2394{
2395 struct nameidata nd;
2396 struct file *file;
2397
2398 nd.root.mnt = mnt;
2399 nd.root.dentry = dentry;
2400
2401 flags |= LOOKUP_ROOT;
2402
Al Virobcda7652011-03-13 16:42:14 -04002403 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002404 return ERR_PTR(-ELOOP);
2405
2406 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2407 if (unlikely(file == ERR_PTR(-ECHILD)))
2408 file = path_openat(-1, name, &nd, op, flags);
2409 if (unlikely(file == ERR_PTR(-ESTALE)))
2410 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2411 return file;
2412}
2413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414/**
2415 * lookup_create - lookup a dentry, creating it if it doesn't exist
2416 * @nd: nameidata info
2417 * @is_dir: directory flag
2418 *
2419 * Simple function to lookup and return a dentry and create it
2420 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002421 *
Jan Blunck4ac91372008-02-14 19:34:32 -08002422 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 */
2424struct dentry *lookup_create(struct nameidata *nd, int is_dir)
2425{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002426 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
Jan Blunck4ac91372008-02-14 19:34:32 -08002428 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002429 /*
2430 * Yucky last component or no last component at all?
2431 * (foo/., foo/.., /////)
2432 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 if (nd->last_type != LAST_NORM)
2434 goto fail;
2435 nd->flags &= ~LOOKUP_PARENT;
Al Viro35165862008-08-05 03:00:49 -04002436 nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
ASANO Masahiroa6349042006-08-22 20:06:02 -04002437 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002438
2439 /*
2440 * Do the final lookup.
2441 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08002442 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 if (IS_ERR(dentry))
2444 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002445
Al Viroe9baf6e2008-05-15 04:49:12 -04002446 if (dentry->d_inode)
2447 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002448 /*
2449 * Special case - lookup gave negative, but... we had foo/bar/
2450 * From the vfs_mknod() POV we just have a negative dentry -
2451 * all is fine. Let's be bastards - you had / on the end, you've
2452 * been asking for (non-existent) directory. -ENOENT for you.
2453 */
Al Viroe9baf6e2008-05-15 04:49:12 -04002454 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
2455 dput(dentry);
2456 dentry = ERR_PTR(-ENOENT);
2457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002459eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002461 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462fail:
2463 return dentry;
2464}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07002465EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
2467int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2468{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002469 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
2471 if (error)
2472 return error;
2473
2474 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
2475 return -EPERM;
2476
Al Viroacfa4382008-12-04 10:06:33 -05002477 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 return -EPERM;
2479
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002480 error = devcgroup_inode_mknod(mode, dev);
2481 if (error)
2482 return error;
2483
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 error = security_inode_mknod(dir, dentry, mode, dev);
2485 if (error)
2486 return error;
2487
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002489 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002490 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 return error;
2492}
2493
Dave Hansen463c3192008-02-15 14:37:57 -08002494static int may_mknod(mode_t mode)
2495{
2496 switch (mode & S_IFMT) {
2497 case S_IFREG:
2498 case S_IFCHR:
2499 case S_IFBLK:
2500 case S_IFIFO:
2501 case S_IFSOCK:
2502 case 0: /* zero mode translates to S_IFREG */
2503 return 0;
2504 case S_IFDIR:
2505 return -EPERM;
2506 default:
2507 return -EINVAL;
2508 }
2509}
2510
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002511SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2512 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513{
Al Viro2ad94ae2008-07-21 09:32:51 -04002514 int error;
2515 char *tmp;
2516 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 struct nameidata nd;
2518
2519 if (S_ISDIR(mode))
2520 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Al Viro2ad94ae2008-07-21 09:32:51 -04002522 error = user_path_parent(dfd, filename, &nd, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002524 return error;
2525
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 dentry = lookup_create(&nd, 0);
Dave Hansen463c3192008-02-15 14:37:57 -08002527 if (IS_ERR(dentry)) {
2528 error = PTR_ERR(dentry);
2529 goto out_unlock;
2530 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002531 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002532 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002533 error = may_mknod(mode);
2534 if (error)
2535 goto out_dput;
2536 error = mnt_want_write(nd.path.mnt);
2537 if (error)
2538 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002539 error = security_path_mknod(&nd.path, dentry, mode, dev);
2540 if (error)
2541 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002542 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08002544 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 break;
2546 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002547 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 new_decode_dev(dev));
2549 break;
2550 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002551 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002554out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002555 mnt_drop_write(nd.path.mnt);
2556out_dput:
2557 dput(dentry);
2558out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002559 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002560 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 putname(tmp);
2562
2563 return error;
2564}
2565
Heiko Carstens3480b252009-01-14 14:14:16 +01002566SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002567{
2568 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2569}
2570
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2572{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002573 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
2575 if (error)
2576 return error;
2577
Al Viroacfa4382008-12-04 10:06:33 -05002578 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 return -EPERM;
2580
2581 mode &= (S_IRWXUGO|S_ISVTX);
2582 error = security_inode_mkdir(dir, dentry, mode);
2583 if (error)
2584 return error;
2585
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002587 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002588 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 return error;
2590}
2591
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002592SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593{
2594 int error = 0;
2595 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002596 struct dentry *dentry;
2597 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Al Viro2ad94ae2008-07-21 09:32:51 -04002599 error = user_path_parent(dfd, pathname, &nd, &tmp);
2600 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002601 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
Dave Hansen6902d922006-09-30 23:29:01 -07002603 dentry = lookup_create(&nd, 1);
2604 error = PTR_ERR(dentry);
2605 if (IS_ERR(dentry))
2606 goto out_unlock;
2607
Jan Blunck4ac91372008-02-14 19:34:32 -08002608 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002609 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002610 error = mnt_want_write(nd.path.mnt);
2611 if (error)
2612 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002613 error = security_path_mkdir(&nd.path, dentry, mode);
2614 if (error)
2615 goto out_drop_write;
Jan Blunck4ac91372008-02-14 19:34:32 -08002616 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002617out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002618 mnt_drop_write(nd.path.mnt);
2619out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002620 dput(dentry);
2621out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002622 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002623 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002624 putname(tmp);
2625out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 return error;
2627}
2628
Heiko Carstens3cdad422009-01-14 14:14:22 +01002629SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002630{
2631 return sys_mkdirat(AT_FDCWD, pathname, mode);
2632}
2633
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634/*
2635 * We try to drop the dentry early: we should have
2636 * a usage count of 2 if we're the only user of this
2637 * dentry, and if that is true (possibly after pruning
2638 * the dcache), then we drop the dentry now.
2639 *
2640 * A low-level filesystem can, if it choses, legally
2641 * do a
2642 *
2643 * if (!d_unhashed(dentry))
2644 * return -EBUSY;
2645 *
2646 * if it cannot handle the case of removing a directory
2647 * that is still in use by something else..
2648 */
2649void dentry_unhash(struct dentry *dentry)
2650{
2651 dget(dentry);
Vasily Averindc168422006-12-06 20:37:07 -08002652 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 spin_lock(&dentry->d_lock);
Nick Pigginb7ab39f2011-01-07 17:49:32 +11002654 if (dentry->d_count == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 __d_drop(dentry);
2656 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657}
2658
2659int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2660{
2661 int error = may_delete(dir, dentry, 1);
2662
2663 if (error)
2664 return error;
2665
Al Viroacfa4382008-12-04 10:06:33 -05002666 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 return -EPERM;
2668
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002669 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 dentry_unhash(dentry);
2671 if (d_mountpoint(dentry))
2672 error = -EBUSY;
2673 else {
2674 error = security_inode_rmdir(dir, dentry);
2675 if (!error) {
2676 error = dir->i_op->rmdir(dir, dentry);
Al Virod83c49f2010-04-30 17:17:09 -04002677 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 dentry->d_inode->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -04002679 dont_mount(dentry);
2680 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 }
2682 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002683 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 d_delete(dentry);
2686 }
2687 dput(dentry);
2688
2689 return error;
2690}
2691
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002692static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693{
2694 int error = 0;
2695 char * name;
2696 struct dentry *dentry;
2697 struct nameidata nd;
2698
Al Viro2ad94ae2008-07-21 09:32:51 -04002699 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002701 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
2703 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002704 case LAST_DOTDOT:
2705 error = -ENOTEMPTY;
2706 goto exit1;
2707 case LAST_DOT:
2708 error = -EINVAL;
2709 goto exit1;
2710 case LAST_ROOT:
2711 error = -EBUSY;
2712 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002714
2715 nd.flags &= ~LOOKUP_PARENT;
2716
Jan Blunck4ac91372008-02-14 19:34:32 -08002717 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002718 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002720 if (IS_ERR(dentry))
2721 goto exit2;
Dave Hansen06227532008-02-15 14:37:34 -08002722 error = mnt_want_write(nd.path.mnt);
2723 if (error)
2724 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002725 error = security_path_rmdir(&nd.path, dentry);
2726 if (error)
2727 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002728 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002729exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002730 mnt_drop_write(nd.path.mnt);
2731exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002732 dput(dentry);
2733exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002734 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002736 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 putname(name);
2738 return error;
2739}
2740
Heiko Carstens3cdad422009-01-14 14:14:22 +01002741SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002742{
2743 return do_rmdir(AT_FDCWD, pathname);
2744}
2745
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746int vfs_unlink(struct inode *dir, struct dentry *dentry)
2747{
2748 int error = may_delete(dir, dentry, 0);
2749
2750 if (error)
2751 return error;
2752
Al Viroacfa4382008-12-04 10:06:33 -05002753 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 return -EPERM;
2755
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002756 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 if (d_mountpoint(dentry))
2758 error = -EBUSY;
2759 else {
2760 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002761 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002763 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002764 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002767 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
2769 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2770 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002771 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 }
Robert Love0eeca282005-07-12 17:06:03 -04002774
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 return error;
2776}
2777
2778/*
2779 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002780 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 * writeout happening, and we don't want to prevent access to the directory
2782 * while waiting on the I/O.
2783 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002784static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785{
Al Viro2ad94ae2008-07-21 09:32:51 -04002786 int error;
2787 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 struct dentry *dentry;
2789 struct nameidata nd;
2790 struct inode *inode = NULL;
2791
Al Viro2ad94ae2008-07-21 09:32:51 -04002792 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002794 return error;
2795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 error = -EISDIR;
2797 if (nd.last_type != LAST_NORM)
2798 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002799
2800 nd.flags &= ~LOOKUP_PARENT;
2801
Jan Blunck4ac91372008-02-14 19:34:32 -08002802 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002803 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 error = PTR_ERR(dentry);
2805 if (!IS_ERR(dentry)) {
2806 /* Why not before? Because we want correct error value */
2807 if (nd.last.name[nd.last.len])
2808 goto slashes;
2809 inode = dentry->d_inode;
2810 if (inode)
Al Viro7de9c6e2010-10-23 11:11:40 -04002811 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002812 error = mnt_want_write(nd.path.mnt);
2813 if (error)
2814 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002815 error = security_path_unlink(&nd.path, dentry);
2816 if (error)
2817 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002818 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002819exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002820 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 exit2:
2822 dput(dentry);
2823 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002824 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 if (inode)
2826 iput(inode); /* truncate the inode here */
2827exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002828 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 putname(name);
2830 return error;
2831
2832slashes:
2833 error = !dentry->d_inode ? -ENOENT :
2834 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2835 goto exit2;
2836}
2837
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002838SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002839{
2840 if ((flag & ~AT_REMOVEDIR) != 0)
2841 return -EINVAL;
2842
2843 if (flag & AT_REMOVEDIR)
2844 return do_rmdir(dfd, pathname);
2845
2846 return do_unlinkat(dfd, pathname);
2847}
2848
Heiko Carstens3480b252009-01-14 14:14:16 +01002849SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002850{
2851 return do_unlinkat(AT_FDCWD, pathname);
2852}
2853
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002854int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002856 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
2858 if (error)
2859 return error;
2860
Al Viroacfa4382008-12-04 10:06:33 -05002861 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 return -EPERM;
2863
2864 error = security_inode_symlink(dir, dentry, oldname);
2865 if (error)
2866 return error;
2867
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002869 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002870 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 return error;
2872}
2873
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002874SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2875 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876{
Al Viro2ad94ae2008-07-21 09:32:51 -04002877 int error;
2878 char *from;
2879 char *to;
Dave Hansen6902d922006-09-30 23:29:01 -07002880 struct dentry *dentry;
2881 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882
2883 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002884 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002886
2887 error = user_path_parent(newdfd, newname, &nd, &to);
2888 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002889 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890
Dave Hansen6902d922006-09-30 23:29:01 -07002891 dentry = lookup_create(&nd, 0);
2892 error = PTR_ERR(dentry);
2893 if (IS_ERR(dentry))
2894 goto out_unlock;
2895
Dave Hansen75c3f292008-02-15 14:37:45 -08002896 error = mnt_want_write(nd.path.mnt);
2897 if (error)
2898 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002899 error = security_path_symlink(&nd.path, dentry, from);
2900 if (error)
2901 goto out_drop_write;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002902 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002903out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002904 mnt_drop_write(nd.path.mnt);
2905out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002906 dput(dentry);
2907out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002908 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002909 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002910 putname(to);
2911out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 putname(from);
2913 return error;
2914}
2915
Heiko Carstens3480b252009-01-14 14:14:16 +01002916SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002917{
2918 return sys_symlinkat(oldname, AT_FDCWD, newname);
2919}
2920
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2922{
2923 struct inode *inode = old_dentry->d_inode;
2924 int error;
2925
2926 if (!inode)
2927 return -ENOENT;
2928
Miklos Szeredia95164d2008-07-30 15:08:48 +02002929 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 if (error)
2931 return error;
2932
2933 if (dir->i_sb != inode->i_sb)
2934 return -EXDEV;
2935
2936 /*
2937 * A link to an append-only or immutable file cannot be created.
2938 */
2939 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2940 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05002941 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002943 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 return -EPERM;
2945
2946 error = security_inode_link(old_dentry, dir, new_dentry);
2947 if (error)
2948 return error;
2949
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002950 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05302951 /* Make sure we don't allow creating hardlink to an unlinked file */
2952 if (inode->i_nlink == 0)
2953 error = -ENOENT;
2954 else
2955 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002956 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002957 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002958 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 return error;
2960}
2961
2962/*
2963 * Hardlinks are often used in delicate situations. We avoid
2964 * security-related surprises by not following symlinks on the
2965 * newname. --KAB
2966 *
2967 * We don't follow them on the oldname either to be compatible
2968 * with linux 2.0, and to avoid hard-linking to directories
2969 * and other special files. --ADM
2970 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002971SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2972 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973{
2974 struct dentry *new_dentry;
Al Viro2d8f3032008-07-22 09:59:21 -04002975 struct nameidata nd;
2976 struct path old_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302977 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 int error;
Al Viro2ad94ae2008-07-21 09:32:51 -04002979 char *to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302981 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002982 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302983 /*
2984 * To use null names we require CAP_DAC_READ_SEARCH
2985 * This ensures that not everyone will be able to create
2986 * handlink using the passed filedescriptor.
2987 */
2988 if (flags & AT_EMPTY_PATH) {
2989 if (!capable(CAP_DAC_READ_SEARCH))
2990 return -ENOENT;
2991 how = LOOKUP_EMPTY;
2992 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002993
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302994 if (flags & AT_SYMLINK_FOLLOW)
2995 how |= LOOKUP_FOLLOW;
2996
2997 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002999 return error;
3000
3001 error = user_path_parent(newdfd, newname, &nd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 if (error)
3003 goto out;
3004 error = -EXDEV;
Al Viro2d8f3032008-07-22 09:59:21 -04003005 if (old_path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 goto out_release;
3007 new_dentry = lookup_create(&nd, 0);
3008 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003009 if (IS_ERR(new_dentry))
3010 goto out_unlock;
Dave Hansen75c3f292008-02-15 14:37:45 -08003011 error = mnt_want_write(nd.path.mnt);
3012 if (error)
3013 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003014 error = security_path_link(old_path.dentry, &nd.path, new_dentry);
3015 if (error)
3016 goto out_drop_write;
Al Viro2d8f3032008-07-22 09:59:21 -04003017 error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003018out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08003019 mnt_drop_write(nd.path.mnt);
3020out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07003021 dput(new_dentry);
3022out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08003023 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08003025 path_put(&nd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003026 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027out:
Al Viro2d8f3032008-07-22 09:59:21 -04003028 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
3030 return error;
3031}
3032
Heiko Carstens3480b252009-01-14 14:14:16 +01003033SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003034{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003035 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003036}
3037
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038/*
3039 * The worst of all namespace operations - renaming directory. "Perverted"
3040 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3041 * Problems:
3042 * a) we can get into loop creation. Check is done in is_subdir().
3043 * b) race potential - two innocent renames can create a loop together.
3044 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003045 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 * story.
3047 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003048 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 * whether the target exists). Solution: try to be smart with locking
3050 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003051 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 * move will be locked. Thus we can rank directories by the tree
3053 * (ancestors first) and rank all non-directories after them.
3054 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003055 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 * HOWEVER, it relies on the assumption that any object with ->lookup()
3057 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3058 * we'd better make sure that there's no link(2) for them.
3059 * d) some filesystems don't support opened-but-unlinked directories,
3060 * either because of layout or because they are not ready to deal with
3061 * all cases correctly. The latter will be fixed (taking this sort of
3062 * stuff into VFS), but the former is not going away. Solution: the same
3063 * trick as in rmdir().
3064 * e) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003065 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003067 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 * locking].
3069 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07003070static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3071 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072{
3073 int error = 0;
3074 struct inode *target;
3075
3076 /*
3077 * If we are going to change the parent - check write permissions,
3078 * we'll need to flip '..'.
3079 */
3080 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04003081 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 if (error)
3083 return error;
3084 }
3085
3086 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3087 if (error)
3088 return error;
3089
3090 target = new_dentry->d_inode;
Al Virod83c49f2010-04-30 17:17:09 -04003091 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003092 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3094 error = -EBUSY;
Al Virod83c49f2010-04-30 17:17:09 -04003095 else {
3096 if (target)
3097 dentry_unhash(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
Al Virod83c49f2010-04-30 17:17:09 -04003099 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 if (target) {
Al Virod83c49f2010-04-30 17:17:09 -04003101 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 target->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -04003103 dont_mount(new_dentry);
3104 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003105 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 if (d_unhashed(new_dentry))
3107 d_rehash(new_dentry);
3108 dput(new_dentry);
3109 }
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003110 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003111 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3112 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 return error;
3114}
3115
Adrian Bunk75c96f82005-05-05 16:16:09 -07003116static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3117 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118{
3119 struct inode *target;
3120 int error;
3121
3122 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3123 if (error)
3124 return error;
3125
3126 dget(new_dentry);
3127 target = new_dentry->d_inode;
3128 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003129 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3131 error = -EBUSY;
3132 else
3133 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3134 if (!error) {
Al Virobec10522010-03-03 14:12:08 -05003135 if (target)
Al Virod83c49f2010-04-30 17:17:09 -04003136 dont_mount(new_dentry);
Mark Fasheh349457c2006-09-08 14:22:21 -07003137 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 d_move(old_dentry, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 }
3140 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003141 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 dput(new_dentry);
3143 return error;
3144}
3145
3146int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3147 struct inode *new_dir, struct dentry *new_dentry)
3148{
3149 int error;
3150 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003151 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152
3153 if (old_dentry->d_inode == new_dentry->d_inode)
3154 return 0;
3155
3156 error = may_delete(old_dir, old_dentry, is_dir);
3157 if (error)
3158 return error;
3159
3160 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003161 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 else
3163 error = may_delete(new_dir, new_dentry, is_dir);
3164 if (error)
3165 return error;
3166
Al Viroacfa4382008-12-04 10:06:33 -05003167 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 return -EPERM;
3169
Robert Love0eeca282005-07-12 17:06:03 -04003170 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3171
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 if (is_dir)
3173 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3174 else
3175 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003176 if (!error)
3177 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003178 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003179 fsnotify_oldname_free(old_name);
3180
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 return error;
3182}
3183
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003184SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3185 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186{
Al Viro2ad94ae2008-07-21 09:32:51 -04003187 struct dentry *old_dir, *new_dir;
3188 struct dentry *old_dentry, *new_dentry;
3189 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003191 char *from;
3192 char *to;
3193 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
Al Viro2ad94ae2008-07-21 09:32:51 -04003195 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 if (error)
3197 goto exit;
3198
Al Viro2ad94ae2008-07-21 09:32:51 -04003199 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 if (error)
3201 goto exit1;
3202
3203 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003204 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 goto exit2;
3206
Jan Blunck4ac91372008-02-14 19:34:32 -08003207 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 error = -EBUSY;
3209 if (oldnd.last_type != LAST_NORM)
3210 goto exit2;
3211
Jan Blunck4ac91372008-02-14 19:34:32 -08003212 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 if (newnd.last_type != LAST_NORM)
3214 goto exit2;
3215
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003216 oldnd.flags &= ~LOOKUP_PARENT;
3217 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003218 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003219
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 trap = lock_rename(new_dir, old_dir);
3221
Christoph Hellwig49705b72005-11-08 21:35:06 -08003222 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 error = PTR_ERR(old_dentry);
3224 if (IS_ERR(old_dentry))
3225 goto exit3;
3226 /* source must exist */
3227 error = -ENOENT;
3228 if (!old_dentry->d_inode)
3229 goto exit4;
3230 /* unless the source is a directory trailing slashes give -ENOTDIR */
3231 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3232 error = -ENOTDIR;
3233 if (oldnd.last.name[oldnd.last.len])
3234 goto exit4;
3235 if (newnd.last.name[newnd.last.len])
3236 goto exit4;
3237 }
3238 /* source should not be ancestor of target */
3239 error = -EINVAL;
3240 if (old_dentry == trap)
3241 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003242 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 error = PTR_ERR(new_dentry);
3244 if (IS_ERR(new_dentry))
3245 goto exit4;
3246 /* target should not be an ancestor of source */
3247 error = -ENOTEMPTY;
3248 if (new_dentry == trap)
3249 goto exit5;
3250
Dave Hansen9079b1e2008-02-15 14:37:49 -08003251 error = mnt_want_write(oldnd.path.mnt);
3252 if (error)
3253 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003254 error = security_path_rename(&oldnd.path, old_dentry,
3255 &newnd.path, new_dentry);
3256 if (error)
3257 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 error = vfs_rename(old_dir->d_inode, old_dentry,
3259 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003260exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003261 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262exit5:
3263 dput(new_dentry);
3264exit4:
3265 dput(old_dentry);
3266exit3:
3267 unlock_rename(new_dir, old_dir);
3268exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003269 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003270 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003272 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003274exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 return error;
3276}
3277
Heiko Carstensa26eab22009-01-14 14:14:17 +01003278SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003279{
3280 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3281}
3282
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3284{
3285 int len;
3286
3287 len = PTR_ERR(link);
3288 if (IS_ERR(link))
3289 goto out;
3290
3291 len = strlen(link);
3292 if (len > (unsigned) buflen)
3293 len = buflen;
3294 if (copy_to_user(buffer, link, len))
3295 len = -EFAULT;
3296out:
3297 return len;
3298}
3299
3300/*
3301 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3302 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3303 * using) it for any given inode is up to filesystem.
3304 */
3305int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3306{
3307 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003308 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003309 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003310
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003312 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003313 if (IS_ERR(cookie))
3314 return PTR_ERR(cookie);
3315
3316 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3317 if (dentry->d_inode->i_op->put_link)
3318 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3319 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320}
3321
3322int vfs_follow_link(struct nameidata *nd, const char *link)
3323{
3324 return __vfs_follow_link(nd, link);
3325}
3326
3327/* get the link contents into pagecache */
3328static char *page_getlink(struct dentry * dentry, struct page **ppage)
3329{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003330 char *kaddr;
3331 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003333 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003335 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003337 kaddr = kmap(page);
3338 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3339 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340}
3341
3342int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3343{
3344 struct page *page = NULL;
3345 char *s = page_getlink(dentry, &page);
3346 int res = vfs_readlink(dentry,buffer,buflen,s);
3347 if (page) {
3348 kunmap(page);
3349 page_cache_release(page);
3350 }
3351 return res;
3352}
3353
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003354void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003356 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003358 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359}
3360
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003361void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003363 struct page *page = cookie;
3364
3365 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 kunmap(page);
3367 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 }
3369}
3370
Nick Piggin54566b22009-01-04 12:00:53 -08003371/*
3372 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3373 */
3374int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375{
3376 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003377 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003378 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003379 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003381 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3382 if (nofs)
3383 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
NeilBrown7e53cac2006-03-25 03:07:57 -08003385retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003386 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003387 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003389 goto fail;
3390
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 kaddr = kmap_atomic(page, KM_USER0);
3392 memcpy(kaddr, symname, len-1);
3393 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07003394
3395 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3396 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 if (err < 0)
3398 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003399 if (err < len-1)
3400 goto retry;
3401
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 mark_inode_dirty(inode);
3403 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404fail:
3405 return err;
3406}
3407
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003408int page_symlink(struct inode *inode, const char *symname, int len)
3409{
3410 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003411 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003412}
3413
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003414const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 .readlink = generic_readlink,
3416 .follow_link = page_follow_link_light,
3417 .put_link = page_put_link,
3418};
3419
Al Viro2d8f3032008-07-22 09:59:21 -04003420EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003421EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422EXPORT_SYMBOL(follow_down);
3423EXPORT_SYMBOL(follow_up);
3424EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3425EXPORT_SYMBOL(getname);
3426EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427EXPORT_SYMBOL(lookup_one_len);
3428EXPORT_SYMBOL(page_follow_link_light);
3429EXPORT_SYMBOL(page_put_link);
3430EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003431EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432EXPORT_SYMBOL(page_symlink);
3433EXPORT_SYMBOL(page_symlink_inode_operations);
Al Viroc9c6cac2011-02-16 15:15:47 -05003434EXPORT_SYMBOL(kern_path_parent);
Al Virod1811462008-08-02 00:49:18 -04003435EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003436EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003437EXPORT_SYMBOL(inode_permission);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -08003438EXPORT_SYMBOL(file_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439EXPORT_SYMBOL(unlock_rename);
3440EXPORT_SYMBOL(vfs_create);
3441EXPORT_SYMBOL(vfs_follow_link);
3442EXPORT_SYMBOL(vfs_link);
3443EXPORT_SYMBOL(vfs_mkdir);
3444EXPORT_SYMBOL(vfs_mknod);
3445EXPORT_SYMBOL(generic_permission);
3446EXPORT_SYMBOL(vfs_readlink);
3447EXPORT_SYMBOL(vfs_rename);
3448EXPORT_SYMBOL(vfs_rmdir);
3449EXPORT_SYMBOL(vfs_symlink);
3450EXPORT_SYMBOL(vfs_unlink);
3451EXPORT_SYMBOL(dentry_unhash);
3452EXPORT_SYMBOL(generic_readlink);