blob: aa30d19e9edd75acf05780cad24eadbf37fba910 [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
695 path_put_conditional(link, nd);
696 path_put(&nd->path);
Kees Cooka51d9ea2012-07-25 17:29:08 -0700697 audit_log_link_denied("follow_link", link);
Kees Cook800179c2012-07-25 17:29:07 -0700698 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:
813 path_put(&nd->path);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400814 path_put(link);
Ian Kent051d3812006-03-27 01:14:53 -0800815 return error;
816}
817
Nick Piggin31e6b012011-01-07 17:49:52 +1100818static int follow_up_rcu(struct path *path)
819{
Al Viro0714a532011-11-24 22:19:58 -0500820 struct mount *mnt = real_mount(path->mnt);
821 struct mount *parent;
Nick Piggin31e6b012011-01-07 17:49:52 +1100822 struct dentry *mountpoint;
823
Al Viro0714a532011-11-24 22:19:58 -0500824 parent = mnt->mnt_parent;
825 if (&parent->mnt == path->mnt)
Nick Piggin31e6b012011-01-07 17:49:52 +1100826 return 0;
Al Viroa73324d2011-11-24 22:25:07 -0500827 mountpoint = mnt->mnt_mountpoint;
Nick Piggin31e6b012011-01-07 17:49:52 +1100828 path->dentry = mountpoint;
Al Viro0714a532011-11-24 22:19:58 -0500829 path->mnt = &parent->mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +1100830 return 1;
831}
832
David Howellsf015f1262012-06-25 12:55:28 +0100833/*
834 * follow_up - Find the mountpoint of path's vfsmount
835 *
836 * Given a path, find the mountpoint of its source file system.
837 * Replace @path with the path of the mountpoint in the parent mount.
838 * Up is towards /.
839 *
840 * Return 1 if we went up a level and 0 if we were already at the
841 * root.
842 */
Al Virobab77eb2009-04-18 03:26:48 -0400843int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Al Viro0714a532011-11-24 22:19:58 -0500845 struct mount *mnt = real_mount(path->mnt);
846 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000848
Andi Kleen962830d2012-05-08 13:32:02 +0930849 br_read_lock(&vfsmount_lock);
Al Viro0714a532011-11-24 22:19:58 -0500850 parent = mnt->mnt_parent;
Al Viro3c0a6162012-07-18 17:32:50 +0400851 if (parent == mnt) {
Andi Kleen962830d2012-05-08 13:32:02 +0930852 br_read_unlock(&vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return 0;
854 }
Al Viro0714a532011-11-24 22:19:58 -0500855 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -0500856 mountpoint = dget(mnt->mnt_mountpoint);
Andi Kleen962830d2012-05-08 13:32:02 +0930857 br_read_unlock(&vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400858 dput(path->dentry);
859 path->dentry = mountpoint;
860 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -0500861 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return 1;
863}
864
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100865/*
David Howells9875cf82011-01-14 18:45:21 +0000866 * Perform an automount
867 * - return -EISDIR to tell follow_managed() to stop and return the path we
868 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 */
David Howells9875cf82011-01-14 18:45:21 +0000870static int follow_automount(struct path *path, unsigned flags,
871 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100872{
David Howells9875cf82011-01-14 18:45:21 +0000873 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000874 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100875
David Howells9875cf82011-01-14 18:45:21 +0000876 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
877 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700878
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200879 /* We don't want to mount if someone's just doing a stat -
880 * unless they're stat'ing a directory and appended a '/' to
881 * the name.
882 *
883 * We do, however, want to mount if someone wants to open or
884 * create a file of any type under the mountpoint, wants to
885 * traverse through the mountpoint or wants to open the
886 * mounted directory. Also, autofs may mark negative dentries
887 * as being automount points. These will need the attentions
888 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +0000889 */
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200890 if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
Linus Torvaldsd94c1772011-09-26 17:44:55 -0700891 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200892 path->dentry->d_inode)
893 return -EISDIR;
894
David Howells9875cf82011-01-14 18:45:21 +0000895 current->total_link_count++;
896 if (current->total_link_count >= 40)
897 return -ELOOP;
898
899 mnt = path->dentry->d_op->d_automount(path);
900 if (IS_ERR(mnt)) {
901 /*
902 * The filesystem is allowed to return -EISDIR here to indicate
903 * it doesn't want to automount. For instance, autofs would do
904 * this so that its userspace daemon can mount on this dentry.
905 *
906 * However, we can only permit this if it's a terminal point in
907 * the path being looked up; if it wasn't then the remainder of
908 * the path is inaccessible and we should say so.
909 */
Al Viro49084c32011-06-25 21:59:52 -0400910 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +0000911 return -EREMOTE;
912 return PTR_ERR(mnt);
913 }
David Howellsea5b7782011-01-14 19:10:03 +0000914
David Howells9875cf82011-01-14 18:45:21 +0000915 if (!mnt) /* mount collision */
916 return 0;
917
Al Viro8aef1882011-06-16 15:10:06 +0100918 if (!*need_mntput) {
919 /* lock_mount() may release path->mnt on error */
920 mntget(path->mnt);
921 *need_mntput = true;
922 }
Al Viro19a167a2011-01-17 01:35:23 -0500923 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000924
David Howellsea5b7782011-01-14 19:10:03 +0000925 switch (err) {
926 case -EBUSY:
927 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500928 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000929 case 0:
Al Viro8aef1882011-06-16 15:10:06 +0100930 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +0000931 path->mnt = mnt;
932 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +0000933 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500934 default:
935 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000936 }
Al Viro19a167a2011-01-17 01:35:23 -0500937
David Howells9875cf82011-01-14 18:45:21 +0000938}
939
940/*
941 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000942 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000943 * - Flagged as mountpoint
944 * - Flagged as automount point
945 *
946 * This may only be called in refwalk mode.
947 *
948 * Serialization is taken care of in namespace.c
949 */
950static int follow_managed(struct path *path, unsigned flags)
951{
Al Viro8aef1882011-06-16 15:10:06 +0100952 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +0000953 unsigned managed;
954 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +0100955 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +0000956
957 /* Given that we're not holding a lock here, we retain the value in a
958 * local variable for each dentry as we look at it so that we don't see
959 * the components of that value change under us */
960 while (managed = ACCESS_ONCE(path->dentry->d_flags),
961 managed &= DCACHE_MANAGED_DENTRY,
962 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000963 /* Allow the filesystem to manage the transit without i_mutex
964 * being held. */
965 if (managed & DCACHE_MANAGE_TRANSIT) {
966 BUG_ON(!path->dentry->d_op);
967 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -0400968 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000969 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100970 break;
David Howellscc53ce52011-01-14 18:45:26 +0000971 }
972
David Howells9875cf82011-01-14 18:45:21 +0000973 /* Transit to a mounted filesystem. */
974 if (managed & DCACHE_MOUNTED) {
975 struct vfsmount *mounted = lookup_mnt(path);
976 if (mounted) {
977 dput(path->dentry);
978 if (need_mntput)
979 mntput(path->mnt);
980 path->mnt = mounted;
981 path->dentry = dget(mounted->mnt_root);
982 need_mntput = true;
983 continue;
984 }
985
986 /* Something is mounted on this dentry in another
987 * namespace and/or whatever was mounted there in this
988 * namespace got unmounted before we managed to get the
989 * vfsmount_lock */
990 }
991
992 /* Handle an automount point */
993 if (managed & DCACHE_NEED_AUTOMOUNT) {
994 ret = follow_automount(path, flags, &need_mntput);
995 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100996 break;
David Howells9875cf82011-01-14 18:45:21 +0000997 continue;
998 }
999
1000 /* We didn't change the current path point */
1001 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 }
Al Viro8aef1882011-06-16 15:10:06 +01001003
1004 if (need_mntput && path->mnt == mnt)
1005 mntput(path->mnt);
1006 if (ret == -EISDIR)
1007 ret = 0;
Al Viroa3fbbde2011-11-07 21:21:26 +00001008 return ret < 0 ? ret : need_mntput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
1010
David Howellscc53ce52011-01-14 18:45:26 +00001011int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
1013 struct vfsmount *mounted;
1014
Al Viro1c755af2009-04-18 14:06:57 -04001015 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -04001017 dput(path->dentry);
1018 mntput(path->mnt);
1019 path->mnt = mounted;
1020 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 return 1;
1022 }
1023 return 0;
1024}
1025
Ian Kent62a73752011-03-25 01:51:02 +08001026static inline bool managed_dentry_might_block(struct dentry *dentry)
1027{
1028 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
1029 dentry->d_op->d_manage(dentry, true) < 0);
1030}
1031
David Howells9875cf82011-01-14 18:45:21 +00001032/*
Al Viro287548e2011-05-27 06:50:06 -04001033 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1034 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +00001035 */
1036static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -04001037 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +00001038{
Ian Kent62a73752011-03-25 01:51:02 +08001039 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -05001040 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +08001041 /*
1042 * Don't forget we might have a non-mountpoint managed dentry
1043 * that wants to block transit.
1044 */
Al Viro287548e2011-05-27 06:50:06 -04001045 if (unlikely(managed_dentry_might_block(path->dentry)))
David Howellsab909112011-01-14 18:46:51 +00001046 return false;
Ian Kent62a73752011-03-25 01:51:02 +08001047
1048 if (!d_mountpoint(path->dentry))
1049 break;
1050
David Howells9875cf82011-01-14 18:45:21 +00001051 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
1052 if (!mounted)
1053 break;
Al Viroc7105362011-11-24 18:22:03 -05001054 path->mnt = &mounted->mnt;
1055 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +00001056 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001057 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -07001058 /*
1059 * Update the inode too. We don't need to re-check the
1060 * dentry sequence number here after this d_inode read,
1061 * because a mount-point is always pinned.
1062 */
1063 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +00001064 }
David Howells9875cf82011-01-14 18:45:21 +00001065 return true;
1066}
1067
Al Virodea39372011-05-27 06:53:39 -04001068static void follow_mount_rcu(struct nameidata *nd)
Al Viro287548e2011-05-27 06:50:06 -04001069{
Al Virodea39372011-05-27 06:53:39 -04001070 while (d_mountpoint(nd->path.dentry)) {
Al Viroc7105362011-11-24 18:22:03 -05001071 struct mount *mounted;
Al Virodea39372011-05-27 06:53:39 -04001072 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
Al Viro287548e2011-05-27 06:50:06 -04001073 if (!mounted)
1074 break;
Al Viroc7105362011-11-24 18:22:03 -05001075 nd->path.mnt = &mounted->mnt;
1076 nd->path.dentry = mounted->mnt.mnt_root;
Al Virodea39372011-05-27 06:53:39 -04001077 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro287548e2011-05-27 06:50:06 -04001078 }
1079}
1080
Nick Piggin31e6b012011-01-07 17:49:52 +11001081static int follow_dotdot_rcu(struct nameidata *nd)
1082{
Nick Piggin31e6b012011-01-07 17:49:52 +11001083 set_root_rcu(nd);
1084
David Howells9875cf82011-01-14 18:45:21 +00001085 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001086 if (nd->path.dentry == nd->root.dentry &&
1087 nd->path.mnt == nd->root.mnt) {
1088 break;
1089 }
1090 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1091 struct dentry *old = nd->path.dentry;
1092 struct dentry *parent = old->d_parent;
1093 unsigned seq;
1094
1095 seq = read_seqcount_begin(&parent->d_seq);
1096 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -05001097 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +11001098 nd->path.dentry = parent;
1099 nd->seq = seq;
1100 break;
1101 }
1102 if (!follow_up_rcu(&nd->path))
1103 break;
1104 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +11001105 }
Al Virodea39372011-05-27 06:53:39 -04001106 follow_mount_rcu(nd);
1107 nd->inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001108 return 0;
Al Viroef7562d2011-03-04 14:35:59 -05001109
1110failed:
1111 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001112 if (!(nd->flags & LOOKUP_ROOT))
1113 nd->root.mnt = NULL;
Al Viro32a79912012-07-18 20:43:19 +04001114 unlock_rcu_walk();
Al Viroef7562d2011-03-04 14:35:59 -05001115 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001116}
1117
David Howells9875cf82011-01-14 18:45:21 +00001118/*
David Howellscc53ce52011-01-14 18:45:26 +00001119 * Follow down to the covering mount currently visible to userspace. At each
1120 * point, the filesystem owning that dentry may be queried as to whether the
1121 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001122 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001123int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001124{
1125 unsigned managed;
1126 int ret;
1127
1128 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1129 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1130 /* Allow the filesystem to manage the transit without i_mutex
1131 * being held.
1132 *
1133 * We indicate to the filesystem if someone is trying to mount
1134 * something here. This gives autofs the chance to deny anyone
1135 * other than its daemon the right to mount on its
1136 * superstructure.
1137 *
1138 * The filesystem may sleep at this point.
1139 */
1140 if (managed & DCACHE_MANAGE_TRANSIT) {
1141 BUG_ON(!path->dentry->d_op);
1142 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001143 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001144 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001145 if (ret < 0)
1146 return ret == -EISDIR ? 0 : ret;
1147 }
1148
1149 /* Transit to a mounted filesystem. */
1150 if (managed & DCACHE_MOUNTED) {
1151 struct vfsmount *mounted = lookup_mnt(path);
1152 if (!mounted)
1153 break;
1154 dput(path->dentry);
1155 mntput(path->mnt);
1156 path->mnt = mounted;
1157 path->dentry = dget(mounted->mnt_root);
1158 continue;
1159 }
1160
1161 /* Don't handle automount points here */
1162 break;
1163 }
1164 return 0;
1165}
1166
1167/*
David Howells9875cf82011-01-14 18:45:21 +00001168 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1169 */
1170static void follow_mount(struct path *path)
1171{
1172 while (d_mountpoint(path->dentry)) {
1173 struct vfsmount *mounted = lookup_mnt(path);
1174 if (!mounted)
1175 break;
1176 dput(path->dentry);
1177 mntput(path->mnt);
1178 path->mnt = mounted;
1179 path->dentry = dget(mounted->mnt_root);
1180 }
1181}
1182
Nick Piggin31e6b012011-01-07 17:49:52 +11001183static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
Al Viro2a737872009-04-07 11:49:53 -04001185 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001188 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
Al Viro2a737872009-04-07 11:49:53 -04001190 if (nd->path.dentry == nd->root.dentry &&
1191 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 break;
1193 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001194 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001195 /* rare case of legitimate dget_parent()... */
1196 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 dput(old);
1198 break;
1199 }
Al Viro3088dd72010-01-30 15:47:29 -05001200 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 }
Al Viro79ed0222009-04-18 13:59:41 -04001203 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001204 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205}
1206
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001208 * This looks up the name in dcache, possibly revalidates the old dentry and
1209 * allocates a new one if not found or not valid. In the need_lookup argument
1210 * returns whether i_op->lookup is necessary.
1211 *
1212 * dir->d_inode->i_mutex must be held
Nick Pigginbaa03892010-08-18 04:37:31 +10001213 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001214static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
Al Viro201f9562012-06-22 12:42:10 +04001215 unsigned int flags, bool *need_lookup)
Nick Pigginbaa03892010-08-18 04:37:31 +10001216{
Nick Pigginbaa03892010-08-18 04:37:31 +10001217 struct dentry *dentry;
Miklos Szeredibad61182012-03-26 12:54:24 +02001218 int error;
Nick Pigginbaa03892010-08-18 04:37:31 +10001219
Miklos Szeredibad61182012-03-26 12:54:24 +02001220 *need_lookup = false;
1221 dentry = d_lookup(dir, name);
1222 if (dentry) {
1223 if (d_need_lookup(dentry)) {
1224 *need_lookup = true;
1225 } else if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
Al Viro201f9562012-06-22 12:42:10 +04001226 error = d_revalidate(dentry, flags);
Miklos Szeredibad61182012-03-26 12:54:24 +02001227 if (unlikely(error <= 0)) {
1228 if (error < 0) {
1229 dput(dentry);
1230 return ERR_PTR(error);
1231 } else if (!d_invalidate(dentry)) {
1232 dput(dentry);
1233 dentry = NULL;
1234 }
1235 }
1236 }
1237 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001238
Miklos Szeredibad61182012-03-26 12:54:24 +02001239 if (!dentry) {
1240 dentry = d_alloc(dir, name);
1241 if (unlikely(!dentry))
1242 return ERR_PTR(-ENOMEM);
Nick Pigginbaa03892010-08-18 04:37:31 +10001243
Miklos Szeredibad61182012-03-26 12:54:24 +02001244 *need_lookup = true;
Nick Pigginbaa03892010-08-18 04:37:31 +10001245 }
1246 return dentry;
1247}
1248
1249/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001250 * Call i_op->lookup on the dentry. The dentry must be negative but may be
1251 * hashed if it was pouplated with DCACHE_NEED_LOOKUP.
1252 *
1253 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001254 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001255static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
Al Viro72bd8662012-06-10 17:17:17 -04001256 unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001257{
Josef Bacik44396f42011-05-31 11:58:49 -04001258 struct dentry *old;
1259
1260 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001261 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001262 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001263 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001264 }
Josef Bacik44396f42011-05-31 11:58:49 -04001265
Al Viro72bd8662012-06-10 17:17:17 -04001266 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001267 if (unlikely(old)) {
1268 dput(dentry);
1269 dentry = old;
1270 }
1271 return dentry;
1272}
1273
Al Viroa3255542012-03-30 14:41:51 -04001274static struct dentry *__lookup_hash(struct qstr *name,
Al Viro72bd8662012-06-10 17:17:17 -04001275 struct dentry *base, unsigned int flags)
Al Viroa3255542012-03-30 14:41:51 -04001276{
Miklos Szeredibad61182012-03-26 12:54:24 +02001277 bool need_lookup;
Al Viroa3255542012-03-30 14:41:51 -04001278 struct dentry *dentry;
1279
Al Viro72bd8662012-06-10 17:17:17 -04001280 dentry = lookup_dcache(name, base, flags, &need_lookup);
Miklos Szeredibad61182012-03-26 12:54:24 +02001281 if (!need_lookup)
1282 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001283
Al Viro72bd8662012-06-10 17:17:17 -04001284 return lookup_real(base->d_inode, dentry, flags);
Al Viroa3255542012-03-30 14:41:51 -04001285}
1286
Josef Bacik44396f42011-05-31 11:58:49 -04001287/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 * It's more convoluted than I'd like it to be, but... it's still fairly
1289 * small and for now I'd prefer to have fast path as straight as possible.
1290 * It _is_ time-critical.
1291 */
Miklos Szeredi697f5142012-05-21 17:30:05 +02001292static int lookup_fast(struct nameidata *nd, struct qstr *name,
1293 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
Jan Blunck4ac91372008-02-14 19:34:32 -08001295 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001296 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001297 int need_reval = 1;
1298 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001299 int err;
1300
Al Viro3cac2602009-08-13 18:27:43 +04001301 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001302 * Rename seqlock is not required here because in the off chance
1303 * of a false negative due to a concurrent rename, we're going to
1304 * do the non-racy lookup, below.
1305 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001306 if (nd->flags & LOOKUP_RCU) {
1307 unsigned seq;
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001308 dentry = __d_lookup_rcu(parent, name, &seq, nd->inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001309 if (!dentry)
1310 goto unlazy;
1311
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001312 /*
1313 * This sequence count validates that the inode matches
1314 * the dentry name information from lookup.
1315 */
1316 *inode = dentry->d_inode;
1317 if (read_seqcount_retry(&dentry->d_seq, seq))
1318 return -ECHILD;
1319
1320 /*
1321 * This sequence count validates that the parent had no
1322 * changes while we did the lookup of the dentry above.
1323 *
1324 * The memory barrier in read_seqcount_begin of child is
1325 * enough, we can use __read_seqcount_retry here.
1326 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001327 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1328 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001329 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001330
Miklos Szeredifa4ee152012-03-26 12:54:19 +02001331 if (unlikely(d_need_lookup(dentry)))
1332 goto unlazy;
Al Viro24643082011-02-15 01:26:22 -05001333 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro4ce16ef32012-06-10 16:10:59 -04001334 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001335 if (unlikely(status <= 0)) {
1336 if (status != -ECHILD)
1337 need_reval = 0;
1338 goto unlazy;
1339 }
Al Viro24643082011-02-15 01:26:22 -05001340 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001341 path->mnt = mnt;
1342 path->dentry = dentry;
Al Virod6e9bd22011-05-27 07:03:15 -04001343 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1344 goto unlazy;
1345 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1346 goto unlazy;
1347 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001348unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001349 if (unlazy_walk(nd, dentry))
1350 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001351 } else {
1352 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001353 }
Al Viro5a18fff2011-03-11 04:44:53 -05001354
Al Viro81e6f522012-03-30 14:48:04 -04001355 if (unlikely(!dentry))
1356 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001357
Al Viro81e6f522012-03-30 14:48:04 -04001358 if (unlikely(d_need_lookup(dentry))) {
1359 dput(dentry);
1360 goto need_lookup;
Al Viro24643082011-02-15 01:26:22 -05001361 }
Al Viro81e6f522012-03-30 14:48:04 -04001362
Al Viro5a18fff2011-03-11 04:44:53 -05001363 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
Al Viro4ce16ef32012-06-10 16:10:59 -04001364 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001365 if (unlikely(status <= 0)) {
1366 if (status < 0) {
1367 dput(dentry);
1368 return status;
1369 }
1370 if (!d_invalidate(dentry)) {
1371 dput(dentry);
Al Viro81e6f522012-03-30 14:48:04 -04001372 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001373 }
1374 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001375
David Howells9875cf82011-01-14 18:45:21 +00001376 path->mnt = mnt;
1377 path->dentry = dentry;
1378 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001379 if (unlikely(err < 0)) {
1380 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001381 return err;
Ian Kent89312212011-01-18 12:06:10 +08001382 }
Al Viroa3fbbde2011-11-07 21:21:26 +00001383 if (err)
1384 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001385 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 return 0;
Al Viro81e6f522012-03-30 14:48:04 -04001387
1388need_lookup:
Miklos Szeredi697f5142012-05-21 17:30:05 +02001389 return 1;
1390}
1391
1392/* Fast lookup failed, do it the slow way */
1393static int lookup_slow(struct nameidata *nd, struct qstr *name,
1394 struct path *path)
1395{
1396 struct dentry *dentry, *parent;
1397 int err;
1398
1399 parent = nd->path.dentry;
Al Viro81e6f522012-03-30 14:48:04 -04001400 BUG_ON(nd->inode != parent->d_inode);
1401
1402 mutex_lock(&parent->d_inode->i_mutex);
Al Viro72bd8662012-06-10 17:17:17 -04001403 dentry = __lookup_hash(name, parent, nd->flags);
Al Viro81e6f522012-03-30 14:48:04 -04001404 mutex_unlock(&parent->d_inode->i_mutex);
1405 if (IS_ERR(dentry))
1406 return PTR_ERR(dentry);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001407 path->mnt = nd->path.mnt;
1408 path->dentry = dentry;
1409 err = follow_managed(path, nd->flags);
1410 if (unlikely(err < 0)) {
1411 path_put_conditional(path, nd);
1412 return err;
1413 }
1414 if (err)
1415 nd->flags |= LOOKUP_JUMPED;
1416 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417}
1418
Al Viro52094c82011-02-21 21:34:47 -05001419static inline int may_lookup(struct nameidata *nd)
1420{
1421 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001422 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001423 if (err != -ECHILD)
1424 return err;
Al Viro19660af2011-03-25 10:32:48 -04001425 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001426 return -ECHILD;
1427 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001428 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001429}
1430
Al Viro9856fa12011-03-04 14:22:06 -05001431static inline int handle_dots(struct nameidata *nd, int type)
1432{
1433 if (type == LAST_DOTDOT) {
1434 if (nd->flags & LOOKUP_RCU) {
1435 if (follow_dotdot_rcu(nd))
1436 return -ECHILD;
1437 } else
1438 follow_dotdot(nd);
1439 }
1440 return 0;
1441}
1442
Al Viro951361f2011-03-04 14:44:37 -05001443static void terminate_walk(struct nameidata *nd)
1444{
1445 if (!(nd->flags & LOOKUP_RCU)) {
1446 path_put(&nd->path);
1447 } else {
1448 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001449 if (!(nd->flags & LOOKUP_ROOT))
1450 nd->root.mnt = NULL;
Al Viro32a79912012-07-18 20:43:19 +04001451 unlock_rcu_walk();
Al Viro951361f2011-03-04 14:44:37 -05001452 }
1453}
1454
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001455/*
1456 * Do we need to follow links? We _really_ want to be able
1457 * to do this check without having to look at inode->i_op,
1458 * so we keep a cache of "no, this doesn't need follow_link"
1459 * for the common case.
1460 */
Linus Torvalds7813b942011-08-07 09:53:20 -07001461static inline int should_follow_link(struct inode *inode, int follow)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001462{
1463 if (unlikely(!(inode->i_opflags & IOP_NOFOLLOW))) {
1464 if (likely(inode->i_op->follow_link))
1465 return follow;
1466
1467 /* This gets set once for the inode lifetime */
1468 spin_lock(&inode->i_lock);
1469 inode->i_opflags |= IOP_NOFOLLOW;
1470 spin_unlock(&inode->i_lock);
1471 }
1472 return 0;
1473}
1474
Al Viroce57dfc2011-03-13 19:58:58 -04001475static inline int walk_component(struct nameidata *nd, struct path *path,
1476 struct qstr *name, int type, int follow)
1477{
1478 struct inode *inode;
1479 int err;
1480 /*
1481 * "." and ".." are special - ".." especially so because it has
1482 * to be able to know about the current root directory and
1483 * parent relationships.
1484 */
1485 if (unlikely(type != LAST_NORM))
1486 return handle_dots(nd, type);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001487 err = lookup_fast(nd, name, path, &inode);
Al Viroce57dfc2011-03-13 19:58:58 -04001488 if (unlikely(err)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001489 if (err < 0)
1490 goto out_err;
1491
1492 err = lookup_slow(nd, name, path);
1493 if (err < 0)
1494 goto out_err;
1495
1496 inode = path->dentry->d_inode;
Al Viroce57dfc2011-03-13 19:58:58 -04001497 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001498 err = -ENOENT;
1499 if (!inode)
1500 goto out_path_put;
1501
Linus Torvalds7813b942011-08-07 09:53:20 -07001502 if (should_follow_link(inode, follow)) {
Al Viro19660af2011-03-25 10:32:48 -04001503 if (nd->flags & LOOKUP_RCU) {
1504 if (unlikely(unlazy_walk(nd, path->dentry))) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001505 err = -ECHILD;
1506 goto out_err;
Al Viro19660af2011-03-25 10:32:48 -04001507 }
1508 }
Al Viroce57dfc2011-03-13 19:58:58 -04001509 BUG_ON(inode != path->dentry->d_inode);
1510 return 1;
1511 }
1512 path_to_nameidata(path, nd);
1513 nd->inode = inode;
1514 return 0;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001515
1516out_path_put:
1517 path_to_nameidata(path, nd);
1518out_err:
1519 terminate_walk(nd);
1520 return err;
Al Viroce57dfc2011-03-13 19:58:58 -04001521}
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523/*
Al Virob3563792011-03-14 21:54:55 -04001524 * This limits recursive symlink follows to 8, while
1525 * limiting consecutive symlinks to 40.
1526 *
1527 * Without that kind of total limit, nasty chains of consecutive
1528 * symlinks can cause almost arbitrarily long lookups.
1529 */
1530static inline int nested_symlink(struct path *path, struct nameidata *nd)
1531{
1532 int res;
1533
Al Virob3563792011-03-14 21:54:55 -04001534 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1535 path_put_conditional(path, nd);
1536 path_put(&nd->path);
1537 return -ELOOP;
1538 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001539 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001540
1541 nd->depth++;
1542 current->link_count++;
1543
1544 do {
1545 struct path link = *path;
1546 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001547
1548 res = follow_link(&link, nd, &cookie);
Al Viro6d7b5aa2012-06-10 04:15:17 -04001549 if (res)
1550 break;
1551 res = walk_component(nd, path, &nd->last,
1552 nd->last_type, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001553 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001554 } while (res > 0);
1555
1556 current->link_count--;
1557 nd->depth--;
1558 return res;
1559}
1560
1561/*
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001562 * We really don't want to look at inode->i_op->lookup
1563 * when we don't have to. So we keep a cache bit in
1564 * the inode ->i_opflags field that says "yes, we can
1565 * do lookup on this inode".
1566 */
1567static inline int can_lookup(struct inode *inode)
1568{
1569 if (likely(inode->i_opflags & IOP_LOOKUP))
1570 return 1;
1571 if (likely(!inode->i_op->lookup))
1572 return 0;
1573
1574 /* We do this once for the lifetime of the inode */
1575 spin_lock(&inode->i_lock);
1576 inode->i_opflags |= IOP_LOOKUP;
1577 spin_unlock(&inode->i_lock);
1578 return 1;
1579}
1580
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001581/*
1582 * We can do the critical dentry name comparison and hashing
1583 * operations one word at a time, but we are limited to:
1584 *
1585 * - Architectures with fast unaligned word accesses. We could
1586 * do a "get_unaligned()" if this helps and is sufficiently
1587 * fast.
1588 *
1589 * - Little-endian machines (so that we can generate the mask
1590 * of low bytes efficiently). Again, we *could* do a byte
1591 * swapping load on big-endian architectures if that is not
1592 * expensive enough to make the optimization worthless.
1593 *
1594 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1595 * do not trap on the (extremely unlikely) case of a page
1596 * crossing operation.
1597 *
1598 * - Furthermore, we need an efficient 64-bit compile for the
1599 * 64-bit case in order to generate the "number of bytes in
1600 * the final mask". Again, that could be replaced with a
1601 * efficient population count instruction or similar.
1602 */
1603#ifdef CONFIG_DCACHE_WORD_ACCESS
1604
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001605#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001606
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001607#ifdef CONFIG_64BIT
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001608
1609static inline unsigned int fold_hash(unsigned long hash)
1610{
1611 hash += hash >> (8*sizeof(int));
1612 return hash;
1613}
1614
1615#else /* 32-bit case */
1616
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001617#define fold_hash(x) (x)
1618
1619#endif
1620
1621unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1622{
1623 unsigned long a, mask;
1624 unsigned long hash = 0;
1625
1626 for (;;) {
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001627 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001628 if (len < sizeof(unsigned long))
1629 break;
1630 hash += a;
Al Virof132c5b2012-03-22 21:59:52 +00001631 hash *= 9;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001632 name += sizeof(unsigned long);
1633 len -= sizeof(unsigned long);
1634 if (!len)
1635 goto done;
1636 }
1637 mask = ~(~0ul << len*8);
1638 hash += mask & a;
1639done:
1640 return fold_hash(hash);
1641}
1642EXPORT_SYMBOL(full_name_hash);
1643
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001644/*
1645 * Calculate the length and hash of the path component, and
1646 * return the length of the component;
1647 */
1648static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1649{
Linus Torvalds36126f82012-05-26 10:43:17 -07001650 unsigned long a, b, adata, bdata, mask, hash, len;
1651 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001652
1653 hash = a = 0;
1654 len = -sizeof(unsigned long);
1655 do {
1656 hash = (hash + a) * 9;
1657 len += sizeof(unsigned long);
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001658 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07001659 b = a ^ REPEAT_BYTE('/');
1660 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001661
Linus Torvalds36126f82012-05-26 10:43:17 -07001662 adata = prep_zero_mask(a, adata, &constants);
1663 bdata = prep_zero_mask(b, bdata, &constants);
1664
1665 mask = create_zero_mask(adata | bdata);
1666
1667 hash += a & zero_bytemask(mask);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001668 *hashp = fold_hash(hash);
1669
Linus Torvalds36126f82012-05-26 10:43:17 -07001670 return len + find_zero(mask);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001671}
1672
1673#else
1674
Linus Torvalds0145acc2012-03-02 14:32:59 -08001675unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1676{
1677 unsigned long hash = init_name_hash();
1678 while (len--)
1679 hash = partial_name_hash(*name++, hash);
1680 return end_name_hash(hash);
1681}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001682EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001683
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001684/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001685 * We know there's a real path component here of at least
1686 * one character.
1687 */
1688static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1689{
1690 unsigned long hash = init_name_hash();
1691 unsigned long len = 0, c;
1692
1693 c = (unsigned char)*name;
1694 do {
1695 len++;
1696 hash = partial_name_hash(c, hash);
1697 c = (unsigned char)name[len];
1698 } while (c && c != '/');
1699 *hashp = end_name_hash(hash);
1700 return len;
1701}
1702
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001703#endif
1704
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001705/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001707 * This is the basic name resolution function, turning a pathname into
1708 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001710 * Returns 0 and nd will have valid dentry and mnt on success.
1711 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 */
Al Viro6de88d72009-08-09 01:41:57 +04001713static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714{
1715 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718 while (*name=='/')
1719 name++;
1720 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001721 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 /* At this point we know we have a real path component. */
1724 for(;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 struct qstr this;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001726 long len;
Al Virofe479a52011-02-22 15:10:03 -05001727 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728
Al Viro52094c82011-02-21 21:34:47 -05001729 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 if (err)
1731 break;
1732
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001733 len = hash_name(name, &this.hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 this.name = name;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001735 this.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
Al Virofe479a52011-02-22 15:10:03 -05001737 type = LAST_NORM;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001738 if (name[0] == '.') switch (len) {
Al Virofe479a52011-02-22 15:10:03 -05001739 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001740 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001741 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001742 nd->flags |= LOOKUP_JUMPED;
1743 }
Al Virofe479a52011-02-22 15:10:03 -05001744 break;
1745 case 1:
1746 type = LAST_DOT;
1747 }
Al Viro5a202bc2011-03-08 14:17:44 -05001748 if (likely(type == LAST_NORM)) {
1749 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001750 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001751 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1752 err = parent->d_op->d_hash(parent, nd->inode,
1753 &this);
1754 if (err < 0)
1755 break;
1756 }
1757 }
Al Virofe479a52011-02-22 15:10:03 -05001758
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001759 if (!name[len])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 goto last_component;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001761 /*
1762 * If it wasn't NUL, we know it was '/'. Skip that
1763 * slash, and continue until no more slashes.
1764 */
1765 do {
1766 len++;
1767 } while (unlikely(name[len] == '/'));
1768 if (!name[len])
Al Virob3563792011-03-14 21:54:55 -04001769 goto last_component;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001770 name += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Al Viroce57dfc2011-03-13 19:58:58 -04001772 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1773 if (err < 0)
1774 return err;
Al Virofe479a52011-02-22 15:10:03 -05001775
Al Viroce57dfc2011-03-13 19:58:58 -04001776 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001777 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001779 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001780 }
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001781 if (can_lookup(nd->inode))
1782 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 err = -ENOTDIR;
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001784 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 /* here ends the main loop */
1786
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787last_component:
Al Virob3563792011-03-14 21:54:55 -04001788 nd->last = this;
1789 nd->last_type = type;
Al Viro086e1832011-02-22 20:56:27 -05001790 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 }
Al Viro951361f2011-03-04 14:44:37 -05001792 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 return err;
1794}
1795
Al Viro70e9b352011-03-05 21:12:22 -05001796static int path_init(int dfd, const char *name, unsigned int flags,
1797 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001799 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800
1801 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001802 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001804 if (flags & LOOKUP_ROOT) {
1805 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001806 if (*name) {
1807 if (!inode->i_op->lookup)
1808 return -ENOTDIR;
1809 retval = inode_permission(inode, MAY_EXEC);
1810 if (retval)
1811 return retval;
1812 }
Al Viro5b6ca022011-03-09 23:04:47 -05001813 nd->path = nd->root;
1814 nd->inode = inode;
1815 if (flags & LOOKUP_RCU) {
Al Viro32a79912012-07-18 20:43:19 +04001816 lock_rcu_walk();
Al Viro5b6ca022011-03-09 23:04:47 -05001817 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1818 } else {
1819 path_get(&nd->path);
1820 }
1821 return 0;
1822 }
1823
Al Viro2a737872009-04-07 11:49:53 -04001824 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001827 if (flags & LOOKUP_RCU) {
Al Viro32a79912012-07-18 20:43:19 +04001828 lock_rcu_walk();
Al Viroe41f7d42011-02-22 14:02:58 -05001829 set_root_rcu(nd);
1830 } else {
1831 set_root(nd);
1832 path_get(&nd->root);
1833 }
Al Viro2a737872009-04-07 11:49:53 -04001834 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001835 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001836 if (flags & LOOKUP_RCU) {
1837 struct fs_struct *fs = current->fs;
1838 unsigned seq;
1839
Al Viro32a79912012-07-18 20:43:19 +04001840 lock_rcu_walk();
Al Viroe41f7d42011-02-22 14:02:58 -05001841
1842 do {
1843 seq = read_seqcount_begin(&fs->seq);
1844 nd->path = fs->pwd;
1845 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1846 } while (read_seqcount_retry(&fs->seq, seq));
1847 } else {
1848 get_fs_pwd(current->fs, &nd->path);
1849 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001850 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001851 struct fd f = fdget_raw(dfd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001852 struct dentry *dentry;
1853
Al Viro2903ff02012-08-28 12:52:22 -04001854 if (!f.file)
1855 return -EBADF;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001856
Al Viro2903ff02012-08-28 12:52:22 -04001857 dentry = f.file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001858
Al Virof52e0c12011-03-14 18:56:51 -04001859 if (*name) {
Al Viro2903ff02012-08-28 12:52:22 -04001860 if (!S_ISDIR(dentry->d_inode->i_mode)) {
1861 fdput(f);
1862 return -ENOTDIR;
1863 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001864
Al Viro4ad5abb2011-06-20 19:57:03 -04001865 retval = inode_permission(dentry->d_inode, MAY_EXEC);
Al Viro2903ff02012-08-28 12:52:22 -04001866 if (retval) {
1867 fdput(f);
1868 return retval;
1869 }
Al Virof52e0c12011-03-14 18:56:51 -04001870 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001871
Al Viro2903ff02012-08-28 12:52:22 -04001872 nd->path = f.file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001873 if (flags & LOOKUP_RCU) {
Al Viro2903ff02012-08-28 12:52:22 -04001874 if (f.need_put)
1875 *fp = f.file;
Al Viroe41f7d42011-02-22 14:02:58 -05001876 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro32a79912012-07-18 20:43:19 +04001877 lock_rcu_walk();
Al Viroe41f7d42011-02-22 14:02:58 -05001878 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001879 path_get(&nd->path);
1880 fdput(f);
Al Viroe41f7d42011-02-22 14:02:58 -05001881 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 }
Al Viroe41f7d42011-02-22 14:02:58 -05001883
Nick Piggin31e6b012011-01-07 17:49:52 +11001884 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001885 return 0;
Al Viro9b4a9b12009-04-07 11:44:16 -04001886}
1887
Al Virobd92d7f2011-03-14 19:54:59 -04001888static inline int lookup_last(struct nameidata *nd, struct path *path)
1889{
1890 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1891 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1892
1893 nd->flags &= ~LOOKUP_PARENT;
1894 return walk_component(nd, path, &nd->last, nd->last_type,
1895 nd->flags & LOOKUP_FOLLOW);
1896}
1897
Al Viro9b4a9b12009-04-07 11:44:16 -04001898/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001899static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001900 unsigned int flags, struct nameidata *nd)
1901{
Al Viro70e9b352011-03-05 21:12:22 -05001902 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001903 struct path path;
1904 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001905
1906 /*
1907 * Path walking is largely split up into 2 different synchronisation
1908 * schemes, rcu-walk and ref-walk (explained in
1909 * Documentation/filesystems/path-lookup.txt). These share much of the
1910 * path walk code, but some things particularly setup, cleanup, and
1911 * following mounts are sufficiently divergent that functions are
1912 * duplicated. Typically there is a function foo(), and its RCU
1913 * analogue, foo_rcu().
1914 *
1915 * -ECHILD is the error number of choice (just to avoid clashes) that
1916 * is returned if some aspect of an rcu-walk fails. Such an error must
1917 * be handled by restarting a traditional ref-walk (which will always
1918 * be able to complete).
1919 */
Al Virobd92d7f2011-03-14 19:54:59 -04001920 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001921
Al Virobd92d7f2011-03-14 19:54:59 -04001922 if (unlikely(err))
1923 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001924
1925 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001926 err = link_path_walk(name, nd);
1927
1928 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001929 err = lookup_last(nd, &path);
1930 while (err > 0) {
1931 void *cookie;
1932 struct path link = path;
Kees Cook800179c2012-07-25 17:29:07 -07001933 err = may_follow_link(&link, nd);
1934 if (unlikely(err))
1935 break;
Al Virobd92d7f2011-03-14 19:54:59 -04001936 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001937 err = follow_link(&link, nd, &cookie);
Al Viro6d7b5aa2012-06-10 04:15:17 -04001938 if (err)
1939 break;
1940 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001941 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001942 }
1943 }
Al Viroee0827c2011-02-21 23:38:09 -05001944
Al Viro9f1fafe2011-03-25 11:00:12 -04001945 if (!err)
1946 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001947
1948 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1949 if (!nd->inode->i_op->lookup) {
1950 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001951 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001952 }
1953 }
Al Viro16c2cd72011-02-22 15:50:10 -05001954
Al Viro70e9b352011-03-05 21:12:22 -05001955 if (base)
1956 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001957
Al Viro5b6ca022011-03-09 23:04:47 -05001958 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001959 path_put(&nd->root);
1960 nd->root.mnt = NULL;
1961 }
Al Virobd92d7f2011-03-14 19:54:59 -04001962 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001963}
Nick Piggin31e6b012011-01-07 17:49:52 +11001964
Al Viroee0827c2011-02-21 23:38:09 -05001965static int do_path_lookup(int dfd, const char *name,
1966 unsigned int flags, struct nameidata *nd)
1967{
1968 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1969 if (unlikely(retval == -ECHILD))
1970 retval = path_lookupat(dfd, name, flags, nd);
1971 if (unlikely(retval == -ESTALE))
1972 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001973
1974 if (likely(!retval)) {
1975 if (unlikely(!audit_dummy_context())) {
1976 if (nd->path.dentry && nd->inode)
1977 audit_inode(name, nd->path.dentry);
1978 }
1979 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001980 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981}
1982
Al Viro79714f72012-06-15 03:01:42 +04001983/* does lookup, returns the object with parent locked */
1984struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001985{
Al Viro79714f72012-06-15 03:01:42 +04001986 struct nameidata nd;
1987 struct dentry *d;
1988 int err = do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, &nd);
1989 if (err)
1990 return ERR_PTR(err);
1991 if (nd.last_type != LAST_NORM) {
1992 path_put(&nd.path);
1993 return ERR_PTR(-EINVAL);
1994 }
1995 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Al Viro1e0ea002012-07-22 23:46:21 +04001996 d = __lookup_hash(&nd.last, nd.path.dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04001997 if (IS_ERR(d)) {
1998 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
1999 path_put(&nd.path);
2000 return d;
2001 }
2002 *path = nd.path;
2003 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002004}
2005
Al Virod1811462008-08-02 00:49:18 -04002006int kern_path(const char *name, unsigned int flags, struct path *path)
2007{
2008 struct nameidata nd;
2009 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
2010 if (!res)
2011 *path = nd.path;
2012 return res;
2013}
2014
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002015/**
2016 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2017 * @dentry: pointer to dentry of the base directory
2018 * @mnt: pointer to vfs mount of the base directory
2019 * @name: pointer to file name
2020 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002021 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002022 */
2023int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2024 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002025 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002026{
Al Viroe0a01242011-06-27 17:00:37 -04002027 struct nameidata nd;
2028 int err;
2029 nd.root.dentry = dentry;
2030 nd.root.mnt = mnt;
2031 BUG_ON(flags & LOOKUP_PARENT);
Al Viro5b6ca022011-03-09 23:04:47 -05002032 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
Al Viroe0a01242011-06-27 17:00:37 -04002033 err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
2034 if (!err)
2035 *path = nd.path;
2036 return err;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002037}
2038
James Morris057f6c02007-04-26 00:12:05 -07002039/*
2040 * Restricted form of lookup. Doesn't follow links, single-component only,
2041 * needs parent already locked. Doesn't follow mounts.
2042 * SMP-safe.
2043 */
Adrian Bunka244e162006-03-31 02:32:11 -08002044static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045{
Al Viro72bd8662012-06-10 17:17:17 -04002046 return __lookup_hash(&nd->last, nd->path.dentry, nd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047}
2048
Christoph Hellwigeead1912007-10-16 23:25:38 -07002049/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002050 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002051 * @name: pathname component to lookup
2052 * @base: base directory to lookup from
2053 * @len: maximum length @len should be interpreted to
2054 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002055 * Note that this routine is purely a helper for filesystem usage and should
2056 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07002057 * nameidata argument is passed to the filesystem methods and a filesystem
2058 * using this helper needs to be prepared for that.
2059 */
James Morris057f6c02007-04-26 00:12:05 -07002060struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2061{
James Morris057f6c02007-04-26 00:12:05 -07002062 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05002063 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002064 int err;
James Morris057f6c02007-04-26 00:12:05 -07002065
David Woodhouse2f9092e2009-04-20 23:18:37 +01002066 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
2067
Al Viro6a96ba52011-03-07 23:49:20 -05002068 this.name = name;
2069 this.len = len;
Linus Torvalds0145acc2012-03-02 14:32:59 -08002070 this.hash = full_name_hash(name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05002071 if (!len)
2072 return ERR_PTR(-EACCES);
2073
Al Viro6a96ba52011-03-07 23:49:20 -05002074 while (len--) {
2075 c = *(const unsigned char *)name++;
2076 if (c == '/' || c == '\0')
2077 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05002078 }
Al Viro5a202bc2011-03-08 14:17:44 -05002079 /*
2080 * See if the low-level filesystem might want
2081 * to use its own hash..
2082 */
2083 if (base->d_flags & DCACHE_OP_HASH) {
2084 int err = base->d_op->d_hash(base, base->d_inode, &this);
2085 if (err < 0)
2086 return ERR_PTR(err);
2087 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07002088
Miklos Szeredicda309d2012-03-26 12:54:21 +02002089 err = inode_permission(base->d_inode, MAY_EXEC);
2090 if (err)
2091 return ERR_PTR(err);
2092
Al Viro72bd8662012-06-10 17:17:17 -04002093 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002094}
2095
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002096int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2097 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098{
Al Viro2d8f3032008-07-22 09:59:21 -04002099 struct nameidata nd;
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002100 char *tmp = getname_flags(name, flags, empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04002103
2104 BUG_ON(flags & LOOKUP_PARENT);
2105
2106 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04002108 if (!err)
2109 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 }
2111 return err;
2112}
2113
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002114int user_path_at(int dfd, const char __user *name, unsigned flags,
2115 struct path *path)
2116{
Linus Torvaldsf7493e52012-03-22 16:10:40 -07002117 return user_path_at_empty(dfd, name, flags, path, NULL);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002118}
2119
Al Viro2ad94ae2008-07-21 09:32:51 -04002120static int user_path_parent(int dfd, const char __user *path,
2121 struct nameidata *nd, char **name)
2122{
2123 char *s = getname(path);
2124 int error;
2125
2126 if (IS_ERR(s))
2127 return PTR_ERR(s);
2128
2129 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
2130 if (error)
2131 putname(s);
2132 else
2133 *name = s;
2134
2135 return error;
2136}
2137
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138/*
2139 * It's inline, so penalty for filesystems that don't use sticky bit is
2140 * minimal.
2141 */
2142static inline int check_sticky(struct inode *dir, struct inode *inode)
2143{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002144 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 if (!(dir->i_mode & S_ISVTX))
2147 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002148 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002150 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 return 0;
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -08002152 return !inode_capable(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153}
2154
2155/*
2156 * Check whether we can remove a link victim from directory dir, check
2157 * whether the type of victim is right.
2158 * 1. We can't do it if dir is read-only (done in permission())
2159 * 2. We should have write and exec permissions on dir
2160 * 3. We can't remove anything from append-only dir
2161 * 4. We can't do anything with immutable dir (done in permission())
2162 * 5. If the sticky bit on dir is set we should either
2163 * a. be owner of dir, or
2164 * b. be owner of victim, or
2165 * c. have CAP_FOWNER capability
2166 * 6. If the victim is append-only or immutable we can't do antyhing with
2167 * links pointing to it.
2168 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2169 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2170 * 9. We can't remove a root or mountpoint.
2171 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2172 * nfs_async_unlink().
2173 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002174static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175{
2176 int error;
2177
2178 if (!victim->d_inode)
2179 return -ENOENT;
2180
2181 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05002182 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Al Virof419a2e2008-07-22 00:07:17 -04002184 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 if (error)
2186 return error;
2187 if (IS_APPEND(dir))
2188 return -EPERM;
2189 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08002190 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 return -EPERM;
2192 if (isdir) {
2193 if (!S_ISDIR(victim->d_inode->i_mode))
2194 return -ENOTDIR;
2195 if (IS_ROOT(victim))
2196 return -EBUSY;
2197 } else if (S_ISDIR(victim->d_inode->i_mode))
2198 return -EISDIR;
2199 if (IS_DEADDIR(dir))
2200 return -ENOENT;
2201 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2202 return -EBUSY;
2203 return 0;
2204}
2205
2206/* Check whether we can create an object with dentry child in directory
2207 * dir.
2208 * 1. We can't do it if child already exists (open has special treatment for
2209 * this case, but since we are inlined it's OK)
2210 * 2. We can't do it if dir is read-only (done in permission())
2211 * 3. We should have write and exec permissions on dir
2212 * 4. We can't do it if dir is immutable (done in permission())
2213 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002214static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215{
2216 if (child->d_inode)
2217 return -EEXIST;
2218 if (IS_DEADDIR(dir))
2219 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04002220 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221}
2222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223/*
2224 * p1 and p2 should be directories on the same fs.
2225 */
2226struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2227{
2228 struct dentry *p;
2229
2230 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07002231 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 return NULL;
2233 }
2234
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002235 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002237 p = d_ancestor(p2, p1);
2238 if (p) {
2239 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2240 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2241 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242 }
2243
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002244 p = d_ancestor(p1, p2);
2245 if (p) {
2246 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2247 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2248 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 }
2250
Ingo Molnarf2eace22006-07-03 00:25:05 -07002251 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2252 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 return NULL;
2254}
2255
2256void unlock_rename(struct dentry *p1, struct dentry *p2)
2257{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002258 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002260 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002261 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 }
2263}
2264
Al Viro4acdaf22011-07-26 01:42:34 -04002265int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002266 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002268 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 if (error)
2270 return error;
2271
Al Viroacfa4382008-12-04 10:06:33 -05002272 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 return -EACCES; /* shouldn't it be ENOSYS? */
2274 mode &= S_IALLUGO;
2275 mode |= S_IFREG;
2276 error = security_inode_create(dir, dentry, mode);
2277 if (error)
2278 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002279 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002280 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002281 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 return error;
2283}
2284
Al Viro73d049a2011-03-11 12:08:24 -05002285static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002287 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 struct inode *inode = dentry->d_inode;
2289 int error;
2290
Al Virobcda7652011-03-13 16:42:14 -04002291 /* O_PATH? */
2292 if (!acc_mode)
2293 return 0;
2294
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 if (!inode)
2296 return -ENOENT;
2297
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002298 switch (inode->i_mode & S_IFMT) {
2299 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002301 case S_IFDIR:
2302 if (acc_mode & MAY_WRITE)
2303 return -EISDIR;
2304 break;
2305 case S_IFBLK:
2306 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002307 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002309 /*FALLTHRU*/
2310 case S_IFIFO:
2311 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002313 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002314 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002315
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002316 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002317 if (error)
2318 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002319
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 /*
2321 * An append-only file must be opened in append mode for writing.
2322 */
2323 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002324 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002325 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002327 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 }
2329
2330 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002331 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002332 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002334 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002335}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Jeff Laytone1181ee2010-12-07 16:19:50 -05002337static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002338{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002339 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002340 struct inode *inode = path->dentry->d_inode;
2341 int error = get_write_access(inode);
2342 if (error)
2343 return error;
2344 /*
2345 * Refuse to truncate files with mandatory locks held on them.
2346 */
2347 error = locks_verify_locked(inode);
2348 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002349 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002350 if (!error) {
2351 error = do_truncate(path->dentry, 0,
2352 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002353 filp);
Al Viro7715b522009-12-16 03:54:00 -05002354 }
2355 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002356 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357}
2358
Dave Hansend57999e2008-02-15 14:37:27 -08002359static inline int open_to_namei_flags(int flag)
2360{
Al Viro8a5e9292011-06-25 19:15:54 -04002361 if ((flag & O_ACCMODE) == 3)
2362 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002363 return flag;
2364}
2365
Miklos Szeredid18e9002012-06-05 15:10:17 +02002366static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2367{
2368 int error = security_path_mknod(dir, dentry, mode, 0);
2369 if (error)
2370 return error;
2371
2372 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2373 if (error)
2374 return error;
2375
2376 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2377}
2378
David Howells1acf0af2012-06-14 16:13:46 +01002379/*
2380 * Attempt to atomically look up, create and open a file from a negative
2381 * dentry.
2382 *
2383 * Returns 0 if successful. The file will have been created and attached to
2384 * @file by the filesystem calling finish_open().
2385 *
2386 * Returns 1 if the file was looked up only or didn't need creating. The
2387 * caller will need to perform the open themselves. @path will have been
2388 * updated to point to the new dentry. This may be negative.
2389 *
2390 * Returns an error code otherwise.
2391 */
Al Viro2675a4e2012-06-22 12:41:10 +04002392static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2393 struct path *path, struct file *file,
2394 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04002395 bool got_write, bool need_lookup,
Al Viro2675a4e2012-06-22 12:41:10 +04002396 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002397{
2398 struct inode *dir = nd->path.dentry->d_inode;
2399 unsigned open_flag = open_to_namei_flags(op->open_flag);
2400 umode_t mode;
2401 int error;
2402 int acc_mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002403 int create_error = 0;
2404 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
2405
2406 BUG_ON(dentry->d_inode);
2407
2408 /* Don't create child dentry for a dead directory. */
2409 if (unlikely(IS_DEADDIR(dir))) {
Al Viro2675a4e2012-06-22 12:41:10 +04002410 error = -ENOENT;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002411 goto out;
2412 }
2413
Miklos Szeredi62b259d2012-08-15 13:01:24 +02002414 mode = op->mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002415 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2416 mode &= ~current_umask();
2417
Al Virof8310c52012-07-30 11:50:30 +04002418 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT)) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002419 open_flag &= ~O_TRUNC;
Al Viro47237682012-06-10 05:01:45 -04002420 *opened |= FILE_CREATED;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002421 }
2422
2423 /*
2424 * Checking write permission is tricky, bacuse we don't know if we are
2425 * going to actually need it: O_CREAT opens should work as long as the
2426 * file exists. But checking existence breaks atomicity. The trick is
2427 * to check access and if not granted clear O_CREAT from the flags.
2428 *
2429 * Another problem is returing the "right" error value (e.g. for an
2430 * O_EXCL open we want to return EEXIST not EROFS).
2431 */
Al Viro64894cf2012-07-31 00:53:35 +04002432 if (((open_flag & (O_CREAT | O_TRUNC)) ||
2433 (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2434 if (!(open_flag & O_CREAT)) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002435 /*
2436 * No O_CREATE -> atomicity not a requirement -> fall
2437 * back to lookup + open
2438 */
2439 goto no_open;
2440 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2441 /* Fall back and fail with the right error */
Al Viro64894cf2012-07-31 00:53:35 +04002442 create_error = -EROFS;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002443 goto no_open;
2444 } else {
2445 /* No side effects, safe to clear O_CREAT */
Al Viro64894cf2012-07-31 00:53:35 +04002446 create_error = -EROFS;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002447 open_flag &= ~O_CREAT;
2448 }
2449 }
2450
2451 if (open_flag & O_CREAT) {
Miklos Szeredi38227f72012-08-15 13:01:24 +02002452 error = may_o_create(&nd->path, dentry, mode);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002453 if (error) {
2454 create_error = error;
2455 if (open_flag & O_EXCL)
2456 goto no_open;
2457 open_flag &= ~O_CREAT;
2458 }
2459 }
2460
2461 if (nd->flags & LOOKUP_DIRECTORY)
2462 open_flag |= O_DIRECTORY;
2463
Al Viro30d90492012-06-22 12:40:19 +04002464 file->f_path.dentry = DENTRY_NOT_SET;
2465 file->f_path.mnt = nd->path.mnt;
2466 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
Al Viro47237682012-06-10 05:01:45 -04002467 opened);
Al Virod9585272012-06-22 12:39:14 +04002468 if (error < 0) {
Al Virod9585272012-06-22 12:39:14 +04002469 if (create_error && error == -ENOENT)
2470 error = create_error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002471 goto out;
2472 }
2473
2474 acc_mode = op->acc_mode;
Al Viro47237682012-06-10 05:01:45 -04002475 if (*opened & FILE_CREATED) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002476 fsnotify_create(dir, dentry);
2477 acc_mode = MAY_OPEN;
2478 }
2479
Al Virod9585272012-06-22 12:39:14 +04002480 if (error) { /* returned 1, that is */
Al Viro30d90492012-06-22 12:40:19 +04002481 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04002482 error = -EIO;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002483 goto out;
2484 }
Al Viro30d90492012-06-22 12:40:19 +04002485 if (file->f_path.dentry) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002486 dput(dentry);
Al Viro30d90492012-06-22 12:40:19 +04002487 dentry = file->f_path.dentry;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002488 }
Sage Weil62b2ce92012-08-15 13:30:12 -07002489 if (create_error && dentry->d_inode == NULL) {
2490 error = create_error;
2491 goto out;
2492 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02002493 goto looked_up;
2494 }
2495
2496 /*
2497 * We didn't have the inode before the open, so check open permission
2498 * here.
2499 */
Al Viro2675a4e2012-06-22 12:41:10 +04002500 error = may_open(&file->f_path, acc_mode, open_flag);
2501 if (error)
2502 fput(file);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002503
2504out:
2505 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04002506 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002507
Miklos Szeredid18e9002012-06-05 15:10:17 +02002508no_open:
2509 if (need_lookup) {
Al Viro72bd8662012-06-10 17:17:17 -04002510 dentry = lookup_real(dir, dentry, nd->flags);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002511 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002512 return PTR_ERR(dentry);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002513
2514 if (create_error) {
2515 int open_flag = op->open_flag;
2516
Al Viro2675a4e2012-06-22 12:41:10 +04002517 error = create_error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002518 if ((open_flag & O_EXCL)) {
2519 if (!dentry->d_inode)
2520 goto out;
2521 } else if (!dentry->d_inode) {
2522 goto out;
2523 } else if ((open_flag & O_TRUNC) &&
2524 S_ISREG(dentry->d_inode->i_mode)) {
2525 goto out;
2526 }
2527 /* will fail later, go on to get the right error */
2528 }
2529 }
2530looked_up:
2531 path->dentry = dentry;
2532 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04002533 return 1;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002534}
2535
Nick Piggin31e6b012011-01-07 17:49:52 +11002536/*
David Howells1acf0af2012-06-14 16:13:46 +01002537 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002538 *
2539 * Must be called with i_mutex held on parent.
2540 *
David Howells1acf0af2012-06-14 16:13:46 +01002541 * Returns 0 if the file was successfully atomically created (if necessary) and
2542 * opened. In this case the file will be returned attached to @file.
2543 *
2544 * Returns 1 if the file was not completely opened at this time, though lookups
2545 * and creations will have been performed and the dentry returned in @path will
2546 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
2547 * specified then a negative dentry may be returned.
2548 *
2549 * An error code is returned otherwise.
2550 *
2551 * FILE_CREATE will be set in @*opened if the dentry was created and will be
2552 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002553 */
Al Viro2675a4e2012-06-22 12:41:10 +04002554static int lookup_open(struct nameidata *nd, struct path *path,
2555 struct file *file,
2556 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04002557 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002558{
2559 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002560 struct inode *dir_inode = dir->d_inode;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002561 struct dentry *dentry;
2562 int error;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002563 bool need_lookup;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002564
Al Viro47237682012-06-10 05:01:45 -04002565 *opened &= ~FILE_CREATED;
Al Viro201f9562012-06-22 12:42:10 +04002566 dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002567 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002568 return PTR_ERR(dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002569
Miklos Szeredid18e9002012-06-05 15:10:17 +02002570 /* Cached positive dentry: will open in f_op->open */
2571 if (!need_lookup && dentry->d_inode)
2572 goto out_no_open;
2573
2574 if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
Al Viro64894cf2012-07-31 00:53:35 +04002575 return atomic_open(nd, dentry, path, file, op, got_write,
Al Viro47237682012-06-10 05:01:45 -04002576 need_lookup, opened);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002577 }
2578
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002579 if (need_lookup) {
2580 BUG_ON(dentry->d_inode);
2581
Al Viro72bd8662012-06-10 17:17:17 -04002582 dentry = lookup_real(dir_inode, dentry, nd->flags);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002583 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002584 return PTR_ERR(dentry);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002585 }
2586
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002587 /* Negative dentry, just create the file */
2588 if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
2589 umode_t mode = op->mode;
2590 if (!IS_POSIXACL(dir->d_inode))
2591 mode &= ~current_umask();
2592 /*
2593 * This write is needed to ensure that a
2594 * rw->ro transition does not occur between
2595 * the time when the file is created and when
2596 * a permanent write count is taken through
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002597 * the 'struct file' in finish_open().
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002598 */
Al Viro64894cf2012-07-31 00:53:35 +04002599 if (!got_write) {
2600 error = -EROFS;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002601 goto out_dput;
Al Viro64894cf2012-07-31 00:53:35 +04002602 }
Al Viro47237682012-06-10 05:01:45 -04002603 *opened |= FILE_CREATED;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002604 error = security_path_mknod(&nd->path, dentry, mode, 0);
2605 if (error)
2606 goto out_dput;
Al Viro312b63f2012-06-10 18:09:36 -04002607 error = vfs_create(dir->d_inode, dentry, mode,
2608 nd->flags & LOOKUP_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002609 if (error)
2610 goto out_dput;
2611 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02002612out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002613 path->dentry = dentry;
2614 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04002615 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002616
2617out_dput:
2618 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04002619 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002620}
2621
2622/*
Al Virofe2d35f2011-03-05 22:58:25 -05002623 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002624 */
Al Viro2675a4e2012-06-22 12:41:10 +04002625static int do_last(struct nameidata *nd, struct path *path,
2626 struct file *file, const struct open_flags *op,
2627 int *opened, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002628{
Al Viroa1e28032009-12-24 02:12:06 -05002629 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05002630 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002631 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04002632 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04002633 int acc_mode = op->acc_mode;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002634 struct inode *inode;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002635 bool symlink_ok = false;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002636 struct path save_parent = { .dentry = NULL, .mnt = NULL };
2637 bool retried = false;
Al Viro16c2cd72011-02-22 15:50:10 -05002638 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002639
Al Viroc3e380b2011-02-23 13:39:45 -05002640 nd->flags &= ~LOOKUP_PARENT;
2641 nd->flags |= op->intent;
2642
Al Viro1f36f772009-12-26 10:56:19 -05002643 switch (nd->last_type) {
2644 case LAST_DOTDOT:
Neil Brown176306f2010-05-24 16:57:56 +10002645 case LAST_DOT:
Al Virofe2d35f2011-03-05 22:58:25 -05002646 error = handle_dots(nd, nd->last_type);
2647 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002648 return error;
Al Viro1f36f772009-12-26 10:56:19 -05002649 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002650 case LAST_ROOT:
Al Viro9f1fafe2011-03-25 11:00:12 -04002651 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002652 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002653 return error;
Al Virofe2d35f2011-03-05 22:58:25 -05002654 audit_inode(pathname, nd->path.dentry);
Al Viroca344a892011-03-09 00:36:45 -05002655 if (open_flag & O_CREAT) {
Al Virofe2d35f2011-03-05 22:58:25 -05002656 error = -EISDIR;
Al Viro2675a4e2012-06-22 12:41:10 +04002657 goto out;
Al Virofe2d35f2011-03-05 22:58:25 -05002658 }
Miklos Szeredie83db162012-06-05 15:10:29 +02002659 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05002660 case LAST_BIND:
Al Viro9f1fafe2011-03-25 11:00:12 -04002661 error = complete_walk(nd);
Al Viro16c2cd72011-02-22 15:50:10 -05002662 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002663 return error;
Al Viro1f36f772009-12-26 10:56:19 -05002664 audit_inode(pathname, dir);
Miklos Szeredie83db162012-06-05 15:10:29 +02002665 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05002666 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002667
Al Viroca344a892011-03-09 00:36:45 -05002668 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05002669 if (nd->last.name[nd->last.len])
2670 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002671 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002672 symlink_ok = true;
Al Virofe2d35f2011-03-05 22:58:25 -05002673 /* we _can_ be in RCU mode here */
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002674 error = lookup_fast(nd, &nd->last, path, &inode);
Miklos Szeredi71574862012-06-05 15:10:14 +02002675 if (likely(!error))
2676 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002677
Miklos Szeredi71574862012-06-05 15:10:14 +02002678 if (error < 0)
Al Viro2675a4e2012-06-22 12:41:10 +04002679 goto out;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02002680
Miklos Szeredi71574862012-06-05 15:10:14 +02002681 BUG_ON(nd->inode != dir->d_inode);
Miklos Szeredib6183df2012-06-05 15:10:13 +02002682 } else {
2683 /* create side of things */
2684 /*
2685 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
2686 * has been cleared when we got to the last component we are
2687 * about to look up
2688 */
2689 error = complete_walk(nd);
2690 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002691 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02002692
2693 audit_inode(pathname, dir);
2694 error = -EISDIR;
2695 /* trailing slashes? */
2696 if (nd->last.name[nd->last.len])
Al Viro2675a4e2012-06-22 12:41:10 +04002697 goto out;
Al Virofe2d35f2011-03-05 22:58:25 -05002698 }
2699
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002700retry_lookup:
Al Viro64894cf2012-07-31 00:53:35 +04002701 if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
2702 error = mnt_want_write(nd->path.mnt);
2703 if (!error)
2704 got_write = true;
2705 /*
2706 * do _not_ fail yet - we might not need that or fail with
2707 * a different error; let lookup_open() decide; we'll be
2708 * dropping this one anyway.
2709 */
2710 }
Al Viroa1e28032009-12-24 02:12:06 -05002711 mutex_lock(&dir->d_inode->i_mutex);
Al Viro64894cf2012-07-31 00:53:35 +04002712 error = lookup_open(nd, path, file, op, got_write, opened);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002713 mutex_unlock(&dir->d_inode->i_mutex);
Al Viroa1e28032009-12-24 02:12:06 -05002714
Al Viro2675a4e2012-06-22 12:41:10 +04002715 if (error <= 0) {
2716 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002717 goto out;
2718
Al Viro47237682012-06-10 05:01:45 -04002719 if ((*opened & FILE_CREATED) ||
Al Viro2675a4e2012-06-22 12:41:10 +04002720 !S_ISREG(file->f_path.dentry->d_inode->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002721 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002722
Al Viro2675a4e2012-06-22 12:41:10 +04002723 audit_inode(pathname, file->f_path.dentry);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002724 goto opened;
2725 }
Al Virofb1cc552009-12-24 01:58:28 -05002726
Al Viro47237682012-06-10 05:01:45 -04002727 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05002728 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002729 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002730 will_truncate = false;
Al Virobcda7652011-03-13 16:42:14 -04002731 acc_mode = MAY_OPEN;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002732 path_to_nameidata(path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02002733 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05002734 }
2735
2736 /*
Jeff Layton3134f372012-07-25 10:19:47 -04002737 * create/update audit record if it already exists.
Al Virofb1cc552009-12-24 01:58:28 -05002738 */
Jeff Layton3134f372012-07-25 10:19:47 -04002739 if (path->dentry->d_inode)
2740 audit_inode(pathname, path->dentry);
Al Virofb1cc552009-12-24 01:58:28 -05002741
Miklos Szeredid18e9002012-06-05 15:10:17 +02002742 /*
2743 * If atomic_open() acquired write access it is dropped now due to
2744 * possible mount and symlink following (this might be optimized away if
2745 * necessary...)
2746 */
Al Viro64894cf2012-07-31 00:53:35 +04002747 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002748 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04002749 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002750 }
2751
Al Virofb1cc552009-12-24 01:58:28 -05002752 error = -EEXIST;
Al Virof8310c52012-07-30 11:50:30 +04002753 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))
Al Virofb1cc552009-12-24 01:58:28 -05002754 goto exit_dput;
2755
David Howells9875cf82011-01-14 18:45:21 +00002756 error = follow_managed(path, nd->flags);
2757 if (error < 0)
2758 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002759
Al Viroa3fbbde2011-11-07 21:21:26 +00002760 if (error)
2761 nd->flags |= LOOKUP_JUMPED;
2762
Miklos Szeredidecf3402012-05-21 17:30:08 +02002763 BUG_ON(nd->flags & LOOKUP_RCU);
2764 inode = path->dentry->d_inode;
Miklos Szeredi5f5daac2012-05-21 17:30:14 +02002765finish_lookup:
2766 /* we _can_ be in RCU mode here */
Al Virofb1cc552009-12-24 01:58:28 -05002767 error = -ENOENT;
Miklos Szeredi54c33e72012-05-21 17:30:10 +02002768 if (!inode) {
2769 path_to_nameidata(path, nd);
Al Viro2675a4e2012-06-22 12:41:10 +04002770 goto out;
Miklos Szeredi54c33e72012-05-21 17:30:10 +02002771 }
Al Viro9e67f362009-12-26 07:04:50 -05002772
Miklos Szeredid45ea862012-05-21 17:30:09 +02002773 if (should_follow_link(inode, !symlink_ok)) {
2774 if (nd->flags & LOOKUP_RCU) {
2775 if (unlikely(unlazy_walk(nd, path->dentry))) {
2776 error = -ECHILD;
Al Viro2675a4e2012-06-22 12:41:10 +04002777 goto out;
Miklos Szeredid45ea862012-05-21 17:30:09 +02002778 }
2779 }
2780 BUG_ON(inode != path->dentry->d_inode);
Al Viro2675a4e2012-06-22 12:41:10 +04002781 return 1;
Miklos Szeredid45ea862012-05-21 17:30:09 +02002782 }
Al Virofb1cc552009-12-24 01:58:28 -05002783
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002784 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path->mnt) {
2785 path_to_nameidata(path, nd);
2786 } else {
2787 save_parent.dentry = nd->path.dentry;
2788 save_parent.mnt = mntget(path->mnt);
2789 nd->path.dentry = path->dentry;
2790
2791 }
Miklos Szeredidecf3402012-05-21 17:30:08 +02002792 nd->inode = inode;
Al Viroa3fbbde2011-11-07 21:21:26 +00002793 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
2794 error = complete_walk(nd);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002795 if (error) {
2796 path_put(&save_parent);
Al Viro2675a4e2012-06-22 12:41:10 +04002797 return error;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002798 }
Al Virofb1cc552009-12-24 01:58:28 -05002799 error = -EISDIR;
Miklos Szeredi050ac842012-05-21 17:30:12 +02002800 if ((open_flag & O_CREAT) && S_ISDIR(nd->inode->i_mode))
Al Viro2675a4e2012-06-22 12:41:10 +04002801 goto out;
Miklos Szerediaf2f5542012-05-21 17:30:11 +02002802 error = -ENOTDIR;
2803 if ((nd->flags & LOOKUP_DIRECTORY) && !nd->inode->i_op->lookup)
Al Viro2675a4e2012-06-22 12:41:10 +04002804 goto out;
Miklos Szeredid7fdd7f2012-05-21 17:30:13 +02002805 audit_inode(pathname, nd->path.dentry);
Miklos Szeredie83db162012-06-05 15:10:29 +02002806finish_open:
Al Viro6c0d46c2011-03-09 00:59:59 -05002807 if (!S_ISREG(nd->inode->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002808 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05002809
Al Viro0f9d1a12011-03-09 00:13:14 -05002810 if (will_truncate) {
2811 error = mnt_want_write(nd->path.mnt);
2812 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002813 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04002814 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05002815 }
Miklos Szeredie83db162012-06-05 15:10:29 +02002816finish_open_created:
Al Virobcda7652011-03-13 16:42:14 -04002817 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002818 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002819 goto out;
Al Viro30d90492012-06-22 12:40:19 +04002820 file->f_path.mnt = nd->path.mnt;
2821 error = finish_open(file, nd->path.dentry, NULL, opened);
2822 if (error) {
Al Viro30d90492012-06-22 12:40:19 +04002823 if (error == -EOPENSTALE)
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002824 goto stale_open;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002825 goto out;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002826 }
Miklos Szeredia8277b92012-06-05 15:10:32 +02002827opened:
Al Viro2675a4e2012-06-22 12:41:10 +04002828 error = open_check_o_direct(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002829 if (error)
2830 goto exit_fput;
Al Viro2675a4e2012-06-22 12:41:10 +04002831 error = ima_file_check(file, op->acc_mode);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02002832 if (error)
2833 goto exit_fput;
2834
2835 if (will_truncate) {
Al Viro2675a4e2012-06-22 12:41:10 +04002836 error = handle_truncate(file);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02002837 if (error)
2838 goto exit_fput;
Al Viro0f9d1a12011-03-09 00:13:14 -05002839 }
Al Viroca344a892011-03-09 00:36:45 -05002840out:
Al Viro64894cf2012-07-31 00:53:35 +04002841 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002842 mnt_drop_write(nd->path.mnt);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002843 path_put(&save_parent);
Miklos Szeredie276ae62012-05-21 17:30:06 +02002844 terminate_walk(nd);
Al Viro2675a4e2012-06-22 12:41:10 +04002845 return error;
Al Virofb1cc552009-12-24 01:58:28 -05002846
Al Virofb1cc552009-12-24 01:58:28 -05002847exit_dput:
2848 path_put_conditional(path, nd);
Al Viroca344a892011-03-09 00:36:45 -05002849 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002850exit_fput:
Al Viro2675a4e2012-06-22 12:41:10 +04002851 fput(file);
2852 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002853
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002854stale_open:
2855 /* If no saved parent or already retried then can't retry */
2856 if (!save_parent.dentry || retried)
2857 goto out;
2858
2859 BUG_ON(save_parent.dentry != dir);
2860 path_put(&nd->path);
2861 nd->path = save_parent;
2862 nd->inode = dir->d_inode;
2863 save_parent.mnt = NULL;
2864 save_parent.dentry = NULL;
Al Viro64894cf2012-07-31 00:53:35 +04002865 if (got_write) {
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002866 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04002867 got_write = false;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002868 }
2869 retried = true;
2870 goto retry_lookup;
Al Virofb1cc552009-12-24 01:58:28 -05002871}
2872
Al Viro13aab422011-02-23 17:54:08 -05002873static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002874 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875{
Al Virofe2d35f2011-03-05 22:58:25 -05002876 struct file *base = NULL;
Al Viro30d90492012-06-22 12:40:19 +04002877 struct file *file;
Al Viro9850c052010-01-13 15:01:15 -05002878 struct path path;
Al Viro47237682012-06-10 05:01:45 -04002879 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05002880 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002881
Al Viro30d90492012-06-22 12:40:19 +04002882 file = get_empty_filp();
2883 if (!file)
Nick Piggin31e6b012011-01-07 17:49:52 +11002884 return ERR_PTR(-ENFILE);
2885
Al Viro30d90492012-06-22 12:40:19 +04002886 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11002887
Al Viro73d049a2011-03-11 12:08:24 -05002888 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002889 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04002890 goto out;
Nick Piggin31e6b012011-01-07 17:49:52 +11002891
Al Virofe2d35f2011-03-05 22:58:25 -05002892 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002893 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002894 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04002895 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
Al Viro2675a4e2012-06-22 12:41:10 +04002897 error = do_last(nd, &path, file, op, &opened, pathname);
2898 while (unlikely(error > 0)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002899 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05002900 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04002901 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05002902 path_put_conditional(&path, nd);
2903 path_put(&nd->path);
Al Viro2675a4e2012-06-22 12:41:10 +04002904 error = -ELOOP;
Al Viro40b39132011-03-09 16:22:18 -05002905 break;
2906 }
Kees Cook800179c2012-07-25 17:29:07 -07002907 error = may_follow_link(&link, nd);
2908 if (unlikely(error))
2909 break;
Al Viro73d049a2011-03-11 12:08:24 -05002910 nd->flags |= LOOKUP_PARENT;
2911 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04002912 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002913 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04002914 break;
2915 error = do_last(nd, &path, file, op, &opened, pathname);
Al Viro574197e2011-03-14 22:20:34 -04002916 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002917 }
Al Viro10fa8e62009-12-26 07:09:49 -05002918out:
Al Viro73d049a2011-03-11 12:08:24 -05002919 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2920 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002921 if (base)
2922 fput(base);
Al Viro2675a4e2012-06-22 12:41:10 +04002923 if (!(opened & FILE_OPENED)) {
2924 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04002925 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002926 }
Al Viro2675a4e2012-06-22 12:41:10 +04002927 if (unlikely(error)) {
2928 if (error == -EOPENSTALE) {
2929 if (flags & LOOKUP_RCU)
2930 error = -ECHILD;
2931 else
2932 error = -ESTALE;
2933 }
2934 file = ERR_PTR(error);
2935 }
2936 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937}
2938
Al Viro13aab422011-02-23 17:54:08 -05002939struct file *do_filp_open(int dfd, const char *pathname,
2940 const struct open_flags *op, int flags)
2941{
Al Viro73d049a2011-03-11 12:08:24 -05002942 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002943 struct file *filp;
2944
Al Viro73d049a2011-03-11 12:08:24 -05002945 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002946 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002947 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002948 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002949 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002950 return filp;
2951}
2952
Al Viro73d049a2011-03-11 12:08:24 -05002953struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2954 const char *name, const struct open_flags *op, int flags)
2955{
2956 struct nameidata nd;
2957 struct file *file;
2958
2959 nd.root.mnt = mnt;
2960 nd.root.dentry = dentry;
2961
2962 flags |= LOOKUP_ROOT;
2963
Al Virobcda7652011-03-13 16:42:14 -04002964 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002965 return ERR_PTR(-ELOOP);
2966
2967 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2968 if (unlikely(file == ERR_PTR(-ECHILD)))
2969 file = path_openat(-1, name, &nd, op, flags);
2970 if (unlikely(file == ERR_PTR(-ESTALE)))
2971 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2972 return file;
2973}
2974
Al Viroed75e952011-06-27 16:53:43 -04002975struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path, int is_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002977 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viroed75e952011-06-27 16:53:43 -04002978 struct nameidata nd;
Jan Karac30dabf2012-06-12 16:20:30 +02002979 int err2;
Al Viroed75e952011-06-27 16:53:43 -04002980 int error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd);
2981 if (error)
2982 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002984 /*
2985 * Yucky last component or no last component at all?
2986 * (foo/., foo/.., /////)
2987 */
Al Viroed75e952011-06-27 16:53:43 -04002988 if (nd.last_type != LAST_NORM)
2989 goto out;
2990 nd.flags &= ~LOOKUP_PARENT;
2991 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002992
Jan Karac30dabf2012-06-12 16:20:30 +02002993 /* don't fail immediately if it's r/o, at least try to report other errors */
2994 err2 = mnt_want_write(nd.path.mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002995 /*
2996 * Do the final lookup.
2997 */
Al Viroed75e952011-06-27 16:53:43 -04002998 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2999 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003001 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003002
Al Viroa8104a92012-07-20 02:25:00 +04003003 error = -EEXIST;
Al Viroe9baf6e2008-05-15 04:49:12 -04003004 if (dentry->d_inode)
Al Viroa8104a92012-07-20 02:25:00 +04003005 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003006 /*
3007 * Special case - lookup gave negative, but... we had foo/bar/
3008 * From the vfs_mknod() POV we just have a negative dentry -
3009 * all is fine. Let's be bastards - you had / on the end, you've
3010 * been asking for (non-existent) directory. -ENOENT for you.
3011 */
Al Viroed75e952011-06-27 16:53:43 -04003012 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003013 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003014 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003015 }
Jan Karac30dabf2012-06-12 16:20:30 +02003016 if (unlikely(err2)) {
3017 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003018 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003019 }
Al Viroed75e952011-06-27 16:53:43 -04003020 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022fail:
Al Viroa8104a92012-07-20 02:25:00 +04003023 dput(dentry);
3024 dentry = ERR_PTR(error);
3025unlock:
Al Viroed75e952011-06-27 16:53:43 -04003026 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Karac30dabf2012-06-12 16:20:30 +02003027 if (!err2)
3028 mnt_drop_write(nd.path.mnt);
Al Viroed75e952011-06-27 16:53:43 -04003029out:
3030 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 return dentry;
3032}
Al Virodae6ad82011-06-26 11:50:15 -04003033EXPORT_SYMBOL(kern_path_create);
3034
Al Viro921a1652012-07-20 01:15:31 +04003035void done_path_create(struct path *path, struct dentry *dentry)
3036{
3037 dput(dentry);
3038 mutex_unlock(&path->dentry->d_inode->i_mutex);
Al Viroa8104a92012-07-20 02:25:00 +04003039 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003040 path_put(path);
3041}
3042EXPORT_SYMBOL(done_path_create);
3043
Al Virodae6ad82011-06-26 11:50:15 -04003044struct dentry *user_path_create(int dfd, const char __user *pathname, struct path *path, int is_dir)
3045{
3046 char *tmp = getname(pathname);
3047 struct dentry *res;
3048 if (IS_ERR(tmp))
3049 return ERR_CAST(tmp);
3050 res = kern_path_create(dfd, tmp, path, is_dir);
3051 putname(tmp);
3052 return res;
3053}
3054EXPORT_SYMBOL(user_path_create);
3055
Al Viro1a67aaf2011-07-26 01:52:52 -04003056int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003058 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059
3060 if (error)
3061 return error;
3062
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003063 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 return -EPERM;
3065
Al Viroacfa4382008-12-04 10:06:33 -05003066 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 return -EPERM;
3068
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003069 error = devcgroup_inode_mknod(mode, dev);
3070 if (error)
3071 return error;
3072
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 error = security_inode_mknod(dir, dentry, mode, dev);
3074 if (error)
3075 return error;
3076
Linus Torvalds1da177e2005-04-16 15:20:36 -07003077 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003078 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003079 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 return error;
3081}
3082
Al Virof69aac02011-07-26 04:31:40 -04003083static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003084{
3085 switch (mode & S_IFMT) {
3086 case S_IFREG:
3087 case S_IFCHR:
3088 case S_IFBLK:
3089 case S_IFIFO:
3090 case S_IFSOCK:
3091 case 0: /* zero mode translates to S_IFREG */
3092 return 0;
3093 case S_IFDIR:
3094 return -EPERM;
3095 default:
3096 return -EINVAL;
3097 }
3098}
3099
Al Viro8208a222011-07-25 17:32:17 -04003100SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003101 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102{
Al Viro2ad94ae2008-07-21 09:32:51 -04003103 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003104 struct path path;
3105 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Al Viro8e4bfca2012-07-20 01:17:26 +04003107 error = may_mknod(mode);
3108 if (error)
3109 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110
Al Virodae6ad82011-06-26 11:50:15 -04003111 dentry = user_path_create(dfd, filename, &path, 0);
3112 if (IS_ERR(dentry))
3113 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003114
Al Virodae6ad82011-06-26 11:50:15 -04003115 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003116 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003117 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003118 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003119 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003120 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04003122 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 break;
3124 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04003125 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 new_decode_dev(dev));
3127 break;
3128 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003129 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 }
Al Viroa8104a92012-07-20 02:25:00 +04003132out:
Al Viro921a1652012-07-20 01:15:31 +04003133 done_path_create(&path, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 return error;
3135}
3136
Al Viro8208a222011-07-25 17:32:17 -04003137SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003138{
3139 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3140}
3141
Al Viro18bb1db2011-07-26 01:41:39 -04003142int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003144 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003145 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146
3147 if (error)
3148 return error;
3149
Al Viroacfa4382008-12-04 10:06:33 -05003150 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 return -EPERM;
3152
3153 mode &= (S_IRWXUGO|S_ISVTX);
3154 error = security_inode_mkdir(dir, dentry, mode);
3155 if (error)
3156 return error;
3157
Al Viro8de52772012-02-06 12:45:27 -05003158 if (max_links && dir->i_nlink >= max_links)
3159 return -EMLINK;
3160
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003162 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003163 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 return error;
3165}
3166
Al Viroa218d0f2011-11-21 14:59:34 -05003167SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168{
Dave Hansen6902d922006-09-30 23:29:01 -07003169 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003170 struct path path;
3171 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172
Al Virodae6ad82011-06-26 11:50:15 -04003173 dentry = user_path_create(dfd, pathname, &path, 1);
Dave Hansen6902d922006-09-30 23:29:01 -07003174 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003175 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003176
Al Virodae6ad82011-06-26 11:50:15 -04003177 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003178 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003179 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003180 if (!error)
3181 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003182 done_path_create(&path, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 return error;
3184}
3185
Al Viroa218d0f2011-11-21 14:59:34 -05003186SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003187{
3188 return sys_mkdirat(AT_FDCWD, pathname, mode);
3189}
3190
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191/*
Sage Weila71905f2011-05-24 13:06:08 -07003192 * The dentry_unhash() helper will try to drop the dentry early: we
J. Bruce Fieldsc0d02592012-02-15 11:48:40 -05003193 * should have a usage count of 1 if we're the only user of this
Sage Weila71905f2011-05-24 13:06:08 -07003194 * dentry, and if that is true (possibly after pruning the dcache),
3195 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 *
3197 * A low-level filesystem can, if it choses, legally
3198 * do a
3199 *
3200 * if (!d_unhashed(dentry))
3201 * return -EBUSY;
3202 *
3203 * if it cannot handle the case of removing a directory
3204 * that is still in use by something else..
3205 */
3206void dentry_unhash(struct dentry *dentry)
3207{
Vasily Averindc168422006-12-06 20:37:07 -08003208 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 spin_lock(&dentry->d_lock);
Sage Weil64252c72011-05-24 13:06:05 -07003210 if (dentry->d_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 __d_drop(dentry);
3212 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213}
3214
3215int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3216{
3217 int error = may_delete(dir, dentry, 1);
3218
3219 if (error)
3220 return error;
3221
Al Viroacfa4382008-12-04 10:06:33 -05003222 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 return -EPERM;
3224
Al Viro1d2ef592011-09-14 18:55:41 +01003225 dget(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003226 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227
Sage Weil912dbc12011-05-24 13:06:11 -07003228 error = -EBUSY;
3229 if (d_mountpoint(dentry))
3230 goto out;
3231
3232 error = security_inode_rmdir(dir, dentry);
3233 if (error)
3234 goto out;
3235
Sage Weil3cebde22011-05-29 21:20:59 -07003236 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003237 error = dir->i_op->rmdir(dir, dentry);
3238 if (error)
3239 goto out;
3240
3241 dentry->d_inode->i_flags |= S_DEAD;
3242 dont_mount(dentry);
3243
3244out:
3245 mutex_unlock(&dentry->d_inode->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01003246 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003247 if (!error)
3248 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 return error;
3250}
3251
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003252static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003253{
3254 int error = 0;
3255 char * name;
3256 struct dentry *dentry;
3257 struct nameidata nd;
3258
Al Viro2ad94ae2008-07-21 09:32:51 -04003259 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04003261 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
3263 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003264 case LAST_DOTDOT:
3265 error = -ENOTEMPTY;
3266 goto exit1;
3267 case LAST_DOT:
3268 error = -EINVAL;
3269 goto exit1;
3270 case LAST_ROOT:
3271 error = -EBUSY;
3272 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003274
3275 nd.flags &= ~LOOKUP_PARENT;
Jan Karac30dabf2012-06-12 16:20:30 +02003276 error = mnt_want_write(nd.path.mnt);
3277 if (error)
3278 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003279
Jan Blunck4ac91372008-02-14 19:34:32 -08003280 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08003281 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003283 if (IS_ERR(dentry))
3284 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003285 if (!dentry->d_inode) {
3286 error = -ENOENT;
3287 goto exit3;
3288 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003289 error = security_path_rmdir(&nd.path, dentry);
3290 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003291 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08003292 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08003293exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003294 dput(dentry);
3295exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08003296 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Karac30dabf2012-06-12 16:20:30 +02003297 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003299 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 putname(name);
3301 return error;
3302}
3303
Heiko Carstens3cdad422009-01-14 14:14:22 +01003304SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003305{
3306 return do_rmdir(AT_FDCWD, pathname);
3307}
3308
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309int vfs_unlink(struct inode *dir, struct dentry *dentry)
3310{
3311 int error = may_delete(dir, dentry, 0);
3312
3313 if (error)
3314 return error;
3315
Al Viroacfa4382008-12-04 10:06:33 -05003316 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 return -EPERM;
3318
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003319 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 if (d_mountpoint(dentry))
3321 error = -EBUSY;
3322 else {
3323 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003324 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003326 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04003327 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05003328 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003330 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003331
3332 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3333 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08003334 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 }
Robert Love0eeca282005-07-12 17:06:03 -04003337
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 return error;
3339}
3340
3341/*
3342 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003343 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 * writeout happening, and we don't want to prevent access to the directory
3345 * while waiting on the I/O.
3346 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003347static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348{
Al Viro2ad94ae2008-07-21 09:32:51 -04003349 int error;
3350 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 struct dentry *dentry;
3352 struct nameidata nd;
3353 struct inode *inode = NULL;
3354
Al Viro2ad94ae2008-07-21 09:32:51 -04003355 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04003357 return error;
3358
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 error = -EISDIR;
3360 if (nd.last_type != LAST_NORM)
3361 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003362
3363 nd.flags &= ~LOOKUP_PARENT;
Jan Karac30dabf2012-06-12 16:20:30 +02003364 error = mnt_want_write(nd.path.mnt);
3365 if (error)
3366 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003367
Jan Blunck4ac91372008-02-14 19:34:32 -08003368 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08003369 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 error = PTR_ERR(dentry);
3371 if (!IS_ERR(dentry)) {
3372 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03003373 if (nd.last.name[nd.last.len])
3374 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 inode = dentry->d_inode;
Török Edwin50338b82011-06-16 00:06:14 +03003376 if (!inode)
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003377 goto slashes;
3378 ihold(inode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003379 error = security_path_unlink(&nd.path, dentry);
3380 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003381 goto exit2;
Jan Blunck4ac91372008-02-14 19:34:32 -08003382 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Jan Karac30dabf2012-06-12 16:20:30 +02003383exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 dput(dentry);
3385 }
Jan Blunck4ac91372008-02-14 19:34:32 -08003386 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 if (inode)
3388 iput(inode); /* truncate the inode here */
Jan Karac30dabf2012-06-12 16:20:30 +02003389 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003391 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 putname(name);
3393 return error;
3394
3395slashes:
3396 error = !dentry->d_inode ? -ENOENT :
3397 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
3398 goto exit2;
3399}
3400
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003401SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003402{
3403 if ((flag & ~AT_REMOVEDIR) != 0)
3404 return -EINVAL;
3405
3406 if (flag & AT_REMOVEDIR)
3407 return do_rmdir(dfd, pathname);
3408
3409 return do_unlinkat(dfd, pathname);
3410}
3411
Heiko Carstens3480b252009-01-14 14:14:16 +01003412SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003413{
3414 return do_unlinkat(AT_FDCWD, pathname);
3415}
3416
Miklos Szeredidb2e7472008-06-24 16:50:16 +02003417int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003419 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420
3421 if (error)
3422 return error;
3423
Al Viroacfa4382008-12-04 10:06:33 -05003424 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 return -EPERM;
3426
3427 error = security_inode_symlink(dir, dentry, oldname);
3428 if (error)
3429 return error;
3430
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003432 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003433 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 return error;
3435}
3436
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003437SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3438 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439{
Al Viro2ad94ae2008-07-21 09:32:51 -04003440 int error;
3441 char *from;
Dave Hansen6902d922006-09-30 23:29:01 -07003442 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003443 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
3445 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04003446 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003448
Al Virodae6ad82011-06-26 11:50:15 -04003449 dentry = user_path_create(newdfd, newname, &path, 0);
Dave Hansen6902d922006-09-30 23:29:01 -07003450 error = PTR_ERR(dentry);
3451 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003452 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07003453
Al Virodae6ad82011-06-26 11:50:15 -04003454 error = security_path_symlink(&path, dentry, from);
Al Viroa8104a92012-07-20 02:25:00 +04003455 if (!error)
3456 error = vfs_symlink(path.dentry->d_inode, dentry, from);
Al Viro921a1652012-07-20 01:15:31 +04003457 done_path_create(&path, dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003458out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 putname(from);
3460 return error;
3461}
3462
Heiko Carstens3480b252009-01-14 14:14:16 +01003463SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003464{
3465 return sys_symlinkat(oldname, AT_FDCWD, newname);
3466}
3467
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
3469{
3470 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05003471 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 int error;
3473
3474 if (!inode)
3475 return -ENOENT;
3476
Miklos Szeredia95164d2008-07-30 15:08:48 +02003477 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 if (error)
3479 return error;
3480
3481 if (dir->i_sb != inode->i_sb)
3482 return -EXDEV;
3483
3484 /*
3485 * A link to an append-only or immutable file cannot be created.
3486 */
3487 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3488 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05003489 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003491 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 return -EPERM;
3493
3494 error = security_inode_link(old_dentry, dir, new_dentry);
3495 if (error)
3496 return error;
3497
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003498 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303499 /* Make sure we don't allow creating hardlink to an unlinked file */
3500 if (inode->i_nlink == 0)
3501 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05003502 else if (max_links && inode->i_nlink >= max_links)
3503 error = -EMLINK;
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303504 else
3505 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003506 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003507 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003508 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 return error;
3510}
3511
3512/*
3513 * Hardlinks are often used in delicate situations. We avoid
3514 * security-related surprises by not following symlinks on the
3515 * newname. --KAB
3516 *
3517 * We don't follow them on the oldname either to be compatible
3518 * with linux 2.0, and to avoid hard-linking to directories
3519 * and other special files. --ADM
3520 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003521SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
3522 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523{
3524 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003525 struct path old_path, new_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303526 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303529 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003530 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303531 /*
3532 * To use null names we require CAP_DAC_READ_SEARCH
3533 * This ensures that not everyone will be able to create
3534 * handlink using the passed filedescriptor.
3535 */
3536 if (flags & AT_EMPTY_PATH) {
3537 if (!capable(CAP_DAC_READ_SEARCH))
3538 return -ENOENT;
3539 how = LOOKUP_EMPTY;
3540 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003541
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303542 if (flags & AT_SYMLINK_FOLLOW)
3543 how |= LOOKUP_FOLLOW;
3544
3545 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04003547 return error;
3548
Al Virodae6ad82011-06-26 11:50:15 -04003549 new_dentry = user_path_create(newdfd, newname, &new_path, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003551 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003552 goto out;
3553
3554 error = -EXDEV;
3555 if (old_path.mnt != new_path.mnt)
3556 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07003557 error = may_linkat(&old_path);
3558 if (unlikely(error))
3559 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04003560 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003561 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003562 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04003563 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
Dave Hansen75c3f292008-02-15 14:37:45 -08003564out_dput:
Al Viro921a1652012-07-20 01:15:31 +04003565 done_path_create(&new_path, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566out:
Al Viro2d8f3032008-07-22 09:59:21 -04003567 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568
3569 return error;
3570}
3571
Heiko Carstens3480b252009-01-14 14:14:16 +01003572SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003573{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003574 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003575}
3576
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577/*
3578 * The worst of all namespace operations - renaming directory. "Perverted"
3579 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3580 * Problems:
3581 * a) we can get into loop creation. Check is done in is_subdir().
3582 * b) race potential - two innocent renames can create a loop together.
3583 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003584 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585 * story.
3586 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003587 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 * whether the target exists). Solution: try to be smart with locking
3589 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003590 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 * move will be locked. Thus we can rank directories by the tree
3592 * (ancestors first) and rank all non-directories after them.
3593 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003594 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 * HOWEVER, it relies on the assumption that any object with ->lookup()
3596 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3597 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07003598 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003599 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003601 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 * locking].
3603 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07003604static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3605 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606{
3607 int error = 0;
Sage Weil9055cba2011-05-24 13:06:12 -07003608 struct inode *target = new_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05003609 unsigned max_links = new_dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
3611 /*
3612 * If we are going to change the parent - check write permissions,
3613 * we'll need to flip '..'.
3614 */
3615 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04003616 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 if (error)
3618 return error;
3619 }
3620
3621 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3622 if (error)
3623 return error;
3624
Al Viro1d2ef592011-09-14 18:55:41 +01003625 dget(new_dentry);
Al Virod83c49f2010-04-30 17:17:09 -04003626 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003627 mutex_lock(&target->i_mutex);
Sage Weil9055cba2011-05-24 13:06:12 -07003628
3629 error = -EBUSY;
3630 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3631 goto out;
3632
Al Viro8de52772012-02-06 12:45:27 -05003633 error = -EMLINK;
3634 if (max_links && !target && new_dir != old_dir &&
3635 new_dir->i_nlink >= max_links)
3636 goto out;
3637
Sage Weil3cebde22011-05-29 21:20:59 -07003638 if (target)
3639 shrink_dcache_parent(new_dentry);
Sage Weil9055cba2011-05-24 13:06:12 -07003640 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3641 if (error)
3642 goto out;
3643
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 if (target) {
Sage Weil9055cba2011-05-24 13:06:12 -07003645 target->i_flags |= S_DEAD;
3646 dont_mount(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 }
Sage Weil9055cba2011-05-24 13:06:12 -07003648out:
3649 if (target)
3650 mutex_unlock(&target->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01003651 dput(new_dentry);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003652 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003653 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3654 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 return error;
3656}
3657
Adrian Bunk75c96f82005-05-05 16:16:09 -07003658static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3659 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660{
Sage Weil51892bb2011-05-24 13:06:13 -07003661 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 int error;
3663
3664 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3665 if (error)
3666 return error;
3667
3668 dget(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003670 mutex_lock(&target->i_mutex);
Sage Weil51892bb2011-05-24 13:06:13 -07003671
3672 error = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
Sage Weil51892bb2011-05-24 13:06:13 -07003674 goto out;
3675
3676 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3677 if (error)
3678 goto out;
3679
3680 if (target)
3681 dont_mount(new_dentry);
3682 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3683 d_move(old_dentry, new_dentry);
3684out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003686 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 dput(new_dentry);
3688 return error;
3689}
3690
3691int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3692 struct inode *new_dir, struct dentry *new_dentry)
3693{
3694 int error;
3695 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003696 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697
3698 if (old_dentry->d_inode == new_dentry->d_inode)
3699 return 0;
3700
3701 error = may_delete(old_dir, old_dentry, is_dir);
3702 if (error)
3703 return error;
3704
3705 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003706 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 else
3708 error = may_delete(new_dir, new_dentry, is_dir);
3709 if (error)
3710 return error;
3711
Al Viroacfa4382008-12-04 10:06:33 -05003712 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 return -EPERM;
3714
Robert Love0eeca282005-07-12 17:06:03 -04003715 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3716
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 if (is_dir)
3718 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3719 else
3720 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003721 if (!error)
3722 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003723 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003724 fsnotify_oldname_free(old_name);
3725
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726 return error;
3727}
3728
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003729SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3730 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731{
Al Viro2ad94ae2008-07-21 09:32:51 -04003732 struct dentry *old_dir, *new_dir;
3733 struct dentry *old_dentry, *new_dentry;
3734 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003736 char *from;
3737 char *to;
3738 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739
Al Viro2ad94ae2008-07-21 09:32:51 -04003740 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 if (error)
3742 goto exit;
3743
Al Viro2ad94ae2008-07-21 09:32:51 -04003744 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 if (error)
3746 goto exit1;
3747
3748 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003749 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 goto exit2;
3751
Jan Blunck4ac91372008-02-14 19:34:32 -08003752 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 error = -EBUSY;
3754 if (oldnd.last_type != LAST_NORM)
3755 goto exit2;
3756
Jan Blunck4ac91372008-02-14 19:34:32 -08003757 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 if (newnd.last_type != LAST_NORM)
3759 goto exit2;
3760
Jan Karac30dabf2012-06-12 16:20:30 +02003761 error = mnt_want_write(oldnd.path.mnt);
3762 if (error)
3763 goto exit2;
3764
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003765 oldnd.flags &= ~LOOKUP_PARENT;
3766 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003767 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003768
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 trap = lock_rename(new_dir, old_dir);
3770
Christoph Hellwig49705b72005-11-08 21:35:06 -08003771 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 error = PTR_ERR(old_dentry);
3773 if (IS_ERR(old_dentry))
3774 goto exit3;
3775 /* source must exist */
3776 error = -ENOENT;
3777 if (!old_dentry->d_inode)
3778 goto exit4;
3779 /* unless the source is a directory trailing slashes give -ENOTDIR */
3780 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3781 error = -ENOTDIR;
3782 if (oldnd.last.name[oldnd.last.len])
3783 goto exit4;
3784 if (newnd.last.name[newnd.last.len])
3785 goto exit4;
3786 }
3787 /* source should not be ancestor of target */
3788 error = -EINVAL;
3789 if (old_dentry == trap)
3790 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003791 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 error = PTR_ERR(new_dentry);
3793 if (IS_ERR(new_dentry))
3794 goto exit4;
3795 /* target should not be an ancestor of source */
3796 error = -ENOTEMPTY;
3797 if (new_dentry == trap)
3798 goto exit5;
3799
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003800 error = security_path_rename(&oldnd.path, old_dentry,
3801 &newnd.path, new_dentry);
3802 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003803 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 error = vfs_rename(old_dir->d_inode, old_dentry,
3805 new_dir->d_inode, new_dentry);
3806exit5:
3807 dput(new_dentry);
3808exit4:
3809 dput(old_dentry);
3810exit3:
3811 unlock_rename(new_dir, old_dir);
Jan Karac30dabf2012-06-12 16:20:30 +02003812 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003814 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003815 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003817 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003819exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 return error;
3821}
3822
Heiko Carstensa26eab22009-01-14 14:14:17 +01003823SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003824{
3825 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3826}
3827
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3829{
3830 int len;
3831
3832 len = PTR_ERR(link);
3833 if (IS_ERR(link))
3834 goto out;
3835
3836 len = strlen(link);
3837 if (len > (unsigned) buflen)
3838 len = buflen;
3839 if (copy_to_user(buffer, link, len))
3840 len = -EFAULT;
3841out:
3842 return len;
3843}
3844
3845/*
3846 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3847 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3848 * using) it for any given inode is up to filesystem.
3849 */
3850int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3851{
3852 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003853 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003854 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003855
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003857 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003858 if (IS_ERR(cookie))
3859 return PTR_ERR(cookie);
3860
3861 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3862 if (dentry->d_inode->i_op->put_link)
3863 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3864 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865}
3866
3867int vfs_follow_link(struct nameidata *nd, const char *link)
3868{
3869 return __vfs_follow_link(nd, link);
3870}
3871
3872/* get the link contents into pagecache */
3873static char *page_getlink(struct dentry * dentry, struct page **ppage)
3874{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003875 char *kaddr;
3876 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003878 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003880 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003882 kaddr = kmap(page);
3883 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3884 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885}
3886
3887int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3888{
3889 struct page *page = NULL;
3890 char *s = page_getlink(dentry, &page);
3891 int res = vfs_readlink(dentry,buffer,buflen,s);
3892 if (page) {
3893 kunmap(page);
3894 page_cache_release(page);
3895 }
3896 return res;
3897}
3898
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003899void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003901 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003903 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904}
3905
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003906void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003908 struct page *page = cookie;
3909
3910 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 kunmap(page);
3912 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 }
3914}
3915
Nick Piggin54566b22009-01-04 12:00:53 -08003916/*
3917 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3918 */
3919int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920{
3921 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003922 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003923 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003924 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003926 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3927 if (nofs)
3928 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929
NeilBrown7e53cac2006-03-25 03:07:57 -08003930retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003931 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003932 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003934 goto fail;
3935
Cong Wange8e3c3d2011-11-25 23:14:27 +08003936 kaddr = kmap_atomic(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 memcpy(kaddr, symname, len-1);
Cong Wange8e3c3d2011-11-25 23:14:27 +08003938 kunmap_atomic(kaddr);
Nick Pigginafddba42007-10-16 01:25:01 -07003939
3940 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3941 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 if (err < 0)
3943 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003944 if (err < len-1)
3945 goto retry;
3946
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 mark_inode_dirty(inode);
3948 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949fail:
3950 return err;
3951}
3952
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003953int page_symlink(struct inode *inode, const char *symname, int len)
3954{
3955 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003956 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003957}
3958
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003959const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 .readlink = generic_readlink,
3961 .follow_link = page_follow_link_light,
3962 .put_link = page_put_link,
3963};
3964
Al Viro2d8f3032008-07-22 09:59:21 -04003965EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003966EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967EXPORT_SYMBOL(follow_down);
3968EXPORT_SYMBOL(follow_up);
Al Virof6d2ac52012-08-26 12:55:54 -04003969EXPORT_SYMBOL(get_write_access); /* nfsd */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970EXPORT_SYMBOL(getname);
3971EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972EXPORT_SYMBOL(lookup_one_len);
3973EXPORT_SYMBOL(page_follow_link_light);
3974EXPORT_SYMBOL(page_put_link);
3975EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003976EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977EXPORT_SYMBOL(page_symlink);
3978EXPORT_SYMBOL(page_symlink_inode_operations);
Al Virod1811462008-08-02 00:49:18 -04003979EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003980EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003981EXPORT_SYMBOL(inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982EXPORT_SYMBOL(unlock_rename);
3983EXPORT_SYMBOL(vfs_create);
3984EXPORT_SYMBOL(vfs_follow_link);
3985EXPORT_SYMBOL(vfs_link);
3986EXPORT_SYMBOL(vfs_mkdir);
3987EXPORT_SYMBOL(vfs_mknod);
3988EXPORT_SYMBOL(generic_permission);
3989EXPORT_SYMBOL(vfs_readlink);
3990EXPORT_SYMBOL(vfs_rename);
3991EXPORT_SYMBOL(vfs_rmdir);
3992EXPORT_SYMBOL(vfs_symlink);
3993EXPORT_SYMBOL(vfs_unlink);
3994EXPORT_SYMBOL(dentry_unhash);
3995EXPORT_SYMBOL(generic_readlink);