blob: 941c4362e2980efde6493ea6fc4f6c62e5b9053a [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>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050018#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#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 Torvaldse77819e2011-07-22 19:30:19 -070035#include <linux/posix_acl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <asm/uaccess.h>
37
Eric Parise81e3f42009-12-04 15:47:36 -050038#include "internal.h"
Al Viroc7105362011-11-24 18:22:03 -050039#include "mount.h"
Eric Parise81e3f42009-12-04 15:47:36 -050040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041/* [Feb-1997 T. Schoebel-Theuer]
42 * Fundamental changes in the pathname lookup mechanisms (namei)
43 * were necessary because of omirr. The reason is that omirr needs
44 * to know the _real_ pathname, not the user-supplied one, in case
45 * of symlinks (and also when transname replacements occur).
46 *
47 * The new code replaces the old recursive symlink resolution with
48 * an iterative one (in case of non-nested symlink chains). It does
49 * this with calls to <fs>_follow_link().
50 * As a side effect, dir_namei(), _namei() and follow_link() are now
51 * replaced with a single function lookup_dentry() that can handle all
52 * the special cases of the former code.
53 *
54 * With the new dcache, the pathname is stored at each inode, at least as
55 * long as the refcount of the inode is positive. As a side effect, the
56 * size of the dcache depends on the inode cache and thus is dynamic.
57 *
58 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
59 * resolution to correspond with current state of the code.
60 *
61 * Note that the symlink resolution is not *completely* iterative.
62 * There is still a significant amount of tail- and mid- recursion in
63 * the algorithm. Also, note that <fs>_readlink() is not used in
64 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
65 * may return different results than <fs>_follow_link(). Many virtual
66 * filesystems (including /proc) exhibit this behavior.
67 */
68
69/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
70 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
71 * and the name already exists in form of a symlink, try to create the new
72 * name indicated by the symlink. The old code always complained that the
73 * name already exists, due to not following the symlink even if its target
74 * is nonexistent. The new semantics affects also mknod() and link() when
Lucas De Marchi25985ed2011-03-30 22:57:33 -030075 * the name is a symlink pointing to a non-existent name.
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 *
77 * I don't know which semantics is the right one, since I have no access
78 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
79 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
80 * "old" one. Personally, I think the new semantics is much more logical.
81 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
82 * file does succeed in both HP-UX and SunOs, but not in Solaris
83 * and in the old Linux semantics.
84 */
85
86/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
87 * semantics. See the comments in "open_namei" and "do_link" below.
88 *
89 * [10-Sep-98 Alan Modra] Another symlink change.
90 */
91
92/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
93 * inside the path - always follow.
94 * in the last component in creation/removal/renaming - never follow.
95 * if LOOKUP_FOLLOW passed - follow.
96 * if the pathname has trailing slashes - follow.
97 * otherwise - don't follow.
98 * (applied in that order).
99 *
100 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
101 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
102 * During the 2.4 we need to fix the userland stuff depending on it -
103 * hopefully we will be able to get rid of that wart in 2.5. So far only
104 * XEmacs seems to be relying on it...
105 */
106/*
107 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800108 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 * any extra contention...
110 */
111
112/* In order to reduce some races, while at the same time doing additional
113 * checking and hopefully speeding things up, we copy filenames to the
114 * kernel data space before using them..
115 *
116 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
117 * PATH_MAX includes the nul terminator --RR.
118 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800119static int do_getname(const char __user *filename, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 int retval;
122 unsigned long len = PATH_MAX;
123
124 if (!segment_eq(get_fs(), KERNEL_DS)) {
125 if ((unsigned long) filename >= TASK_SIZE)
126 return -EFAULT;
127 if (TASK_SIZE - (unsigned long) filename < PATH_MAX)
128 len = TASK_SIZE - (unsigned long) filename;
129 }
130
131 retval = strncpy_from_user(page, filename, len);
132 if (retval > 0) {
133 if (retval < len)
134 return 0;
135 return -ENAMETOOLONG;
136 } else if (!retval)
137 retval = -ENOENT;
138 return retval;
139}
140
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +0100141static char *getname_flags(const char __user *filename, int flags, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Eric Paris4043cde2012-01-03 14:23:08 -0500143 char *result = __getname();
144 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Eric Paris4043cde2012-01-03 14:23:08 -0500146 if (!result)
147 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Eric Paris4043cde2012-01-03 14:23:08 -0500149 retval = do_getname(filename, result);
150 if (retval < 0) {
151 if (retval == -ENOENT && empty)
152 *empty = 1;
153 if (retval != -ENOENT || !(flags & LOOKUP_EMPTY)) {
154 __putname(result);
155 return ERR_PTR(retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
157 }
158 audit_getname(result);
159 return result;
160}
161
Al Virof52e0c12011-03-14 18:56:51 -0400162char *getname(const char __user * filename)
163{
Linus Torvaldsf7493e52012-03-22 16:10:40 -0700164 return getname_flags(filename, 0, NULL);
Al Virof52e0c12011-03-14 18:56:51 -0400165}
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167#ifdef CONFIG_AUDITSYSCALL
168void putname(const char *name)
169{
Al Viro5ac3a9c2006-07-16 06:38:45 -0400170 if (unlikely(!audit_dummy_context()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 audit_putname(name);
172 else
173 __putname(name);
174}
175EXPORT_SYMBOL(putname);
176#endif
177
Linus Torvaldse77819e2011-07-22 19:30:19 -0700178static int check_acl(struct inode *inode, int mask)
179{
Linus Torvalds84635d62011-07-25 22:47:03 -0700180#ifdef CONFIG_FS_POSIX_ACL
Linus Torvaldse77819e2011-07-22 19:30:19 -0700181 struct posix_acl *acl;
182
Linus Torvaldse77819e2011-07-22 19:30:19 -0700183 if (mask & MAY_NOT_BLOCK) {
Al Viro35678662011-08-02 21:32:13 -0400184 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
185 if (!acl)
Linus Torvaldse77819e2011-07-22 19:30:19 -0700186 return -EAGAIN;
Al Viro35678662011-08-02 21:32:13 -0400187 /* no ->get_acl() calls in RCU mode... */
188 if (acl == ACL_NOT_CACHED)
189 return -ECHILD;
Ari Savolainen206b1d02011-08-06 19:43:07 +0300190 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
Linus Torvaldse77819e2011-07-22 19:30:19 -0700191 }
192
193 acl = get_cached_acl(inode, ACL_TYPE_ACCESS);
194
195 /*
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200196 * A filesystem can force a ACL callback by just never filling the
197 * ACL cache. But normally you'd fill the cache either at inode
198 * instantiation time, or on the first ->get_acl call.
Linus Torvaldse77819e2011-07-22 19:30:19 -0700199 *
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200200 * If the filesystem doesn't have a get_acl() function at all, we'll
201 * just create the negative cache entry.
Linus Torvaldse77819e2011-07-22 19:30:19 -0700202 */
203 if (acl == ACL_NOT_CACHED) {
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200204 if (inode->i_op->get_acl) {
205 acl = inode->i_op->get_acl(inode, ACL_TYPE_ACCESS);
206 if (IS_ERR(acl))
207 return PTR_ERR(acl);
208 } else {
209 set_cached_acl(inode, ACL_TYPE_ACCESS, NULL);
210 return -EAGAIN;
211 }
Linus Torvaldse77819e2011-07-22 19:30:19 -0700212 }
213
214 if (acl) {
215 int error = posix_acl_permission(inode, acl, mask);
216 posix_acl_release(acl);
217 return error;
218 }
Linus Torvalds84635d62011-07-25 22:47:03 -0700219#endif
Linus Torvaldse77819e2011-07-22 19:30:19 -0700220
221 return -EAGAIN;
222}
223
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700224/*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530225 * This does the basic permission checking
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700226 */
Al Viro7e401452011-06-20 19:12:17 -0400227static int acl_permission_check(struct inode *inode, int mask)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700228{
Linus Torvalds26cf46b2011-05-13 11:51:01 -0700229 unsigned int mode = inode->i_mode;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700230
Linus Torvalds14067ff2011-07-25 19:55:52 -0700231 if (likely(current_fsuid() == inode->i_uid))
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700232 mode >>= 6;
233 else {
Linus Torvaldse77819e2011-07-22 19:30:19 -0700234 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
Al Viro7e401452011-06-20 19:12:17 -0400235 int error = check_acl(inode, mask);
Nick Pigginb74c79e2011-01-07 17:49:58 +1100236 if (error != -EAGAIN)
237 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700238 }
239
240 if (in_group_p(inode->i_gid))
241 mode >>= 3;
242 }
243
244 /*
245 * If the DACs are ok we don't need any capability check.
246 */
Al Viro9c2c7032011-06-20 19:06:22 -0400247 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700248 return 0;
249 return -EACCES;
250}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100253 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 * @inode: inode to check access rights for
Andreas Gruenbacher8fd90c82011-10-23 23:13:30 +0530255 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 *
257 * Used to check for read/write/execute permissions on a file.
258 * We use "fsuid" for this, letting us set arbitrary permissions
259 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100260 * are used for other things.
261 *
262 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
263 * request cannot be satisfied (eg. requires blocking or too much complexity).
264 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 */
Al Viro2830ba72011-06-20 19:16:29 -0400266int generic_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700268 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 /*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530271 * Do the basic permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 */
Al Viro7e401452011-06-20 19:12:17 -0400273 ret = acl_permission_check(inode, mask);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700274 if (ret != -EACCES)
275 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
Al Virod594e7e2011-06-20 19:55:42 -0400277 if (S_ISDIR(inode->i_mode)) {
278 /* DACs are overridable for directories */
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -0800279 if (inode_capable(inode, CAP_DAC_OVERRIDE))
Al Virod594e7e2011-06-20 19:55:42 -0400280 return 0;
281 if (!(mask & MAY_WRITE))
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -0800282 if (inode_capable(inode, CAP_DAC_READ_SEARCH))
Al Virod594e7e2011-06-20 19:55:42 -0400283 return 0;
284 return -EACCES;
285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 /*
287 * Read/write DACs are always overridable.
Al Virod594e7e2011-06-20 19:55:42 -0400288 * Executable DACs are overridable when there is
289 * at least one exec bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 */
Al Virod594e7e2011-06-20 19:55:42 -0400291 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -0800292 if (inode_capable(inode, CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 return 0;
294
295 /*
296 * Searching includes executable on directories, else just read.
297 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600298 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Al Virod594e7e2011-06-20 19:55:42 -0400299 if (mask == MAY_READ)
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -0800300 if (inode_capable(inode, CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return 0;
302
303 return -EACCES;
304}
305
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700306/*
307 * We _really_ want to just do "generic_permission()" without
308 * even looking at the inode->i_op values. So we keep a cache
309 * flag in inode->i_opflags, that says "this has not special
310 * permission function, use the fast case".
311 */
312static inline int do_inode_permission(struct inode *inode, int mask)
313{
314 if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
315 if (likely(inode->i_op->permission))
316 return inode->i_op->permission(inode, mask);
317
318 /* This gets set once for the inode lifetime */
319 spin_lock(&inode->i_lock);
320 inode->i_opflags |= IOP_FASTPERM;
321 spin_unlock(&inode->i_lock);
322 }
323 return generic_permission(inode, mask);
324}
325
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200326/**
327 * inode_permission - check for access rights to a given inode
328 * @inode: inode to check permission on
Andreas Gruenbacher8fd90c82011-10-23 23:13:30 +0530329 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200330 *
331 * Used to check for read/write/execute permissions on an inode.
332 * We use "fsuid" for this, letting us set arbitrary permissions
333 * for filesystem access without changing the "normal" uids which
334 * are used for other things.
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530335 *
336 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200337 */
Al Virof419a2e2008-07-22 00:07:17 -0400338int inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Al Viroe6305c42008-07-15 21:03:57 -0400340 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700342 if (unlikely(mask & MAY_WRITE)) {
Miklos Szeredi22590e42007-10-16 23:27:08 -0700343 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 /*
346 * Nobody gets write access to a read-only fs.
347 */
348 if (IS_RDONLY(inode) &&
349 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
350 return -EROFS;
351
352 /*
353 * Nobody gets write access to an immutable file.
354 */
355 if (IS_IMMUTABLE(inode))
356 return -EACCES;
357 }
358
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700359 retval = do_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 if (retval)
361 return retval;
362
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700363 retval = devcgroup_inode_permission(inode, mask);
364 if (retval)
365 return retval;
366
Eric Parisd09ca732010-07-23 11:43:57 -0400367 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
Al Virof4d6ff82011-06-19 13:14:21 -0400370/**
Jan Blunck5dd784d2008-02-14 19:34:38 -0800371 * path_get - get a reference to a path
372 * @path: path to get the reference to
373 *
374 * Given a path increment the reference count to the dentry and the vfsmount.
375 */
376void path_get(struct path *path)
377{
378 mntget(path->mnt);
379 dget(path->dentry);
380}
381EXPORT_SYMBOL(path_get);
382
383/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800384 * path_put - put a reference to a path
385 * @path: path to put the reference to
386 *
387 * Given a path decrement the reference count to the dentry and the vfsmount.
388 */
389void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Jan Blunck1d957f92008-02-14 19:34:35 -0800391 dput(path->dentry);
392 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393}
Jan Blunck1d957f92008-02-14 19:34:35 -0800394EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Al Viro19660af2011-03-25 10:32:48 -0400396/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100397 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400398 * Documentation/filesystems/path-lookup.txt). In situations when we can't
399 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
400 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
401 * mode. Refcounts are grabbed at the last known good point before rcu-walk
402 * got stuck, so ref-walk may continue from there. If this is not successful
403 * (eg. a seqcount has changed), then failure is returned and it's up to caller
404 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100405 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100406
407/**
Al Viro19660af2011-03-25 10:32:48 -0400408 * unlazy_walk - try to switch to ref-walk mode.
409 * @nd: nameidata pathwalk data
410 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800411 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100412 *
Al Viro19660af2011-03-25 10:32:48 -0400413 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
414 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
415 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100416 */
Al Viro19660af2011-03-25 10:32:48 -0400417static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100418{
419 struct fs_struct *fs = current->fs;
420 struct dentry *parent = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500421 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100422
423 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500424 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
425 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100426 spin_lock(&fs->lock);
427 if (nd->root.mnt != fs->root.mnt ||
428 nd->root.dentry != fs->root.dentry)
429 goto err_root;
430 }
431 spin_lock(&parent->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400432 if (!dentry) {
433 if (!__d_rcu_to_refcount(parent, nd->seq))
434 goto err_parent;
435 BUG_ON(nd->inode != parent->d_inode);
436 } else {
Al Viro94c0d4e2011-07-12 21:40:23 -0400437 if (dentry->d_parent != parent)
438 goto err_parent;
Al Viro19660af2011-03-25 10:32:48 -0400439 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
440 if (!__d_rcu_to_refcount(dentry, nd->seq))
441 goto err_child;
442 /*
443 * If the sequence check on the child dentry passed, then
444 * the child has not been removed from its parent. This
445 * means the parent dentry must be valid and able to take
446 * a reference at this point.
447 */
448 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
449 BUG_ON(!parent->d_count);
450 parent->d_count++;
451 spin_unlock(&dentry->d_lock);
452 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100453 spin_unlock(&parent->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500454 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100455 path_get(&nd->root);
456 spin_unlock(&fs->lock);
457 }
458 mntget(nd->path.mnt);
459
460 rcu_read_unlock();
461 br_read_unlock(vfsmount_lock);
462 nd->flags &= ~LOOKUP_RCU;
463 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400464
465err_child:
Nick Piggin31e6b012011-01-07 17:49:52 +1100466 spin_unlock(&dentry->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400467err_parent:
Nick Piggin31e6b012011-01-07 17:49:52 +1100468 spin_unlock(&parent->d_lock);
469err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500470 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100471 spin_unlock(&fs->lock);
472 return -ECHILD;
473}
474
Nick Piggin31e6b012011-01-07 17:49:52 +1100475/**
Trond Myklebust834f2a42005-10-18 14:20:16 -0700476 * release_open_intent - free up open intent resources
477 * @nd: pointer to nameidata
478 */
479void release_open_intent(struct nameidata *nd)
480{
Linus Torvalds2dab5972011-02-11 15:53:38 -0800481 struct file *file = nd->intent.open.file;
482
483 if (file && !IS_ERR(file)) {
484 if (file->f_path.dentry == NULL)
485 put_filp(file);
486 else
487 fput(file);
488 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700489}
490
Al Virof60aef72011-02-15 01:35:28 -0500491static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
Nick Piggin34286d62011-01-07 17:49:57 +1100492{
Al Virof60aef72011-02-15 01:35:28 -0500493 return dentry->d_op->d_revalidate(dentry, nd);
Nick Piggin34286d62011-01-07 17:49:57 +1100494}
495
Al Viro9f1fafe2011-03-25 11:00:12 -0400496/**
497 * complete_walk - successful completion of path walk
498 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500499 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400500 * If we had been in RCU mode, drop out of it and legitimize nd->path.
501 * Revalidate the final result, unless we'd already done that during
502 * the path walk or the filesystem doesn't ask for it. Return 0 on
503 * success, -error on failure. In case of failure caller does not
504 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500505 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400506static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500507{
Al Viro16c2cd72011-02-22 15:50:10 -0500508 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500509 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500510
Al Viro9f1fafe2011-03-25 11:00:12 -0400511 if (nd->flags & LOOKUP_RCU) {
512 nd->flags &= ~LOOKUP_RCU;
513 if (!(nd->flags & LOOKUP_ROOT))
514 nd->root.mnt = NULL;
515 spin_lock(&dentry->d_lock);
516 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
517 spin_unlock(&dentry->d_lock);
518 rcu_read_unlock();
519 br_read_unlock(vfsmount_lock);
520 return -ECHILD;
521 }
522 BUG_ON(nd->inode != dentry->d_inode);
523 spin_unlock(&dentry->d_lock);
524 mntget(nd->path.mnt);
525 rcu_read_unlock();
526 br_read_unlock(vfsmount_lock);
527 }
528
Al Viro16c2cd72011-02-22 15:50:10 -0500529 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500530 return 0;
531
Al Viro16c2cd72011-02-22 15:50:10 -0500532 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
533 return 0;
534
535 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
536 return 0;
537
538 /* Note: we do not d_invalidate() */
Nick Piggin34286d62011-01-07 17:49:57 +1100539 status = d_revalidate(dentry, nd);
Jeff Layton39159de2009-12-07 12:01:50 -0500540 if (status > 0)
541 return 0;
542
Al Viro16c2cd72011-02-22 15:50:10 -0500543 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500544 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500545
Al Viro9f1fafe2011-03-25 11:00:12 -0400546 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500547 return status;
548}
549
Al Viro2a737872009-04-07 11:49:53 -0400550static __always_inline void set_root(struct nameidata *nd)
551{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200552 if (!nd->root.mnt)
553 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400554}
555
Al Viro6de88d72009-08-09 01:41:57 +0400556static int link_path_walk(const char *, struct nameidata *);
557
Nick Piggin31e6b012011-01-07 17:49:52 +1100558static __always_inline void set_root_rcu(struct nameidata *nd)
559{
560 if (!nd->root.mnt) {
561 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100562 unsigned seq;
563
564 do {
565 seq = read_seqcount_begin(&fs->seq);
566 nd->root = fs->root;
Tim Chenc1530012011-04-15 11:39:29 -0700567 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
Nick Pigginc28cc362011-01-07 17:49:53 +1100568 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100569 }
570}
571
Arjan van de Venf1662352006-01-14 13:21:31 -0800572static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Nick Piggin31e6b012011-01-07 17:49:52 +1100574 int ret;
575
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 if (IS_ERR(link))
577 goto fail;
578
579 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400580 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800581 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400582 nd->path = nd->root;
583 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500584 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100586 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100587
Nick Piggin31e6b012011-01-07 17:49:52 +1100588 ret = link_path_walk(link, nd);
589 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800591 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return PTR_ERR(link);
593}
594
Jan Blunck1d957f92008-02-14 19:34:35 -0800595static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700596{
597 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800598 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700599 mntput(path->mnt);
600}
601
Nick Piggin7b9337a2011-01-14 08:42:43 +0000602static inline void path_to_nameidata(const struct path *path,
603 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700604{
Nick Piggin31e6b012011-01-07 17:49:52 +1100605 if (!(nd->flags & LOOKUP_RCU)) {
606 dput(nd->path.dentry);
607 if (nd->path.mnt != path->mnt)
608 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800609 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100610 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800611 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700612}
613
Al Viro574197e2011-03-14 22:20:34 -0400614static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
615{
616 struct inode *inode = link->dentry->d_inode;
617 if (!IS_ERR(cookie) && inode->i_op->put_link)
618 inode->i_op->put_link(link->dentry, nd, cookie);
619 path_put(link);
620}
621
Al Virodef4af32009-12-26 08:37:05 -0500622static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400623follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800624{
625 int error;
Nick Piggin7b9337a2011-01-14 08:42:43 +0000626 struct dentry *dentry = link->dentry;
Ian Kent051d3812006-03-27 01:14:53 -0800627
Al Viro844a3912011-02-15 00:38:26 -0500628 BUG_ON(nd->flags & LOOKUP_RCU);
629
Al Viro0e794582011-03-16 02:45:02 -0400630 if (link->mnt == nd->path.mnt)
631 mntget(link->mnt);
632
Al Viro574197e2011-03-14 22:20:34 -0400633 if (unlikely(current->total_link_count >= 40)) {
634 *p = ERR_PTR(-ELOOP); /* no ->put_link(), please */
Al Viro574197e2011-03-14 22:20:34 -0400635 path_put(&nd->path);
636 return -ELOOP;
637 }
638 cond_resched();
639 current->total_link_count++;
640
Al Viro68ac1232012-03-15 08:21:57 -0400641 touch_atime(link);
Ian Kent051d3812006-03-27 01:14:53 -0800642 nd_set_link(nd, NULL);
643
Al Viro36f3b4f2011-02-22 21:24:38 -0500644 error = security_inode_follow_link(link->dentry, nd);
645 if (error) {
646 *p = ERR_PTR(error); /* no ->put_link(), please */
647 path_put(&nd->path);
648 return error;
649 }
650
Al Viro86acdca12009-12-22 23:45:11 -0500651 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500652 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
653 error = PTR_ERR(*p);
654 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800655 char *s = nd_get_link(nd);
656 error = 0;
657 if (s)
658 error = __vfs_follow_link(nd, s);
Al Virobcda7652011-03-13 16:42:14 -0400659 else if (nd->last_type == LAST_BIND) {
Al Viro16c2cd72011-02-22 15:50:10 -0500660 nd->flags |= LOOKUP_JUMPED;
Al Virob21041d2011-03-14 20:01:51 -0400661 nd->inode = nd->path.dentry->d_inode;
662 if (nd->inode->i_op->follow_link) {
Al Virobcda7652011-03-13 16:42:14 -0400663 /* stepped on a _really_ weird one */
664 path_put(&nd->path);
665 error = -ELOOP;
666 }
667 }
Ian Kent051d3812006-03-27 01:14:53 -0800668 }
Ian Kent051d3812006-03-27 01:14:53 -0800669 return error;
670}
671
Nick Piggin31e6b012011-01-07 17:49:52 +1100672static int follow_up_rcu(struct path *path)
673{
Al Viro0714a532011-11-24 22:19:58 -0500674 struct mount *mnt = real_mount(path->mnt);
675 struct mount *parent;
Nick Piggin31e6b012011-01-07 17:49:52 +1100676 struct dentry *mountpoint;
677
Al Viro0714a532011-11-24 22:19:58 -0500678 parent = mnt->mnt_parent;
679 if (&parent->mnt == path->mnt)
Nick Piggin31e6b012011-01-07 17:49:52 +1100680 return 0;
Al Viroa73324d2011-11-24 22:25:07 -0500681 mountpoint = mnt->mnt_mountpoint;
Nick Piggin31e6b012011-01-07 17:49:52 +1100682 path->dentry = mountpoint;
Al Viro0714a532011-11-24 22:19:58 -0500683 path->mnt = &parent->mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +1100684 return 1;
685}
686
Al Virobab77eb2009-04-18 03:26:48 -0400687int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
Al Viro0714a532011-11-24 22:19:58 -0500689 struct mount *mnt = real_mount(path->mnt);
690 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000692
693 br_read_lock(vfsmount_lock);
Al Viro0714a532011-11-24 22:19:58 -0500694 parent = mnt->mnt_parent;
695 if (&parent->mnt == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000696 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 return 0;
698 }
Al Viro0714a532011-11-24 22:19:58 -0500699 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -0500700 mountpoint = dget(mnt->mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000701 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400702 dput(path->dentry);
703 path->dentry = mountpoint;
704 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -0500705 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 return 1;
707}
708
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100709/*
David Howells9875cf82011-01-14 18:45:21 +0000710 * Perform an automount
711 * - return -EISDIR to tell follow_managed() to stop and return the path we
712 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 */
David Howells9875cf82011-01-14 18:45:21 +0000714static int follow_automount(struct path *path, unsigned flags,
715 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100716{
David Howells9875cf82011-01-14 18:45:21 +0000717 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000718 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100719
David Howells9875cf82011-01-14 18:45:21 +0000720 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
721 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700722
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200723 /* We don't want to mount if someone's just doing a stat -
724 * unless they're stat'ing a directory and appended a '/' to
725 * the name.
726 *
727 * We do, however, want to mount if someone wants to open or
728 * create a file of any type under the mountpoint, wants to
729 * traverse through the mountpoint or wants to open the
730 * mounted directory. Also, autofs may mark negative dentries
731 * as being automount points. These will need the attentions
732 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +0000733 */
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200734 if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
Linus Torvaldsd94c1772011-09-26 17:44:55 -0700735 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200736 path->dentry->d_inode)
737 return -EISDIR;
738
David Howells9875cf82011-01-14 18:45:21 +0000739 current->total_link_count++;
740 if (current->total_link_count >= 40)
741 return -ELOOP;
742
743 mnt = path->dentry->d_op->d_automount(path);
744 if (IS_ERR(mnt)) {
745 /*
746 * The filesystem is allowed to return -EISDIR here to indicate
747 * it doesn't want to automount. For instance, autofs would do
748 * this so that its userspace daemon can mount on this dentry.
749 *
750 * However, we can only permit this if it's a terminal point in
751 * the path being looked up; if it wasn't then the remainder of
752 * the path is inaccessible and we should say so.
753 */
Al Viro49084c32011-06-25 21:59:52 -0400754 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +0000755 return -EREMOTE;
756 return PTR_ERR(mnt);
757 }
David Howellsea5b7782011-01-14 19:10:03 +0000758
David Howells9875cf82011-01-14 18:45:21 +0000759 if (!mnt) /* mount collision */
760 return 0;
761
Al Viro8aef1882011-06-16 15:10:06 +0100762 if (!*need_mntput) {
763 /* lock_mount() may release path->mnt on error */
764 mntget(path->mnt);
765 *need_mntput = true;
766 }
Al Viro19a167a2011-01-17 01:35:23 -0500767 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000768
David Howellsea5b7782011-01-14 19:10:03 +0000769 switch (err) {
770 case -EBUSY:
771 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500772 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000773 case 0:
Al Viro8aef1882011-06-16 15:10:06 +0100774 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +0000775 path->mnt = mnt;
776 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +0000777 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500778 default:
779 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000780 }
Al Viro19a167a2011-01-17 01:35:23 -0500781
David Howells9875cf82011-01-14 18:45:21 +0000782}
783
784/*
785 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000786 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000787 * - Flagged as mountpoint
788 * - Flagged as automount point
789 *
790 * This may only be called in refwalk mode.
791 *
792 * Serialization is taken care of in namespace.c
793 */
794static int follow_managed(struct path *path, unsigned flags)
795{
Al Viro8aef1882011-06-16 15:10:06 +0100796 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +0000797 unsigned managed;
798 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +0100799 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +0000800
801 /* Given that we're not holding a lock here, we retain the value in a
802 * local variable for each dentry as we look at it so that we don't see
803 * the components of that value change under us */
804 while (managed = ACCESS_ONCE(path->dentry->d_flags),
805 managed &= DCACHE_MANAGED_DENTRY,
806 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000807 /* Allow the filesystem to manage the transit without i_mutex
808 * being held. */
809 if (managed & DCACHE_MANAGE_TRANSIT) {
810 BUG_ON(!path->dentry->d_op);
811 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -0400812 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000813 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100814 break;
David Howellscc53ce52011-01-14 18:45:26 +0000815 }
816
David Howells9875cf82011-01-14 18:45:21 +0000817 /* Transit to a mounted filesystem. */
818 if (managed & DCACHE_MOUNTED) {
819 struct vfsmount *mounted = lookup_mnt(path);
820 if (mounted) {
821 dput(path->dentry);
822 if (need_mntput)
823 mntput(path->mnt);
824 path->mnt = mounted;
825 path->dentry = dget(mounted->mnt_root);
826 need_mntput = true;
827 continue;
828 }
829
830 /* Something is mounted on this dentry in another
831 * namespace and/or whatever was mounted there in this
832 * namespace got unmounted before we managed to get the
833 * vfsmount_lock */
834 }
835
836 /* Handle an automount point */
837 if (managed & DCACHE_NEED_AUTOMOUNT) {
838 ret = follow_automount(path, flags, &need_mntput);
839 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100840 break;
David Howells9875cf82011-01-14 18:45:21 +0000841 continue;
842 }
843
844 /* We didn't change the current path point */
845 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
Al Viro8aef1882011-06-16 15:10:06 +0100847
848 if (need_mntput && path->mnt == mnt)
849 mntput(path->mnt);
850 if (ret == -EISDIR)
851 ret = 0;
Al Viroa3fbbde2011-11-07 21:21:26 +0000852 return ret < 0 ? ret : need_mntput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853}
854
David Howellscc53ce52011-01-14 18:45:26 +0000855int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
857 struct vfsmount *mounted;
858
Al Viro1c755af2009-04-18 14:06:57 -0400859 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400861 dput(path->dentry);
862 mntput(path->mnt);
863 path->mnt = mounted;
864 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return 1;
866 }
867 return 0;
868}
869
Ian Kent62a73752011-03-25 01:51:02 +0800870static inline bool managed_dentry_might_block(struct dentry *dentry)
871{
872 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
873 dentry->d_op->d_manage(dentry, true) < 0);
874}
875
David Howells9875cf82011-01-14 18:45:21 +0000876/*
Al Viro287548e2011-05-27 06:50:06 -0400877 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
878 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +0000879 */
880static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -0400881 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +0000882{
Ian Kent62a73752011-03-25 01:51:02 +0800883 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -0500884 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +0800885 /*
886 * Don't forget we might have a non-mountpoint managed dentry
887 * that wants to block transit.
888 */
Al Viro287548e2011-05-27 06:50:06 -0400889 if (unlikely(managed_dentry_might_block(path->dentry)))
David Howellsab909112011-01-14 18:46:51 +0000890 return false;
Ian Kent62a73752011-03-25 01:51:02 +0800891
892 if (!d_mountpoint(path->dentry))
893 break;
894
David Howells9875cf82011-01-14 18:45:21 +0000895 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
896 if (!mounted)
897 break;
Al Viroc7105362011-11-24 18:22:03 -0500898 path->mnt = &mounted->mnt;
899 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +0000900 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +0000901 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -0700902 /*
903 * Update the inode too. We don't need to re-check the
904 * dentry sequence number here after this d_inode read,
905 * because a mount-point is always pinned.
906 */
907 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +0000908 }
David Howells9875cf82011-01-14 18:45:21 +0000909 return true;
910}
911
Al Virodea39372011-05-27 06:53:39 -0400912static void follow_mount_rcu(struct nameidata *nd)
Al Viro287548e2011-05-27 06:50:06 -0400913{
Al Virodea39372011-05-27 06:53:39 -0400914 while (d_mountpoint(nd->path.dentry)) {
Al Viroc7105362011-11-24 18:22:03 -0500915 struct mount *mounted;
Al Virodea39372011-05-27 06:53:39 -0400916 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
Al Viro287548e2011-05-27 06:50:06 -0400917 if (!mounted)
918 break;
Al Viroc7105362011-11-24 18:22:03 -0500919 nd->path.mnt = &mounted->mnt;
920 nd->path.dentry = mounted->mnt.mnt_root;
Al Virodea39372011-05-27 06:53:39 -0400921 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro287548e2011-05-27 06:50:06 -0400922 }
923}
924
Nick Piggin31e6b012011-01-07 17:49:52 +1100925static int follow_dotdot_rcu(struct nameidata *nd)
926{
Nick Piggin31e6b012011-01-07 17:49:52 +1100927 set_root_rcu(nd);
928
David Howells9875cf82011-01-14 18:45:21 +0000929 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100930 if (nd->path.dentry == nd->root.dentry &&
931 nd->path.mnt == nd->root.mnt) {
932 break;
933 }
934 if (nd->path.dentry != nd->path.mnt->mnt_root) {
935 struct dentry *old = nd->path.dentry;
936 struct dentry *parent = old->d_parent;
937 unsigned seq;
938
939 seq = read_seqcount_begin(&parent->d_seq);
940 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -0500941 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +1100942 nd->path.dentry = parent;
943 nd->seq = seq;
944 break;
945 }
946 if (!follow_up_rcu(&nd->path))
947 break;
948 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +1100949 }
Al Virodea39372011-05-27 06:53:39 -0400950 follow_mount_rcu(nd);
951 nd->inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +1100952 return 0;
Al Viroef7562d2011-03-04 14:35:59 -0500953
954failed:
955 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -0500956 if (!(nd->flags & LOOKUP_ROOT))
957 nd->root.mnt = NULL;
Al Viroef7562d2011-03-04 14:35:59 -0500958 rcu_read_unlock();
959 br_read_unlock(vfsmount_lock);
960 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +1100961}
962
David Howells9875cf82011-01-14 18:45:21 +0000963/*
David Howellscc53ce52011-01-14 18:45:26 +0000964 * Follow down to the covering mount currently visible to userspace. At each
965 * point, the filesystem owning that dentry may be queried as to whether the
966 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +0000967 */
Al Viro7cc90cc2011-03-18 09:04:20 -0400968int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +0000969{
970 unsigned managed;
971 int ret;
972
973 while (managed = ACCESS_ONCE(path->dentry->d_flags),
974 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
975 /* Allow the filesystem to manage the transit without i_mutex
976 * being held.
977 *
978 * We indicate to the filesystem if someone is trying to mount
979 * something here. This gives autofs the chance to deny anyone
980 * other than its daemon the right to mount on its
981 * superstructure.
982 *
983 * The filesystem may sleep at this point.
984 */
985 if (managed & DCACHE_MANAGE_TRANSIT) {
986 BUG_ON(!path->dentry->d_op);
987 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +0000988 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -0400989 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000990 if (ret < 0)
991 return ret == -EISDIR ? 0 : ret;
992 }
993
994 /* Transit to a mounted filesystem. */
995 if (managed & DCACHE_MOUNTED) {
996 struct vfsmount *mounted = lookup_mnt(path);
997 if (!mounted)
998 break;
999 dput(path->dentry);
1000 mntput(path->mnt);
1001 path->mnt = mounted;
1002 path->dentry = dget(mounted->mnt_root);
1003 continue;
1004 }
1005
1006 /* Don't handle automount points here */
1007 break;
1008 }
1009 return 0;
1010}
1011
1012/*
David Howells9875cf82011-01-14 18:45:21 +00001013 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1014 */
1015static void follow_mount(struct path *path)
1016{
1017 while (d_mountpoint(path->dentry)) {
1018 struct vfsmount *mounted = lookup_mnt(path);
1019 if (!mounted)
1020 break;
1021 dput(path->dentry);
1022 mntput(path->mnt);
1023 path->mnt = mounted;
1024 path->dentry = dget(mounted->mnt_root);
1025 }
1026}
1027
Nick Piggin31e6b012011-01-07 17:49:52 +11001028static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Al Viro2a737872009-04-07 11:49:53 -04001030 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001033 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Al Viro2a737872009-04-07 11:49:53 -04001035 if (nd->path.dentry == nd->root.dentry &&
1036 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 break;
1038 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001039 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001040 /* rare case of legitimate dget_parent()... */
1041 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 dput(old);
1043 break;
1044 }
Al Viro3088dd72010-01-30 15:47:29 -05001045 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
Al Viro79ed0222009-04-18 13:59:41 -04001048 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001049 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050}
1051
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001053 * This looks up the name in dcache, possibly revalidates the old dentry and
1054 * allocates a new one if not found or not valid. In the need_lookup argument
1055 * returns whether i_op->lookup is necessary.
1056 *
1057 * dir->d_inode->i_mutex must be held
Nick Pigginbaa03892010-08-18 04:37:31 +10001058 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001059static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
1060 struct nameidata *nd, bool *need_lookup)
Nick Pigginbaa03892010-08-18 04:37:31 +10001061{
Nick Pigginbaa03892010-08-18 04:37:31 +10001062 struct dentry *dentry;
Miklos Szeredibad61182012-03-26 12:54:24 +02001063 int error;
Nick Pigginbaa03892010-08-18 04:37:31 +10001064
Miklos Szeredibad61182012-03-26 12:54:24 +02001065 *need_lookup = false;
1066 dentry = d_lookup(dir, name);
1067 if (dentry) {
1068 if (d_need_lookup(dentry)) {
1069 *need_lookup = true;
1070 } else if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
1071 error = d_revalidate(dentry, nd);
1072 if (unlikely(error <= 0)) {
1073 if (error < 0) {
1074 dput(dentry);
1075 return ERR_PTR(error);
1076 } else if (!d_invalidate(dentry)) {
1077 dput(dentry);
1078 dentry = NULL;
1079 }
1080 }
1081 }
1082 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001083
Miklos Szeredibad61182012-03-26 12:54:24 +02001084 if (!dentry) {
1085 dentry = d_alloc(dir, name);
1086 if (unlikely(!dentry))
1087 return ERR_PTR(-ENOMEM);
Nick Pigginbaa03892010-08-18 04:37:31 +10001088
Miklos Szeredibad61182012-03-26 12:54:24 +02001089 *need_lookup = true;
Nick Pigginbaa03892010-08-18 04:37:31 +10001090 }
1091 return dentry;
1092}
1093
1094/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001095 * Call i_op->lookup on the dentry. The dentry must be negative but may be
1096 * hashed if it was pouplated with DCACHE_NEED_LOOKUP.
1097 *
1098 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001099 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001100static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
1101 struct nameidata *nd)
Josef Bacik44396f42011-05-31 11:58:49 -04001102{
Josef Bacik44396f42011-05-31 11:58:49 -04001103 struct dentry *old;
1104
1105 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001106 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001107 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001108 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001109 }
Josef Bacik44396f42011-05-31 11:58:49 -04001110
Miklos Szeredibad61182012-03-26 12:54:24 +02001111 old = dir->i_op->lookup(dir, dentry, nd);
Josef Bacik44396f42011-05-31 11:58:49 -04001112 if (unlikely(old)) {
1113 dput(dentry);
1114 dentry = old;
1115 }
1116 return dentry;
1117}
1118
Al Viroa3255542012-03-30 14:41:51 -04001119static struct dentry *__lookup_hash(struct qstr *name,
1120 struct dentry *base, struct nameidata *nd)
1121{
Miklos Szeredibad61182012-03-26 12:54:24 +02001122 bool need_lookup;
Al Viroa3255542012-03-30 14:41:51 -04001123 struct dentry *dentry;
1124
Miklos Szeredibad61182012-03-26 12:54:24 +02001125 dentry = lookup_dcache(name, base, nd, &need_lookup);
1126 if (!need_lookup)
1127 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001128
Miklos Szeredibad61182012-03-26 12:54:24 +02001129 return lookup_real(base->d_inode, dentry, nd);
Al Viroa3255542012-03-30 14:41:51 -04001130}
1131
Josef Bacik44396f42011-05-31 11:58:49 -04001132/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 * It's more convoluted than I'd like it to be, but... it's still fairly
1134 * small and for now I'd prefer to have fast path as straight as possible.
1135 * It _is_ time-critical.
1136 */
1137static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +11001138 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Jan Blunck4ac91372008-02-14 19:34:32 -08001140 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001141 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001142 int need_reval = 1;
1143 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001144 int err;
1145
Al Viro3cac2602009-08-13 18:27:43 +04001146 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001147 * Rename seqlock is not required here because in the off chance
1148 * of a false negative due to a concurrent rename, we're going to
1149 * do the non-racy lookup, below.
1150 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001151 if (nd->flags & LOOKUP_RCU) {
1152 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001153 *inode = nd->inode;
1154 dentry = __d_lookup_rcu(parent, name, &seq, inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001155 if (!dentry)
1156 goto unlazy;
1157
Nick Piggin31e6b012011-01-07 17:49:52 +11001158 /* Memory barrier in read_seqcount_begin of child is enough */
1159 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1160 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001161 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001162
Miklos Szeredifa4ee152012-03-26 12:54:19 +02001163 if (unlikely(d_need_lookup(dentry)))
1164 goto unlazy;
Al Viro24643082011-02-15 01:26:22 -05001165 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro5a18fff2011-03-11 04:44:53 -05001166 status = d_revalidate(dentry, nd);
1167 if (unlikely(status <= 0)) {
1168 if (status != -ECHILD)
1169 need_reval = 0;
1170 goto unlazy;
1171 }
Al Viro24643082011-02-15 01:26:22 -05001172 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001173 path->mnt = mnt;
1174 path->dentry = dentry;
Al Virod6e9bd22011-05-27 07:03:15 -04001175 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1176 goto unlazy;
1177 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1178 goto unlazy;
1179 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001180unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001181 if (unlazy_walk(nd, dentry))
1182 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001183 } else {
1184 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001185 }
Al Viro5a18fff2011-03-11 04:44:53 -05001186
Al Viro81e6f522012-03-30 14:48:04 -04001187 if (unlikely(!dentry))
1188 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001189
Al Viro81e6f522012-03-30 14:48:04 -04001190 if (unlikely(d_need_lookup(dentry))) {
1191 dput(dentry);
1192 goto need_lookup;
Al Viro24643082011-02-15 01:26:22 -05001193 }
Al Viro81e6f522012-03-30 14:48:04 -04001194
Al Viro5a18fff2011-03-11 04:44:53 -05001195 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1196 status = d_revalidate(dentry, nd);
1197 if (unlikely(status <= 0)) {
1198 if (status < 0) {
1199 dput(dentry);
1200 return status;
1201 }
1202 if (!d_invalidate(dentry)) {
1203 dput(dentry);
Al Viro81e6f522012-03-30 14:48:04 -04001204 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001205 }
1206 }
Al Viro3f6c7c72012-03-30 14:04:16 -04001207done:
David Howells9875cf82011-01-14 18:45:21 +00001208 path->mnt = mnt;
1209 path->dentry = dentry;
1210 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001211 if (unlikely(err < 0)) {
1212 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001213 return err;
Ian Kent89312212011-01-18 12:06:10 +08001214 }
Al Viroa3fbbde2011-11-07 21:21:26 +00001215 if (err)
1216 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001217 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 return 0;
Al Viro81e6f522012-03-30 14:48:04 -04001219
1220need_lookup:
1221 BUG_ON(nd->inode != parent->d_inode);
1222
1223 mutex_lock(&parent->d_inode->i_mutex);
1224 dentry = __lookup_hash(name, parent, nd);
1225 mutex_unlock(&parent->d_inode->i_mutex);
1226 if (IS_ERR(dentry))
1227 return PTR_ERR(dentry);
1228 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229}
1230
Al Viro52094c82011-02-21 21:34:47 -05001231static inline int may_lookup(struct nameidata *nd)
1232{
1233 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001234 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001235 if (err != -ECHILD)
1236 return err;
Al Viro19660af2011-03-25 10:32:48 -04001237 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001238 return -ECHILD;
1239 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001240 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001241}
1242
Al Viro9856fa12011-03-04 14:22:06 -05001243static inline int handle_dots(struct nameidata *nd, int type)
1244{
1245 if (type == LAST_DOTDOT) {
1246 if (nd->flags & LOOKUP_RCU) {
1247 if (follow_dotdot_rcu(nd))
1248 return -ECHILD;
1249 } else
1250 follow_dotdot(nd);
1251 }
1252 return 0;
1253}
1254
Al Viro951361f2011-03-04 14:44:37 -05001255static void terminate_walk(struct nameidata *nd)
1256{
1257 if (!(nd->flags & LOOKUP_RCU)) {
1258 path_put(&nd->path);
1259 } else {
1260 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001261 if (!(nd->flags & LOOKUP_ROOT))
1262 nd->root.mnt = NULL;
Al Viro951361f2011-03-04 14:44:37 -05001263 rcu_read_unlock();
1264 br_read_unlock(vfsmount_lock);
1265 }
1266}
1267
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001268/*
1269 * Do we need to follow links? We _really_ want to be able
1270 * to do this check without having to look at inode->i_op,
1271 * so we keep a cache of "no, this doesn't need follow_link"
1272 * for the common case.
1273 */
Linus Torvalds7813b942011-08-07 09:53:20 -07001274static inline int should_follow_link(struct inode *inode, int follow)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001275{
1276 if (unlikely(!(inode->i_opflags & IOP_NOFOLLOW))) {
1277 if (likely(inode->i_op->follow_link))
1278 return follow;
1279
1280 /* This gets set once for the inode lifetime */
1281 spin_lock(&inode->i_lock);
1282 inode->i_opflags |= IOP_NOFOLLOW;
1283 spin_unlock(&inode->i_lock);
1284 }
1285 return 0;
1286}
1287
Al Viroce57dfc2011-03-13 19:58:58 -04001288static inline int walk_component(struct nameidata *nd, struct path *path,
1289 struct qstr *name, int type, int follow)
1290{
1291 struct inode *inode;
1292 int err;
1293 /*
1294 * "." and ".." are special - ".." especially so because it has
1295 * to be able to know about the current root directory and
1296 * parent relationships.
1297 */
1298 if (unlikely(type != LAST_NORM))
1299 return handle_dots(nd, type);
1300 err = do_lookup(nd, name, path, &inode);
1301 if (unlikely(err)) {
1302 terminate_walk(nd);
1303 return err;
1304 }
1305 if (!inode) {
1306 path_to_nameidata(path, nd);
1307 terminate_walk(nd);
1308 return -ENOENT;
1309 }
Linus Torvalds7813b942011-08-07 09:53:20 -07001310 if (should_follow_link(inode, follow)) {
Al Viro19660af2011-03-25 10:32:48 -04001311 if (nd->flags & LOOKUP_RCU) {
1312 if (unlikely(unlazy_walk(nd, path->dentry))) {
1313 terminate_walk(nd);
1314 return -ECHILD;
1315 }
1316 }
Al Viroce57dfc2011-03-13 19:58:58 -04001317 BUG_ON(inode != path->dentry->d_inode);
1318 return 1;
1319 }
1320 path_to_nameidata(path, nd);
1321 nd->inode = inode;
1322 return 0;
1323}
1324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325/*
Al Virob3563792011-03-14 21:54:55 -04001326 * This limits recursive symlink follows to 8, while
1327 * limiting consecutive symlinks to 40.
1328 *
1329 * Without that kind of total limit, nasty chains of consecutive
1330 * symlinks can cause almost arbitrarily long lookups.
1331 */
1332static inline int nested_symlink(struct path *path, struct nameidata *nd)
1333{
1334 int res;
1335
Al Virob3563792011-03-14 21:54:55 -04001336 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1337 path_put_conditional(path, nd);
1338 path_put(&nd->path);
1339 return -ELOOP;
1340 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001341 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001342
1343 nd->depth++;
1344 current->link_count++;
1345
1346 do {
1347 struct path link = *path;
1348 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001349
1350 res = follow_link(&link, nd, &cookie);
Al Virob3563792011-03-14 21:54:55 -04001351 if (!res)
1352 res = walk_component(nd, path, &nd->last,
1353 nd->last_type, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001354 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001355 } while (res > 0);
1356
1357 current->link_count--;
1358 nd->depth--;
1359 return res;
1360}
1361
1362/*
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001363 * We really don't want to look at inode->i_op->lookup
1364 * when we don't have to. So we keep a cache bit in
1365 * the inode ->i_opflags field that says "yes, we can
1366 * do lookup on this inode".
1367 */
1368static inline int can_lookup(struct inode *inode)
1369{
1370 if (likely(inode->i_opflags & IOP_LOOKUP))
1371 return 1;
1372 if (likely(!inode->i_op->lookup))
1373 return 0;
1374
1375 /* We do this once for the lifetime of the inode */
1376 spin_lock(&inode->i_lock);
1377 inode->i_opflags |= IOP_LOOKUP;
1378 spin_unlock(&inode->i_lock);
1379 return 1;
1380}
1381
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001382/*
1383 * We can do the critical dentry name comparison and hashing
1384 * operations one word at a time, but we are limited to:
1385 *
1386 * - Architectures with fast unaligned word accesses. We could
1387 * do a "get_unaligned()" if this helps and is sufficiently
1388 * fast.
1389 *
1390 * - Little-endian machines (so that we can generate the mask
1391 * of low bytes efficiently). Again, we *could* do a byte
1392 * swapping load on big-endian architectures if that is not
1393 * expensive enough to make the optimization worthless.
1394 *
1395 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1396 * do not trap on the (extremely unlikely) case of a page
1397 * crossing operation.
1398 *
1399 * - Furthermore, we need an efficient 64-bit compile for the
1400 * 64-bit case in order to generate the "number of bytes in
1401 * the final mask". Again, that could be replaced with a
1402 * efficient population count instruction or similar.
1403 */
1404#ifdef CONFIG_DCACHE_WORD_ACCESS
1405
1406#ifdef CONFIG_64BIT
1407
1408/*
1409 * Jan Achrenius on G+: microoptimized version of
1410 * the simpler "(mask & ONEBYTES) * ONEBYTES >> 56"
1411 * that works for the bytemasks without having to
1412 * mask them first.
1413 */
1414static inline long count_masked_bytes(unsigned long mask)
1415{
Linus Torvaldsf7493e52012-03-22 16:10:40 -07001416 return mask*0x0001020304050608ul >> 56;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001417}
1418
1419static inline unsigned int fold_hash(unsigned long hash)
1420{
1421 hash += hash >> (8*sizeof(int));
1422 return hash;
1423}
1424
1425#else /* 32-bit case */
1426
1427/* Carl Chatfield / Jan Achrenius G+ version for 32-bit */
1428static inline long count_masked_bytes(long mask)
1429{
1430 /* (000000 0000ff 00ffff ffffff) -> ( 1 1 2 3 ) */
1431 long a = (0x0ff0001+mask) >> 23;
1432 /* Fix the 1 for 00 case */
1433 return a & mask;
1434}
1435
1436#define fold_hash(x) (x)
1437
1438#endif
1439
1440unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1441{
1442 unsigned long a, mask;
1443 unsigned long hash = 0;
1444
1445 for (;;) {
1446 a = *(unsigned long *)name;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001447 if (len < sizeof(unsigned long))
1448 break;
1449 hash += a;
Al Virof132c5b2012-03-22 21:59:52 +00001450 hash *= 9;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001451 name += sizeof(unsigned long);
1452 len -= sizeof(unsigned long);
1453 if (!len)
1454 goto done;
1455 }
1456 mask = ~(~0ul << len*8);
1457 hash += mask & a;
1458done:
1459 return fold_hash(hash);
1460}
1461EXPORT_SYMBOL(full_name_hash);
1462
Linus Torvalds989412b2012-03-22 15:58:27 -07001463#define REPEAT_BYTE(x) ((~0ul / 0xff) * (x))
1464#define ONEBYTES REPEAT_BYTE(0x01)
1465#define SLASHBYTES REPEAT_BYTE('/')
1466#define HIGHBITS REPEAT_BYTE(0x80)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001467
1468/* Return the high bit set in the first byte that is a zero */
1469static inline unsigned long has_zero(unsigned long a)
1470{
1471 return ((a - ONEBYTES) & ~a) & HIGHBITS;
1472}
1473
1474/*
1475 * Calculate the length and hash of the path component, and
1476 * return the length of the component;
1477 */
1478static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1479{
1480 unsigned long a, mask, hash, len;
1481
1482 hash = a = 0;
1483 len = -sizeof(unsigned long);
1484 do {
1485 hash = (hash + a) * 9;
1486 len += sizeof(unsigned long);
1487 a = *(unsigned long *)(name+len);
1488 /* Do we have any NUL or '/' bytes in this word? */
1489 mask = has_zero(a) | has_zero(a ^ SLASHBYTES);
1490 } while (!mask);
1491
1492 /* The mask *below* the first high bit set */
1493 mask = (mask - 1) & ~mask;
1494 mask >>= 7;
1495 hash += a & mask;
1496 *hashp = fold_hash(hash);
1497
1498 return len + count_masked_bytes(mask);
1499}
1500
1501#else
1502
Linus Torvalds0145acc2012-03-02 14:32:59 -08001503unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1504{
1505 unsigned long hash = init_name_hash();
1506 while (len--)
1507 hash = partial_name_hash(*name++, hash);
1508 return end_name_hash(hash);
1509}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001510EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001511
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001512/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001513 * We know there's a real path component here of at least
1514 * one character.
1515 */
1516static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1517{
1518 unsigned long hash = init_name_hash();
1519 unsigned long len = 0, c;
1520
1521 c = (unsigned char)*name;
1522 do {
1523 len++;
1524 hash = partial_name_hash(c, hash);
1525 c = (unsigned char)name[len];
1526 } while (c && c != '/');
1527 *hashp = end_name_hash(hash);
1528 return len;
1529}
1530
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001531#endif
1532
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001533/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001535 * This is the basic name resolution function, turning a pathname into
1536 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001538 * Returns 0 and nd will have valid dentry and mnt on success.
1539 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 */
Al Viro6de88d72009-08-09 01:41:57 +04001541static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
1543 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
1546 while (*name=='/')
1547 name++;
1548 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001549 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 /* At this point we know we have a real path component. */
1552 for(;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 struct qstr this;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001554 long len;
Al Virofe479a52011-02-22 15:10:03 -05001555 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Al Viro52094c82011-02-21 21:34:47 -05001557 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 if (err)
1559 break;
1560
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001561 len = hash_name(name, &this.hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 this.name = name;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001563 this.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Al Virofe479a52011-02-22 15:10:03 -05001565 type = LAST_NORM;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001566 if (name[0] == '.') switch (len) {
Al Virofe479a52011-02-22 15:10:03 -05001567 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001568 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001569 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001570 nd->flags |= LOOKUP_JUMPED;
1571 }
Al Virofe479a52011-02-22 15:10:03 -05001572 break;
1573 case 1:
1574 type = LAST_DOT;
1575 }
Al Viro5a202bc2011-03-08 14:17:44 -05001576 if (likely(type == LAST_NORM)) {
1577 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001578 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001579 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1580 err = parent->d_op->d_hash(parent, nd->inode,
1581 &this);
1582 if (err < 0)
1583 break;
1584 }
1585 }
Al Virofe479a52011-02-22 15:10:03 -05001586
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001587 if (!name[len])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 goto last_component;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001589 /*
1590 * If it wasn't NUL, we know it was '/'. Skip that
1591 * slash, and continue until no more slashes.
1592 */
1593 do {
1594 len++;
1595 } while (unlikely(name[len] == '/'));
1596 if (!name[len])
Al Virob3563792011-03-14 21:54:55 -04001597 goto last_component;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001598 name += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Al Viroce57dfc2011-03-13 19:58:58 -04001600 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1601 if (err < 0)
1602 return err;
Al Virofe479a52011-02-22 15:10:03 -05001603
Al Viroce57dfc2011-03-13 19:58:58 -04001604 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001605 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001607 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001608 }
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001609 if (can_lookup(nd->inode))
1610 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 err = -ENOTDIR;
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001612 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 /* here ends the main loop */
1614
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615last_component:
Al Virob3563792011-03-14 21:54:55 -04001616 nd->last = this;
1617 nd->last_type = type;
Al Viro086e1832011-02-22 20:56:27 -05001618 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 }
Al Viro951361f2011-03-04 14:44:37 -05001620 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 return err;
1622}
1623
Al Viro70e9b352011-03-05 21:12:22 -05001624static int path_init(int dfd, const char *name, unsigned int flags,
1625 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001627 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001628 int fput_needed;
1629 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
1631 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001632 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001634 if (flags & LOOKUP_ROOT) {
1635 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001636 if (*name) {
1637 if (!inode->i_op->lookup)
1638 return -ENOTDIR;
1639 retval = inode_permission(inode, MAY_EXEC);
1640 if (retval)
1641 return retval;
1642 }
Al Viro5b6ca022011-03-09 23:04:47 -05001643 nd->path = nd->root;
1644 nd->inode = inode;
1645 if (flags & LOOKUP_RCU) {
1646 br_read_lock(vfsmount_lock);
1647 rcu_read_lock();
1648 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1649 } else {
1650 path_get(&nd->path);
1651 }
1652 return 0;
1653 }
1654
Al Viro2a737872009-04-07 11:49:53 -04001655 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001658 if (flags & LOOKUP_RCU) {
1659 br_read_lock(vfsmount_lock);
1660 rcu_read_lock();
1661 set_root_rcu(nd);
1662 } else {
1663 set_root(nd);
1664 path_get(&nd->root);
1665 }
Al Viro2a737872009-04-07 11:49:53 -04001666 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001667 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001668 if (flags & LOOKUP_RCU) {
1669 struct fs_struct *fs = current->fs;
1670 unsigned seq;
1671
1672 br_read_lock(vfsmount_lock);
1673 rcu_read_lock();
1674
1675 do {
1676 seq = read_seqcount_begin(&fs->seq);
1677 nd->path = fs->pwd;
1678 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1679 } while (read_seqcount_retry(&fs->seq, seq));
1680 } else {
1681 get_fs_pwd(current->fs, &nd->path);
1682 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001683 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001684 struct dentry *dentry;
1685
Al Viro1abf0c72011-03-13 03:51:11 -04001686 file = fget_raw_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001687 retval = -EBADF;
1688 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001689 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001690
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001691 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001692
Al Virof52e0c12011-03-14 18:56:51 -04001693 if (*name) {
1694 retval = -ENOTDIR;
1695 if (!S_ISDIR(dentry->d_inode->i_mode))
1696 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001697
Al Viro4ad5abb2011-06-20 19:57:03 -04001698 retval = inode_permission(dentry->d_inode, MAY_EXEC);
Al Virof52e0c12011-03-14 18:56:51 -04001699 if (retval)
1700 goto fput_fail;
1701 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001702
Jan Blunck5dd784d2008-02-14 19:34:38 -08001703 nd->path = file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001704 if (flags & LOOKUP_RCU) {
1705 if (fput_needed)
Al Viro70e9b352011-03-05 21:12:22 -05001706 *fp = file;
Al Viroe41f7d42011-02-22 14:02:58 -05001707 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1708 br_read_lock(vfsmount_lock);
1709 rcu_read_lock();
1710 } else {
1711 path_get(&file->f_path);
1712 fput_light(file, fput_needed);
1713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 }
Al Viroe41f7d42011-02-22 14:02:58 -05001715
Nick Piggin31e6b012011-01-07 17:49:52 +11001716 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001717 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001718
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001719fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001720 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001721out_fail:
1722 return retval;
1723}
1724
Al Virobd92d7f2011-03-14 19:54:59 -04001725static inline int lookup_last(struct nameidata *nd, struct path *path)
1726{
1727 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1728 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1729
1730 nd->flags &= ~LOOKUP_PARENT;
1731 return walk_component(nd, path, &nd->last, nd->last_type,
1732 nd->flags & LOOKUP_FOLLOW);
1733}
1734
Al Viro9b4a9b12009-04-07 11:44:16 -04001735/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001736static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001737 unsigned int flags, struct nameidata *nd)
1738{
Al Viro70e9b352011-03-05 21:12:22 -05001739 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001740 struct path path;
1741 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001742
1743 /*
1744 * Path walking is largely split up into 2 different synchronisation
1745 * schemes, rcu-walk and ref-walk (explained in
1746 * Documentation/filesystems/path-lookup.txt). These share much of the
1747 * path walk code, but some things particularly setup, cleanup, and
1748 * following mounts are sufficiently divergent that functions are
1749 * duplicated. Typically there is a function foo(), and its RCU
1750 * analogue, foo_rcu().
1751 *
1752 * -ECHILD is the error number of choice (just to avoid clashes) that
1753 * is returned if some aspect of an rcu-walk fails. Such an error must
1754 * be handled by restarting a traditional ref-walk (which will always
1755 * be able to complete).
1756 */
Al Virobd92d7f2011-03-14 19:54:59 -04001757 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001758
Al Virobd92d7f2011-03-14 19:54:59 -04001759 if (unlikely(err))
1760 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001761
1762 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001763 err = link_path_walk(name, nd);
1764
1765 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001766 err = lookup_last(nd, &path);
1767 while (err > 0) {
1768 void *cookie;
1769 struct path link = path;
Al Virobd92d7f2011-03-14 19:54:59 -04001770 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001771 err = follow_link(&link, nd, &cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001772 if (!err)
1773 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001774 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001775 }
1776 }
Al Viroee0827c2011-02-21 23:38:09 -05001777
Al Viro9f1fafe2011-03-25 11:00:12 -04001778 if (!err)
1779 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001780
1781 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1782 if (!nd->inode->i_op->lookup) {
1783 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001784 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001785 }
1786 }
Al Viro16c2cd72011-02-22 15:50:10 -05001787
Al Viro70e9b352011-03-05 21:12:22 -05001788 if (base)
1789 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001790
Al Viro5b6ca022011-03-09 23:04:47 -05001791 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001792 path_put(&nd->root);
1793 nd->root.mnt = NULL;
1794 }
Al Virobd92d7f2011-03-14 19:54:59 -04001795 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001796}
Nick Piggin31e6b012011-01-07 17:49:52 +11001797
Al Viroee0827c2011-02-21 23:38:09 -05001798static int do_path_lookup(int dfd, const char *name,
1799 unsigned int flags, struct nameidata *nd)
1800{
1801 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1802 if (unlikely(retval == -ECHILD))
1803 retval = path_lookupat(dfd, name, flags, nd);
1804 if (unlikely(retval == -ESTALE))
1805 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001806
1807 if (likely(!retval)) {
1808 if (unlikely(!audit_dummy_context())) {
1809 if (nd->path.dentry && nd->inode)
1810 audit_inode(name, nd->path.dentry);
1811 }
1812 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001813 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814}
1815
Al Viroc9c6cac2011-02-16 15:15:47 -05001816int kern_path_parent(const char *name, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001817{
Al Viroc9c6cac2011-02-16 15:15:47 -05001818 return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001819}
1820
Al Virod1811462008-08-02 00:49:18 -04001821int kern_path(const char *name, unsigned int flags, struct path *path)
1822{
1823 struct nameidata nd;
1824 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1825 if (!res)
1826 *path = nd.path;
1827 return res;
1828}
1829
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001830/**
1831 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1832 * @dentry: pointer to dentry of the base directory
1833 * @mnt: pointer to vfs mount of the base directory
1834 * @name: pointer to file name
1835 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04001836 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001837 */
1838int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1839 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04001840 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001841{
Al Viroe0a01242011-06-27 17:00:37 -04001842 struct nameidata nd;
1843 int err;
1844 nd.root.dentry = dentry;
1845 nd.root.mnt = mnt;
1846 BUG_ON(flags & LOOKUP_PARENT);
Al Viro5b6ca022011-03-09 23:04:47 -05001847 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
Al Viroe0a01242011-06-27 17:00:37 -04001848 err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
1849 if (!err)
1850 *path = nd.path;
1851 return err;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001852}
1853
James Morris057f6c02007-04-26 00:12:05 -07001854/*
1855 * Restricted form of lookup. Doesn't follow links, single-component only,
1856 * needs parent already locked. Doesn't follow mounts.
1857 * SMP-safe.
1858 */
Adrian Bunka244e162006-03-31 02:32:11 -08001859static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860{
Jan Blunck4ac91372008-02-14 19:34:32 -08001861 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862}
1863
Christoph Hellwigeead1912007-10-16 23:25:38 -07001864/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001865 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001866 * @name: pathname component to lookup
1867 * @base: base directory to lookup from
1868 * @len: maximum length @len should be interpreted to
1869 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001870 * Note that this routine is purely a helper for filesystem usage and should
1871 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001872 * nameidata argument is passed to the filesystem methods and a filesystem
1873 * using this helper needs to be prepared for that.
1874 */
James Morris057f6c02007-04-26 00:12:05 -07001875struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1876{
James Morris057f6c02007-04-26 00:12:05 -07001877 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05001878 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02001879 int err;
James Morris057f6c02007-04-26 00:12:05 -07001880
David Woodhouse2f9092e2009-04-20 23:18:37 +01001881 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1882
Al Viro6a96ba52011-03-07 23:49:20 -05001883 this.name = name;
1884 this.len = len;
Linus Torvalds0145acc2012-03-02 14:32:59 -08001885 this.hash = full_name_hash(name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05001886 if (!len)
1887 return ERR_PTR(-EACCES);
1888
Al Viro6a96ba52011-03-07 23:49:20 -05001889 while (len--) {
1890 c = *(const unsigned char *)name++;
1891 if (c == '/' || c == '\0')
1892 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05001893 }
Al Viro5a202bc2011-03-08 14:17:44 -05001894 /*
1895 * See if the low-level filesystem might want
1896 * to use its own hash..
1897 */
1898 if (base->d_flags & DCACHE_OP_HASH) {
1899 int err = base->d_op->d_hash(base, base->d_inode, &this);
1900 if (err < 0)
1901 return ERR_PTR(err);
1902 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07001903
Miklos Szeredicda309d2012-03-26 12:54:21 +02001904 err = inode_permission(base->d_inode, MAY_EXEC);
1905 if (err)
1906 return ERR_PTR(err);
1907
Christoph Hellwig49705b72005-11-08 21:35:06 -08001908 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001909}
1910
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01001911int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
1912 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913{
Al Viro2d8f3032008-07-22 09:59:21 -04001914 struct nameidata nd;
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01001915 char *tmp = getname_flags(name, flags, empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001918
1919 BUG_ON(flags & LOOKUP_PARENT);
1920
1921 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001923 if (!err)
1924 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 }
1926 return err;
1927}
1928
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01001929int user_path_at(int dfd, const char __user *name, unsigned flags,
1930 struct path *path)
1931{
Linus Torvaldsf7493e52012-03-22 16:10:40 -07001932 return user_path_at_empty(dfd, name, flags, path, NULL);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01001933}
1934
Al Viro2ad94ae2008-07-21 09:32:51 -04001935static int user_path_parent(int dfd, const char __user *path,
1936 struct nameidata *nd, char **name)
1937{
1938 char *s = getname(path);
1939 int error;
1940
1941 if (IS_ERR(s))
1942 return PTR_ERR(s);
1943
1944 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1945 if (error)
1946 putname(s);
1947 else
1948 *name = s;
1949
1950 return error;
1951}
1952
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953/*
1954 * It's inline, so penalty for filesystems that don't use sticky bit is
1955 * minimal.
1956 */
1957static inline int check_sticky(struct inode *dir, struct inode *inode)
1958{
David Howellsda9592e2008-11-14 10:39:05 +11001959 uid_t fsuid = current_fsuid();
1960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 if (!(dir->i_mode & S_ISVTX))
1962 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001963 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001965 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return 0;
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -08001967 return !inode_capable(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968}
1969
1970/*
1971 * Check whether we can remove a link victim from directory dir, check
1972 * whether the type of victim is right.
1973 * 1. We can't do it if dir is read-only (done in permission())
1974 * 2. We should have write and exec permissions on dir
1975 * 3. We can't remove anything from append-only dir
1976 * 4. We can't do anything with immutable dir (done in permission())
1977 * 5. If the sticky bit on dir is set we should either
1978 * a. be owner of dir, or
1979 * b. be owner of victim, or
1980 * c. have CAP_FOWNER capability
1981 * 6. If the victim is append-only or immutable we can't do antyhing with
1982 * links pointing to it.
1983 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1984 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1985 * 9. We can't remove a root or mountpoint.
1986 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1987 * nfs_async_unlink().
1988 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001989static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990{
1991 int error;
1992
1993 if (!victim->d_inode)
1994 return -ENOENT;
1995
1996 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001997 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Al Virof419a2e2008-07-22 00:07:17 -04001999 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 if (error)
2001 return error;
2002 if (IS_APPEND(dir))
2003 return -EPERM;
2004 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08002005 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 return -EPERM;
2007 if (isdir) {
2008 if (!S_ISDIR(victim->d_inode->i_mode))
2009 return -ENOTDIR;
2010 if (IS_ROOT(victim))
2011 return -EBUSY;
2012 } else if (S_ISDIR(victim->d_inode->i_mode))
2013 return -EISDIR;
2014 if (IS_DEADDIR(dir))
2015 return -ENOENT;
2016 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2017 return -EBUSY;
2018 return 0;
2019}
2020
2021/* Check whether we can create an object with dentry child in directory
2022 * dir.
2023 * 1. We can't do it if child already exists (open has special treatment for
2024 * this case, but since we are inlined it's OK)
2025 * 2. We can't do it if dir is read-only (done in permission())
2026 * 3. We should have write and exec permissions on dir
2027 * 4. We can't do it if dir is immutable (done in permission())
2028 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002029static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030{
2031 if (child->d_inode)
2032 return -EEXIST;
2033 if (IS_DEADDIR(dir))
2034 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04002035 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036}
2037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038/*
2039 * p1 and p2 should be directories on the same fs.
2040 */
2041struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2042{
2043 struct dentry *p;
2044
2045 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07002046 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 return NULL;
2048 }
2049
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002050 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002052 p = d_ancestor(p2, p1);
2053 if (p) {
2054 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2055 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2056 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 }
2058
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002059 p = d_ancestor(p1, p2);
2060 if (p) {
2061 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2062 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2063 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 }
2065
Ingo Molnarf2eace22006-07-03 00:25:05 -07002066 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2067 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 return NULL;
2069}
2070
2071void unlock_rename(struct dentry *p1, struct dentry *p2)
2072{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002073 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002075 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002076 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 }
2078}
2079
Al Viro4acdaf22011-07-26 01:42:34 -04002080int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 struct nameidata *nd)
2082{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002083 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084
2085 if (error)
2086 return error;
2087
Al Viroacfa4382008-12-04 10:06:33 -05002088 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 return -EACCES; /* shouldn't it be ENOSYS? */
2090 mode &= S_IALLUGO;
2091 mode |= S_IFREG;
2092 error = security_inode_create(dir, dentry, mode);
2093 if (error)
2094 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002096 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002097 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 return error;
2099}
2100
Al Viro73d049a2011-03-11 12:08:24 -05002101static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002103 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 struct inode *inode = dentry->d_inode;
2105 int error;
2106
Al Virobcda7652011-03-13 16:42:14 -04002107 /* O_PATH? */
2108 if (!acc_mode)
2109 return 0;
2110
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 if (!inode)
2112 return -ENOENT;
2113
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002114 switch (inode->i_mode & S_IFMT) {
2115 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002117 case S_IFDIR:
2118 if (acc_mode & MAY_WRITE)
2119 return -EISDIR;
2120 break;
2121 case S_IFBLK:
2122 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002123 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002125 /*FALLTHRU*/
2126 case S_IFIFO:
2127 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002129 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002130 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002131
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002132 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002133 if (error)
2134 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 /*
2137 * An append-only file must be opened in append mode for writing.
2138 */
2139 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002140 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002141 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002143 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 }
2145
2146 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002147 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002148 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002150 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002151}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Jeff Laytone1181ee2010-12-07 16:19:50 -05002153static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002154{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002155 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002156 struct inode *inode = path->dentry->d_inode;
2157 int error = get_write_access(inode);
2158 if (error)
2159 return error;
2160 /*
2161 * Refuse to truncate files with mandatory locks held on them.
2162 */
2163 error = locks_verify_locked(inode);
2164 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002165 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002166 if (!error) {
2167 error = do_truncate(path->dentry, 0,
2168 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002169 filp);
Al Viro7715b522009-12-16 03:54:00 -05002170 }
2171 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002172 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173}
2174
Dave Hansend57999e2008-02-15 14:37:27 -08002175static inline int open_to_namei_flags(int flag)
2176{
Al Viro8a5e9292011-06-25 19:15:54 -04002177 if ((flag & O_ACCMODE) == 3)
2178 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002179 return flag;
2180}
2181
Nick Piggin31e6b012011-01-07 17:49:52 +11002182/*
Al Virofe2d35f2011-03-05 22:58:25 -05002183 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002184 */
Al Virofb1cc552009-12-24 01:58:28 -05002185static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viroc3e380b2011-02-23 13:39:45 -05002186 const struct open_flags *op, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002187{
Al Viroa1e28032009-12-24 02:12:06 -05002188 struct dentry *dir = nd->path.dentry;
Al Viro6c0d46c2011-03-09 00:59:59 -05002189 struct dentry *dentry;
Al Viroca344a892011-03-09 00:36:45 -05002190 int open_flag = op->open_flag;
Al Viro6c0d46c2011-03-09 00:59:59 -05002191 int will_truncate = open_flag & O_TRUNC;
Al Viroca344a892011-03-09 00:36:45 -05002192 int want_write = 0;
Al Virobcda7652011-03-13 16:42:14 -04002193 int acc_mode = op->acc_mode;
Al Virofb1cc552009-12-24 01:58:28 -05002194 struct file *filp;
Al Viro16c2cd72011-02-22 15:50:10 -05002195 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002196
Al Viroc3e380b2011-02-23 13:39:45 -05002197 nd->flags &= ~LOOKUP_PARENT;
2198 nd->flags |= op->intent;
2199
Al Viro1f36f772009-12-26 10:56:19 -05002200 switch (nd->last_type) {
2201 case LAST_DOTDOT:
Neil Brown176306f2010-05-24 16:57:56 +10002202 case LAST_DOT:
Al Virofe2d35f2011-03-05 22:58:25 -05002203 error = handle_dots(nd, nd->last_type);
2204 if (error)
2205 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002206 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002207 case LAST_ROOT:
Al Viro9f1fafe2011-03-25 11:00:12 -04002208 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002209 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002210 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002211 audit_inode(pathname, nd->path.dentry);
Al Viroca344a892011-03-09 00:36:45 -05002212 if (open_flag & O_CREAT) {
Al Virofe2d35f2011-03-05 22:58:25 -05002213 error = -EISDIR;
2214 goto exit;
2215 }
2216 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002217 case LAST_BIND:
Al Viro9f1fafe2011-03-25 11:00:12 -04002218 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002219 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002220 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002221 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002222 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002223 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002224
Al Viroca344a892011-03-09 00:36:45 -05002225 if (!(open_flag & O_CREAT)) {
Al Virobcda7652011-03-13 16:42:14 -04002226 int symlink_ok = 0;
Al Virofe2d35f2011-03-05 22:58:25 -05002227 if (nd->last.name[nd->last.len])
2228 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002229 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2230 symlink_ok = 1;
Al Virofe2d35f2011-03-05 22:58:25 -05002231 /* we _can_ be in RCU mode here */
Al Viroce57dfc2011-03-13 19:58:58 -04002232 error = walk_component(nd, path, &nd->last, LAST_NORM,
2233 !symlink_ok);
2234 if (error < 0)
Al Virofe2d35f2011-03-05 22:58:25 -05002235 return ERR_PTR(error);
Al Viroce57dfc2011-03-13 19:58:58 -04002236 if (error) /* symlink */
Al Virofe2d35f2011-03-05 22:58:25 -05002237 return NULL;
Al Virofe2d35f2011-03-05 22:58:25 -05002238 /* sayonara */
Al Viro9f1fafe2011-03-25 11:00:12 -04002239 error = complete_walk(nd);
2240 if (error)
Miklos Szeredi7f6c7e62012-03-06 13:56:34 +01002241 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002242
2243 error = -ENOTDIR;
2244 if (nd->flags & LOOKUP_DIRECTORY) {
Al Viroce57dfc2011-03-13 19:58:58 -04002245 if (!nd->inode->i_op->lookup)
Al Virofe2d35f2011-03-05 22:58:25 -05002246 goto exit;
2247 }
2248 audit_inode(pathname, nd->path.dentry);
2249 goto ok;
2250 }
2251
2252 /* create side of things */
Al Viroa3fbbde2011-11-07 21:21:26 +00002253 /*
2254 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED has been
2255 * cleared when we got to the last component we are about to look up
2256 */
Al Viro9f1fafe2011-03-25 11:00:12 -04002257 error = complete_walk(nd);
2258 if (error)
2259 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002260
2261 audit_inode(pathname, dir);
Al Viro16c2cd72011-02-22 15:50:10 -05002262 error = -EISDIR;
Al Viro1f36f772009-12-26 10:56:19 -05002263 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002264 if (nd->last.name[nd->last.len])
2265 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002266
Al Viroa1e28032009-12-24 02:12:06 -05002267 mutex_lock(&dir->d_inode->i_mutex);
2268
Al Viro6c0d46c2011-03-09 00:59:59 -05002269 dentry = lookup_hash(nd);
2270 error = PTR_ERR(dentry);
2271 if (IS_ERR(dentry)) {
Al Virofb1cc552009-12-24 01:58:28 -05002272 mutex_unlock(&dir->d_inode->i_mutex);
2273 goto exit;
2274 }
2275
Al Viro6c0d46c2011-03-09 00:59:59 -05002276 path->dentry = dentry;
2277 path->mnt = nd->path.mnt;
2278
Al Virofb1cc552009-12-24 01:58:28 -05002279 /* Negative dentry, just create the file */
Al Viro6c0d46c2011-03-09 00:59:59 -05002280 if (!dentry->d_inode) {
Al Viroa218d0f2011-11-21 14:59:34 -05002281 umode_t mode = op->mode;
Al Viro6c0d46c2011-03-09 00:59:59 -05002282 if (!IS_POSIXACL(dir->d_inode))
2283 mode &= ~current_umask();
Al Virofb1cc552009-12-24 01:58:28 -05002284 /*
2285 * This write is needed to ensure that a
Al Viro6c0d46c2011-03-09 00:59:59 -05002286 * rw->ro transition does not occur between
Al Virofb1cc552009-12-24 01:58:28 -05002287 * the time when the file is created and when
2288 * a permanent write count is taken through
2289 * the 'struct file' in nameidata_to_filp().
2290 */
2291 error = mnt_want_write(nd->path.mnt);
2292 if (error)
2293 goto exit_mutex_unlock;
Al Viroca344a892011-03-09 00:36:45 -05002294 want_write = 1;
Al Viro9b44f1b2011-03-09 00:17:27 -05002295 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002296 open_flag &= ~O_TRUNC;
Al Viro6c0d46c2011-03-09 00:59:59 -05002297 will_truncate = 0;
Al Virobcda7652011-03-13 16:42:14 -04002298 acc_mode = MAY_OPEN;
Al Viro6c0d46c2011-03-09 00:59:59 -05002299 error = security_path_mknod(&nd->path, dentry, mode, 0);
2300 if (error)
2301 goto exit_mutex_unlock;
2302 error = vfs_create(dir->d_inode, dentry, mode, nd);
2303 if (error)
2304 goto exit_mutex_unlock;
2305 mutex_unlock(&dir->d_inode->i_mutex);
2306 dput(nd->path.dentry);
2307 nd->path.dentry = dentry;
Al Viroca344a892011-03-09 00:36:45 -05002308 goto common;
Al Virofb1cc552009-12-24 01:58:28 -05002309 }
2310
2311 /*
2312 * It already exists.
2313 */
2314 mutex_unlock(&dir->d_inode->i_mutex);
2315 audit_inode(pathname, path->dentry);
2316
2317 error = -EEXIST;
Al Viroca344a892011-03-09 00:36:45 -05002318 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002319 goto exit_dput;
2320
David Howells9875cf82011-01-14 18:45:21 +00002321 error = follow_managed(path, nd->flags);
2322 if (error < 0)
2323 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002324
Al Viroa3fbbde2011-11-07 21:21:26 +00002325 if (error)
2326 nd->flags |= LOOKUP_JUMPED;
2327
Al Virofb1cc552009-12-24 01:58:28 -05002328 error = -ENOENT;
2329 if (!path->dentry->d_inode)
2330 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002331
2332 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002333 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002334
2335 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002336 nd->inode = path->dentry->d_inode;
Al Viroa3fbbde2011-11-07 21:21:26 +00002337 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
2338 error = complete_walk(nd);
2339 if (error)
Miklos Szeredi097b1802012-03-06 13:56:33 +01002340 return ERR_PTR(error);
Al Virofb1cc552009-12-24 01:58:28 -05002341 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002342 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002343 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002344ok:
Al Viro6c0d46c2011-03-09 00:59:59 -05002345 if (!S_ISREG(nd->inode->i_mode))
2346 will_truncate = 0;
2347
Al Viro0f9d1a12011-03-09 00:13:14 -05002348 if (will_truncate) {
2349 error = mnt_want_write(nd->path.mnt);
2350 if (error)
2351 goto exit;
Al Viroca344a892011-03-09 00:36:45 -05002352 want_write = 1;
Al Viro0f9d1a12011-03-09 00:13:14 -05002353 }
Al Viroca344a892011-03-09 00:36:45 -05002354common:
Al Virobcda7652011-03-13 16:42:14 -04002355 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002356 if (error)
Al Viro0f9d1a12011-03-09 00:13:14 -05002357 goto exit;
Al Viro0f9d1a12011-03-09 00:13:14 -05002358 filp = nameidata_to_filp(nd);
2359 if (!IS_ERR(filp)) {
2360 error = ima_file_check(filp, op->acc_mode);
2361 if (error) {
2362 fput(filp);
2363 filp = ERR_PTR(error);
2364 }
2365 }
2366 if (!IS_ERR(filp)) {
2367 if (will_truncate) {
2368 error = handle_truncate(filp);
2369 if (error) {
2370 fput(filp);
2371 filp = ERR_PTR(error);
2372 }
2373 }
2374 }
Al Viroca344a892011-03-09 00:36:45 -05002375out:
2376 if (want_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002377 mnt_drop_write(nd->path.mnt);
2378 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002379 return filp;
2380
2381exit_mutex_unlock:
2382 mutex_unlock(&dir->d_inode->i_mutex);
2383exit_dput:
2384 path_put_conditional(path, nd);
2385exit:
Al Viroca344a892011-03-09 00:36:45 -05002386 filp = ERR_PTR(error);
2387 goto out;
Al Virofb1cc552009-12-24 01:58:28 -05002388}
2389
Al Viro13aab422011-02-23 17:54:08 -05002390static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002391 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392{
Al Virofe2d35f2011-03-05 22:58:25 -05002393 struct file *base = NULL;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002394 struct file *filp;
Al Viro9850c052010-01-13 15:01:15 -05002395 struct path path;
Al Viro13aab422011-02-23 17:54:08 -05002396 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002397
2398 filp = get_empty_filp();
2399 if (!filp)
2400 return ERR_PTR(-ENFILE);
2401
Al Viro47c805d2011-02-23 17:44:09 -05002402 filp->f_flags = op->open_flag;
Al Viro73d049a2011-03-11 12:08:24 -05002403 nd->intent.open.file = filp;
2404 nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2405 nd->intent.open.create_mode = op->mode;
Nick Piggin31e6b012011-01-07 17:49:52 +11002406
Al Viro73d049a2011-03-11 12:08:24 -05002407 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002408 if (unlikely(error))
Al Viro13aab422011-02-23 17:54:08 -05002409 goto out_filp;
Nick Piggin31e6b012011-01-07 17:49:52 +11002410
Al Virofe2d35f2011-03-05 22:58:25 -05002411 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002412 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002413 if (unlikely(error))
2414 goto out_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
Al Viro73d049a2011-03-11 12:08:24 -05002416 filp = do_last(nd, &path, op, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002417 while (unlikely(!filp)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002418 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05002419 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04002420 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05002421 path_put_conditional(&path, nd);
2422 path_put(&nd->path);
Al Viro40b39132011-03-09 16:22:18 -05002423 filp = ERR_PTR(-ELOOP);
2424 break;
2425 }
Al Viro73d049a2011-03-11 12:08:24 -05002426 nd->flags |= LOOKUP_PARENT;
2427 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04002428 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002429 if (unlikely(error))
Al Virof1afe9e2011-02-22 22:27:28 -05002430 filp = ERR_PTR(error);
Al Viroc3e380b2011-02-23 13:39:45 -05002431 else
Al Viro73d049a2011-03-11 12:08:24 -05002432 filp = do_last(nd, &path, op, pathname);
Al Viro574197e2011-03-14 22:20:34 -04002433 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002434 }
Al Viro10fa8e62009-12-26 07:09:49 -05002435out:
Al Viro73d049a2011-03-11 12:08:24 -05002436 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2437 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002438 if (base)
2439 fput(base);
Al Viro73d049a2011-03-11 12:08:24 -05002440 release_open_intent(nd);
Al Viro10fa8e62009-12-26 07:09:49 -05002441 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Nick Piggin31e6b012011-01-07 17:49:52 +11002443out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002444 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002445 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446}
2447
Al Viro13aab422011-02-23 17:54:08 -05002448struct file *do_filp_open(int dfd, const char *pathname,
2449 const struct open_flags *op, int flags)
2450{
Al Viro73d049a2011-03-11 12:08:24 -05002451 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002452 struct file *filp;
2453
Al Viro73d049a2011-03-11 12:08:24 -05002454 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002455 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002456 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002457 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002458 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002459 return filp;
2460}
2461
Al Viro73d049a2011-03-11 12:08:24 -05002462struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2463 const char *name, const struct open_flags *op, int flags)
2464{
2465 struct nameidata nd;
2466 struct file *file;
2467
2468 nd.root.mnt = mnt;
2469 nd.root.dentry = dentry;
2470
2471 flags |= LOOKUP_ROOT;
2472
Al Virobcda7652011-03-13 16:42:14 -04002473 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002474 return ERR_PTR(-ELOOP);
2475
2476 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2477 if (unlikely(file == ERR_PTR(-ECHILD)))
2478 file = path_openat(-1, name, &nd, op, flags);
2479 if (unlikely(file == ERR_PTR(-ESTALE)))
2480 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2481 return file;
2482}
2483
Al Viroed75e952011-06-27 16:53:43 -04002484struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path, int is_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002486 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viroed75e952011-06-27 16:53:43 -04002487 struct nameidata nd;
2488 int error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd);
2489 if (error)
2490 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002492 /*
2493 * Yucky last component or no last component at all?
2494 * (foo/., foo/.., /////)
2495 */
Al Viroed75e952011-06-27 16:53:43 -04002496 if (nd.last_type != LAST_NORM)
2497 goto out;
2498 nd.flags &= ~LOOKUP_PARENT;
2499 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
2500 nd.intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002501
2502 /*
2503 * Do the final lookup.
2504 */
Al Viroed75e952011-06-27 16:53:43 -04002505 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2506 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 if (IS_ERR(dentry))
2508 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002509
Al Viroe9baf6e2008-05-15 04:49:12 -04002510 if (dentry->d_inode)
2511 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002512 /*
2513 * Special case - lookup gave negative, but... we had foo/bar/
2514 * From the vfs_mknod() POV we just have a negative dentry -
2515 * all is fine. Let's be bastards - you had / on the end, you've
2516 * been asking for (non-existent) directory. -ENOENT for you.
2517 */
Al Viroed75e952011-06-27 16:53:43 -04002518 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
Al Viroe9baf6e2008-05-15 04:49:12 -04002519 dput(dentry);
2520 dentry = ERR_PTR(-ENOENT);
Al Viroed75e952011-06-27 16:53:43 -04002521 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04002522 }
Al Viroed75e952011-06-27 16:53:43 -04002523 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002525eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002527 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528fail:
Al Viroed75e952011-06-27 16:53:43 -04002529 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2530out:
2531 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 return dentry;
2533}
Al Virodae6ad82011-06-26 11:50:15 -04002534EXPORT_SYMBOL(kern_path_create);
2535
2536struct dentry *user_path_create(int dfd, const char __user *pathname, struct path *path, int is_dir)
2537{
2538 char *tmp = getname(pathname);
2539 struct dentry *res;
2540 if (IS_ERR(tmp))
2541 return ERR_CAST(tmp);
2542 res = kern_path_create(dfd, tmp, path, is_dir);
2543 putname(tmp);
2544 return res;
2545}
2546EXPORT_SYMBOL(user_path_create);
2547
Al Viro1a67aaf2011-07-26 01:52:52 -04002548int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002550 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
2552 if (error)
2553 return error;
2554
Eric W. Biederman975d6b32011-11-13 12:16:43 -08002555 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 return -EPERM;
2557
Al Viroacfa4382008-12-04 10:06:33 -05002558 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 return -EPERM;
2560
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002561 error = devcgroup_inode_mknod(mode, dev);
2562 if (error)
2563 return error;
2564
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 error = security_inode_mknod(dir, dentry, mode, dev);
2566 if (error)
2567 return error;
2568
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002570 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002571 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 return error;
2573}
2574
Al Virof69aac02011-07-26 04:31:40 -04002575static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08002576{
2577 switch (mode & S_IFMT) {
2578 case S_IFREG:
2579 case S_IFCHR:
2580 case S_IFBLK:
2581 case S_IFIFO:
2582 case S_IFSOCK:
2583 case 0: /* zero mode translates to S_IFREG */
2584 return 0;
2585 case S_IFDIR:
2586 return -EPERM;
2587 default:
2588 return -EINVAL;
2589 }
2590}
2591
Al Viro8208a222011-07-25 17:32:17 -04002592SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002593 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594{
Al Viro2ad94ae2008-07-21 09:32:51 -04002595 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002596 struct path path;
2597 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
2599 if (S_ISDIR(mode))
2600 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Al Virodae6ad82011-06-26 11:50:15 -04002602 dentry = user_path_create(dfd, filename, &path, 0);
2603 if (IS_ERR(dentry))
2604 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04002605
Al Virodae6ad82011-06-26 11:50:15 -04002606 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002607 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002608 error = may_mknod(mode);
2609 if (error)
2610 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002611 error = mnt_want_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002612 if (error)
2613 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002614 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002615 if (error)
2616 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002617 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 case 0: case S_IFREG:
Al Virodae6ad82011-06-26 11:50:15 -04002619 error = vfs_create(path.dentry->d_inode,dentry,mode,NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 break;
2621 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04002622 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 new_decode_dev(dev));
2624 break;
2625 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04002626 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002629out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002630 mnt_drop_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002631out_dput:
2632 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002633 mutex_unlock(&path.dentry->d_inode->i_mutex);
2634 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
2636 return error;
2637}
2638
Al Viro8208a222011-07-25 17:32:17 -04002639SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002640{
2641 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2642}
2643
Al Viro18bb1db2011-07-26 01:41:39 -04002644int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002646 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05002647 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
2649 if (error)
2650 return error;
2651
Al Viroacfa4382008-12-04 10:06:33 -05002652 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 return -EPERM;
2654
2655 mode &= (S_IRWXUGO|S_ISVTX);
2656 error = security_inode_mkdir(dir, dentry, mode);
2657 if (error)
2658 return error;
2659
Al Viro8de52772012-02-06 12:45:27 -05002660 if (max_links && dir->i_nlink >= max_links)
2661 return -EMLINK;
2662
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002664 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002665 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 return error;
2667}
2668
Al Viroa218d0f2011-11-21 14:59:34 -05002669SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670{
Dave Hansen6902d922006-09-30 23:29:01 -07002671 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002672 struct path path;
2673 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Al Virodae6ad82011-06-26 11:50:15 -04002675 dentry = user_path_create(dfd, pathname, &path, 1);
Dave Hansen6902d922006-09-30 23:29:01 -07002676 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04002677 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002678
Al Virodae6ad82011-06-26 11:50:15 -04002679 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002680 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04002681 error = mnt_want_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002682 if (error)
2683 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002684 error = security_path_mkdir(&path, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002685 if (error)
2686 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04002687 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002688out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002689 mnt_drop_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002690out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002691 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002692 mutex_unlock(&path.dentry->d_inode->i_mutex);
2693 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 return error;
2695}
2696
Al Viroa218d0f2011-11-21 14:59:34 -05002697SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002698{
2699 return sys_mkdirat(AT_FDCWD, pathname, mode);
2700}
2701
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702/*
Sage Weila71905f2011-05-24 13:06:08 -07002703 * The dentry_unhash() helper will try to drop the dentry early: we
J. Bruce Fieldsc0d02592012-02-15 11:48:40 -05002704 * should have a usage count of 1 if we're the only user of this
Sage Weila71905f2011-05-24 13:06:08 -07002705 * dentry, and if that is true (possibly after pruning the dcache),
2706 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 *
2708 * A low-level filesystem can, if it choses, legally
2709 * do a
2710 *
2711 * if (!d_unhashed(dentry))
2712 * return -EBUSY;
2713 *
2714 * if it cannot handle the case of removing a directory
2715 * that is still in use by something else..
2716 */
2717void dentry_unhash(struct dentry *dentry)
2718{
Vasily Averindc168422006-12-06 20:37:07 -08002719 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 spin_lock(&dentry->d_lock);
Sage Weil64252c72011-05-24 13:06:05 -07002721 if (dentry->d_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 __d_drop(dentry);
2723 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724}
2725
2726int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2727{
2728 int error = may_delete(dir, dentry, 1);
2729
2730 if (error)
2731 return error;
2732
Al Viroacfa4382008-12-04 10:06:33 -05002733 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 return -EPERM;
2735
Al Viro1d2ef592011-09-14 18:55:41 +01002736 dget(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002737 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
Sage Weil912dbc12011-05-24 13:06:11 -07002739 error = -EBUSY;
2740 if (d_mountpoint(dentry))
2741 goto out;
2742
2743 error = security_inode_rmdir(dir, dentry);
2744 if (error)
2745 goto out;
2746
Sage Weil3cebde22011-05-29 21:20:59 -07002747 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07002748 error = dir->i_op->rmdir(dir, dentry);
2749 if (error)
2750 goto out;
2751
2752 dentry->d_inode->i_flags |= S_DEAD;
2753 dont_mount(dentry);
2754
2755out:
2756 mutex_unlock(&dentry->d_inode->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01002757 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07002758 if (!error)
2759 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 return error;
2761}
2762
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002763static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764{
2765 int error = 0;
2766 char * name;
2767 struct dentry *dentry;
2768 struct nameidata nd;
2769
Al Viro2ad94ae2008-07-21 09:32:51 -04002770 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002772 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773
2774 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002775 case LAST_DOTDOT:
2776 error = -ENOTEMPTY;
2777 goto exit1;
2778 case LAST_DOT:
2779 error = -EINVAL;
2780 goto exit1;
2781 case LAST_ROOT:
2782 error = -EBUSY;
2783 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002785
2786 nd.flags &= ~LOOKUP_PARENT;
2787
Jan Blunck4ac91372008-02-14 19:34:32 -08002788 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002789 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002791 if (IS_ERR(dentry))
2792 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002793 if (!dentry->d_inode) {
2794 error = -ENOENT;
2795 goto exit3;
2796 }
Dave Hansen06227532008-02-15 14:37:34 -08002797 error = mnt_want_write(nd.path.mnt);
2798 if (error)
2799 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002800 error = security_path_rmdir(&nd.path, dentry);
2801 if (error)
2802 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002803 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002804exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002805 mnt_drop_write(nd.path.mnt);
2806exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002807 dput(dentry);
2808exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002809 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002811 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 putname(name);
2813 return error;
2814}
2815
Heiko Carstens3cdad422009-01-14 14:14:22 +01002816SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002817{
2818 return do_rmdir(AT_FDCWD, pathname);
2819}
2820
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821int vfs_unlink(struct inode *dir, struct dentry *dentry)
2822{
2823 int error = may_delete(dir, dentry, 0);
2824
2825 if (error)
2826 return error;
2827
Al Viroacfa4382008-12-04 10:06:33 -05002828 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 return -EPERM;
2830
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002831 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 if (d_mountpoint(dentry))
2833 error = -EBUSY;
2834 else {
2835 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002836 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002838 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002839 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002840 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002842 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843
2844 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2845 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002846 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 }
Robert Love0eeca282005-07-12 17:06:03 -04002849
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 return error;
2851}
2852
2853/*
2854 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002855 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 * writeout happening, and we don't want to prevent access to the directory
2857 * while waiting on the I/O.
2858 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002859static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860{
Al Viro2ad94ae2008-07-21 09:32:51 -04002861 int error;
2862 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 struct dentry *dentry;
2864 struct nameidata nd;
2865 struct inode *inode = NULL;
2866
Al Viro2ad94ae2008-07-21 09:32:51 -04002867 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002869 return error;
2870
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 error = -EISDIR;
2872 if (nd.last_type != LAST_NORM)
2873 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002874
2875 nd.flags &= ~LOOKUP_PARENT;
2876
Jan Blunck4ac91372008-02-14 19:34:32 -08002877 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002878 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 error = PTR_ERR(dentry);
2880 if (!IS_ERR(dentry)) {
2881 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03002882 if (nd.last.name[nd.last.len])
2883 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 inode = dentry->d_inode;
Török Edwin50338b82011-06-16 00:06:14 +03002885 if (!inode)
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002886 goto slashes;
2887 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002888 error = mnt_want_write(nd.path.mnt);
2889 if (error)
2890 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002891 error = security_path_unlink(&nd.path, dentry);
2892 if (error)
2893 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002894 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002895exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002896 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 exit2:
2898 dput(dentry);
2899 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002900 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 if (inode)
2902 iput(inode); /* truncate the inode here */
2903exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002904 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 putname(name);
2906 return error;
2907
2908slashes:
2909 error = !dentry->d_inode ? -ENOENT :
2910 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2911 goto exit2;
2912}
2913
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002914SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002915{
2916 if ((flag & ~AT_REMOVEDIR) != 0)
2917 return -EINVAL;
2918
2919 if (flag & AT_REMOVEDIR)
2920 return do_rmdir(dfd, pathname);
2921
2922 return do_unlinkat(dfd, pathname);
2923}
2924
Heiko Carstens3480b252009-01-14 14:14:16 +01002925SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002926{
2927 return do_unlinkat(AT_FDCWD, pathname);
2928}
2929
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002930int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002932 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
2934 if (error)
2935 return error;
2936
Al Viroacfa4382008-12-04 10:06:33 -05002937 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 return -EPERM;
2939
2940 error = security_inode_symlink(dir, dentry, oldname);
2941 if (error)
2942 return error;
2943
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002945 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002946 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 return error;
2948}
2949
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002950SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2951 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952{
Al Viro2ad94ae2008-07-21 09:32:51 -04002953 int error;
2954 char *from;
Dave Hansen6902d922006-09-30 23:29:01 -07002955 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002956 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
2958 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002959 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002961
Al Virodae6ad82011-06-26 11:50:15 -04002962 dentry = user_path_create(newdfd, newname, &path, 0);
Dave Hansen6902d922006-09-30 23:29:01 -07002963 error = PTR_ERR(dentry);
2964 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04002965 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07002966
Al Virodae6ad82011-06-26 11:50:15 -04002967 error = mnt_want_write(path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002968 if (error)
2969 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002970 error = security_path_symlink(&path, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002971 if (error)
2972 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04002973 error = vfs_symlink(path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002974out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002975 mnt_drop_write(path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002976out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002977 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002978 mutex_unlock(&path.dentry->d_inode->i_mutex);
2979 path_put(&path);
Dave Hansen6902d922006-09-30 23:29:01 -07002980out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 putname(from);
2982 return error;
2983}
2984
Heiko Carstens3480b252009-01-14 14:14:16 +01002985SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002986{
2987 return sys_symlinkat(oldname, AT_FDCWD, newname);
2988}
2989
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2991{
2992 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05002993 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 int error;
2995
2996 if (!inode)
2997 return -ENOENT;
2998
Miklos Szeredia95164d2008-07-30 15:08:48 +02002999 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 if (error)
3001 return error;
3002
3003 if (dir->i_sb != inode->i_sb)
3004 return -EXDEV;
3005
3006 /*
3007 * A link to an append-only or immutable file cannot be created.
3008 */
3009 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3010 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05003011 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003013 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 return -EPERM;
3015
3016 error = security_inode_link(old_dentry, dir, new_dentry);
3017 if (error)
3018 return error;
3019
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003020 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303021 /* Make sure we don't allow creating hardlink to an unlinked file */
3022 if (inode->i_nlink == 0)
3023 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05003024 else if (max_links && inode->i_nlink >= max_links)
3025 error = -EMLINK;
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303026 else
3027 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003028 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003029 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003030 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 return error;
3032}
3033
3034/*
3035 * Hardlinks are often used in delicate situations. We avoid
3036 * security-related surprises by not following symlinks on the
3037 * newname. --KAB
3038 *
3039 * We don't follow them on the oldname either to be compatible
3040 * with linux 2.0, and to avoid hard-linking to directories
3041 * and other special files. --ADM
3042 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003043SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
3044 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045{
3046 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003047 struct path old_path, new_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303048 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303051 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003052 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303053 /*
3054 * To use null names we require CAP_DAC_READ_SEARCH
3055 * This ensures that not everyone will be able to create
3056 * handlink using the passed filedescriptor.
3057 */
3058 if (flags & AT_EMPTY_PATH) {
3059 if (!capable(CAP_DAC_READ_SEARCH))
3060 return -ENOENT;
3061 how = LOOKUP_EMPTY;
3062 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003063
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303064 if (flags & AT_SYMLINK_FOLLOW)
3065 how |= LOOKUP_FOLLOW;
3066
3067 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04003069 return error;
3070
Al Virodae6ad82011-06-26 11:50:15 -04003071 new_dentry = user_path_create(newdfd, newname, &new_path, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003073 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003074 goto out;
3075
3076 error = -EXDEV;
3077 if (old_path.mnt != new_path.mnt)
3078 goto out_dput;
3079 error = mnt_want_write(new_path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08003080 if (error)
3081 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04003082 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003083 if (error)
3084 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04003085 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003086out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04003087 mnt_drop_write(new_path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08003088out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07003089 dput(new_dentry);
Al Virodae6ad82011-06-26 11:50:15 -04003090 mutex_unlock(&new_path.dentry->d_inode->i_mutex);
3091 path_put(&new_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092out:
Al Viro2d8f3032008-07-22 09:59:21 -04003093 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
3095 return error;
3096}
3097
Heiko Carstens3480b252009-01-14 14:14:16 +01003098SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003099{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003100 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003101}
3102
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103/*
3104 * The worst of all namespace operations - renaming directory. "Perverted"
3105 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3106 * Problems:
3107 * a) we can get into loop creation. Check is done in is_subdir().
3108 * b) race potential - two innocent renames can create a loop together.
3109 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003110 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 * story.
3112 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003113 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 * whether the target exists). Solution: try to be smart with locking
3115 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003116 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 * move will be locked. Thus we can rank directories by the tree
3118 * (ancestors first) and rank all non-directories after them.
3119 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003120 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 * HOWEVER, it relies on the assumption that any object with ->lookup()
3122 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3123 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07003124 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003125 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003127 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 * locking].
3129 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07003130static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3131 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132{
3133 int error = 0;
Sage Weil9055cba2011-05-24 13:06:12 -07003134 struct inode *target = new_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05003135 unsigned max_links = new_dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136
3137 /*
3138 * If we are going to change the parent - check write permissions,
3139 * we'll need to flip '..'.
3140 */
3141 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04003142 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 if (error)
3144 return error;
3145 }
3146
3147 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3148 if (error)
3149 return error;
3150
Al Viro1d2ef592011-09-14 18:55:41 +01003151 dget(new_dentry);
Al Virod83c49f2010-04-30 17:17:09 -04003152 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003153 mutex_lock(&target->i_mutex);
Sage Weil9055cba2011-05-24 13:06:12 -07003154
3155 error = -EBUSY;
3156 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3157 goto out;
3158
Al Viro8de52772012-02-06 12:45:27 -05003159 error = -EMLINK;
3160 if (max_links && !target && new_dir != old_dir &&
3161 new_dir->i_nlink >= max_links)
3162 goto out;
3163
Sage Weil3cebde22011-05-29 21:20:59 -07003164 if (target)
3165 shrink_dcache_parent(new_dentry);
Sage Weil9055cba2011-05-24 13:06:12 -07003166 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3167 if (error)
3168 goto out;
3169
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 if (target) {
Sage Weil9055cba2011-05-24 13:06:12 -07003171 target->i_flags |= S_DEAD;
3172 dont_mount(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 }
Sage Weil9055cba2011-05-24 13:06:12 -07003174out:
3175 if (target)
3176 mutex_unlock(&target->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01003177 dput(new_dentry);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003178 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003179 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3180 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 return error;
3182}
3183
Adrian Bunk75c96f82005-05-05 16:16:09 -07003184static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3185 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186{
Sage Weil51892bb2011-05-24 13:06:13 -07003187 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 int error;
3189
3190 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3191 if (error)
3192 return error;
3193
3194 dget(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003196 mutex_lock(&target->i_mutex);
Sage Weil51892bb2011-05-24 13:06:13 -07003197
3198 error = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
Sage Weil51892bb2011-05-24 13:06:13 -07003200 goto out;
3201
3202 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3203 if (error)
3204 goto out;
3205
3206 if (target)
3207 dont_mount(new_dentry);
3208 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3209 d_move(old_dentry, new_dentry);
3210out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003212 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 dput(new_dentry);
3214 return error;
3215}
3216
3217int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3218 struct inode *new_dir, struct dentry *new_dentry)
3219{
3220 int error;
3221 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003222 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223
3224 if (old_dentry->d_inode == new_dentry->d_inode)
3225 return 0;
3226
3227 error = may_delete(old_dir, old_dentry, is_dir);
3228 if (error)
3229 return error;
3230
3231 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003232 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 else
3234 error = may_delete(new_dir, new_dentry, is_dir);
3235 if (error)
3236 return error;
3237
Al Viroacfa4382008-12-04 10:06:33 -05003238 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 return -EPERM;
3240
Robert Love0eeca282005-07-12 17:06:03 -04003241 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3242
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 if (is_dir)
3244 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3245 else
3246 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003247 if (!error)
3248 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003249 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003250 fsnotify_oldname_free(old_name);
3251
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 return error;
3253}
3254
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003255SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3256 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257{
Al Viro2ad94ae2008-07-21 09:32:51 -04003258 struct dentry *old_dir, *new_dir;
3259 struct dentry *old_dentry, *new_dentry;
3260 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003261 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003262 char *from;
3263 char *to;
3264 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265
Al Viro2ad94ae2008-07-21 09:32:51 -04003266 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 if (error)
3268 goto exit;
3269
Al Viro2ad94ae2008-07-21 09:32:51 -04003270 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 if (error)
3272 goto exit1;
3273
3274 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003275 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003276 goto exit2;
3277
Jan Blunck4ac91372008-02-14 19:34:32 -08003278 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 error = -EBUSY;
3280 if (oldnd.last_type != LAST_NORM)
3281 goto exit2;
3282
Jan Blunck4ac91372008-02-14 19:34:32 -08003283 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003284 if (newnd.last_type != LAST_NORM)
3285 goto exit2;
3286
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003287 oldnd.flags &= ~LOOKUP_PARENT;
3288 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003289 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003290
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 trap = lock_rename(new_dir, old_dir);
3292
Christoph Hellwig49705b72005-11-08 21:35:06 -08003293 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 error = PTR_ERR(old_dentry);
3295 if (IS_ERR(old_dentry))
3296 goto exit3;
3297 /* source must exist */
3298 error = -ENOENT;
3299 if (!old_dentry->d_inode)
3300 goto exit4;
3301 /* unless the source is a directory trailing slashes give -ENOTDIR */
3302 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3303 error = -ENOTDIR;
3304 if (oldnd.last.name[oldnd.last.len])
3305 goto exit4;
3306 if (newnd.last.name[newnd.last.len])
3307 goto exit4;
3308 }
3309 /* source should not be ancestor of target */
3310 error = -EINVAL;
3311 if (old_dentry == trap)
3312 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003313 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 error = PTR_ERR(new_dentry);
3315 if (IS_ERR(new_dentry))
3316 goto exit4;
3317 /* target should not be an ancestor of source */
3318 error = -ENOTEMPTY;
3319 if (new_dentry == trap)
3320 goto exit5;
3321
Dave Hansen9079b1e2008-02-15 14:37:49 -08003322 error = mnt_want_write(oldnd.path.mnt);
3323 if (error)
3324 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003325 error = security_path_rename(&oldnd.path, old_dentry,
3326 &newnd.path, new_dentry);
3327 if (error)
3328 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 error = vfs_rename(old_dir->d_inode, old_dentry,
3330 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003331exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003332 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333exit5:
3334 dput(new_dentry);
3335exit4:
3336 dput(old_dentry);
3337exit3:
3338 unlock_rename(new_dir, old_dir);
3339exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003340 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003341 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003343 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003345exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 return error;
3347}
3348
Heiko Carstensa26eab22009-01-14 14:14:17 +01003349SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003350{
3351 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3352}
3353
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3355{
3356 int len;
3357
3358 len = PTR_ERR(link);
3359 if (IS_ERR(link))
3360 goto out;
3361
3362 len = strlen(link);
3363 if (len > (unsigned) buflen)
3364 len = buflen;
3365 if (copy_to_user(buffer, link, len))
3366 len = -EFAULT;
3367out:
3368 return len;
3369}
3370
3371/*
3372 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3373 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3374 * using) it for any given inode is up to filesystem.
3375 */
3376int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3377{
3378 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003379 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003380 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003381
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003383 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003384 if (IS_ERR(cookie))
3385 return PTR_ERR(cookie);
3386
3387 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3388 if (dentry->d_inode->i_op->put_link)
3389 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3390 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391}
3392
3393int vfs_follow_link(struct nameidata *nd, const char *link)
3394{
3395 return __vfs_follow_link(nd, link);
3396}
3397
3398/* get the link contents into pagecache */
3399static char *page_getlink(struct dentry * dentry, struct page **ppage)
3400{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003401 char *kaddr;
3402 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003404 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003406 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003408 kaddr = kmap(page);
3409 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3410 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411}
3412
3413int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3414{
3415 struct page *page = NULL;
3416 char *s = page_getlink(dentry, &page);
3417 int res = vfs_readlink(dentry,buffer,buflen,s);
3418 if (page) {
3419 kunmap(page);
3420 page_cache_release(page);
3421 }
3422 return res;
3423}
3424
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003425void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003427 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003429 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430}
3431
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003432void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003434 struct page *page = cookie;
3435
3436 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 kunmap(page);
3438 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 }
3440}
3441
Nick Piggin54566b22009-01-04 12:00:53 -08003442/*
3443 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3444 */
3445int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446{
3447 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003448 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003449 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003450 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003452 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3453 if (nofs)
3454 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
NeilBrown7e53cac2006-03-25 03:07:57 -08003456retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003457 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003458 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003460 goto fail;
3461
Cong Wange8e3c3d2011-11-25 23:14:27 +08003462 kaddr = kmap_atomic(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 memcpy(kaddr, symname, len-1);
Cong Wange8e3c3d2011-11-25 23:14:27 +08003464 kunmap_atomic(kaddr);
Nick Pigginafddba42007-10-16 01:25:01 -07003465
3466 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3467 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 if (err < 0)
3469 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003470 if (err < len-1)
3471 goto retry;
3472
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 mark_inode_dirty(inode);
3474 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475fail:
3476 return err;
3477}
3478
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003479int page_symlink(struct inode *inode, const char *symname, int len)
3480{
3481 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003482 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003483}
3484
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003485const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 .readlink = generic_readlink,
3487 .follow_link = page_follow_link_light,
3488 .put_link = page_put_link,
3489};
3490
Al Viro2d8f3032008-07-22 09:59:21 -04003491EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003492EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493EXPORT_SYMBOL(follow_down);
3494EXPORT_SYMBOL(follow_up);
3495EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3496EXPORT_SYMBOL(getname);
3497EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498EXPORT_SYMBOL(lookup_one_len);
3499EXPORT_SYMBOL(page_follow_link_light);
3500EXPORT_SYMBOL(page_put_link);
3501EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003502EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503EXPORT_SYMBOL(page_symlink);
3504EXPORT_SYMBOL(page_symlink_inode_operations);
Al Virod1811462008-08-02 00:49:18 -04003505EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003506EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003507EXPORT_SYMBOL(inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508EXPORT_SYMBOL(unlock_rename);
3509EXPORT_SYMBOL(vfs_create);
3510EXPORT_SYMBOL(vfs_follow_link);
3511EXPORT_SYMBOL(vfs_link);
3512EXPORT_SYMBOL(vfs_mkdir);
3513EXPORT_SYMBOL(vfs_mknod);
3514EXPORT_SYMBOL(generic_permission);
3515EXPORT_SYMBOL(vfs_readlink);
3516EXPORT_SYMBOL(vfs_rename);
3517EXPORT_SYMBOL(vfs_rmdir);
3518EXPORT_SYMBOL(vfs_symlink);
3519EXPORT_SYMBOL(vfs_unlink);
3520EXPORT_SYMBOL(dentry_unhash);
3521EXPORT_SYMBOL(generic_readlink);