blob: c14dfac83c2bf1c8dc98f3ea21f9f3917e680555 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/namei.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/*
8 * Some corrections by tytso.
9 */
10
11/* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
12 * lookup logic.
13 */
14/* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
15 */
16
17#include <linux/init.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050018#include <linux/export.h>
David S. Miller44696902012-05-23 20:12:50 -070019#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/slab.h>
21#include <linux/fs.h>
22#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/pagemap.h>
Robert Love0eeca282005-07-12 17:06:03 -040024#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/personality.h>
26#include <linux/security.h>
Mimi Zohar6146f0d2009-02-04 09:06:57 -050027#include <linux/ima.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/syscalls.h>
29#include <linux/mount.h>
30#include <linux/audit.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080031#include <linux/capability.h>
Trond Myklebust834f2a42005-10-18 14:20:16 -070032#include <linux/file.h>
Ulrich Drepper5590ff02006-01-18 17:43:53 -080033#include <linux/fcntl.h>
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070034#include <linux/device_cgroup.h>
Al Viro5ad4e532009-03-29 19:50:06 -040035#include <linux/fs_struct.h>
Linus Torvaldse77819e2011-07-22 19:30:19 -070036#include <linux/posix_acl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/uaccess.h>
38
Eric Parise81e3f42009-12-04 15:47:36 -050039#include "internal.h"
Al Viroc7105362011-11-24 18:22:03 -050040#include "mount.h"
Eric Parise81e3f42009-12-04 15:47:36 -050041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/* [Feb-1997 T. Schoebel-Theuer]
43 * Fundamental changes in the pathname lookup mechanisms (namei)
44 * were necessary because of omirr. The reason is that omirr needs
45 * to know the _real_ pathname, not the user-supplied one, in case
46 * of symlinks (and also when transname replacements occur).
47 *
48 * The new code replaces the old recursive symlink resolution with
49 * an iterative one (in case of non-nested symlink chains). It does
50 * this with calls to <fs>_follow_link().
51 * As a side effect, dir_namei(), _namei() and follow_link() are now
52 * replaced with a single function lookup_dentry() that can handle all
53 * the special cases of the former code.
54 *
55 * With the new dcache, the pathname is stored at each inode, at least as
56 * long as the refcount of the inode is positive. As a side effect, the
57 * size of the dcache depends on the inode cache and thus is dynamic.
58 *
59 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
60 * resolution to correspond with current state of the code.
61 *
62 * Note that the symlink resolution is not *completely* iterative.
63 * There is still a significant amount of tail- and mid- recursion in
64 * the algorithm. Also, note that <fs>_readlink() is not used in
65 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
66 * may return different results than <fs>_follow_link(). Many virtual
67 * filesystems (including /proc) exhibit this behavior.
68 */
69
70/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
71 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
72 * and the name already exists in form of a symlink, try to create the new
73 * name indicated by the symlink. The old code always complained that the
74 * name already exists, due to not following the symlink even if its target
75 * is nonexistent. The new semantics affects also mknod() and link() when
Lucas De Marchi25985ed2011-03-30 22:57:33 -030076 * the name is a symlink pointing to a non-existent name.
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 *
78 * I don't know which semantics is the right one, since I have no access
79 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
80 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
81 * "old" one. Personally, I think the new semantics is much more logical.
82 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
83 * file does succeed in both HP-UX and SunOs, but not in Solaris
84 * and in the old Linux semantics.
85 */
86
87/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
88 * semantics. See the comments in "open_namei" and "do_link" below.
89 *
90 * [10-Sep-98 Alan Modra] Another symlink change.
91 */
92
93/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
94 * inside the path - always follow.
95 * in the last component in creation/removal/renaming - never follow.
96 * if LOOKUP_FOLLOW passed - follow.
97 * if the pathname has trailing slashes - follow.
98 * otherwise - don't follow.
99 * (applied in that order).
100 *
101 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
102 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
103 * During the 2.4 we need to fix the userland stuff depending on it -
104 * hopefully we will be able to get rid of that wart in 2.5. So far only
105 * XEmacs seems to be relying on it...
106 */
107/*
108 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800109 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 * any extra contention...
111 */
112
113/* In order to reduce some races, while at the same time doing additional
114 * checking and hopefully speeding things up, we copy filenames to the
115 * kernel data space before using them..
116 *
117 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
118 * PATH_MAX includes the nul terminator --RR.
119 */
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +0100120static char *getname_flags(const char __user *filename, int flags, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700122 char *result = __getname(), *err;
123 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700125 if (unlikely(!result))
Eric Paris4043cde2012-01-03 14:23:08 -0500126 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700128 len = strncpy_from_user(result, filename, PATH_MAX);
129 err = ERR_PTR(len);
130 if (unlikely(len < 0))
131 goto error;
132
133 /* The empty path is special. */
134 if (unlikely(!len)) {
135 if (empty)
Eric Paris4043cde2012-01-03 14:23:08 -0500136 *empty = 1;
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700137 err = ERR_PTR(-ENOENT);
138 if (!(flags & LOOKUP_EMPTY))
139 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700141
142 err = ERR_PTR(-ENAMETOOLONG);
143 if (likely(len < PATH_MAX)) {
144 audit_getname(result);
145 return result;
146 }
147
148error:
149 __putname(result);
150 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Al Virof52e0c12011-03-14 18:56:51 -0400153char *getname(const char __user * filename)
154{
Linus Torvaldsf7493e52012-03-22 16:10:40 -0700155 return getname_flags(filename, 0, NULL);
Al Virof52e0c12011-03-14 18:56:51 -0400156}
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158#ifdef CONFIG_AUDITSYSCALL
159void putname(const char *name)
160{
Al Viro5ac3a9c2006-07-16 06:38:45 -0400161 if (unlikely(!audit_dummy_context()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 audit_putname(name);
163 else
164 __putname(name);
165}
166EXPORT_SYMBOL(putname);
167#endif
168
Linus Torvaldse77819e2011-07-22 19:30:19 -0700169static int check_acl(struct inode *inode, int mask)
170{
Linus Torvalds84635d62011-07-25 22:47:03 -0700171#ifdef CONFIG_FS_POSIX_ACL
Linus Torvaldse77819e2011-07-22 19:30:19 -0700172 struct posix_acl *acl;
173
Linus Torvaldse77819e2011-07-22 19:30:19 -0700174 if (mask & MAY_NOT_BLOCK) {
Al Viro35678662011-08-02 21:32:13 -0400175 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
176 if (!acl)
Linus Torvaldse77819e2011-07-22 19:30:19 -0700177 return -EAGAIN;
Al Viro35678662011-08-02 21:32:13 -0400178 /* no ->get_acl() calls in RCU mode... */
179 if (acl == ACL_NOT_CACHED)
180 return -ECHILD;
Ari Savolainen206b1d02011-08-06 19:43:07 +0300181 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
Linus Torvaldse77819e2011-07-22 19:30:19 -0700182 }
183
184 acl = get_cached_acl(inode, ACL_TYPE_ACCESS);
185
186 /*
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200187 * A filesystem can force a ACL callback by just never filling the
188 * ACL cache. But normally you'd fill the cache either at inode
189 * instantiation time, or on the first ->get_acl call.
Linus Torvaldse77819e2011-07-22 19:30:19 -0700190 *
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200191 * If the filesystem doesn't have a get_acl() function at all, we'll
192 * just create the negative cache entry.
Linus Torvaldse77819e2011-07-22 19:30:19 -0700193 */
194 if (acl == ACL_NOT_CACHED) {
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200195 if (inode->i_op->get_acl) {
196 acl = inode->i_op->get_acl(inode, ACL_TYPE_ACCESS);
197 if (IS_ERR(acl))
198 return PTR_ERR(acl);
199 } else {
200 set_cached_acl(inode, ACL_TYPE_ACCESS, NULL);
201 return -EAGAIN;
202 }
Linus Torvaldse77819e2011-07-22 19:30:19 -0700203 }
204
205 if (acl) {
206 int error = posix_acl_permission(inode, acl, mask);
207 posix_acl_release(acl);
208 return error;
209 }
Linus Torvalds84635d62011-07-25 22:47:03 -0700210#endif
Linus Torvaldse77819e2011-07-22 19:30:19 -0700211
212 return -EAGAIN;
213}
214
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700215/*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530216 * This does the basic permission checking
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700217 */
Al Viro7e401452011-06-20 19:12:17 -0400218static int acl_permission_check(struct inode *inode, int mask)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700219{
Linus Torvalds26cf46b2011-05-13 11:51:01 -0700220 unsigned int mode = inode->i_mode;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700221
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -0800222 if (likely(uid_eq(current_fsuid(), inode->i_uid)))
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700223 mode >>= 6;
224 else {
Linus Torvaldse77819e2011-07-22 19:30:19 -0700225 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
Al Viro7e401452011-06-20 19:12:17 -0400226 int error = check_acl(inode, mask);
Nick Pigginb74c79e2011-01-07 17:49:58 +1100227 if (error != -EAGAIN)
228 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700229 }
230
231 if (in_group_p(inode->i_gid))
232 mode >>= 3;
233 }
234
235 /*
236 * If the DACs are ok we don't need any capability check.
237 */
Al Viro9c2c7032011-06-20 19:06:22 -0400238 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700239 return 0;
240 return -EACCES;
241}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100244 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 * @inode: inode to check access rights for
Andreas Gruenbacher8fd90c82011-10-23 23:13:30 +0530246 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 *
248 * Used to check for read/write/execute permissions on a file.
249 * We use "fsuid" for this, letting us set arbitrary permissions
250 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100251 * are used for other things.
252 *
253 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
254 * request cannot be satisfied (eg. requires blocking or too much complexity).
255 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 */
Al Viro2830ba72011-06-20 19:16:29 -0400257int generic_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700259 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 /*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530262 * Do the basic permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 */
Al Viro7e401452011-06-20 19:12:17 -0400264 ret = acl_permission_check(inode, mask);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700265 if (ret != -EACCES)
266 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Al Virod594e7e2011-06-20 19:55:42 -0400268 if (S_ISDIR(inode->i_mode)) {
269 /* DACs are overridable for directories */
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -0800270 if (inode_capable(inode, CAP_DAC_OVERRIDE))
Al Virod594e7e2011-06-20 19:55:42 -0400271 return 0;
272 if (!(mask & MAY_WRITE))
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -0800273 if (inode_capable(inode, CAP_DAC_READ_SEARCH))
Al Virod594e7e2011-06-20 19:55:42 -0400274 return 0;
275 return -EACCES;
276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /*
278 * Read/write DACs are always overridable.
Al Virod594e7e2011-06-20 19:55:42 -0400279 * Executable DACs are overridable when there is
280 * at least one exec bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 */
Al Virod594e7e2011-06-20 19:55:42 -0400282 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -0800283 if (inode_capable(inode, CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return 0;
285
286 /*
287 * Searching includes executable on directories, else just read.
288 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600289 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Al Virod594e7e2011-06-20 19:55:42 -0400290 if (mask == MAY_READ)
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -0800291 if (inode_capable(inode, CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return 0;
293
294 return -EACCES;
295}
296
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700297/*
298 * We _really_ want to just do "generic_permission()" without
299 * even looking at the inode->i_op values. So we keep a cache
300 * flag in inode->i_opflags, that says "this has not special
301 * permission function, use the fast case".
302 */
303static inline int do_inode_permission(struct inode *inode, int mask)
304{
305 if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
306 if (likely(inode->i_op->permission))
307 return inode->i_op->permission(inode, mask);
308
309 /* This gets set once for the inode lifetime */
310 spin_lock(&inode->i_lock);
311 inode->i_opflags |= IOP_FASTPERM;
312 spin_unlock(&inode->i_lock);
313 }
314 return generic_permission(inode, mask);
315}
316
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200317/**
David Howells0bdaea92012-06-25 12:55:46 +0100318 * __inode_permission - Check for access rights to a given inode
319 * @inode: Inode to check permission on
320 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200321 *
David Howells0bdaea92012-06-25 12:55:46 +0100322 * Check for read/write/execute permissions on an inode.
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530323 *
324 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
David Howells0bdaea92012-06-25 12:55:46 +0100325 *
326 * This does not check for a read-only file system. You probably want
327 * inode_permission().
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200328 */
David Howells0bdaea92012-06-25 12:55:46 +0100329int __inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Al Viroe6305c42008-07-15 21:03:57 -0400331 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700333 if (unlikely(mask & MAY_WRITE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /*
335 * Nobody gets write access to an immutable file.
336 */
337 if (IS_IMMUTABLE(inode))
338 return -EACCES;
339 }
340
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700341 retval = do_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (retval)
343 return retval;
344
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700345 retval = devcgroup_inode_permission(inode, mask);
346 if (retval)
347 return retval;
348
Eric Parisd09ca732010-07-23 11:43:57 -0400349 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Al Virof4d6ff82011-06-19 13:14:21 -0400352/**
David Howells0bdaea92012-06-25 12:55:46 +0100353 * sb_permission - Check superblock-level permissions
354 * @sb: Superblock of inode to check permission on
355 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
356 *
357 * Separate out file-system wide checks from inode-specific permission checks.
358 */
359static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
360{
361 if (unlikely(mask & MAY_WRITE)) {
362 umode_t mode = inode->i_mode;
363
364 /* Nobody gets write access to a read-only fs. */
365 if ((sb->s_flags & MS_RDONLY) &&
366 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
367 return -EROFS;
368 }
369 return 0;
370}
371
372/**
373 * inode_permission - Check for access rights to a given inode
374 * @inode: Inode to check permission on
375 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
376 *
377 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
378 * this, letting us set arbitrary permissions for filesystem access without
379 * changing the "normal" UIDs which are used for other things.
380 *
381 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
382 */
383int inode_permission(struct inode *inode, int mask)
384{
385 int retval;
386
387 retval = sb_permission(inode->i_sb, inode, mask);
388 if (retval)
389 return retval;
390 return __inode_permission(inode, mask);
391}
392
393/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800394 * path_get - get a reference to a path
395 * @path: path to get the reference to
396 *
397 * Given a path increment the reference count to the dentry and the vfsmount.
398 */
399void path_get(struct path *path)
400{
401 mntget(path->mnt);
402 dget(path->dentry);
403}
404EXPORT_SYMBOL(path_get);
405
406/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800407 * path_put - put a reference to a path
408 * @path: path to put the reference to
409 *
410 * Given a path decrement the reference count to the dentry and the vfsmount.
411 */
412void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Jan Blunck1d957f92008-02-14 19:34:35 -0800414 dput(path->dentry);
415 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
Jan Blunck1d957f92008-02-14 19:34:35 -0800417EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Al Viro19660af2011-03-25 10:32:48 -0400419/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100420 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400421 * Documentation/filesystems/path-lookup.txt). In situations when we can't
422 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
423 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
424 * mode. Refcounts are grabbed at the last known good point before rcu-walk
425 * got stuck, so ref-walk may continue from there. If this is not successful
426 * (eg. a seqcount has changed), then failure is returned and it's up to caller
427 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100428 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100429
430/**
Al Viro19660af2011-03-25 10:32:48 -0400431 * unlazy_walk - try to switch to ref-walk mode.
432 * @nd: nameidata pathwalk data
433 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800434 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100435 *
Al Viro19660af2011-03-25 10:32:48 -0400436 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
437 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
438 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100439 */
Al Viro19660af2011-03-25 10:32:48 -0400440static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100441{
442 struct fs_struct *fs = current->fs;
443 struct dentry *parent = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500444 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100445
446 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500447 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
448 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100449 spin_lock(&fs->lock);
450 if (nd->root.mnt != fs->root.mnt ||
451 nd->root.dentry != fs->root.dentry)
452 goto err_root;
453 }
454 spin_lock(&parent->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400455 if (!dentry) {
456 if (!__d_rcu_to_refcount(parent, nd->seq))
457 goto err_parent;
458 BUG_ON(nd->inode != parent->d_inode);
459 } else {
Al Viro94c0d4e2011-07-12 21:40:23 -0400460 if (dentry->d_parent != parent)
461 goto err_parent;
Al Viro19660af2011-03-25 10:32:48 -0400462 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
463 if (!__d_rcu_to_refcount(dentry, nd->seq))
464 goto err_child;
465 /*
466 * If the sequence check on the child dentry passed, then
467 * the child has not been removed from its parent. This
468 * means the parent dentry must be valid and able to take
469 * a reference at this point.
470 */
471 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
472 BUG_ON(!parent->d_count);
473 parent->d_count++;
474 spin_unlock(&dentry->d_lock);
475 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100476 spin_unlock(&parent->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500477 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100478 path_get(&nd->root);
479 spin_unlock(&fs->lock);
480 }
481 mntget(nd->path.mnt);
482
483 rcu_read_unlock();
Andi Kleen962830d2012-05-08 13:32:02 +0930484 br_read_unlock(&vfsmount_lock);
Nick Piggin31e6b012011-01-07 17:49:52 +1100485 nd->flags &= ~LOOKUP_RCU;
486 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400487
488err_child:
Nick Piggin31e6b012011-01-07 17:49:52 +1100489 spin_unlock(&dentry->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400490err_parent:
Nick Piggin31e6b012011-01-07 17:49:52 +1100491 spin_unlock(&parent->d_lock);
492err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500493 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100494 spin_unlock(&fs->lock);
495 return -ECHILD;
496}
497
Al Viro4ce16ef32012-06-10 16:10:59 -0400498static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
Nick Piggin34286d62011-01-07 17:49:57 +1100499{
Al Viro4ce16ef32012-06-10 16:10:59 -0400500 return dentry->d_op->d_revalidate(dentry, flags);
Nick Piggin34286d62011-01-07 17:49:57 +1100501}
502
Al Viro9f1fafe2011-03-25 11:00:12 -0400503/**
504 * complete_walk - successful completion of path walk
505 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500506 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400507 * If we had been in RCU mode, drop out of it and legitimize nd->path.
508 * Revalidate the final result, unless we'd already done that during
509 * the path walk or the filesystem doesn't ask for it. Return 0 on
510 * success, -error on failure. In case of failure caller does not
511 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500512 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400513static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500514{
Al Viro16c2cd72011-02-22 15:50:10 -0500515 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500516 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500517
Al Viro9f1fafe2011-03-25 11:00:12 -0400518 if (nd->flags & LOOKUP_RCU) {
519 nd->flags &= ~LOOKUP_RCU;
520 if (!(nd->flags & LOOKUP_ROOT))
521 nd->root.mnt = NULL;
522 spin_lock(&dentry->d_lock);
523 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
524 spin_unlock(&dentry->d_lock);
525 rcu_read_unlock();
Andi Kleen962830d2012-05-08 13:32:02 +0930526 br_read_unlock(&vfsmount_lock);
Al Viro9f1fafe2011-03-25 11:00:12 -0400527 return -ECHILD;
528 }
529 BUG_ON(nd->inode != dentry->d_inode);
530 spin_unlock(&dentry->d_lock);
531 mntget(nd->path.mnt);
532 rcu_read_unlock();
Andi Kleen962830d2012-05-08 13:32:02 +0930533 br_read_unlock(&vfsmount_lock);
Al Viro9f1fafe2011-03-25 11:00:12 -0400534 }
535
Al Viro16c2cd72011-02-22 15:50:10 -0500536 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500537 return 0;
538
Al Viro16c2cd72011-02-22 15:50:10 -0500539 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
540 return 0;
541
542 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
543 return 0;
544
545 /* Note: we do not d_invalidate() */
Al Viro4ce16ef32012-06-10 16:10:59 -0400546 status = d_revalidate(dentry, nd->flags);
Jeff Layton39159de2009-12-07 12:01:50 -0500547 if (status > 0)
548 return 0;
549
Al Viro16c2cd72011-02-22 15:50:10 -0500550 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500551 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500552
Al Viro9f1fafe2011-03-25 11:00:12 -0400553 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500554 return status;
555}
556
Al Viro2a737872009-04-07 11:49:53 -0400557static __always_inline void set_root(struct nameidata *nd)
558{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200559 if (!nd->root.mnt)
560 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400561}
562
Al Viro6de88d72009-08-09 01:41:57 +0400563static int link_path_walk(const char *, struct nameidata *);
564
Nick Piggin31e6b012011-01-07 17:49:52 +1100565static __always_inline void set_root_rcu(struct nameidata *nd)
566{
567 if (!nd->root.mnt) {
568 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100569 unsigned seq;
570
571 do {
572 seq = read_seqcount_begin(&fs->seq);
573 nd->root = fs->root;
Tim Chenc1530012011-04-15 11:39:29 -0700574 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
Nick Pigginc28cc362011-01-07 17:49:53 +1100575 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100576 }
577}
578
Arjan van de Venf1662352006-01-14 13:21:31 -0800579static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Nick Piggin31e6b012011-01-07 17:49:52 +1100581 int ret;
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (IS_ERR(link))
584 goto fail;
585
586 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400587 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800588 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400589 nd->path = nd->root;
590 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500591 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100593 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100594
Nick Piggin31e6b012011-01-07 17:49:52 +1100595 ret = link_path_walk(link, nd);
596 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800598 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return PTR_ERR(link);
600}
601
Jan Blunck1d957f92008-02-14 19:34:35 -0800602static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700603{
604 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800605 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700606 mntput(path->mnt);
607}
608
Nick Piggin7b9337a2011-01-14 08:42:43 +0000609static inline void path_to_nameidata(const struct path *path,
610 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700611{
Nick Piggin31e6b012011-01-07 17:49:52 +1100612 if (!(nd->flags & LOOKUP_RCU)) {
613 dput(nd->path.dentry);
614 if (nd->path.mnt != path->mnt)
615 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800616 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100617 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800618 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700619}
620
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400621/*
622 * Helper to directly jump to a known parsed path from ->follow_link,
623 * caller must have taken a reference to path beforehand.
624 */
625void nd_jump_link(struct nameidata *nd, struct path *path)
626{
627 path_put(&nd->path);
628
629 nd->path = *path;
630 nd->inode = nd->path.dentry->d_inode;
631 nd->flags |= LOOKUP_JUMPED;
632
633 BUG_ON(nd->inode->i_op->follow_link);
634}
635
Al Viro574197e2011-03-14 22:20:34 -0400636static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
637{
638 struct inode *inode = link->dentry->d_inode;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400639 if (inode->i_op->put_link)
Al Viro574197e2011-03-14 22:20:34 -0400640 inode->i_op->put_link(link->dentry, nd, cookie);
641 path_put(link);
642}
643
Al Virodef4af32009-12-26 08:37:05 -0500644static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400645follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800646{
Nick Piggin7b9337a2011-01-14 08:42:43 +0000647 struct dentry *dentry = link->dentry;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400648 int error;
649 char *s;
Ian Kent051d3812006-03-27 01:14:53 -0800650
Al Viro844a3912011-02-15 00:38:26 -0500651 BUG_ON(nd->flags & LOOKUP_RCU);
652
Al Viro0e794582011-03-16 02:45:02 -0400653 if (link->mnt == nd->path.mnt)
654 mntget(link->mnt);
655
Al Viro6d7b5aa2012-06-10 04:15:17 -0400656 error = -ELOOP;
657 if (unlikely(current->total_link_count >= 40))
658 goto out_put_nd_path;
659
Al Viro574197e2011-03-14 22:20:34 -0400660 cond_resched();
661 current->total_link_count++;
662
Al Viro68ac1232012-03-15 08:21:57 -0400663 touch_atime(link);
Ian Kent051d3812006-03-27 01:14:53 -0800664 nd_set_link(nd, NULL);
665
Al Viro36f3b4f2011-02-22 21:24:38 -0500666 error = security_inode_follow_link(link->dentry, nd);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400667 if (error)
668 goto out_put_nd_path;
Al Viro36f3b4f2011-02-22 21:24:38 -0500669
Al Viro86acdca12009-12-22 23:45:11 -0500670 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500671 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
672 error = PTR_ERR(*p);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400673 if (IS_ERR(*p))
Christoph Hellwig408ef012012-06-18 10:47:03 -0400674 goto out_put_nd_path;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400675
676 error = 0;
677 s = nd_get_link(nd);
678 if (s) {
679 error = __vfs_follow_link(nd, s);
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400680 if (unlikely(error))
681 put_link(nd, link, *p);
Ian Kent051d3812006-03-27 01:14:53 -0800682 }
Al Viro6d7b5aa2012-06-10 04:15:17 -0400683
684 return error;
685
686out_put_nd_path:
687 path_put(&nd->path);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400688 path_put(link);
Ian Kent051d3812006-03-27 01:14:53 -0800689 return error;
690}
691
Nick Piggin31e6b012011-01-07 17:49:52 +1100692static int follow_up_rcu(struct path *path)
693{
Al Viro0714a532011-11-24 22:19:58 -0500694 struct mount *mnt = real_mount(path->mnt);
695 struct mount *parent;
Nick Piggin31e6b012011-01-07 17:49:52 +1100696 struct dentry *mountpoint;
697
Al Viro0714a532011-11-24 22:19:58 -0500698 parent = mnt->mnt_parent;
699 if (&parent->mnt == path->mnt)
Nick Piggin31e6b012011-01-07 17:49:52 +1100700 return 0;
Al Viroa73324d2011-11-24 22:25:07 -0500701 mountpoint = mnt->mnt_mountpoint;
Nick Piggin31e6b012011-01-07 17:49:52 +1100702 path->dentry = mountpoint;
Al Viro0714a532011-11-24 22:19:58 -0500703 path->mnt = &parent->mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +1100704 return 1;
705}
706
David Howellsf015f1262012-06-25 12:55:28 +0100707/*
708 * follow_up - Find the mountpoint of path's vfsmount
709 *
710 * Given a path, find the mountpoint of its source file system.
711 * Replace @path with the path of the mountpoint in the parent mount.
712 * Up is towards /.
713 *
714 * Return 1 if we went up a level and 0 if we were already at the
715 * root.
716 */
Al Virobab77eb2009-04-18 03:26:48 -0400717int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718{
Al Viro0714a532011-11-24 22:19:58 -0500719 struct mount *mnt = real_mount(path->mnt);
720 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000722
Andi Kleen962830d2012-05-08 13:32:02 +0930723 br_read_lock(&vfsmount_lock);
Al Viro0714a532011-11-24 22:19:58 -0500724 parent = mnt->mnt_parent;
725 if (&parent->mnt == path->mnt) {
Andi Kleen962830d2012-05-08 13:32:02 +0930726 br_read_unlock(&vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 return 0;
728 }
Al Viro0714a532011-11-24 22:19:58 -0500729 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -0500730 mountpoint = dget(mnt->mnt_mountpoint);
Andi Kleen962830d2012-05-08 13:32:02 +0930731 br_read_unlock(&vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400732 dput(path->dentry);
733 path->dentry = mountpoint;
734 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -0500735 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return 1;
737}
738
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100739/*
David Howells9875cf82011-01-14 18:45:21 +0000740 * Perform an automount
741 * - return -EISDIR to tell follow_managed() to stop and return the path we
742 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 */
David Howells9875cf82011-01-14 18:45:21 +0000744static int follow_automount(struct path *path, unsigned flags,
745 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100746{
David Howells9875cf82011-01-14 18:45:21 +0000747 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000748 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100749
David Howells9875cf82011-01-14 18:45:21 +0000750 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
751 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700752
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200753 /* We don't want to mount if someone's just doing a stat -
754 * unless they're stat'ing a directory and appended a '/' to
755 * the name.
756 *
757 * We do, however, want to mount if someone wants to open or
758 * create a file of any type under the mountpoint, wants to
759 * traverse through the mountpoint or wants to open the
760 * mounted directory. Also, autofs may mark negative dentries
761 * as being automount points. These will need the attentions
762 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +0000763 */
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200764 if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
Linus Torvaldsd94c1772011-09-26 17:44:55 -0700765 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200766 path->dentry->d_inode)
767 return -EISDIR;
768
David Howells9875cf82011-01-14 18:45:21 +0000769 current->total_link_count++;
770 if (current->total_link_count >= 40)
771 return -ELOOP;
772
773 mnt = path->dentry->d_op->d_automount(path);
774 if (IS_ERR(mnt)) {
775 /*
776 * The filesystem is allowed to return -EISDIR here to indicate
777 * it doesn't want to automount. For instance, autofs would do
778 * this so that its userspace daemon can mount on this dentry.
779 *
780 * However, we can only permit this if it's a terminal point in
781 * the path being looked up; if it wasn't then the remainder of
782 * the path is inaccessible and we should say so.
783 */
Al Viro49084c32011-06-25 21:59:52 -0400784 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +0000785 return -EREMOTE;
786 return PTR_ERR(mnt);
787 }
David Howellsea5b7782011-01-14 19:10:03 +0000788
David Howells9875cf82011-01-14 18:45:21 +0000789 if (!mnt) /* mount collision */
790 return 0;
791
Al Viro8aef1882011-06-16 15:10:06 +0100792 if (!*need_mntput) {
793 /* lock_mount() may release path->mnt on error */
794 mntget(path->mnt);
795 *need_mntput = true;
796 }
Al Viro19a167a2011-01-17 01:35:23 -0500797 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000798
David Howellsea5b7782011-01-14 19:10:03 +0000799 switch (err) {
800 case -EBUSY:
801 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500802 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000803 case 0:
Al Viro8aef1882011-06-16 15:10:06 +0100804 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +0000805 path->mnt = mnt;
806 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +0000807 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500808 default:
809 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000810 }
Al Viro19a167a2011-01-17 01:35:23 -0500811
David Howells9875cf82011-01-14 18:45:21 +0000812}
813
814/*
815 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000816 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000817 * - Flagged as mountpoint
818 * - Flagged as automount point
819 *
820 * This may only be called in refwalk mode.
821 *
822 * Serialization is taken care of in namespace.c
823 */
824static int follow_managed(struct path *path, unsigned flags)
825{
Al Viro8aef1882011-06-16 15:10:06 +0100826 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +0000827 unsigned managed;
828 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +0100829 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +0000830
831 /* Given that we're not holding a lock here, we retain the value in a
832 * local variable for each dentry as we look at it so that we don't see
833 * the components of that value change under us */
834 while (managed = ACCESS_ONCE(path->dentry->d_flags),
835 managed &= DCACHE_MANAGED_DENTRY,
836 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000837 /* Allow the filesystem to manage the transit without i_mutex
838 * being held. */
839 if (managed & DCACHE_MANAGE_TRANSIT) {
840 BUG_ON(!path->dentry->d_op);
841 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -0400842 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000843 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100844 break;
David Howellscc53ce52011-01-14 18:45:26 +0000845 }
846
David Howells9875cf82011-01-14 18:45:21 +0000847 /* Transit to a mounted filesystem. */
848 if (managed & DCACHE_MOUNTED) {
849 struct vfsmount *mounted = lookup_mnt(path);
850 if (mounted) {
851 dput(path->dentry);
852 if (need_mntput)
853 mntput(path->mnt);
854 path->mnt = mounted;
855 path->dentry = dget(mounted->mnt_root);
856 need_mntput = true;
857 continue;
858 }
859
860 /* Something is mounted on this dentry in another
861 * namespace and/or whatever was mounted there in this
862 * namespace got unmounted before we managed to get the
863 * vfsmount_lock */
864 }
865
866 /* Handle an automount point */
867 if (managed & DCACHE_NEED_AUTOMOUNT) {
868 ret = follow_automount(path, flags, &need_mntput);
869 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100870 break;
David Howells9875cf82011-01-14 18:45:21 +0000871 continue;
872 }
873
874 /* We didn't change the current path point */
875 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
Al Viro8aef1882011-06-16 15:10:06 +0100877
878 if (need_mntput && path->mnt == mnt)
879 mntput(path->mnt);
880 if (ret == -EISDIR)
881 ret = 0;
Al Viroa3fbbde2011-11-07 21:21:26 +0000882 return ret < 0 ? ret : need_mntput;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
David Howellscc53ce52011-01-14 18:45:26 +0000885int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
887 struct vfsmount *mounted;
888
Al Viro1c755af2009-04-18 14:06:57 -0400889 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400891 dput(path->dentry);
892 mntput(path->mnt);
893 path->mnt = mounted;
894 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 return 1;
896 }
897 return 0;
898}
899
Ian Kent62a73752011-03-25 01:51:02 +0800900static inline bool managed_dentry_might_block(struct dentry *dentry)
901{
902 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
903 dentry->d_op->d_manage(dentry, true) < 0);
904}
905
David Howells9875cf82011-01-14 18:45:21 +0000906/*
Al Viro287548e2011-05-27 06:50:06 -0400907 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
908 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +0000909 */
910static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -0400911 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +0000912{
Ian Kent62a73752011-03-25 01:51:02 +0800913 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -0500914 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +0800915 /*
916 * Don't forget we might have a non-mountpoint managed dentry
917 * that wants to block transit.
918 */
Al Viro287548e2011-05-27 06:50:06 -0400919 if (unlikely(managed_dentry_might_block(path->dentry)))
David Howellsab909112011-01-14 18:46:51 +0000920 return false;
Ian Kent62a73752011-03-25 01:51:02 +0800921
922 if (!d_mountpoint(path->dentry))
923 break;
924
David Howells9875cf82011-01-14 18:45:21 +0000925 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
926 if (!mounted)
927 break;
Al Viroc7105362011-11-24 18:22:03 -0500928 path->mnt = &mounted->mnt;
929 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +0000930 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +0000931 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -0700932 /*
933 * Update the inode too. We don't need to re-check the
934 * dentry sequence number here after this d_inode read,
935 * because a mount-point is always pinned.
936 */
937 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +0000938 }
David Howells9875cf82011-01-14 18:45:21 +0000939 return true;
940}
941
Al Virodea39372011-05-27 06:53:39 -0400942static void follow_mount_rcu(struct nameidata *nd)
Al Viro287548e2011-05-27 06:50:06 -0400943{
Al Virodea39372011-05-27 06:53:39 -0400944 while (d_mountpoint(nd->path.dentry)) {
Al Viroc7105362011-11-24 18:22:03 -0500945 struct mount *mounted;
Al Virodea39372011-05-27 06:53:39 -0400946 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
Al Viro287548e2011-05-27 06:50:06 -0400947 if (!mounted)
948 break;
Al Viroc7105362011-11-24 18:22:03 -0500949 nd->path.mnt = &mounted->mnt;
950 nd->path.dentry = mounted->mnt.mnt_root;
Al Virodea39372011-05-27 06:53:39 -0400951 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro287548e2011-05-27 06:50:06 -0400952 }
953}
954
Nick Piggin31e6b012011-01-07 17:49:52 +1100955static int follow_dotdot_rcu(struct nameidata *nd)
956{
Nick Piggin31e6b012011-01-07 17:49:52 +1100957 set_root_rcu(nd);
958
David Howells9875cf82011-01-14 18:45:21 +0000959 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100960 if (nd->path.dentry == nd->root.dentry &&
961 nd->path.mnt == nd->root.mnt) {
962 break;
963 }
964 if (nd->path.dentry != nd->path.mnt->mnt_root) {
965 struct dentry *old = nd->path.dentry;
966 struct dentry *parent = old->d_parent;
967 unsigned seq;
968
969 seq = read_seqcount_begin(&parent->d_seq);
970 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -0500971 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +1100972 nd->path.dentry = parent;
973 nd->seq = seq;
974 break;
975 }
976 if (!follow_up_rcu(&nd->path))
977 break;
978 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +1100979 }
Al Virodea39372011-05-27 06:53:39 -0400980 follow_mount_rcu(nd);
981 nd->inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +1100982 return 0;
Al Viroef7562d2011-03-04 14:35:59 -0500983
984failed:
985 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -0500986 if (!(nd->flags & LOOKUP_ROOT))
987 nd->root.mnt = NULL;
Al Viroef7562d2011-03-04 14:35:59 -0500988 rcu_read_unlock();
Andi Kleen962830d2012-05-08 13:32:02 +0930989 br_read_unlock(&vfsmount_lock);
Al Viroef7562d2011-03-04 14:35:59 -0500990 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +1100991}
992
David Howells9875cf82011-01-14 18:45:21 +0000993/*
David Howellscc53ce52011-01-14 18:45:26 +0000994 * Follow down to the covering mount currently visible to userspace. At each
995 * point, the filesystem owning that dentry may be queried as to whether the
996 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +0000997 */
Al Viro7cc90cc2011-03-18 09:04:20 -0400998int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +0000999{
1000 unsigned managed;
1001 int ret;
1002
1003 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1004 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1005 /* Allow the filesystem to manage the transit without i_mutex
1006 * being held.
1007 *
1008 * We indicate to the filesystem if someone is trying to mount
1009 * something here. This gives autofs the chance to deny anyone
1010 * other than its daemon the right to mount on its
1011 * superstructure.
1012 *
1013 * The filesystem may sleep at this point.
1014 */
1015 if (managed & DCACHE_MANAGE_TRANSIT) {
1016 BUG_ON(!path->dentry->d_op);
1017 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001018 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001019 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001020 if (ret < 0)
1021 return ret == -EISDIR ? 0 : ret;
1022 }
1023
1024 /* Transit to a mounted filesystem. */
1025 if (managed & DCACHE_MOUNTED) {
1026 struct vfsmount *mounted = lookup_mnt(path);
1027 if (!mounted)
1028 break;
1029 dput(path->dentry);
1030 mntput(path->mnt);
1031 path->mnt = mounted;
1032 path->dentry = dget(mounted->mnt_root);
1033 continue;
1034 }
1035
1036 /* Don't handle automount points here */
1037 break;
1038 }
1039 return 0;
1040}
1041
1042/*
David Howells9875cf82011-01-14 18:45:21 +00001043 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1044 */
1045static void follow_mount(struct path *path)
1046{
1047 while (d_mountpoint(path->dentry)) {
1048 struct vfsmount *mounted = lookup_mnt(path);
1049 if (!mounted)
1050 break;
1051 dput(path->dentry);
1052 mntput(path->mnt);
1053 path->mnt = mounted;
1054 path->dentry = dget(mounted->mnt_root);
1055 }
1056}
1057
Nick Piggin31e6b012011-01-07 17:49:52 +11001058static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059{
Al Viro2a737872009-04-07 11:49:53 -04001060 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001063 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
Al Viro2a737872009-04-07 11:49:53 -04001065 if (nd->path.dentry == nd->root.dentry &&
1066 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 break;
1068 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001069 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001070 /* rare case of legitimate dget_parent()... */
1071 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 dput(old);
1073 break;
1074 }
Al Viro3088dd72010-01-30 15:47:29 -05001075 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 }
Al Viro79ed0222009-04-18 13:59:41 -04001078 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001079 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080}
1081
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001083 * This looks up the name in dcache, possibly revalidates the old dentry and
1084 * allocates a new one if not found or not valid. In the need_lookup argument
1085 * returns whether i_op->lookup is necessary.
1086 *
1087 * dir->d_inode->i_mutex must be held
Nick Pigginbaa03892010-08-18 04:37:31 +10001088 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001089static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
Al Viro201f9562012-06-22 12:42:10 +04001090 unsigned int flags, bool *need_lookup)
Nick Pigginbaa03892010-08-18 04:37:31 +10001091{
Nick Pigginbaa03892010-08-18 04:37:31 +10001092 struct dentry *dentry;
Miklos Szeredibad61182012-03-26 12:54:24 +02001093 int error;
Nick Pigginbaa03892010-08-18 04:37:31 +10001094
Miklos Szeredibad61182012-03-26 12:54:24 +02001095 *need_lookup = false;
1096 dentry = d_lookup(dir, name);
1097 if (dentry) {
1098 if (d_need_lookup(dentry)) {
1099 *need_lookup = true;
1100 } else if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
Al Viro201f9562012-06-22 12:42:10 +04001101 error = d_revalidate(dentry, flags);
Miklos Szeredibad61182012-03-26 12:54:24 +02001102 if (unlikely(error <= 0)) {
1103 if (error < 0) {
1104 dput(dentry);
1105 return ERR_PTR(error);
1106 } else if (!d_invalidate(dentry)) {
1107 dput(dentry);
1108 dentry = NULL;
1109 }
1110 }
1111 }
1112 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001113
Miklos Szeredibad61182012-03-26 12:54:24 +02001114 if (!dentry) {
1115 dentry = d_alloc(dir, name);
1116 if (unlikely(!dentry))
1117 return ERR_PTR(-ENOMEM);
Nick Pigginbaa03892010-08-18 04:37:31 +10001118
Miklos Szeredibad61182012-03-26 12:54:24 +02001119 *need_lookup = true;
Nick Pigginbaa03892010-08-18 04:37:31 +10001120 }
1121 return dentry;
1122}
1123
1124/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001125 * Call i_op->lookup on the dentry. The dentry must be negative but may be
1126 * hashed if it was pouplated with DCACHE_NEED_LOOKUP.
1127 *
1128 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001129 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001130static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
Al Viro72bd8662012-06-10 17:17:17 -04001131 unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001132{
Josef Bacik44396f42011-05-31 11:58:49 -04001133 struct dentry *old;
1134
1135 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001136 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001137 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001138 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001139 }
Josef Bacik44396f42011-05-31 11:58:49 -04001140
Al Viro72bd8662012-06-10 17:17:17 -04001141 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001142 if (unlikely(old)) {
1143 dput(dentry);
1144 dentry = old;
1145 }
1146 return dentry;
1147}
1148
Al Viroa3255542012-03-30 14:41:51 -04001149static struct dentry *__lookup_hash(struct qstr *name,
Al Viro72bd8662012-06-10 17:17:17 -04001150 struct dentry *base, unsigned int flags)
Al Viroa3255542012-03-30 14:41:51 -04001151{
Miklos Szeredibad61182012-03-26 12:54:24 +02001152 bool need_lookup;
Al Viroa3255542012-03-30 14:41:51 -04001153 struct dentry *dentry;
1154
Al Viro72bd8662012-06-10 17:17:17 -04001155 dentry = lookup_dcache(name, base, flags, &need_lookup);
Miklos Szeredibad61182012-03-26 12:54:24 +02001156 if (!need_lookup)
1157 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001158
Al Viro72bd8662012-06-10 17:17:17 -04001159 return lookup_real(base->d_inode, dentry, flags);
Al Viroa3255542012-03-30 14:41:51 -04001160}
1161
Josef Bacik44396f42011-05-31 11:58:49 -04001162/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 * It's more convoluted than I'd like it to be, but... it's still fairly
1164 * small and for now I'd prefer to have fast path as straight as possible.
1165 * It _is_ time-critical.
1166 */
Miklos Szeredi697f5142012-05-21 17:30:05 +02001167static int lookup_fast(struct nameidata *nd, struct qstr *name,
1168 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
Jan Blunck4ac91372008-02-14 19:34:32 -08001170 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001171 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001172 int need_reval = 1;
1173 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001174 int err;
1175
Al Viro3cac2602009-08-13 18:27:43 +04001176 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001177 * Rename seqlock is not required here because in the off chance
1178 * of a false negative due to a concurrent rename, we're going to
1179 * do the non-racy lookup, below.
1180 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001181 if (nd->flags & LOOKUP_RCU) {
1182 unsigned seq;
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001183 dentry = __d_lookup_rcu(parent, name, &seq, nd->inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001184 if (!dentry)
1185 goto unlazy;
1186
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001187 /*
1188 * This sequence count validates that the inode matches
1189 * the dentry name information from lookup.
1190 */
1191 *inode = dentry->d_inode;
1192 if (read_seqcount_retry(&dentry->d_seq, seq))
1193 return -ECHILD;
1194
1195 /*
1196 * This sequence count validates that the parent had no
1197 * changes while we did the lookup of the dentry above.
1198 *
1199 * The memory barrier in read_seqcount_begin of child is
1200 * enough, we can use __read_seqcount_retry here.
1201 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001202 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1203 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001204 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001205
Miklos Szeredifa4ee152012-03-26 12:54:19 +02001206 if (unlikely(d_need_lookup(dentry)))
1207 goto unlazy;
Al Viro24643082011-02-15 01:26:22 -05001208 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro4ce16ef32012-06-10 16:10:59 -04001209 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001210 if (unlikely(status <= 0)) {
1211 if (status != -ECHILD)
1212 need_reval = 0;
1213 goto unlazy;
1214 }
Al Viro24643082011-02-15 01:26:22 -05001215 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001216 path->mnt = mnt;
1217 path->dentry = dentry;
Al Virod6e9bd22011-05-27 07:03:15 -04001218 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1219 goto unlazy;
1220 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1221 goto unlazy;
1222 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001223unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001224 if (unlazy_walk(nd, dentry))
1225 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001226 } else {
1227 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001228 }
Al Viro5a18fff2011-03-11 04:44:53 -05001229
Al Viro81e6f522012-03-30 14:48:04 -04001230 if (unlikely(!dentry))
1231 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001232
Al Viro81e6f522012-03-30 14:48:04 -04001233 if (unlikely(d_need_lookup(dentry))) {
1234 dput(dentry);
1235 goto need_lookup;
Al Viro24643082011-02-15 01:26:22 -05001236 }
Al Viro81e6f522012-03-30 14:48:04 -04001237
Al Viro5a18fff2011-03-11 04:44:53 -05001238 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
Al Viro4ce16ef32012-06-10 16:10:59 -04001239 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001240 if (unlikely(status <= 0)) {
1241 if (status < 0) {
1242 dput(dentry);
1243 return status;
1244 }
1245 if (!d_invalidate(dentry)) {
1246 dput(dentry);
Al Viro81e6f522012-03-30 14:48:04 -04001247 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001248 }
1249 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001250
David Howells9875cf82011-01-14 18:45:21 +00001251 path->mnt = mnt;
1252 path->dentry = dentry;
1253 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001254 if (unlikely(err < 0)) {
1255 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001256 return err;
Ian Kent89312212011-01-18 12:06:10 +08001257 }
Al Viroa3fbbde2011-11-07 21:21:26 +00001258 if (err)
1259 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001260 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 return 0;
Al Viro81e6f522012-03-30 14:48:04 -04001262
1263need_lookup:
Miklos Szeredi697f5142012-05-21 17:30:05 +02001264 return 1;
1265}
1266
1267/* Fast lookup failed, do it the slow way */
1268static int lookup_slow(struct nameidata *nd, struct qstr *name,
1269 struct path *path)
1270{
1271 struct dentry *dentry, *parent;
1272 int err;
1273
1274 parent = nd->path.dentry;
Al Viro81e6f522012-03-30 14:48:04 -04001275 BUG_ON(nd->inode != parent->d_inode);
1276
1277 mutex_lock(&parent->d_inode->i_mutex);
Al Viro72bd8662012-06-10 17:17:17 -04001278 dentry = __lookup_hash(name, parent, nd->flags);
Al Viro81e6f522012-03-30 14:48:04 -04001279 mutex_unlock(&parent->d_inode->i_mutex);
1280 if (IS_ERR(dentry))
1281 return PTR_ERR(dentry);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001282 path->mnt = nd->path.mnt;
1283 path->dentry = dentry;
1284 err = follow_managed(path, nd->flags);
1285 if (unlikely(err < 0)) {
1286 path_put_conditional(path, nd);
1287 return err;
1288 }
1289 if (err)
1290 nd->flags |= LOOKUP_JUMPED;
1291 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292}
1293
Al Viro52094c82011-02-21 21:34:47 -05001294static inline int may_lookup(struct nameidata *nd)
1295{
1296 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001297 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001298 if (err != -ECHILD)
1299 return err;
Al Viro19660af2011-03-25 10:32:48 -04001300 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001301 return -ECHILD;
1302 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001303 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001304}
1305
Al Viro9856fa12011-03-04 14:22:06 -05001306static inline int handle_dots(struct nameidata *nd, int type)
1307{
1308 if (type == LAST_DOTDOT) {
1309 if (nd->flags & LOOKUP_RCU) {
1310 if (follow_dotdot_rcu(nd))
1311 return -ECHILD;
1312 } else
1313 follow_dotdot(nd);
1314 }
1315 return 0;
1316}
1317
Al Viro951361f2011-03-04 14:44:37 -05001318static void terminate_walk(struct nameidata *nd)
1319{
1320 if (!(nd->flags & LOOKUP_RCU)) {
1321 path_put(&nd->path);
1322 } else {
1323 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001324 if (!(nd->flags & LOOKUP_ROOT))
1325 nd->root.mnt = NULL;
Al Viro951361f2011-03-04 14:44:37 -05001326 rcu_read_unlock();
Andi Kleen962830d2012-05-08 13:32:02 +09301327 br_read_unlock(&vfsmount_lock);
Al Viro951361f2011-03-04 14:44:37 -05001328 }
1329}
1330
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001331/*
1332 * Do we need to follow links? We _really_ want to be able
1333 * to do this check without having to look at inode->i_op,
1334 * so we keep a cache of "no, this doesn't need follow_link"
1335 * for the common case.
1336 */
Linus Torvalds7813b942011-08-07 09:53:20 -07001337static inline int should_follow_link(struct inode *inode, int follow)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001338{
1339 if (unlikely(!(inode->i_opflags & IOP_NOFOLLOW))) {
1340 if (likely(inode->i_op->follow_link))
1341 return follow;
1342
1343 /* This gets set once for the inode lifetime */
1344 spin_lock(&inode->i_lock);
1345 inode->i_opflags |= IOP_NOFOLLOW;
1346 spin_unlock(&inode->i_lock);
1347 }
1348 return 0;
1349}
1350
Al Viroce57dfc2011-03-13 19:58:58 -04001351static inline int walk_component(struct nameidata *nd, struct path *path,
1352 struct qstr *name, int type, int follow)
1353{
1354 struct inode *inode;
1355 int err;
1356 /*
1357 * "." and ".." are special - ".." especially so because it has
1358 * to be able to know about the current root directory and
1359 * parent relationships.
1360 */
1361 if (unlikely(type != LAST_NORM))
1362 return handle_dots(nd, type);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001363 err = lookup_fast(nd, name, path, &inode);
Al Viroce57dfc2011-03-13 19:58:58 -04001364 if (unlikely(err)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001365 if (err < 0)
1366 goto out_err;
1367
1368 err = lookup_slow(nd, name, path);
1369 if (err < 0)
1370 goto out_err;
1371
1372 inode = path->dentry->d_inode;
Al Viroce57dfc2011-03-13 19:58:58 -04001373 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001374 err = -ENOENT;
1375 if (!inode)
1376 goto out_path_put;
1377
Linus Torvalds7813b942011-08-07 09:53:20 -07001378 if (should_follow_link(inode, follow)) {
Al Viro19660af2011-03-25 10:32:48 -04001379 if (nd->flags & LOOKUP_RCU) {
1380 if (unlikely(unlazy_walk(nd, path->dentry))) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001381 err = -ECHILD;
1382 goto out_err;
Al Viro19660af2011-03-25 10:32:48 -04001383 }
1384 }
Al Viroce57dfc2011-03-13 19:58:58 -04001385 BUG_ON(inode != path->dentry->d_inode);
1386 return 1;
1387 }
1388 path_to_nameidata(path, nd);
1389 nd->inode = inode;
1390 return 0;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001391
1392out_path_put:
1393 path_to_nameidata(path, nd);
1394out_err:
1395 terminate_walk(nd);
1396 return err;
Al Viroce57dfc2011-03-13 19:58:58 -04001397}
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399/*
Al Virob3563792011-03-14 21:54:55 -04001400 * This limits recursive symlink follows to 8, while
1401 * limiting consecutive symlinks to 40.
1402 *
1403 * Without that kind of total limit, nasty chains of consecutive
1404 * symlinks can cause almost arbitrarily long lookups.
1405 */
1406static inline int nested_symlink(struct path *path, struct nameidata *nd)
1407{
1408 int res;
1409
Al Virob3563792011-03-14 21:54:55 -04001410 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1411 path_put_conditional(path, nd);
1412 path_put(&nd->path);
1413 return -ELOOP;
1414 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001415 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001416
1417 nd->depth++;
1418 current->link_count++;
1419
1420 do {
1421 struct path link = *path;
1422 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001423
1424 res = follow_link(&link, nd, &cookie);
Al Viro6d7b5aa2012-06-10 04:15:17 -04001425 if (res)
1426 break;
1427 res = walk_component(nd, path, &nd->last,
1428 nd->last_type, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001429 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001430 } while (res > 0);
1431
1432 current->link_count--;
1433 nd->depth--;
1434 return res;
1435}
1436
1437/*
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001438 * We really don't want to look at inode->i_op->lookup
1439 * when we don't have to. So we keep a cache bit in
1440 * the inode ->i_opflags field that says "yes, we can
1441 * do lookup on this inode".
1442 */
1443static inline int can_lookup(struct inode *inode)
1444{
1445 if (likely(inode->i_opflags & IOP_LOOKUP))
1446 return 1;
1447 if (likely(!inode->i_op->lookup))
1448 return 0;
1449
1450 /* We do this once for the lifetime of the inode */
1451 spin_lock(&inode->i_lock);
1452 inode->i_opflags |= IOP_LOOKUP;
1453 spin_unlock(&inode->i_lock);
1454 return 1;
1455}
1456
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001457/*
1458 * We can do the critical dentry name comparison and hashing
1459 * operations one word at a time, but we are limited to:
1460 *
1461 * - Architectures with fast unaligned word accesses. We could
1462 * do a "get_unaligned()" if this helps and is sufficiently
1463 * fast.
1464 *
1465 * - Little-endian machines (so that we can generate the mask
1466 * of low bytes efficiently). Again, we *could* do a byte
1467 * swapping load on big-endian architectures if that is not
1468 * expensive enough to make the optimization worthless.
1469 *
1470 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1471 * do not trap on the (extremely unlikely) case of a page
1472 * crossing operation.
1473 *
1474 * - Furthermore, we need an efficient 64-bit compile for the
1475 * 64-bit case in order to generate the "number of bytes in
1476 * the final mask". Again, that could be replaced with a
1477 * efficient population count instruction or similar.
1478 */
1479#ifdef CONFIG_DCACHE_WORD_ACCESS
1480
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001481#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001482
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001483#ifdef CONFIG_64BIT
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001484
1485static inline unsigned int fold_hash(unsigned long hash)
1486{
1487 hash += hash >> (8*sizeof(int));
1488 return hash;
1489}
1490
1491#else /* 32-bit case */
1492
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001493#define fold_hash(x) (x)
1494
1495#endif
1496
1497unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1498{
1499 unsigned long a, mask;
1500 unsigned long hash = 0;
1501
1502 for (;;) {
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001503 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001504 if (len < sizeof(unsigned long))
1505 break;
1506 hash += a;
Al Virof132c5b2012-03-22 21:59:52 +00001507 hash *= 9;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001508 name += sizeof(unsigned long);
1509 len -= sizeof(unsigned long);
1510 if (!len)
1511 goto done;
1512 }
1513 mask = ~(~0ul << len*8);
1514 hash += mask & a;
1515done:
1516 return fold_hash(hash);
1517}
1518EXPORT_SYMBOL(full_name_hash);
1519
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001520/*
1521 * Calculate the length and hash of the path component, and
1522 * return the length of the component;
1523 */
1524static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1525{
Linus Torvalds36126f82012-05-26 10:43:17 -07001526 unsigned long a, b, adata, bdata, mask, hash, len;
1527 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001528
1529 hash = a = 0;
1530 len = -sizeof(unsigned long);
1531 do {
1532 hash = (hash + a) * 9;
1533 len += sizeof(unsigned long);
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001534 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07001535 b = a ^ REPEAT_BYTE('/');
1536 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001537
Linus Torvalds36126f82012-05-26 10:43:17 -07001538 adata = prep_zero_mask(a, adata, &constants);
1539 bdata = prep_zero_mask(b, bdata, &constants);
1540
1541 mask = create_zero_mask(adata | bdata);
1542
1543 hash += a & zero_bytemask(mask);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001544 *hashp = fold_hash(hash);
1545
Linus Torvalds36126f82012-05-26 10:43:17 -07001546 return len + find_zero(mask);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001547}
1548
1549#else
1550
Linus Torvalds0145acc2012-03-02 14:32:59 -08001551unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1552{
1553 unsigned long hash = init_name_hash();
1554 while (len--)
1555 hash = partial_name_hash(*name++, hash);
1556 return end_name_hash(hash);
1557}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001558EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001559
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001560/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001561 * We know there's a real path component here of at least
1562 * one character.
1563 */
1564static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1565{
1566 unsigned long hash = init_name_hash();
1567 unsigned long len = 0, c;
1568
1569 c = (unsigned char)*name;
1570 do {
1571 len++;
1572 hash = partial_name_hash(c, hash);
1573 c = (unsigned char)name[len];
1574 } while (c && c != '/');
1575 *hashp = end_name_hash(hash);
1576 return len;
1577}
1578
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001579#endif
1580
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001581/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001583 * This is the basic name resolution function, turning a pathname into
1584 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001586 * Returns 0 and nd will have valid dentry and mnt on success.
1587 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 */
Al Viro6de88d72009-08-09 01:41:57 +04001589static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590{
1591 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
1594 while (*name=='/')
1595 name++;
1596 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001597 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 /* At this point we know we have a real path component. */
1600 for(;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 struct qstr this;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001602 long len;
Al Virofe479a52011-02-22 15:10:03 -05001603 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
Al Viro52094c82011-02-21 21:34:47 -05001605 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 if (err)
1607 break;
1608
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001609 len = hash_name(name, &this.hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 this.name = name;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001611 this.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Al Virofe479a52011-02-22 15:10:03 -05001613 type = LAST_NORM;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001614 if (name[0] == '.') switch (len) {
Al Virofe479a52011-02-22 15:10:03 -05001615 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001616 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001617 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001618 nd->flags |= LOOKUP_JUMPED;
1619 }
Al Virofe479a52011-02-22 15:10:03 -05001620 break;
1621 case 1:
1622 type = LAST_DOT;
1623 }
Al Viro5a202bc2011-03-08 14:17:44 -05001624 if (likely(type == LAST_NORM)) {
1625 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001626 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001627 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1628 err = parent->d_op->d_hash(parent, nd->inode,
1629 &this);
1630 if (err < 0)
1631 break;
1632 }
1633 }
Al Virofe479a52011-02-22 15:10:03 -05001634
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001635 if (!name[len])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 goto last_component;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001637 /*
1638 * If it wasn't NUL, we know it was '/'. Skip that
1639 * slash, and continue until no more slashes.
1640 */
1641 do {
1642 len++;
1643 } while (unlikely(name[len] == '/'));
1644 if (!name[len])
Al Virob3563792011-03-14 21:54:55 -04001645 goto last_component;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001646 name += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647
Al Viroce57dfc2011-03-13 19:58:58 -04001648 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1649 if (err < 0)
1650 return err;
Al Virofe479a52011-02-22 15:10:03 -05001651
Al Viroce57dfc2011-03-13 19:58:58 -04001652 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001653 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001655 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001656 }
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001657 if (can_lookup(nd->inode))
1658 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 err = -ENOTDIR;
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001660 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 /* here ends the main loop */
1662
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663last_component:
Al Virob3563792011-03-14 21:54:55 -04001664 nd->last = this;
1665 nd->last_type = type;
Al Viro086e1832011-02-22 20:56:27 -05001666 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 }
Al Viro951361f2011-03-04 14:44:37 -05001668 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 return err;
1670}
1671
Al Viro70e9b352011-03-05 21:12:22 -05001672static int path_init(int dfd, const char *name, unsigned int flags,
1673 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001675 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001676 int fput_needed;
1677 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
1679 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001680 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001682 if (flags & LOOKUP_ROOT) {
1683 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001684 if (*name) {
1685 if (!inode->i_op->lookup)
1686 return -ENOTDIR;
1687 retval = inode_permission(inode, MAY_EXEC);
1688 if (retval)
1689 return retval;
1690 }
Al Viro5b6ca022011-03-09 23:04:47 -05001691 nd->path = nd->root;
1692 nd->inode = inode;
1693 if (flags & LOOKUP_RCU) {
Andi Kleen962830d2012-05-08 13:32:02 +09301694 br_read_lock(&vfsmount_lock);
Al Viro5b6ca022011-03-09 23:04:47 -05001695 rcu_read_lock();
1696 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1697 } else {
1698 path_get(&nd->path);
1699 }
1700 return 0;
1701 }
1702
Al Viro2a737872009-04-07 11:49:53 -04001703 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001706 if (flags & LOOKUP_RCU) {
Andi Kleen962830d2012-05-08 13:32:02 +09301707 br_read_lock(&vfsmount_lock);
Al Viroe41f7d42011-02-22 14:02:58 -05001708 rcu_read_lock();
1709 set_root_rcu(nd);
1710 } else {
1711 set_root(nd);
1712 path_get(&nd->root);
1713 }
Al Viro2a737872009-04-07 11:49:53 -04001714 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001715 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001716 if (flags & LOOKUP_RCU) {
1717 struct fs_struct *fs = current->fs;
1718 unsigned seq;
1719
Andi Kleen962830d2012-05-08 13:32:02 +09301720 br_read_lock(&vfsmount_lock);
Al Viroe41f7d42011-02-22 14:02:58 -05001721 rcu_read_lock();
1722
1723 do {
1724 seq = read_seqcount_begin(&fs->seq);
1725 nd->path = fs->pwd;
1726 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1727 } while (read_seqcount_retry(&fs->seq, seq));
1728 } else {
1729 get_fs_pwd(current->fs, &nd->path);
1730 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001731 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001732 struct dentry *dentry;
1733
Al Viro1abf0c72011-03-13 03:51:11 -04001734 file = fget_raw_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001735 retval = -EBADF;
1736 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001737 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001738
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001739 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001740
Al Virof52e0c12011-03-14 18:56:51 -04001741 if (*name) {
1742 retval = -ENOTDIR;
1743 if (!S_ISDIR(dentry->d_inode->i_mode))
1744 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001745
Al Viro4ad5abb2011-06-20 19:57:03 -04001746 retval = inode_permission(dentry->d_inode, MAY_EXEC);
Al Virof52e0c12011-03-14 18:56:51 -04001747 if (retval)
1748 goto fput_fail;
1749 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001750
Jan Blunck5dd784d02008-02-14 19:34:38 -08001751 nd->path = file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001752 if (flags & LOOKUP_RCU) {
1753 if (fput_needed)
Al Viro70e9b352011-03-05 21:12:22 -05001754 *fp = file;
Al Viroe41f7d42011-02-22 14:02:58 -05001755 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Andi Kleen962830d2012-05-08 13:32:02 +09301756 br_read_lock(&vfsmount_lock);
Al Viroe41f7d42011-02-22 14:02:58 -05001757 rcu_read_lock();
1758 } else {
1759 path_get(&file->f_path);
1760 fput_light(file, fput_needed);
1761 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 }
Al Viroe41f7d42011-02-22 14:02:58 -05001763
Nick Piggin31e6b012011-01-07 17:49:52 +11001764 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001765 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001766
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001767fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001768 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001769out_fail:
1770 return retval;
1771}
1772
Al Virobd92d7f2011-03-14 19:54:59 -04001773static inline int lookup_last(struct nameidata *nd, struct path *path)
1774{
1775 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1776 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1777
1778 nd->flags &= ~LOOKUP_PARENT;
1779 return walk_component(nd, path, &nd->last, nd->last_type,
1780 nd->flags & LOOKUP_FOLLOW);
1781}
1782
Al Viro9b4a9b12009-04-07 11:44:16 -04001783/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001784static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001785 unsigned int flags, struct nameidata *nd)
1786{
Al Viro70e9b352011-03-05 21:12:22 -05001787 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001788 struct path path;
1789 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001790
1791 /*
1792 * Path walking is largely split up into 2 different synchronisation
1793 * schemes, rcu-walk and ref-walk (explained in
1794 * Documentation/filesystems/path-lookup.txt). These share much of the
1795 * path walk code, but some things particularly setup, cleanup, and
1796 * following mounts are sufficiently divergent that functions are
1797 * duplicated. Typically there is a function foo(), and its RCU
1798 * analogue, foo_rcu().
1799 *
1800 * -ECHILD is the error number of choice (just to avoid clashes) that
1801 * is returned if some aspect of an rcu-walk fails. Such an error must
1802 * be handled by restarting a traditional ref-walk (which will always
1803 * be able to complete).
1804 */
Al Virobd92d7f2011-03-14 19:54:59 -04001805 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001806
Al Virobd92d7f2011-03-14 19:54:59 -04001807 if (unlikely(err))
1808 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001809
1810 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001811 err = link_path_walk(name, nd);
1812
1813 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001814 err = lookup_last(nd, &path);
1815 while (err > 0) {
1816 void *cookie;
1817 struct path link = path;
Al Virobd92d7f2011-03-14 19:54:59 -04001818 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001819 err = follow_link(&link, nd, &cookie);
Al Viro6d7b5aa2012-06-10 04:15:17 -04001820 if (err)
1821 break;
1822 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001823 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001824 }
1825 }
Al Viroee0827c2011-02-21 23:38:09 -05001826
Al Viro9f1fafe2011-03-25 11:00:12 -04001827 if (!err)
1828 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001829
1830 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1831 if (!nd->inode->i_op->lookup) {
1832 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001833 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001834 }
1835 }
Al Viro16c2cd72011-02-22 15:50:10 -05001836
Al Viro70e9b352011-03-05 21:12:22 -05001837 if (base)
1838 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001839
Al Viro5b6ca022011-03-09 23:04:47 -05001840 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001841 path_put(&nd->root);
1842 nd->root.mnt = NULL;
1843 }
Al Virobd92d7f2011-03-14 19:54:59 -04001844 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001845}
Nick Piggin31e6b012011-01-07 17:49:52 +11001846
Al Viroee0827c2011-02-21 23:38:09 -05001847static int do_path_lookup(int dfd, const char *name,
1848 unsigned int flags, struct nameidata *nd)
1849{
1850 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1851 if (unlikely(retval == -ECHILD))
1852 retval = path_lookupat(dfd, name, flags, nd);
1853 if (unlikely(retval == -ESTALE))
1854 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001855
1856 if (likely(!retval)) {
1857 if (unlikely(!audit_dummy_context())) {
1858 if (nd->path.dentry && nd->inode)
1859 audit_inode(name, nd->path.dentry);
1860 }
1861 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001862 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863}
1864
Al Viro79714f72012-06-15 03:01:42 +04001865/* does lookup, returns the object with parent locked */
1866struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001867{
Al Viro79714f72012-06-15 03:01:42 +04001868 struct nameidata nd;
1869 struct dentry *d;
1870 int err = do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, &nd);
1871 if (err)
1872 return ERR_PTR(err);
1873 if (nd.last_type != LAST_NORM) {
1874 path_put(&nd.path);
1875 return ERR_PTR(-EINVAL);
1876 }
1877 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Al Viro1e0ea002012-07-22 23:46:21 +04001878 d = __lookup_hash(&nd.last, nd.path.dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04001879 if (IS_ERR(d)) {
1880 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1881 path_put(&nd.path);
1882 return d;
1883 }
1884 *path = nd.path;
1885 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001886}
1887
Al Virod1811462008-08-02 00:49:18 -04001888int kern_path(const char *name, unsigned int flags, struct path *path)
1889{
1890 struct nameidata nd;
1891 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1892 if (!res)
1893 *path = nd.path;
1894 return res;
1895}
1896
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001897/**
1898 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1899 * @dentry: pointer to dentry of the base directory
1900 * @mnt: pointer to vfs mount of the base directory
1901 * @name: pointer to file name
1902 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04001903 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001904 */
1905int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1906 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04001907 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001908{
Al Viroe0a01242011-06-27 17:00:37 -04001909 struct nameidata nd;
1910 int err;
1911 nd.root.dentry = dentry;
1912 nd.root.mnt = mnt;
1913 BUG_ON(flags & LOOKUP_PARENT);
Al Viro5b6ca022011-03-09 23:04:47 -05001914 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
Al Viroe0a01242011-06-27 17:00:37 -04001915 err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
1916 if (!err)
1917 *path = nd.path;
1918 return err;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001919}
1920
James Morris057f6c02007-04-26 00:12:05 -07001921/*
1922 * Restricted form of lookup. Doesn't follow links, single-component only,
1923 * needs parent already locked. Doesn't follow mounts.
1924 * SMP-safe.
1925 */
Adrian Bunka244e162006-03-31 02:32:11 -08001926static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927{
Al Viro72bd8662012-06-10 17:17:17 -04001928 return __lookup_hash(&nd->last, nd->path.dentry, nd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929}
1930
Christoph Hellwigeead1912007-10-16 23:25:38 -07001931/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001932 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001933 * @name: pathname component to lookup
1934 * @base: base directory to lookup from
1935 * @len: maximum length @len should be interpreted to
1936 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001937 * Note that this routine is purely a helper for filesystem usage and should
1938 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001939 * nameidata argument is passed to the filesystem methods and a filesystem
1940 * using this helper needs to be prepared for that.
1941 */
James Morris057f6c02007-04-26 00:12:05 -07001942struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1943{
James Morris057f6c02007-04-26 00:12:05 -07001944 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05001945 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02001946 int err;
James Morris057f6c02007-04-26 00:12:05 -07001947
David Woodhouse2f9092e2009-04-20 23:18:37 +01001948 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1949
Al Viro6a96ba52011-03-07 23:49:20 -05001950 this.name = name;
1951 this.len = len;
Linus Torvalds0145acc2012-03-02 14:32:59 -08001952 this.hash = full_name_hash(name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05001953 if (!len)
1954 return ERR_PTR(-EACCES);
1955
Al Viro6a96ba52011-03-07 23:49:20 -05001956 while (len--) {
1957 c = *(const unsigned char *)name++;
1958 if (c == '/' || c == '\0')
1959 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05001960 }
Al Viro5a202bc2011-03-08 14:17:44 -05001961 /*
1962 * See if the low-level filesystem might want
1963 * to use its own hash..
1964 */
1965 if (base->d_flags & DCACHE_OP_HASH) {
1966 int err = base->d_op->d_hash(base, base->d_inode, &this);
1967 if (err < 0)
1968 return ERR_PTR(err);
1969 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07001970
Miklos Szeredicda309d2012-03-26 12:54:21 +02001971 err = inode_permission(base->d_inode, MAY_EXEC);
1972 if (err)
1973 return ERR_PTR(err);
1974
Al Viro72bd8662012-06-10 17:17:17 -04001975 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07001976}
1977
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01001978int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
1979 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980{
Al Viro2d8f3032008-07-22 09:59:21 -04001981 struct nameidata nd;
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01001982 char *tmp = getname_flags(name, flags, empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001985
1986 BUG_ON(flags & LOOKUP_PARENT);
1987
1988 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001990 if (!err)
1991 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 }
1993 return err;
1994}
1995
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01001996int user_path_at(int dfd, const char __user *name, unsigned flags,
1997 struct path *path)
1998{
Linus Torvaldsf7493e52012-03-22 16:10:40 -07001999 return user_path_at_empty(dfd, name, flags, path, NULL);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002000}
2001
Al Viro2ad94ae2008-07-21 09:32:51 -04002002static int user_path_parent(int dfd, const char __user *path,
2003 struct nameidata *nd, char **name)
2004{
2005 char *s = getname(path);
2006 int error;
2007
2008 if (IS_ERR(s))
2009 return PTR_ERR(s);
2010
2011 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
2012 if (error)
2013 putname(s);
2014 else
2015 *name = s;
2016
2017 return error;
2018}
2019
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020/*
2021 * It's inline, so penalty for filesystems that don't use sticky bit is
2022 * minimal.
2023 */
2024static inline int check_sticky(struct inode *dir, struct inode *inode)
2025{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002026 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002027
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 if (!(dir->i_mode & S_ISVTX))
2029 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002030 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002032 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 return 0;
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -08002034 return !inode_capable(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035}
2036
2037/*
2038 * Check whether we can remove a link victim from directory dir, check
2039 * whether the type of victim is right.
2040 * 1. We can't do it if dir is read-only (done in permission())
2041 * 2. We should have write and exec permissions on dir
2042 * 3. We can't remove anything from append-only dir
2043 * 4. We can't do anything with immutable dir (done in permission())
2044 * 5. If the sticky bit on dir is set we should either
2045 * a. be owner of dir, or
2046 * b. be owner of victim, or
2047 * c. have CAP_FOWNER capability
2048 * 6. If the victim is append-only or immutable we can't do antyhing with
2049 * links pointing to it.
2050 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2051 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2052 * 9. We can't remove a root or mountpoint.
2053 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2054 * nfs_async_unlink().
2055 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002056static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057{
2058 int error;
2059
2060 if (!victim->d_inode)
2061 return -ENOENT;
2062
2063 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05002064 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Al Virof419a2e2008-07-22 00:07:17 -04002066 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 if (error)
2068 return error;
2069 if (IS_APPEND(dir))
2070 return -EPERM;
2071 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08002072 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 return -EPERM;
2074 if (isdir) {
2075 if (!S_ISDIR(victim->d_inode->i_mode))
2076 return -ENOTDIR;
2077 if (IS_ROOT(victim))
2078 return -EBUSY;
2079 } else if (S_ISDIR(victim->d_inode->i_mode))
2080 return -EISDIR;
2081 if (IS_DEADDIR(dir))
2082 return -ENOENT;
2083 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2084 return -EBUSY;
2085 return 0;
2086}
2087
2088/* Check whether we can create an object with dentry child in directory
2089 * dir.
2090 * 1. We can't do it if child already exists (open has special treatment for
2091 * this case, but since we are inlined it's OK)
2092 * 2. We can't do it if dir is read-only (done in permission())
2093 * 3. We should have write and exec permissions on dir
2094 * 4. We can't do it if dir is immutable (done in permission())
2095 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002096static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097{
2098 if (child->d_inode)
2099 return -EEXIST;
2100 if (IS_DEADDIR(dir))
2101 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04002102 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103}
2104
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105/*
2106 * p1 and p2 should be directories on the same fs.
2107 */
2108struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2109{
2110 struct dentry *p;
2111
2112 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07002113 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 return NULL;
2115 }
2116
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002117 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002119 p = d_ancestor(p2, p1);
2120 if (p) {
2121 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2122 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2123 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 }
2125
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002126 p = d_ancestor(p1, p2);
2127 if (p) {
2128 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2129 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2130 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 }
2132
Ingo Molnarf2eace22006-07-03 00:25:05 -07002133 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2134 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 return NULL;
2136}
2137
2138void unlock_rename(struct dentry *p1, struct dentry *p2)
2139{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002140 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002142 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002143 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 }
2145}
2146
Al Viro4acdaf22011-07-26 01:42:34 -04002147int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002148 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002150 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 if (error)
2152 return error;
2153
Al Viroacfa4382008-12-04 10:06:33 -05002154 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 return -EACCES; /* shouldn't it be ENOSYS? */
2156 mode &= S_IALLUGO;
2157 mode |= S_IFREG;
2158 error = security_inode_create(dir, dentry, mode);
2159 if (error)
2160 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002161 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002162 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002163 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 return error;
2165}
2166
Al Viro73d049a2011-03-11 12:08:24 -05002167static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002169 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 struct inode *inode = dentry->d_inode;
2171 int error;
2172
Al Virobcda7652011-03-13 16:42:14 -04002173 /* O_PATH? */
2174 if (!acc_mode)
2175 return 0;
2176
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 if (!inode)
2178 return -ENOENT;
2179
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002180 switch (inode->i_mode & S_IFMT) {
2181 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002183 case S_IFDIR:
2184 if (acc_mode & MAY_WRITE)
2185 return -EISDIR;
2186 break;
2187 case S_IFBLK:
2188 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002189 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002191 /*FALLTHRU*/
2192 case S_IFIFO:
2193 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002195 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002196 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002197
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002198 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002199 if (error)
2200 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002201
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 /*
2203 * An append-only file must be opened in append mode for writing.
2204 */
2205 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002206 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002207 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002209 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 }
2211
2212 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002213 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002214 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002216 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002217}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218
Jeff Laytone1181ee2010-12-07 16:19:50 -05002219static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002220{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002221 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002222 struct inode *inode = path->dentry->d_inode;
2223 int error = get_write_access(inode);
2224 if (error)
2225 return error;
2226 /*
2227 * Refuse to truncate files with mandatory locks held on them.
2228 */
2229 error = locks_verify_locked(inode);
2230 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002231 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002232 if (!error) {
2233 error = do_truncate(path->dentry, 0,
2234 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002235 filp);
Al Viro7715b522009-12-16 03:54:00 -05002236 }
2237 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002238 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239}
2240
Dave Hansend57999e2008-02-15 14:37:27 -08002241static inline int open_to_namei_flags(int flag)
2242{
Al Viro8a5e9292011-06-25 19:15:54 -04002243 if ((flag & O_ACCMODE) == 3)
2244 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002245 return flag;
2246}
2247
Miklos Szeredid18e9002012-06-05 15:10:17 +02002248static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2249{
2250 int error = security_path_mknod(dir, dentry, mode, 0);
2251 if (error)
2252 return error;
2253
2254 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2255 if (error)
2256 return error;
2257
2258 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2259}
2260
David Howells1acf0af2012-06-14 16:13:46 +01002261/*
2262 * Attempt to atomically look up, create and open a file from a negative
2263 * dentry.
2264 *
2265 * Returns 0 if successful. The file will have been created and attached to
2266 * @file by the filesystem calling finish_open().
2267 *
2268 * Returns 1 if the file was looked up only or didn't need creating. The
2269 * caller will need to perform the open themselves. @path will have been
2270 * updated to point to the new dentry. This may be negative.
2271 *
2272 * Returns an error code otherwise.
2273 */
Al Viro2675a4e2012-06-22 12:41:10 +04002274static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2275 struct path *path, struct file *file,
2276 const struct open_flags *op,
2277 bool *want_write, bool need_lookup,
2278 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002279{
2280 struct inode *dir = nd->path.dentry->d_inode;
2281 unsigned open_flag = open_to_namei_flags(op->open_flag);
2282 umode_t mode;
2283 int error;
2284 int acc_mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002285 int create_error = 0;
2286 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
2287
2288 BUG_ON(dentry->d_inode);
2289
2290 /* Don't create child dentry for a dead directory. */
2291 if (unlikely(IS_DEADDIR(dir))) {
Al Viro2675a4e2012-06-22 12:41:10 +04002292 error = -ENOENT;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002293 goto out;
2294 }
2295
2296 mode = op->mode & S_IALLUGO;
2297 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2298 mode &= ~current_umask();
2299
2300 if (open_flag & O_EXCL) {
2301 open_flag &= ~O_TRUNC;
Al Viro47237682012-06-10 05:01:45 -04002302 *opened |= FILE_CREATED;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002303 }
2304
2305 /*
2306 * Checking write permission is tricky, bacuse we don't know if we are
2307 * going to actually need it: O_CREAT opens should work as long as the
2308 * file exists. But checking existence breaks atomicity. The trick is
2309 * to check access and if not granted clear O_CREAT from the flags.
2310 *
2311 * Another problem is returing the "right" error value (e.g. for an
2312 * O_EXCL open we want to return EEXIST not EROFS).
2313 */
2314 if ((open_flag & (O_CREAT | O_TRUNC)) ||
2315 (open_flag & O_ACCMODE) != O_RDONLY) {
2316 error = mnt_want_write(nd->path.mnt);
2317 if (!error) {
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002318 *want_write = true;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002319 } else if (!(open_flag & O_CREAT)) {
2320 /*
2321 * No O_CREATE -> atomicity not a requirement -> fall
2322 * back to lookup + open
2323 */
2324 goto no_open;
2325 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2326 /* Fall back and fail with the right error */
2327 create_error = error;
2328 goto no_open;
2329 } else {
2330 /* No side effects, safe to clear O_CREAT */
2331 create_error = error;
2332 open_flag &= ~O_CREAT;
2333 }
2334 }
2335
2336 if (open_flag & O_CREAT) {
2337 error = may_o_create(&nd->path, dentry, op->mode);
2338 if (error) {
2339 create_error = error;
2340 if (open_flag & O_EXCL)
2341 goto no_open;
2342 open_flag &= ~O_CREAT;
2343 }
2344 }
2345
2346 if (nd->flags & LOOKUP_DIRECTORY)
2347 open_flag |= O_DIRECTORY;
2348
Al Viro30d90492012-06-22 12:40:19 +04002349 file->f_path.dentry = DENTRY_NOT_SET;
2350 file->f_path.mnt = nd->path.mnt;
2351 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
Al Viro47237682012-06-10 05:01:45 -04002352 opened);
Al Virod9585272012-06-22 12:39:14 +04002353 if (error < 0) {
Al Virod9585272012-06-22 12:39:14 +04002354 if (create_error && error == -ENOENT)
2355 error = create_error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002356 goto out;
2357 }
2358
2359 acc_mode = op->acc_mode;
Al Viro47237682012-06-10 05:01:45 -04002360 if (*opened & FILE_CREATED) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002361 fsnotify_create(dir, dentry);
2362 acc_mode = MAY_OPEN;
2363 }
2364
Al Virod9585272012-06-22 12:39:14 +04002365 if (error) { /* returned 1, that is */
Al Viro30d90492012-06-22 12:40:19 +04002366 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04002367 error = -EIO;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002368 goto out;
2369 }
Al Viro30d90492012-06-22 12:40:19 +04002370 if (file->f_path.dentry) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002371 dput(dentry);
Al Viro30d90492012-06-22 12:40:19 +04002372 dentry = file->f_path.dentry;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002373 }
2374 goto looked_up;
2375 }
2376
2377 /*
2378 * We didn't have the inode before the open, so check open permission
2379 * here.
2380 */
Al Viro2675a4e2012-06-22 12:41:10 +04002381 error = may_open(&file->f_path, acc_mode, open_flag);
2382 if (error)
2383 fput(file);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002384
2385out:
2386 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04002387 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002388
Miklos Szeredid18e9002012-06-05 15:10:17 +02002389no_open:
2390 if (need_lookup) {
Al Viro72bd8662012-06-10 17:17:17 -04002391 dentry = lookup_real(dir, dentry, nd->flags);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002392 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002393 return PTR_ERR(dentry);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002394
2395 if (create_error) {
2396 int open_flag = op->open_flag;
2397
Al Viro2675a4e2012-06-22 12:41:10 +04002398 error = create_error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002399 if ((open_flag & O_EXCL)) {
2400 if (!dentry->d_inode)
2401 goto out;
2402 } else if (!dentry->d_inode) {
2403 goto out;
2404 } else if ((open_flag & O_TRUNC) &&
2405 S_ISREG(dentry->d_inode->i_mode)) {
2406 goto out;
2407 }
2408 /* will fail later, go on to get the right error */
2409 }
2410 }
2411looked_up:
2412 path->dentry = dentry;
2413 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04002414 return 1;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002415}
2416
Nick Piggin31e6b012011-01-07 17:49:52 +11002417/*
David Howells1acf0af2012-06-14 16:13:46 +01002418 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002419 *
2420 * Must be called with i_mutex held on parent.
2421 *
David Howells1acf0af2012-06-14 16:13:46 +01002422 * Returns 0 if the file was successfully atomically created (if necessary) and
2423 * opened. In this case the file will be returned attached to @file.
2424 *
2425 * Returns 1 if the file was not completely opened at this time, though lookups
2426 * and creations will have been performed and the dentry returned in @path will
2427 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
2428 * specified then a negative dentry may be returned.
2429 *
2430 * An error code is returned otherwise.
2431 *
2432 * FILE_CREATE will be set in @*opened if the dentry was created and will be
2433 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002434 */
Al Viro2675a4e2012-06-22 12:41:10 +04002435static int lookup_open(struct nameidata *nd, struct path *path,
2436 struct file *file,
2437 const struct open_flags *op,
2438 bool *want_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002439{
2440 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002441 struct inode *dir_inode = dir->d_inode;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002442 struct dentry *dentry;
2443 int error;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002444 bool need_lookup;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002445
Al Viro47237682012-06-10 05:01:45 -04002446 *opened &= ~FILE_CREATED;
Al Viro201f9562012-06-22 12:42:10 +04002447 dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002448 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002449 return PTR_ERR(dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002450
Miklos Szeredid18e9002012-06-05 15:10:17 +02002451 /* Cached positive dentry: will open in f_op->open */
2452 if (!need_lookup && dentry->d_inode)
2453 goto out_no_open;
2454
2455 if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
Al Viro30d90492012-06-22 12:40:19 +04002456 return atomic_open(nd, dentry, path, file, op, want_write,
Al Viro47237682012-06-10 05:01:45 -04002457 need_lookup, opened);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002458 }
2459
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002460 if (need_lookup) {
2461 BUG_ON(dentry->d_inode);
2462
Al Viro72bd8662012-06-10 17:17:17 -04002463 dentry = lookup_real(dir_inode, dentry, nd->flags);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002464 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002465 return PTR_ERR(dentry);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002466 }
2467
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002468 /* Negative dentry, just create the file */
2469 if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
2470 umode_t mode = op->mode;
2471 if (!IS_POSIXACL(dir->d_inode))
2472 mode &= ~current_umask();
2473 /*
2474 * This write is needed to ensure that a
2475 * rw->ro transition does not occur between
2476 * the time when the file is created and when
2477 * a permanent write count is taken through
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002478 * the 'struct file' in finish_open().
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002479 */
2480 error = mnt_want_write(nd->path.mnt);
2481 if (error)
2482 goto out_dput;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002483 *want_write = true;
Al Viro47237682012-06-10 05:01:45 -04002484 *opened |= FILE_CREATED;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002485 error = security_path_mknod(&nd->path, dentry, mode, 0);
2486 if (error)
2487 goto out_dput;
Al Viro312b63f2012-06-10 18:09:36 -04002488 error = vfs_create(dir->d_inode, dentry, mode,
2489 nd->flags & LOOKUP_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002490 if (error)
2491 goto out_dput;
2492 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02002493out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002494 path->dentry = dentry;
2495 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04002496 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002497
2498out_dput:
2499 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04002500 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002501}
2502
2503/*
Al Virofe2d35f2011-03-05 22:58:25 -05002504 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002505 */
Al Viro2675a4e2012-06-22 12:41:10 +04002506static int do_last(struct nameidata *nd, struct path *path,
2507 struct file *file, const struct open_flags *op,
2508 int *opened, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002509{
Al Viroa1e28032009-12-24 02:12:06 -05002510 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05002511 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002512 bool will_truncate = (open_flag & O_TRUNC) != 0;
2513 bool want_write = false;
Al Virobcda7652011-03-13 16:42:14 -04002514 int acc_mode = op->acc_mode;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002515 struct inode *inode;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002516 bool symlink_ok = false;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002517 struct path save_parent = { .dentry = NULL, .mnt = NULL };
2518 bool retried = false;
Al Viro16c2cd72011-02-22 15:50:10 -05002519 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002520
Al Viroc3e380b2011-02-23 13:39:45 -05002521 nd->flags &= ~LOOKUP_PARENT;
2522 nd->flags |= op->intent;
2523
Al Viro1f36f772009-12-26 10:56:19 -05002524 switch (nd->last_type) {
2525 case LAST_DOTDOT:
Neil Brown176306f2010-05-24 16:57:56 +10002526 case LAST_DOT:
Al Virofe2d35f2011-03-05 22:58:25 -05002527 error = handle_dots(nd, nd->last_type);
2528 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002529 return error;
Al Viro1f36f772009-12-26 10:56:19 -05002530 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002531 case LAST_ROOT:
Al Viro9f1fafe2011-03-25 11:00:12 -04002532 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002533 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002534 return error;
Al Virofe2d35f2011-03-05 22:58:25 -05002535 audit_inode(pathname, nd->path.dentry);
Al Viroca344a892011-03-09 00:36:45 -05002536 if (open_flag & O_CREAT) {
Al Virofe2d35f2011-03-05 22:58:25 -05002537 error = -EISDIR;
Al Viro2675a4e2012-06-22 12:41:10 +04002538 goto out;
Al Virofe2d35f2011-03-05 22:58:25 -05002539 }
Miklos Szeredie83db162012-06-05 15:10:29 +02002540 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05002541 case LAST_BIND:
Al Viro9f1fafe2011-03-25 11:00:12 -04002542 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002543 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002544 return error;
Al Viro1f36f772009-12-26 10:56:19 -05002545 audit_inode(pathname, dir);
Miklos Szeredie83db162012-06-05 15:10:29 +02002546 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05002547 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002548
Al Viroca344a892011-03-09 00:36:45 -05002549 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05002550 if (nd->last.name[nd->last.len])
2551 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002552 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002553 symlink_ok = true;
Al Virofe2d35f2011-03-05 22:58:25 -05002554 /* we _can_ be in RCU mode here */
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002555 error = lookup_fast(nd, &nd->last, path, &inode);
Miklos Szeredi71574862012-06-05 15:10:14 +02002556 if (likely(!error))
2557 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002558
Miklos Szeredi71574862012-06-05 15:10:14 +02002559 if (error < 0)
Al Viro2675a4e2012-06-22 12:41:10 +04002560 goto out;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02002561
Miklos Szeredi71574862012-06-05 15:10:14 +02002562 BUG_ON(nd->inode != dir->d_inode);
Miklos Szeredib6183df2012-06-05 15:10:13 +02002563 } else {
2564 /* create side of things */
2565 /*
2566 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
2567 * has been cleared when we got to the last component we are
2568 * about to look up
2569 */
2570 error = complete_walk(nd);
2571 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002572 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02002573
2574 audit_inode(pathname, dir);
2575 error = -EISDIR;
2576 /* trailing slashes? */
2577 if (nd->last.name[nd->last.len])
Al Viro2675a4e2012-06-22 12:41:10 +04002578 goto out;
Al Virofe2d35f2011-03-05 22:58:25 -05002579 }
2580
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002581retry_lookup:
Al Viroa1e28032009-12-24 02:12:06 -05002582 mutex_lock(&dir->d_inode->i_mutex);
Al Viro2675a4e2012-06-22 12:41:10 +04002583 error = lookup_open(nd, path, file, op, &want_write, opened);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002584 mutex_unlock(&dir->d_inode->i_mutex);
Al Viroa1e28032009-12-24 02:12:06 -05002585
Al Viro2675a4e2012-06-22 12:41:10 +04002586 if (error <= 0) {
2587 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002588 goto out;
2589
Al Viro47237682012-06-10 05:01:45 -04002590 if ((*opened & FILE_CREATED) ||
Al Viro2675a4e2012-06-22 12:41:10 +04002591 !S_ISREG(file->f_path.dentry->d_inode->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002592 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002593
Al Viro2675a4e2012-06-22 12:41:10 +04002594 audit_inode(pathname, file->f_path.dentry);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002595 goto opened;
2596 }
Al Virofb1cc552009-12-24 01:58:28 -05002597
Al Viro47237682012-06-10 05:01:45 -04002598 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05002599 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002600 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002601 will_truncate = false;
Al Virobcda7652011-03-13 16:42:14 -04002602 acc_mode = MAY_OPEN;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002603 path_to_nameidata(path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02002604 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05002605 }
2606
2607 /*
2608 * It already exists.
2609 */
Al Virofb1cc552009-12-24 01:58:28 -05002610 audit_inode(pathname, path->dentry);
2611
Miklos Szeredid18e9002012-06-05 15:10:17 +02002612 /*
2613 * If atomic_open() acquired write access it is dropped now due to
2614 * possible mount and symlink following (this might be optimized away if
2615 * necessary...)
2616 */
2617 if (want_write) {
2618 mnt_drop_write(nd->path.mnt);
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002619 want_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002620 }
2621
Al Virofb1cc552009-12-24 01:58:28 -05002622 error = -EEXIST;
Al Viroca344a892011-03-09 00:36:45 -05002623 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002624 goto exit_dput;
2625
David Howells9875cf82011-01-14 18:45:21 +00002626 error = follow_managed(path, nd->flags);
2627 if (error < 0)
2628 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002629
Al Viroa3fbbde2011-11-07 21:21:26 +00002630 if (error)
2631 nd->flags |= LOOKUP_JUMPED;
2632
Miklos Szeredidecf3402012-05-21 17:30:08 +02002633 BUG_ON(nd->flags & LOOKUP_RCU);
2634 inode = path->dentry->d_inode;
Miklos Szeredi5f5daac2012-05-21 17:30:14 +02002635finish_lookup:
2636 /* we _can_ be in RCU mode here */
Al Virofb1cc552009-12-24 01:58:28 -05002637 error = -ENOENT;
Miklos Szeredi54c33e72012-05-21 17:30:10 +02002638 if (!inode) {
2639 path_to_nameidata(path, nd);
Al Viro2675a4e2012-06-22 12:41:10 +04002640 goto out;
Miklos Szeredi54c33e72012-05-21 17:30:10 +02002641 }
Al Viro9e67f362009-12-26 07:04:50 -05002642
Miklos Szeredid45ea862012-05-21 17:30:09 +02002643 if (should_follow_link(inode, !symlink_ok)) {
2644 if (nd->flags & LOOKUP_RCU) {
2645 if (unlikely(unlazy_walk(nd, path->dentry))) {
2646 error = -ECHILD;
Al Viro2675a4e2012-06-22 12:41:10 +04002647 goto out;
Miklos Szeredid45ea862012-05-21 17:30:09 +02002648 }
2649 }
2650 BUG_ON(inode != path->dentry->d_inode);
Al Viro2675a4e2012-06-22 12:41:10 +04002651 return 1;
Miklos Szeredid45ea862012-05-21 17:30:09 +02002652 }
Al Virofb1cc552009-12-24 01:58:28 -05002653
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002654 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path->mnt) {
2655 path_to_nameidata(path, nd);
2656 } else {
2657 save_parent.dentry = nd->path.dentry;
2658 save_parent.mnt = mntget(path->mnt);
2659 nd->path.dentry = path->dentry;
2660
2661 }
Miklos Szeredidecf3402012-05-21 17:30:08 +02002662 nd->inode = inode;
Al Viroa3fbbde2011-11-07 21:21:26 +00002663 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
2664 error = complete_walk(nd);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002665 if (error) {
2666 path_put(&save_parent);
Al Viro2675a4e2012-06-22 12:41:10 +04002667 return error;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002668 }
Al Virofb1cc552009-12-24 01:58:28 -05002669 error = -EISDIR;
Miklos Szeredi050ac842012-05-21 17:30:12 +02002670 if ((open_flag & O_CREAT) && S_ISDIR(nd->inode->i_mode))
Al Viro2675a4e2012-06-22 12:41:10 +04002671 goto out;
Miklos Szerediaf2f5542012-05-21 17:30:11 +02002672 error = -ENOTDIR;
2673 if ((nd->flags & LOOKUP_DIRECTORY) && !nd->inode->i_op->lookup)
Al Viro2675a4e2012-06-22 12:41:10 +04002674 goto out;
Miklos Szeredid7fdd7f2012-05-21 17:30:13 +02002675 audit_inode(pathname, nd->path.dentry);
Miklos Szeredie83db162012-06-05 15:10:29 +02002676finish_open:
Al Viro6c0d46c2011-03-09 00:59:59 -05002677 if (!S_ISREG(nd->inode->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002678 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05002679
Al Viro0f9d1a12011-03-09 00:13:14 -05002680 if (will_truncate) {
2681 error = mnt_want_write(nd->path.mnt);
2682 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002683 goto out;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002684 want_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05002685 }
Miklos Szeredie83db162012-06-05 15:10:29 +02002686finish_open_created:
Al Virobcda7652011-03-13 16:42:14 -04002687 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002688 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002689 goto out;
Al Viro30d90492012-06-22 12:40:19 +04002690 file->f_path.mnt = nd->path.mnt;
2691 error = finish_open(file, nd->path.dentry, NULL, opened);
2692 if (error) {
Al Viro30d90492012-06-22 12:40:19 +04002693 if (error == -EOPENSTALE)
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002694 goto stale_open;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002695 goto out;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002696 }
Miklos Szeredia8277b92012-06-05 15:10:32 +02002697opened:
Al Viro2675a4e2012-06-22 12:41:10 +04002698 error = open_check_o_direct(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002699 if (error)
2700 goto exit_fput;
Al Viro2675a4e2012-06-22 12:41:10 +04002701 error = ima_file_check(file, op->acc_mode);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02002702 if (error)
2703 goto exit_fput;
2704
2705 if (will_truncate) {
Al Viro2675a4e2012-06-22 12:41:10 +04002706 error = handle_truncate(file);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02002707 if (error)
2708 goto exit_fput;
Al Viro0f9d1a12011-03-09 00:13:14 -05002709 }
Al Viroca344a892011-03-09 00:36:45 -05002710out:
2711 if (want_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002712 mnt_drop_write(nd->path.mnt);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002713 path_put(&save_parent);
Miklos Szeredie276ae62012-05-21 17:30:06 +02002714 terminate_walk(nd);
Al Viro2675a4e2012-06-22 12:41:10 +04002715 return error;
Al Virofb1cc552009-12-24 01:58:28 -05002716
Al Virofb1cc552009-12-24 01:58:28 -05002717exit_dput:
2718 path_put_conditional(path, nd);
Al Viroca344a892011-03-09 00:36:45 -05002719 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002720exit_fput:
Al Viro2675a4e2012-06-22 12:41:10 +04002721 fput(file);
2722 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002723
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002724stale_open:
2725 /* If no saved parent or already retried then can't retry */
2726 if (!save_parent.dentry || retried)
2727 goto out;
2728
2729 BUG_ON(save_parent.dentry != dir);
2730 path_put(&nd->path);
2731 nd->path = save_parent;
2732 nd->inode = dir->d_inode;
2733 save_parent.mnt = NULL;
2734 save_parent.dentry = NULL;
2735 if (want_write) {
2736 mnt_drop_write(nd->path.mnt);
2737 want_write = false;
2738 }
2739 retried = true;
2740 goto retry_lookup;
Al Virofb1cc552009-12-24 01:58:28 -05002741}
2742
Al Viro13aab422011-02-23 17:54:08 -05002743static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002744 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745{
Al Virofe2d35f2011-03-05 22:58:25 -05002746 struct file *base = NULL;
Al Viro30d90492012-06-22 12:40:19 +04002747 struct file *file;
Al Viro9850c052010-01-13 15:01:15 -05002748 struct path path;
Al Viro47237682012-06-10 05:01:45 -04002749 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05002750 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002751
Al Viro30d90492012-06-22 12:40:19 +04002752 file = get_empty_filp();
2753 if (!file)
Nick Piggin31e6b012011-01-07 17:49:52 +11002754 return ERR_PTR(-ENFILE);
2755
Al Viro30d90492012-06-22 12:40:19 +04002756 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11002757
Al Viro73d049a2011-03-11 12:08:24 -05002758 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002759 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04002760 goto out;
Nick Piggin31e6b012011-01-07 17:49:52 +11002761
Al Virofe2d35f2011-03-05 22:58:25 -05002762 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002763 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002764 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04002765 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
Al Viro2675a4e2012-06-22 12:41:10 +04002767 error = do_last(nd, &path, file, op, &opened, pathname);
2768 while (unlikely(error > 0)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002769 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05002770 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04002771 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05002772 path_put_conditional(&path, nd);
2773 path_put(&nd->path);
Al Viro2675a4e2012-06-22 12:41:10 +04002774 error = -ELOOP;
Al Viro40b39132011-03-09 16:22:18 -05002775 break;
2776 }
Al Viro73d049a2011-03-11 12:08:24 -05002777 nd->flags |= LOOKUP_PARENT;
2778 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04002779 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002780 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04002781 break;
2782 error = do_last(nd, &path, file, op, &opened, pathname);
Al Viro574197e2011-03-14 22:20:34 -04002783 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002784 }
Al Viro10fa8e62009-12-26 07:09:49 -05002785out:
Al Viro73d049a2011-03-11 12:08:24 -05002786 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2787 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002788 if (base)
2789 fput(base);
Al Viro2675a4e2012-06-22 12:41:10 +04002790 if (!(opened & FILE_OPENED)) {
2791 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04002792 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002793 }
Al Viro2675a4e2012-06-22 12:41:10 +04002794 if (unlikely(error)) {
2795 if (error == -EOPENSTALE) {
2796 if (flags & LOOKUP_RCU)
2797 error = -ECHILD;
2798 else
2799 error = -ESTALE;
2800 }
2801 file = ERR_PTR(error);
2802 }
2803 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804}
2805
Al Viro13aab422011-02-23 17:54:08 -05002806struct file *do_filp_open(int dfd, const char *pathname,
2807 const struct open_flags *op, int flags)
2808{
Al Viro73d049a2011-03-11 12:08:24 -05002809 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002810 struct file *filp;
2811
Al Viro73d049a2011-03-11 12:08:24 -05002812 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002813 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002814 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002815 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002816 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002817 return filp;
2818}
2819
Al Viro73d049a2011-03-11 12:08:24 -05002820struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2821 const char *name, const struct open_flags *op, int flags)
2822{
2823 struct nameidata nd;
2824 struct file *file;
2825
2826 nd.root.mnt = mnt;
2827 nd.root.dentry = dentry;
2828
2829 flags |= LOOKUP_ROOT;
2830
Al Virobcda7652011-03-13 16:42:14 -04002831 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002832 return ERR_PTR(-ELOOP);
2833
2834 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2835 if (unlikely(file == ERR_PTR(-ECHILD)))
2836 file = path_openat(-1, name, &nd, op, flags);
2837 if (unlikely(file == ERR_PTR(-ESTALE)))
2838 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2839 return file;
2840}
2841
Al Viroed75e952011-06-27 16:53:43 -04002842struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path, int is_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002844 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viroed75e952011-06-27 16:53:43 -04002845 struct nameidata nd;
2846 int error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd);
2847 if (error)
2848 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002850 /*
2851 * Yucky last component or no last component at all?
2852 * (foo/., foo/.., /////)
2853 */
Al Viroed75e952011-06-27 16:53:43 -04002854 if (nd.last_type != LAST_NORM)
2855 goto out;
2856 nd.flags &= ~LOOKUP_PARENT;
2857 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002858
2859 /*
2860 * Do the final lookup.
2861 */
Al Viroed75e952011-06-27 16:53:43 -04002862 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2863 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 if (IS_ERR(dentry))
2865 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002866
Al Viroe9baf6e2008-05-15 04:49:12 -04002867 if (dentry->d_inode)
2868 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002869 /*
2870 * Special case - lookup gave negative, but... we had foo/bar/
2871 * From the vfs_mknod() POV we just have a negative dentry -
2872 * all is fine. Let's be bastards - you had / on the end, you've
2873 * been asking for (non-existent) directory. -ENOENT for you.
2874 */
Al Viroed75e952011-06-27 16:53:43 -04002875 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
Al Viroe9baf6e2008-05-15 04:49:12 -04002876 dput(dentry);
2877 dentry = ERR_PTR(-ENOENT);
Al Viroed75e952011-06-27 16:53:43 -04002878 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04002879 }
Al Viroed75e952011-06-27 16:53:43 -04002880 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002882eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002884 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885fail:
Al Viroed75e952011-06-27 16:53:43 -04002886 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2887out:
2888 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 return dentry;
2890}
Al Virodae6ad82011-06-26 11:50:15 -04002891EXPORT_SYMBOL(kern_path_create);
2892
2893struct dentry *user_path_create(int dfd, const char __user *pathname, struct path *path, int is_dir)
2894{
2895 char *tmp = getname(pathname);
2896 struct dentry *res;
2897 if (IS_ERR(tmp))
2898 return ERR_CAST(tmp);
2899 res = kern_path_create(dfd, tmp, path, is_dir);
2900 putname(tmp);
2901 return res;
2902}
2903EXPORT_SYMBOL(user_path_create);
2904
Al Viro1a67aaf2011-07-26 01:52:52 -04002905int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002907 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
2909 if (error)
2910 return error;
2911
Eric W. Biederman975d6b32011-11-13 12:16:43 -08002912 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 return -EPERM;
2914
Al Viroacfa4382008-12-04 10:06:33 -05002915 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 return -EPERM;
2917
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002918 error = devcgroup_inode_mknod(mode, dev);
2919 if (error)
2920 return error;
2921
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 error = security_inode_mknod(dir, dentry, mode, dev);
2923 if (error)
2924 return error;
2925
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002927 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002928 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 return error;
2930}
2931
Al Virof69aac02011-07-26 04:31:40 -04002932static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08002933{
2934 switch (mode & S_IFMT) {
2935 case S_IFREG:
2936 case S_IFCHR:
2937 case S_IFBLK:
2938 case S_IFIFO:
2939 case S_IFSOCK:
2940 case 0: /* zero mode translates to S_IFREG */
2941 return 0;
2942 case S_IFDIR:
2943 return -EPERM;
2944 default:
2945 return -EINVAL;
2946 }
2947}
2948
Al Viro8208a222011-07-25 17:32:17 -04002949SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002950 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951{
Al Viro2ad94ae2008-07-21 09:32:51 -04002952 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04002953 struct path path;
2954 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
2956 if (S_ISDIR(mode))
2957 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
Al Virodae6ad82011-06-26 11:50:15 -04002959 dentry = user_path_create(dfd, filename, &path, 0);
2960 if (IS_ERR(dentry))
2961 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04002962
Al Virodae6ad82011-06-26 11:50:15 -04002963 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002964 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002965 error = may_mknod(mode);
2966 if (error)
2967 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002968 error = mnt_want_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002969 if (error)
2970 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04002971 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002972 if (error)
2973 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002974 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04002976 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 break;
2978 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04002979 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 new_decode_dev(dev));
2981 break;
2982 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04002983 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002984 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002986out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04002987 mnt_drop_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08002988out_dput:
2989 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04002990 mutex_unlock(&path.dentry->d_inode->i_mutex);
2991 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
2993 return error;
2994}
2995
Al Viro8208a222011-07-25 17:32:17 -04002996SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002997{
2998 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2999}
3000
Al Viro18bb1db2011-07-26 01:41:39 -04003001int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003003 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003004 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
3006 if (error)
3007 return error;
3008
Al Viroacfa4382008-12-04 10:06:33 -05003009 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 return -EPERM;
3011
3012 mode &= (S_IRWXUGO|S_ISVTX);
3013 error = security_inode_mkdir(dir, dentry, mode);
3014 if (error)
3015 return error;
3016
Al Viro8de52772012-02-06 12:45:27 -05003017 if (max_links && dir->i_nlink >= max_links)
3018 return -EMLINK;
3019
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003021 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003022 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 return error;
3024}
3025
Al Viroa218d0f2011-11-21 14:59:34 -05003026SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027{
Dave Hansen6902d922006-09-30 23:29:01 -07003028 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003029 struct path path;
3030 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031
Al Virodae6ad82011-06-26 11:50:15 -04003032 dentry = user_path_create(dfd, pathname, &path, 1);
Dave Hansen6902d922006-09-30 23:29:01 -07003033 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003034 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003035
Al Virodae6ad82011-06-26 11:50:15 -04003036 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003037 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003038 error = mnt_want_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08003039 if (error)
3040 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04003041 error = security_path_mkdir(&path, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003042 if (error)
3043 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04003044 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003045out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04003046 mnt_drop_write(path.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -08003047out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07003048 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04003049 mutex_unlock(&path.dentry->d_inode->i_mutex);
3050 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 return error;
3052}
3053
Al Viroa218d0f2011-11-21 14:59:34 -05003054SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003055{
3056 return sys_mkdirat(AT_FDCWD, pathname, mode);
3057}
3058
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059/*
Sage Weila71905f2011-05-24 13:06:08 -07003060 * The dentry_unhash() helper will try to drop the dentry early: we
J. Bruce Fieldsc0d02592012-02-15 11:48:40 -05003061 * should have a usage count of 1 if we're the only user of this
Sage Weila71905f2011-05-24 13:06:08 -07003062 * dentry, and if that is true (possibly after pruning the dcache),
3063 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 *
3065 * A low-level filesystem can, if it choses, legally
3066 * do a
3067 *
3068 * if (!d_unhashed(dentry))
3069 * return -EBUSY;
3070 *
3071 * if it cannot handle the case of removing a directory
3072 * that is still in use by something else..
3073 */
3074void dentry_unhash(struct dentry *dentry)
3075{
Vasily Averindc168422006-12-06 20:37:07 -08003076 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 spin_lock(&dentry->d_lock);
Sage Weil64252c72011-05-24 13:06:05 -07003078 if (dentry->d_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 __d_drop(dentry);
3080 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081}
3082
3083int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3084{
3085 int error = may_delete(dir, dentry, 1);
3086
3087 if (error)
3088 return error;
3089
Al Viroacfa4382008-12-04 10:06:33 -05003090 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 return -EPERM;
3092
Al Viro1d2ef592011-09-14 18:55:41 +01003093 dget(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003094 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
Sage Weil912dbc12011-05-24 13:06:11 -07003096 error = -EBUSY;
3097 if (d_mountpoint(dentry))
3098 goto out;
3099
3100 error = security_inode_rmdir(dir, dentry);
3101 if (error)
3102 goto out;
3103
Sage Weil3cebde22011-05-29 21:20:59 -07003104 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003105 error = dir->i_op->rmdir(dir, dentry);
3106 if (error)
3107 goto out;
3108
3109 dentry->d_inode->i_flags |= S_DEAD;
3110 dont_mount(dentry);
3111
3112out:
3113 mutex_unlock(&dentry->d_inode->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01003114 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003115 if (!error)
3116 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 return error;
3118}
3119
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003120static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121{
3122 int error = 0;
3123 char * name;
3124 struct dentry *dentry;
3125 struct nameidata nd;
3126
Al Viro2ad94ae2008-07-21 09:32:51 -04003127 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04003129 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
3131 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003132 case LAST_DOTDOT:
3133 error = -ENOTEMPTY;
3134 goto exit1;
3135 case LAST_DOT:
3136 error = -EINVAL;
3137 goto exit1;
3138 case LAST_ROOT:
3139 error = -EBUSY;
3140 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003142
3143 nd.flags &= ~LOOKUP_PARENT;
3144
Jan Blunck4ac91372008-02-14 19:34:32 -08003145 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08003146 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003148 if (IS_ERR(dentry))
3149 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003150 if (!dentry->d_inode) {
3151 error = -ENOENT;
3152 goto exit3;
3153 }
Dave Hansen06227532008-02-15 14:37:34 -08003154 error = mnt_want_write(nd.path.mnt);
3155 if (error)
3156 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003157 error = security_path_rmdir(&nd.path, dentry);
3158 if (error)
3159 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08003160 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003161exit4:
Dave Hansen06227532008-02-15 14:37:34 -08003162 mnt_drop_write(nd.path.mnt);
3163exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003164 dput(dentry);
3165exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08003166 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003168 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 putname(name);
3170 return error;
3171}
3172
Heiko Carstens3cdad422009-01-14 14:14:22 +01003173SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003174{
3175 return do_rmdir(AT_FDCWD, pathname);
3176}
3177
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178int vfs_unlink(struct inode *dir, struct dentry *dentry)
3179{
3180 int error = may_delete(dir, dentry, 0);
3181
3182 if (error)
3183 return error;
3184
Al Viroacfa4382008-12-04 10:06:33 -05003185 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 return -EPERM;
3187
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003188 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 if (d_mountpoint(dentry))
3190 error = -EBUSY;
3191 else {
3192 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003193 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003195 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04003196 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05003197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003199 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200
3201 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3202 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08003203 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003205 }
Robert Love0eeca282005-07-12 17:06:03 -04003206
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 return error;
3208}
3209
3210/*
3211 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003212 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213 * writeout happening, and we don't want to prevent access to the directory
3214 * while waiting on the I/O.
3215 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003216static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217{
Al Viro2ad94ae2008-07-21 09:32:51 -04003218 int error;
3219 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 struct dentry *dentry;
3221 struct nameidata nd;
3222 struct inode *inode = NULL;
3223
Al Viro2ad94ae2008-07-21 09:32:51 -04003224 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04003226 return error;
3227
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 error = -EISDIR;
3229 if (nd.last_type != LAST_NORM)
3230 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003231
3232 nd.flags &= ~LOOKUP_PARENT;
3233
Jan Blunck4ac91372008-02-14 19:34:32 -08003234 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08003235 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 error = PTR_ERR(dentry);
3237 if (!IS_ERR(dentry)) {
3238 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03003239 if (nd.last.name[nd.last.len])
3240 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 inode = dentry->d_inode;
Török Edwin50338b82011-06-16 00:06:14 +03003242 if (!inode)
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003243 goto slashes;
3244 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08003245 error = mnt_want_write(nd.path.mnt);
3246 if (error)
3247 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003248 error = security_path_unlink(&nd.path, dentry);
3249 if (error)
3250 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08003251 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003252exit3:
Dave Hansen06227532008-02-15 14:37:34 -08003253 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254 exit2:
3255 dput(dentry);
3256 }
Jan Blunck4ac91372008-02-14 19:34:32 -08003257 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 if (inode)
3259 iput(inode); /* truncate the inode here */
3260exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003261 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 putname(name);
3263 return error;
3264
3265slashes:
3266 error = !dentry->d_inode ? -ENOENT :
3267 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
3268 goto exit2;
3269}
3270
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003271SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003272{
3273 if ((flag & ~AT_REMOVEDIR) != 0)
3274 return -EINVAL;
3275
3276 if (flag & AT_REMOVEDIR)
3277 return do_rmdir(dfd, pathname);
3278
3279 return do_unlinkat(dfd, pathname);
3280}
3281
Heiko Carstens3480b252009-01-14 14:14:16 +01003282SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003283{
3284 return do_unlinkat(AT_FDCWD, pathname);
3285}
3286
Miklos Szeredidb2e7472008-06-24 16:50:16 +02003287int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003289 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290
3291 if (error)
3292 return error;
3293
Al Viroacfa4382008-12-04 10:06:33 -05003294 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295 return -EPERM;
3296
3297 error = security_inode_symlink(dir, dentry, oldname);
3298 if (error)
3299 return error;
3300
Linus Torvalds1da177e2005-04-16 15:20:36 -07003301 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003302 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003303 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304 return error;
3305}
3306
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003307SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3308 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309{
Al Viro2ad94ae2008-07-21 09:32:51 -04003310 int error;
3311 char *from;
Dave Hansen6902d922006-09-30 23:29:01 -07003312 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003313 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314
3315 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04003316 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003318
Al Virodae6ad82011-06-26 11:50:15 -04003319 dentry = user_path_create(newdfd, newname, &path, 0);
Dave Hansen6902d922006-09-30 23:29:01 -07003320 error = PTR_ERR(dentry);
3321 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003322 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07003323
Al Virodae6ad82011-06-26 11:50:15 -04003324 error = mnt_want_write(path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08003325 if (error)
3326 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04003327 error = security_path_symlink(&path, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003328 if (error)
3329 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04003330 error = vfs_symlink(path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003331out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04003332 mnt_drop_write(path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08003333out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07003334 dput(dentry);
Al Virodae6ad82011-06-26 11:50:15 -04003335 mutex_unlock(&path.dentry->d_inode->i_mutex);
3336 path_put(&path);
Dave Hansen6902d922006-09-30 23:29:01 -07003337out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 putname(from);
3339 return error;
3340}
3341
Heiko Carstens3480b252009-01-14 14:14:16 +01003342SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003343{
3344 return sys_symlinkat(oldname, AT_FDCWD, newname);
3345}
3346
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
3348{
3349 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05003350 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 int error;
3352
3353 if (!inode)
3354 return -ENOENT;
3355
Miklos Szeredia95164d2008-07-30 15:08:48 +02003356 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 if (error)
3358 return error;
3359
3360 if (dir->i_sb != inode->i_sb)
3361 return -EXDEV;
3362
3363 /*
3364 * A link to an append-only or immutable file cannot be created.
3365 */
3366 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3367 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05003368 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003370 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 return -EPERM;
3372
3373 error = security_inode_link(old_dentry, dir, new_dentry);
3374 if (error)
3375 return error;
3376
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003377 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303378 /* Make sure we don't allow creating hardlink to an unlinked file */
3379 if (inode->i_nlink == 0)
3380 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05003381 else if (max_links && inode->i_nlink >= max_links)
3382 error = -EMLINK;
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303383 else
3384 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003385 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003386 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003387 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 return error;
3389}
3390
3391/*
3392 * Hardlinks are often used in delicate situations. We avoid
3393 * security-related surprises by not following symlinks on the
3394 * newname. --KAB
3395 *
3396 * We don't follow them on the oldname either to be compatible
3397 * with linux 2.0, and to avoid hard-linking to directories
3398 * and other special files. --ADM
3399 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003400SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
3401 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402{
3403 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003404 struct path old_path, new_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303405 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303408 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003409 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303410 /*
3411 * To use null names we require CAP_DAC_READ_SEARCH
3412 * This ensures that not everyone will be able to create
3413 * handlink using the passed filedescriptor.
3414 */
3415 if (flags & AT_EMPTY_PATH) {
3416 if (!capable(CAP_DAC_READ_SEARCH))
3417 return -ENOENT;
3418 how = LOOKUP_EMPTY;
3419 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003420
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303421 if (flags & AT_SYMLINK_FOLLOW)
3422 how |= LOOKUP_FOLLOW;
3423
3424 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04003426 return error;
3427
Al Virodae6ad82011-06-26 11:50:15 -04003428 new_dentry = user_path_create(newdfd, newname, &new_path, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003430 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003431 goto out;
3432
3433 error = -EXDEV;
3434 if (old_path.mnt != new_path.mnt)
3435 goto out_dput;
3436 error = mnt_want_write(new_path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08003437 if (error)
3438 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04003439 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003440 if (error)
3441 goto out_drop_write;
Al Virodae6ad82011-06-26 11:50:15 -04003442 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003443out_drop_write:
Al Virodae6ad82011-06-26 11:50:15 -04003444 mnt_drop_write(new_path.mnt);
Dave Hansen75c3f292008-02-15 14:37:45 -08003445out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07003446 dput(new_dentry);
Al Virodae6ad82011-06-26 11:50:15 -04003447 mutex_unlock(&new_path.dentry->d_inode->i_mutex);
3448 path_put(&new_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449out:
Al Viro2d8f3032008-07-22 09:59:21 -04003450 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451
3452 return error;
3453}
3454
Heiko Carstens3480b252009-01-14 14:14:16 +01003455SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003456{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003457 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003458}
3459
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460/*
3461 * The worst of all namespace operations - renaming directory. "Perverted"
3462 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3463 * Problems:
3464 * a) we can get into loop creation. Check is done in is_subdir().
3465 * b) race potential - two innocent renames can create a loop together.
3466 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003467 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 * story.
3469 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003470 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 * whether the target exists). Solution: try to be smart with locking
3472 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003473 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 * move will be locked. Thus we can rank directories by the tree
3475 * (ancestors first) and rank all non-directories after them.
3476 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003477 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 * HOWEVER, it relies on the assumption that any object with ->lookup()
3479 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3480 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07003481 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003482 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003484 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 * locking].
3486 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07003487static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3488 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489{
3490 int error = 0;
Sage Weil9055cba2011-05-24 13:06:12 -07003491 struct inode *target = new_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05003492 unsigned max_links = new_dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493
3494 /*
3495 * If we are going to change the parent - check write permissions,
3496 * we'll need to flip '..'.
3497 */
3498 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04003499 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 if (error)
3501 return error;
3502 }
3503
3504 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3505 if (error)
3506 return error;
3507
Al Viro1d2ef592011-09-14 18:55:41 +01003508 dget(new_dentry);
Al Virod83c49f2010-04-30 17:17:09 -04003509 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003510 mutex_lock(&target->i_mutex);
Sage Weil9055cba2011-05-24 13:06:12 -07003511
3512 error = -EBUSY;
3513 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3514 goto out;
3515
Al Viro8de52772012-02-06 12:45:27 -05003516 error = -EMLINK;
3517 if (max_links && !target && new_dir != old_dir &&
3518 new_dir->i_nlink >= max_links)
3519 goto out;
3520
Sage Weil3cebde22011-05-29 21:20:59 -07003521 if (target)
3522 shrink_dcache_parent(new_dentry);
Sage Weil9055cba2011-05-24 13:06:12 -07003523 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3524 if (error)
3525 goto out;
3526
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 if (target) {
Sage Weil9055cba2011-05-24 13:06:12 -07003528 target->i_flags |= S_DEAD;
3529 dont_mount(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 }
Sage Weil9055cba2011-05-24 13:06:12 -07003531out:
3532 if (target)
3533 mutex_unlock(&target->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01003534 dput(new_dentry);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003535 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003536 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3537 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 return error;
3539}
3540
Adrian Bunk75c96f82005-05-05 16:16:09 -07003541static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3542 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543{
Sage Weil51892bb2011-05-24 13:06:13 -07003544 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 int error;
3546
3547 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3548 if (error)
3549 return error;
3550
3551 dget(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003553 mutex_lock(&target->i_mutex);
Sage Weil51892bb2011-05-24 13:06:13 -07003554
3555 error = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
Sage Weil51892bb2011-05-24 13:06:13 -07003557 goto out;
3558
3559 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3560 if (error)
3561 goto out;
3562
3563 if (target)
3564 dont_mount(new_dentry);
3565 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3566 d_move(old_dentry, new_dentry);
3567out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003569 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 dput(new_dentry);
3571 return error;
3572}
3573
3574int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3575 struct inode *new_dir, struct dentry *new_dentry)
3576{
3577 int error;
3578 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003579 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580
3581 if (old_dentry->d_inode == new_dentry->d_inode)
3582 return 0;
3583
3584 error = may_delete(old_dir, old_dentry, is_dir);
3585 if (error)
3586 return error;
3587
3588 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003589 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 else
3591 error = may_delete(new_dir, new_dentry, is_dir);
3592 if (error)
3593 return error;
3594
Al Viroacfa4382008-12-04 10:06:33 -05003595 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 return -EPERM;
3597
Robert Love0eeca282005-07-12 17:06:03 -04003598 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3599
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 if (is_dir)
3601 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3602 else
3603 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003604 if (!error)
3605 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003606 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003607 fsnotify_oldname_free(old_name);
3608
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 return error;
3610}
3611
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003612SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3613 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614{
Al Viro2ad94ae2008-07-21 09:32:51 -04003615 struct dentry *old_dir, *new_dir;
3616 struct dentry *old_dentry, *new_dentry;
3617 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003619 char *from;
3620 char *to;
3621 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622
Al Viro2ad94ae2008-07-21 09:32:51 -04003623 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 if (error)
3625 goto exit;
3626
Al Viro2ad94ae2008-07-21 09:32:51 -04003627 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 if (error)
3629 goto exit1;
3630
3631 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003632 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 goto exit2;
3634
Jan Blunck4ac91372008-02-14 19:34:32 -08003635 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 error = -EBUSY;
3637 if (oldnd.last_type != LAST_NORM)
3638 goto exit2;
3639
Jan Blunck4ac91372008-02-14 19:34:32 -08003640 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 if (newnd.last_type != LAST_NORM)
3642 goto exit2;
3643
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003644 oldnd.flags &= ~LOOKUP_PARENT;
3645 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003646 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003647
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 trap = lock_rename(new_dir, old_dir);
3649
Christoph Hellwig49705b72005-11-08 21:35:06 -08003650 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 error = PTR_ERR(old_dentry);
3652 if (IS_ERR(old_dentry))
3653 goto exit3;
3654 /* source must exist */
3655 error = -ENOENT;
3656 if (!old_dentry->d_inode)
3657 goto exit4;
3658 /* unless the source is a directory trailing slashes give -ENOTDIR */
3659 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3660 error = -ENOTDIR;
3661 if (oldnd.last.name[oldnd.last.len])
3662 goto exit4;
3663 if (newnd.last.name[newnd.last.len])
3664 goto exit4;
3665 }
3666 /* source should not be ancestor of target */
3667 error = -EINVAL;
3668 if (old_dentry == trap)
3669 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003670 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 error = PTR_ERR(new_dentry);
3672 if (IS_ERR(new_dentry))
3673 goto exit4;
3674 /* target should not be an ancestor of source */
3675 error = -ENOTEMPTY;
3676 if (new_dentry == trap)
3677 goto exit5;
3678
Dave Hansen9079b1e2008-02-15 14:37:49 -08003679 error = mnt_want_write(oldnd.path.mnt);
3680 if (error)
3681 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003682 error = security_path_rename(&oldnd.path, old_dentry,
3683 &newnd.path, new_dentry);
3684 if (error)
3685 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 error = vfs_rename(old_dir->d_inode, old_dentry,
3687 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003688exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003689 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690exit5:
3691 dput(new_dentry);
3692exit4:
3693 dput(old_dentry);
3694exit3:
3695 unlock_rename(new_dir, old_dir);
3696exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003697 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003698 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003700 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003702exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 return error;
3704}
3705
Heiko Carstensa26eab22009-01-14 14:14:17 +01003706SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003707{
3708 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3709}
3710
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3712{
3713 int len;
3714
3715 len = PTR_ERR(link);
3716 if (IS_ERR(link))
3717 goto out;
3718
3719 len = strlen(link);
3720 if (len > (unsigned) buflen)
3721 len = buflen;
3722 if (copy_to_user(buffer, link, len))
3723 len = -EFAULT;
3724out:
3725 return len;
3726}
3727
3728/*
3729 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3730 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3731 * using) it for any given inode is up to filesystem.
3732 */
3733int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3734{
3735 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003736 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003737 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003738
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003740 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003741 if (IS_ERR(cookie))
3742 return PTR_ERR(cookie);
3743
3744 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3745 if (dentry->d_inode->i_op->put_link)
3746 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3747 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748}
3749
3750int vfs_follow_link(struct nameidata *nd, const char *link)
3751{
3752 return __vfs_follow_link(nd, link);
3753}
3754
3755/* get the link contents into pagecache */
3756static char *page_getlink(struct dentry * dentry, struct page **ppage)
3757{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003758 char *kaddr;
3759 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003761 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003763 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003765 kaddr = kmap(page);
3766 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3767 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768}
3769
3770int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3771{
3772 struct page *page = NULL;
3773 char *s = page_getlink(dentry, &page);
3774 int res = vfs_readlink(dentry,buffer,buflen,s);
3775 if (page) {
3776 kunmap(page);
3777 page_cache_release(page);
3778 }
3779 return res;
3780}
3781
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003782void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003784 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003786 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787}
3788
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003789void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003791 struct page *page = cookie;
3792
3793 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 kunmap(page);
3795 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 }
3797}
3798
Nick Piggin54566b22009-01-04 12:00:53 -08003799/*
3800 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3801 */
3802int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803{
3804 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003805 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003806 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003807 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003809 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3810 if (nofs)
3811 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812
NeilBrown7e53cac2006-03-25 03:07:57 -08003813retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003814 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003815 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003817 goto fail;
3818
Cong Wange8e3c3d2011-11-25 23:14:27 +08003819 kaddr = kmap_atomic(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 memcpy(kaddr, symname, len-1);
Cong Wange8e3c3d2011-11-25 23:14:27 +08003821 kunmap_atomic(kaddr);
Nick Pigginafddba42007-10-16 01:25:01 -07003822
3823 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3824 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 if (err < 0)
3826 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003827 if (err < len-1)
3828 goto retry;
3829
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 mark_inode_dirty(inode);
3831 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832fail:
3833 return err;
3834}
3835
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003836int page_symlink(struct inode *inode, const char *symname, int len)
3837{
3838 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003839 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003840}
3841
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003842const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 .readlink = generic_readlink,
3844 .follow_link = page_follow_link_light,
3845 .put_link = page_put_link,
3846};
3847
Al Viro2d8f3032008-07-22 09:59:21 -04003848EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003849EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850EXPORT_SYMBOL(follow_down);
3851EXPORT_SYMBOL(follow_up);
3852EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3853EXPORT_SYMBOL(getname);
3854EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855EXPORT_SYMBOL(lookup_one_len);
3856EXPORT_SYMBOL(page_follow_link_light);
3857EXPORT_SYMBOL(page_put_link);
3858EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003859EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860EXPORT_SYMBOL(page_symlink);
3861EXPORT_SYMBOL(page_symlink_inode_operations);
Al Virod1811462008-08-02 00:49:18 -04003862EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003863EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003864EXPORT_SYMBOL(inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865EXPORT_SYMBOL(unlock_rename);
3866EXPORT_SYMBOL(vfs_create);
3867EXPORT_SYMBOL(vfs_follow_link);
3868EXPORT_SYMBOL(vfs_link);
3869EXPORT_SYMBOL(vfs_mkdir);
3870EXPORT_SYMBOL(vfs_mknod);
3871EXPORT_SYMBOL(generic_permission);
3872EXPORT_SYMBOL(vfs_readlink);
3873EXPORT_SYMBOL(vfs_rename);
3874EXPORT_SYMBOL(vfs_rmdir);
3875EXPORT_SYMBOL(vfs_symlink);
3876EXPORT_SYMBOL(vfs_unlink);
3877EXPORT_SYMBOL(dentry_unhash);
3878EXPORT_SYMBOL(generic_readlink);