blob: ca14d8432d3dd9288f64f7a40fd048c39bb1dd33 [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
Randy Dunlap55852632012-08-18 17:39:25 -0700355 * @inode: Inode to check permission on
David Howells0bdaea92012-06-25 12:55:46 +0100356 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
357 *
358 * Separate out file-system wide checks from inode-specific permission checks.
359 */
360static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
361{
362 if (unlikely(mask & MAY_WRITE)) {
363 umode_t mode = inode->i_mode;
364
365 /* Nobody gets write access to a read-only fs. */
366 if ((sb->s_flags & MS_RDONLY) &&
367 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
368 return -EROFS;
369 }
370 return 0;
371}
372
373/**
374 * inode_permission - Check for access rights to a given inode
375 * @inode: Inode to check permission on
376 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
377 *
378 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
379 * this, letting us set arbitrary permissions for filesystem access without
380 * changing the "normal" UIDs which are used for other things.
381 *
382 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
383 */
384int inode_permission(struct inode *inode, int mask)
385{
386 int retval;
387
388 retval = sb_permission(inode->i_sb, inode, mask);
389 if (retval)
390 return retval;
391 return __inode_permission(inode, mask);
392}
393
394/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800395 * path_get - get a reference to a path
396 * @path: path to get the reference to
397 *
398 * Given a path increment the reference count to the dentry and the vfsmount.
399 */
400void path_get(struct path *path)
401{
402 mntget(path->mnt);
403 dget(path->dentry);
404}
405EXPORT_SYMBOL(path_get);
406
407/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800408 * path_put - put a reference to a path
409 * @path: path to put the reference to
410 *
411 * Given a path decrement the reference count to the dentry and the vfsmount.
412 */
413void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Jan Blunck1d957f92008-02-14 19:34:35 -0800415 dput(path->dentry);
416 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
Jan Blunck1d957f92008-02-14 19:34:35 -0800418EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Al Viro19660af2011-03-25 10:32:48 -0400420/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100421 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400422 * Documentation/filesystems/path-lookup.txt). In situations when we can't
423 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
424 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
425 * mode. Refcounts are grabbed at the last known good point before rcu-walk
426 * got stuck, so ref-walk may continue from there. If this is not successful
427 * (eg. a seqcount has changed), then failure is returned and it's up to caller
428 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100429 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100430
Al Viro32a79912012-07-18 20:43:19 +0400431static inline void lock_rcu_walk(void)
432{
433 br_read_lock(&vfsmount_lock);
434 rcu_read_lock();
435}
436
437static inline void unlock_rcu_walk(void)
438{
439 rcu_read_unlock();
440 br_read_unlock(&vfsmount_lock);
441}
442
Nick Piggin31e6b012011-01-07 17:49:52 +1100443/**
Al Viro19660af2011-03-25 10:32:48 -0400444 * unlazy_walk - try to switch to ref-walk mode.
445 * @nd: nameidata pathwalk data
446 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800447 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100448 *
Al Viro19660af2011-03-25 10:32:48 -0400449 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
450 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
451 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100452 */
Al Viro19660af2011-03-25 10:32:48 -0400453static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100454{
455 struct fs_struct *fs = current->fs;
456 struct dentry *parent = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500457 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100458
459 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500460 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
461 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100462 spin_lock(&fs->lock);
463 if (nd->root.mnt != fs->root.mnt ||
464 nd->root.dentry != fs->root.dentry)
465 goto err_root;
466 }
467 spin_lock(&parent->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400468 if (!dentry) {
469 if (!__d_rcu_to_refcount(parent, nd->seq))
470 goto err_parent;
471 BUG_ON(nd->inode != parent->d_inode);
472 } else {
Al Viro94c0d4e2011-07-12 21:40:23 -0400473 if (dentry->d_parent != parent)
474 goto err_parent;
Al Viro19660af2011-03-25 10:32:48 -0400475 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
476 if (!__d_rcu_to_refcount(dentry, nd->seq))
477 goto err_child;
478 /*
479 * If the sequence check on the child dentry passed, then
480 * the child has not been removed from its parent. This
481 * means the parent dentry must be valid and able to take
482 * a reference at this point.
483 */
484 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
485 BUG_ON(!parent->d_count);
486 parent->d_count++;
487 spin_unlock(&dentry->d_lock);
488 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100489 spin_unlock(&parent->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500490 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100491 path_get(&nd->root);
492 spin_unlock(&fs->lock);
493 }
494 mntget(nd->path.mnt);
495
Al Viro32a79912012-07-18 20:43:19 +0400496 unlock_rcu_walk();
Nick Piggin31e6b012011-01-07 17:49:52 +1100497 nd->flags &= ~LOOKUP_RCU;
498 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400499
500err_child:
Nick Piggin31e6b012011-01-07 17:49:52 +1100501 spin_unlock(&dentry->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400502err_parent:
Nick Piggin31e6b012011-01-07 17:49:52 +1100503 spin_unlock(&parent->d_lock);
504err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500505 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100506 spin_unlock(&fs->lock);
507 return -ECHILD;
508}
509
Al Viro4ce16ef32012-06-10 16:10:59 -0400510static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
Nick Piggin34286d62011-01-07 17:49:57 +1100511{
Al Viro4ce16ef32012-06-10 16:10:59 -0400512 return dentry->d_op->d_revalidate(dentry, flags);
Nick Piggin34286d62011-01-07 17:49:57 +1100513}
514
Al Viro9f1fafe2011-03-25 11:00:12 -0400515/**
516 * complete_walk - successful completion of path walk
517 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500518 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400519 * If we had been in RCU mode, drop out of it and legitimize nd->path.
520 * Revalidate the final result, unless we'd already done that during
521 * the path walk or the filesystem doesn't ask for it. Return 0 on
522 * success, -error on failure. In case of failure caller does not
523 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500524 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400525static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500526{
Al Viro16c2cd72011-02-22 15:50:10 -0500527 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500528 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500529
Al Viro9f1fafe2011-03-25 11:00:12 -0400530 if (nd->flags & LOOKUP_RCU) {
531 nd->flags &= ~LOOKUP_RCU;
532 if (!(nd->flags & LOOKUP_ROOT))
533 nd->root.mnt = NULL;
534 spin_lock(&dentry->d_lock);
535 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
536 spin_unlock(&dentry->d_lock);
Al Viro32a79912012-07-18 20:43:19 +0400537 unlock_rcu_walk();
Al Viro9f1fafe2011-03-25 11:00:12 -0400538 return -ECHILD;
539 }
540 BUG_ON(nd->inode != dentry->d_inode);
541 spin_unlock(&dentry->d_lock);
542 mntget(nd->path.mnt);
Al Viro32a79912012-07-18 20:43:19 +0400543 unlock_rcu_walk();
Al Viro9f1fafe2011-03-25 11:00:12 -0400544 }
545
Al Viro16c2cd72011-02-22 15:50:10 -0500546 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500547 return 0;
548
Al Viro16c2cd72011-02-22 15:50:10 -0500549 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
550 return 0;
551
552 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
553 return 0;
554
555 /* Note: we do not d_invalidate() */
Al Viro4ce16ef32012-06-10 16:10:59 -0400556 status = d_revalidate(dentry, nd->flags);
Jeff Layton39159de2009-12-07 12:01:50 -0500557 if (status > 0)
558 return 0;
559
Al Viro16c2cd72011-02-22 15:50:10 -0500560 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500561 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500562
Al Viro9f1fafe2011-03-25 11:00:12 -0400563 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500564 return status;
565}
566
Al Viro2a737872009-04-07 11:49:53 -0400567static __always_inline void set_root(struct nameidata *nd)
568{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200569 if (!nd->root.mnt)
570 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400571}
572
Al Viro6de88d72009-08-09 01:41:57 +0400573static int link_path_walk(const char *, struct nameidata *);
574
Nick Piggin31e6b012011-01-07 17:49:52 +1100575static __always_inline void set_root_rcu(struct nameidata *nd)
576{
577 if (!nd->root.mnt) {
578 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100579 unsigned seq;
580
581 do {
582 seq = read_seqcount_begin(&fs->seq);
583 nd->root = fs->root;
Tim Chenc1530012011-04-15 11:39:29 -0700584 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
Nick Pigginc28cc362011-01-07 17:49:53 +1100585 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100586 }
587}
588
Arjan van de Venf1662352006-01-14 13:21:31 -0800589static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Nick Piggin31e6b012011-01-07 17:49:52 +1100591 int ret;
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 if (IS_ERR(link))
594 goto fail;
595
596 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400597 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800598 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400599 nd->path = nd->root;
600 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500601 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100603 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100604
Nick Piggin31e6b012011-01-07 17:49:52 +1100605 ret = link_path_walk(link, nd);
606 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800608 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 return PTR_ERR(link);
610}
611
Jan Blunck1d957f92008-02-14 19:34:35 -0800612static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700613{
614 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800615 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700616 mntput(path->mnt);
617}
618
Nick Piggin7b9337a2011-01-14 08:42:43 +0000619static inline void path_to_nameidata(const struct path *path,
620 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700621{
Nick Piggin31e6b012011-01-07 17:49:52 +1100622 if (!(nd->flags & LOOKUP_RCU)) {
623 dput(nd->path.dentry);
624 if (nd->path.mnt != path->mnt)
625 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800626 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100627 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800628 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700629}
630
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400631/*
632 * Helper to directly jump to a known parsed path from ->follow_link,
633 * caller must have taken a reference to path beforehand.
634 */
635void nd_jump_link(struct nameidata *nd, struct path *path)
636{
637 path_put(&nd->path);
638
639 nd->path = *path;
640 nd->inode = nd->path.dentry->d_inode;
641 nd->flags |= LOOKUP_JUMPED;
642
643 BUG_ON(nd->inode->i_op->follow_link);
644}
645
Al Viro574197e2011-03-14 22:20:34 -0400646static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
647{
648 struct inode *inode = link->dentry->d_inode;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400649 if (inode->i_op->put_link)
Al Viro574197e2011-03-14 22:20:34 -0400650 inode->i_op->put_link(link->dentry, nd, cookie);
651 path_put(link);
652}
653
Kees Cook800179c2012-07-25 17:29:07 -0700654int sysctl_protected_symlinks __read_mostly = 1;
655int sysctl_protected_hardlinks __read_mostly = 1;
656
657/**
658 * may_follow_link - Check symlink following for unsafe situations
659 * @link: The path of the symlink
Randy Dunlap55852632012-08-18 17:39:25 -0700660 * @nd: nameidata pathwalk data
Kees Cook800179c2012-07-25 17:29:07 -0700661 *
662 * In the case of the sysctl_protected_symlinks sysctl being enabled,
663 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
664 * in a sticky world-writable directory. This is to protect privileged
665 * processes from failing races against path names that may change out
666 * from under them by way of other users creating malicious symlinks.
667 * It will permit symlinks to be followed only when outside a sticky
668 * world-writable directory, or when the uid of the symlink and follower
669 * match, or when the directory owner matches the symlink's owner.
670 *
671 * Returns 0 if following the symlink is allowed, -ve on error.
672 */
673static inline int may_follow_link(struct path *link, struct nameidata *nd)
674{
675 const struct inode *inode;
676 const struct inode *parent;
677
678 if (!sysctl_protected_symlinks)
679 return 0;
680
681 /* Allowed if owner and follower match. */
682 inode = link->dentry->d_inode;
Eric W. Biederman81abe272012-08-03 09:38:08 -0700683 if (uid_eq(current_cred()->fsuid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700684 return 0;
685
686 /* Allowed if parent directory not sticky and world-writable. */
687 parent = nd->path.dentry->d_inode;
688 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
689 return 0;
690
691 /* Allowed if parent directory and link owner match. */
Eric W. Biederman81abe272012-08-03 09:38:08 -0700692 if (uid_eq(parent->i_uid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700693 return 0;
694
Sasha Levinffd8d102012-10-04 19:56:40 -0400695 audit_log_link_denied("follow_link", link);
Kees Cook800179c2012-07-25 17:29:07 -0700696 path_put_conditional(link, nd);
697 path_put(&nd->path);
698 return -EACCES;
699}
700
701/**
702 * safe_hardlink_source - Check for safe hardlink conditions
703 * @inode: the source inode to hardlink from
704 *
705 * Return false if at least one of the following conditions:
706 * - inode is not a regular file
707 * - inode is setuid
708 * - inode is setgid and group-exec
709 * - access failure for read and write
710 *
711 * Otherwise returns true.
712 */
713static bool safe_hardlink_source(struct inode *inode)
714{
715 umode_t mode = inode->i_mode;
716
717 /* Special files should not get pinned to the filesystem. */
718 if (!S_ISREG(mode))
719 return false;
720
721 /* Setuid files should not get pinned to the filesystem. */
722 if (mode & S_ISUID)
723 return false;
724
725 /* Executable setgid files should not get pinned to the filesystem. */
726 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
727 return false;
728
729 /* Hardlinking to unreadable or unwritable sources is dangerous. */
730 if (inode_permission(inode, MAY_READ | MAY_WRITE))
731 return false;
732
733 return true;
734}
735
736/**
737 * may_linkat - Check permissions for creating a hardlink
738 * @link: the source to hardlink from
739 *
740 * Block hardlink when all of:
741 * - sysctl_protected_hardlinks enabled
742 * - fsuid does not match inode
743 * - hardlink source is unsafe (see safe_hardlink_source() above)
744 * - not CAP_FOWNER
745 *
746 * Returns 0 if successful, -ve on error.
747 */
748static int may_linkat(struct path *link)
749{
750 const struct cred *cred;
751 struct inode *inode;
752
753 if (!sysctl_protected_hardlinks)
754 return 0;
755
756 cred = current_cred();
757 inode = link->dentry->d_inode;
758
759 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
760 * otherwise, it must be a safe source.
761 */
Eric W. Biederman81abe272012-08-03 09:38:08 -0700762 if (uid_eq(cred->fsuid, inode->i_uid) || safe_hardlink_source(inode) ||
Kees Cook800179c2012-07-25 17:29:07 -0700763 capable(CAP_FOWNER))
764 return 0;
765
Kees Cooka51d9ea2012-07-25 17:29:08 -0700766 audit_log_link_denied("linkat", link);
Kees Cook800179c2012-07-25 17:29:07 -0700767 return -EPERM;
768}
769
Al Virodef4af32009-12-26 08:37:05 -0500770static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400771follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800772{
Nick Piggin7b9337a2011-01-14 08:42:43 +0000773 struct dentry *dentry = link->dentry;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400774 int error;
775 char *s;
Ian Kent051d3812006-03-27 01:14:53 -0800776
Al Viro844a3912011-02-15 00:38:26 -0500777 BUG_ON(nd->flags & LOOKUP_RCU);
778
Al Viro0e794582011-03-16 02:45:02 -0400779 if (link->mnt == nd->path.mnt)
780 mntget(link->mnt);
781
Al Viro6d7b5aa2012-06-10 04:15:17 -0400782 error = -ELOOP;
783 if (unlikely(current->total_link_count >= 40))
784 goto out_put_nd_path;
785
Al Viro574197e2011-03-14 22:20:34 -0400786 cond_resched();
787 current->total_link_count++;
788
Al Viro68ac1232012-03-15 08:21:57 -0400789 touch_atime(link);
Ian Kent051d3812006-03-27 01:14:53 -0800790 nd_set_link(nd, NULL);
791
Al Viro36f3b4f2011-02-22 21:24:38 -0500792 error = security_inode_follow_link(link->dentry, nd);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400793 if (error)
794 goto out_put_nd_path;
Al Viro36f3b4f2011-02-22 21:24:38 -0500795
Al Viro86acdca12009-12-22 23:45:11 -0500796 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500797 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
798 error = PTR_ERR(*p);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400799 if (IS_ERR(*p))
Christoph Hellwig408ef012012-06-18 10:47:03 -0400800 goto out_put_nd_path;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400801
802 error = 0;
803 s = nd_get_link(nd);
804 if (s) {
805 error = __vfs_follow_link(nd, s);
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400806 if (unlikely(error))
807 put_link(nd, link, *p);
Ian Kent051d3812006-03-27 01:14:53 -0800808 }
Al Viro6d7b5aa2012-06-10 04:15:17 -0400809
810 return error;
811
812out_put_nd_path:
Arnd Bergmann98f6ef62012-10-11 13:20:00 +0000813 *p = NULL;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400814 path_put(&nd->path);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400815 path_put(link);
Ian Kent051d3812006-03-27 01:14:53 -0800816 return error;
817}
818
Nick Piggin31e6b012011-01-07 17:49:52 +1100819static int follow_up_rcu(struct path *path)
820{
Al Viro0714a532011-11-24 22:19:58 -0500821 struct mount *mnt = real_mount(path->mnt);
822 struct mount *parent;
Nick Piggin31e6b012011-01-07 17:49:52 +1100823 struct dentry *mountpoint;
824
Al Viro0714a532011-11-24 22:19:58 -0500825 parent = mnt->mnt_parent;
826 if (&parent->mnt == path->mnt)
Nick Piggin31e6b012011-01-07 17:49:52 +1100827 return 0;
Al Viroa73324d2011-11-24 22:25:07 -0500828 mountpoint = mnt->mnt_mountpoint;
Nick Piggin31e6b012011-01-07 17:49:52 +1100829 path->dentry = mountpoint;
Al Viro0714a532011-11-24 22:19:58 -0500830 path->mnt = &parent->mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +1100831 return 1;
832}
833
David Howellsf015f1262012-06-25 12:55:28 +0100834/*
835 * follow_up - Find the mountpoint of path's vfsmount
836 *
837 * Given a path, find the mountpoint of its source file system.
838 * Replace @path with the path of the mountpoint in the parent mount.
839 * Up is towards /.
840 *
841 * Return 1 if we went up a level and 0 if we were already at the
842 * root.
843 */
Al Virobab77eb2009-04-18 03:26:48 -0400844int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845{
Al Viro0714a532011-11-24 22:19:58 -0500846 struct mount *mnt = real_mount(path->mnt);
847 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000849
Andi Kleen962830d2012-05-08 13:32:02 +0930850 br_read_lock(&vfsmount_lock);
Al Viro0714a532011-11-24 22:19:58 -0500851 parent = mnt->mnt_parent;
Al Viro3c0a6162012-07-18 17:32:50 +0400852 if (parent == mnt) {
Andi Kleen962830d2012-05-08 13:32:02 +0930853 br_read_unlock(&vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return 0;
855 }
Al Viro0714a532011-11-24 22:19:58 -0500856 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -0500857 mountpoint = dget(mnt->mnt_mountpoint);
Andi Kleen962830d2012-05-08 13:32:02 +0930858 br_read_unlock(&vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400859 dput(path->dentry);
860 path->dentry = mountpoint;
861 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -0500862 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return 1;
864}
865
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100866/*
David Howells9875cf82011-01-14 18:45:21 +0000867 * Perform an automount
868 * - return -EISDIR to tell follow_managed() to stop and return the path we
869 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 */
David Howells9875cf82011-01-14 18:45:21 +0000871static int follow_automount(struct path *path, unsigned flags,
872 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100873{
David Howells9875cf82011-01-14 18:45:21 +0000874 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000875 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100876
David Howells9875cf82011-01-14 18:45:21 +0000877 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
878 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700879
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200880 /* We don't want to mount if someone's just doing a stat -
881 * unless they're stat'ing a directory and appended a '/' to
882 * the name.
883 *
884 * We do, however, want to mount if someone wants to open or
885 * create a file of any type under the mountpoint, wants to
886 * traverse through the mountpoint or wants to open the
887 * mounted directory. Also, autofs may mark negative dentries
888 * as being automount points. These will need the attentions
889 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +0000890 */
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200891 if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
Linus Torvaldsd94c1772011-09-26 17:44:55 -0700892 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200893 path->dentry->d_inode)
894 return -EISDIR;
895
David Howells9875cf82011-01-14 18:45:21 +0000896 current->total_link_count++;
897 if (current->total_link_count >= 40)
898 return -ELOOP;
899
900 mnt = path->dentry->d_op->d_automount(path);
901 if (IS_ERR(mnt)) {
902 /*
903 * The filesystem is allowed to return -EISDIR here to indicate
904 * it doesn't want to automount. For instance, autofs would do
905 * this so that its userspace daemon can mount on this dentry.
906 *
907 * However, we can only permit this if it's a terminal point in
908 * the path being looked up; if it wasn't then the remainder of
909 * the path is inaccessible and we should say so.
910 */
Al Viro49084c32011-06-25 21:59:52 -0400911 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +0000912 return -EREMOTE;
913 return PTR_ERR(mnt);
914 }
David Howellsea5b7782011-01-14 19:10:03 +0000915
David Howells9875cf82011-01-14 18:45:21 +0000916 if (!mnt) /* mount collision */
917 return 0;
918
Al Viro8aef1882011-06-16 15:10:06 +0100919 if (!*need_mntput) {
920 /* lock_mount() may release path->mnt on error */
921 mntget(path->mnt);
922 *need_mntput = true;
923 }
Al Viro19a167a2011-01-17 01:35:23 -0500924 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000925
David Howellsea5b7782011-01-14 19:10:03 +0000926 switch (err) {
927 case -EBUSY:
928 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500929 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000930 case 0:
Al Viro8aef1882011-06-16 15:10:06 +0100931 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +0000932 path->mnt = mnt;
933 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +0000934 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500935 default:
936 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000937 }
Al Viro19a167a2011-01-17 01:35:23 -0500938
David Howells9875cf82011-01-14 18:45:21 +0000939}
940
941/*
942 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000943 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000944 * - Flagged as mountpoint
945 * - Flagged as automount point
946 *
947 * This may only be called in refwalk mode.
948 *
949 * Serialization is taken care of in namespace.c
950 */
951static int follow_managed(struct path *path, unsigned flags)
952{
Al Viro8aef1882011-06-16 15:10:06 +0100953 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +0000954 unsigned managed;
955 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +0100956 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +0000957
958 /* Given that we're not holding a lock here, we retain the value in a
959 * local variable for each dentry as we look at it so that we don't see
960 * the components of that value change under us */
961 while (managed = ACCESS_ONCE(path->dentry->d_flags),
962 managed &= DCACHE_MANAGED_DENTRY,
963 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000964 /* Allow the filesystem to manage the transit without i_mutex
965 * being held. */
966 if (managed & DCACHE_MANAGE_TRANSIT) {
967 BUG_ON(!path->dentry->d_op);
968 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -0400969 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000970 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100971 break;
David Howellscc53ce52011-01-14 18:45:26 +0000972 }
973
David Howells9875cf82011-01-14 18:45:21 +0000974 /* Transit to a mounted filesystem. */
975 if (managed & DCACHE_MOUNTED) {
976 struct vfsmount *mounted = lookup_mnt(path);
977 if (mounted) {
978 dput(path->dentry);
979 if (need_mntput)
980 mntput(path->mnt);
981 path->mnt = mounted;
982 path->dentry = dget(mounted->mnt_root);
983 need_mntput = true;
984 continue;
985 }
986
987 /* Something is mounted on this dentry in another
988 * namespace and/or whatever was mounted there in this
989 * namespace got unmounted before we managed to get the
990 * vfsmount_lock */
991 }
992
993 /* Handle an automount point */
994 if (managed & DCACHE_NEED_AUTOMOUNT) {
995 ret = follow_automount(path, flags, &need_mntput);
996 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100997 break;
David Howells9875cf82011-01-14 18:45:21 +0000998 continue;
999 }
1000
1001 /* We didn't change the current path point */
1002 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 }
Al Viro8aef1882011-06-16 15:10:06 +01001004
1005 if (need_mntput && path->mnt == mnt)
1006 mntput(path->mnt);
1007 if (ret == -EISDIR)
1008 ret = 0;
Al Viroa3fbbde2011-11-07 21:21:26 +00001009 return ret < 0 ? ret : need_mntput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010}
1011
David Howellscc53ce52011-01-14 18:45:26 +00001012int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
1014 struct vfsmount *mounted;
1015
Al Viro1c755af2009-04-18 14:06:57 -04001016 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -04001018 dput(path->dentry);
1019 mntput(path->mnt);
1020 path->mnt = mounted;
1021 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 return 1;
1023 }
1024 return 0;
1025}
1026
Ian Kent62a73752011-03-25 01:51:02 +08001027static inline bool managed_dentry_might_block(struct dentry *dentry)
1028{
1029 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
1030 dentry->d_op->d_manage(dentry, true) < 0);
1031}
1032
David Howells9875cf82011-01-14 18:45:21 +00001033/*
Al Viro287548e2011-05-27 06:50:06 -04001034 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1035 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +00001036 */
1037static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -04001038 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +00001039{
Ian Kent62a73752011-03-25 01:51:02 +08001040 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -05001041 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +08001042 /*
1043 * Don't forget we might have a non-mountpoint managed dentry
1044 * that wants to block transit.
1045 */
Al Viro287548e2011-05-27 06:50:06 -04001046 if (unlikely(managed_dentry_might_block(path->dentry)))
David Howellsab909112011-01-14 18:46:51 +00001047 return false;
Ian Kent62a73752011-03-25 01:51:02 +08001048
1049 if (!d_mountpoint(path->dentry))
1050 break;
1051
David Howells9875cf82011-01-14 18:45:21 +00001052 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
1053 if (!mounted)
1054 break;
Al Viroc7105362011-11-24 18:22:03 -05001055 path->mnt = &mounted->mnt;
1056 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +00001057 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001058 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -07001059 /*
1060 * Update the inode too. We don't need to re-check the
1061 * dentry sequence number here after this d_inode read,
1062 * because a mount-point is always pinned.
1063 */
1064 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +00001065 }
David Howells9875cf82011-01-14 18:45:21 +00001066 return true;
1067}
1068
Al Virodea39372011-05-27 06:53:39 -04001069static void follow_mount_rcu(struct nameidata *nd)
Al Viro287548e2011-05-27 06:50:06 -04001070{
Al Virodea39372011-05-27 06:53:39 -04001071 while (d_mountpoint(nd->path.dentry)) {
Al Viroc7105362011-11-24 18:22:03 -05001072 struct mount *mounted;
Al Virodea39372011-05-27 06:53:39 -04001073 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
Al Viro287548e2011-05-27 06:50:06 -04001074 if (!mounted)
1075 break;
Al Viroc7105362011-11-24 18:22:03 -05001076 nd->path.mnt = &mounted->mnt;
1077 nd->path.dentry = mounted->mnt.mnt_root;
Al Virodea39372011-05-27 06:53:39 -04001078 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro287548e2011-05-27 06:50:06 -04001079 }
1080}
1081
Nick Piggin31e6b012011-01-07 17:49:52 +11001082static int follow_dotdot_rcu(struct nameidata *nd)
1083{
Nick Piggin31e6b012011-01-07 17:49:52 +11001084 set_root_rcu(nd);
1085
David Howells9875cf82011-01-14 18:45:21 +00001086 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001087 if (nd->path.dentry == nd->root.dentry &&
1088 nd->path.mnt == nd->root.mnt) {
1089 break;
1090 }
1091 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1092 struct dentry *old = nd->path.dentry;
1093 struct dentry *parent = old->d_parent;
1094 unsigned seq;
1095
1096 seq = read_seqcount_begin(&parent->d_seq);
1097 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -05001098 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +11001099 nd->path.dentry = parent;
1100 nd->seq = seq;
1101 break;
1102 }
1103 if (!follow_up_rcu(&nd->path))
1104 break;
1105 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +11001106 }
Al Virodea39372011-05-27 06:53:39 -04001107 follow_mount_rcu(nd);
1108 nd->inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001109 return 0;
Al Viroef7562d2011-03-04 14:35:59 -05001110
1111failed:
1112 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001113 if (!(nd->flags & LOOKUP_ROOT))
1114 nd->root.mnt = NULL;
Al Viro32a79912012-07-18 20:43:19 +04001115 unlock_rcu_walk();
Al Viroef7562d2011-03-04 14:35:59 -05001116 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001117}
1118
David Howells9875cf82011-01-14 18:45:21 +00001119/*
David Howellscc53ce52011-01-14 18:45:26 +00001120 * Follow down to the covering mount currently visible to userspace. At each
1121 * point, the filesystem owning that dentry may be queried as to whether the
1122 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001123 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001124int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001125{
1126 unsigned managed;
1127 int ret;
1128
1129 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1130 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1131 /* Allow the filesystem to manage the transit without i_mutex
1132 * being held.
1133 *
1134 * We indicate to the filesystem if someone is trying to mount
1135 * something here. This gives autofs the chance to deny anyone
1136 * other than its daemon the right to mount on its
1137 * superstructure.
1138 *
1139 * The filesystem may sleep at this point.
1140 */
1141 if (managed & DCACHE_MANAGE_TRANSIT) {
1142 BUG_ON(!path->dentry->d_op);
1143 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001144 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001145 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001146 if (ret < 0)
1147 return ret == -EISDIR ? 0 : ret;
1148 }
1149
1150 /* Transit to a mounted filesystem. */
1151 if (managed & DCACHE_MOUNTED) {
1152 struct vfsmount *mounted = lookup_mnt(path);
1153 if (!mounted)
1154 break;
1155 dput(path->dentry);
1156 mntput(path->mnt);
1157 path->mnt = mounted;
1158 path->dentry = dget(mounted->mnt_root);
1159 continue;
1160 }
1161
1162 /* Don't handle automount points here */
1163 break;
1164 }
1165 return 0;
1166}
1167
1168/*
David Howells9875cf82011-01-14 18:45:21 +00001169 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1170 */
1171static void follow_mount(struct path *path)
1172{
1173 while (d_mountpoint(path->dentry)) {
1174 struct vfsmount *mounted = lookup_mnt(path);
1175 if (!mounted)
1176 break;
1177 dput(path->dentry);
1178 mntput(path->mnt);
1179 path->mnt = mounted;
1180 path->dentry = dget(mounted->mnt_root);
1181 }
1182}
1183
Nick Piggin31e6b012011-01-07 17:49:52 +11001184static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Al Viro2a737872009-04-07 11:49:53 -04001186 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001187
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001189 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Al Viro2a737872009-04-07 11:49:53 -04001191 if (nd->path.dentry == nd->root.dentry &&
1192 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 break;
1194 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001195 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001196 /* rare case of legitimate dget_parent()... */
1197 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 dput(old);
1199 break;
1200 }
Al Viro3088dd72010-01-30 15:47:29 -05001201 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 }
Al Viro79ed0222009-04-18 13:59:41 -04001204 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001205 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206}
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001209 * This looks up the name in dcache, possibly revalidates the old dentry and
1210 * allocates a new one if not found or not valid. In the need_lookup argument
1211 * returns whether i_op->lookup is necessary.
1212 *
1213 * dir->d_inode->i_mutex must be held
Nick Pigginbaa03892010-08-18 04:37:31 +10001214 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001215static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
Al Viro201f9562012-06-22 12:42:10 +04001216 unsigned int flags, bool *need_lookup)
Nick Pigginbaa03892010-08-18 04:37:31 +10001217{
Nick Pigginbaa03892010-08-18 04:37:31 +10001218 struct dentry *dentry;
Miklos Szeredibad61182012-03-26 12:54:24 +02001219 int error;
Nick Pigginbaa03892010-08-18 04:37:31 +10001220
Miklos Szeredibad61182012-03-26 12:54:24 +02001221 *need_lookup = false;
1222 dentry = d_lookup(dir, name);
1223 if (dentry) {
1224 if (d_need_lookup(dentry)) {
1225 *need_lookup = true;
1226 } else if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
Al Viro201f9562012-06-22 12:42:10 +04001227 error = d_revalidate(dentry, flags);
Miklos Szeredibad61182012-03-26 12:54:24 +02001228 if (unlikely(error <= 0)) {
1229 if (error < 0) {
1230 dput(dentry);
1231 return ERR_PTR(error);
1232 } else if (!d_invalidate(dentry)) {
1233 dput(dentry);
1234 dentry = NULL;
1235 }
1236 }
1237 }
1238 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001239
Miklos Szeredibad61182012-03-26 12:54:24 +02001240 if (!dentry) {
1241 dentry = d_alloc(dir, name);
1242 if (unlikely(!dentry))
1243 return ERR_PTR(-ENOMEM);
Nick Pigginbaa03892010-08-18 04:37:31 +10001244
Miklos Szeredibad61182012-03-26 12:54:24 +02001245 *need_lookup = true;
Nick Pigginbaa03892010-08-18 04:37:31 +10001246 }
1247 return dentry;
1248}
1249
1250/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001251 * Call i_op->lookup on the dentry. The dentry must be negative but may be
1252 * hashed if it was pouplated with DCACHE_NEED_LOOKUP.
1253 *
1254 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001255 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001256static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
Al Viro72bd8662012-06-10 17:17:17 -04001257 unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001258{
Josef Bacik44396f42011-05-31 11:58:49 -04001259 struct dentry *old;
1260
1261 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001262 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001263 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001264 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001265 }
Josef Bacik44396f42011-05-31 11:58:49 -04001266
Al Viro72bd8662012-06-10 17:17:17 -04001267 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001268 if (unlikely(old)) {
1269 dput(dentry);
1270 dentry = old;
1271 }
1272 return dentry;
1273}
1274
Al Viroa3255542012-03-30 14:41:51 -04001275static struct dentry *__lookup_hash(struct qstr *name,
Al Viro72bd8662012-06-10 17:17:17 -04001276 struct dentry *base, unsigned int flags)
Al Viroa3255542012-03-30 14:41:51 -04001277{
Miklos Szeredibad61182012-03-26 12:54:24 +02001278 bool need_lookup;
Al Viroa3255542012-03-30 14:41:51 -04001279 struct dentry *dentry;
1280
Al Viro72bd8662012-06-10 17:17:17 -04001281 dentry = lookup_dcache(name, base, flags, &need_lookup);
Miklos Szeredibad61182012-03-26 12:54:24 +02001282 if (!need_lookup)
1283 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001284
Al Viro72bd8662012-06-10 17:17:17 -04001285 return lookup_real(base->d_inode, dentry, flags);
Al Viroa3255542012-03-30 14:41:51 -04001286}
1287
Josef Bacik44396f42011-05-31 11:58:49 -04001288/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 * It's more convoluted than I'd like it to be, but... it's still fairly
1290 * small and for now I'd prefer to have fast path as straight as possible.
1291 * It _is_ time-critical.
1292 */
Miklos Szeredi697f5142012-05-21 17:30:05 +02001293static int lookup_fast(struct nameidata *nd, struct qstr *name,
1294 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295{
Jan Blunck4ac91372008-02-14 19:34:32 -08001296 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001297 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001298 int need_reval = 1;
1299 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001300 int err;
1301
Al Viro3cac2602009-08-13 18:27:43 +04001302 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001303 * Rename seqlock is not required here because in the off chance
1304 * of a false negative due to a concurrent rename, we're going to
1305 * do the non-racy lookup, below.
1306 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001307 if (nd->flags & LOOKUP_RCU) {
1308 unsigned seq;
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001309 dentry = __d_lookup_rcu(parent, name, &seq, nd->inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001310 if (!dentry)
1311 goto unlazy;
1312
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001313 /*
1314 * This sequence count validates that the inode matches
1315 * the dentry name information from lookup.
1316 */
1317 *inode = dentry->d_inode;
1318 if (read_seqcount_retry(&dentry->d_seq, seq))
1319 return -ECHILD;
1320
1321 /*
1322 * This sequence count validates that the parent had no
1323 * changes while we did the lookup of the dentry above.
1324 *
1325 * The memory barrier in read_seqcount_begin of child is
1326 * enough, we can use __read_seqcount_retry here.
1327 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001328 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1329 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001330 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001331
Miklos Szeredifa4ee152012-03-26 12:54:19 +02001332 if (unlikely(d_need_lookup(dentry)))
1333 goto unlazy;
Al Viro24643082011-02-15 01:26:22 -05001334 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro4ce16ef32012-06-10 16:10:59 -04001335 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001336 if (unlikely(status <= 0)) {
1337 if (status != -ECHILD)
1338 need_reval = 0;
1339 goto unlazy;
1340 }
Al Viro24643082011-02-15 01:26:22 -05001341 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001342 path->mnt = mnt;
1343 path->dentry = dentry;
Al Virod6e9bd22011-05-27 07:03:15 -04001344 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1345 goto unlazy;
1346 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1347 goto unlazy;
1348 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001349unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001350 if (unlazy_walk(nd, dentry))
1351 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001352 } else {
1353 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001354 }
Al Viro5a18fff2011-03-11 04:44:53 -05001355
Al Viro81e6f522012-03-30 14:48:04 -04001356 if (unlikely(!dentry))
1357 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001358
Al Viro81e6f522012-03-30 14:48:04 -04001359 if (unlikely(d_need_lookup(dentry))) {
1360 dput(dentry);
1361 goto need_lookup;
Al Viro24643082011-02-15 01:26:22 -05001362 }
Al Viro81e6f522012-03-30 14:48:04 -04001363
Al Viro5a18fff2011-03-11 04:44:53 -05001364 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
Al Viro4ce16ef32012-06-10 16:10:59 -04001365 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001366 if (unlikely(status <= 0)) {
1367 if (status < 0) {
1368 dput(dentry);
1369 return status;
1370 }
1371 if (!d_invalidate(dentry)) {
1372 dput(dentry);
Al Viro81e6f522012-03-30 14:48:04 -04001373 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001374 }
1375 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001376
David Howells9875cf82011-01-14 18:45:21 +00001377 path->mnt = mnt;
1378 path->dentry = dentry;
1379 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001380 if (unlikely(err < 0)) {
1381 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001382 return err;
Ian Kent89312212011-01-18 12:06:10 +08001383 }
Al Viroa3fbbde2011-11-07 21:21:26 +00001384 if (err)
1385 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001386 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 return 0;
Al Viro81e6f522012-03-30 14:48:04 -04001388
1389need_lookup:
Miklos Szeredi697f5142012-05-21 17:30:05 +02001390 return 1;
1391}
1392
1393/* Fast lookup failed, do it the slow way */
1394static int lookup_slow(struct nameidata *nd, struct qstr *name,
1395 struct path *path)
1396{
1397 struct dentry *dentry, *parent;
1398 int err;
1399
1400 parent = nd->path.dentry;
Al Viro81e6f522012-03-30 14:48:04 -04001401 BUG_ON(nd->inode != parent->d_inode);
1402
1403 mutex_lock(&parent->d_inode->i_mutex);
Al Viro72bd8662012-06-10 17:17:17 -04001404 dentry = __lookup_hash(name, parent, nd->flags);
Al Viro81e6f522012-03-30 14:48:04 -04001405 mutex_unlock(&parent->d_inode->i_mutex);
1406 if (IS_ERR(dentry))
1407 return PTR_ERR(dentry);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001408 path->mnt = nd->path.mnt;
1409 path->dentry = dentry;
1410 err = follow_managed(path, nd->flags);
1411 if (unlikely(err < 0)) {
1412 path_put_conditional(path, nd);
1413 return err;
1414 }
1415 if (err)
1416 nd->flags |= LOOKUP_JUMPED;
1417 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418}
1419
Al Viro52094c82011-02-21 21:34:47 -05001420static inline int may_lookup(struct nameidata *nd)
1421{
1422 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001423 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001424 if (err != -ECHILD)
1425 return err;
Al Viro19660af2011-03-25 10:32:48 -04001426 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001427 return -ECHILD;
1428 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001429 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001430}
1431
Al Viro9856fa12011-03-04 14:22:06 -05001432static inline int handle_dots(struct nameidata *nd, int type)
1433{
1434 if (type == LAST_DOTDOT) {
1435 if (nd->flags & LOOKUP_RCU) {
1436 if (follow_dotdot_rcu(nd))
1437 return -ECHILD;
1438 } else
1439 follow_dotdot(nd);
1440 }
1441 return 0;
1442}
1443
Al Viro951361f2011-03-04 14:44:37 -05001444static void terminate_walk(struct nameidata *nd)
1445{
1446 if (!(nd->flags & LOOKUP_RCU)) {
1447 path_put(&nd->path);
1448 } else {
1449 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001450 if (!(nd->flags & LOOKUP_ROOT))
1451 nd->root.mnt = NULL;
Al Viro32a79912012-07-18 20:43:19 +04001452 unlock_rcu_walk();
Al Viro951361f2011-03-04 14:44:37 -05001453 }
1454}
1455
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001456/*
1457 * Do we need to follow links? We _really_ want to be able
1458 * to do this check without having to look at inode->i_op,
1459 * so we keep a cache of "no, this doesn't need follow_link"
1460 * for the common case.
1461 */
Linus Torvalds7813b942011-08-07 09:53:20 -07001462static inline int should_follow_link(struct inode *inode, int follow)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001463{
1464 if (unlikely(!(inode->i_opflags & IOP_NOFOLLOW))) {
1465 if (likely(inode->i_op->follow_link))
1466 return follow;
1467
1468 /* This gets set once for the inode lifetime */
1469 spin_lock(&inode->i_lock);
1470 inode->i_opflags |= IOP_NOFOLLOW;
1471 spin_unlock(&inode->i_lock);
1472 }
1473 return 0;
1474}
1475
Al Viroce57dfc2011-03-13 19:58:58 -04001476static inline int walk_component(struct nameidata *nd, struct path *path,
1477 struct qstr *name, int type, int follow)
1478{
1479 struct inode *inode;
1480 int err;
1481 /*
1482 * "." and ".." are special - ".." especially so because it has
1483 * to be able to know about the current root directory and
1484 * parent relationships.
1485 */
1486 if (unlikely(type != LAST_NORM))
1487 return handle_dots(nd, type);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001488 err = lookup_fast(nd, name, path, &inode);
Al Viroce57dfc2011-03-13 19:58:58 -04001489 if (unlikely(err)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001490 if (err < 0)
1491 goto out_err;
1492
1493 err = lookup_slow(nd, name, path);
1494 if (err < 0)
1495 goto out_err;
1496
1497 inode = path->dentry->d_inode;
Al Viroce57dfc2011-03-13 19:58:58 -04001498 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001499 err = -ENOENT;
1500 if (!inode)
1501 goto out_path_put;
1502
Linus Torvalds7813b942011-08-07 09:53:20 -07001503 if (should_follow_link(inode, follow)) {
Al Viro19660af2011-03-25 10:32:48 -04001504 if (nd->flags & LOOKUP_RCU) {
1505 if (unlikely(unlazy_walk(nd, path->dentry))) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001506 err = -ECHILD;
1507 goto out_err;
Al Viro19660af2011-03-25 10:32:48 -04001508 }
1509 }
Al Viroce57dfc2011-03-13 19:58:58 -04001510 BUG_ON(inode != path->dentry->d_inode);
1511 return 1;
1512 }
1513 path_to_nameidata(path, nd);
1514 nd->inode = inode;
1515 return 0;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001516
1517out_path_put:
1518 path_to_nameidata(path, nd);
1519out_err:
1520 terminate_walk(nd);
1521 return err;
Al Viroce57dfc2011-03-13 19:58:58 -04001522}
1523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524/*
Al Virob3563792011-03-14 21:54:55 -04001525 * This limits recursive symlink follows to 8, while
1526 * limiting consecutive symlinks to 40.
1527 *
1528 * Without that kind of total limit, nasty chains of consecutive
1529 * symlinks can cause almost arbitrarily long lookups.
1530 */
1531static inline int nested_symlink(struct path *path, struct nameidata *nd)
1532{
1533 int res;
1534
Al Virob3563792011-03-14 21:54:55 -04001535 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1536 path_put_conditional(path, nd);
1537 path_put(&nd->path);
1538 return -ELOOP;
1539 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001540 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001541
1542 nd->depth++;
1543 current->link_count++;
1544
1545 do {
1546 struct path link = *path;
1547 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001548
1549 res = follow_link(&link, nd, &cookie);
Al Viro6d7b5aa2012-06-10 04:15:17 -04001550 if (res)
1551 break;
1552 res = walk_component(nd, path, &nd->last,
1553 nd->last_type, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001554 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001555 } while (res > 0);
1556
1557 current->link_count--;
1558 nd->depth--;
1559 return res;
1560}
1561
1562/*
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001563 * We really don't want to look at inode->i_op->lookup
1564 * when we don't have to. So we keep a cache bit in
1565 * the inode ->i_opflags field that says "yes, we can
1566 * do lookup on this inode".
1567 */
1568static inline int can_lookup(struct inode *inode)
1569{
1570 if (likely(inode->i_opflags & IOP_LOOKUP))
1571 return 1;
1572 if (likely(!inode->i_op->lookup))
1573 return 0;
1574
1575 /* We do this once for the lifetime of the inode */
1576 spin_lock(&inode->i_lock);
1577 inode->i_opflags |= IOP_LOOKUP;
1578 spin_unlock(&inode->i_lock);
1579 return 1;
1580}
1581
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001582/*
1583 * We can do the critical dentry name comparison and hashing
1584 * operations one word at a time, but we are limited to:
1585 *
1586 * - Architectures with fast unaligned word accesses. We could
1587 * do a "get_unaligned()" if this helps and is sufficiently
1588 * fast.
1589 *
1590 * - Little-endian machines (so that we can generate the mask
1591 * of low bytes efficiently). Again, we *could* do a byte
1592 * swapping load on big-endian architectures if that is not
1593 * expensive enough to make the optimization worthless.
1594 *
1595 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1596 * do not trap on the (extremely unlikely) case of a page
1597 * crossing operation.
1598 *
1599 * - Furthermore, we need an efficient 64-bit compile for the
1600 * 64-bit case in order to generate the "number of bytes in
1601 * the final mask". Again, that could be replaced with a
1602 * efficient population count instruction or similar.
1603 */
1604#ifdef CONFIG_DCACHE_WORD_ACCESS
1605
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001606#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001607
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001608#ifdef CONFIG_64BIT
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001609
1610static inline unsigned int fold_hash(unsigned long hash)
1611{
1612 hash += hash >> (8*sizeof(int));
1613 return hash;
1614}
1615
1616#else /* 32-bit case */
1617
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001618#define fold_hash(x) (x)
1619
1620#endif
1621
1622unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1623{
1624 unsigned long a, mask;
1625 unsigned long hash = 0;
1626
1627 for (;;) {
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001628 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001629 if (len < sizeof(unsigned long))
1630 break;
1631 hash += a;
Al Virof132c5b2012-03-22 21:59:52 +00001632 hash *= 9;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001633 name += sizeof(unsigned long);
1634 len -= sizeof(unsigned long);
1635 if (!len)
1636 goto done;
1637 }
1638 mask = ~(~0ul << len*8);
1639 hash += mask & a;
1640done:
1641 return fold_hash(hash);
1642}
1643EXPORT_SYMBOL(full_name_hash);
1644
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001645/*
1646 * Calculate the length and hash of the path component, and
1647 * return the length of the component;
1648 */
1649static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1650{
Linus Torvalds36126f82012-05-26 10:43:17 -07001651 unsigned long a, b, adata, bdata, mask, hash, len;
1652 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001653
1654 hash = a = 0;
1655 len = -sizeof(unsigned long);
1656 do {
1657 hash = (hash + a) * 9;
1658 len += sizeof(unsigned long);
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001659 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07001660 b = a ^ REPEAT_BYTE('/');
1661 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001662
Linus Torvalds36126f82012-05-26 10:43:17 -07001663 adata = prep_zero_mask(a, adata, &constants);
1664 bdata = prep_zero_mask(b, bdata, &constants);
1665
1666 mask = create_zero_mask(adata | bdata);
1667
1668 hash += a & zero_bytemask(mask);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001669 *hashp = fold_hash(hash);
1670
Linus Torvalds36126f82012-05-26 10:43:17 -07001671 return len + find_zero(mask);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001672}
1673
1674#else
1675
Linus Torvalds0145acc2012-03-02 14:32:59 -08001676unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1677{
1678 unsigned long hash = init_name_hash();
1679 while (len--)
1680 hash = partial_name_hash(*name++, hash);
1681 return end_name_hash(hash);
1682}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001683EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001684
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001685/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001686 * We know there's a real path component here of at least
1687 * one character.
1688 */
1689static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1690{
1691 unsigned long hash = init_name_hash();
1692 unsigned long len = 0, c;
1693
1694 c = (unsigned char)*name;
1695 do {
1696 len++;
1697 hash = partial_name_hash(c, hash);
1698 c = (unsigned char)name[len];
1699 } while (c && c != '/');
1700 *hashp = end_name_hash(hash);
1701 return len;
1702}
1703
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001704#endif
1705
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001706/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001708 * This is the basic name resolution function, turning a pathname into
1709 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001711 * Returns 0 and nd will have valid dentry and mnt on success.
1712 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 */
Al Viro6de88d72009-08-09 01:41:57 +04001714static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
1716 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719 while (*name=='/')
1720 name++;
1721 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001722 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 /* At this point we know we have a real path component. */
1725 for(;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 struct qstr this;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001727 long len;
Al Virofe479a52011-02-22 15:10:03 -05001728 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Al Viro52094c82011-02-21 21:34:47 -05001730 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 if (err)
1732 break;
1733
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001734 len = hash_name(name, &this.hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 this.name = name;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001736 this.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Al Virofe479a52011-02-22 15:10:03 -05001738 type = LAST_NORM;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001739 if (name[0] == '.') switch (len) {
Al Virofe479a52011-02-22 15:10:03 -05001740 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001741 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001742 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001743 nd->flags |= LOOKUP_JUMPED;
1744 }
Al Virofe479a52011-02-22 15:10:03 -05001745 break;
1746 case 1:
1747 type = LAST_DOT;
1748 }
Al Viro5a202bc2011-03-08 14:17:44 -05001749 if (likely(type == LAST_NORM)) {
1750 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001751 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001752 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1753 err = parent->d_op->d_hash(parent, nd->inode,
1754 &this);
1755 if (err < 0)
1756 break;
1757 }
1758 }
Al Virofe479a52011-02-22 15:10:03 -05001759
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001760 if (!name[len])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 goto last_component;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001762 /*
1763 * If it wasn't NUL, we know it was '/'. Skip that
1764 * slash, and continue until no more slashes.
1765 */
1766 do {
1767 len++;
1768 } while (unlikely(name[len] == '/'));
1769 if (!name[len])
Al Virob3563792011-03-14 21:54:55 -04001770 goto last_component;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001771 name += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772
Al Viroce57dfc2011-03-13 19:58:58 -04001773 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1774 if (err < 0)
1775 return err;
Al Virofe479a52011-02-22 15:10:03 -05001776
Al Viroce57dfc2011-03-13 19:58:58 -04001777 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001778 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001780 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001781 }
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001782 if (can_lookup(nd->inode))
1783 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 err = -ENOTDIR;
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001785 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 /* here ends the main loop */
1787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788last_component:
Al Virob3563792011-03-14 21:54:55 -04001789 nd->last = this;
1790 nd->last_type = type;
Al Viro086e1832011-02-22 20:56:27 -05001791 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 }
Al Viro951361f2011-03-04 14:44:37 -05001793 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 return err;
1795}
1796
Al Viro70e9b352011-03-05 21:12:22 -05001797static int path_init(int dfd, const char *name, unsigned int flags,
1798 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001800 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001803 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001805 if (flags & LOOKUP_ROOT) {
1806 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001807 if (*name) {
1808 if (!inode->i_op->lookup)
1809 return -ENOTDIR;
1810 retval = inode_permission(inode, MAY_EXEC);
1811 if (retval)
1812 return retval;
1813 }
Al Viro5b6ca022011-03-09 23:04:47 -05001814 nd->path = nd->root;
1815 nd->inode = inode;
1816 if (flags & LOOKUP_RCU) {
Al Viro32a79912012-07-18 20:43:19 +04001817 lock_rcu_walk();
Al Viro5b6ca022011-03-09 23:04:47 -05001818 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1819 } else {
1820 path_get(&nd->path);
1821 }
1822 return 0;
1823 }
1824
Al Viro2a737872009-04-07 11:49:53 -04001825 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001828 if (flags & LOOKUP_RCU) {
Al Viro32a79912012-07-18 20:43:19 +04001829 lock_rcu_walk();
Al Viroe41f7d42011-02-22 14:02:58 -05001830 set_root_rcu(nd);
1831 } else {
1832 set_root(nd);
1833 path_get(&nd->root);
1834 }
Al Viro2a737872009-04-07 11:49:53 -04001835 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001836 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001837 if (flags & LOOKUP_RCU) {
1838 struct fs_struct *fs = current->fs;
1839 unsigned seq;
1840
Al Viro32a79912012-07-18 20:43:19 +04001841 lock_rcu_walk();
Al Viroe41f7d42011-02-22 14:02:58 -05001842
1843 do {
1844 seq = read_seqcount_begin(&fs->seq);
1845 nd->path = fs->pwd;
1846 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1847 } while (read_seqcount_retry(&fs->seq, seq));
1848 } else {
1849 get_fs_pwd(current->fs, &nd->path);
1850 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001851 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001852 struct fd f = fdget_raw(dfd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001853 struct dentry *dentry;
1854
Al Viro2903ff02012-08-28 12:52:22 -04001855 if (!f.file)
1856 return -EBADF;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001857
Al Viro2903ff02012-08-28 12:52:22 -04001858 dentry = f.file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001859
Al Virof52e0c12011-03-14 18:56:51 -04001860 if (*name) {
Al Viro2903ff02012-08-28 12:52:22 -04001861 if (!S_ISDIR(dentry->d_inode->i_mode)) {
1862 fdput(f);
1863 return -ENOTDIR;
1864 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001865
Al Viro4ad5abb2011-06-20 19:57:03 -04001866 retval = inode_permission(dentry->d_inode, MAY_EXEC);
Al Viro2903ff02012-08-28 12:52:22 -04001867 if (retval) {
1868 fdput(f);
1869 return retval;
1870 }
Al Virof52e0c12011-03-14 18:56:51 -04001871 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001872
Al Viro2903ff02012-08-28 12:52:22 -04001873 nd->path = f.file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001874 if (flags & LOOKUP_RCU) {
Al Viro2903ff02012-08-28 12:52:22 -04001875 if (f.need_put)
1876 *fp = f.file;
Al Viroe41f7d42011-02-22 14:02:58 -05001877 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro32a79912012-07-18 20:43:19 +04001878 lock_rcu_walk();
Al Viroe41f7d42011-02-22 14:02:58 -05001879 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001880 path_get(&nd->path);
1881 fdput(f);
Al Viroe41f7d42011-02-22 14:02:58 -05001882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 }
Al Viroe41f7d42011-02-22 14:02:58 -05001884
Nick Piggin31e6b012011-01-07 17:49:52 +11001885 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001886 return 0;
Al Viro9b4a9b12009-04-07 11:44:16 -04001887}
1888
Al Virobd92d7f2011-03-14 19:54:59 -04001889static inline int lookup_last(struct nameidata *nd, struct path *path)
1890{
1891 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1892 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1893
1894 nd->flags &= ~LOOKUP_PARENT;
1895 return walk_component(nd, path, &nd->last, nd->last_type,
1896 nd->flags & LOOKUP_FOLLOW);
1897}
1898
Al Viro9b4a9b12009-04-07 11:44:16 -04001899/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001900static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001901 unsigned int flags, struct nameidata *nd)
1902{
Al Viro70e9b352011-03-05 21:12:22 -05001903 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001904 struct path path;
1905 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001906
1907 /*
1908 * Path walking is largely split up into 2 different synchronisation
1909 * schemes, rcu-walk and ref-walk (explained in
1910 * Documentation/filesystems/path-lookup.txt). These share much of the
1911 * path walk code, but some things particularly setup, cleanup, and
1912 * following mounts are sufficiently divergent that functions are
1913 * duplicated. Typically there is a function foo(), and its RCU
1914 * analogue, foo_rcu().
1915 *
1916 * -ECHILD is the error number of choice (just to avoid clashes) that
1917 * is returned if some aspect of an rcu-walk fails. Such an error must
1918 * be handled by restarting a traditional ref-walk (which will always
1919 * be able to complete).
1920 */
Al Virobd92d7f2011-03-14 19:54:59 -04001921 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001922
Al Virobd92d7f2011-03-14 19:54:59 -04001923 if (unlikely(err))
1924 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001925
1926 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001927 err = link_path_walk(name, nd);
1928
1929 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001930 err = lookup_last(nd, &path);
1931 while (err > 0) {
1932 void *cookie;
1933 struct path link = path;
Kees Cook800179c2012-07-25 17:29:07 -07001934 err = may_follow_link(&link, nd);
1935 if (unlikely(err))
1936 break;
Al Virobd92d7f2011-03-14 19:54:59 -04001937 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001938 err = follow_link(&link, nd, &cookie);
Al Viro6d7b5aa2012-06-10 04:15:17 -04001939 if (err)
1940 break;
1941 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001942 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001943 }
1944 }
Al Viroee0827c2011-02-21 23:38:09 -05001945
Al Viro9f1fafe2011-03-25 11:00:12 -04001946 if (!err)
1947 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001948
1949 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1950 if (!nd->inode->i_op->lookup) {
1951 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001952 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001953 }
1954 }
Al Viro16c2cd72011-02-22 15:50:10 -05001955
Al Viro70e9b352011-03-05 21:12:22 -05001956 if (base)
1957 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001958
Al Viro5b6ca022011-03-09 23:04:47 -05001959 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001960 path_put(&nd->root);
1961 nd->root.mnt = NULL;
1962 }
Al Virobd92d7f2011-03-14 19:54:59 -04001963 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001964}
Nick Piggin31e6b012011-01-07 17:49:52 +11001965
Al Viroee0827c2011-02-21 23:38:09 -05001966static int do_path_lookup(int dfd, const char *name,
1967 unsigned int flags, struct nameidata *nd)
1968{
1969 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1970 if (unlikely(retval == -ECHILD))
1971 retval = path_lookupat(dfd, name, flags, nd);
1972 if (unlikely(retval == -ESTALE))
1973 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001974
Jeff Laytonf78570d2012-10-10 15:25:20 -04001975 if (likely(!retval))
Jeff Laytonbfcec702012-10-10 15:25:23 -04001976 audit_inode(name, nd->path.dentry, flags & LOOKUP_PARENT);
Al Viro9b4a9b12009-04-07 11:44:16 -04001977 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978}
1979
Al Viro79714f72012-06-15 03:01:42 +04001980/* does lookup, returns the object with parent locked */
1981struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001982{
Al Viro79714f72012-06-15 03:01:42 +04001983 struct nameidata nd;
1984 struct dentry *d;
1985 int err = do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, &nd);
1986 if (err)
1987 return ERR_PTR(err);
1988 if (nd.last_type != LAST_NORM) {
1989 path_put(&nd.path);
1990 return ERR_PTR(-EINVAL);
1991 }
1992 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Al Viro1e0ea002012-07-22 23:46:21 +04001993 d = __lookup_hash(&nd.last, nd.path.dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04001994 if (IS_ERR(d)) {
1995 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1996 path_put(&nd.path);
1997 return d;
1998 }
1999 *path = nd.path;
2000 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002001}
2002
Al Virod1811462008-08-02 00:49:18 -04002003int kern_path(const char *name, unsigned int flags, struct path *path)
2004{
2005 struct nameidata nd;
2006 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
2007 if (!res)
2008 *path = nd.path;
2009 return res;
2010}
2011
Josef 'Jeff' Sipek16f182002007-07-19 01:48:18 -07002012/**
2013 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2014 * @dentry: pointer to dentry of the base directory
2015 * @mnt: pointer to vfs mount of the base directory
2016 * @name: pointer to file name
2017 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002018 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f182002007-07-19 01:48:18 -07002019 */
2020int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2021 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002022 struct path *path)
Josef 'Jeff' Sipek16f182002007-07-19 01:48:18 -07002023{
Al Viroe0a01242011-06-27 17:00:37 -04002024 struct nameidata nd;
2025 int err;
2026 nd.root.dentry = dentry;
2027 nd.root.mnt = mnt;
2028 BUG_ON(flags & LOOKUP_PARENT);
Al Viro5b6ca022011-03-09 23:04:47 -05002029 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
Al Viroe0a01242011-06-27 17:00:37 -04002030 err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
2031 if (!err)
2032 *path = nd.path;
2033 return err;
Josef 'Jeff' Sipek16f182002007-07-19 01:48:18 -07002034}
2035
James Morris057f6c02007-04-26 00:12:05 -07002036/*
2037 * Restricted form of lookup. Doesn't follow links, single-component only,
2038 * needs parent already locked. Doesn't follow mounts.
2039 * SMP-safe.
2040 */
Adrian Bunka244e162006-03-31 02:32:11 -08002041static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042{
Al Viro72bd8662012-06-10 17:17:17 -04002043 return __lookup_hash(&nd->last, nd->path.dentry, nd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044}
2045
Christoph Hellwigeead1912007-10-16 23:25:38 -07002046/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002047 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002048 * @name: pathname component to lookup
2049 * @base: base directory to lookup from
2050 * @len: maximum length @len should be interpreted to
2051 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002052 * Note that this routine is purely a helper for filesystem usage and should
2053 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07002054 * nameidata argument is passed to the filesystem methods and a filesystem
2055 * using this helper needs to be prepared for that.
2056 */
James Morris057f6c02007-04-26 00:12:05 -07002057struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2058{
James Morris057f6c02007-04-26 00:12:05 -07002059 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05002060 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002061 int err;
James Morris057f6c02007-04-26 00:12:05 -07002062
David Woodhouse2f9092e2009-04-20 23:18:37 +01002063 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
2064
Al Viro6a96ba52011-03-07 23:49:20 -05002065 this.name = name;
2066 this.len = len;
Linus Torvalds0145acc2012-03-02 14:32:59 -08002067 this.hash = full_name_hash(name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05002068 if (!len)
2069 return ERR_PTR(-EACCES);
2070
Al Viro6a96ba52011-03-07 23:49:20 -05002071 while (len--) {
2072 c = *(const unsigned char *)name++;
2073 if (c == '/' || c == '\0')
2074 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05002075 }
Al Viro5a202bc2011-03-08 14:17:44 -05002076 /*
2077 * See if the low-level filesystem might want
2078 * to use its own hash..
2079 */
2080 if (base->d_flags & DCACHE_OP_HASH) {
2081 int err = base->d_op->d_hash(base, base->d_inode, &this);
2082 if (err < 0)
2083 return ERR_PTR(err);
2084 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07002085
Miklos Szeredicda309d2012-03-26 12:54:21 +02002086 err = inode_permission(base->d_inode, MAY_EXEC);
2087 if (err)
2088 return ERR_PTR(err);
2089
Al Viro72bd8662012-06-10 17:17:17 -04002090 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002091}
2092
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002093int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2094 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095{
Al Viro2d8f3032008-07-22 09:59:21 -04002096 struct nameidata nd;
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002097 char *tmp = getname_flags(name, flags, empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04002100
2101 BUG_ON(flags & LOOKUP_PARENT);
2102
2103 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04002105 if (!err)
2106 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 }
2108 return err;
2109}
2110
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002111int user_path_at(int dfd, const char __user *name, unsigned flags,
2112 struct path *path)
2113{
Linus Torvaldsf7493e52012-03-22 16:10:40 -07002114 return user_path_at_empty(dfd, name, flags, path, NULL);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002115}
2116
Al Viro2ad94ae2008-07-21 09:32:51 -04002117static int user_path_parent(int dfd, const char __user *path,
2118 struct nameidata *nd, char **name)
2119{
2120 char *s = getname(path);
2121 int error;
2122
2123 if (IS_ERR(s))
2124 return PTR_ERR(s);
2125
2126 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
2127 if (error)
2128 putname(s);
2129 else
2130 *name = s;
2131
2132 return error;
2133}
2134
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135/*
2136 * It's inline, so penalty for filesystems that don't use sticky bit is
2137 * minimal.
2138 */
2139static inline int check_sticky(struct inode *dir, struct inode *inode)
2140{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002141 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002142
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 if (!(dir->i_mode & S_ISVTX))
2144 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002145 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002147 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 return 0;
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -08002149 return !inode_capable(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150}
2151
2152/*
2153 * Check whether we can remove a link victim from directory dir, check
2154 * whether the type of victim is right.
2155 * 1. We can't do it if dir is read-only (done in permission())
2156 * 2. We should have write and exec permissions on dir
2157 * 3. We can't remove anything from append-only dir
2158 * 4. We can't do anything with immutable dir (done in permission())
2159 * 5. If the sticky bit on dir is set we should either
2160 * a. be owner of dir, or
2161 * b. be owner of victim, or
2162 * c. have CAP_FOWNER capability
2163 * 6. If the victim is append-only or immutable we can't do antyhing with
2164 * links pointing to it.
2165 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2166 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2167 * 9. We can't remove a root or mountpoint.
2168 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2169 * nfs_async_unlink().
2170 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002171static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
2173 int error;
2174
2175 if (!victim->d_inode)
2176 return -ENOENT;
2177
2178 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002179 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
Al Virof419a2e2008-07-22 00:07:17 -04002181 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 if (error)
2183 return error;
2184 if (IS_APPEND(dir))
2185 return -EPERM;
2186 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08002187 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 return -EPERM;
2189 if (isdir) {
2190 if (!S_ISDIR(victim->d_inode->i_mode))
2191 return -ENOTDIR;
2192 if (IS_ROOT(victim))
2193 return -EBUSY;
2194 } else if (S_ISDIR(victim->d_inode->i_mode))
2195 return -EISDIR;
2196 if (IS_DEADDIR(dir))
2197 return -ENOENT;
2198 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2199 return -EBUSY;
2200 return 0;
2201}
2202
2203/* Check whether we can create an object with dentry child in directory
2204 * dir.
2205 * 1. We can't do it if child already exists (open has special treatment for
2206 * this case, but since we are inlined it's OK)
2207 * 2. We can't do it if dir is read-only (done in permission())
2208 * 3. We should have write and exec permissions on dir
2209 * 4. We can't do it if dir is immutable (done in permission())
2210 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002211static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212{
2213 if (child->d_inode)
2214 return -EEXIST;
2215 if (IS_DEADDIR(dir))
2216 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04002217 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218}
2219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220/*
2221 * p1 and p2 should be directories on the same fs.
2222 */
2223struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2224{
2225 struct dentry *p;
2226
2227 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07002228 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 return NULL;
2230 }
2231
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002232 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002234 p = d_ancestor(p2, p1);
2235 if (p) {
2236 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2237 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2238 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 }
2240
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002241 p = d_ancestor(p1, p2);
2242 if (p) {
2243 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2244 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2245 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 }
2247
Ingo Molnarf2eace22006-07-03 00:25:05 -07002248 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2249 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 return NULL;
2251}
2252
2253void unlock_rename(struct dentry *p1, struct dentry *p2)
2254{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002255 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002257 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002258 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 }
2260}
2261
Al Viro4acdaf22011-07-26 01:42:34 -04002262int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002263 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002265 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 if (error)
2267 return error;
2268
Al Viroacfa4382008-12-04 10:06:33 -05002269 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 return -EACCES; /* shouldn't it be ENOSYS? */
2271 mode &= S_IALLUGO;
2272 mode |= S_IFREG;
2273 error = security_inode_create(dir, dentry, mode);
2274 if (error)
2275 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002276 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002277 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002278 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 return error;
2280}
2281
Al Viro73d049a2011-03-11 12:08:24 -05002282static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002284 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 struct inode *inode = dentry->d_inode;
2286 int error;
2287
Al Virobcda7652011-03-13 16:42:14 -04002288 /* O_PATH? */
2289 if (!acc_mode)
2290 return 0;
2291
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 if (!inode)
2293 return -ENOENT;
2294
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002295 switch (inode->i_mode & S_IFMT) {
2296 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002298 case S_IFDIR:
2299 if (acc_mode & MAY_WRITE)
2300 return -EISDIR;
2301 break;
2302 case S_IFBLK:
2303 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002304 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002306 /*FALLTHRU*/
2307 case S_IFIFO:
2308 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002310 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002311 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002312
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002313 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002314 if (error)
2315 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002316
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 /*
2318 * An append-only file must be opened in append mode for writing.
2319 */
2320 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002321 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002322 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002324 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 }
2326
2327 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002328 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002329 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002331 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002332}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Jeff Laytone1181ee2010-12-07 16:19:50 -05002334static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002335{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002336 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002337 struct inode *inode = path->dentry->d_inode;
2338 int error = get_write_access(inode);
2339 if (error)
2340 return error;
2341 /*
2342 * Refuse to truncate files with mandatory locks held on them.
2343 */
2344 error = locks_verify_locked(inode);
2345 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002346 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002347 if (!error) {
2348 error = do_truncate(path->dentry, 0,
2349 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002350 filp);
Al Viro7715b522009-12-16 03:54:00 -05002351 }
2352 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002353 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354}
2355
Dave Hansend57999e2008-02-15 14:37:27 -08002356static inline int open_to_namei_flags(int flag)
2357{
Al Viro8a5e9292011-06-25 19:15:54 -04002358 if ((flag & O_ACCMODE) == 3)
2359 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002360 return flag;
2361}
2362
Miklos Szeredid18e9002012-06-05 15:10:17 +02002363static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2364{
2365 int error = security_path_mknod(dir, dentry, mode, 0);
2366 if (error)
2367 return error;
2368
2369 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2370 if (error)
2371 return error;
2372
2373 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2374}
2375
David Howells1acf0af2012-06-14 16:13:46 +01002376/*
2377 * Attempt to atomically look up, create and open a file from a negative
2378 * dentry.
2379 *
2380 * Returns 0 if successful. The file will have been created and attached to
2381 * @file by the filesystem calling finish_open().
2382 *
2383 * Returns 1 if the file was looked up only or didn't need creating. The
2384 * caller will need to perform the open themselves. @path will have been
2385 * updated to point to the new dentry. This may be negative.
2386 *
2387 * Returns an error code otherwise.
2388 */
Al Viro2675a4e2012-06-22 12:41:10 +04002389static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2390 struct path *path, struct file *file,
2391 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04002392 bool got_write, bool need_lookup,
Al Viro2675a4e2012-06-22 12:41:10 +04002393 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002394{
2395 struct inode *dir = nd->path.dentry->d_inode;
2396 unsigned open_flag = open_to_namei_flags(op->open_flag);
2397 umode_t mode;
2398 int error;
2399 int acc_mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002400 int create_error = 0;
2401 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
2402
2403 BUG_ON(dentry->d_inode);
2404
2405 /* Don't create child dentry for a dead directory. */
2406 if (unlikely(IS_DEADDIR(dir))) {
Al Viro2675a4e2012-06-22 12:41:10 +04002407 error = -ENOENT;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002408 goto out;
2409 }
2410
Miklos Szeredi62b259d2012-08-15 13:01:24 +02002411 mode = op->mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002412 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2413 mode &= ~current_umask();
2414
Al Virof8310c52012-07-30 11:50:30 +04002415 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT)) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002416 open_flag &= ~O_TRUNC;
Al Viro47237682012-06-10 05:01:45 -04002417 *opened |= FILE_CREATED;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002418 }
2419
2420 /*
2421 * Checking write permission is tricky, bacuse we don't know if we are
2422 * going to actually need it: O_CREAT opens should work as long as the
2423 * file exists. But checking existence breaks atomicity. The trick is
2424 * to check access and if not granted clear O_CREAT from the flags.
2425 *
2426 * Another problem is returing the "right" error value (e.g. for an
2427 * O_EXCL open we want to return EEXIST not EROFS).
2428 */
Al Viro64894cf2012-07-31 00:53:35 +04002429 if (((open_flag & (O_CREAT | O_TRUNC)) ||
2430 (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2431 if (!(open_flag & O_CREAT)) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002432 /*
2433 * No O_CREATE -> atomicity not a requirement -> fall
2434 * back to lookup + open
2435 */
2436 goto no_open;
2437 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2438 /* Fall back and fail with the right error */
Al Viro64894cf2012-07-31 00:53:35 +04002439 create_error = -EROFS;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002440 goto no_open;
2441 } else {
2442 /* No side effects, safe to clear O_CREAT */
Al Viro64894cf2012-07-31 00:53:35 +04002443 create_error = -EROFS;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002444 open_flag &= ~O_CREAT;
2445 }
2446 }
2447
2448 if (open_flag & O_CREAT) {
Miklos Szeredi38227f72012-08-15 13:01:24 +02002449 error = may_o_create(&nd->path, dentry, mode);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002450 if (error) {
2451 create_error = error;
2452 if (open_flag & O_EXCL)
2453 goto no_open;
2454 open_flag &= ~O_CREAT;
2455 }
2456 }
2457
2458 if (nd->flags & LOOKUP_DIRECTORY)
2459 open_flag |= O_DIRECTORY;
2460
Al Viro30d90492012-06-22 12:40:19 +04002461 file->f_path.dentry = DENTRY_NOT_SET;
2462 file->f_path.mnt = nd->path.mnt;
2463 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
Al Viro47237682012-06-10 05:01:45 -04002464 opened);
Al Virod9585272012-06-22 12:39:14 +04002465 if (error < 0) {
Al Virod9585272012-06-22 12:39:14 +04002466 if (create_error && error == -ENOENT)
2467 error = create_error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002468 goto out;
2469 }
2470
2471 acc_mode = op->acc_mode;
Al Viro47237682012-06-10 05:01:45 -04002472 if (*opened & FILE_CREATED) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002473 fsnotify_create(dir, dentry);
2474 acc_mode = MAY_OPEN;
2475 }
2476
Al Virod9585272012-06-22 12:39:14 +04002477 if (error) { /* returned 1, that is */
Al Viro30d90492012-06-22 12:40:19 +04002478 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04002479 error = -EIO;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002480 goto out;
2481 }
Al Viro30d90492012-06-22 12:40:19 +04002482 if (file->f_path.dentry) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002483 dput(dentry);
Al Viro30d90492012-06-22 12:40:19 +04002484 dentry = file->f_path.dentry;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002485 }
Sage Weil62b2ce92012-08-15 13:30:12 -07002486 if (create_error && dentry->d_inode == NULL) {
2487 error = create_error;
2488 goto out;
2489 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02002490 goto looked_up;
2491 }
2492
2493 /*
2494 * We didn't have the inode before the open, so check open permission
2495 * here.
2496 */
Al Viro2675a4e2012-06-22 12:41:10 +04002497 error = may_open(&file->f_path, acc_mode, open_flag);
2498 if (error)
2499 fput(file);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002500
2501out:
2502 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04002503 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002504
Miklos Szeredid18e9002012-06-05 15:10:17 +02002505no_open:
2506 if (need_lookup) {
Al Viro72bd8662012-06-10 17:17:17 -04002507 dentry = lookup_real(dir, dentry, nd->flags);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002508 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002509 return PTR_ERR(dentry);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002510
2511 if (create_error) {
2512 int open_flag = op->open_flag;
2513
Al Viro2675a4e2012-06-22 12:41:10 +04002514 error = create_error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002515 if ((open_flag & O_EXCL)) {
2516 if (!dentry->d_inode)
2517 goto out;
2518 } else if (!dentry->d_inode) {
2519 goto out;
2520 } else if ((open_flag & O_TRUNC) &&
2521 S_ISREG(dentry->d_inode->i_mode)) {
2522 goto out;
2523 }
2524 /* will fail later, go on to get the right error */
2525 }
2526 }
2527looked_up:
2528 path->dentry = dentry;
2529 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04002530 return 1;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002531}
2532
Nick Piggin31e6b012011-01-07 17:49:52 +11002533/*
David Howells1acf0af2012-06-14 16:13:46 +01002534 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002535 *
2536 * Must be called with i_mutex held on parent.
2537 *
David Howells1acf0af2012-06-14 16:13:46 +01002538 * Returns 0 if the file was successfully atomically created (if necessary) and
2539 * opened. In this case the file will be returned attached to @file.
2540 *
2541 * Returns 1 if the file was not completely opened at this time, though lookups
2542 * and creations will have been performed and the dentry returned in @path will
2543 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
2544 * specified then a negative dentry may be returned.
2545 *
2546 * An error code is returned otherwise.
2547 *
2548 * FILE_CREATE will be set in @*opened if the dentry was created and will be
2549 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002550 */
Al Viro2675a4e2012-06-22 12:41:10 +04002551static int lookup_open(struct nameidata *nd, struct path *path,
2552 struct file *file,
2553 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04002554 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002555{
2556 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002557 struct inode *dir_inode = dir->d_inode;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002558 struct dentry *dentry;
2559 int error;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002560 bool need_lookup;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002561
Al Viro47237682012-06-10 05:01:45 -04002562 *opened &= ~FILE_CREATED;
Al Viro201f9562012-06-22 12:42:10 +04002563 dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002564 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002565 return PTR_ERR(dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002566
Miklos Szeredid18e9002012-06-05 15:10:17 +02002567 /* Cached positive dentry: will open in f_op->open */
2568 if (!need_lookup && dentry->d_inode)
2569 goto out_no_open;
2570
2571 if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
Al Viro64894cf2012-07-31 00:53:35 +04002572 return atomic_open(nd, dentry, path, file, op, got_write,
Al Viro47237682012-06-10 05:01:45 -04002573 need_lookup, opened);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002574 }
2575
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002576 if (need_lookup) {
2577 BUG_ON(dentry->d_inode);
2578
Al Viro72bd8662012-06-10 17:17:17 -04002579 dentry = lookup_real(dir_inode, dentry, nd->flags);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002580 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002581 return PTR_ERR(dentry);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002582 }
2583
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002584 /* Negative dentry, just create the file */
2585 if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
2586 umode_t mode = op->mode;
2587 if (!IS_POSIXACL(dir->d_inode))
2588 mode &= ~current_umask();
2589 /*
2590 * This write is needed to ensure that a
2591 * rw->ro transition does not occur between
2592 * the time when the file is created and when
2593 * a permanent write count is taken through
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002594 * the 'struct file' in finish_open().
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002595 */
Al Viro64894cf2012-07-31 00:53:35 +04002596 if (!got_write) {
2597 error = -EROFS;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002598 goto out_dput;
Al Viro64894cf2012-07-31 00:53:35 +04002599 }
Al Viro47237682012-06-10 05:01:45 -04002600 *opened |= FILE_CREATED;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002601 error = security_path_mknod(&nd->path, dentry, mode, 0);
2602 if (error)
2603 goto out_dput;
Al Viro312b63f2012-06-10 18:09:36 -04002604 error = vfs_create(dir->d_inode, dentry, mode,
2605 nd->flags & LOOKUP_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002606 if (error)
2607 goto out_dput;
2608 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02002609out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002610 path->dentry = dentry;
2611 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04002612 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002613
2614out_dput:
2615 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04002616 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002617}
2618
2619/*
Al Virofe2d35f2011-03-05 22:58:25 -05002620 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002621 */
Al Viro2675a4e2012-06-22 12:41:10 +04002622static int do_last(struct nameidata *nd, struct path *path,
2623 struct file *file, const struct open_flags *op,
2624 int *opened, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002625{
Al Viroa1e28032009-12-24 02:12:06 -05002626 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05002627 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002628 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04002629 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04002630 int acc_mode = op->acc_mode;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002631 struct inode *inode;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002632 bool symlink_ok = false;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002633 struct path save_parent = { .dentry = NULL, .mnt = NULL };
2634 bool retried = false;
Al Viro16c2cd72011-02-22 15:50:10 -05002635 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002636
Al Viroc3e380b2011-02-23 13:39:45 -05002637 nd->flags &= ~LOOKUP_PARENT;
2638 nd->flags |= op->intent;
2639
Al Viro1f36f772009-12-26 10:56:19 -05002640 switch (nd->last_type) {
2641 case LAST_DOTDOT:
Neil Brown176306f2010-05-24 16:57:56 +10002642 case LAST_DOT:
Al Virofe2d35f2011-03-05 22:58:25 -05002643 error = handle_dots(nd, nd->last_type);
2644 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002645 return error;
Al Viro1f36f772009-12-26 10:56:19 -05002646 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002647 case LAST_ROOT:
Al Viro9f1fafe2011-03-25 11:00:12 -04002648 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002649 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002650 return error;
Jeff Laytonbfcec702012-10-10 15:25:23 -04002651 audit_inode(pathname, nd->path.dentry, 0);
Al Viroca344a892011-03-09 00:36:45 -05002652 if (open_flag & O_CREAT) {
Al Virofe2d35f2011-03-05 22:58:25 -05002653 error = -EISDIR;
Al Viro2675a4e2012-06-22 12:41:10 +04002654 goto out;
Al Virofe2d35f2011-03-05 22:58:25 -05002655 }
Miklos Szeredie83db162012-06-05 15:10:29 +02002656 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05002657 case LAST_BIND:
Al Viro9f1fafe2011-03-25 11:00:12 -04002658 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002659 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002660 return error;
Jeff Laytonbfcec702012-10-10 15:25:23 -04002661 audit_inode(pathname, dir, 0);
Miklos Szeredie83db162012-06-05 15:10:29 +02002662 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05002663 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002664
Al Viroca344a892011-03-09 00:36:45 -05002665 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05002666 if (nd->last.name[nd->last.len])
2667 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002668 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002669 symlink_ok = true;
Al Virofe2d35f2011-03-05 22:58:25 -05002670 /* we _can_ be in RCU mode here */
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002671 error = lookup_fast(nd, &nd->last, path, &inode);
Miklos Szeredi71574862012-06-05 15:10:14 +02002672 if (likely(!error))
2673 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002674
Miklos Szeredi71574862012-06-05 15:10:14 +02002675 if (error < 0)
Al Viro2675a4e2012-06-22 12:41:10 +04002676 goto out;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02002677
Miklos Szeredi71574862012-06-05 15:10:14 +02002678 BUG_ON(nd->inode != dir->d_inode);
Miklos Szeredib6183df2012-06-05 15:10:13 +02002679 } else {
2680 /* create side of things */
2681 /*
2682 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
2683 * has been cleared when we got to the last component we are
2684 * about to look up
2685 */
2686 error = complete_walk(nd);
2687 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002688 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02002689
Jeff Laytonbfcec702012-10-10 15:25:23 -04002690 audit_inode(pathname, dir, 0);
Miklos Szeredib6183df2012-06-05 15:10:13 +02002691 error = -EISDIR;
2692 /* trailing slashes? */
2693 if (nd->last.name[nd->last.len])
Al Viro2675a4e2012-06-22 12:41:10 +04002694 goto out;
Al Virofe2d35f2011-03-05 22:58:25 -05002695 }
2696
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002697retry_lookup:
Al Viro64894cf2012-07-31 00:53:35 +04002698 if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
2699 error = mnt_want_write(nd->path.mnt);
2700 if (!error)
2701 got_write = true;
2702 /*
2703 * do _not_ fail yet - we might not need that or fail with
2704 * a different error; let lookup_open() decide; we'll be
2705 * dropping this one anyway.
2706 */
2707 }
Al Viroa1e28032009-12-24 02:12:06 -05002708 mutex_lock(&dir->d_inode->i_mutex);
Al Viro64894cf2012-07-31 00:53:35 +04002709 error = lookup_open(nd, path, file, op, got_write, opened);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002710 mutex_unlock(&dir->d_inode->i_mutex);
Al Viroa1e28032009-12-24 02:12:06 -05002711
Al Viro2675a4e2012-06-22 12:41:10 +04002712 if (error <= 0) {
2713 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002714 goto out;
2715
Al Viro47237682012-06-10 05:01:45 -04002716 if ((*opened & FILE_CREATED) ||
Al Viro2675a4e2012-06-22 12:41:10 +04002717 !S_ISREG(file->f_path.dentry->d_inode->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002718 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002719
Jeff Laytonbfcec702012-10-10 15:25:23 -04002720 audit_inode(pathname, file->f_path.dentry, 0);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002721 goto opened;
2722 }
Al Virofb1cc552009-12-24 01:58:28 -05002723
Al Viro47237682012-06-10 05:01:45 -04002724 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05002725 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002726 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002727 will_truncate = false;
Al Virobcda7652011-03-13 16:42:14 -04002728 acc_mode = MAY_OPEN;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002729 path_to_nameidata(path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02002730 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05002731 }
2732
2733 /*
Jeff Layton3134f372012-07-25 10:19:47 -04002734 * create/update audit record if it already exists.
Al Virofb1cc552009-12-24 01:58:28 -05002735 */
Jeff Layton3134f372012-07-25 10:19:47 -04002736 if (path->dentry->d_inode)
Jeff Laytonbfcec702012-10-10 15:25:23 -04002737 audit_inode(pathname, path->dentry, 0);
Al Virofb1cc552009-12-24 01:58:28 -05002738
Miklos Szeredid18e9002012-06-05 15:10:17 +02002739 /*
2740 * If atomic_open() acquired write access it is dropped now due to
2741 * possible mount and symlink following (this might be optimized away if
2742 * necessary...)
2743 */
Al Viro64894cf2012-07-31 00:53:35 +04002744 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002745 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04002746 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002747 }
2748
Al Virofb1cc552009-12-24 01:58:28 -05002749 error = -EEXIST;
Al Virof8310c52012-07-30 11:50:30 +04002750 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))
Al Virofb1cc552009-12-24 01:58:28 -05002751 goto exit_dput;
2752
David Howells9875cf82011-01-14 18:45:21 +00002753 error = follow_managed(path, nd->flags);
2754 if (error < 0)
2755 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002756
Al Viroa3fbbde2011-11-07 21:21:26 +00002757 if (error)
2758 nd->flags |= LOOKUP_JUMPED;
2759
Miklos Szeredidecf3402012-05-21 17:30:08 +02002760 BUG_ON(nd->flags & LOOKUP_RCU);
2761 inode = path->dentry->d_inode;
Miklos Szeredi5f5daac2012-05-21 17:30:14 +02002762finish_lookup:
2763 /* we _can_ be in RCU mode here */
Al Virofb1cc552009-12-24 01:58:28 -05002764 error = -ENOENT;
Miklos Szeredi54c33e72012-05-21 17:30:10 +02002765 if (!inode) {
2766 path_to_nameidata(path, nd);
Al Viro2675a4e2012-06-22 12:41:10 +04002767 goto out;
Miklos Szeredi54c33e72012-05-21 17:30:10 +02002768 }
Al Viro9e67f362009-12-26 07:04:50 -05002769
Miklos Szeredid45ea862012-05-21 17:30:09 +02002770 if (should_follow_link(inode, !symlink_ok)) {
2771 if (nd->flags & LOOKUP_RCU) {
2772 if (unlikely(unlazy_walk(nd, path->dentry))) {
2773 error = -ECHILD;
Al Viro2675a4e2012-06-22 12:41:10 +04002774 goto out;
Miklos Szeredid45ea862012-05-21 17:30:09 +02002775 }
2776 }
2777 BUG_ON(inode != path->dentry->d_inode);
Al Viro2675a4e2012-06-22 12:41:10 +04002778 return 1;
Miklos Szeredid45ea862012-05-21 17:30:09 +02002779 }
Al Virofb1cc552009-12-24 01:58:28 -05002780
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002781 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path->mnt) {
2782 path_to_nameidata(path, nd);
2783 } else {
2784 save_parent.dentry = nd->path.dentry;
2785 save_parent.mnt = mntget(path->mnt);
2786 nd->path.dentry = path->dentry;
2787
2788 }
Miklos Szeredidecf3402012-05-21 17:30:08 +02002789 nd->inode = inode;
Al Viroa3fbbde2011-11-07 21:21:26 +00002790 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
2791 error = complete_walk(nd);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002792 if (error) {
2793 path_put(&save_parent);
Al Viro2675a4e2012-06-22 12:41:10 +04002794 return error;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002795 }
Al Virofb1cc552009-12-24 01:58:28 -05002796 error = -EISDIR;
Miklos Szeredi050ac842012-05-21 17:30:12 +02002797 if ((open_flag & O_CREAT) && S_ISDIR(nd->inode->i_mode))
Al Viro2675a4e2012-06-22 12:41:10 +04002798 goto out;
Miklos Szerediaf2f5542012-05-21 17:30:11 +02002799 error = -ENOTDIR;
2800 if ((nd->flags & LOOKUP_DIRECTORY) && !nd->inode->i_op->lookup)
Al Viro2675a4e2012-06-22 12:41:10 +04002801 goto out;
Jeff Laytonbfcec702012-10-10 15:25:23 -04002802 audit_inode(pathname, nd->path.dentry, 0);
Miklos Szeredie83db162012-06-05 15:10:29 +02002803finish_open:
Al Viro6c0d46c2011-03-09 00:59:59 -05002804 if (!S_ISREG(nd->inode->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002805 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05002806
Al Viro0f9d1a12011-03-09 00:13:14 -05002807 if (will_truncate) {
2808 error = mnt_want_write(nd->path.mnt);
2809 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002810 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04002811 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05002812 }
Miklos Szeredie83db162012-06-05 15:10:29 +02002813finish_open_created:
Al Virobcda7652011-03-13 16:42:14 -04002814 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002815 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002816 goto out;
Al Viro30d90492012-06-22 12:40:19 +04002817 file->f_path.mnt = nd->path.mnt;
2818 error = finish_open(file, nd->path.dentry, NULL, opened);
2819 if (error) {
Al Viro30d90492012-06-22 12:40:19 +04002820 if (error == -EOPENSTALE)
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002821 goto stale_open;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002822 goto out;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002823 }
Miklos Szeredia8277b92012-06-05 15:10:32 +02002824opened:
Al Viro2675a4e2012-06-22 12:41:10 +04002825 error = open_check_o_direct(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002826 if (error)
2827 goto exit_fput;
Al Viro2675a4e2012-06-22 12:41:10 +04002828 error = ima_file_check(file, op->acc_mode);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02002829 if (error)
2830 goto exit_fput;
2831
2832 if (will_truncate) {
Al Viro2675a4e2012-06-22 12:41:10 +04002833 error = handle_truncate(file);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02002834 if (error)
2835 goto exit_fput;
Al Viro0f9d1a12011-03-09 00:13:14 -05002836 }
Al Viroca344a892011-03-09 00:36:45 -05002837out:
Al Viro64894cf2012-07-31 00:53:35 +04002838 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002839 mnt_drop_write(nd->path.mnt);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002840 path_put(&save_parent);
Miklos Szeredie276ae62012-05-21 17:30:06 +02002841 terminate_walk(nd);
Al Viro2675a4e2012-06-22 12:41:10 +04002842 return error;
Al Virofb1cc552009-12-24 01:58:28 -05002843
Al Virofb1cc552009-12-24 01:58:28 -05002844exit_dput:
2845 path_put_conditional(path, nd);
Al Viroca344a892011-03-09 00:36:45 -05002846 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002847exit_fput:
Al Viro2675a4e2012-06-22 12:41:10 +04002848 fput(file);
2849 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002850
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002851stale_open:
2852 /* If no saved parent or already retried then can't retry */
2853 if (!save_parent.dentry || retried)
2854 goto out;
2855
2856 BUG_ON(save_parent.dentry != dir);
2857 path_put(&nd->path);
2858 nd->path = save_parent;
2859 nd->inode = dir->d_inode;
2860 save_parent.mnt = NULL;
2861 save_parent.dentry = NULL;
Al Viro64894cf2012-07-31 00:53:35 +04002862 if (got_write) {
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002863 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04002864 got_write = false;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002865 }
2866 retried = true;
2867 goto retry_lookup;
Al Virofb1cc552009-12-24 01:58:28 -05002868}
2869
Al Viro13aab422011-02-23 17:54:08 -05002870static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002871 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872{
Al Virofe2d35f2011-03-05 22:58:25 -05002873 struct file *base = NULL;
Al Viro30d90492012-06-22 12:40:19 +04002874 struct file *file;
Al Viro9850c052010-01-13 15:01:15 -05002875 struct path path;
Al Viro47237682012-06-10 05:01:45 -04002876 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05002877 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002878
Al Viro30d90492012-06-22 12:40:19 +04002879 file = get_empty_filp();
2880 if (!file)
Nick Piggin31e6b012011-01-07 17:49:52 +11002881 return ERR_PTR(-ENFILE);
2882
Al Viro30d90492012-06-22 12:40:19 +04002883 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11002884
Al Viro73d049a2011-03-11 12:08:24 -05002885 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002886 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04002887 goto out;
Nick Piggin31e6b012011-01-07 17:49:52 +11002888
Al Virofe2d35f2011-03-05 22:58:25 -05002889 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002890 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002891 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04002892 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Al Viro2675a4e2012-06-22 12:41:10 +04002894 error = do_last(nd, &path, file, op, &opened, pathname);
2895 while (unlikely(error > 0)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002896 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05002897 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04002898 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05002899 path_put_conditional(&path, nd);
2900 path_put(&nd->path);
Al Viro2675a4e2012-06-22 12:41:10 +04002901 error = -ELOOP;
Al Viro40b39132011-03-09 16:22:18 -05002902 break;
2903 }
Kees Cook800179c2012-07-25 17:29:07 -07002904 error = may_follow_link(&link, nd);
2905 if (unlikely(error))
2906 break;
Al Viro73d049a2011-03-11 12:08:24 -05002907 nd->flags |= LOOKUP_PARENT;
2908 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04002909 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002910 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04002911 break;
2912 error = do_last(nd, &path, file, op, &opened, pathname);
Al Viro574197e2011-03-14 22:20:34 -04002913 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002914 }
Al Viro10fa8e62009-12-26 07:09:49 -05002915out:
Al Viro73d049a2011-03-11 12:08:24 -05002916 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2917 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002918 if (base)
2919 fput(base);
Al Viro2675a4e2012-06-22 12:41:10 +04002920 if (!(opened & FILE_OPENED)) {
2921 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04002922 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002923 }
Al Viro2675a4e2012-06-22 12:41:10 +04002924 if (unlikely(error)) {
2925 if (error == -EOPENSTALE) {
2926 if (flags & LOOKUP_RCU)
2927 error = -ECHILD;
2928 else
2929 error = -ESTALE;
2930 }
2931 file = ERR_PTR(error);
2932 }
2933 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934}
2935
Al Viro13aab422011-02-23 17:54:08 -05002936struct file *do_filp_open(int dfd, const char *pathname,
2937 const struct open_flags *op, int flags)
2938{
Al Viro73d049a2011-03-11 12:08:24 -05002939 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002940 struct file *filp;
2941
Al Viro73d049a2011-03-11 12:08:24 -05002942 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002943 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002944 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002945 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002946 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002947 return filp;
2948}
2949
Al Viro73d049a2011-03-11 12:08:24 -05002950struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2951 const char *name, const struct open_flags *op, int flags)
2952{
2953 struct nameidata nd;
2954 struct file *file;
2955
2956 nd.root.mnt = mnt;
2957 nd.root.dentry = dentry;
2958
2959 flags |= LOOKUP_ROOT;
2960
Al Virobcda7652011-03-13 16:42:14 -04002961 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002962 return ERR_PTR(-ELOOP);
2963
2964 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2965 if (unlikely(file == ERR_PTR(-ECHILD)))
2966 file = path_openat(-1, name, &nd, op, flags);
2967 if (unlikely(file == ERR_PTR(-ESTALE)))
2968 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2969 return file;
2970}
2971
Al Viroed75e952011-06-27 16:53:43 -04002972struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path, int is_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002974 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viroed75e952011-06-27 16:53:43 -04002975 struct nameidata nd;
Jan Karac30dabf2012-06-12 16:20:30 +02002976 int err2;
Al Viroed75e952011-06-27 16:53:43 -04002977 int error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd);
2978 if (error)
2979 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002981 /*
2982 * Yucky last component or no last component at all?
2983 * (foo/., foo/.., /////)
2984 */
Al Viroed75e952011-06-27 16:53:43 -04002985 if (nd.last_type != LAST_NORM)
2986 goto out;
2987 nd.flags &= ~LOOKUP_PARENT;
2988 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002989
Jan Karac30dabf2012-06-12 16:20:30 +02002990 /* don't fail immediately if it's r/o, at least try to report other errors */
2991 err2 = mnt_want_write(nd.path.mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002992 /*
2993 * Do the final lookup.
2994 */
Al Viroed75e952011-06-27 16:53:43 -04002995 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2996 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04002998 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002999
Al Viroa8104a92012-07-20 02:25:00 +04003000 error = -EEXIST;
Al Viroe9baf6e2008-05-15 04:49:12 -04003001 if (dentry->d_inode)
Al Viroa8104a92012-07-20 02:25:00 +04003002 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003003 /*
3004 * Special case - lookup gave negative, but... we had foo/bar/
3005 * From the vfs_mknod() POV we just have a negative dentry -
3006 * all is fine. Let's be bastards - you had / on the end, you've
3007 * been asking for (non-existent) directory. -ENOENT for you.
3008 */
Al Viroed75e952011-06-27 16:53:43 -04003009 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003010 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003011 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003012 }
Jan Karac30dabf2012-06-12 16:20:30 +02003013 if (unlikely(err2)) {
3014 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003015 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003016 }
Al Viroed75e952011-06-27 16:53:43 -04003017 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019fail:
Al Viroa8104a92012-07-20 02:25:00 +04003020 dput(dentry);
3021 dentry = ERR_PTR(error);
3022unlock:
Al Viroed75e952011-06-27 16:53:43 -04003023 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Karac30dabf2012-06-12 16:20:30 +02003024 if (!err2)
3025 mnt_drop_write(nd.path.mnt);
Al Viroed75e952011-06-27 16:53:43 -04003026out:
3027 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 return dentry;
3029}
Al Virodae6ad82011-06-26 11:50:15 -04003030EXPORT_SYMBOL(kern_path_create);
3031
Al Viro921a1652012-07-20 01:15:31 +04003032void done_path_create(struct path *path, struct dentry *dentry)
3033{
3034 dput(dentry);
3035 mutex_unlock(&path->dentry->d_inode->i_mutex);
Al Viroa8104a92012-07-20 02:25:00 +04003036 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003037 path_put(path);
3038}
3039EXPORT_SYMBOL(done_path_create);
3040
Al Virodae6ad82011-06-26 11:50:15 -04003041struct dentry *user_path_create(int dfd, const char __user *pathname, struct path *path, int is_dir)
3042{
3043 char *tmp = getname(pathname);
3044 struct dentry *res;
3045 if (IS_ERR(tmp))
3046 return ERR_CAST(tmp);
3047 res = kern_path_create(dfd, tmp, path, is_dir);
3048 putname(tmp);
3049 return res;
3050}
3051EXPORT_SYMBOL(user_path_create);
3052
Al Viro1a67aaf2011-07-26 01:52:52 -04003053int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003055 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056
3057 if (error)
3058 return error;
3059
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003060 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 return -EPERM;
3062
Al Viroacfa4382008-12-04 10:06:33 -05003063 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 return -EPERM;
3065
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003066 error = devcgroup_inode_mknod(mode, dev);
3067 if (error)
3068 return error;
3069
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 error = security_inode_mknod(dir, dentry, mode, dev);
3071 if (error)
3072 return error;
3073
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003075 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003076 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 return error;
3078}
3079
Al Virof69aac02011-07-26 04:31:40 -04003080static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003081{
3082 switch (mode & S_IFMT) {
3083 case S_IFREG:
3084 case S_IFCHR:
3085 case S_IFBLK:
3086 case S_IFIFO:
3087 case S_IFSOCK:
3088 case 0: /* zero mode translates to S_IFREG */
3089 return 0;
3090 case S_IFDIR:
3091 return -EPERM;
3092 default:
3093 return -EINVAL;
3094 }
3095}
3096
Al Viro8208a222011-07-25 17:32:17 -04003097SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003098 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099{
Al Viro2ad94ae2008-07-21 09:32:51 -04003100 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003101 struct path path;
3102 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103
Al Viro8e4bfca2012-07-20 01:17:26 +04003104 error = may_mknod(mode);
3105 if (error)
3106 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Al Virodae6ad82011-06-26 11:50:15 -04003108 dentry = user_path_create(dfd, filename, &path, 0);
3109 if (IS_ERR(dentry))
3110 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003111
Al Virodae6ad82011-06-26 11:50:15 -04003112 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003113 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003114 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003115 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003116 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003117 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04003119 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 break;
3121 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04003122 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 new_decode_dev(dev));
3124 break;
3125 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003126 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 }
Al Viroa8104a92012-07-20 02:25:00 +04003129out:
Al Viro921a1652012-07-20 01:15:31 +04003130 done_path_create(&path, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 return error;
3132}
3133
Al Viro8208a222011-07-25 17:32:17 -04003134SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003135{
3136 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3137}
3138
Al Viro18bb1db2011-07-26 01:41:39 -04003139int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003141 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003142 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143
3144 if (error)
3145 return error;
3146
Al Viroacfa4382008-12-04 10:06:33 -05003147 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 return -EPERM;
3149
3150 mode &= (S_IRWXUGO|S_ISVTX);
3151 error = security_inode_mkdir(dir, dentry, mode);
3152 if (error)
3153 return error;
3154
Al Viro8de52772012-02-06 12:45:27 -05003155 if (max_links && dir->i_nlink >= max_links)
3156 return -EMLINK;
3157
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003159 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003160 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 return error;
3162}
3163
Al Viroa218d0f2011-11-21 14:59:34 -05003164SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165{
Dave Hansen6902d922006-09-30 23:29:01 -07003166 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003167 struct path path;
3168 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169
Al Virodae6ad82011-06-26 11:50:15 -04003170 dentry = user_path_create(dfd, pathname, &path, 1);
Dave Hansen6902d922006-09-30 23:29:01 -07003171 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003172 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003173
Al Virodae6ad82011-06-26 11:50:15 -04003174 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003175 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003176 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003177 if (!error)
3178 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003179 done_path_create(&path, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 return error;
3181}
3182
Al Viroa218d0f2011-11-21 14:59:34 -05003183SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003184{
3185 return sys_mkdirat(AT_FDCWD, pathname, mode);
3186}
3187
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188/*
Sage Weila71905f2011-05-24 13:06:08 -07003189 * The dentry_unhash() helper will try to drop the dentry early: we
J. Bruce Fieldsc0d02592012-02-15 11:48:40 -05003190 * should have a usage count of 1 if we're the only user of this
Sage Weila71905f2011-05-24 13:06:08 -07003191 * dentry, and if that is true (possibly after pruning the dcache),
3192 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 *
3194 * A low-level filesystem can, if it choses, legally
3195 * do a
3196 *
3197 * if (!d_unhashed(dentry))
3198 * return -EBUSY;
3199 *
3200 * if it cannot handle the case of removing a directory
3201 * that is still in use by something else..
3202 */
3203void dentry_unhash(struct dentry *dentry)
3204{
Vasily Averindc168422006-12-06 20:37:07 -08003205 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 spin_lock(&dentry->d_lock);
Sage Weil64252c72011-05-24 13:06:05 -07003207 if (dentry->d_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003208 __d_drop(dentry);
3209 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210}
3211
3212int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3213{
3214 int error = may_delete(dir, dentry, 1);
3215
3216 if (error)
3217 return error;
3218
Al Viroacfa4382008-12-04 10:06:33 -05003219 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220 return -EPERM;
3221
Al Viro1d2ef592011-09-14 18:55:41 +01003222 dget(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003223 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
Sage Weil912dbc12011-05-24 13:06:11 -07003225 error = -EBUSY;
3226 if (d_mountpoint(dentry))
3227 goto out;
3228
3229 error = security_inode_rmdir(dir, dentry);
3230 if (error)
3231 goto out;
3232
Sage Weil3cebde22011-05-29 21:20:59 -07003233 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003234 error = dir->i_op->rmdir(dir, dentry);
3235 if (error)
3236 goto out;
3237
3238 dentry->d_inode->i_flags |= S_DEAD;
3239 dont_mount(dentry);
3240
3241out:
3242 mutex_unlock(&dentry->d_inode->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01003243 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003244 if (!error)
3245 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246 return error;
3247}
3248
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003249static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250{
3251 int error = 0;
3252 char * name;
3253 struct dentry *dentry;
3254 struct nameidata nd;
3255
Al Viro2ad94ae2008-07-21 09:32:51 -04003256 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04003258 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
3260 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003261 case LAST_DOTDOT:
3262 error = -ENOTEMPTY;
3263 goto exit1;
3264 case LAST_DOT:
3265 error = -EINVAL;
3266 goto exit1;
3267 case LAST_ROOT:
3268 error = -EBUSY;
3269 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003271
3272 nd.flags &= ~LOOKUP_PARENT;
Jan Karac30dabf2012-06-12 16:20:30 +02003273 error = mnt_want_write(nd.path.mnt);
3274 if (error)
3275 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003276
Jan Blunck4ac91372008-02-14 19:34:32 -08003277 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08003278 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003280 if (IS_ERR(dentry))
3281 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003282 if (!dentry->d_inode) {
3283 error = -ENOENT;
3284 goto exit3;
3285 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003286 error = security_path_rmdir(&nd.path, dentry);
3287 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003288 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08003289 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08003290exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003291 dput(dentry);
3292exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08003293 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Karac30dabf2012-06-12 16:20:30 +02003294 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003296 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 putname(name);
3298 return error;
3299}
3300
Heiko Carstens3cdad422009-01-14 14:14:22 +01003301SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003302{
3303 return do_rmdir(AT_FDCWD, pathname);
3304}
3305
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306int vfs_unlink(struct inode *dir, struct dentry *dentry)
3307{
3308 int error = may_delete(dir, dentry, 0);
3309
3310 if (error)
3311 return error;
3312
Al Viroacfa4382008-12-04 10:06:33 -05003313 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 return -EPERM;
3315
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003316 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 if (d_mountpoint(dentry))
3318 error = -EBUSY;
3319 else {
3320 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003321 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003323 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04003324 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05003325 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003327 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
3329 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3330 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08003331 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 }
Robert Love0eeca282005-07-12 17:06:03 -04003334
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 return error;
3336}
3337
3338/*
3339 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003340 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 * writeout happening, and we don't want to prevent access to the directory
3342 * while waiting on the I/O.
3343 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003344static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345{
Al Viro2ad94ae2008-07-21 09:32:51 -04003346 int error;
3347 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 struct dentry *dentry;
3349 struct nameidata nd;
3350 struct inode *inode = NULL;
3351
Al Viro2ad94ae2008-07-21 09:32:51 -04003352 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04003354 return error;
3355
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 error = -EISDIR;
3357 if (nd.last_type != LAST_NORM)
3358 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003359
3360 nd.flags &= ~LOOKUP_PARENT;
Jan Karac30dabf2012-06-12 16:20:30 +02003361 error = mnt_want_write(nd.path.mnt);
3362 if (error)
3363 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003364
Jan Blunck4ac91372008-02-14 19:34:32 -08003365 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08003366 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 error = PTR_ERR(dentry);
3368 if (!IS_ERR(dentry)) {
3369 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03003370 if (nd.last.name[nd.last.len])
3371 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 inode = dentry->d_inode;
Török Edwin50338b82011-06-16 00:06:14 +03003373 if (!inode)
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003374 goto slashes;
3375 ihold(inode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003376 error = security_path_unlink(&nd.path, dentry);
3377 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003378 goto exit2;
Jan Blunck4ac91372008-02-14 19:34:32 -08003379 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Jan Karac30dabf2012-06-12 16:20:30 +02003380exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 dput(dentry);
3382 }
Jan Blunck4ac91372008-02-14 19:34:32 -08003383 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 if (inode)
3385 iput(inode); /* truncate the inode here */
Jan Karac30dabf2012-06-12 16:20:30 +02003386 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003388 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389 putname(name);
3390 return error;
3391
3392slashes:
3393 error = !dentry->d_inode ? -ENOENT :
3394 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
3395 goto exit2;
3396}
3397
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003398SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003399{
3400 if ((flag & ~AT_REMOVEDIR) != 0)
3401 return -EINVAL;
3402
3403 if (flag & AT_REMOVEDIR)
3404 return do_rmdir(dfd, pathname);
3405
3406 return do_unlinkat(dfd, pathname);
3407}
3408
Heiko Carstens3480b252009-01-14 14:14:16 +01003409SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003410{
3411 return do_unlinkat(AT_FDCWD, pathname);
3412}
3413
Miklos Szeredidb2e7472008-06-24 16:50:16 +02003414int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003416 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417
3418 if (error)
3419 return error;
3420
Al Viroacfa4382008-12-04 10:06:33 -05003421 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 return -EPERM;
3423
3424 error = security_inode_symlink(dir, dentry, oldname);
3425 if (error)
3426 return error;
3427
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003429 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003430 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 return error;
3432}
3433
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003434SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3435 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436{
Al Viro2ad94ae2008-07-21 09:32:51 -04003437 int error;
3438 char *from;
Dave Hansen6902d922006-09-30 23:29:01 -07003439 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003440 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441
3442 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04003443 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003445
Al Virodae6ad82011-06-26 11:50:15 -04003446 dentry = user_path_create(newdfd, newname, &path, 0);
Dave Hansen6902d922006-09-30 23:29:01 -07003447 error = PTR_ERR(dentry);
3448 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003449 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07003450
Al Virodae6ad82011-06-26 11:50:15 -04003451 error = security_path_symlink(&path, dentry, from);
Al Viroa8104a92012-07-20 02:25:00 +04003452 if (!error)
3453 error = vfs_symlink(path.dentry->d_inode, dentry, from);
Al Viro921a1652012-07-20 01:15:31 +04003454 done_path_create(&path, dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003455out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 putname(from);
3457 return error;
3458}
3459
Heiko Carstens3480b252009-01-14 14:14:16 +01003460SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003461{
3462 return sys_symlinkat(oldname, AT_FDCWD, newname);
3463}
3464
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
3466{
3467 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05003468 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469 int error;
3470
3471 if (!inode)
3472 return -ENOENT;
3473
Miklos Szeredia95164d2008-07-30 15:08:48 +02003474 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 if (error)
3476 return error;
3477
3478 if (dir->i_sb != inode->i_sb)
3479 return -EXDEV;
3480
3481 /*
3482 * A link to an append-only or immutable file cannot be created.
3483 */
3484 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3485 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05003486 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003488 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 return -EPERM;
3490
3491 error = security_inode_link(old_dentry, dir, new_dentry);
3492 if (error)
3493 return error;
3494
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003495 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303496 /* Make sure we don't allow creating hardlink to an unlinked file */
3497 if (inode->i_nlink == 0)
3498 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05003499 else if (max_links && inode->i_nlink >= max_links)
3500 error = -EMLINK;
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303501 else
3502 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003503 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003504 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003505 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 return error;
3507}
3508
3509/*
3510 * Hardlinks are often used in delicate situations. We avoid
3511 * security-related surprises by not following symlinks on the
3512 * newname. --KAB
3513 *
3514 * We don't follow them on the oldname either to be compatible
3515 * with linux 2.0, and to avoid hard-linking to directories
3516 * and other special files. --ADM
3517 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003518SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
3519 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520{
3521 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003522 struct path old_path, new_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303523 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303526 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003527 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303528 /*
3529 * To use null names we require CAP_DAC_READ_SEARCH
3530 * This ensures that not everyone will be able to create
3531 * handlink using the passed filedescriptor.
3532 */
3533 if (flags & AT_EMPTY_PATH) {
3534 if (!capable(CAP_DAC_READ_SEARCH))
3535 return -ENOENT;
3536 how = LOOKUP_EMPTY;
3537 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003538
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303539 if (flags & AT_SYMLINK_FOLLOW)
3540 how |= LOOKUP_FOLLOW;
3541
3542 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04003544 return error;
3545
Al Virodae6ad82011-06-26 11:50:15 -04003546 new_dentry = user_path_create(newdfd, newname, &new_path, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003548 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003549 goto out;
3550
3551 error = -EXDEV;
3552 if (old_path.mnt != new_path.mnt)
3553 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07003554 error = may_linkat(&old_path);
3555 if (unlikely(error))
3556 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04003557 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003558 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003559 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04003560 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
Dave Hansen75c3f292008-02-15 14:37:45 -08003561out_dput:
Al Viro921a1652012-07-20 01:15:31 +04003562 done_path_create(&new_path, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563out:
Al Viro2d8f3032008-07-22 09:59:21 -04003564 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
3566 return error;
3567}
3568
Heiko Carstens3480b252009-01-14 14:14:16 +01003569SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003570{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003571 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003572}
3573
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574/*
3575 * The worst of all namespace operations - renaming directory. "Perverted"
3576 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3577 * Problems:
3578 * a) we can get into loop creation. Check is done in is_subdir().
3579 * b) race potential - two innocent renames can create a loop together.
3580 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003581 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 * story.
3583 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003584 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 * whether the target exists). Solution: try to be smart with locking
3586 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003587 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 * move will be locked. Thus we can rank directories by the tree
3589 * (ancestors first) and rank all non-directories after them.
3590 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003591 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592 * HOWEVER, it relies on the assumption that any object with ->lookup()
3593 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3594 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07003595 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003596 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003598 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599 * locking].
3600 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07003601static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3602 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603{
3604 int error = 0;
Sage Weil9055cba2011-05-24 13:06:12 -07003605 struct inode *target = new_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05003606 unsigned max_links = new_dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607
3608 /*
3609 * If we are going to change the parent - check write permissions,
3610 * we'll need to flip '..'.
3611 */
3612 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04003613 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 if (error)
3615 return error;
3616 }
3617
3618 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3619 if (error)
3620 return error;
3621
Al Viro1d2ef592011-09-14 18:55:41 +01003622 dget(new_dentry);
Al Virod83c49f2010-04-30 17:17:09 -04003623 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003624 mutex_lock(&target->i_mutex);
Sage Weil9055cba2011-05-24 13:06:12 -07003625
3626 error = -EBUSY;
3627 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3628 goto out;
3629
Al Viro8de52772012-02-06 12:45:27 -05003630 error = -EMLINK;
3631 if (max_links && !target && new_dir != old_dir &&
3632 new_dir->i_nlink >= max_links)
3633 goto out;
3634
Sage Weil3cebde22011-05-29 21:20:59 -07003635 if (target)
3636 shrink_dcache_parent(new_dentry);
Sage Weil9055cba2011-05-24 13:06:12 -07003637 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3638 if (error)
3639 goto out;
3640
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 if (target) {
Sage Weil9055cba2011-05-24 13:06:12 -07003642 target->i_flags |= S_DEAD;
3643 dont_mount(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 }
Sage Weil9055cba2011-05-24 13:06:12 -07003645out:
3646 if (target)
3647 mutex_unlock(&target->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01003648 dput(new_dentry);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003649 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003650 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3651 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 return error;
3653}
3654
Adrian Bunk75c96f82005-05-05 16:16:09 -07003655static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3656 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657{
Sage Weil51892bb2011-05-24 13:06:13 -07003658 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 int error;
3660
3661 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3662 if (error)
3663 return error;
3664
3665 dget(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003667 mutex_lock(&target->i_mutex);
Sage Weil51892bb2011-05-24 13:06:13 -07003668
3669 error = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
Sage Weil51892bb2011-05-24 13:06:13 -07003671 goto out;
3672
3673 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3674 if (error)
3675 goto out;
3676
3677 if (target)
3678 dont_mount(new_dentry);
3679 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3680 d_move(old_dentry, new_dentry);
3681out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003683 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 dput(new_dentry);
3685 return error;
3686}
3687
3688int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3689 struct inode *new_dir, struct dentry *new_dentry)
3690{
3691 int error;
3692 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003693 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694
3695 if (old_dentry->d_inode == new_dentry->d_inode)
3696 return 0;
3697
3698 error = may_delete(old_dir, old_dentry, is_dir);
3699 if (error)
3700 return error;
3701
3702 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003703 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 else
3705 error = may_delete(new_dir, new_dentry, is_dir);
3706 if (error)
3707 return error;
3708
Al Viroacfa4382008-12-04 10:06:33 -05003709 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 return -EPERM;
3711
Robert Love0eeca282005-07-12 17:06:03 -04003712 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3713
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 if (is_dir)
3715 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3716 else
3717 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003718 if (!error)
3719 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003720 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003721 fsnotify_oldname_free(old_name);
3722
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 return error;
3724}
3725
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003726SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3727 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728{
Al Viro2ad94ae2008-07-21 09:32:51 -04003729 struct dentry *old_dir, *new_dir;
3730 struct dentry *old_dentry, *new_dentry;
3731 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003733 char *from;
3734 char *to;
3735 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736
Al Viro2ad94ae2008-07-21 09:32:51 -04003737 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 if (error)
3739 goto exit;
3740
Al Viro2ad94ae2008-07-21 09:32:51 -04003741 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 if (error)
3743 goto exit1;
3744
3745 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003746 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 goto exit2;
3748
Jan Blunck4ac91372008-02-14 19:34:32 -08003749 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 error = -EBUSY;
3751 if (oldnd.last_type != LAST_NORM)
3752 goto exit2;
3753
Jan Blunck4ac91372008-02-14 19:34:32 -08003754 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 if (newnd.last_type != LAST_NORM)
3756 goto exit2;
3757
Jan Karac30dabf2012-06-12 16:20:30 +02003758 error = mnt_want_write(oldnd.path.mnt);
3759 if (error)
3760 goto exit2;
3761
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003762 oldnd.flags &= ~LOOKUP_PARENT;
3763 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003764 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003765
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 trap = lock_rename(new_dir, old_dir);
3767
Christoph Hellwig49705b72005-11-08 21:35:06 -08003768 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 error = PTR_ERR(old_dentry);
3770 if (IS_ERR(old_dentry))
3771 goto exit3;
3772 /* source must exist */
3773 error = -ENOENT;
3774 if (!old_dentry->d_inode)
3775 goto exit4;
3776 /* unless the source is a directory trailing slashes give -ENOTDIR */
3777 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3778 error = -ENOTDIR;
3779 if (oldnd.last.name[oldnd.last.len])
3780 goto exit4;
3781 if (newnd.last.name[newnd.last.len])
3782 goto exit4;
3783 }
3784 /* source should not be ancestor of target */
3785 error = -EINVAL;
3786 if (old_dentry == trap)
3787 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003788 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 error = PTR_ERR(new_dentry);
3790 if (IS_ERR(new_dentry))
3791 goto exit4;
3792 /* target should not be an ancestor of source */
3793 error = -ENOTEMPTY;
3794 if (new_dentry == trap)
3795 goto exit5;
3796
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003797 error = security_path_rename(&oldnd.path, old_dentry,
3798 &newnd.path, new_dentry);
3799 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003800 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 error = vfs_rename(old_dir->d_inode, old_dentry,
3802 new_dir->d_inode, new_dentry);
3803exit5:
3804 dput(new_dentry);
3805exit4:
3806 dput(old_dentry);
3807exit3:
3808 unlock_rename(new_dir, old_dir);
Jan Karac30dabf2012-06-12 16:20:30 +02003809 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003811 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003812 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003814 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003816exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 return error;
3818}
3819
Heiko Carstensa26eab22009-01-14 14:14:17 +01003820SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003821{
3822 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3823}
3824
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3826{
3827 int len;
3828
3829 len = PTR_ERR(link);
3830 if (IS_ERR(link))
3831 goto out;
3832
3833 len = strlen(link);
3834 if (len > (unsigned) buflen)
3835 len = buflen;
3836 if (copy_to_user(buffer, link, len))
3837 len = -EFAULT;
3838out:
3839 return len;
3840}
3841
3842/*
3843 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3844 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3845 * using) it for any given inode is up to filesystem.
3846 */
3847int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3848{
3849 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003850 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003851 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003852
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003854 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003855 if (IS_ERR(cookie))
3856 return PTR_ERR(cookie);
3857
3858 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3859 if (dentry->d_inode->i_op->put_link)
3860 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3861 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862}
3863
3864int vfs_follow_link(struct nameidata *nd, const char *link)
3865{
3866 return __vfs_follow_link(nd, link);
3867}
3868
3869/* get the link contents into pagecache */
3870static char *page_getlink(struct dentry * dentry, struct page **ppage)
3871{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003872 char *kaddr;
3873 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003875 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003877 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003879 kaddr = kmap(page);
3880 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3881 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882}
3883
3884int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3885{
3886 struct page *page = NULL;
3887 char *s = page_getlink(dentry, &page);
3888 int res = vfs_readlink(dentry,buffer,buflen,s);
3889 if (page) {
3890 kunmap(page);
3891 page_cache_release(page);
3892 }
3893 return res;
3894}
3895
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003896void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003898 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003900 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901}
3902
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003903void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003905 struct page *page = cookie;
3906
3907 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 kunmap(page);
3909 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 }
3911}
3912
Nick Piggin54566b22009-01-04 12:00:53 -08003913/*
3914 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3915 */
3916int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917{
3918 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003919 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003920 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003921 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003923 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3924 if (nofs)
3925 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926
NeilBrown7e53cac2006-03-25 03:07:57 -08003927retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003928 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003929 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003931 goto fail;
3932
Cong Wange8e3c3d2011-11-25 23:14:27 +08003933 kaddr = kmap_atomic(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 memcpy(kaddr, symname, len-1);
Cong Wange8e3c3d2011-11-25 23:14:27 +08003935 kunmap_atomic(kaddr);
Nick Pigginafddba42007-10-16 01:25:01 -07003936
3937 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3938 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 if (err < 0)
3940 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003941 if (err < len-1)
3942 goto retry;
3943
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 mark_inode_dirty(inode);
3945 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946fail:
3947 return err;
3948}
3949
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003950int page_symlink(struct inode *inode, const char *symname, int len)
3951{
3952 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003953 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003954}
3955
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003956const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 .readlink = generic_readlink,
3958 .follow_link = page_follow_link_light,
3959 .put_link = page_put_link,
3960};
3961
Al Viro2d8f3032008-07-22 09:59:21 -04003962EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003963EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964EXPORT_SYMBOL(follow_down);
3965EXPORT_SYMBOL(follow_up);
Al Virof6d2ac52012-08-26 12:55:54 -04003966EXPORT_SYMBOL(get_write_access); /* nfsd */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967EXPORT_SYMBOL(getname);
3968EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969EXPORT_SYMBOL(lookup_one_len);
3970EXPORT_SYMBOL(page_follow_link_light);
3971EXPORT_SYMBOL(page_put_link);
3972EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003973EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974EXPORT_SYMBOL(page_symlink);
3975EXPORT_SYMBOL(page_symlink_inode_operations);
Al Virod1811462008-08-02 00:49:18 -04003976EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f182002007-07-19 01:48:18 -07003977EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003978EXPORT_SYMBOL(inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979EXPORT_SYMBOL(unlock_rename);
3980EXPORT_SYMBOL(vfs_create);
3981EXPORT_SYMBOL(vfs_follow_link);
3982EXPORT_SYMBOL(vfs_link);
3983EXPORT_SYMBOL(vfs_mkdir);
3984EXPORT_SYMBOL(vfs_mknod);
3985EXPORT_SYMBOL(generic_permission);
3986EXPORT_SYMBOL(vfs_readlink);
3987EXPORT_SYMBOL(vfs_rename);
3988EXPORT_SYMBOL(vfs_rmdir);
3989EXPORT_SYMBOL(vfs_symlink);
3990EXPORT_SYMBOL(vfs_unlink);
3991EXPORT_SYMBOL(dentry_unhash);
3992EXPORT_SYMBOL(generic_readlink);