blob: 2e9110a37c0e0a189c88850638f0de5f418d86d8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/namei.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/*
8 * Some corrections by tytso.
9 */
10
11/* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
12 * lookup logic.
13 */
14/* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
15 */
16
17#include <linux/init.h>
18#include <linux/module.h>
19#include <linux/slab.h>
20#include <linux/fs.h>
21#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/pagemap.h>
Robert Love0eeca282005-07-12 17:06:03 -040023#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/personality.h>
25#include <linux/security.h>
Mimi Zohar6146f0d2009-02-04 09:06:57 -050026#include <linux/ima.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/syscalls.h>
28#include <linux/mount.h>
29#include <linux/audit.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080030#include <linux/capability.h>
Trond Myklebust834f2a42005-10-18 14:20:16 -070031#include <linux/file.h>
Ulrich Drepper5590ff02006-01-18 17:43:53 -080032#include <linux/fcntl.h>
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070033#include <linux/device_cgroup.h>
Al Viro5ad4e532009-03-29 19:50:06 -040034#include <linux/fs_struct.h>
Linus 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{
143 char *tmp, *result;
144
145 result = ERR_PTR(-ENOMEM);
146 tmp = __getname();
147 if (tmp) {
148 int retval = do_getname(filename, tmp);
149
150 result = tmp;
151 if (retval < 0) {
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +0100152 if (retval == -ENOENT && empty)
153 *empty = 1;
Al Virof52e0c12011-03-14 18:56:51 -0400154 if (retval != -ENOENT || !(flags & LOOKUP_EMPTY)) {
155 __putname(tmp);
156 result = ERR_PTR(retval);
157 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 }
159 }
160 audit_getname(result);
161 return result;
162}
163
Al Virof52e0c12011-03-14 18:56:51 -0400164char *getname(const char __user * filename)
165{
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +0100166 return getname_flags(filename, 0, 0);
Al Virof52e0c12011-03-14 18:56:51 -0400167}
168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169#ifdef CONFIG_AUDITSYSCALL
170void putname(const char *name)
171{
Al Viro5ac3a9c2006-07-16 06:38:45 -0400172 if (unlikely(!audit_dummy_context()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 audit_putname(name);
174 else
175 __putname(name);
176}
177EXPORT_SYMBOL(putname);
178#endif
179
Linus Torvaldse77819e2011-07-22 19:30:19 -0700180static int check_acl(struct inode *inode, int mask)
181{
Linus Torvalds84635d62011-07-25 22:47:03 -0700182#ifdef CONFIG_FS_POSIX_ACL
Linus Torvaldse77819e2011-07-22 19:30:19 -0700183 struct posix_acl *acl;
184
Linus Torvaldse77819e2011-07-22 19:30:19 -0700185 if (mask & MAY_NOT_BLOCK) {
Al Viro35678662011-08-02 21:32:13 -0400186 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
187 if (!acl)
Linus Torvaldse77819e2011-07-22 19:30:19 -0700188 return -EAGAIN;
Al Viro35678662011-08-02 21:32:13 -0400189 /* no ->get_acl() calls in RCU mode... */
190 if (acl == ACL_NOT_CACHED)
191 return -ECHILD;
Ari Savolainen206b1d02011-08-06 19:43:07 +0300192 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
Linus Torvaldse77819e2011-07-22 19:30:19 -0700193 }
194
195 acl = get_cached_acl(inode, ACL_TYPE_ACCESS);
196
197 /*
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200198 * A filesystem can force a ACL callback by just never filling the
199 * ACL cache. But normally you'd fill the cache either at inode
200 * instantiation time, or on the first ->get_acl call.
Linus Torvaldse77819e2011-07-22 19:30:19 -0700201 *
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200202 * If the filesystem doesn't have a get_acl() function at all, we'll
203 * just create the negative cache entry.
Linus Torvaldse77819e2011-07-22 19:30:19 -0700204 */
205 if (acl == ACL_NOT_CACHED) {
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200206 if (inode->i_op->get_acl) {
207 acl = inode->i_op->get_acl(inode, ACL_TYPE_ACCESS);
208 if (IS_ERR(acl))
209 return PTR_ERR(acl);
210 } else {
211 set_cached_acl(inode, ACL_TYPE_ACCESS, NULL);
212 return -EAGAIN;
213 }
Linus Torvaldse77819e2011-07-22 19:30:19 -0700214 }
215
216 if (acl) {
217 int error = posix_acl_permission(inode, acl, mask);
218 posix_acl_release(acl);
219 return error;
220 }
Linus Torvalds84635d62011-07-25 22:47:03 -0700221#endif
Linus Torvaldse77819e2011-07-22 19:30:19 -0700222
223 return -EAGAIN;
224}
225
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700226/*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530227 * This does the basic permission checking
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700228 */
Al Viro7e401452011-06-20 19:12:17 -0400229static int acl_permission_check(struct inode *inode, int mask)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700230{
Linus Torvalds26cf46b2011-05-13 11:51:01 -0700231 unsigned int mode = inode->i_mode;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700232
Serge E. Hallyne795b712011-03-23 16:43:25 -0700233 if (current_user_ns() != inode_userns(inode))
234 goto other_perms;
235
Linus Torvalds14067ff2011-07-25 19:55:52 -0700236 if (likely(current_fsuid() == inode->i_uid))
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700237 mode >>= 6;
238 else {
Linus Torvaldse77819e2011-07-22 19:30:19 -0700239 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
Al Viro7e401452011-06-20 19:12:17 -0400240 int error = check_acl(inode, mask);
Nick Pigginb74c79e2011-01-07 17:49:58 +1100241 if (error != -EAGAIN)
242 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700243 }
244
245 if (in_group_p(inode->i_gid))
246 mode >>= 3;
247 }
248
Serge E. Hallyne795b712011-03-23 16:43:25 -0700249other_perms:
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700250 /*
251 * If the DACs are ok we don't need any capability check.
252 */
Al Viro9c2c7032011-06-20 19:06:22 -0400253 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700254 return 0;
255 return -EACCES;
256}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100259 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 * @inode: inode to check access rights for
Andreas Gruenbacher8fd90c82011-10-23 23:13:30 +0530261 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 *
263 * Used to check for read/write/execute permissions on a file.
264 * We use "fsuid" for this, letting us set arbitrary permissions
265 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100266 * are used for other things.
267 *
268 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
269 * request cannot be satisfied (eg. requires blocking or too much complexity).
270 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 */
Al Viro2830ba72011-06-20 19:16:29 -0400272int generic_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700274 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 /*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530277 * Do the basic permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 */
Al Viro7e401452011-06-20 19:12:17 -0400279 ret = acl_permission_check(inode, mask);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700280 if (ret != -EACCES)
281 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
Al Virod594e7e2011-06-20 19:55:42 -0400283 if (S_ISDIR(inode->i_mode)) {
284 /* DACs are overridable for directories */
285 if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE))
286 return 0;
287 if (!(mask & MAY_WRITE))
288 if (ns_capable(inode_userns(inode), CAP_DAC_READ_SEARCH))
289 return 0;
290 return -EACCES;
291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /*
293 * Read/write DACs are always overridable.
Al Virod594e7e2011-06-20 19:55:42 -0400294 * Executable DACs are overridable when there is
295 * at least one exec bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 */
Al Virod594e7e2011-06-20 19:55:42 -0400297 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
Serge E. Hallyne795b712011-03-23 16:43:25 -0700298 if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 return 0;
300
301 /*
302 * Searching includes executable on directories, else just read.
303 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600304 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Al Virod594e7e2011-06-20 19:55:42 -0400305 if (mask == MAY_READ)
Serge E. Hallyne795b712011-03-23 16:43:25 -0700306 if (ns_capable(inode_userns(inode), CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 return 0;
308
309 return -EACCES;
310}
311
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700312/*
313 * We _really_ want to just do "generic_permission()" without
314 * even looking at the inode->i_op values. So we keep a cache
315 * flag in inode->i_opflags, that says "this has not special
316 * permission function, use the fast case".
317 */
318static inline int do_inode_permission(struct inode *inode, int mask)
319{
320 if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
321 if (likely(inode->i_op->permission))
322 return inode->i_op->permission(inode, mask);
323
324 /* This gets set once for the inode lifetime */
325 spin_lock(&inode->i_lock);
326 inode->i_opflags |= IOP_FASTPERM;
327 spin_unlock(&inode->i_lock);
328 }
329 return generic_permission(inode, mask);
330}
331
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200332/**
333 * inode_permission - check for access rights to a given inode
334 * @inode: inode to check permission on
Andreas Gruenbacher8fd90c82011-10-23 23:13:30 +0530335 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200336 *
337 * Used to check for read/write/execute permissions on an inode.
338 * We use "fsuid" for this, letting us set arbitrary permissions
339 * for filesystem access without changing the "normal" uids which
340 * are used for other things.
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530341 *
342 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200343 */
Al Virof419a2e2008-07-22 00:07:17 -0400344int inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345{
Al Viroe6305c42008-07-15 21:03:57 -0400346 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700348 if (unlikely(mask & MAY_WRITE)) {
Miklos Szeredi22590e42007-10-16 23:27:08 -0700349 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 /*
352 * Nobody gets write access to a read-only fs.
353 */
354 if (IS_RDONLY(inode) &&
355 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
356 return -EROFS;
357
358 /*
359 * Nobody gets write access to an immutable file.
360 */
361 if (IS_IMMUTABLE(inode))
362 return -EACCES;
363 }
364
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700365 retval = do_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 if (retval)
367 return retval;
368
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700369 retval = devcgroup_inode_permission(inode, mask);
370 if (retval)
371 return retval;
372
Eric Parisd09ca732010-07-23 11:43:57 -0400373 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374}
375
Al Virof4d6ff82011-06-19 13:14:21 -0400376/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800377 * path_get - get a reference to a path
378 * @path: path to get the reference to
379 *
380 * Given a path increment the reference count to the dentry and the vfsmount.
381 */
382void path_get(struct path *path)
383{
384 mntget(path->mnt);
385 dget(path->dentry);
386}
387EXPORT_SYMBOL(path_get);
388
389/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800390 * path_put - put a reference to a path
391 * @path: path to put the reference to
392 *
393 * Given a path decrement the reference count to the dentry and the vfsmount.
394 */
395void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
Jan Blunck1d957f92008-02-14 19:34:35 -0800397 dput(path->dentry);
398 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399}
Jan Blunck1d957f92008-02-14 19:34:35 -0800400EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Al Viro19660af2011-03-25 10:32:48 -0400402/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100403 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400404 * Documentation/filesystems/path-lookup.txt). In situations when we can't
405 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
406 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
407 * mode. Refcounts are grabbed at the last known good point before rcu-walk
408 * got stuck, so ref-walk may continue from there. If this is not successful
409 * (eg. a seqcount has changed), then failure is returned and it's up to caller
410 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100411 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100412
413/**
Al Viro19660af2011-03-25 10:32:48 -0400414 * unlazy_walk - try to switch to ref-walk mode.
415 * @nd: nameidata pathwalk data
416 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800417 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100418 *
Al Viro19660af2011-03-25 10:32:48 -0400419 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
420 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
421 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100422 */
Al Viro19660af2011-03-25 10:32:48 -0400423static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100424{
425 struct fs_struct *fs = current->fs;
426 struct dentry *parent = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500427 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100428
429 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500430 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
431 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100432 spin_lock(&fs->lock);
433 if (nd->root.mnt != fs->root.mnt ||
434 nd->root.dentry != fs->root.dentry)
435 goto err_root;
436 }
437 spin_lock(&parent->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400438 if (!dentry) {
439 if (!__d_rcu_to_refcount(parent, nd->seq))
440 goto err_parent;
441 BUG_ON(nd->inode != parent->d_inode);
442 } else {
Al Viro94c0d4e2011-07-12 21:40:23 -0400443 if (dentry->d_parent != parent)
444 goto err_parent;
Al Viro19660af2011-03-25 10:32:48 -0400445 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
446 if (!__d_rcu_to_refcount(dentry, nd->seq))
447 goto err_child;
448 /*
449 * If the sequence check on the child dentry passed, then
450 * the child has not been removed from its parent. This
451 * means the parent dentry must be valid and able to take
452 * a reference at this point.
453 */
454 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
455 BUG_ON(!parent->d_count);
456 parent->d_count++;
457 spin_unlock(&dentry->d_lock);
458 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100459 spin_unlock(&parent->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500460 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100461 path_get(&nd->root);
462 spin_unlock(&fs->lock);
463 }
464 mntget(nd->path.mnt);
465
466 rcu_read_unlock();
467 br_read_unlock(vfsmount_lock);
468 nd->flags &= ~LOOKUP_RCU;
469 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400470
471err_child:
Nick Piggin31e6b012011-01-07 17:49:52 +1100472 spin_unlock(&dentry->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400473err_parent:
Nick Piggin31e6b012011-01-07 17:49:52 +1100474 spin_unlock(&parent->d_lock);
475err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500476 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100477 spin_unlock(&fs->lock);
478 return -ECHILD;
479}
480
Nick Piggin31e6b012011-01-07 17:49:52 +1100481/**
Trond Myklebust834f2a42005-10-18 14:20:16 -0700482 * release_open_intent - free up open intent resources
483 * @nd: pointer to nameidata
484 */
485void release_open_intent(struct nameidata *nd)
486{
Linus Torvalds2dab5972011-02-11 15:53:38 -0800487 struct file *file = nd->intent.open.file;
488
489 if (file && !IS_ERR(file)) {
490 if (file->f_path.dentry == NULL)
491 put_filp(file);
492 else
493 fput(file);
494 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700495}
496
Al Virof60aef72011-02-15 01:35:28 -0500497static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
Nick Piggin34286d62011-01-07 17:49:57 +1100498{
Al Virof60aef72011-02-15 01:35:28 -0500499 return dentry->d_op->d_revalidate(dentry, nd);
Nick Piggin34286d62011-01-07 17:49:57 +1100500}
501
Al Viro9f1fafe2011-03-25 11:00:12 -0400502/**
503 * complete_walk - successful completion of path walk
504 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500505 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400506 * If we had been in RCU mode, drop out of it and legitimize nd->path.
507 * Revalidate the final result, unless we'd already done that during
508 * the path walk or the filesystem doesn't ask for it. Return 0 on
509 * success, -error on failure. In case of failure caller does not
510 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500511 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400512static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500513{
Al Viro16c2cd72011-02-22 15:50:10 -0500514 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500515 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500516
Al Viro9f1fafe2011-03-25 11:00:12 -0400517 if (nd->flags & LOOKUP_RCU) {
518 nd->flags &= ~LOOKUP_RCU;
519 if (!(nd->flags & LOOKUP_ROOT))
520 nd->root.mnt = NULL;
521 spin_lock(&dentry->d_lock);
522 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
523 spin_unlock(&dentry->d_lock);
524 rcu_read_unlock();
525 br_read_unlock(vfsmount_lock);
526 return -ECHILD;
527 }
528 BUG_ON(nd->inode != dentry->d_inode);
529 spin_unlock(&dentry->d_lock);
530 mntget(nd->path.mnt);
531 rcu_read_unlock();
532 br_read_unlock(vfsmount_lock);
533 }
534
Al Viro16c2cd72011-02-22 15:50:10 -0500535 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500536 return 0;
537
Al Viro16c2cd72011-02-22 15:50:10 -0500538 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
539 return 0;
540
541 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
542 return 0;
543
544 /* Note: we do not d_invalidate() */
Nick Piggin34286d62011-01-07 17:49:57 +1100545 status = d_revalidate(dentry, nd);
Jeff Layton39159de2009-12-07 12:01:50 -0500546 if (status > 0)
547 return 0;
548
Al Viro16c2cd72011-02-22 15:50:10 -0500549 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500550 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500551
Al Viro9f1fafe2011-03-25 11:00:12 -0400552 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500553 return status;
554}
555
Al Viro2a737872009-04-07 11:49:53 -0400556static __always_inline void set_root(struct nameidata *nd)
557{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200558 if (!nd->root.mnt)
559 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400560}
561
Al Viro6de88d72009-08-09 01:41:57 +0400562static int link_path_walk(const char *, struct nameidata *);
563
Nick Piggin31e6b012011-01-07 17:49:52 +1100564static __always_inline void set_root_rcu(struct nameidata *nd)
565{
566 if (!nd->root.mnt) {
567 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100568 unsigned seq;
569
570 do {
571 seq = read_seqcount_begin(&fs->seq);
572 nd->root = fs->root;
Tim Chenc1530012011-04-15 11:39:29 -0700573 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
Nick Pigginc28cc362011-01-07 17:49:53 +1100574 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100575 }
576}
577
Arjan van de Venf1662352006-01-14 13:21:31 -0800578static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579{
Nick Piggin31e6b012011-01-07 17:49:52 +1100580 int ret;
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 if (IS_ERR(link))
583 goto fail;
584
585 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400586 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800587 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400588 nd->path = nd->root;
589 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500590 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100592 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100593
Nick Piggin31e6b012011-01-07 17:49:52 +1100594 ret = link_path_walk(link, nd);
595 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800597 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 return PTR_ERR(link);
599}
600
Jan Blunck1d957f92008-02-14 19:34:35 -0800601static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700602{
603 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800604 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700605 mntput(path->mnt);
606}
607
Nick Piggin7b9337a2011-01-14 08:42:43 +0000608static inline void path_to_nameidata(const struct path *path,
609 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700610{
Nick Piggin31e6b012011-01-07 17:49:52 +1100611 if (!(nd->flags & LOOKUP_RCU)) {
612 dput(nd->path.dentry);
613 if (nd->path.mnt != path->mnt)
614 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800615 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100616 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800617 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700618}
619
Al Viro574197e2011-03-14 22:20:34 -0400620static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
621{
622 struct inode *inode = link->dentry->d_inode;
623 if (!IS_ERR(cookie) && inode->i_op->put_link)
624 inode->i_op->put_link(link->dentry, nd, cookie);
625 path_put(link);
626}
627
Al Virodef4af32009-12-26 08:37:05 -0500628static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400629follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800630{
631 int error;
Nick Piggin7b9337a2011-01-14 08:42:43 +0000632 struct dentry *dentry = link->dentry;
Ian Kent051d3812006-03-27 01:14:53 -0800633
Al Viro844a3912011-02-15 00:38:26 -0500634 BUG_ON(nd->flags & LOOKUP_RCU);
635
Al Viro0e794582011-03-16 02:45:02 -0400636 if (link->mnt == nd->path.mnt)
637 mntget(link->mnt);
638
Al Viro574197e2011-03-14 22:20:34 -0400639 if (unlikely(current->total_link_count >= 40)) {
640 *p = ERR_PTR(-ELOOP); /* no ->put_link(), please */
Al Viro574197e2011-03-14 22:20:34 -0400641 path_put(&nd->path);
642 return -ELOOP;
643 }
644 cond_resched();
645 current->total_link_count++;
646
Nick Piggin7b9337a2011-01-14 08:42:43 +0000647 touch_atime(link->mnt, dentry);
Ian Kent051d3812006-03-27 01:14:53 -0800648 nd_set_link(nd, NULL);
649
Al Viro36f3b4f2011-02-22 21:24:38 -0500650 error = security_inode_follow_link(link->dentry, nd);
651 if (error) {
652 *p = ERR_PTR(error); /* no ->put_link(), please */
653 path_put(&nd->path);
654 return error;
655 }
656
Al Viro86acdca12009-12-22 23:45:11 -0500657 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500658 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
659 error = PTR_ERR(*p);
660 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800661 char *s = nd_get_link(nd);
662 error = 0;
663 if (s)
664 error = __vfs_follow_link(nd, s);
Al Virobcda7652011-03-13 16:42:14 -0400665 else if (nd->last_type == LAST_BIND) {
Al Viro16c2cd72011-02-22 15:50:10 -0500666 nd->flags |= LOOKUP_JUMPED;
Al Virob21041d2011-03-14 20:01:51 -0400667 nd->inode = nd->path.dentry->d_inode;
668 if (nd->inode->i_op->follow_link) {
Al Virobcda7652011-03-13 16:42:14 -0400669 /* stepped on a _really_ weird one */
670 path_put(&nd->path);
671 error = -ELOOP;
672 }
673 }
Ian Kent051d3812006-03-27 01:14:53 -0800674 }
Ian Kent051d3812006-03-27 01:14:53 -0800675 return error;
676}
677
Nick Piggin31e6b012011-01-07 17:49:52 +1100678static int follow_up_rcu(struct path *path)
679{
Al Viro0714a532011-11-24 22:19:58 -0500680 struct mount *mnt = real_mount(path->mnt);
681 struct mount *parent;
Nick Piggin31e6b012011-01-07 17:49:52 +1100682 struct dentry *mountpoint;
683
Al Viro0714a532011-11-24 22:19:58 -0500684 parent = mnt->mnt_parent;
685 if (&parent->mnt == path->mnt)
Nick Piggin31e6b012011-01-07 17:49:52 +1100686 return 0;
Al Viro0714a532011-11-24 22:19:58 -0500687 mountpoint = mnt->mnt.mnt_mountpoint;
Nick Piggin31e6b012011-01-07 17:49:52 +1100688 path->dentry = mountpoint;
Al Viro0714a532011-11-24 22:19:58 -0500689 path->mnt = &parent->mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +1100690 return 1;
691}
692
Al Virobab77eb2009-04-18 03:26:48 -0400693int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Al Viro0714a532011-11-24 22:19:58 -0500695 struct mount *mnt = real_mount(path->mnt);
696 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000698
699 br_read_lock(vfsmount_lock);
Al Viro0714a532011-11-24 22:19:58 -0500700 parent = mnt->mnt_parent;
701 if (&parent->mnt == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000702 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 return 0;
704 }
Al Viro0714a532011-11-24 22:19:58 -0500705 mntget(&parent->mnt);
706 mountpoint = dget(mnt->mnt.mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000707 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400708 dput(path->dentry);
709 path->dentry = mountpoint;
710 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -0500711 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return 1;
713}
714
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100715/*
David Howells9875cf82011-01-14 18:45:21 +0000716 * Perform an automount
717 * - return -EISDIR to tell follow_managed() to stop and return the path we
718 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 */
David Howells9875cf82011-01-14 18:45:21 +0000720static int follow_automount(struct path *path, unsigned flags,
721 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100722{
David Howells9875cf82011-01-14 18:45:21 +0000723 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000724 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100725
David Howells9875cf82011-01-14 18:45:21 +0000726 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
727 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700728
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200729 /* We don't want to mount if someone's just doing a stat -
730 * unless they're stat'ing a directory and appended a '/' to
731 * the name.
732 *
733 * We do, however, want to mount if someone wants to open or
734 * create a file of any type under the mountpoint, wants to
735 * traverse through the mountpoint or wants to open the
736 * mounted directory. Also, autofs may mark negative dentries
737 * as being automount points. These will need the attentions
738 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +0000739 */
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200740 if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
Linus Torvaldsd94c1772011-09-26 17:44:55 -0700741 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200742 path->dentry->d_inode)
743 return -EISDIR;
744
David Howells9875cf82011-01-14 18:45:21 +0000745 current->total_link_count++;
746 if (current->total_link_count >= 40)
747 return -ELOOP;
748
749 mnt = path->dentry->d_op->d_automount(path);
750 if (IS_ERR(mnt)) {
751 /*
752 * The filesystem is allowed to return -EISDIR here to indicate
753 * it doesn't want to automount. For instance, autofs would do
754 * this so that its userspace daemon can mount on this dentry.
755 *
756 * However, we can only permit this if it's a terminal point in
757 * the path being looked up; if it wasn't then the remainder of
758 * the path is inaccessible and we should say so.
759 */
Al Viro49084c32011-06-25 21:59:52 -0400760 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +0000761 return -EREMOTE;
762 return PTR_ERR(mnt);
763 }
David Howellsea5b7782011-01-14 19:10:03 +0000764
David Howells9875cf82011-01-14 18:45:21 +0000765 if (!mnt) /* mount collision */
766 return 0;
767
Al Viro8aef1882011-06-16 15:10:06 +0100768 if (!*need_mntput) {
769 /* lock_mount() may release path->mnt on error */
770 mntget(path->mnt);
771 *need_mntput = true;
772 }
Al Viro19a167a2011-01-17 01:35:23 -0500773 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000774
David Howellsea5b7782011-01-14 19:10:03 +0000775 switch (err) {
776 case -EBUSY:
777 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500778 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000779 case 0:
Al Viro8aef1882011-06-16 15:10:06 +0100780 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +0000781 path->mnt = mnt;
782 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +0000783 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500784 default:
785 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000786 }
Al Viro19a167a2011-01-17 01:35:23 -0500787
David Howells9875cf82011-01-14 18:45:21 +0000788}
789
790/*
791 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000792 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000793 * - Flagged as mountpoint
794 * - Flagged as automount point
795 *
796 * This may only be called in refwalk mode.
797 *
798 * Serialization is taken care of in namespace.c
799 */
800static int follow_managed(struct path *path, unsigned flags)
801{
Al Viro8aef1882011-06-16 15:10:06 +0100802 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +0000803 unsigned managed;
804 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +0100805 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +0000806
807 /* Given that we're not holding a lock here, we retain the value in a
808 * local variable for each dentry as we look at it so that we don't see
809 * the components of that value change under us */
810 while (managed = ACCESS_ONCE(path->dentry->d_flags),
811 managed &= DCACHE_MANAGED_DENTRY,
812 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000813 /* Allow the filesystem to manage the transit without i_mutex
814 * being held. */
815 if (managed & DCACHE_MANAGE_TRANSIT) {
816 BUG_ON(!path->dentry->d_op);
817 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -0400818 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000819 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100820 break;
David Howellscc53ce52011-01-14 18:45:26 +0000821 }
822
David Howells9875cf82011-01-14 18:45:21 +0000823 /* Transit to a mounted filesystem. */
824 if (managed & DCACHE_MOUNTED) {
825 struct vfsmount *mounted = lookup_mnt(path);
826 if (mounted) {
827 dput(path->dentry);
828 if (need_mntput)
829 mntput(path->mnt);
830 path->mnt = mounted;
831 path->dentry = dget(mounted->mnt_root);
832 need_mntput = true;
833 continue;
834 }
835
836 /* Something is mounted on this dentry in another
837 * namespace and/or whatever was mounted there in this
838 * namespace got unmounted before we managed to get the
839 * vfsmount_lock */
840 }
841
842 /* Handle an automount point */
843 if (managed & DCACHE_NEED_AUTOMOUNT) {
844 ret = follow_automount(path, flags, &need_mntput);
845 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100846 break;
David Howells9875cf82011-01-14 18:45:21 +0000847 continue;
848 }
849
850 /* We didn't change the current path point */
851 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 }
Al Viro8aef1882011-06-16 15:10:06 +0100853
854 if (need_mntput && path->mnt == mnt)
855 mntput(path->mnt);
856 if (ret == -EISDIR)
857 ret = 0;
Al Viroa3fbbde2011-11-07 21:21:26 +0000858 return ret < 0 ? ret : need_mntput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
860
David Howellscc53ce52011-01-14 18:45:26 +0000861int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
863 struct vfsmount *mounted;
864
Al Viro1c755af2009-04-18 14:06:57 -0400865 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400867 dput(path->dentry);
868 mntput(path->mnt);
869 path->mnt = mounted;
870 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 return 1;
872 }
873 return 0;
874}
875
Ian Kent62a73752011-03-25 01:51:02 +0800876static inline bool managed_dentry_might_block(struct dentry *dentry)
877{
878 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
879 dentry->d_op->d_manage(dentry, true) < 0);
880}
881
David Howells9875cf82011-01-14 18:45:21 +0000882/*
Al Viro287548e2011-05-27 06:50:06 -0400883 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
884 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +0000885 */
886static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -0400887 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +0000888{
Ian Kent62a73752011-03-25 01:51:02 +0800889 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -0500890 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +0800891 /*
892 * Don't forget we might have a non-mountpoint managed dentry
893 * that wants to block transit.
894 */
Al Viro287548e2011-05-27 06:50:06 -0400895 if (unlikely(managed_dentry_might_block(path->dentry)))
David Howellsab909112011-01-14 18:46:51 +0000896 return false;
Ian Kent62a73752011-03-25 01:51:02 +0800897
898 if (!d_mountpoint(path->dentry))
899 break;
900
David Howells9875cf82011-01-14 18:45:21 +0000901 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
902 if (!mounted)
903 break;
Al Viroc7105362011-11-24 18:22:03 -0500904 path->mnt = &mounted->mnt;
905 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +0000906 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +0000907 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -0700908 /*
909 * Update the inode too. We don't need to re-check the
910 * dentry sequence number here after this d_inode read,
911 * because a mount-point is always pinned.
912 */
913 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +0000914 }
David Howells9875cf82011-01-14 18:45:21 +0000915 return true;
916}
917
Al Virodea39372011-05-27 06:53:39 -0400918static void follow_mount_rcu(struct nameidata *nd)
Al Viro287548e2011-05-27 06:50:06 -0400919{
Al Virodea39372011-05-27 06:53:39 -0400920 while (d_mountpoint(nd->path.dentry)) {
Al Viroc7105362011-11-24 18:22:03 -0500921 struct mount *mounted;
Al Virodea39372011-05-27 06:53:39 -0400922 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
Al Viro287548e2011-05-27 06:50:06 -0400923 if (!mounted)
924 break;
Al Viroc7105362011-11-24 18:22:03 -0500925 nd->path.mnt = &mounted->mnt;
926 nd->path.dentry = mounted->mnt.mnt_root;
Al Virodea39372011-05-27 06:53:39 -0400927 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro287548e2011-05-27 06:50:06 -0400928 }
929}
930
Nick Piggin31e6b012011-01-07 17:49:52 +1100931static int follow_dotdot_rcu(struct nameidata *nd)
932{
Nick Piggin31e6b012011-01-07 17:49:52 +1100933 set_root_rcu(nd);
934
David Howells9875cf82011-01-14 18:45:21 +0000935 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100936 if (nd->path.dentry == nd->root.dentry &&
937 nd->path.mnt == nd->root.mnt) {
938 break;
939 }
940 if (nd->path.dentry != nd->path.mnt->mnt_root) {
941 struct dentry *old = nd->path.dentry;
942 struct dentry *parent = old->d_parent;
943 unsigned seq;
944
945 seq = read_seqcount_begin(&parent->d_seq);
946 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -0500947 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +1100948 nd->path.dentry = parent;
949 nd->seq = seq;
950 break;
951 }
952 if (!follow_up_rcu(&nd->path))
953 break;
954 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +1100955 }
Al Virodea39372011-05-27 06:53:39 -0400956 follow_mount_rcu(nd);
957 nd->inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +1100958 return 0;
Al Viroef7562d2011-03-04 14:35:59 -0500959
960failed:
961 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -0500962 if (!(nd->flags & LOOKUP_ROOT))
963 nd->root.mnt = NULL;
Al Viroef7562d2011-03-04 14:35:59 -0500964 rcu_read_unlock();
965 br_read_unlock(vfsmount_lock);
966 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +1100967}
968
David Howells9875cf82011-01-14 18:45:21 +0000969/*
David Howellscc53ce52011-01-14 18:45:26 +0000970 * Follow down to the covering mount currently visible to userspace. At each
971 * point, the filesystem owning that dentry may be queried as to whether the
972 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +0000973 */
Al Viro7cc90cc2011-03-18 09:04:20 -0400974int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +0000975{
976 unsigned managed;
977 int ret;
978
979 while (managed = ACCESS_ONCE(path->dentry->d_flags),
980 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
981 /* Allow the filesystem to manage the transit without i_mutex
982 * being held.
983 *
984 * We indicate to the filesystem if someone is trying to mount
985 * something here. This gives autofs the chance to deny anyone
986 * other than its daemon the right to mount on its
987 * superstructure.
988 *
989 * The filesystem may sleep at this point.
990 */
991 if (managed & DCACHE_MANAGE_TRANSIT) {
992 BUG_ON(!path->dentry->d_op);
993 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +0000994 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -0400995 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000996 if (ret < 0)
997 return ret == -EISDIR ? 0 : ret;
998 }
999
1000 /* Transit to a mounted filesystem. */
1001 if (managed & DCACHE_MOUNTED) {
1002 struct vfsmount *mounted = lookup_mnt(path);
1003 if (!mounted)
1004 break;
1005 dput(path->dentry);
1006 mntput(path->mnt);
1007 path->mnt = mounted;
1008 path->dentry = dget(mounted->mnt_root);
1009 continue;
1010 }
1011
1012 /* Don't handle automount points here */
1013 break;
1014 }
1015 return 0;
1016}
1017
1018/*
David Howells9875cf82011-01-14 18:45:21 +00001019 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1020 */
1021static void follow_mount(struct path *path)
1022{
1023 while (d_mountpoint(path->dentry)) {
1024 struct vfsmount *mounted = lookup_mnt(path);
1025 if (!mounted)
1026 break;
1027 dput(path->dentry);
1028 mntput(path->mnt);
1029 path->mnt = mounted;
1030 path->dentry = dget(mounted->mnt_root);
1031 }
1032}
1033
Nick Piggin31e6b012011-01-07 17:49:52 +11001034static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035{
Al Viro2a737872009-04-07 11:49:53 -04001036 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001039 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Al Viro2a737872009-04-07 11:49:53 -04001041 if (nd->path.dentry == nd->root.dentry &&
1042 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 break;
1044 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001045 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001046 /* rare case of legitimate dget_parent()... */
1047 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 dput(old);
1049 break;
1050 }
Al Viro3088dd72010-01-30 15:47:29 -05001051 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
Al Viro79ed0222009-04-18 13:59:41 -04001054 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001055 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056}
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058/*
Nick Pigginbaa03892010-08-18 04:37:31 +10001059 * Allocate a dentry with name and parent, and perform a parent
1060 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1061 * on error. parent->d_inode->i_mutex must be held. d_lookup must
1062 * have verified that no child exists while under i_mutex.
1063 */
1064static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1065 struct qstr *name, struct nameidata *nd)
1066{
1067 struct inode *inode = parent->d_inode;
1068 struct dentry *dentry;
1069 struct dentry *old;
1070
1071 /* Don't create child dentry for a dead directory. */
1072 if (unlikely(IS_DEADDIR(inode)))
1073 return ERR_PTR(-ENOENT);
1074
1075 dentry = d_alloc(parent, name);
1076 if (unlikely(!dentry))
1077 return ERR_PTR(-ENOMEM);
1078
1079 old = inode->i_op->lookup(inode, dentry, nd);
1080 if (unlikely(old)) {
1081 dput(dentry);
1082 dentry = old;
1083 }
1084 return dentry;
1085}
1086
1087/*
Josef Bacik44396f42011-05-31 11:58:49 -04001088 * We already have a dentry, but require a lookup to be performed on the parent
1089 * directory to fill in d_inode. Returns the new dentry, or ERR_PTR on error.
1090 * parent->d_inode->i_mutex must be held. d_lookup must have verified that no
1091 * child exists while under i_mutex.
1092 */
1093static struct dentry *d_inode_lookup(struct dentry *parent, struct dentry *dentry,
1094 struct nameidata *nd)
1095{
1096 struct inode *inode = parent->d_inode;
1097 struct dentry *old;
1098
1099 /* Don't create child dentry for a dead directory. */
1100 if (unlikely(IS_DEADDIR(inode)))
1101 return ERR_PTR(-ENOENT);
1102
1103 old = inode->i_op->lookup(inode, dentry, nd);
1104 if (unlikely(old)) {
1105 dput(dentry);
1106 dentry = old;
1107 }
1108 return dentry;
1109}
1110
1111/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 * It's more convoluted than I'd like it to be, but... it's still fairly
1113 * small and for now I'd prefer to have fast path as straight as possible.
1114 * It _is_ time-critical.
1115 */
1116static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +11001117 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
Jan Blunck4ac91372008-02-14 19:34:32 -08001119 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001120 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001121 int need_reval = 1;
1122 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001123 int err;
1124
Al Viro3cac2602009-08-13 18:27:43 +04001125 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001126 * Rename seqlock is not required here because in the off chance
1127 * of a false negative due to a concurrent rename, we're going to
1128 * do the non-racy lookup, below.
1129 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001130 if (nd->flags & LOOKUP_RCU) {
1131 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001132 *inode = nd->inode;
1133 dentry = __d_lookup_rcu(parent, name, &seq, inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001134 if (!dentry)
1135 goto unlazy;
1136
Nick Piggin31e6b012011-01-07 17:49:52 +11001137 /* Memory barrier in read_seqcount_begin of child is enough */
1138 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1139 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001140 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001141
Al Viro24643082011-02-15 01:26:22 -05001142 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro5a18fff2011-03-11 04:44:53 -05001143 status = d_revalidate(dentry, nd);
1144 if (unlikely(status <= 0)) {
1145 if (status != -ECHILD)
1146 need_reval = 0;
1147 goto unlazy;
1148 }
Al Viro24643082011-02-15 01:26:22 -05001149 }
Josef Bacik44396f42011-05-31 11:58:49 -04001150 if (unlikely(d_need_lookup(dentry)))
1151 goto unlazy;
Nick Piggin31e6b012011-01-07 17:49:52 +11001152 path->mnt = mnt;
1153 path->dentry = dentry;
Al Virod6e9bd22011-05-27 07:03:15 -04001154 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1155 goto unlazy;
1156 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1157 goto unlazy;
1158 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001159unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001160 if (unlazy_walk(nd, dentry))
1161 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001162 } else {
1163 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001164 }
Al Viro5a18fff2011-03-11 04:44:53 -05001165
Josef Bacik44396f42011-05-31 11:58:49 -04001166 if (dentry && unlikely(d_need_lookup(dentry))) {
1167 dput(dentry);
1168 dentry = NULL;
1169 }
Al Viro5a18fff2011-03-11 04:44:53 -05001170retry:
1171 if (unlikely(!dentry)) {
1172 struct inode *dir = parent->d_inode;
1173 BUG_ON(nd->inode != dir);
1174
1175 mutex_lock(&dir->i_mutex);
1176 dentry = d_lookup(parent, name);
1177 if (likely(!dentry)) {
1178 dentry = d_alloc_and_lookup(parent, name, nd);
1179 if (IS_ERR(dentry)) {
1180 mutex_unlock(&dir->i_mutex);
1181 return PTR_ERR(dentry);
1182 }
1183 /* known good */
1184 need_reval = 0;
1185 status = 1;
Josef Bacik44396f42011-05-31 11:58:49 -04001186 } else if (unlikely(d_need_lookup(dentry))) {
1187 dentry = d_inode_lookup(parent, dentry, nd);
1188 if (IS_ERR(dentry)) {
1189 mutex_unlock(&dir->i_mutex);
1190 return PTR_ERR(dentry);
1191 }
1192 /* known good */
1193 need_reval = 0;
1194 status = 1;
Al Viro5a18fff2011-03-11 04:44:53 -05001195 }
1196 mutex_unlock(&dir->i_mutex);
Al Viro24643082011-02-15 01:26:22 -05001197 }
Al Viro5a18fff2011-03-11 04:44:53 -05001198 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1199 status = d_revalidate(dentry, nd);
1200 if (unlikely(status <= 0)) {
1201 if (status < 0) {
1202 dput(dentry);
1203 return status;
1204 }
1205 if (!d_invalidate(dentry)) {
1206 dput(dentry);
1207 dentry = NULL;
1208 need_reval = 1;
1209 goto retry;
1210 }
1211 }
1212
David Howells9875cf82011-01-14 18:45:21 +00001213 path->mnt = mnt;
1214 path->dentry = dentry;
1215 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001216 if (unlikely(err < 0)) {
1217 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001218 return err;
Ian Kent89312212011-01-18 12:06:10 +08001219 }
Al Viroa3fbbde2011-11-07 21:21:26 +00001220 if (err)
1221 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001222 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224}
1225
Al Viro52094c82011-02-21 21:34:47 -05001226static inline int may_lookup(struct nameidata *nd)
1227{
1228 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001229 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001230 if (err != -ECHILD)
1231 return err;
Al Viro19660af2011-03-25 10:32:48 -04001232 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001233 return -ECHILD;
1234 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001235 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001236}
1237
Al Viro9856fa12011-03-04 14:22:06 -05001238static inline int handle_dots(struct nameidata *nd, int type)
1239{
1240 if (type == LAST_DOTDOT) {
1241 if (nd->flags & LOOKUP_RCU) {
1242 if (follow_dotdot_rcu(nd))
1243 return -ECHILD;
1244 } else
1245 follow_dotdot(nd);
1246 }
1247 return 0;
1248}
1249
Al Viro951361f2011-03-04 14:44:37 -05001250static void terminate_walk(struct nameidata *nd)
1251{
1252 if (!(nd->flags & LOOKUP_RCU)) {
1253 path_put(&nd->path);
1254 } else {
1255 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001256 if (!(nd->flags & LOOKUP_ROOT))
1257 nd->root.mnt = NULL;
Al Viro951361f2011-03-04 14:44:37 -05001258 rcu_read_unlock();
1259 br_read_unlock(vfsmount_lock);
1260 }
1261}
1262
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001263/*
1264 * Do we need to follow links? We _really_ want to be able
1265 * to do this check without having to look at inode->i_op,
1266 * so we keep a cache of "no, this doesn't need follow_link"
1267 * for the common case.
1268 */
Linus Torvalds7813b942011-08-07 09:53:20 -07001269static inline int should_follow_link(struct inode *inode, int follow)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001270{
1271 if (unlikely(!(inode->i_opflags & IOP_NOFOLLOW))) {
1272 if (likely(inode->i_op->follow_link))
1273 return follow;
1274
1275 /* This gets set once for the inode lifetime */
1276 spin_lock(&inode->i_lock);
1277 inode->i_opflags |= IOP_NOFOLLOW;
1278 spin_unlock(&inode->i_lock);
1279 }
1280 return 0;
1281}
1282
Al Viroce57dfc2011-03-13 19:58:58 -04001283static inline int walk_component(struct nameidata *nd, struct path *path,
1284 struct qstr *name, int type, int follow)
1285{
1286 struct inode *inode;
1287 int err;
1288 /*
1289 * "." and ".." are special - ".." especially so because it has
1290 * to be able to know about the current root directory and
1291 * parent relationships.
1292 */
1293 if (unlikely(type != LAST_NORM))
1294 return handle_dots(nd, type);
1295 err = do_lookup(nd, name, path, &inode);
1296 if (unlikely(err)) {
1297 terminate_walk(nd);
1298 return err;
1299 }
1300 if (!inode) {
1301 path_to_nameidata(path, nd);
1302 terminate_walk(nd);
1303 return -ENOENT;
1304 }
Linus Torvalds7813b942011-08-07 09:53:20 -07001305 if (should_follow_link(inode, follow)) {
Al Viro19660af2011-03-25 10:32:48 -04001306 if (nd->flags & LOOKUP_RCU) {
1307 if (unlikely(unlazy_walk(nd, path->dentry))) {
1308 terminate_walk(nd);
1309 return -ECHILD;
1310 }
1311 }
Al Viroce57dfc2011-03-13 19:58:58 -04001312 BUG_ON(inode != path->dentry->d_inode);
1313 return 1;
1314 }
1315 path_to_nameidata(path, nd);
1316 nd->inode = inode;
1317 return 0;
1318}
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320/*
Al Virob3563792011-03-14 21:54:55 -04001321 * This limits recursive symlink follows to 8, while
1322 * limiting consecutive symlinks to 40.
1323 *
1324 * Without that kind of total limit, nasty chains of consecutive
1325 * symlinks can cause almost arbitrarily long lookups.
1326 */
1327static inline int nested_symlink(struct path *path, struct nameidata *nd)
1328{
1329 int res;
1330
Al Virob3563792011-03-14 21:54:55 -04001331 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1332 path_put_conditional(path, nd);
1333 path_put(&nd->path);
1334 return -ELOOP;
1335 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001336 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001337
1338 nd->depth++;
1339 current->link_count++;
1340
1341 do {
1342 struct path link = *path;
1343 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001344
1345 res = follow_link(&link, nd, &cookie);
Al Virob3563792011-03-14 21:54:55 -04001346 if (!res)
1347 res = walk_component(nd, path, &nd->last,
1348 nd->last_type, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001349 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001350 } while (res > 0);
1351
1352 current->link_count--;
1353 nd->depth--;
1354 return res;
1355}
1356
1357/*
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001358 * We really don't want to look at inode->i_op->lookup
1359 * when we don't have to. So we keep a cache bit in
1360 * the inode ->i_opflags field that says "yes, we can
1361 * do lookup on this inode".
1362 */
1363static inline int can_lookup(struct inode *inode)
1364{
1365 if (likely(inode->i_opflags & IOP_LOOKUP))
1366 return 1;
1367 if (likely(!inode->i_op->lookup))
1368 return 0;
1369
1370 /* We do this once for the lifetime of the inode */
1371 spin_lock(&inode->i_lock);
1372 inode->i_opflags |= IOP_LOOKUP;
1373 spin_unlock(&inode->i_lock);
1374 return 1;
1375}
1376
1377/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001379 * This is the basic name resolution function, turning a pathname into
1380 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001382 * Returns 0 and nd will have valid dentry and mnt on success.
1383 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 */
Al Viro6de88d72009-08-09 01:41:57 +04001385static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386{
1387 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 while (*name=='/')
1391 name++;
1392 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001393 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 /* At this point we know we have a real path component. */
1396 for(;;) {
1397 unsigned long hash;
1398 struct qstr this;
1399 unsigned int c;
Al Virofe479a52011-02-22 15:10:03 -05001400 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Al Viro52094c82011-02-21 21:34:47 -05001402 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 if (err)
1404 break;
1405
1406 this.name = name;
1407 c = *(const unsigned char *)name;
1408
1409 hash = init_name_hash();
1410 do {
1411 name++;
1412 hash = partial_name_hash(c, hash);
1413 c = *(const unsigned char *)name;
1414 } while (c && (c != '/'));
1415 this.len = name - (const char *) this.name;
1416 this.hash = end_name_hash(hash);
1417
Al Virofe479a52011-02-22 15:10:03 -05001418 type = LAST_NORM;
1419 if (this.name[0] == '.') switch (this.len) {
1420 case 2:
Al Viro16c2cd72011-02-22 15:50:10 -05001421 if (this.name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001422 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001423 nd->flags |= LOOKUP_JUMPED;
1424 }
Al Virofe479a52011-02-22 15:10:03 -05001425 break;
1426 case 1:
1427 type = LAST_DOT;
1428 }
Al Viro5a202bc2011-03-08 14:17:44 -05001429 if (likely(type == LAST_NORM)) {
1430 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001431 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001432 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1433 err = parent->d_op->d_hash(parent, nd->inode,
1434 &this);
1435 if (err < 0)
1436 break;
1437 }
1438 }
Al Virofe479a52011-02-22 15:10:03 -05001439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 /* remove trailing slashes? */
1441 if (!c)
1442 goto last_component;
1443 while (*++name == '/');
1444 if (!*name)
Al Virob3563792011-03-14 21:54:55 -04001445 goto last_component;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
Al Viroce57dfc2011-03-13 19:58:58 -04001447 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1448 if (err < 0)
1449 return err;
Al Virofe479a52011-02-22 15:10:03 -05001450
Al Viroce57dfc2011-03-13 19:58:58 -04001451 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001452 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001454 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001455 }
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001456 if (can_lookup(nd->inode))
1457 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 err = -ENOTDIR;
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001459 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 /* here ends the main loop */
1461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462last_component:
Al Virob3563792011-03-14 21:54:55 -04001463 nd->last = this;
1464 nd->last_type = type;
Al Viro086e1832011-02-22 20:56:27 -05001465 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
Al Viro951361f2011-03-04 14:44:37 -05001467 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 return err;
1469}
1470
Al Viro70e9b352011-03-05 21:12:22 -05001471static int path_init(int dfd, const char *name, unsigned int flags,
1472 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001474 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001475 int fput_needed;
1476 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477
1478 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001479 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001481 if (flags & LOOKUP_ROOT) {
1482 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001483 if (*name) {
1484 if (!inode->i_op->lookup)
1485 return -ENOTDIR;
1486 retval = inode_permission(inode, MAY_EXEC);
1487 if (retval)
1488 return retval;
1489 }
Al Viro5b6ca022011-03-09 23:04:47 -05001490 nd->path = nd->root;
1491 nd->inode = inode;
1492 if (flags & LOOKUP_RCU) {
1493 br_read_lock(vfsmount_lock);
1494 rcu_read_lock();
1495 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1496 } else {
1497 path_get(&nd->path);
1498 }
1499 return 0;
1500 }
1501
Al Viro2a737872009-04-07 11:49:53 -04001502 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001505 if (flags & LOOKUP_RCU) {
1506 br_read_lock(vfsmount_lock);
1507 rcu_read_lock();
1508 set_root_rcu(nd);
1509 } else {
1510 set_root(nd);
1511 path_get(&nd->root);
1512 }
Al Viro2a737872009-04-07 11:49:53 -04001513 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001514 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001515 if (flags & LOOKUP_RCU) {
1516 struct fs_struct *fs = current->fs;
1517 unsigned seq;
1518
1519 br_read_lock(vfsmount_lock);
1520 rcu_read_lock();
1521
1522 do {
1523 seq = read_seqcount_begin(&fs->seq);
1524 nd->path = fs->pwd;
1525 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1526 } while (read_seqcount_retry(&fs->seq, seq));
1527 } else {
1528 get_fs_pwd(current->fs, &nd->path);
1529 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001530 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001531 struct dentry *dentry;
1532
Al Viro1abf0c72011-03-13 03:51:11 -04001533 file = fget_raw_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001534 retval = -EBADF;
1535 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001536 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001537
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001538 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001539
Al Virof52e0c12011-03-14 18:56:51 -04001540 if (*name) {
1541 retval = -ENOTDIR;
1542 if (!S_ISDIR(dentry->d_inode->i_mode))
1543 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001544
Al Viro4ad5abb2011-06-20 19:57:03 -04001545 retval = inode_permission(dentry->d_inode, MAY_EXEC);
Al Virof52e0c12011-03-14 18:56:51 -04001546 if (retval)
1547 goto fput_fail;
1548 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001549
Jan Blunck5dd784d02008-02-14 19:34:38 -08001550 nd->path = file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001551 if (flags & LOOKUP_RCU) {
1552 if (fput_needed)
Al Viro70e9b352011-03-05 21:12:22 -05001553 *fp = file;
Al Viroe41f7d42011-02-22 14:02:58 -05001554 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1555 br_read_lock(vfsmount_lock);
1556 rcu_read_lock();
1557 } else {
1558 path_get(&file->f_path);
1559 fput_light(file, fput_needed);
1560 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 }
Al Viroe41f7d42011-02-22 14:02:58 -05001562
Nick Piggin31e6b012011-01-07 17:49:52 +11001563 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001564 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001565
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001566fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001567 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001568out_fail:
1569 return retval;
1570}
1571
Al Virobd92d7f2011-03-14 19:54:59 -04001572static inline int lookup_last(struct nameidata *nd, struct path *path)
1573{
1574 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1575 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1576
1577 nd->flags &= ~LOOKUP_PARENT;
1578 return walk_component(nd, path, &nd->last, nd->last_type,
1579 nd->flags & LOOKUP_FOLLOW);
1580}
1581
Al Viro9b4a9b12009-04-07 11:44:16 -04001582/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001583static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001584 unsigned int flags, struct nameidata *nd)
1585{
Al Viro70e9b352011-03-05 21:12:22 -05001586 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001587 struct path path;
1588 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001589
1590 /*
1591 * Path walking is largely split up into 2 different synchronisation
1592 * schemes, rcu-walk and ref-walk (explained in
1593 * Documentation/filesystems/path-lookup.txt). These share much of the
1594 * path walk code, but some things particularly setup, cleanup, and
1595 * following mounts are sufficiently divergent that functions are
1596 * duplicated. Typically there is a function foo(), and its RCU
1597 * analogue, foo_rcu().
1598 *
1599 * -ECHILD is the error number of choice (just to avoid clashes) that
1600 * is returned if some aspect of an rcu-walk fails. Such an error must
1601 * be handled by restarting a traditional ref-walk (which will always
1602 * be able to complete).
1603 */
Al Virobd92d7f2011-03-14 19:54:59 -04001604 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001605
Al Virobd92d7f2011-03-14 19:54:59 -04001606 if (unlikely(err))
1607 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001608
1609 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001610 err = link_path_walk(name, nd);
1611
1612 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001613 err = lookup_last(nd, &path);
1614 while (err > 0) {
1615 void *cookie;
1616 struct path link = path;
Al Virobd92d7f2011-03-14 19:54:59 -04001617 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001618 err = follow_link(&link, nd, &cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001619 if (!err)
1620 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001621 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001622 }
1623 }
Al Viroee0827c2011-02-21 23:38:09 -05001624
Al Viro9f1fafe2011-03-25 11:00:12 -04001625 if (!err)
1626 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001627
1628 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1629 if (!nd->inode->i_op->lookup) {
1630 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001631 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001632 }
1633 }
Al Viro16c2cd72011-02-22 15:50:10 -05001634
Al Viro70e9b352011-03-05 21:12:22 -05001635 if (base)
1636 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001637
Al Viro5b6ca022011-03-09 23:04:47 -05001638 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001639 path_put(&nd->root);
1640 nd->root.mnt = NULL;
1641 }
Al Virobd92d7f2011-03-14 19:54:59 -04001642 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001643}
Nick Piggin31e6b012011-01-07 17:49:52 +11001644
Al Viroee0827c2011-02-21 23:38:09 -05001645static int do_path_lookup(int dfd, const char *name,
1646 unsigned int flags, struct nameidata *nd)
1647{
1648 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1649 if (unlikely(retval == -ECHILD))
1650 retval = path_lookupat(dfd, name, flags, nd);
1651 if (unlikely(retval == -ESTALE))
1652 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001653
1654 if (likely(!retval)) {
1655 if (unlikely(!audit_dummy_context())) {
1656 if (nd->path.dentry && nd->inode)
1657 audit_inode(name, nd->path.dentry);
1658 }
1659 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001660 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661}
1662
Al Viroc9c6cac2011-02-16 15:15:47 -05001663int kern_path_parent(const char *name, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001664{
Al Viroc9c6cac2011-02-16 15:15:47 -05001665 return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001666}
1667
Al Virod1811462008-08-02 00:49:18 -04001668int kern_path(const char *name, unsigned int flags, struct path *path)
1669{
1670 struct nameidata nd;
1671 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1672 if (!res)
1673 *path = nd.path;
1674 return res;
1675}
1676
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001677/**
1678 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1679 * @dentry: pointer to dentry of the base directory
1680 * @mnt: pointer to vfs mount of the base directory
1681 * @name: pointer to file name
1682 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04001683 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001684 */
1685int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1686 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04001687 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001688{
Al Viroe0a01242011-06-27 17:00:37 -04001689 struct nameidata nd;
1690 int err;
1691 nd.root.dentry = dentry;
1692 nd.root.mnt = mnt;
1693 BUG_ON(flags & LOOKUP_PARENT);
Al Viro5b6ca022011-03-09 23:04:47 -05001694 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
Al Viroe0a01242011-06-27 17:00:37 -04001695 err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
1696 if (!err)
1697 *path = nd.path;
1698 return err;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001699}
1700
Christoph Hellwigeead1912007-10-16 23:25:38 -07001701static struct dentry *__lookup_hash(struct qstr *name,
1702 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703{
Christoph Hellwig81fca442010-10-06 10:47:47 +02001704 struct inode *inode = base->d_inode;
James Morris057f6c02007-04-26 00:12:05 -07001705 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 int err;
1707
Al Viro4ad5abb2011-06-20 19:57:03 -04001708 err = inode_permission(inode, MAY_EXEC);
Christoph Hellwig81fca442010-10-06 10:47:47 +02001709 if (err)
1710 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711
1712 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001713 * Don't bother with __d_lookup: callers are for creat as
1714 * well as unlink, so a lot of the time it would cost
1715 * a double lookup.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001716 */
Nick Pigginb04f7842010-08-18 04:37:34 +10001717 dentry = d_lookup(base, name);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001718
Josef Bacik44396f42011-05-31 11:58:49 -04001719 if (dentry && d_need_lookup(dentry)) {
1720 /*
1721 * __lookup_hash is called with the parent dir's i_mutex already
1722 * held, so we are good to go here.
1723 */
1724 dentry = d_inode_lookup(base, dentry, nd);
1725 if (IS_ERR(dentry))
1726 return dentry;
1727 }
1728
Al Virod2d9e9f2011-06-20 10:55:26 -04001729 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE)) {
1730 int status = d_revalidate(dentry, nd);
1731 if (unlikely(status <= 0)) {
1732 /*
1733 * The dentry failed validation.
1734 * If d_revalidate returned 0 attempt to invalidate
1735 * the dentry otherwise d_revalidate is asking us
1736 * to return a fail status.
1737 */
1738 if (status < 0) {
1739 dput(dentry);
1740 return ERR_PTR(status);
1741 } else if (!d_invalidate(dentry)) {
1742 dput(dentry);
1743 dentry = NULL;
1744 }
1745 }
1746 }
Al Viro6e6b1bd2009-08-13 23:38:37 +04001747
Nick Pigginbaa03892010-08-18 04:37:31 +10001748 if (!dentry)
1749 dentry = d_alloc_and_lookup(base, name, nd);
Al Viro5a202bc2011-03-08 14:17:44 -05001750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 return dentry;
1752}
1753
James Morris057f6c02007-04-26 00:12:05 -07001754/*
1755 * Restricted form of lookup. Doesn't follow links, single-component only,
1756 * needs parent already locked. Doesn't follow mounts.
1757 * SMP-safe.
1758 */
Adrian Bunka244e162006-03-31 02:32:11 -08001759static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760{
Jan Blunck4ac91372008-02-14 19:34:32 -08001761 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762}
1763
Christoph Hellwigeead1912007-10-16 23:25:38 -07001764/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001765 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001766 * @name: pathname component to lookup
1767 * @base: base directory to lookup from
1768 * @len: maximum length @len should be interpreted to
1769 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001770 * Note that this routine is purely a helper for filesystem usage and should
1771 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001772 * nameidata argument is passed to the filesystem methods and a filesystem
1773 * using this helper needs to be prepared for that.
1774 */
James Morris057f6c02007-04-26 00:12:05 -07001775struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1776{
James Morris057f6c02007-04-26 00:12:05 -07001777 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05001778 unsigned long hash;
1779 unsigned int c;
James Morris057f6c02007-04-26 00:12:05 -07001780
David Woodhouse2f9092e2009-04-20 23:18:37 +01001781 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1782
Al Viro6a96ba52011-03-07 23:49:20 -05001783 this.name = name;
1784 this.len = len;
1785 if (!len)
1786 return ERR_PTR(-EACCES);
1787
1788 hash = init_name_hash();
1789 while (len--) {
1790 c = *(const unsigned char *)name++;
1791 if (c == '/' || c == '\0')
1792 return ERR_PTR(-EACCES);
1793 hash = partial_name_hash(c, hash);
1794 }
1795 this.hash = end_name_hash(hash);
Al Viro5a202bc2011-03-08 14:17:44 -05001796 /*
1797 * See if the low-level filesystem might want
1798 * to use its own hash..
1799 */
1800 if (base->d_flags & DCACHE_OP_HASH) {
1801 int err = base->d_op->d_hash(base, base->d_inode, &this);
1802 if (err < 0)
1803 return ERR_PTR(err);
1804 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07001805
Christoph Hellwig49705b72005-11-08 21:35:06 -08001806 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001807}
1808
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01001809int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
1810 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811{
Al Viro2d8f3032008-07-22 09:59:21 -04001812 struct nameidata nd;
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01001813 char *tmp = getname_flags(name, flags, empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001816
1817 BUG_ON(flags & LOOKUP_PARENT);
1818
1819 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001821 if (!err)
1822 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 }
1824 return err;
1825}
1826
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01001827int user_path_at(int dfd, const char __user *name, unsigned flags,
1828 struct path *path)
1829{
1830 return user_path_at_empty(dfd, name, flags, path, 0);
1831}
1832
Al Viro2ad94ae2008-07-21 09:32:51 -04001833static int user_path_parent(int dfd, const char __user *path,
1834 struct nameidata *nd, char **name)
1835{
1836 char *s = getname(path);
1837 int error;
1838
1839 if (IS_ERR(s))
1840 return PTR_ERR(s);
1841
1842 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1843 if (error)
1844 putname(s);
1845 else
1846 *name = s;
1847
1848 return error;
1849}
1850
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851/*
1852 * It's inline, so penalty for filesystems that don't use sticky bit is
1853 * minimal.
1854 */
1855static inline int check_sticky(struct inode *dir, struct inode *inode)
1856{
David Howellsda9592e2008-11-14 10:39:05 +11001857 uid_t fsuid = current_fsuid();
1858
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 if (!(dir->i_mode & S_ISVTX))
1860 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001861 if (current_user_ns() != inode_userns(inode))
1862 goto other_userns;
David Howellsda9592e2008-11-14 10:39:05 +11001863 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001865 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001867
1868other_userns:
1869 return !ns_capable(inode_userns(inode), CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870}
1871
1872/*
1873 * Check whether we can remove a link victim from directory dir, check
1874 * whether the type of victim is right.
1875 * 1. We can't do it if dir is read-only (done in permission())
1876 * 2. We should have write and exec permissions on dir
1877 * 3. We can't remove anything from append-only dir
1878 * 4. We can't do anything with immutable dir (done in permission())
1879 * 5. If the sticky bit on dir is set we should either
1880 * a. be owner of dir, or
1881 * b. be owner of victim, or
1882 * c. have CAP_FOWNER capability
1883 * 6. If the victim is append-only or immutable we can't do antyhing with
1884 * links pointing to it.
1885 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1886 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1887 * 9. We can't remove a root or mountpoint.
1888 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1889 * nfs_async_unlink().
1890 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001891static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
1893 int error;
1894
1895 if (!victim->d_inode)
1896 return -ENOENT;
1897
1898 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001899 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
Al Virof419a2e2008-07-22 00:07:17 -04001901 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 if (error)
1903 return error;
1904 if (IS_APPEND(dir))
1905 return -EPERM;
1906 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001907 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 return -EPERM;
1909 if (isdir) {
1910 if (!S_ISDIR(victim->d_inode->i_mode))
1911 return -ENOTDIR;
1912 if (IS_ROOT(victim))
1913 return -EBUSY;
1914 } else if (S_ISDIR(victim->d_inode->i_mode))
1915 return -EISDIR;
1916 if (IS_DEADDIR(dir))
1917 return -ENOENT;
1918 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1919 return -EBUSY;
1920 return 0;
1921}
1922
1923/* Check whether we can create an object with dentry child in directory
1924 * dir.
1925 * 1. We can't do it if child already exists (open has special treatment for
1926 * this case, but since we are inlined it's OK)
1927 * 2. We can't do it if dir is read-only (done in permission())
1928 * 3. We should have write and exec permissions on dir
1929 * 4. We can't do it if dir is immutable (done in permission())
1930 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001931static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932{
1933 if (child->d_inode)
1934 return -EEXIST;
1935 if (IS_DEADDIR(dir))
1936 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001937 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938}
1939
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940/*
1941 * p1 and p2 should be directories on the same fs.
1942 */
1943struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1944{
1945 struct dentry *p;
1946
1947 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001948 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 return NULL;
1950 }
1951
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001952 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001954 p = d_ancestor(p2, p1);
1955 if (p) {
1956 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1957 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1958 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 }
1960
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001961 p = d_ancestor(p1, p2);
1962 if (p) {
1963 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1964 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1965 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 }
1967
Ingo Molnarf2eace22006-07-03 00:25:05 -07001968 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1969 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 return NULL;
1971}
1972
1973void unlock_rename(struct dentry *p1, struct dentry *p2)
1974{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001975 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001977 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001978 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 }
1980}
1981
1982int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1983 struct nameidata *nd)
1984{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001985 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986
1987 if (error)
1988 return error;
1989
Al Viroacfa4382008-12-04 10:06:33 -05001990 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 return -EACCES; /* shouldn't it be ENOSYS? */
1992 mode &= S_IALLUGO;
1993 mode |= S_IFREG;
1994 error = security_inode_create(dir, dentry, mode);
1995 if (error)
1996 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001998 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001999 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 return error;
2001}
2002
Al Viro73d049a2011-03-11 12:08:24 -05002003static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002005 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 struct inode *inode = dentry->d_inode;
2007 int error;
2008
Al Virobcda7652011-03-13 16:42:14 -04002009 /* O_PATH? */
2010 if (!acc_mode)
2011 return 0;
2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 if (!inode)
2014 return -ENOENT;
2015
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002016 switch (inode->i_mode & S_IFMT) {
2017 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002019 case S_IFDIR:
2020 if (acc_mode & MAY_WRITE)
2021 return -EISDIR;
2022 break;
2023 case S_IFBLK:
2024 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002025 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002027 /*FALLTHRU*/
2028 case S_IFIFO:
2029 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002031 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002032 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002033
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002034 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002035 if (error)
2036 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002037
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 /*
2039 * An append-only file must be opened in append mode for writing.
2040 */
2041 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002042 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002043 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002045 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 }
2047
2048 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002049 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002050 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002052 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002053}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054
Jeff Laytone1181ee2010-12-07 16:19:50 -05002055static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002056{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002057 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002058 struct inode *inode = path->dentry->d_inode;
2059 int error = get_write_access(inode);
2060 if (error)
2061 return error;
2062 /*
2063 * Refuse to truncate files with mandatory locks held on them.
2064 */
2065 error = locks_verify_locked(inode);
2066 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002067 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002068 if (!error) {
2069 error = do_truncate(path->dentry, 0,
2070 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002071 filp);
Al Viro7715b522009-12-16 03:54:00 -05002072 }
2073 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002074 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075}
2076
Dave Hansend57999e2008-02-15 14:37:27 -08002077static inline int open_to_namei_flags(int flag)
2078{
Al Viro8a5e9292011-06-25 19:15:54 -04002079 if ((flag & O_ACCMODE) == 3)
2080 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002081 return flag;
2082}
2083
Nick Piggin31e6b012011-01-07 17:49:52 +11002084/*
Al Virofe2d35f2011-03-05 22:58:25 -05002085 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002086 */
Al Virofb1cc552009-12-24 01:58:28 -05002087static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viroc3e380b2011-02-23 13:39:45 -05002088 const struct open_flags *op, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002089{
Al Viroa1e28032009-12-24 02:12:06 -05002090 struct dentry *dir = nd->path.dentry;
Al Viro6c0d46c2011-03-09 00:59:59 -05002091 struct dentry *dentry;
Al Viroca344a892011-03-09 00:36:45 -05002092 int open_flag = op->open_flag;
Al Viro6c0d46c2011-03-09 00:59:59 -05002093 int will_truncate = open_flag & O_TRUNC;
Al Viroca344a892011-03-09 00:36:45 -05002094 int want_write = 0;
Al Virobcda7652011-03-13 16:42:14 -04002095 int acc_mode = op->acc_mode;
Al Virofb1cc552009-12-24 01:58:28 -05002096 struct file *filp;
Al Viro16c2cd72011-02-22 15:50:10 -05002097 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002098
Al Viroc3e380b2011-02-23 13:39:45 -05002099 nd->flags &= ~LOOKUP_PARENT;
2100 nd->flags |= op->intent;
2101
Al Viro1f36f772009-12-26 10:56:19 -05002102 switch (nd->last_type) {
2103 case LAST_DOTDOT:
Neil Brown176306f2010-05-24 16:57:56 +10002104 case LAST_DOT:
Al Virofe2d35f2011-03-05 22:58:25 -05002105 error = handle_dots(nd, nd->last_type);
2106 if (error)
2107 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002108 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002109 case LAST_ROOT:
Al Viro9f1fafe2011-03-25 11:00:12 -04002110 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002111 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002112 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002113 audit_inode(pathname, nd->path.dentry);
Al Viroca344a892011-03-09 00:36:45 -05002114 if (open_flag & O_CREAT) {
Al Virofe2d35f2011-03-05 22:58:25 -05002115 error = -EISDIR;
2116 goto exit;
2117 }
2118 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002119 case LAST_BIND:
Al Viro9f1fafe2011-03-25 11:00:12 -04002120 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002121 if (error)
Al Viro9f1fafe2011-03-25 11:00:12 -04002122 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002123 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002124 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002125 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002126
Al Viroca344a892011-03-09 00:36:45 -05002127 if (!(open_flag & O_CREAT)) {
Al Virobcda7652011-03-13 16:42:14 -04002128 int symlink_ok = 0;
Al Virofe2d35f2011-03-05 22:58:25 -05002129 if (nd->last.name[nd->last.len])
2130 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002131 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2132 symlink_ok = 1;
Al Virofe2d35f2011-03-05 22:58:25 -05002133 /* we _can_ be in RCU mode here */
Al Viroce57dfc2011-03-13 19:58:58 -04002134 error = walk_component(nd, path, &nd->last, LAST_NORM,
2135 !symlink_ok);
2136 if (error < 0)
Al Virofe2d35f2011-03-05 22:58:25 -05002137 return ERR_PTR(error);
Al Viroce57dfc2011-03-13 19:58:58 -04002138 if (error) /* symlink */
Al Virofe2d35f2011-03-05 22:58:25 -05002139 return NULL;
Al Virofe2d35f2011-03-05 22:58:25 -05002140 /* sayonara */
Al Viro9f1fafe2011-03-25 11:00:12 -04002141 error = complete_walk(nd);
2142 if (error)
2143 return ERR_PTR(-ECHILD);
Al Virofe2d35f2011-03-05 22:58:25 -05002144
2145 error = -ENOTDIR;
2146 if (nd->flags & LOOKUP_DIRECTORY) {
Al Viroce57dfc2011-03-13 19:58:58 -04002147 if (!nd->inode->i_op->lookup)
Al Virofe2d35f2011-03-05 22:58:25 -05002148 goto exit;
2149 }
2150 audit_inode(pathname, nd->path.dentry);
2151 goto ok;
2152 }
2153
2154 /* create side of things */
Al Viroa3fbbde2011-11-07 21:21:26 +00002155 /*
2156 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED has been
2157 * cleared when we got to the last component we are about to look up
2158 */
Al Viro9f1fafe2011-03-25 11:00:12 -04002159 error = complete_walk(nd);
2160 if (error)
2161 return ERR_PTR(error);
Al Virofe2d35f2011-03-05 22:58:25 -05002162
2163 audit_inode(pathname, dir);
Al Viro16c2cd72011-02-22 15:50:10 -05002164 error = -EISDIR;
Al Viro1f36f772009-12-26 10:56:19 -05002165 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002166 if (nd->last.name[nd->last.len])
2167 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002168
Al Viroa1e28032009-12-24 02:12:06 -05002169 mutex_lock(&dir->d_inode->i_mutex);
2170
Al Viro6c0d46c2011-03-09 00:59:59 -05002171 dentry = lookup_hash(nd);
2172 error = PTR_ERR(dentry);
2173 if (IS_ERR(dentry)) {
Al Virofb1cc552009-12-24 01:58:28 -05002174 mutex_unlock(&dir->d_inode->i_mutex);
2175 goto exit;
2176 }
2177
Al Viro6c0d46c2011-03-09 00:59:59 -05002178 path->dentry = dentry;
2179 path->mnt = nd->path.mnt;
2180
Al Virofb1cc552009-12-24 01:58:28 -05002181 /* Negative dentry, just create the file */
Al Viro6c0d46c2011-03-09 00:59:59 -05002182 if (!dentry->d_inode) {
2183 int mode = op->mode;
2184 if (!IS_POSIXACL(dir->d_inode))
2185 mode &= ~current_umask();
Al Virofb1cc552009-12-24 01:58:28 -05002186 /*
2187 * This write is needed to ensure that a
Al Viro6c0d46c2011-03-09 00:59:59 -05002188 * rw->ro transition does not occur between
Al Virofb1cc552009-12-24 01:58:28 -05002189 * the time when the file is created and when
2190 * a permanent write count is taken through
2191 * the 'struct file' in nameidata_to_filp().
2192 */
2193 error = mnt_want_write(nd->path.mnt);
2194 if (error)
2195 goto exit_mutex_unlock;
Al Viroca344a892011-03-09 00:36:45 -05002196 want_write = 1;
Al Viro9b44f1b2011-03-09 00:17:27 -05002197 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002198 open_flag &= ~O_TRUNC;
Al Viro6c0d46c2011-03-09 00:59:59 -05002199 will_truncate = 0;
Al Virobcda7652011-03-13 16:42:14 -04002200 acc_mode = MAY_OPEN;
Al Viro6c0d46c2011-03-09 00:59:59 -05002201 error = security_path_mknod(&nd->path, dentry, mode, 0);
2202 if (error)
2203 goto exit_mutex_unlock;
2204 error = vfs_create(dir->d_inode, dentry, mode, nd);
2205 if (error)
2206 goto exit_mutex_unlock;
2207 mutex_unlock(&dir->d_inode->i_mutex);
2208 dput(nd->path.dentry);
2209 nd->path.dentry = dentry;
Al Viroca344a892011-03-09 00:36:45 -05002210 goto common;
Al Virofb1cc552009-12-24 01:58:28 -05002211 }
2212
2213 /*
2214 * It already exists.
2215 */
2216 mutex_unlock(&dir->d_inode->i_mutex);
2217 audit_inode(pathname, path->dentry);
2218
2219 error = -EEXIST;
Al Viroca344a892011-03-09 00:36:45 -05002220 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002221 goto exit_dput;
2222
David Howells9875cf82011-01-14 18:45:21 +00002223 error = follow_managed(path, nd->flags);
2224 if (error < 0)
2225 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002226
Al Viroa3fbbde2011-11-07 21:21:26 +00002227 if (error)
2228 nd->flags |= LOOKUP_JUMPED;
2229
Al Virofb1cc552009-12-24 01:58:28 -05002230 error = -ENOENT;
2231 if (!path->dentry->d_inode)
2232 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002233
2234 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002235 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002236
2237 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002238 nd->inode = path->dentry->d_inode;
Al Viroa3fbbde2011-11-07 21:21:26 +00002239 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
2240 error = complete_walk(nd);
2241 if (error)
2242 goto exit;
Al Virofb1cc552009-12-24 01:58:28 -05002243 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002244 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002245 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002246ok:
Al Viro6c0d46c2011-03-09 00:59:59 -05002247 if (!S_ISREG(nd->inode->i_mode))
2248 will_truncate = 0;
2249
Al Viro0f9d1a12011-03-09 00:13:14 -05002250 if (will_truncate) {
2251 error = mnt_want_write(nd->path.mnt);
2252 if (error)
2253 goto exit;
Al Viroca344a892011-03-09 00:36:45 -05002254 want_write = 1;
Al Viro0f9d1a12011-03-09 00:13:14 -05002255 }
Al Viroca344a892011-03-09 00:36:45 -05002256common:
Al Virobcda7652011-03-13 16:42:14 -04002257 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002258 if (error)
Al Viro0f9d1a12011-03-09 00:13:14 -05002259 goto exit;
Al Viro0f9d1a12011-03-09 00:13:14 -05002260 filp = nameidata_to_filp(nd);
2261 if (!IS_ERR(filp)) {
2262 error = ima_file_check(filp, op->acc_mode);
2263 if (error) {
2264 fput(filp);
2265 filp = ERR_PTR(error);
2266 }
2267 }
2268 if (!IS_ERR(filp)) {
2269 if (will_truncate) {
2270 error = handle_truncate(filp);
2271 if (error) {
2272 fput(filp);
2273 filp = ERR_PTR(error);
2274 }
2275 }
2276 }
Al Viroca344a892011-03-09 00:36:45 -05002277out:
2278 if (want_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002279 mnt_drop_write(nd->path.mnt);
2280 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002281 return filp;
2282
2283exit_mutex_unlock:
2284 mutex_unlock(&dir->d_inode->i_mutex);
2285exit_dput:
2286 path_put_conditional(path, nd);
2287exit:
Al Viroca344a892011-03-09 00:36:45 -05002288 filp = ERR_PTR(error);
2289 goto out;
Al Virofb1cc552009-12-24 01:58:28 -05002290}
2291
Al Viro13aab422011-02-23 17:54:08 -05002292static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002293 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294{
Al Virofe2d35f2011-03-05 22:58:25 -05002295 struct file *base = NULL;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002296 struct file *filp;
Al Viro9850c052010-01-13 15:01:15 -05002297 struct path path;
Al Viro13aab422011-02-23 17:54:08 -05002298 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002299
2300 filp = get_empty_filp();
2301 if (!filp)
2302 return ERR_PTR(-ENFILE);
2303
Al Viro47c805d2011-02-23 17:44:09 -05002304 filp->f_flags = op->open_flag;
Al Viro73d049a2011-03-11 12:08:24 -05002305 nd->intent.open.file = filp;
2306 nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2307 nd->intent.open.create_mode = op->mode;
Nick Piggin31e6b012011-01-07 17:49:52 +11002308
Al Viro73d049a2011-03-11 12:08:24 -05002309 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002310 if (unlikely(error))
Al Viro13aab422011-02-23 17:54:08 -05002311 goto out_filp;
Nick Piggin31e6b012011-01-07 17:49:52 +11002312
Al Virofe2d35f2011-03-05 22:58:25 -05002313 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002314 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002315 if (unlikely(error))
2316 goto out_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317
Al Viro73d049a2011-03-11 12:08:24 -05002318 filp = do_last(nd, &path, op, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002319 while (unlikely(!filp)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002320 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05002321 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04002322 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05002323 path_put_conditional(&path, nd);
2324 path_put(&nd->path);
Al Viro40b39132011-03-09 16:22:18 -05002325 filp = ERR_PTR(-ELOOP);
2326 break;
2327 }
Al Viro73d049a2011-03-11 12:08:24 -05002328 nd->flags |= LOOKUP_PARENT;
2329 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04002330 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002331 if (unlikely(error))
Al Virof1afe9e2011-02-22 22:27:28 -05002332 filp = ERR_PTR(error);
Al Viroc3e380b2011-02-23 13:39:45 -05002333 else
Al Viro73d049a2011-03-11 12:08:24 -05002334 filp = do_last(nd, &path, op, pathname);
Al Viro574197e2011-03-14 22:20:34 -04002335 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002336 }
Al Viro10fa8e62009-12-26 07:09:49 -05002337out:
Al Viro73d049a2011-03-11 12:08:24 -05002338 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2339 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002340 if (base)
2341 fput(base);
Al Viro73d049a2011-03-11 12:08:24 -05002342 release_open_intent(nd);
Al Viro10fa8e62009-12-26 07:09:49 -05002343 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
Nick Piggin31e6b012011-01-07 17:49:52 +11002345out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002346 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002347 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348}
2349
Al Viro13aab422011-02-23 17:54:08 -05002350struct file *do_filp_open(int dfd, const char *pathname,
2351 const struct open_flags *op, int flags)
2352{
Al Viro73d049a2011-03-11 12:08:24 -05002353 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002354 struct file *filp;
2355
Al Viro73d049a2011-03-11 12:08:24 -05002356 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002357 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002358 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002359 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002360 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002361 return filp;
2362}
2363
Al Viro73d049a2011-03-11 12:08:24 -05002364struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2365 const char *name, const struct open_flags *op, int flags)
2366{
2367 struct nameidata nd;
2368 struct file *file;
2369
2370 nd.root.mnt = mnt;
2371 nd.root.dentry = dentry;
2372
2373 flags |= LOOKUP_ROOT;
2374
Al Virobcda7652011-03-13 16:42:14 -04002375 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002376 return ERR_PTR(-ELOOP);
2377
2378 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2379 if (unlikely(file == ERR_PTR(-ECHILD)))
2380 file = path_openat(-1, name, &nd, op, flags);
2381 if (unlikely(file == ERR_PTR(-ESTALE)))
2382 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2383 return file;
2384}
2385
Al Viroed75e952011-06-27 16:53:43 -04002386struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path, int is_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002388 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viroed75e952011-06-27 16:53:43 -04002389 struct nameidata nd;
2390 int error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd);
2391 if (error)
2392 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002394 /*
2395 * Yucky last component or no last component at all?
2396 * (foo/., foo/.., /////)
2397 */
Al Viroed75e952011-06-27 16:53:43 -04002398 if (nd.last_type != LAST_NORM)
2399 goto out;
2400 nd.flags &= ~LOOKUP_PARENT;
2401 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
2402 nd.intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002403
2404 /*
2405 * Do the final lookup.
2406 */
Al Viroed75e952011-06-27 16:53:43 -04002407 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2408 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 if (IS_ERR(dentry))
2410 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002411
Al Viroe9baf6e2008-05-15 04:49:12 -04002412 if (dentry->d_inode)
2413 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002414 /*
2415 * Special case - lookup gave negative, but... we had foo/bar/
2416 * From the vfs_mknod() POV we just have a negative dentry -
2417 * all is fine. Let's be bastards - you had / on the end, you've
2418 * been asking for (non-existent) directory. -ENOENT for you.
2419 */
Al Viroed75e952011-06-27 16:53:43 -04002420 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
Al Viroe9baf6e2008-05-15 04:49:12 -04002421 dput(dentry);
2422 dentry = ERR_PTR(-ENOENT);
Al Viroed75e952011-06-27 16:53:43 -04002423 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04002424 }
Al Viroed75e952011-06-27 16:53:43 -04002425 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002427eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002429 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430fail:
Al Viroed75e952011-06-27 16:53:43 -04002431 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2432out:
2433 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 return dentry;
2435}
Al Virodae6ad82011-06-26 11:50:15 -04002436EXPORT_SYMBOL(kern_path_create);
2437
2438struct dentry *user_path_create(int dfd, const char __user *pathname, struct path *path, int is_dir)
2439{
2440 char *tmp = getname(pathname);
2441 struct dentry *res;
2442 if (IS_ERR(tmp))
2443 return ERR_CAST(tmp);
2444 res = kern_path_create(dfd, tmp, path, is_dir);
2445 putname(tmp);
2446 return res;
2447}
2448EXPORT_SYMBOL(user_path_create);
2449
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2451{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002452 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
2454 if (error)
2455 return error;
2456
Serge E. Hallyne795b712011-03-23 16:43:25 -07002457 if ((S_ISCHR(mode) || S_ISBLK(mode)) &&
2458 !ns_capable(inode_userns(dir), CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 return -EPERM;
2460
Al Viroacfa4382008-12-04 10:06:33 -05002461 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 return -EPERM;
2463
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002464 error = devcgroup_inode_mknod(mode, dev);
2465 if (error)
2466 return error;
2467
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 error = security_inode_mknod(dir, dentry, mode, dev);
2469 if (error)
2470 return error;
2471
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002473 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002474 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 return error;
2476}
2477
Dave Hansen463c3192008-02-15 14:37:57 -08002478static int may_mknod(mode_t mode)
2479{
2480 switch (mode & S_IFMT) {
2481 case S_IFREG:
2482 case S_IFCHR:
2483 case S_IFBLK:
2484 case S_IFIFO:
2485 case S_IFSOCK:
2486 case 0: /* zero mode translates to S_IFREG */
2487 return 0;
2488 case S_IFDIR:
2489 return -EPERM;
2490 default:
2491 return -EINVAL;
2492 }
2493}
2494
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002495SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2496 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497{
Al Viro2ad94ae2008-07-21 09:32:51 -04002498 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002499 struct path path;
2500 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
2502 if (S_ISDIR(mode))
2503 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
Al Virodae6ad82011-06-26 11:50:15 -04002505 dentry = user_path_create(dfd, filename, &path, 0);
2506 if (IS_ERR(dentry))
2507 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04002508
Al Virodae6ad82011-06-26 11:50:15 -04002509 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002510 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002511 error = may_mknod(mode);
2512 if (error)
2513 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002514 error = mnt_want_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002515 if (error)
2516 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002517 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002518 if (error)
2519 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002520 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 case 0: case S_IFREG:
Al Virodae6ad82011-06-26 11:50:15 -04002522 error = vfs_create(path.dentry->d_inode,dentry,mode,NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 break;
2524 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04002525 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 new_decode_dev(dev));
2527 break;
2528 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04002529 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002532out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002533 mnt_drop_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002534out_dput:
2535 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002536 mutex_unlock(&path.dentry->d_inode->i_mutex);
2537 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
2539 return error;
2540}
2541
Heiko Carstens3480b252009-01-14 14:14:16 +01002542SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002543{
2544 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2545}
2546
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2548{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002549 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550
2551 if (error)
2552 return error;
2553
Al Viroacfa4382008-12-04 10:06:33 -05002554 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 return -EPERM;
2556
2557 mode &= (S_IRWXUGO|S_ISVTX);
2558 error = security_inode_mkdir(dir, dentry, mode);
2559 if (error)
2560 return error;
2561
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002563 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002564 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 return error;
2566}
2567
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002568SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569{
Dave Hansen6902d922006-09-30 23:29:01 -07002570 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002571 struct path path;
2572 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
Al Virodae6ad82011-06-26 11:50:15 -04002574 dentry = user_path_create(dfd, pathname, &path, 1);
Dave Hansen6902d922006-09-30 23:29:01 -07002575 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04002576 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002577
Al Virodae6ad82011-06-26 11:50:15 -04002578 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002579 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04002580 error = mnt_want_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002581 if (error)
2582 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002583 error = security_path_mkdir(&path, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002584 if (error)
2585 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04002586 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002587out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002588 mnt_drop_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002589out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002590 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002591 mutex_unlock(&path.dentry->d_inode->i_mutex);
2592 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 return error;
2594}
2595
Heiko Carstens3cdad422009-01-14 14:14:22 +01002596SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002597{
2598 return sys_mkdirat(AT_FDCWD, pathname, mode);
2599}
2600
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601/*
Sage Weila71905f2011-05-24 13:06:08 -07002602 * The dentry_unhash() helper will try to drop the dentry early: we
2603 * should have a usage count of 2 if we're the only user of this
2604 * dentry, and if that is true (possibly after pruning the dcache),
2605 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 *
2607 * A low-level filesystem can, if it choses, legally
2608 * do a
2609 *
2610 * if (!d_unhashed(dentry))
2611 * return -EBUSY;
2612 *
2613 * if it cannot handle the case of removing a directory
2614 * that is still in use by something else..
2615 */
2616void dentry_unhash(struct dentry *dentry)
2617{
Vasily Averindc168422006-12-06 20:37:07 -08002618 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 spin_lock(&dentry->d_lock);
Sage Weil64252c72011-05-24 13:06:05 -07002620 if (dentry->d_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 __d_drop(dentry);
2622 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623}
2624
2625int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2626{
2627 int error = may_delete(dir, dentry, 1);
2628
2629 if (error)
2630 return error;
2631
Al Viroacfa4382008-12-04 10:06:33 -05002632 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 return -EPERM;
2634
Al Viro1d2ef592011-09-14 18:55:41 +01002635 dget(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002636 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
Sage Weil912dbc12011-05-24 13:06:11 -07002638 error = -EBUSY;
2639 if (d_mountpoint(dentry))
2640 goto out;
2641
2642 error = security_inode_rmdir(dir, dentry);
2643 if (error)
2644 goto out;
2645
Sage Weil3cebde22011-05-29 21:20:59 -07002646 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07002647 error = dir->i_op->rmdir(dir, dentry);
2648 if (error)
2649 goto out;
2650
2651 dentry->d_inode->i_flags |= S_DEAD;
2652 dont_mount(dentry);
2653
2654out:
2655 mutex_unlock(&dentry->d_inode->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01002656 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07002657 if (!error)
2658 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 return error;
2660}
2661
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002662static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663{
2664 int error = 0;
2665 char * name;
2666 struct dentry *dentry;
2667 struct nameidata nd;
2668
Al Viro2ad94ae2008-07-21 09:32:51 -04002669 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002671 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
2673 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002674 case LAST_DOTDOT:
2675 error = -ENOTEMPTY;
2676 goto exit1;
2677 case LAST_DOT:
2678 error = -EINVAL;
2679 goto exit1;
2680 case LAST_ROOT:
2681 error = -EBUSY;
2682 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002684
2685 nd.flags &= ~LOOKUP_PARENT;
2686
Jan Blunck4ac91372008-02-14 19:34:32 -08002687 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002688 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002690 if (IS_ERR(dentry))
2691 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002692 if (!dentry->d_inode) {
2693 error = -ENOENT;
2694 goto exit3;
2695 }
Dave Hansen06227532008-02-15 14:37:34 -08002696 error = mnt_want_write(nd.path.mnt);
2697 if (error)
2698 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002699 error = security_path_rmdir(&nd.path, dentry);
2700 if (error)
2701 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002702 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002703exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002704 mnt_drop_write(nd.path.mnt);
2705exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002706 dput(dentry);
2707exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002708 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002710 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 putname(name);
2712 return error;
2713}
2714
Heiko Carstens3cdad422009-01-14 14:14:22 +01002715SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002716{
2717 return do_rmdir(AT_FDCWD, pathname);
2718}
2719
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720int vfs_unlink(struct inode *dir, struct dentry *dentry)
2721{
2722 int error = may_delete(dir, dentry, 0);
2723
2724 if (error)
2725 return error;
2726
Al Viroacfa4382008-12-04 10:06:33 -05002727 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 return -EPERM;
2729
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002730 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 if (d_mountpoint(dentry))
2732 error = -EBUSY;
2733 else {
2734 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002735 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002737 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002738 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002741 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742
2743 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2744 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002745 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 }
Robert Love0eeca282005-07-12 17:06:03 -04002748
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 return error;
2750}
2751
2752/*
2753 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002754 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 * writeout happening, and we don't want to prevent access to the directory
2756 * while waiting on the I/O.
2757 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002758static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759{
Al Viro2ad94ae2008-07-21 09:32:51 -04002760 int error;
2761 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 struct dentry *dentry;
2763 struct nameidata nd;
2764 struct inode *inode = NULL;
2765
Al Viro2ad94ae2008-07-21 09:32:51 -04002766 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002768 return error;
2769
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 error = -EISDIR;
2771 if (nd.last_type != LAST_NORM)
2772 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002773
2774 nd.flags &= ~LOOKUP_PARENT;
2775
Jan Blunck4ac91372008-02-14 19:34:32 -08002776 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002777 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 error = PTR_ERR(dentry);
2779 if (!IS_ERR(dentry)) {
2780 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03002781 if (nd.last.name[nd.last.len])
2782 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 inode = dentry->d_inode;
Török Edwin50338b82011-06-16 00:06:14 +03002784 if (!inode)
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04002785 goto slashes;
2786 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002787 error = mnt_want_write(nd.path.mnt);
2788 if (error)
2789 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002790 error = security_path_unlink(&nd.path, dentry);
2791 if (error)
2792 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002793 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002794exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002795 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 exit2:
2797 dput(dentry);
2798 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002799 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 if (inode)
2801 iput(inode); /* truncate the inode here */
2802exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002803 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 putname(name);
2805 return error;
2806
2807slashes:
2808 error = !dentry->d_inode ? -ENOENT :
2809 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2810 goto exit2;
2811}
2812
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002813SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002814{
2815 if ((flag & ~AT_REMOVEDIR) != 0)
2816 return -EINVAL;
2817
2818 if (flag & AT_REMOVEDIR)
2819 return do_rmdir(dfd, pathname);
2820
2821 return do_unlinkat(dfd, pathname);
2822}
2823
Heiko Carstens3480b252009-01-14 14:14:16 +01002824SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002825{
2826 return do_unlinkat(AT_FDCWD, pathname);
2827}
2828
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002829int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002831 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
2833 if (error)
2834 return error;
2835
Al Viroacfa4382008-12-04 10:06:33 -05002836 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 return -EPERM;
2838
2839 error = security_inode_symlink(dir, dentry, oldname);
2840 if (error)
2841 return error;
2842
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002844 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002845 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 return error;
2847}
2848
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002849SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2850 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851{
Al Viro2ad94ae2008-07-21 09:32:51 -04002852 int error;
2853 char *from;
Dave Hansen6902d922006-09-30 23:29:01 -07002854 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002855 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
2857 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002858 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002860
Al Virodae6ad82011-06-26 11:50:15 -04002861 dentry = user_path_create(newdfd, newname, &path, 0);
Dave Hansen6902d922006-09-30 23:29:01 -07002862 error = PTR_ERR(dentry);
2863 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04002864 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07002865
Al Virodae6ad82011-06-26 11:50:15 -04002866 error = mnt_want_write(path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002867 if (error)
2868 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002869 error = security_path_symlink(&path, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002870 if (error)
2871 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04002872 error = vfs_symlink(path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002873out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002874 mnt_drop_write(path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002875out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002876 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002877 mutex_unlock(&path.dentry->d_inode->i_mutex);
2878 path_put(&path);
Dave Hansen6902d922006-09-30 23:29:01 -07002879out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 putname(from);
2881 return error;
2882}
2883
Heiko Carstens3480b252009-01-14 14:14:16 +01002884SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002885{
2886 return sys_symlinkat(oldname, AT_FDCWD, newname);
2887}
2888
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2890{
2891 struct inode *inode = old_dentry->d_inode;
2892 int error;
2893
2894 if (!inode)
2895 return -ENOENT;
2896
Miklos Szeredia95164d2008-07-30 15:08:48 +02002897 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 if (error)
2899 return error;
2900
2901 if (dir->i_sb != inode->i_sb)
2902 return -EXDEV;
2903
2904 /*
2905 * A link to an append-only or immutable file cannot be created.
2906 */
2907 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2908 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05002909 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002911 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 return -EPERM;
2913
2914 error = security_inode_link(old_dentry, dir, new_dentry);
2915 if (error)
2916 return error;
2917
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002918 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05302919 /* Make sure we don't allow creating hardlink to an unlinked file */
2920 if (inode->i_nlink == 0)
2921 error = -ENOENT;
2922 else
2923 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002924 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002925 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002926 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 return error;
2928}
2929
2930/*
2931 * Hardlinks are often used in delicate situations. We avoid
2932 * security-related surprises by not following symlinks on the
2933 * newname. --KAB
2934 *
2935 * We don't follow them on the oldname either to be compatible
2936 * with linux 2.0, and to avoid hard-linking to directories
2937 * and other special files. --ADM
2938 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002939SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2940 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941{
2942 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002943 struct path old_path, new_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302944 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302947 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002948 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302949 /*
2950 * To use null names we require CAP_DAC_READ_SEARCH
2951 * This ensures that not everyone will be able to create
2952 * handlink using the passed filedescriptor.
2953 */
2954 if (flags & AT_EMPTY_PATH) {
2955 if (!capable(CAP_DAC_READ_SEARCH))
2956 return -ENOENT;
2957 how = LOOKUP_EMPTY;
2958 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002959
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302960 if (flags & AT_SYMLINK_FOLLOW)
2961 how |= LOOKUP_FOLLOW;
2962
2963 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002965 return error;
2966
Al Virodae6ad82011-06-26 11:50:15 -04002967 new_dentry = user_path_create(newdfd, newname, &new_path, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002969 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04002970 goto out;
2971
2972 error = -EXDEV;
2973 if (old_path.mnt != new_path.mnt)
2974 goto out_dput;
2975 error = mnt_want_write(new_path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002976 if (error)
2977 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002978 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002979 if (error)
2980 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04002981 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002982out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002983 mnt_drop_write(new_path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08002984out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002985 dput(new_dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002986 mutex_unlock(&new_path.dentry->d_inode->i_mutex);
2987 path_put(&new_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988out:
Al Viro2d8f3032008-07-22 09:59:21 -04002989 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990
2991 return error;
2992}
2993
Heiko Carstens3480b252009-01-14 14:14:16 +01002994SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002995{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002996 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002997}
2998
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999/*
3000 * The worst of all namespace operations - renaming directory. "Perverted"
3001 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3002 * Problems:
3003 * a) we can get into loop creation. Check is done in is_subdir().
3004 * b) race potential - two innocent renames can create a loop together.
3005 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003006 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 * story.
3008 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003009 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 * whether the target exists). Solution: try to be smart with locking
3011 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003012 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 * move will be locked. Thus we can rank directories by the tree
3014 * (ancestors first) and rank all non-directories after them.
3015 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003016 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 * HOWEVER, it relies on the assumption that any object with ->lookup()
3018 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3019 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07003020 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003021 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003023 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 * locking].
3025 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07003026static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3027 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028{
3029 int error = 0;
Sage Weil9055cba2011-05-24 13:06:12 -07003030 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031
3032 /*
3033 * If we are going to change the parent - check write permissions,
3034 * we'll need to flip '..'.
3035 */
3036 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04003037 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 if (error)
3039 return error;
3040 }
3041
3042 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3043 if (error)
3044 return error;
3045
Al Viro1d2ef592011-09-14 18:55:41 +01003046 dget(new_dentry);
Al Virod83c49f2010-04-30 17:17:09 -04003047 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003048 mutex_lock(&target->i_mutex);
Sage Weil9055cba2011-05-24 13:06:12 -07003049
3050 error = -EBUSY;
3051 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3052 goto out;
3053
Sage Weil3cebde22011-05-29 21:20:59 -07003054 if (target)
3055 shrink_dcache_parent(new_dentry);
Sage Weil9055cba2011-05-24 13:06:12 -07003056 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3057 if (error)
3058 goto out;
3059
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060 if (target) {
Sage Weil9055cba2011-05-24 13:06:12 -07003061 target->i_flags |= S_DEAD;
3062 dont_mount(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 }
Sage Weil9055cba2011-05-24 13:06:12 -07003064out:
3065 if (target)
3066 mutex_unlock(&target->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01003067 dput(new_dentry);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003068 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003069 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3070 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 return error;
3072}
3073
Adrian Bunk75c96f82005-05-05 16:16:09 -07003074static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3075 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076{
Sage Weil51892bb2011-05-24 13:06:13 -07003077 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 int error;
3079
3080 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3081 if (error)
3082 return error;
3083
3084 dget(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003086 mutex_lock(&target->i_mutex);
Sage Weil51892bb2011-05-24 13:06:13 -07003087
3088 error = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
Sage Weil51892bb2011-05-24 13:06:13 -07003090 goto out;
3091
3092 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3093 if (error)
3094 goto out;
3095
3096 if (target)
3097 dont_mount(new_dentry);
3098 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3099 d_move(old_dentry, new_dentry);
3100out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003102 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 dput(new_dentry);
3104 return error;
3105}
3106
3107int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3108 struct inode *new_dir, struct dentry *new_dentry)
3109{
3110 int error;
3111 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003112 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113
3114 if (old_dentry->d_inode == new_dentry->d_inode)
3115 return 0;
3116
3117 error = may_delete(old_dir, old_dentry, is_dir);
3118 if (error)
3119 return error;
3120
3121 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003122 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 else
3124 error = may_delete(new_dir, new_dentry, is_dir);
3125 if (error)
3126 return error;
3127
Al Viroacfa4382008-12-04 10:06:33 -05003128 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 return -EPERM;
3130
Robert Love0eeca282005-07-12 17:06:03 -04003131 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3132
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 if (is_dir)
3134 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3135 else
3136 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003137 if (!error)
3138 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003139 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003140 fsnotify_oldname_free(old_name);
3141
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 return error;
3143}
3144
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003145SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3146 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147{
Al Viro2ad94ae2008-07-21 09:32:51 -04003148 struct dentry *old_dir, *new_dir;
3149 struct dentry *old_dentry, *new_dentry;
3150 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003152 char *from;
3153 char *to;
3154 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155
Al Viro2ad94ae2008-07-21 09:32:51 -04003156 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 if (error)
3158 goto exit;
3159
Al Viro2ad94ae2008-07-21 09:32:51 -04003160 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 if (error)
3162 goto exit1;
3163
3164 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003165 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 goto exit2;
3167
Jan Blunck4ac91372008-02-14 19:34:32 -08003168 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 error = -EBUSY;
3170 if (oldnd.last_type != LAST_NORM)
3171 goto exit2;
3172
Jan Blunck4ac91372008-02-14 19:34:32 -08003173 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 if (newnd.last_type != LAST_NORM)
3175 goto exit2;
3176
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003177 oldnd.flags &= ~LOOKUP_PARENT;
3178 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003179 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003180
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 trap = lock_rename(new_dir, old_dir);
3182
Christoph Hellwig49705b72005-11-08 21:35:06 -08003183 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 error = PTR_ERR(old_dentry);
3185 if (IS_ERR(old_dentry))
3186 goto exit3;
3187 /* source must exist */
3188 error = -ENOENT;
3189 if (!old_dentry->d_inode)
3190 goto exit4;
3191 /* unless the source is a directory trailing slashes give -ENOTDIR */
3192 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3193 error = -ENOTDIR;
3194 if (oldnd.last.name[oldnd.last.len])
3195 goto exit4;
3196 if (newnd.last.name[newnd.last.len])
3197 goto exit4;
3198 }
3199 /* source should not be ancestor of target */
3200 error = -EINVAL;
3201 if (old_dentry == trap)
3202 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003203 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 error = PTR_ERR(new_dentry);
3205 if (IS_ERR(new_dentry))
3206 goto exit4;
3207 /* target should not be an ancestor of source */
3208 error = -ENOTEMPTY;
3209 if (new_dentry == trap)
3210 goto exit5;
3211
Dave Hansen9079b1e2008-02-15 14:37:49 -08003212 error = mnt_want_write(oldnd.path.mnt);
3213 if (error)
3214 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003215 error = security_path_rename(&oldnd.path, old_dentry,
3216 &newnd.path, new_dentry);
3217 if (error)
3218 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219 error = vfs_rename(old_dir->d_inode, old_dentry,
3220 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003221exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003222 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223exit5:
3224 dput(new_dentry);
3225exit4:
3226 dput(old_dentry);
3227exit3:
3228 unlock_rename(new_dir, old_dir);
3229exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003230 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003231 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003233 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003235exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 return error;
3237}
3238
Heiko Carstensa26eab22009-01-14 14:14:17 +01003239SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003240{
3241 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3242}
3243
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3245{
3246 int len;
3247
3248 len = PTR_ERR(link);
3249 if (IS_ERR(link))
3250 goto out;
3251
3252 len = strlen(link);
3253 if (len > (unsigned) buflen)
3254 len = buflen;
3255 if (copy_to_user(buffer, link, len))
3256 len = -EFAULT;
3257out:
3258 return len;
3259}
3260
3261/*
3262 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3263 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3264 * using) it for any given inode is up to filesystem.
3265 */
3266int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3267{
3268 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003269 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003270 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003271
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003273 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003274 if (IS_ERR(cookie))
3275 return PTR_ERR(cookie);
3276
3277 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3278 if (dentry->d_inode->i_op->put_link)
3279 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3280 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281}
3282
3283int vfs_follow_link(struct nameidata *nd, const char *link)
3284{
3285 return __vfs_follow_link(nd, link);
3286}
3287
3288/* get the link contents into pagecache */
3289static char *page_getlink(struct dentry * dentry, struct page **ppage)
3290{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003291 char *kaddr;
3292 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003294 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003296 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003298 kaddr = kmap(page);
3299 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3300 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301}
3302
3303int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3304{
3305 struct page *page = NULL;
3306 char *s = page_getlink(dentry, &page);
3307 int res = vfs_readlink(dentry,buffer,buflen,s);
3308 if (page) {
3309 kunmap(page);
3310 page_cache_release(page);
3311 }
3312 return res;
3313}
3314
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003315void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003317 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003319 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320}
3321
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003322void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003324 struct page *page = cookie;
3325
3326 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327 kunmap(page);
3328 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 }
3330}
3331
Nick Piggin54566b22009-01-04 12:00:53 -08003332/*
3333 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3334 */
3335int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336{
3337 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003338 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003339 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003340 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003342 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3343 if (nofs)
3344 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345
NeilBrown7e53cac2006-03-25 03:07:57 -08003346retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003347 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003348 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003350 goto fail;
3351
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 kaddr = kmap_atomic(page, KM_USER0);
3353 memcpy(kaddr, symname, len-1);
3354 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07003355
3356 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3357 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 if (err < 0)
3359 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003360 if (err < len-1)
3361 goto retry;
3362
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 mark_inode_dirty(inode);
3364 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365fail:
3366 return err;
3367}
3368
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003369int page_symlink(struct inode *inode, const char *symname, int len)
3370{
3371 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003372 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003373}
3374
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003375const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 .readlink = generic_readlink,
3377 .follow_link = page_follow_link_light,
3378 .put_link = page_put_link,
3379};
3380
Al Viro2d8f3032008-07-22 09:59:21 -04003381EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003382EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383EXPORT_SYMBOL(follow_down);
3384EXPORT_SYMBOL(follow_up);
3385EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3386EXPORT_SYMBOL(getname);
3387EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388EXPORT_SYMBOL(lookup_one_len);
3389EXPORT_SYMBOL(page_follow_link_light);
3390EXPORT_SYMBOL(page_put_link);
3391EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003392EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393EXPORT_SYMBOL(page_symlink);
3394EXPORT_SYMBOL(page_symlink_inode_operations);
Al Virod1811462008-08-02 00:49:18 -04003395EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003396EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003397EXPORT_SYMBOL(inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398EXPORT_SYMBOL(unlock_rename);
3399EXPORT_SYMBOL(vfs_create);
3400EXPORT_SYMBOL(vfs_follow_link);
3401EXPORT_SYMBOL(vfs_link);
3402EXPORT_SYMBOL(vfs_mkdir);
3403EXPORT_SYMBOL(vfs_mknod);
3404EXPORT_SYMBOL(generic_permission);
3405EXPORT_SYMBOL(vfs_readlink);
3406EXPORT_SYMBOL(vfs_rename);
3407EXPORT_SYMBOL(vfs_rmdir);
3408EXPORT_SYMBOL(vfs_symlink);
3409EXPORT_SYMBOL(vfs_unlink);
3410EXPORT_SYMBOL(dentry_unhash);
3411EXPORT_SYMBOL(generic_readlink);