blob: 3861d85f848807dc2a7c97b58920c1fb3969e176 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/namei.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/*
8 * Some corrections by tytso.
9 */
10
11/* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
12 * lookup logic.
13 */
14/* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
15 */
16
17#include <linux/init.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050018#include <linux/export.h>
David S. Miller44696902012-05-23 20:12:50 -070019#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/slab.h>
21#include <linux/fs.h>
22#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/pagemap.h>
Robert Love0eeca282005-07-12 17:06:03 -040024#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/personality.h>
26#include <linux/security.h>
Mimi Zohar6146f0d2009-02-04 09:06:57 -050027#include <linux/ima.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/syscalls.h>
29#include <linux/mount.h>
30#include <linux/audit.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080031#include <linux/capability.h>
Trond Myklebust834f2a42005-10-18 14:20:16 -070032#include <linux/file.h>
Ulrich Drepper5590ff02006-01-18 17:43:53 -080033#include <linux/fcntl.h>
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070034#include <linux/device_cgroup.h>
Al Viro5ad4e532009-03-29 19:50:06 -040035#include <linux/fs_struct.h>
Linus Torvaldse77819e2011-07-22 19:30:19 -070036#include <linux/posix_acl.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/uaccess.h>
38
Eric Parise81e3f42009-12-04 15:47:36 -050039#include "internal.h"
Al Viroc7105362011-11-24 18:22:03 -050040#include "mount.h"
Eric Parise81e3f42009-12-04 15:47:36 -050041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042/* [Feb-1997 T. Schoebel-Theuer]
43 * Fundamental changes in the pathname lookup mechanisms (namei)
44 * were necessary because of omirr. The reason is that omirr needs
45 * to know the _real_ pathname, not the user-supplied one, in case
46 * of symlinks (and also when transname replacements occur).
47 *
48 * The new code replaces the old recursive symlink resolution with
49 * an iterative one (in case of non-nested symlink chains). It does
50 * this with calls to <fs>_follow_link().
51 * As a side effect, dir_namei(), _namei() and follow_link() are now
52 * replaced with a single function lookup_dentry() that can handle all
53 * the special cases of the former code.
54 *
55 * With the new dcache, the pathname is stored at each inode, at least as
56 * long as the refcount of the inode is positive. As a side effect, the
57 * size of the dcache depends on the inode cache and thus is dynamic.
58 *
59 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
60 * resolution to correspond with current state of the code.
61 *
62 * Note that the symlink resolution is not *completely* iterative.
63 * There is still a significant amount of tail- and mid- recursion in
64 * the algorithm. Also, note that <fs>_readlink() is not used in
65 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
66 * may return different results than <fs>_follow_link(). Many virtual
67 * filesystems (including /proc) exhibit this behavior.
68 */
69
70/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
71 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
72 * and the name already exists in form of a symlink, try to create the new
73 * name indicated by the symlink. The old code always complained that the
74 * name already exists, due to not following the symlink even if its target
75 * is nonexistent. The new semantics affects also mknod() and link() when
Lucas De Marchi25985ed2011-03-30 22:57:33 -030076 * the name is a symlink pointing to a non-existent name.
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 *
78 * I don't know which semantics is the right one, since I have no access
79 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
80 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
81 * "old" one. Personally, I think the new semantics is much more logical.
82 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
83 * file does succeed in both HP-UX and SunOs, but not in Solaris
84 * and in the old Linux semantics.
85 */
86
87/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
88 * semantics. See the comments in "open_namei" and "do_link" below.
89 *
90 * [10-Sep-98 Alan Modra] Another symlink change.
91 */
92
93/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
94 * inside the path - always follow.
95 * in the last component in creation/removal/renaming - never follow.
96 * if LOOKUP_FOLLOW passed - follow.
97 * if the pathname has trailing slashes - follow.
98 * otherwise - don't follow.
99 * (applied in that order).
100 *
101 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
102 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
103 * During the 2.4 we need to fix the userland stuff depending on it -
104 * hopefully we will be able to get rid of that wart in 2.5. So far only
105 * XEmacs seems to be relying on it...
106 */
107/*
108 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800109 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 * any extra contention...
111 */
112
113/* In order to reduce some races, while at the same time doing additional
114 * checking and hopefully speeding things up, we copy filenames to the
115 * kernel data space before using them..
116 *
117 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
118 * PATH_MAX includes the nul terminator --RR.
119 */
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +0100120static char *getname_flags(const char __user *filename, int flags, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700122 char *result = __getname(), *err;
123 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700125 if (unlikely(!result))
Eric Paris4043cde2012-01-03 14:23:08 -0500126 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700128 len = strncpy_from_user(result, filename, PATH_MAX);
129 err = ERR_PTR(len);
130 if (unlikely(len < 0))
131 goto error;
132
133 /* The empty path is special. */
134 if (unlikely(!len)) {
135 if (empty)
Eric Paris4043cde2012-01-03 14:23:08 -0500136 *empty = 1;
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700137 err = ERR_PTR(-ENOENT);
138 if (!(flags & LOOKUP_EMPTY))
139 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700141
142 err = ERR_PTR(-ENAMETOOLONG);
143 if (likely(len < PATH_MAX)) {
144 audit_getname(result);
145 return result;
146 }
147
148error:
149 __putname(result);
150 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Al Virof52e0c12011-03-14 18:56:51 -0400153char *getname(const char __user * filename)
154{
Linus Torvaldsf7493e52012-03-22 16:10:40 -0700155 return getname_flags(filename, 0, NULL);
Al Virof52e0c12011-03-14 18:56:51 -0400156}
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158#ifdef CONFIG_AUDITSYSCALL
159void putname(const char *name)
160{
Al Viro5ac3a9c2006-07-16 06:38:45 -0400161 if (unlikely(!audit_dummy_context()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 audit_putname(name);
163 else
164 __putname(name);
165}
166EXPORT_SYMBOL(putname);
167#endif
168
Linus Torvaldse77819e2011-07-22 19:30:19 -0700169static int check_acl(struct inode *inode, int mask)
170{
Linus Torvalds84635d62011-07-25 22:47:03 -0700171#ifdef CONFIG_FS_POSIX_ACL
Linus Torvaldse77819e2011-07-22 19:30:19 -0700172 struct posix_acl *acl;
173
Linus Torvaldse77819e2011-07-22 19:30:19 -0700174 if (mask & MAY_NOT_BLOCK) {
Al Viro35678662011-08-02 21:32:13 -0400175 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
176 if (!acl)
Linus Torvaldse77819e2011-07-22 19:30:19 -0700177 return -EAGAIN;
Al Viro35678662011-08-02 21:32:13 -0400178 /* no ->get_acl() calls in RCU mode... */
179 if (acl == ACL_NOT_CACHED)
180 return -ECHILD;
Ari Savolainen206b1d02011-08-06 19:43:07 +0300181 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
Linus Torvaldse77819e2011-07-22 19:30:19 -0700182 }
183
184 acl = get_cached_acl(inode, ACL_TYPE_ACCESS);
185
186 /*
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200187 * A filesystem can force a ACL callback by just never filling the
188 * ACL cache. But normally you'd fill the cache either at inode
189 * instantiation time, or on the first ->get_acl call.
Linus Torvaldse77819e2011-07-22 19:30:19 -0700190 *
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200191 * If the filesystem doesn't have a get_acl() function at all, we'll
192 * just create the negative cache entry.
Linus Torvaldse77819e2011-07-22 19:30:19 -0700193 */
194 if (acl == ACL_NOT_CACHED) {
Christoph Hellwig4e34e712011-07-23 17:37:31 +0200195 if (inode->i_op->get_acl) {
196 acl = inode->i_op->get_acl(inode, ACL_TYPE_ACCESS);
197 if (IS_ERR(acl))
198 return PTR_ERR(acl);
199 } else {
200 set_cached_acl(inode, ACL_TYPE_ACCESS, NULL);
201 return -EAGAIN;
202 }
Linus Torvaldse77819e2011-07-22 19:30:19 -0700203 }
204
205 if (acl) {
206 int error = posix_acl_permission(inode, acl, mask);
207 posix_acl_release(acl);
208 return error;
209 }
Linus Torvalds84635d62011-07-25 22:47:03 -0700210#endif
Linus Torvaldse77819e2011-07-22 19:30:19 -0700211
212 return -EAGAIN;
213}
214
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700215/*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530216 * This does the basic permission checking
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700217 */
Al Viro7e401452011-06-20 19:12:17 -0400218static int acl_permission_check(struct inode *inode, int mask)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700219{
Linus Torvalds26cf46b2011-05-13 11:51:01 -0700220 unsigned int mode = inode->i_mode;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700221
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -0800222 if (likely(uid_eq(current_fsuid(), inode->i_uid)))
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700223 mode >>= 6;
224 else {
Linus Torvaldse77819e2011-07-22 19:30:19 -0700225 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
Al Viro7e401452011-06-20 19:12:17 -0400226 int error = check_acl(inode, mask);
Nick Pigginb74c79e2011-01-07 17:49:58 +1100227 if (error != -EAGAIN)
228 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700229 }
230
231 if (in_group_p(inode->i_gid))
232 mode >>= 3;
233 }
234
235 /*
236 * If the DACs are ok we don't need any capability check.
237 */
Al Viro9c2c7032011-06-20 19:06:22 -0400238 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700239 return 0;
240 return -EACCES;
241}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
243/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100244 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 * @inode: inode to check access rights for
Andreas Gruenbacher8fd90c82011-10-23 23:13:30 +0530246 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 *
248 * Used to check for read/write/execute permissions on a file.
249 * We use "fsuid" for this, letting us set arbitrary permissions
250 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100251 * are used for other things.
252 *
253 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
254 * request cannot be satisfied (eg. requires blocking or too much complexity).
255 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 */
Al Viro2830ba72011-06-20 19:16:29 -0400257int generic_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700259 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 /*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530262 * Do the basic permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 */
Al Viro7e401452011-06-20 19:12:17 -0400264 ret = acl_permission_check(inode, mask);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700265 if (ret != -EACCES)
266 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Al Virod594e7e2011-06-20 19:55:42 -0400268 if (S_ISDIR(inode->i_mode)) {
269 /* DACs are overridable for directories */
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -0800270 if (inode_capable(inode, CAP_DAC_OVERRIDE))
Al Virod594e7e2011-06-20 19:55:42 -0400271 return 0;
272 if (!(mask & MAY_WRITE))
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -0800273 if (inode_capable(inode, CAP_DAC_READ_SEARCH))
Al Virod594e7e2011-06-20 19:55:42 -0400274 return 0;
275 return -EACCES;
276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 /*
278 * Read/write DACs are always overridable.
Al Virod594e7e2011-06-20 19:55:42 -0400279 * Executable DACs are overridable when there is
280 * at least one exec bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 */
Al Virod594e7e2011-06-20 19:55:42 -0400282 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -0800283 if (inode_capable(inode, CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 return 0;
285
286 /*
287 * Searching includes executable on directories, else just read.
288 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600289 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Al Virod594e7e2011-06-20 19:55:42 -0400290 if (mask == MAY_READ)
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -0800291 if (inode_capable(inode, CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 return 0;
293
294 return -EACCES;
295}
296
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700297/*
298 * We _really_ want to just do "generic_permission()" without
299 * even looking at the inode->i_op values. So we keep a cache
300 * flag in inode->i_opflags, that says "this has not special
301 * permission function, use the fast case".
302 */
303static inline int do_inode_permission(struct inode *inode, int mask)
304{
305 if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
306 if (likely(inode->i_op->permission))
307 return inode->i_op->permission(inode, mask);
308
309 /* This gets set once for the inode lifetime */
310 spin_lock(&inode->i_lock);
311 inode->i_opflags |= IOP_FASTPERM;
312 spin_unlock(&inode->i_lock);
313 }
314 return generic_permission(inode, mask);
315}
316
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200317/**
David Howells0bdaea92012-06-25 12:55:46 +0100318 * __inode_permission - Check for access rights to a given inode
319 * @inode: Inode to check permission on
320 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200321 *
David Howells0bdaea92012-06-25 12:55:46 +0100322 * Check for read/write/execute permissions on an inode.
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530323 *
324 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
David Howells0bdaea92012-06-25 12:55:46 +0100325 *
326 * This does not check for a read-only file system. You probably want
327 * inode_permission().
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200328 */
David Howells0bdaea92012-06-25 12:55:46 +0100329int __inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Al Viroe6305c42008-07-15 21:03:57 -0400331 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700333 if (unlikely(mask & MAY_WRITE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 /*
335 * Nobody gets write access to an immutable file.
336 */
337 if (IS_IMMUTABLE(inode))
338 return -EACCES;
339 }
340
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700341 retval = do_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (retval)
343 return retval;
344
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700345 retval = devcgroup_inode_permission(inode, mask);
346 if (retval)
347 return retval;
348
Eric Parisd09ca732010-07-23 11:43:57 -0400349 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
Al Virof4d6ff82011-06-19 13:14:21 -0400352/**
David Howells0bdaea92012-06-25 12:55:46 +0100353 * sb_permission - Check superblock-level permissions
354 * @sb: Superblock of inode to check permission on
355 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
356 *
357 * Separate out file-system wide checks from inode-specific permission checks.
358 */
359static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
360{
361 if (unlikely(mask & MAY_WRITE)) {
362 umode_t mode = inode->i_mode;
363
364 /* Nobody gets write access to a read-only fs. */
365 if ((sb->s_flags & MS_RDONLY) &&
366 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
367 return -EROFS;
368 }
369 return 0;
370}
371
372/**
373 * inode_permission - Check for access rights to a given inode
374 * @inode: Inode to check permission on
375 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
376 *
377 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
378 * this, letting us set arbitrary permissions for filesystem access without
379 * changing the "normal" UIDs which are used for other things.
380 *
381 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
382 */
383int inode_permission(struct inode *inode, int mask)
384{
385 int retval;
386
387 retval = sb_permission(inode->i_sb, inode, mask);
388 if (retval)
389 return retval;
390 return __inode_permission(inode, mask);
391}
392
393/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800394 * path_get - get a reference to a path
395 * @path: path to get the reference to
396 *
397 * Given a path increment the reference count to the dentry and the vfsmount.
398 */
399void path_get(struct path *path)
400{
401 mntget(path->mnt);
402 dget(path->dentry);
403}
404EXPORT_SYMBOL(path_get);
405
406/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800407 * path_put - put a reference to a path
408 * @path: path to put the reference to
409 *
410 * Given a path decrement the reference count to the dentry and the vfsmount.
411 */
412void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Jan Blunck1d957f92008-02-14 19:34:35 -0800414 dput(path->dentry);
415 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416}
Jan Blunck1d957f92008-02-14 19:34:35 -0800417EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Al Viro19660af2011-03-25 10:32:48 -0400419/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100420 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400421 * Documentation/filesystems/path-lookup.txt). In situations when we can't
422 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
423 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
424 * mode. Refcounts are grabbed at the last known good point before rcu-walk
425 * got stuck, so ref-walk may continue from there. If this is not successful
426 * (eg. a seqcount has changed), then failure is returned and it's up to caller
427 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100428 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100429
Al Viro32a79912012-07-18 20:43:19 +0400430static inline void lock_rcu_walk(void)
431{
432 br_read_lock(&vfsmount_lock);
433 rcu_read_lock();
434}
435
436static inline void unlock_rcu_walk(void)
437{
438 rcu_read_unlock();
439 br_read_unlock(&vfsmount_lock);
440}
441
Nick Piggin31e6b012011-01-07 17:49:52 +1100442/**
Al Viro19660af2011-03-25 10:32:48 -0400443 * unlazy_walk - try to switch to ref-walk mode.
444 * @nd: nameidata pathwalk data
445 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800446 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100447 *
Al Viro19660af2011-03-25 10:32:48 -0400448 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
449 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
450 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100451 */
Al Viro19660af2011-03-25 10:32:48 -0400452static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100453{
454 struct fs_struct *fs = current->fs;
455 struct dentry *parent = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500456 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100457
458 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500459 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
460 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100461 spin_lock(&fs->lock);
462 if (nd->root.mnt != fs->root.mnt ||
463 nd->root.dentry != fs->root.dentry)
464 goto err_root;
465 }
466 spin_lock(&parent->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400467 if (!dentry) {
468 if (!__d_rcu_to_refcount(parent, nd->seq))
469 goto err_parent;
470 BUG_ON(nd->inode != parent->d_inode);
471 } else {
Al Viro94c0d4e2011-07-12 21:40:23 -0400472 if (dentry->d_parent != parent)
473 goto err_parent;
Al Viro19660af2011-03-25 10:32:48 -0400474 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
475 if (!__d_rcu_to_refcount(dentry, nd->seq))
476 goto err_child;
477 /*
478 * If the sequence check on the child dentry passed, then
479 * the child has not been removed from its parent. This
480 * means the parent dentry must be valid and able to take
481 * a reference at this point.
482 */
483 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
484 BUG_ON(!parent->d_count);
485 parent->d_count++;
486 spin_unlock(&dentry->d_lock);
487 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100488 spin_unlock(&parent->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500489 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100490 path_get(&nd->root);
491 spin_unlock(&fs->lock);
492 }
493 mntget(nd->path.mnt);
494
Al Viro32a79912012-07-18 20:43:19 +0400495 unlock_rcu_walk();
Nick Piggin31e6b012011-01-07 17:49:52 +1100496 nd->flags &= ~LOOKUP_RCU;
497 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400498
499err_child:
Nick Piggin31e6b012011-01-07 17:49:52 +1100500 spin_unlock(&dentry->d_lock);
Al Viro19660af2011-03-25 10:32:48 -0400501err_parent:
Nick Piggin31e6b012011-01-07 17:49:52 +1100502 spin_unlock(&parent->d_lock);
503err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500504 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100505 spin_unlock(&fs->lock);
506 return -ECHILD;
507}
508
Al Viro4ce16ef32012-06-10 16:10:59 -0400509static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
Nick Piggin34286d62011-01-07 17:49:57 +1100510{
Al Viro4ce16ef32012-06-10 16:10:59 -0400511 return dentry->d_op->d_revalidate(dentry, flags);
Nick Piggin34286d62011-01-07 17:49:57 +1100512}
513
Al Viro9f1fafe2011-03-25 11:00:12 -0400514/**
515 * complete_walk - successful completion of path walk
516 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500517 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400518 * If we had been in RCU mode, drop out of it and legitimize nd->path.
519 * Revalidate the final result, unless we'd already done that during
520 * the path walk or the filesystem doesn't ask for it. Return 0 on
521 * success, -error on failure. In case of failure caller does not
522 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500523 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400524static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500525{
Al Viro16c2cd72011-02-22 15:50:10 -0500526 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500527 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500528
Al Viro9f1fafe2011-03-25 11:00:12 -0400529 if (nd->flags & LOOKUP_RCU) {
530 nd->flags &= ~LOOKUP_RCU;
531 if (!(nd->flags & LOOKUP_ROOT))
532 nd->root.mnt = NULL;
533 spin_lock(&dentry->d_lock);
534 if (unlikely(!__d_rcu_to_refcount(dentry, nd->seq))) {
535 spin_unlock(&dentry->d_lock);
Al Viro32a79912012-07-18 20:43:19 +0400536 unlock_rcu_walk();
Al Viro9f1fafe2011-03-25 11:00:12 -0400537 return -ECHILD;
538 }
539 BUG_ON(nd->inode != dentry->d_inode);
540 spin_unlock(&dentry->d_lock);
541 mntget(nd->path.mnt);
Al Viro32a79912012-07-18 20:43:19 +0400542 unlock_rcu_walk();
Al Viro9f1fafe2011-03-25 11:00:12 -0400543 }
544
Al Viro16c2cd72011-02-22 15:50:10 -0500545 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500546 return 0;
547
Al Viro16c2cd72011-02-22 15:50:10 -0500548 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
549 return 0;
550
551 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
552 return 0;
553
554 /* Note: we do not d_invalidate() */
Al Viro4ce16ef32012-06-10 16:10:59 -0400555 status = d_revalidate(dentry, nd->flags);
Jeff Layton39159de2009-12-07 12:01:50 -0500556 if (status > 0)
557 return 0;
558
Al Viro16c2cd72011-02-22 15:50:10 -0500559 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500560 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500561
Al Viro9f1fafe2011-03-25 11:00:12 -0400562 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500563 return status;
564}
565
Al Viro2a737872009-04-07 11:49:53 -0400566static __always_inline void set_root(struct nameidata *nd)
567{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200568 if (!nd->root.mnt)
569 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400570}
571
Al Viro6de88d72009-08-09 01:41:57 +0400572static int link_path_walk(const char *, struct nameidata *);
573
Nick Piggin31e6b012011-01-07 17:49:52 +1100574static __always_inline void set_root_rcu(struct nameidata *nd)
575{
576 if (!nd->root.mnt) {
577 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100578 unsigned seq;
579
580 do {
581 seq = read_seqcount_begin(&fs->seq);
582 nd->root = fs->root;
Tim Chenc1530012011-04-15 11:39:29 -0700583 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
Nick Pigginc28cc362011-01-07 17:49:53 +1100584 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100585 }
586}
587
Arjan van de Venf1662352006-01-14 13:21:31 -0800588static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Nick Piggin31e6b012011-01-07 17:49:52 +1100590 int ret;
591
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (IS_ERR(link))
593 goto fail;
594
595 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400596 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800597 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400598 nd->path = nd->root;
599 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500600 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100602 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100603
Nick Piggin31e6b012011-01-07 17:49:52 +1100604 ret = link_path_walk(link, nd);
605 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800607 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return PTR_ERR(link);
609}
610
Jan Blunck1d957f92008-02-14 19:34:35 -0800611static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700612{
613 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800614 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700615 mntput(path->mnt);
616}
617
Nick Piggin7b9337a2011-01-14 08:42:43 +0000618static inline void path_to_nameidata(const struct path *path,
619 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700620{
Nick Piggin31e6b012011-01-07 17:49:52 +1100621 if (!(nd->flags & LOOKUP_RCU)) {
622 dput(nd->path.dentry);
623 if (nd->path.mnt != path->mnt)
624 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800625 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100626 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800627 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700628}
629
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400630/*
631 * Helper to directly jump to a known parsed path from ->follow_link,
632 * caller must have taken a reference to path beforehand.
633 */
634void nd_jump_link(struct nameidata *nd, struct path *path)
635{
636 path_put(&nd->path);
637
638 nd->path = *path;
639 nd->inode = nd->path.dentry->d_inode;
640 nd->flags |= LOOKUP_JUMPED;
641
642 BUG_ON(nd->inode->i_op->follow_link);
643}
644
Al Viro574197e2011-03-14 22:20:34 -0400645static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
646{
647 struct inode *inode = link->dentry->d_inode;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400648 if (inode->i_op->put_link)
Al Viro574197e2011-03-14 22:20:34 -0400649 inode->i_op->put_link(link->dentry, nd, cookie);
650 path_put(link);
651}
652
Kees Cook800179c2012-07-25 17:29:07 -0700653int sysctl_protected_symlinks __read_mostly = 1;
654int sysctl_protected_hardlinks __read_mostly = 1;
655
656/**
657 * may_follow_link - Check symlink following for unsafe situations
658 * @link: The path of the symlink
659 *
660 * In the case of the sysctl_protected_symlinks sysctl being enabled,
661 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
662 * in a sticky world-writable directory. This is to protect privileged
663 * processes from failing races against path names that may change out
664 * from under them by way of other users creating malicious symlinks.
665 * It will permit symlinks to be followed only when outside a sticky
666 * world-writable directory, or when the uid of the symlink and follower
667 * match, or when the directory owner matches the symlink's owner.
668 *
669 * Returns 0 if following the symlink is allowed, -ve on error.
670 */
671static inline int may_follow_link(struct path *link, struct nameidata *nd)
672{
673 const struct inode *inode;
674 const struct inode *parent;
675
676 if (!sysctl_protected_symlinks)
677 return 0;
678
679 /* Allowed if owner and follower match. */
680 inode = link->dentry->d_inode;
681 if (current_cred()->fsuid == inode->i_uid)
682 return 0;
683
684 /* Allowed if parent directory not sticky and world-writable. */
685 parent = nd->path.dentry->d_inode;
686 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
687 return 0;
688
689 /* Allowed if parent directory and link owner match. */
690 if (parent->i_uid == inode->i_uid)
691 return 0;
692
693 path_put_conditional(link, nd);
694 path_put(&nd->path);
695 return -EACCES;
696}
697
698/**
699 * safe_hardlink_source - Check for safe hardlink conditions
700 * @inode: the source inode to hardlink from
701 *
702 * Return false if at least one of the following conditions:
703 * - inode is not a regular file
704 * - inode is setuid
705 * - inode is setgid and group-exec
706 * - access failure for read and write
707 *
708 * Otherwise returns true.
709 */
710static bool safe_hardlink_source(struct inode *inode)
711{
712 umode_t mode = inode->i_mode;
713
714 /* Special files should not get pinned to the filesystem. */
715 if (!S_ISREG(mode))
716 return false;
717
718 /* Setuid files should not get pinned to the filesystem. */
719 if (mode & S_ISUID)
720 return false;
721
722 /* Executable setgid files should not get pinned to the filesystem. */
723 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
724 return false;
725
726 /* Hardlinking to unreadable or unwritable sources is dangerous. */
727 if (inode_permission(inode, MAY_READ | MAY_WRITE))
728 return false;
729
730 return true;
731}
732
733/**
734 * may_linkat - Check permissions for creating a hardlink
735 * @link: the source to hardlink from
736 *
737 * Block hardlink when all of:
738 * - sysctl_protected_hardlinks enabled
739 * - fsuid does not match inode
740 * - hardlink source is unsafe (see safe_hardlink_source() above)
741 * - not CAP_FOWNER
742 *
743 * Returns 0 if successful, -ve on error.
744 */
745static int may_linkat(struct path *link)
746{
747 const struct cred *cred;
748 struct inode *inode;
749
750 if (!sysctl_protected_hardlinks)
751 return 0;
752
753 cred = current_cred();
754 inode = link->dentry->d_inode;
755
756 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
757 * otherwise, it must be a safe source.
758 */
759 if (cred->fsuid == inode->i_uid || safe_hardlink_source(inode) ||
760 capable(CAP_FOWNER))
761 return 0;
762
763 return -EPERM;
764}
765
Al Virodef4af32009-12-26 08:37:05 -0500766static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400767follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800768{
Nick Piggin7b9337a2011-01-14 08:42:43 +0000769 struct dentry *dentry = link->dentry;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400770 int error;
771 char *s;
Ian Kent051d3812006-03-27 01:14:53 -0800772
Al Viro844a3912011-02-15 00:38:26 -0500773 BUG_ON(nd->flags & LOOKUP_RCU);
774
Al Viro0e794582011-03-16 02:45:02 -0400775 if (link->mnt == nd->path.mnt)
776 mntget(link->mnt);
777
Al Viro6d7b5aa2012-06-10 04:15:17 -0400778 error = -ELOOP;
779 if (unlikely(current->total_link_count >= 40))
780 goto out_put_nd_path;
781
Al Viro574197e2011-03-14 22:20:34 -0400782 cond_resched();
783 current->total_link_count++;
784
Al Viro68ac1232012-03-15 08:21:57 -0400785 touch_atime(link);
Ian Kent051d3812006-03-27 01:14:53 -0800786 nd_set_link(nd, NULL);
787
Al Viro36f3b4f2011-02-22 21:24:38 -0500788 error = security_inode_follow_link(link->dentry, nd);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400789 if (error)
790 goto out_put_nd_path;
Al Viro36f3b4f2011-02-22 21:24:38 -0500791
Al Viro86acdca12009-12-22 23:45:11 -0500792 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500793 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
794 error = PTR_ERR(*p);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400795 if (IS_ERR(*p))
Christoph Hellwig408ef012012-06-18 10:47:03 -0400796 goto out_put_nd_path;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400797
798 error = 0;
799 s = nd_get_link(nd);
800 if (s) {
801 error = __vfs_follow_link(nd, s);
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400802 if (unlikely(error))
803 put_link(nd, link, *p);
Ian Kent051d3812006-03-27 01:14:53 -0800804 }
Al Viro6d7b5aa2012-06-10 04:15:17 -0400805
806 return error;
807
808out_put_nd_path:
809 path_put(&nd->path);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400810 path_put(link);
Ian Kent051d3812006-03-27 01:14:53 -0800811 return error;
812}
813
Nick Piggin31e6b012011-01-07 17:49:52 +1100814static int follow_up_rcu(struct path *path)
815{
Al Viro0714a532011-11-24 22:19:58 -0500816 struct mount *mnt = real_mount(path->mnt);
817 struct mount *parent;
Nick Piggin31e6b012011-01-07 17:49:52 +1100818 struct dentry *mountpoint;
819
Al Viro0714a532011-11-24 22:19:58 -0500820 parent = mnt->mnt_parent;
821 if (&parent->mnt == path->mnt)
Nick Piggin31e6b012011-01-07 17:49:52 +1100822 return 0;
Al Viroa73324d2011-11-24 22:25:07 -0500823 mountpoint = mnt->mnt_mountpoint;
Nick Piggin31e6b012011-01-07 17:49:52 +1100824 path->dentry = mountpoint;
Al Viro0714a532011-11-24 22:19:58 -0500825 path->mnt = &parent->mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +1100826 return 1;
827}
828
David Howellsf015f1262012-06-25 12:55:28 +0100829/*
830 * follow_up - Find the mountpoint of path's vfsmount
831 *
832 * Given a path, find the mountpoint of its source file system.
833 * Replace @path with the path of the mountpoint in the parent mount.
834 * Up is towards /.
835 *
836 * Return 1 if we went up a level and 0 if we were already at the
837 * root.
838 */
Al Virobab77eb2009-04-18 03:26:48 -0400839int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840{
Al Viro0714a532011-11-24 22:19:58 -0500841 struct mount *mnt = real_mount(path->mnt);
842 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000844
Andi Kleen962830d2012-05-08 13:32:02 +0930845 br_read_lock(&vfsmount_lock);
Al Viro0714a532011-11-24 22:19:58 -0500846 parent = mnt->mnt_parent;
Al Viro3c0a6162012-07-18 17:32:50 +0400847 if (parent == mnt) {
Andi Kleen962830d2012-05-08 13:32:02 +0930848 br_read_unlock(&vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 return 0;
850 }
Al Viro0714a532011-11-24 22:19:58 -0500851 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -0500852 mountpoint = dget(mnt->mnt_mountpoint);
Andi Kleen962830d2012-05-08 13:32:02 +0930853 br_read_unlock(&vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400854 dput(path->dentry);
855 path->dentry = mountpoint;
856 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -0500857 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 return 1;
859}
860
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100861/*
David Howells9875cf82011-01-14 18:45:21 +0000862 * Perform an automount
863 * - return -EISDIR to tell follow_managed() to stop and return the path we
864 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 */
David Howells9875cf82011-01-14 18:45:21 +0000866static int follow_automount(struct path *path, unsigned flags,
867 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100868{
David Howells9875cf82011-01-14 18:45:21 +0000869 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000870 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100871
David Howells9875cf82011-01-14 18:45:21 +0000872 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
873 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700874
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200875 /* We don't want to mount if someone's just doing a stat -
876 * unless they're stat'ing a directory and appended a '/' to
877 * the name.
878 *
879 * We do, however, want to mount if someone wants to open or
880 * create a file of any type under the mountpoint, wants to
881 * traverse through the mountpoint or wants to open the
882 * mounted directory. Also, autofs may mark negative dentries
883 * as being automount points. These will need the attentions
884 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +0000885 */
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200886 if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
Linus Torvaldsd94c1772011-09-26 17:44:55 -0700887 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200888 path->dentry->d_inode)
889 return -EISDIR;
890
David Howells9875cf82011-01-14 18:45:21 +0000891 current->total_link_count++;
892 if (current->total_link_count >= 40)
893 return -ELOOP;
894
895 mnt = path->dentry->d_op->d_automount(path);
896 if (IS_ERR(mnt)) {
897 /*
898 * The filesystem is allowed to return -EISDIR here to indicate
899 * it doesn't want to automount. For instance, autofs would do
900 * this so that its userspace daemon can mount on this dentry.
901 *
902 * However, we can only permit this if it's a terminal point in
903 * the path being looked up; if it wasn't then the remainder of
904 * the path is inaccessible and we should say so.
905 */
Al Viro49084c32011-06-25 21:59:52 -0400906 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +0000907 return -EREMOTE;
908 return PTR_ERR(mnt);
909 }
David Howellsea5b7782011-01-14 19:10:03 +0000910
David Howells9875cf82011-01-14 18:45:21 +0000911 if (!mnt) /* mount collision */
912 return 0;
913
Al Viro8aef1882011-06-16 15:10:06 +0100914 if (!*need_mntput) {
915 /* lock_mount() may release path->mnt on error */
916 mntget(path->mnt);
917 *need_mntput = true;
918 }
Al Viro19a167a2011-01-17 01:35:23 -0500919 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000920
David Howellsea5b7782011-01-14 19:10:03 +0000921 switch (err) {
922 case -EBUSY:
923 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500924 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000925 case 0:
Al Viro8aef1882011-06-16 15:10:06 +0100926 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +0000927 path->mnt = mnt;
928 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +0000929 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500930 default:
931 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000932 }
Al Viro19a167a2011-01-17 01:35:23 -0500933
David Howells9875cf82011-01-14 18:45:21 +0000934}
935
936/*
937 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000938 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000939 * - Flagged as mountpoint
940 * - Flagged as automount point
941 *
942 * This may only be called in refwalk mode.
943 *
944 * Serialization is taken care of in namespace.c
945 */
946static int follow_managed(struct path *path, unsigned flags)
947{
Al Viro8aef1882011-06-16 15:10:06 +0100948 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +0000949 unsigned managed;
950 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +0100951 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +0000952
953 /* Given that we're not holding a lock here, we retain the value in a
954 * local variable for each dentry as we look at it so that we don't see
955 * the components of that value change under us */
956 while (managed = ACCESS_ONCE(path->dentry->d_flags),
957 managed &= DCACHE_MANAGED_DENTRY,
958 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000959 /* Allow the filesystem to manage the transit without i_mutex
960 * being held. */
961 if (managed & DCACHE_MANAGE_TRANSIT) {
962 BUG_ON(!path->dentry->d_op);
963 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -0400964 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000965 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100966 break;
David Howellscc53ce52011-01-14 18:45:26 +0000967 }
968
David Howells9875cf82011-01-14 18:45:21 +0000969 /* Transit to a mounted filesystem. */
970 if (managed & DCACHE_MOUNTED) {
971 struct vfsmount *mounted = lookup_mnt(path);
972 if (mounted) {
973 dput(path->dentry);
974 if (need_mntput)
975 mntput(path->mnt);
976 path->mnt = mounted;
977 path->dentry = dget(mounted->mnt_root);
978 need_mntput = true;
979 continue;
980 }
981
982 /* Something is mounted on this dentry in another
983 * namespace and/or whatever was mounted there in this
984 * namespace got unmounted before we managed to get the
985 * vfsmount_lock */
986 }
987
988 /* Handle an automount point */
989 if (managed & DCACHE_NEED_AUTOMOUNT) {
990 ret = follow_automount(path, flags, &need_mntput);
991 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +0100992 break;
David Howells9875cf82011-01-14 18:45:21 +0000993 continue;
994 }
995
996 /* We didn't change the current path point */
997 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
Al Viro8aef1882011-06-16 15:10:06 +0100999
1000 if (need_mntput && path->mnt == mnt)
1001 mntput(path->mnt);
1002 if (ret == -EISDIR)
1003 ret = 0;
Al Viroa3fbbde2011-11-07 21:21:26 +00001004 return ret < 0 ? ret : need_mntput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005}
1006
David Howellscc53ce52011-01-14 18:45:26 +00001007int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
1009 struct vfsmount *mounted;
1010
Al Viro1c755af2009-04-18 14:06:57 -04001011 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -04001013 dput(path->dentry);
1014 mntput(path->mnt);
1015 path->mnt = mounted;
1016 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return 1;
1018 }
1019 return 0;
1020}
1021
Ian Kent62a73752011-03-25 01:51:02 +08001022static inline bool managed_dentry_might_block(struct dentry *dentry)
1023{
1024 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
1025 dentry->d_op->d_manage(dentry, true) < 0);
1026}
1027
David Howells9875cf82011-01-14 18:45:21 +00001028/*
Al Viro287548e2011-05-27 06:50:06 -04001029 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1030 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +00001031 */
1032static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -04001033 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +00001034{
Ian Kent62a73752011-03-25 01:51:02 +08001035 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -05001036 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +08001037 /*
1038 * Don't forget we might have a non-mountpoint managed dentry
1039 * that wants to block transit.
1040 */
Al Viro287548e2011-05-27 06:50:06 -04001041 if (unlikely(managed_dentry_might_block(path->dentry)))
David Howellsab909112011-01-14 18:46:51 +00001042 return false;
Ian Kent62a73752011-03-25 01:51:02 +08001043
1044 if (!d_mountpoint(path->dentry))
1045 break;
1046
David Howells9875cf82011-01-14 18:45:21 +00001047 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
1048 if (!mounted)
1049 break;
Al Viroc7105362011-11-24 18:22:03 -05001050 path->mnt = &mounted->mnt;
1051 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +00001052 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001053 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -07001054 /*
1055 * Update the inode too. We don't need to re-check the
1056 * dentry sequence number here after this d_inode read,
1057 * because a mount-point is always pinned.
1058 */
1059 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +00001060 }
David Howells9875cf82011-01-14 18:45:21 +00001061 return true;
1062}
1063
Al Virodea39372011-05-27 06:53:39 -04001064static void follow_mount_rcu(struct nameidata *nd)
Al Viro287548e2011-05-27 06:50:06 -04001065{
Al Virodea39372011-05-27 06:53:39 -04001066 while (d_mountpoint(nd->path.dentry)) {
Al Viroc7105362011-11-24 18:22:03 -05001067 struct mount *mounted;
Al Virodea39372011-05-27 06:53:39 -04001068 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
Al Viro287548e2011-05-27 06:50:06 -04001069 if (!mounted)
1070 break;
Al Viroc7105362011-11-24 18:22:03 -05001071 nd->path.mnt = &mounted->mnt;
1072 nd->path.dentry = mounted->mnt.mnt_root;
Al Virodea39372011-05-27 06:53:39 -04001073 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro287548e2011-05-27 06:50:06 -04001074 }
1075}
1076
Nick Piggin31e6b012011-01-07 17:49:52 +11001077static int follow_dotdot_rcu(struct nameidata *nd)
1078{
Nick Piggin31e6b012011-01-07 17:49:52 +11001079 set_root_rcu(nd);
1080
David Howells9875cf82011-01-14 18:45:21 +00001081 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001082 if (nd->path.dentry == nd->root.dentry &&
1083 nd->path.mnt == nd->root.mnt) {
1084 break;
1085 }
1086 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1087 struct dentry *old = nd->path.dentry;
1088 struct dentry *parent = old->d_parent;
1089 unsigned seq;
1090
1091 seq = read_seqcount_begin(&parent->d_seq);
1092 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -05001093 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +11001094 nd->path.dentry = parent;
1095 nd->seq = seq;
1096 break;
1097 }
1098 if (!follow_up_rcu(&nd->path))
1099 break;
1100 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +11001101 }
Al Virodea39372011-05-27 06:53:39 -04001102 follow_mount_rcu(nd);
1103 nd->inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001104 return 0;
Al Viroef7562d2011-03-04 14:35:59 -05001105
1106failed:
1107 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001108 if (!(nd->flags & LOOKUP_ROOT))
1109 nd->root.mnt = NULL;
Al Viro32a79912012-07-18 20:43:19 +04001110 unlock_rcu_walk();
Al Viroef7562d2011-03-04 14:35:59 -05001111 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001112}
1113
David Howells9875cf82011-01-14 18:45:21 +00001114/*
David Howellscc53ce52011-01-14 18:45:26 +00001115 * Follow down to the covering mount currently visible to userspace. At each
1116 * point, the filesystem owning that dentry may be queried as to whether the
1117 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001118 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001119int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001120{
1121 unsigned managed;
1122 int ret;
1123
1124 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1125 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1126 /* Allow the filesystem to manage the transit without i_mutex
1127 * being held.
1128 *
1129 * We indicate to the filesystem if someone is trying to mount
1130 * something here. This gives autofs the chance to deny anyone
1131 * other than its daemon the right to mount on its
1132 * superstructure.
1133 *
1134 * The filesystem may sleep at this point.
1135 */
1136 if (managed & DCACHE_MANAGE_TRANSIT) {
1137 BUG_ON(!path->dentry->d_op);
1138 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001139 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001140 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001141 if (ret < 0)
1142 return ret == -EISDIR ? 0 : ret;
1143 }
1144
1145 /* Transit to a mounted filesystem. */
1146 if (managed & DCACHE_MOUNTED) {
1147 struct vfsmount *mounted = lookup_mnt(path);
1148 if (!mounted)
1149 break;
1150 dput(path->dentry);
1151 mntput(path->mnt);
1152 path->mnt = mounted;
1153 path->dentry = dget(mounted->mnt_root);
1154 continue;
1155 }
1156
1157 /* Don't handle automount points here */
1158 break;
1159 }
1160 return 0;
1161}
1162
1163/*
David Howells9875cf82011-01-14 18:45:21 +00001164 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1165 */
1166static void follow_mount(struct path *path)
1167{
1168 while (d_mountpoint(path->dentry)) {
1169 struct vfsmount *mounted = lookup_mnt(path);
1170 if (!mounted)
1171 break;
1172 dput(path->dentry);
1173 mntput(path->mnt);
1174 path->mnt = mounted;
1175 path->dentry = dget(mounted->mnt_root);
1176 }
1177}
1178
Nick Piggin31e6b012011-01-07 17:49:52 +11001179static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180{
Al Viro2a737872009-04-07 11:49:53 -04001181 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001182
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001184 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
Al Viro2a737872009-04-07 11:49:53 -04001186 if (nd->path.dentry == nd->root.dentry &&
1187 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 break;
1189 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001190 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001191 /* rare case of legitimate dget_parent()... */
1192 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 dput(old);
1194 break;
1195 }
Al Viro3088dd72010-01-30 15:47:29 -05001196 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 }
Al Viro79ed0222009-04-18 13:59:41 -04001199 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001200 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201}
1202
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001204 * This looks up the name in dcache, possibly revalidates the old dentry and
1205 * allocates a new one if not found or not valid. In the need_lookup argument
1206 * returns whether i_op->lookup is necessary.
1207 *
1208 * dir->d_inode->i_mutex must be held
Nick Pigginbaa03892010-08-18 04:37:31 +10001209 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001210static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
Al Viro201f9562012-06-22 12:42:10 +04001211 unsigned int flags, bool *need_lookup)
Nick Pigginbaa03892010-08-18 04:37:31 +10001212{
Nick Pigginbaa03892010-08-18 04:37:31 +10001213 struct dentry *dentry;
Miklos Szeredibad61182012-03-26 12:54:24 +02001214 int error;
Nick Pigginbaa03892010-08-18 04:37:31 +10001215
Miklos Szeredibad61182012-03-26 12:54:24 +02001216 *need_lookup = false;
1217 dentry = d_lookup(dir, name);
1218 if (dentry) {
1219 if (d_need_lookup(dentry)) {
1220 *need_lookup = true;
1221 } else if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
Al Viro201f9562012-06-22 12:42:10 +04001222 error = d_revalidate(dentry, flags);
Miklos Szeredibad61182012-03-26 12:54:24 +02001223 if (unlikely(error <= 0)) {
1224 if (error < 0) {
1225 dput(dentry);
1226 return ERR_PTR(error);
1227 } else if (!d_invalidate(dentry)) {
1228 dput(dentry);
1229 dentry = NULL;
1230 }
1231 }
1232 }
1233 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001234
Miklos Szeredibad61182012-03-26 12:54:24 +02001235 if (!dentry) {
1236 dentry = d_alloc(dir, name);
1237 if (unlikely(!dentry))
1238 return ERR_PTR(-ENOMEM);
Nick Pigginbaa03892010-08-18 04:37:31 +10001239
Miklos Szeredibad61182012-03-26 12:54:24 +02001240 *need_lookup = true;
Nick Pigginbaa03892010-08-18 04:37:31 +10001241 }
1242 return dentry;
1243}
1244
1245/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001246 * Call i_op->lookup on the dentry. The dentry must be negative but may be
1247 * hashed if it was pouplated with DCACHE_NEED_LOOKUP.
1248 *
1249 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001250 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001251static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
Al Viro72bd8662012-06-10 17:17:17 -04001252 unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001253{
Josef Bacik44396f42011-05-31 11:58:49 -04001254 struct dentry *old;
1255
1256 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001257 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001258 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001259 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001260 }
Josef Bacik44396f42011-05-31 11:58:49 -04001261
Al Viro72bd8662012-06-10 17:17:17 -04001262 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001263 if (unlikely(old)) {
1264 dput(dentry);
1265 dentry = old;
1266 }
1267 return dentry;
1268}
1269
Al Viroa3255542012-03-30 14:41:51 -04001270static struct dentry *__lookup_hash(struct qstr *name,
Al Viro72bd8662012-06-10 17:17:17 -04001271 struct dentry *base, unsigned int flags)
Al Viroa3255542012-03-30 14:41:51 -04001272{
Miklos Szeredibad61182012-03-26 12:54:24 +02001273 bool need_lookup;
Al Viroa3255542012-03-30 14:41:51 -04001274 struct dentry *dentry;
1275
Al Viro72bd8662012-06-10 17:17:17 -04001276 dentry = lookup_dcache(name, base, flags, &need_lookup);
Miklos Szeredibad61182012-03-26 12:54:24 +02001277 if (!need_lookup)
1278 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001279
Al Viro72bd8662012-06-10 17:17:17 -04001280 return lookup_real(base->d_inode, dentry, flags);
Al Viroa3255542012-03-30 14:41:51 -04001281}
1282
Josef Bacik44396f42011-05-31 11:58:49 -04001283/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 * It's more convoluted than I'd like it to be, but... it's still fairly
1285 * small and for now I'd prefer to have fast path as straight as possible.
1286 * It _is_ time-critical.
1287 */
Miklos Szeredi697f5142012-05-21 17:30:05 +02001288static int lookup_fast(struct nameidata *nd, struct qstr *name,
1289 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290{
Jan Blunck4ac91372008-02-14 19:34:32 -08001291 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001292 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001293 int need_reval = 1;
1294 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001295 int err;
1296
Al Viro3cac2602009-08-13 18:27:43 +04001297 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001298 * Rename seqlock is not required here because in the off chance
1299 * of a false negative due to a concurrent rename, we're going to
1300 * do the non-racy lookup, below.
1301 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001302 if (nd->flags & LOOKUP_RCU) {
1303 unsigned seq;
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001304 dentry = __d_lookup_rcu(parent, name, &seq, nd->inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001305 if (!dentry)
1306 goto unlazy;
1307
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001308 /*
1309 * This sequence count validates that the inode matches
1310 * the dentry name information from lookup.
1311 */
1312 *inode = dentry->d_inode;
1313 if (read_seqcount_retry(&dentry->d_seq, seq))
1314 return -ECHILD;
1315
1316 /*
1317 * This sequence count validates that the parent had no
1318 * changes while we did the lookup of the dentry above.
1319 *
1320 * The memory barrier in read_seqcount_begin of child is
1321 * enough, we can use __read_seqcount_retry here.
1322 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001323 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1324 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001325 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001326
Miklos Szeredifa4ee152012-03-26 12:54:19 +02001327 if (unlikely(d_need_lookup(dentry)))
1328 goto unlazy;
Al Viro24643082011-02-15 01:26:22 -05001329 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro4ce16ef32012-06-10 16:10:59 -04001330 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001331 if (unlikely(status <= 0)) {
1332 if (status != -ECHILD)
1333 need_reval = 0;
1334 goto unlazy;
1335 }
Al Viro24643082011-02-15 01:26:22 -05001336 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001337 path->mnt = mnt;
1338 path->dentry = dentry;
Al Virod6e9bd22011-05-27 07:03:15 -04001339 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1340 goto unlazy;
1341 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1342 goto unlazy;
1343 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001344unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001345 if (unlazy_walk(nd, dentry))
1346 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001347 } else {
1348 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001349 }
Al Viro5a18fff2011-03-11 04:44:53 -05001350
Al Viro81e6f522012-03-30 14:48:04 -04001351 if (unlikely(!dentry))
1352 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001353
Al Viro81e6f522012-03-30 14:48:04 -04001354 if (unlikely(d_need_lookup(dentry))) {
1355 dput(dentry);
1356 goto need_lookup;
Al Viro24643082011-02-15 01:26:22 -05001357 }
Al Viro81e6f522012-03-30 14:48:04 -04001358
Al Viro5a18fff2011-03-11 04:44:53 -05001359 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
Al Viro4ce16ef32012-06-10 16:10:59 -04001360 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001361 if (unlikely(status <= 0)) {
1362 if (status < 0) {
1363 dput(dentry);
1364 return status;
1365 }
1366 if (!d_invalidate(dentry)) {
1367 dput(dentry);
Al Viro81e6f522012-03-30 14:48:04 -04001368 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001369 }
1370 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001371
David Howells9875cf82011-01-14 18:45:21 +00001372 path->mnt = mnt;
1373 path->dentry = dentry;
1374 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001375 if (unlikely(err < 0)) {
1376 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001377 return err;
Ian Kent89312212011-01-18 12:06:10 +08001378 }
Al Viroa3fbbde2011-11-07 21:21:26 +00001379 if (err)
1380 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001381 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 return 0;
Al Viro81e6f522012-03-30 14:48:04 -04001383
1384need_lookup:
Miklos Szeredi697f5142012-05-21 17:30:05 +02001385 return 1;
1386}
1387
1388/* Fast lookup failed, do it the slow way */
1389static int lookup_slow(struct nameidata *nd, struct qstr *name,
1390 struct path *path)
1391{
1392 struct dentry *dentry, *parent;
1393 int err;
1394
1395 parent = nd->path.dentry;
Al Viro81e6f522012-03-30 14:48:04 -04001396 BUG_ON(nd->inode != parent->d_inode);
1397
1398 mutex_lock(&parent->d_inode->i_mutex);
Al Viro72bd8662012-06-10 17:17:17 -04001399 dentry = __lookup_hash(name, parent, nd->flags);
Al Viro81e6f522012-03-30 14:48:04 -04001400 mutex_unlock(&parent->d_inode->i_mutex);
1401 if (IS_ERR(dentry))
1402 return PTR_ERR(dentry);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001403 path->mnt = nd->path.mnt;
1404 path->dentry = dentry;
1405 err = follow_managed(path, nd->flags);
1406 if (unlikely(err < 0)) {
1407 path_put_conditional(path, nd);
1408 return err;
1409 }
1410 if (err)
1411 nd->flags |= LOOKUP_JUMPED;
1412 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413}
1414
Al Viro52094c82011-02-21 21:34:47 -05001415static inline int may_lookup(struct nameidata *nd)
1416{
1417 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001418 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001419 if (err != -ECHILD)
1420 return err;
Al Viro19660af2011-03-25 10:32:48 -04001421 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001422 return -ECHILD;
1423 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001424 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001425}
1426
Al Viro9856fa12011-03-04 14:22:06 -05001427static inline int handle_dots(struct nameidata *nd, int type)
1428{
1429 if (type == LAST_DOTDOT) {
1430 if (nd->flags & LOOKUP_RCU) {
1431 if (follow_dotdot_rcu(nd))
1432 return -ECHILD;
1433 } else
1434 follow_dotdot(nd);
1435 }
1436 return 0;
1437}
1438
Al Viro951361f2011-03-04 14:44:37 -05001439static void terminate_walk(struct nameidata *nd)
1440{
1441 if (!(nd->flags & LOOKUP_RCU)) {
1442 path_put(&nd->path);
1443 } else {
1444 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001445 if (!(nd->flags & LOOKUP_ROOT))
1446 nd->root.mnt = NULL;
Al Viro32a79912012-07-18 20:43:19 +04001447 unlock_rcu_walk();
Al Viro951361f2011-03-04 14:44:37 -05001448 }
1449}
1450
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001451/*
1452 * Do we need to follow links? We _really_ want to be able
1453 * to do this check without having to look at inode->i_op,
1454 * so we keep a cache of "no, this doesn't need follow_link"
1455 * for the common case.
1456 */
Linus Torvalds7813b942011-08-07 09:53:20 -07001457static inline int should_follow_link(struct inode *inode, int follow)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001458{
1459 if (unlikely(!(inode->i_opflags & IOP_NOFOLLOW))) {
1460 if (likely(inode->i_op->follow_link))
1461 return follow;
1462
1463 /* This gets set once for the inode lifetime */
1464 spin_lock(&inode->i_lock);
1465 inode->i_opflags |= IOP_NOFOLLOW;
1466 spin_unlock(&inode->i_lock);
1467 }
1468 return 0;
1469}
1470
Al Viroce57dfc2011-03-13 19:58:58 -04001471static inline int walk_component(struct nameidata *nd, struct path *path,
1472 struct qstr *name, int type, int follow)
1473{
1474 struct inode *inode;
1475 int err;
1476 /*
1477 * "." and ".." are special - ".." especially so because it has
1478 * to be able to know about the current root directory and
1479 * parent relationships.
1480 */
1481 if (unlikely(type != LAST_NORM))
1482 return handle_dots(nd, type);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001483 err = lookup_fast(nd, name, path, &inode);
Al Viroce57dfc2011-03-13 19:58:58 -04001484 if (unlikely(err)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001485 if (err < 0)
1486 goto out_err;
1487
1488 err = lookup_slow(nd, name, path);
1489 if (err < 0)
1490 goto out_err;
1491
1492 inode = path->dentry->d_inode;
Al Viroce57dfc2011-03-13 19:58:58 -04001493 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001494 err = -ENOENT;
1495 if (!inode)
1496 goto out_path_put;
1497
Linus Torvalds7813b942011-08-07 09:53:20 -07001498 if (should_follow_link(inode, follow)) {
Al Viro19660af2011-03-25 10:32:48 -04001499 if (nd->flags & LOOKUP_RCU) {
1500 if (unlikely(unlazy_walk(nd, path->dentry))) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001501 err = -ECHILD;
1502 goto out_err;
Al Viro19660af2011-03-25 10:32:48 -04001503 }
1504 }
Al Viroce57dfc2011-03-13 19:58:58 -04001505 BUG_ON(inode != path->dentry->d_inode);
1506 return 1;
1507 }
1508 path_to_nameidata(path, nd);
1509 nd->inode = inode;
1510 return 0;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001511
1512out_path_put:
1513 path_to_nameidata(path, nd);
1514out_err:
1515 terminate_walk(nd);
1516 return err;
Al Viroce57dfc2011-03-13 19:58:58 -04001517}
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519/*
Al Virob3563792011-03-14 21:54:55 -04001520 * This limits recursive symlink follows to 8, while
1521 * limiting consecutive symlinks to 40.
1522 *
1523 * Without that kind of total limit, nasty chains of consecutive
1524 * symlinks can cause almost arbitrarily long lookups.
1525 */
1526static inline int nested_symlink(struct path *path, struct nameidata *nd)
1527{
1528 int res;
1529
Al Virob3563792011-03-14 21:54:55 -04001530 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1531 path_put_conditional(path, nd);
1532 path_put(&nd->path);
1533 return -ELOOP;
1534 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001535 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001536
1537 nd->depth++;
1538 current->link_count++;
1539
1540 do {
1541 struct path link = *path;
1542 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001543
1544 res = follow_link(&link, nd, &cookie);
Al Viro6d7b5aa2012-06-10 04:15:17 -04001545 if (res)
1546 break;
1547 res = walk_component(nd, path, &nd->last,
1548 nd->last_type, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001549 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001550 } while (res > 0);
1551
1552 current->link_count--;
1553 nd->depth--;
1554 return res;
1555}
1556
1557/*
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001558 * We really don't want to look at inode->i_op->lookup
1559 * when we don't have to. So we keep a cache bit in
1560 * the inode ->i_opflags field that says "yes, we can
1561 * do lookup on this inode".
1562 */
1563static inline int can_lookup(struct inode *inode)
1564{
1565 if (likely(inode->i_opflags & IOP_LOOKUP))
1566 return 1;
1567 if (likely(!inode->i_op->lookup))
1568 return 0;
1569
1570 /* We do this once for the lifetime of the inode */
1571 spin_lock(&inode->i_lock);
1572 inode->i_opflags |= IOP_LOOKUP;
1573 spin_unlock(&inode->i_lock);
1574 return 1;
1575}
1576
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001577/*
1578 * We can do the critical dentry name comparison and hashing
1579 * operations one word at a time, but we are limited to:
1580 *
1581 * - Architectures with fast unaligned word accesses. We could
1582 * do a "get_unaligned()" if this helps and is sufficiently
1583 * fast.
1584 *
1585 * - Little-endian machines (so that we can generate the mask
1586 * of low bytes efficiently). Again, we *could* do a byte
1587 * swapping load on big-endian architectures if that is not
1588 * expensive enough to make the optimization worthless.
1589 *
1590 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1591 * do not trap on the (extremely unlikely) case of a page
1592 * crossing operation.
1593 *
1594 * - Furthermore, we need an efficient 64-bit compile for the
1595 * 64-bit case in order to generate the "number of bytes in
1596 * the final mask". Again, that could be replaced with a
1597 * efficient population count instruction or similar.
1598 */
1599#ifdef CONFIG_DCACHE_WORD_ACCESS
1600
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001601#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001602
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001603#ifdef CONFIG_64BIT
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001604
1605static inline unsigned int fold_hash(unsigned long hash)
1606{
1607 hash += hash >> (8*sizeof(int));
1608 return hash;
1609}
1610
1611#else /* 32-bit case */
1612
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001613#define fold_hash(x) (x)
1614
1615#endif
1616
1617unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1618{
1619 unsigned long a, mask;
1620 unsigned long hash = 0;
1621
1622 for (;;) {
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001623 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001624 if (len < sizeof(unsigned long))
1625 break;
1626 hash += a;
Al Virof132c5b2012-03-22 21:59:52 +00001627 hash *= 9;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001628 name += sizeof(unsigned long);
1629 len -= sizeof(unsigned long);
1630 if (!len)
1631 goto done;
1632 }
1633 mask = ~(~0ul << len*8);
1634 hash += mask & a;
1635done:
1636 return fold_hash(hash);
1637}
1638EXPORT_SYMBOL(full_name_hash);
1639
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001640/*
1641 * Calculate the length and hash of the path component, and
1642 * return the length of the component;
1643 */
1644static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1645{
Linus Torvalds36126f82012-05-26 10:43:17 -07001646 unsigned long a, b, adata, bdata, mask, hash, len;
1647 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001648
1649 hash = a = 0;
1650 len = -sizeof(unsigned long);
1651 do {
1652 hash = (hash + a) * 9;
1653 len += sizeof(unsigned long);
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001654 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07001655 b = a ^ REPEAT_BYTE('/');
1656 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001657
Linus Torvalds36126f82012-05-26 10:43:17 -07001658 adata = prep_zero_mask(a, adata, &constants);
1659 bdata = prep_zero_mask(b, bdata, &constants);
1660
1661 mask = create_zero_mask(adata | bdata);
1662
1663 hash += a & zero_bytemask(mask);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001664 *hashp = fold_hash(hash);
1665
Linus Torvalds36126f82012-05-26 10:43:17 -07001666 return len + find_zero(mask);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001667}
1668
1669#else
1670
Linus Torvalds0145acc2012-03-02 14:32:59 -08001671unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1672{
1673 unsigned long hash = init_name_hash();
1674 while (len--)
1675 hash = partial_name_hash(*name++, hash);
1676 return end_name_hash(hash);
1677}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001678EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001679
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001680/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001681 * We know there's a real path component here of at least
1682 * one character.
1683 */
1684static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1685{
1686 unsigned long hash = init_name_hash();
1687 unsigned long len = 0, c;
1688
1689 c = (unsigned char)*name;
1690 do {
1691 len++;
1692 hash = partial_name_hash(c, hash);
1693 c = (unsigned char)name[len];
1694 } while (c && c != '/');
1695 *hashp = end_name_hash(hash);
1696 return len;
1697}
1698
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001699#endif
1700
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001701/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001703 * This is the basic name resolution function, turning a pathname into
1704 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001706 * Returns 0 and nd will have valid dentry and mnt on success.
1707 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 */
Al Viro6de88d72009-08-09 01:41:57 +04001709static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710{
1711 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713
1714 while (*name=='/')
1715 name++;
1716 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001717 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 /* At this point we know we have a real path component. */
1720 for(;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 struct qstr this;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001722 long len;
Al Virofe479a52011-02-22 15:10:03 -05001723 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Al Viro52094c82011-02-21 21:34:47 -05001725 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (err)
1727 break;
1728
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001729 len = hash_name(name, &this.hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 this.name = name;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001731 this.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Al Virofe479a52011-02-22 15:10:03 -05001733 type = LAST_NORM;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001734 if (name[0] == '.') switch (len) {
Al Virofe479a52011-02-22 15:10:03 -05001735 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001736 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001737 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001738 nd->flags |= LOOKUP_JUMPED;
1739 }
Al Virofe479a52011-02-22 15:10:03 -05001740 break;
1741 case 1:
1742 type = LAST_DOT;
1743 }
Al Viro5a202bc2011-03-08 14:17:44 -05001744 if (likely(type == LAST_NORM)) {
1745 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001746 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001747 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1748 err = parent->d_op->d_hash(parent, nd->inode,
1749 &this);
1750 if (err < 0)
1751 break;
1752 }
1753 }
Al Virofe479a52011-02-22 15:10:03 -05001754
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001755 if (!name[len])
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 goto last_component;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001757 /*
1758 * If it wasn't NUL, we know it was '/'. Skip that
1759 * slash, and continue until no more slashes.
1760 */
1761 do {
1762 len++;
1763 } while (unlikely(name[len] == '/'));
1764 if (!name[len])
Al Virob3563792011-03-14 21:54:55 -04001765 goto last_component;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001766 name += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Al Viroce57dfc2011-03-13 19:58:58 -04001768 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1769 if (err < 0)
1770 return err;
Al Virofe479a52011-02-22 15:10:03 -05001771
Al Viroce57dfc2011-03-13 19:58:58 -04001772 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001773 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001775 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001776 }
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001777 if (can_lookup(nd->inode))
1778 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 err = -ENOTDIR;
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001780 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 /* here ends the main loop */
1782
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783last_component:
Al Virob3563792011-03-14 21:54:55 -04001784 nd->last = this;
1785 nd->last_type = type;
Al Viro086e1832011-02-22 20:56:27 -05001786 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 }
Al Viro951361f2011-03-04 14:44:37 -05001788 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 return err;
1790}
1791
Al Viro70e9b352011-03-05 21:12:22 -05001792static int path_init(int dfd, const char *name, unsigned int flags,
1793 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001795 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001796 int fput_needed;
1797 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
1799 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001800 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001802 if (flags & LOOKUP_ROOT) {
1803 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001804 if (*name) {
1805 if (!inode->i_op->lookup)
1806 return -ENOTDIR;
1807 retval = inode_permission(inode, MAY_EXEC);
1808 if (retval)
1809 return retval;
1810 }
Al Viro5b6ca022011-03-09 23:04:47 -05001811 nd->path = nd->root;
1812 nd->inode = inode;
1813 if (flags & LOOKUP_RCU) {
Al Viro32a79912012-07-18 20:43:19 +04001814 lock_rcu_walk();
Al Viro5b6ca022011-03-09 23:04:47 -05001815 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1816 } else {
1817 path_get(&nd->path);
1818 }
1819 return 0;
1820 }
1821
Al Viro2a737872009-04-07 11:49:53 -04001822 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001825 if (flags & LOOKUP_RCU) {
Al Viro32a79912012-07-18 20:43:19 +04001826 lock_rcu_walk();
Al Viroe41f7d42011-02-22 14:02:58 -05001827 set_root_rcu(nd);
1828 } else {
1829 set_root(nd);
1830 path_get(&nd->root);
1831 }
Al Viro2a737872009-04-07 11:49:53 -04001832 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001833 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001834 if (flags & LOOKUP_RCU) {
1835 struct fs_struct *fs = current->fs;
1836 unsigned seq;
1837
Al Viro32a79912012-07-18 20:43:19 +04001838 lock_rcu_walk();
Al Viroe41f7d42011-02-22 14:02:58 -05001839
1840 do {
1841 seq = read_seqcount_begin(&fs->seq);
1842 nd->path = fs->pwd;
1843 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1844 } while (read_seqcount_retry(&fs->seq, seq));
1845 } else {
1846 get_fs_pwd(current->fs, &nd->path);
1847 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001848 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001849 struct dentry *dentry;
1850
Al Viro1abf0c72011-03-13 03:51:11 -04001851 file = fget_raw_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001852 retval = -EBADF;
1853 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001854 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001855
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001856 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001857
Al Virof52e0c12011-03-14 18:56:51 -04001858 if (*name) {
1859 retval = -ENOTDIR;
1860 if (!S_ISDIR(dentry->d_inode->i_mode))
1861 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001862
Al Viro4ad5abb2011-06-20 19:57:03 -04001863 retval = inode_permission(dentry->d_inode, MAY_EXEC);
Al Virof52e0c12011-03-14 18:56:51 -04001864 if (retval)
1865 goto fput_fail;
1866 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001867
Jan Blunck5dd784d02008-02-14 19:34:38 -08001868 nd->path = file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001869 if (flags & LOOKUP_RCU) {
1870 if (fput_needed)
Al Viro70e9b352011-03-05 21:12:22 -05001871 *fp = file;
Al Viroe41f7d42011-02-22 14:02:58 -05001872 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro32a79912012-07-18 20:43:19 +04001873 lock_rcu_walk();
Al Viroe41f7d42011-02-22 14:02:58 -05001874 } else {
1875 path_get(&file->f_path);
1876 fput_light(file, fput_needed);
1877 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 }
Al Viroe41f7d42011-02-22 14:02:58 -05001879
Nick Piggin31e6b012011-01-07 17:49:52 +11001880 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001881 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001882
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001883fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001884 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001885out_fail:
1886 return retval;
1887}
1888
Al Virobd92d7f2011-03-14 19:54:59 -04001889static inline int lookup_last(struct nameidata *nd, struct path *path)
1890{
1891 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1892 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1893
1894 nd->flags &= ~LOOKUP_PARENT;
1895 return walk_component(nd, path, &nd->last, nd->last_type,
1896 nd->flags & LOOKUP_FOLLOW);
1897}
1898
Al Viro9b4a9b12009-04-07 11:44:16 -04001899/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001900static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001901 unsigned int flags, struct nameidata *nd)
1902{
Al Viro70e9b352011-03-05 21:12:22 -05001903 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001904 struct path path;
1905 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001906
1907 /*
1908 * Path walking is largely split up into 2 different synchronisation
1909 * schemes, rcu-walk and ref-walk (explained in
1910 * Documentation/filesystems/path-lookup.txt). These share much of the
1911 * path walk code, but some things particularly setup, cleanup, and
1912 * following mounts are sufficiently divergent that functions are
1913 * duplicated. Typically there is a function foo(), and its RCU
1914 * analogue, foo_rcu().
1915 *
1916 * -ECHILD is the error number of choice (just to avoid clashes) that
1917 * is returned if some aspect of an rcu-walk fails. Such an error must
1918 * be handled by restarting a traditional ref-walk (which will always
1919 * be able to complete).
1920 */
Al Virobd92d7f2011-03-14 19:54:59 -04001921 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001922
Al Virobd92d7f2011-03-14 19:54:59 -04001923 if (unlikely(err))
1924 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001925
1926 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001927 err = link_path_walk(name, nd);
1928
1929 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001930 err = lookup_last(nd, &path);
1931 while (err > 0) {
1932 void *cookie;
1933 struct path link = path;
Kees Cook800179c2012-07-25 17:29:07 -07001934 err = may_follow_link(&link, nd);
1935 if (unlikely(err))
1936 break;
Al Virobd92d7f2011-03-14 19:54:59 -04001937 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001938 err = follow_link(&link, nd, &cookie);
Al Viro6d7b5aa2012-06-10 04:15:17 -04001939 if (err)
1940 break;
1941 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001942 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001943 }
1944 }
Al Viroee0827c2011-02-21 23:38:09 -05001945
Al Viro9f1fafe2011-03-25 11:00:12 -04001946 if (!err)
1947 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001948
1949 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1950 if (!nd->inode->i_op->lookup) {
1951 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001952 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001953 }
1954 }
Al Viro16c2cd72011-02-22 15:50:10 -05001955
Al Viro70e9b352011-03-05 21:12:22 -05001956 if (base)
1957 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001958
Al Viro5b6ca022011-03-09 23:04:47 -05001959 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001960 path_put(&nd->root);
1961 nd->root.mnt = NULL;
1962 }
Al Virobd92d7f2011-03-14 19:54:59 -04001963 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001964}
Nick Piggin31e6b012011-01-07 17:49:52 +11001965
Al Viroee0827c2011-02-21 23:38:09 -05001966static int do_path_lookup(int dfd, const char *name,
1967 unsigned int flags, struct nameidata *nd)
1968{
1969 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1970 if (unlikely(retval == -ECHILD))
1971 retval = path_lookupat(dfd, name, flags, nd);
1972 if (unlikely(retval == -ESTALE))
1973 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001974
1975 if (likely(!retval)) {
1976 if (unlikely(!audit_dummy_context())) {
1977 if (nd->path.dentry && nd->inode)
1978 audit_inode(name, nd->path.dentry);
1979 }
1980 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001981 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982}
1983
Al Viro79714f72012-06-15 03:01:42 +04001984/* does lookup, returns the object with parent locked */
1985struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001986{
Al Viro79714f72012-06-15 03:01:42 +04001987 struct nameidata nd;
1988 struct dentry *d;
1989 int err = do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, &nd);
1990 if (err)
1991 return ERR_PTR(err);
1992 if (nd.last_type != LAST_NORM) {
1993 path_put(&nd.path);
1994 return ERR_PTR(-EINVAL);
1995 }
1996 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Al Viro1e0ea002012-07-22 23:46:21 +04001997 d = __lookup_hash(&nd.last, nd.path.dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04001998 if (IS_ERR(d)) {
1999 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2000 path_put(&nd.path);
2001 return d;
2002 }
2003 *path = nd.path;
2004 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002005}
2006
Al Virod1811462008-08-02 00:49:18 -04002007int kern_path(const char *name, unsigned int flags, struct path *path)
2008{
2009 struct nameidata nd;
2010 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
2011 if (!res)
2012 *path = nd.path;
2013 return res;
2014}
2015
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002016/**
2017 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2018 * @dentry: pointer to dentry of the base directory
2019 * @mnt: pointer to vfs mount of the base directory
2020 * @name: pointer to file name
2021 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002022 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002023 */
2024int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2025 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002026 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002027{
Al Viroe0a01242011-06-27 17:00:37 -04002028 struct nameidata nd;
2029 int err;
2030 nd.root.dentry = dentry;
2031 nd.root.mnt = mnt;
2032 BUG_ON(flags & LOOKUP_PARENT);
Al Viro5b6ca022011-03-09 23:04:47 -05002033 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
Al Viroe0a01242011-06-27 17:00:37 -04002034 err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
2035 if (!err)
2036 *path = nd.path;
2037 return err;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002038}
2039
James Morris057f6c02007-04-26 00:12:05 -07002040/*
2041 * Restricted form of lookup. Doesn't follow links, single-component only,
2042 * needs parent already locked. Doesn't follow mounts.
2043 * SMP-safe.
2044 */
Adrian Bunka244e162006-03-31 02:32:11 -08002045static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046{
Al Viro72bd8662012-06-10 17:17:17 -04002047 return __lookup_hash(&nd->last, nd->path.dentry, nd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048}
2049
Christoph Hellwigeead1912007-10-16 23:25:38 -07002050/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002051 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002052 * @name: pathname component to lookup
2053 * @base: base directory to lookup from
2054 * @len: maximum length @len should be interpreted to
2055 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002056 * Note that this routine is purely a helper for filesystem usage and should
2057 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07002058 * nameidata argument is passed to the filesystem methods and a filesystem
2059 * using this helper needs to be prepared for that.
2060 */
James Morris057f6c02007-04-26 00:12:05 -07002061struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2062{
James Morris057f6c02007-04-26 00:12:05 -07002063 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05002064 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002065 int err;
James Morris057f6c02007-04-26 00:12:05 -07002066
David Woodhouse2f9092e2009-04-20 23:18:37 +01002067 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
2068
Al Viro6a96ba52011-03-07 23:49:20 -05002069 this.name = name;
2070 this.len = len;
Linus Torvalds0145acc2012-03-02 14:32:59 -08002071 this.hash = full_name_hash(name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05002072 if (!len)
2073 return ERR_PTR(-EACCES);
2074
Al Viro6a96ba52011-03-07 23:49:20 -05002075 while (len--) {
2076 c = *(const unsigned char *)name++;
2077 if (c == '/' || c == '\0')
2078 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05002079 }
Al Viro5a202bc2011-03-08 14:17:44 -05002080 /*
2081 * See if the low-level filesystem might want
2082 * to use its own hash..
2083 */
2084 if (base->d_flags & DCACHE_OP_HASH) {
2085 int err = base->d_op->d_hash(base, base->d_inode, &this);
2086 if (err < 0)
2087 return ERR_PTR(err);
2088 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07002089
Miklos Szeredicda309d2012-03-26 12:54:21 +02002090 err = inode_permission(base->d_inode, MAY_EXEC);
2091 if (err)
2092 return ERR_PTR(err);
2093
Al Viro72bd8662012-06-10 17:17:17 -04002094 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002095}
2096
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002097int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2098 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099{
Al Viro2d8f3032008-07-22 09:59:21 -04002100 struct nameidata nd;
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002101 char *tmp = getname_flags(name, flags, empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04002104
2105 BUG_ON(flags & LOOKUP_PARENT);
2106
2107 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04002109 if (!err)
2110 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
2112 return err;
2113}
2114
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002115int user_path_at(int dfd, const char __user *name, unsigned flags,
2116 struct path *path)
2117{
Linus Torvaldsf7493e52012-03-22 16:10:40 -07002118 return user_path_at_empty(dfd, name, flags, path, NULL);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002119}
2120
Al Viro2ad94ae2008-07-21 09:32:51 -04002121static int user_path_parent(int dfd, const char __user *path,
2122 struct nameidata *nd, char **name)
2123{
2124 char *s = getname(path);
2125 int error;
2126
2127 if (IS_ERR(s))
2128 return PTR_ERR(s);
2129
2130 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
2131 if (error)
2132 putname(s);
2133 else
2134 *name = s;
2135
2136 return error;
2137}
2138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139/*
2140 * It's inline, so penalty for filesystems that don't use sticky bit is
2141 * minimal.
2142 */
2143static inline int check_sticky(struct inode *dir, struct inode *inode)
2144{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002145 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 if (!(dir->i_mode & S_ISVTX))
2148 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002149 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002151 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 return 0;
Eric W. Biederman1a48e2a2011-11-14 16:24:06 -08002153 return !inode_capable(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154}
2155
2156/*
2157 * Check whether we can remove a link victim from directory dir, check
2158 * whether the type of victim is right.
2159 * 1. We can't do it if dir is read-only (done in permission())
2160 * 2. We should have write and exec permissions on dir
2161 * 3. We can't remove anything from append-only dir
2162 * 4. We can't do anything with immutable dir (done in permission())
2163 * 5. If the sticky bit on dir is set we should either
2164 * a. be owner of dir, or
2165 * b. be owner of victim, or
2166 * c. have CAP_FOWNER capability
2167 * 6. If the victim is append-only or immutable we can't do antyhing with
2168 * links pointing to it.
2169 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2170 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2171 * 9. We can't remove a root or mountpoint.
2172 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2173 * nfs_async_unlink().
2174 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08002175static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176{
2177 int error;
2178
2179 if (!victim->d_inode)
2180 return -ENOENT;
2181
2182 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05002183 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Al Virof419a2e2008-07-22 00:07:17 -04002185 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 if (error)
2187 return error;
2188 if (IS_APPEND(dir))
2189 return -EPERM;
2190 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08002191 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 return -EPERM;
2193 if (isdir) {
2194 if (!S_ISDIR(victim->d_inode->i_mode))
2195 return -ENOTDIR;
2196 if (IS_ROOT(victim))
2197 return -EBUSY;
2198 } else if (S_ISDIR(victim->d_inode->i_mode))
2199 return -EISDIR;
2200 if (IS_DEADDIR(dir))
2201 return -ENOENT;
2202 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2203 return -EBUSY;
2204 return 0;
2205}
2206
2207/* Check whether we can create an object with dentry child in directory
2208 * dir.
2209 * 1. We can't do it if child already exists (open has special treatment for
2210 * this case, but since we are inlined it's OK)
2211 * 2. We can't do it if dir is read-only (done in permission())
2212 * 3. We should have write and exec permissions on dir
2213 * 4. We can't do it if dir is immutable (done in permission())
2214 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002215static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216{
2217 if (child->d_inode)
2218 return -EEXIST;
2219 if (IS_DEADDIR(dir))
2220 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04002221 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222}
2223
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224/*
2225 * p1 and p2 should be directories on the same fs.
2226 */
2227struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2228{
2229 struct dentry *p;
2230
2231 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07002232 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 return NULL;
2234 }
2235
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002236 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002238 p = d_ancestor(p2, p1);
2239 if (p) {
2240 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2241 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2242 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 }
2244
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002245 p = d_ancestor(p1, p2);
2246 if (p) {
2247 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2248 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2249 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 }
2251
Ingo Molnarf2eace22006-07-03 00:25:05 -07002252 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2253 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 return NULL;
2255}
2256
2257void unlock_rename(struct dentry *p1, struct dentry *p2)
2258{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002259 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002261 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002262 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 }
2264}
2265
Al Viro4acdaf22011-07-26 01:42:34 -04002266int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002267 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002269 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 if (error)
2271 return error;
2272
Al Viroacfa4382008-12-04 10:06:33 -05002273 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 return -EACCES; /* shouldn't it be ENOSYS? */
2275 mode &= S_IALLUGO;
2276 mode |= S_IFREG;
2277 error = security_inode_create(dir, dentry, mode);
2278 if (error)
2279 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002280 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002281 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002282 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 return error;
2284}
2285
Al Viro73d049a2011-03-11 12:08:24 -05002286static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002288 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 struct inode *inode = dentry->d_inode;
2290 int error;
2291
Al Virobcda7652011-03-13 16:42:14 -04002292 /* O_PATH? */
2293 if (!acc_mode)
2294 return 0;
2295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 if (!inode)
2297 return -ENOENT;
2298
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002299 switch (inode->i_mode & S_IFMT) {
2300 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002302 case S_IFDIR:
2303 if (acc_mode & MAY_WRITE)
2304 return -EISDIR;
2305 break;
2306 case S_IFBLK:
2307 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002308 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002310 /*FALLTHRU*/
2311 case S_IFIFO:
2312 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002314 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002315 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002316
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002317 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002318 if (error)
2319 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002320
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 /*
2322 * An append-only file must be opened in append mode for writing.
2323 */
2324 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002325 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002326 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002328 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 }
2330
2331 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002332 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002333 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002335 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002336}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337
Jeff Laytone1181ee2010-12-07 16:19:50 -05002338static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002339{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002340 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002341 struct inode *inode = path->dentry->d_inode;
2342 int error = get_write_access(inode);
2343 if (error)
2344 return error;
2345 /*
2346 * Refuse to truncate files with mandatory locks held on them.
2347 */
2348 error = locks_verify_locked(inode);
2349 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002350 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002351 if (!error) {
2352 error = do_truncate(path->dentry, 0,
2353 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002354 filp);
Al Viro7715b522009-12-16 03:54:00 -05002355 }
2356 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002357 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358}
2359
Dave Hansend57999e2008-02-15 14:37:27 -08002360static inline int open_to_namei_flags(int flag)
2361{
Al Viro8a5e9292011-06-25 19:15:54 -04002362 if ((flag & O_ACCMODE) == 3)
2363 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002364 return flag;
2365}
2366
Miklos Szeredid18e9002012-06-05 15:10:17 +02002367static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2368{
2369 int error = security_path_mknod(dir, dentry, mode, 0);
2370 if (error)
2371 return error;
2372
2373 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2374 if (error)
2375 return error;
2376
2377 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2378}
2379
David Howells1acf0af2012-06-14 16:13:46 +01002380/*
2381 * Attempt to atomically look up, create and open a file from a negative
2382 * dentry.
2383 *
2384 * Returns 0 if successful. The file will have been created and attached to
2385 * @file by the filesystem calling finish_open().
2386 *
2387 * Returns 1 if the file was looked up only or didn't need creating. The
2388 * caller will need to perform the open themselves. @path will have been
2389 * updated to point to the new dentry. This may be negative.
2390 *
2391 * Returns an error code otherwise.
2392 */
Al Viro2675a4e2012-06-22 12:41:10 +04002393static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2394 struct path *path, struct file *file,
2395 const struct open_flags *op,
2396 bool *want_write, bool need_lookup,
2397 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002398{
2399 struct inode *dir = nd->path.dentry->d_inode;
2400 unsigned open_flag = open_to_namei_flags(op->open_flag);
2401 umode_t mode;
2402 int error;
2403 int acc_mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002404 int create_error = 0;
2405 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
2406
2407 BUG_ON(dentry->d_inode);
2408
2409 /* Don't create child dentry for a dead directory. */
2410 if (unlikely(IS_DEADDIR(dir))) {
Al Viro2675a4e2012-06-22 12:41:10 +04002411 error = -ENOENT;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002412 goto out;
2413 }
2414
2415 mode = op->mode & S_IALLUGO;
2416 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2417 mode &= ~current_umask();
2418
2419 if (open_flag & O_EXCL) {
2420 open_flag &= ~O_TRUNC;
Al Viro47237682012-06-10 05:01:45 -04002421 *opened |= FILE_CREATED;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002422 }
2423
2424 /*
2425 * Checking write permission is tricky, bacuse we don't know if we are
2426 * going to actually need it: O_CREAT opens should work as long as the
2427 * file exists. But checking existence breaks atomicity. The trick is
2428 * to check access and if not granted clear O_CREAT from the flags.
2429 *
2430 * Another problem is returing the "right" error value (e.g. for an
2431 * O_EXCL open we want to return EEXIST not EROFS).
2432 */
2433 if ((open_flag & (O_CREAT | O_TRUNC)) ||
2434 (open_flag & O_ACCMODE) != O_RDONLY) {
2435 error = mnt_want_write(nd->path.mnt);
2436 if (!error) {
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002437 *want_write = true;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002438 } else if (!(open_flag & O_CREAT)) {
2439 /*
2440 * No O_CREATE -> atomicity not a requirement -> fall
2441 * back to lookup + open
2442 */
2443 goto no_open;
2444 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2445 /* Fall back and fail with the right error */
2446 create_error = error;
2447 goto no_open;
2448 } else {
2449 /* No side effects, safe to clear O_CREAT */
2450 create_error = error;
2451 open_flag &= ~O_CREAT;
2452 }
2453 }
2454
2455 if (open_flag & O_CREAT) {
2456 error = may_o_create(&nd->path, dentry, op->mode);
2457 if (error) {
2458 create_error = error;
2459 if (open_flag & O_EXCL)
2460 goto no_open;
2461 open_flag &= ~O_CREAT;
2462 }
2463 }
2464
2465 if (nd->flags & LOOKUP_DIRECTORY)
2466 open_flag |= O_DIRECTORY;
2467
Al Viro30d90492012-06-22 12:40:19 +04002468 file->f_path.dentry = DENTRY_NOT_SET;
2469 file->f_path.mnt = nd->path.mnt;
2470 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
Al Viro47237682012-06-10 05:01:45 -04002471 opened);
Al Virod9585272012-06-22 12:39:14 +04002472 if (error < 0) {
Al Virod9585272012-06-22 12:39:14 +04002473 if (create_error && error == -ENOENT)
2474 error = create_error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002475 goto out;
2476 }
2477
2478 acc_mode = op->acc_mode;
Al Viro47237682012-06-10 05:01:45 -04002479 if (*opened & FILE_CREATED) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002480 fsnotify_create(dir, dentry);
2481 acc_mode = MAY_OPEN;
2482 }
2483
Al Virod9585272012-06-22 12:39:14 +04002484 if (error) { /* returned 1, that is */
Al Viro30d90492012-06-22 12:40:19 +04002485 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04002486 error = -EIO;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002487 goto out;
2488 }
Al Viro30d90492012-06-22 12:40:19 +04002489 if (file->f_path.dentry) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002490 dput(dentry);
Al Viro30d90492012-06-22 12:40:19 +04002491 dentry = file->f_path.dentry;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002492 }
2493 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,
2557 bool *want_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 Viro30d90492012-06-22 12:40:19 +04002575 return atomic_open(nd, dentry, path, file, op, want_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 */
2599 error = mnt_want_write(nd->path.mnt);
2600 if (error)
2601 goto out_dput;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002602 *want_write = true;
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;
2632 bool want_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 Viroa1e28032009-12-24 02:12:06 -05002701 mutex_lock(&dir->d_inode->i_mutex);
Al Viro2675a4e2012-06-22 12:41:10 +04002702 error = lookup_open(nd, path, file, op, &want_write, opened);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002703 mutex_unlock(&dir->d_inode->i_mutex);
Al Viroa1e28032009-12-24 02:12:06 -05002704
Al Viro2675a4e2012-06-22 12:41:10 +04002705 if (error <= 0) {
2706 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002707 goto out;
2708
Al Viro47237682012-06-10 05:01:45 -04002709 if ((*opened & FILE_CREATED) ||
Al Viro2675a4e2012-06-22 12:41:10 +04002710 !S_ISREG(file->f_path.dentry->d_inode->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002711 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002712
Al Viro2675a4e2012-06-22 12:41:10 +04002713 audit_inode(pathname, file->f_path.dentry);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002714 goto opened;
2715 }
Al Virofb1cc552009-12-24 01:58:28 -05002716
Al Viro47237682012-06-10 05:01:45 -04002717 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05002718 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002719 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002720 will_truncate = false;
Al Virobcda7652011-03-13 16:42:14 -04002721 acc_mode = MAY_OPEN;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002722 path_to_nameidata(path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02002723 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05002724 }
2725
2726 /*
Jeff Layton3134f372012-07-25 10:19:47 -04002727 * create/update audit record if it already exists.
Al Virofb1cc552009-12-24 01:58:28 -05002728 */
Jeff Layton3134f372012-07-25 10:19:47 -04002729 if (path->dentry->d_inode)
2730 audit_inode(pathname, path->dentry);
Al Virofb1cc552009-12-24 01:58:28 -05002731
Miklos Szeredid18e9002012-06-05 15:10:17 +02002732 /*
2733 * If atomic_open() acquired write access it is dropped now due to
2734 * possible mount and symlink following (this might be optimized away if
2735 * necessary...)
2736 */
2737 if (want_write) {
2738 mnt_drop_write(nd->path.mnt);
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002739 want_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002740 }
2741
Al Virofb1cc552009-12-24 01:58:28 -05002742 error = -EEXIST;
Al Viroca344a892011-03-09 00:36:45 -05002743 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002744 goto exit_dput;
2745
David Howells9875cf82011-01-14 18:45:21 +00002746 error = follow_managed(path, nd->flags);
2747 if (error < 0)
2748 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002749
Al Viroa3fbbde2011-11-07 21:21:26 +00002750 if (error)
2751 nd->flags |= LOOKUP_JUMPED;
2752
Miklos Szeredidecf3402012-05-21 17:30:08 +02002753 BUG_ON(nd->flags & LOOKUP_RCU);
2754 inode = path->dentry->d_inode;
Miklos Szeredi5f5daac2012-05-21 17:30:14 +02002755finish_lookup:
2756 /* we _can_ be in RCU mode here */
Al Virofb1cc552009-12-24 01:58:28 -05002757 error = -ENOENT;
Miklos Szeredi54c33e72012-05-21 17:30:10 +02002758 if (!inode) {
2759 path_to_nameidata(path, nd);
Al Viro2675a4e2012-06-22 12:41:10 +04002760 goto out;
Miklos Szeredi54c33e72012-05-21 17:30:10 +02002761 }
Al Viro9e67f362009-12-26 07:04:50 -05002762
Miklos Szeredid45ea862012-05-21 17:30:09 +02002763 if (should_follow_link(inode, !symlink_ok)) {
2764 if (nd->flags & LOOKUP_RCU) {
2765 if (unlikely(unlazy_walk(nd, path->dentry))) {
2766 error = -ECHILD;
Al Viro2675a4e2012-06-22 12:41:10 +04002767 goto out;
Miklos Szeredid45ea862012-05-21 17:30:09 +02002768 }
2769 }
2770 BUG_ON(inode != path->dentry->d_inode);
Al Viro2675a4e2012-06-22 12:41:10 +04002771 return 1;
Miklos Szeredid45ea862012-05-21 17:30:09 +02002772 }
Al Virofb1cc552009-12-24 01:58:28 -05002773
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002774 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path->mnt) {
2775 path_to_nameidata(path, nd);
2776 } else {
2777 save_parent.dentry = nd->path.dentry;
2778 save_parent.mnt = mntget(path->mnt);
2779 nd->path.dentry = path->dentry;
2780
2781 }
Miklos Szeredidecf3402012-05-21 17:30:08 +02002782 nd->inode = inode;
Al Viroa3fbbde2011-11-07 21:21:26 +00002783 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
2784 error = complete_walk(nd);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002785 if (error) {
2786 path_put(&save_parent);
Al Viro2675a4e2012-06-22 12:41:10 +04002787 return error;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002788 }
Al Virofb1cc552009-12-24 01:58:28 -05002789 error = -EISDIR;
Miklos Szeredi050ac842012-05-21 17:30:12 +02002790 if ((open_flag & O_CREAT) && S_ISDIR(nd->inode->i_mode))
Al Viro2675a4e2012-06-22 12:41:10 +04002791 goto out;
Miklos Szerediaf2f5542012-05-21 17:30:11 +02002792 error = -ENOTDIR;
2793 if ((nd->flags & LOOKUP_DIRECTORY) && !nd->inode->i_op->lookup)
Al Viro2675a4e2012-06-22 12:41:10 +04002794 goto out;
Miklos Szeredid7fdd7f2012-05-21 17:30:13 +02002795 audit_inode(pathname, nd->path.dentry);
Miklos Szeredie83db162012-06-05 15:10:29 +02002796finish_open:
Al Viro6c0d46c2011-03-09 00:59:59 -05002797 if (!S_ISREG(nd->inode->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002798 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05002799
Al Viro0f9d1a12011-03-09 00:13:14 -05002800 if (will_truncate) {
2801 error = mnt_want_write(nd->path.mnt);
2802 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002803 goto out;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002804 want_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05002805 }
Miklos Szeredie83db162012-06-05 15:10:29 +02002806finish_open_created:
Al Virobcda7652011-03-13 16:42:14 -04002807 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002808 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002809 goto out;
Al Viro30d90492012-06-22 12:40:19 +04002810 file->f_path.mnt = nd->path.mnt;
2811 error = finish_open(file, nd->path.dentry, NULL, opened);
2812 if (error) {
Al Viro30d90492012-06-22 12:40:19 +04002813 if (error == -EOPENSTALE)
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002814 goto stale_open;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002815 goto out;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002816 }
Miklos Szeredia8277b92012-06-05 15:10:32 +02002817opened:
Al Viro2675a4e2012-06-22 12:41:10 +04002818 error = open_check_o_direct(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002819 if (error)
2820 goto exit_fput;
Al Viro2675a4e2012-06-22 12:41:10 +04002821 error = ima_file_check(file, op->acc_mode);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02002822 if (error)
2823 goto exit_fput;
2824
2825 if (will_truncate) {
Al Viro2675a4e2012-06-22 12:41:10 +04002826 error = handle_truncate(file);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02002827 if (error)
2828 goto exit_fput;
Al Viro0f9d1a12011-03-09 00:13:14 -05002829 }
Al Viroca344a892011-03-09 00:36:45 -05002830out:
2831 if (want_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002832 mnt_drop_write(nd->path.mnt);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002833 path_put(&save_parent);
Miklos Szeredie276ae62012-05-21 17:30:06 +02002834 terminate_walk(nd);
Al Viro2675a4e2012-06-22 12:41:10 +04002835 return error;
Al Virofb1cc552009-12-24 01:58:28 -05002836
Al Virofb1cc552009-12-24 01:58:28 -05002837exit_dput:
2838 path_put_conditional(path, nd);
Al Viroca344a892011-03-09 00:36:45 -05002839 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002840exit_fput:
Al Viro2675a4e2012-06-22 12:41:10 +04002841 fput(file);
2842 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002843
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02002844stale_open:
2845 /* If no saved parent or already retried then can't retry */
2846 if (!save_parent.dentry || retried)
2847 goto out;
2848
2849 BUG_ON(save_parent.dentry != dir);
2850 path_put(&nd->path);
2851 nd->path = save_parent;
2852 nd->inode = dir->d_inode;
2853 save_parent.mnt = NULL;
2854 save_parent.dentry = NULL;
2855 if (want_write) {
2856 mnt_drop_write(nd->path.mnt);
2857 want_write = false;
2858 }
2859 retried = true;
2860 goto retry_lookup;
Al Virofb1cc552009-12-24 01:58:28 -05002861}
2862
Al Viro13aab422011-02-23 17:54:08 -05002863static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002864 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865{
Al Virofe2d35f2011-03-05 22:58:25 -05002866 struct file *base = NULL;
Al Viro30d90492012-06-22 12:40:19 +04002867 struct file *file;
Al Viro9850c052010-01-13 15:01:15 -05002868 struct path path;
Al Viro47237682012-06-10 05:01:45 -04002869 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05002870 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002871
Al Viro30d90492012-06-22 12:40:19 +04002872 file = get_empty_filp();
2873 if (!file)
Nick Piggin31e6b012011-01-07 17:49:52 +11002874 return ERR_PTR(-ENFILE);
2875
Al Viro30d90492012-06-22 12:40:19 +04002876 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11002877
Al Viro73d049a2011-03-11 12:08:24 -05002878 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002879 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04002880 goto out;
Nick Piggin31e6b012011-01-07 17:49:52 +11002881
Al Virofe2d35f2011-03-05 22:58:25 -05002882 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002883 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002884 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04002885 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
Al Viro2675a4e2012-06-22 12:41:10 +04002887 error = do_last(nd, &path, file, op, &opened, pathname);
2888 while (unlikely(error > 0)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002889 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05002890 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04002891 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05002892 path_put_conditional(&path, nd);
2893 path_put(&nd->path);
Al Viro2675a4e2012-06-22 12:41:10 +04002894 error = -ELOOP;
Al Viro40b39132011-03-09 16:22:18 -05002895 break;
2896 }
Kees Cook800179c2012-07-25 17:29:07 -07002897 error = may_follow_link(&link, nd);
2898 if (unlikely(error))
2899 break;
Al Viro73d049a2011-03-11 12:08:24 -05002900 nd->flags |= LOOKUP_PARENT;
2901 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04002902 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002903 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04002904 break;
2905 error = do_last(nd, &path, file, op, &opened, pathname);
Al Viro574197e2011-03-14 22:20:34 -04002906 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002907 }
Al Viro10fa8e62009-12-26 07:09:49 -05002908out:
Al Viro73d049a2011-03-11 12:08:24 -05002909 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2910 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002911 if (base)
2912 fput(base);
Al Viro2675a4e2012-06-22 12:41:10 +04002913 if (!(opened & FILE_OPENED)) {
2914 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04002915 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002916 }
Al Viro2675a4e2012-06-22 12:41:10 +04002917 if (unlikely(error)) {
2918 if (error == -EOPENSTALE) {
2919 if (flags & LOOKUP_RCU)
2920 error = -ECHILD;
2921 else
2922 error = -ESTALE;
2923 }
2924 file = ERR_PTR(error);
2925 }
2926 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927}
2928
Al Viro13aab422011-02-23 17:54:08 -05002929struct file *do_filp_open(int dfd, const char *pathname,
2930 const struct open_flags *op, int flags)
2931{
Al Viro73d049a2011-03-11 12:08:24 -05002932 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002933 struct file *filp;
2934
Al Viro73d049a2011-03-11 12:08:24 -05002935 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002936 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002937 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002938 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002939 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002940 return filp;
2941}
2942
Al Viro73d049a2011-03-11 12:08:24 -05002943struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2944 const char *name, const struct open_flags *op, int flags)
2945{
2946 struct nameidata nd;
2947 struct file *file;
2948
2949 nd.root.mnt = mnt;
2950 nd.root.dentry = dentry;
2951
2952 flags |= LOOKUP_ROOT;
2953
Al Virobcda7652011-03-13 16:42:14 -04002954 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002955 return ERR_PTR(-ELOOP);
2956
2957 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2958 if (unlikely(file == ERR_PTR(-ECHILD)))
2959 file = path_openat(-1, name, &nd, op, flags);
2960 if (unlikely(file == ERR_PTR(-ESTALE)))
2961 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2962 return file;
2963}
2964
Al Viroed75e952011-06-27 16:53:43 -04002965struct dentry *kern_path_create(int dfd, const char *pathname, struct path *path, int is_dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002967 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viroed75e952011-06-27 16:53:43 -04002968 struct nameidata nd;
2969 int error = do_path_lookup(dfd, pathname, LOOKUP_PARENT, &nd);
2970 if (error)
2971 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002973 /*
2974 * Yucky last component or no last component at all?
2975 * (foo/., foo/.., /////)
2976 */
Al Viroed75e952011-06-27 16:53:43 -04002977 if (nd.last_type != LAST_NORM)
2978 goto out;
2979 nd.flags &= ~LOOKUP_PARENT;
2980 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002981
2982 /*
2983 * Do the final lookup.
2984 */
Al Viroed75e952011-06-27 16:53:43 -04002985 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2986 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04002988 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002989
Al Viroa8104a92012-07-20 02:25:00 +04002990 error = -EEXIST;
Al Viroe9baf6e2008-05-15 04:49:12 -04002991 if (dentry->d_inode)
Al Viroa8104a92012-07-20 02:25:00 +04002992 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002993 /*
2994 * Special case - lookup gave negative, but... we had foo/bar/
2995 * From the vfs_mknod() POV we just have a negative dentry -
2996 * all is fine. Let's be bastards - you had / on the end, you've
2997 * been asking for (non-existent) directory. -ENOENT for you.
2998 */
Al Viroed75e952011-06-27 16:53:43 -04002999 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003000 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003001 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003002 }
Al Viroa8104a92012-07-20 02:25:00 +04003003 error = mnt_want_write(nd.path.mnt);
3004 if (error)
3005 goto fail;
Al Viroed75e952011-06-27 16:53:43 -04003006 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008fail:
Al Viroa8104a92012-07-20 02:25:00 +04003009 dput(dentry);
3010 dentry = ERR_PTR(error);
3011unlock:
Al Viroed75e952011-06-27 16:53:43 -04003012 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
3013out:
3014 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 return dentry;
3016}
Al Virodae6ad82011-06-26 11:50:15 -04003017EXPORT_SYMBOL(kern_path_create);
3018
Al Viro921a1652012-07-20 01:15:31 +04003019void done_path_create(struct path *path, struct dentry *dentry)
3020{
3021 dput(dentry);
3022 mutex_unlock(&path->dentry->d_inode->i_mutex);
Al Viroa8104a92012-07-20 02:25:00 +04003023 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003024 path_put(path);
3025}
3026EXPORT_SYMBOL(done_path_create);
3027
Al Virodae6ad82011-06-26 11:50:15 -04003028struct dentry *user_path_create(int dfd, const char __user *pathname, struct path *path, int is_dir)
3029{
3030 char *tmp = getname(pathname);
3031 struct dentry *res;
3032 if (IS_ERR(tmp))
3033 return ERR_CAST(tmp);
3034 res = kern_path_create(dfd, tmp, path, is_dir);
3035 putname(tmp);
3036 return res;
3037}
3038EXPORT_SYMBOL(user_path_create);
3039
Al Viro1a67aaf2011-07-26 01:52:52 -04003040int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003042 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
3044 if (error)
3045 return error;
3046
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003047 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 return -EPERM;
3049
Al Viroacfa4382008-12-04 10:06:33 -05003050 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 return -EPERM;
3052
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003053 error = devcgroup_inode_mknod(mode, dev);
3054 if (error)
3055 return error;
3056
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 error = security_inode_mknod(dir, dentry, mode, dev);
3058 if (error)
3059 return error;
3060
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003062 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003063 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 return error;
3065}
3066
Al Virof69aac02011-07-26 04:31:40 -04003067static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003068{
3069 switch (mode & S_IFMT) {
3070 case S_IFREG:
3071 case S_IFCHR:
3072 case S_IFBLK:
3073 case S_IFIFO:
3074 case S_IFSOCK:
3075 case 0: /* zero mode translates to S_IFREG */
3076 return 0;
3077 case S_IFDIR:
3078 return -EPERM;
3079 default:
3080 return -EINVAL;
3081 }
3082}
3083
Al Viro8208a222011-07-25 17:32:17 -04003084SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003085 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086{
Al Viro2ad94ae2008-07-21 09:32:51 -04003087 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003088 struct path path;
3089 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
Al Viro8e4bfca2012-07-20 01:17:26 +04003091 error = may_mknod(mode);
3092 if (error)
3093 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094
Al Virodae6ad82011-06-26 11:50:15 -04003095 dentry = user_path_create(dfd, filename, &path, 0);
3096 if (IS_ERR(dentry))
3097 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003098
Al Virodae6ad82011-06-26 11:50:15 -04003099 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003100 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003101 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003102 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003103 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003104 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04003106 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 break;
3108 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04003109 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 new_decode_dev(dev));
3111 break;
3112 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003113 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 }
Al Viroa8104a92012-07-20 02:25:00 +04003116out:
Al Viro921a1652012-07-20 01:15:31 +04003117 done_path_create(&path, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 return error;
3119}
3120
Al Viro8208a222011-07-25 17:32:17 -04003121SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003122{
3123 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3124}
3125
Al Viro18bb1db2011-07-26 01:41:39 -04003126int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003128 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003129 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130
3131 if (error)
3132 return error;
3133
Al Viroacfa4382008-12-04 10:06:33 -05003134 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 return -EPERM;
3136
3137 mode &= (S_IRWXUGO|S_ISVTX);
3138 error = security_inode_mkdir(dir, dentry, mode);
3139 if (error)
3140 return error;
3141
Al Viro8de52772012-02-06 12:45:27 -05003142 if (max_links && dir->i_nlink >= max_links)
3143 return -EMLINK;
3144
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003146 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003147 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148 return error;
3149}
3150
Al Viroa218d0f2011-11-21 14:59:34 -05003151SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152{
Dave Hansen6902d922006-09-30 23:29:01 -07003153 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003154 struct path path;
3155 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
Al Virodae6ad82011-06-26 11:50:15 -04003157 dentry = user_path_create(dfd, pathname, &path, 1);
Dave Hansen6902d922006-09-30 23:29:01 -07003158 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003159 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003160
Al Virodae6ad82011-06-26 11:50:15 -04003161 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003162 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003163 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003164 if (!error)
3165 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003166 done_path_create(&path, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167 return error;
3168}
3169
Al Viroa218d0f2011-11-21 14:59:34 -05003170SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003171{
3172 return sys_mkdirat(AT_FDCWD, pathname, mode);
3173}
3174
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175/*
Sage Weila71905f2011-05-24 13:06:08 -07003176 * The dentry_unhash() helper will try to drop the dentry early: we
J. Bruce Fieldsc0d02592012-02-15 11:48:40 -05003177 * should have a usage count of 1 if we're the only user of this
Sage Weila71905f2011-05-24 13:06:08 -07003178 * dentry, and if that is true (possibly after pruning the dcache),
3179 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 *
3181 * A low-level filesystem can, if it choses, legally
3182 * do a
3183 *
3184 * if (!d_unhashed(dentry))
3185 * return -EBUSY;
3186 *
3187 * if it cannot handle the case of removing a directory
3188 * that is still in use by something else..
3189 */
3190void dentry_unhash(struct dentry *dentry)
3191{
Vasily Averindc168422006-12-06 20:37:07 -08003192 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193 spin_lock(&dentry->d_lock);
Sage Weil64252c72011-05-24 13:06:05 -07003194 if (dentry->d_count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195 __d_drop(dentry);
3196 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197}
3198
3199int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3200{
3201 int error = may_delete(dir, dentry, 1);
3202
3203 if (error)
3204 return error;
3205
Al Viroacfa4382008-12-04 10:06:33 -05003206 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 return -EPERM;
3208
Al Viro1d2ef592011-09-14 18:55:41 +01003209 dget(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003210 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211
Sage Weil912dbc12011-05-24 13:06:11 -07003212 error = -EBUSY;
3213 if (d_mountpoint(dentry))
3214 goto out;
3215
3216 error = security_inode_rmdir(dir, dentry);
3217 if (error)
3218 goto out;
3219
Sage Weil3cebde22011-05-29 21:20:59 -07003220 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003221 error = dir->i_op->rmdir(dir, dentry);
3222 if (error)
3223 goto out;
3224
3225 dentry->d_inode->i_flags |= S_DEAD;
3226 dont_mount(dentry);
3227
3228out:
3229 mutex_unlock(&dentry->d_inode->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01003230 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003231 if (!error)
3232 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 return error;
3234}
3235
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003236static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237{
3238 int error = 0;
3239 char * name;
3240 struct dentry *dentry;
3241 struct nameidata nd;
3242
Al Viro2ad94ae2008-07-21 09:32:51 -04003243 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04003245 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246
3247 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003248 case LAST_DOTDOT:
3249 error = -ENOTEMPTY;
3250 goto exit1;
3251 case LAST_DOT:
3252 error = -EINVAL;
3253 goto exit1;
3254 case LAST_ROOT:
3255 error = -EBUSY;
3256 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003258
3259 nd.flags &= ~LOOKUP_PARENT;
3260
Jan Blunck4ac91372008-02-14 19:34:32 -08003261 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08003262 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003264 if (IS_ERR(dentry))
3265 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003266 if (!dentry->d_inode) {
3267 error = -ENOENT;
3268 goto exit3;
3269 }
Dave Hansen06227532008-02-15 14:37:34 -08003270 error = mnt_want_write(nd.path.mnt);
3271 if (error)
3272 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003273 error = security_path_rmdir(&nd.path, dentry);
3274 if (error)
3275 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08003276 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003277exit4:
Dave Hansen06227532008-02-15 14:37:34 -08003278 mnt_drop_write(nd.path.mnt);
3279exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003280 dput(dentry);
3281exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08003282 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003284 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 putname(name);
3286 return error;
3287}
3288
Heiko Carstens3cdad422009-01-14 14:14:22 +01003289SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003290{
3291 return do_rmdir(AT_FDCWD, pathname);
3292}
3293
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294int vfs_unlink(struct inode *dir, struct dentry *dentry)
3295{
3296 int error = may_delete(dir, dentry, 0);
3297
3298 if (error)
3299 return error;
3300
Al Viroacfa4382008-12-04 10:06:33 -05003301 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 return -EPERM;
3303
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003304 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305 if (d_mountpoint(dentry))
3306 error = -EBUSY;
3307 else {
3308 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003309 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003311 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04003312 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05003313 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003315 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316
3317 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3318 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08003319 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 }
Robert Love0eeca282005-07-12 17:06:03 -04003322
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 return error;
3324}
3325
3326/*
3327 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003328 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 * writeout happening, and we don't want to prevent access to the directory
3330 * while waiting on the I/O.
3331 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003332static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333{
Al Viro2ad94ae2008-07-21 09:32:51 -04003334 int error;
3335 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 struct dentry *dentry;
3337 struct nameidata nd;
3338 struct inode *inode = NULL;
3339
Al Viro2ad94ae2008-07-21 09:32:51 -04003340 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04003342 return error;
3343
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344 error = -EISDIR;
3345 if (nd.last_type != LAST_NORM)
3346 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003347
3348 nd.flags &= ~LOOKUP_PARENT;
3349
Jan Blunck4ac91372008-02-14 19:34:32 -08003350 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08003351 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 error = PTR_ERR(dentry);
3353 if (!IS_ERR(dentry)) {
3354 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03003355 if (nd.last.name[nd.last.len])
3356 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 inode = dentry->d_inode;
Török Edwin50338b82011-06-16 00:06:14 +03003358 if (!inode)
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003359 goto slashes;
3360 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08003361 error = mnt_want_write(nd.path.mnt);
3362 if (error)
3363 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003364 error = security_path_unlink(&nd.path, dentry);
3365 if (error)
3366 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08003367 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003368exit3:
Dave Hansen06227532008-02-15 14:37:34 -08003369 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370 exit2:
3371 dput(dentry);
3372 }
Jan Blunck4ac91372008-02-14 19:34:32 -08003373 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 if (inode)
3375 iput(inode); /* truncate the inode here */
3376exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003377 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 putname(name);
3379 return error;
3380
3381slashes:
3382 error = !dentry->d_inode ? -ENOENT :
3383 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
3384 goto exit2;
3385}
3386
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003387SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003388{
3389 if ((flag & ~AT_REMOVEDIR) != 0)
3390 return -EINVAL;
3391
3392 if (flag & AT_REMOVEDIR)
3393 return do_rmdir(dfd, pathname);
3394
3395 return do_unlinkat(dfd, pathname);
3396}
3397
Heiko Carstens3480b252009-01-14 14:14:16 +01003398SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003399{
3400 return do_unlinkat(AT_FDCWD, pathname);
3401}
3402
Miklos Szeredidb2e7472008-06-24 16:50:16 +02003403int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003405 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406
3407 if (error)
3408 return error;
3409
Al Viroacfa4382008-12-04 10:06:33 -05003410 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 return -EPERM;
3412
3413 error = security_inode_symlink(dir, dentry, oldname);
3414 if (error)
3415 return error;
3416
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003418 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003419 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420 return error;
3421}
3422
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003423SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3424 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425{
Al Viro2ad94ae2008-07-21 09:32:51 -04003426 int error;
3427 char *from;
Dave Hansen6902d922006-09-30 23:29:01 -07003428 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003429 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430
3431 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04003432 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003434
Al Virodae6ad82011-06-26 11:50:15 -04003435 dentry = user_path_create(newdfd, newname, &path, 0);
Dave Hansen6902d922006-09-30 23:29:01 -07003436 error = PTR_ERR(dentry);
3437 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003438 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07003439
Al Virodae6ad82011-06-26 11:50:15 -04003440 error = security_path_symlink(&path, dentry, from);
Al Viroa8104a92012-07-20 02:25:00 +04003441 if (!error)
3442 error = vfs_symlink(path.dentry->d_inode, dentry, from);
Al Viro921a1652012-07-20 01:15:31 +04003443 done_path_create(&path, dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003444out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 putname(from);
3446 return error;
3447}
3448
Heiko Carstens3480b252009-01-14 14:14:16 +01003449SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003450{
3451 return sys_symlinkat(oldname, AT_FDCWD, newname);
3452}
3453
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
3455{
3456 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05003457 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 int error;
3459
3460 if (!inode)
3461 return -ENOENT;
3462
Miklos Szeredia95164d2008-07-30 15:08:48 +02003463 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 if (error)
3465 return error;
3466
3467 if (dir->i_sb != inode->i_sb)
3468 return -EXDEV;
3469
3470 /*
3471 * A link to an append-only or immutable file cannot be created.
3472 */
3473 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3474 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05003475 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003477 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 return -EPERM;
3479
3480 error = security_inode_link(old_dentry, dir, new_dentry);
3481 if (error)
3482 return error;
3483
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003484 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303485 /* Make sure we don't allow creating hardlink to an unlinked file */
3486 if (inode->i_nlink == 0)
3487 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05003488 else if (max_links && inode->i_nlink >= max_links)
3489 error = -EMLINK;
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303490 else
3491 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003492 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003493 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003494 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 return error;
3496}
3497
3498/*
3499 * Hardlinks are often used in delicate situations. We avoid
3500 * security-related surprises by not following symlinks on the
3501 * newname. --KAB
3502 *
3503 * We don't follow them on the oldname either to be compatible
3504 * with linux 2.0, and to avoid hard-linking to directories
3505 * and other special files. --ADM
3506 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003507SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
3508 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509{
3510 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003511 struct path old_path, new_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303512 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303515 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003516 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303517 /*
3518 * To use null names we require CAP_DAC_READ_SEARCH
3519 * This ensures that not everyone will be able to create
3520 * handlink using the passed filedescriptor.
3521 */
3522 if (flags & AT_EMPTY_PATH) {
3523 if (!capable(CAP_DAC_READ_SEARCH))
3524 return -ENOENT;
3525 how = LOOKUP_EMPTY;
3526 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003527
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303528 if (flags & AT_SYMLINK_FOLLOW)
3529 how |= LOOKUP_FOLLOW;
3530
3531 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04003533 return error;
3534
Al Virodae6ad82011-06-26 11:50:15 -04003535 new_dentry = user_path_create(newdfd, newname, &new_path, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003537 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003538 goto out;
3539
3540 error = -EXDEV;
3541 if (old_path.mnt != new_path.mnt)
3542 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07003543 error = may_linkat(&old_path);
3544 if (unlikely(error))
3545 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04003546 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003547 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003548 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04003549 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
Dave Hansen75c3f292008-02-15 14:37:45 -08003550out_dput:
Al Viro921a1652012-07-20 01:15:31 +04003551 done_path_create(&new_path, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552out:
Al Viro2d8f3032008-07-22 09:59:21 -04003553 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554
3555 return error;
3556}
3557
Heiko Carstens3480b252009-01-14 14:14:16 +01003558SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003559{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003560 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003561}
3562
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563/*
3564 * The worst of all namespace operations - renaming directory. "Perverted"
3565 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3566 * Problems:
3567 * a) we can get into loop creation. Check is done in is_subdir().
3568 * b) race potential - two innocent renames can create a loop together.
3569 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003570 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 * story.
3572 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003573 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 * whether the target exists). Solution: try to be smart with locking
3575 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003576 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 * move will be locked. Thus we can rank directories by the tree
3578 * (ancestors first) and rank all non-directories after them.
3579 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003580 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 * HOWEVER, it relies on the assumption that any object with ->lookup()
3582 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3583 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07003584 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003585 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003587 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 * locking].
3589 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07003590static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3591 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592{
3593 int error = 0;
Sage Weil9055cba2011-05-24 13:06:12 -07003594 struct inode *target = new_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05003595 unsigned max_links = new_dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596
3597 /*
3598 * If we are going to change the parent - check write permissions,
3599 * we'll need to flip '..'.
3600 */
3601 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04003602 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 if (error)
3604 return error;
3605 }
3606
3607 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3608 if (error)
3609 return error;
3610
Al Viro1d2ef592011-09-14 18:55:41 +01003611 dget(new_dentry);
Al Virod83c49f2010-04-30 17:17:09 -04003612 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003613 mutex_lock(&target->i_mutex);
Sage Weil9055cba2011-05-24 13:06:12 -07003614
3615 error = -EBUSY;
3616 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3617 goto out;
3618
Al Viro8de52772012-02-06 12:45:27 -05003619 error = -EMLINK;
3620 if (max_links && !target && new_dir != old_dir &&
3621 new_dir->i_nlink >= max_links)
3622 goto out;
3623
Sage Weil3cebde22011-05-29 21:20:59 -07003624 if (target)
3625 shrink_dcache_parent(new_dentry);
Sage Weil9055cba2011-05-24 13:06:12 -07003626 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3627 if (error)
3628 goto out;
3629
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 if (target) {
Sage Weil9055cba2011-05-24 13:06:12 -07003631 target->i_flags |= S_DEAD;
3632 dont_mount(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 }
Sage Weil9055cba2011-05-24 13:06:12 -07003634out:
3635 if (target)
3636 mutex_unlock(&target->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01003637 dput(new_dentry);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003638 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003639 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3640 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 return error;
3642}
3643
Adrian Bunk75c96f82005-05-05 16:16:09 -07003644static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3645 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646{
Sage Weil51892bb2011-05-24 13:06:13 -07003647 struct inode *target = new_dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 int error;
3649
3650 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3651 if (error)
3652 return error;
3653
3654 dget(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003656 mutex_lock(&target->i_mutex);
Sage Weil51892bb2011-05-24 13:06:13 -07003657
3658 error = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
Sage Weil51892bb2011-05-24 13:06:13 -07003660 goto out;
3661
3662 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3663 if (error)
3664 goto out;
3665
3666 if (target)
3667 dont_mount(new_dentry);
3668 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3669 d_move(old_dentry, new_dentry);
3670out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003672 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 dput(new_dentry);
3674 return error;
3675}
3676
3677int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3678 struct inode *new_dir, struct dentry *new_dentry)
3679{
3680 int error;
3681 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003682 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683
3684 if (old_dentry->d_inode == new_dentry->d_inode)
3685 return 0;
3686
3687 error = may_delete(old_dir, old_dentry, is_dir);
3688 if (error)
3689 return error;
3690
3691 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003692 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 else
3694 error = may_delete(new_dir, new_dentry, is_dir);
3695 if (error)
3696 return error;
3697
Al Viroacfa4382008-12-04 10:06:33 -05003698 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699 return -EPERM;
3700
Robert Love0eeca282005-07-12 17:06:03 -04003701 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3702
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 if (is_dir)
3704 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3705 else
3706 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003707 if (!error)
3708 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003709 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003710 fsnotify_oldname_free(old_name);
3711
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 return error;
3713}
3714
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003715SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3716 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717{
Al Viro2ad94ae2008-07-21 09:32:51 -04003718 struct dentry *old_dir, *new_dir;
3719 struct dentry *old_dentry, *new_dentry;
3720 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003722 char *from;
3723 char *to;
3724 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725
Al Viro2ad94ae2008-07-21 09:32:51 -04003726 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 if (error)
3728 goto exit;
3729
Al Viro2ad94ae2008-07-21 09:32:51 -04003730 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 if (error)
3732 goto exit1;
3733
3734 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003735 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 goto exit2;
3737
Jan Blunck4ac91372008-02-14 19:34:32 -08003738 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 error = -EBUSY;
3740 if (oldnd.last_type != LAST_NORM)
3741 goto exit2;
3742
Jan Blunck4ac91372008-02-14 19:34:32 -08003743 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 if (newnd.last_type != LAST_NORM)
3745 goto exit2;
3746
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003747 oldnd.flags &= ~LOOKUP_PARENT;
3748 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003749 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003750
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 trap = lock_rename(new_dir, old_dir);
3752
Christoph Hellwig49705b72005-11-08 21:35:06 -08003753 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 error = PTR_ERR(old_dentry);
3755 if (IS_ERR(old_dentry))
3756 goto exit3;
3757 /* source must exist */
3758 error = -ENOENT;
3759 if (!old_dentry->d_inode)
3760 goto exit4;
3761 /* unless the source is a directory trailing slashes give -ENOTDIR */
3762 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3763 error = -ENOTDIR;
3764 if (oldnd.last.name[oldnd.last.len])
3765 goto exit4;
3766 if (newnd.last.name[newnd.last.len])
3767 goto exit4;
3768 }
3769 /* source should not be ancestor of target */
3770 error = -EINVAL;
3771 if (old_dentry == trap)
3772 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003773 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 error = PTR_ERR(new_dentry);
3775 if (IS_ERR(new_dentry))
3776 goto exit4;
3777 /* target should not be an ancestor of source */
3778 error = -ENOTEMPTY;
3779 if (new_dentry == trap)
3780 goto exit5;
3781
Dave Hansen9079b1e2008-02-15 14:37:49 -08003782 error = mnt_want_write(oldnd.path.mnt);
3783 if (error)
3784 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003785 error = security_path_rename(&oldnd.path, old_dentry,
3786 &newnd.path, new_dentry);
3787 if (error)
3788 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 error = vfs_rename(old_dir->d_inode, old_dentry,
3790 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003791exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003792 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793exit5:
3794 dput(new_dentry);
3795exit4:
3796 dput(old_dentry);
3797exit3:
3798 unlock_rename(new_dir, old_dir);
3799exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003800 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003801 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003803 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003805exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 return error;
3807}
3808
Heiko Carstensa26eab22009-01-14 14:14:17 +01003809SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003810{
3811 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3812}
3813
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3815{
3816 int len;
3817
3818 len = PTR_ERR(link);
3819 if (IS_ERR(link))
3820 goto out;
3821
3822 len = strlen(link);
3823 if (len > (unsigned) buflen)
3824 len = buflen;
3825 if (copy_to_user(buffer, link, len))
3826 len = -EFAULT;
3827out:
3828 return len;
3829}
3830
3831/*
3832 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3833 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3834 * using) it for any given inode is up to filesystem.
3835 */
3836int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3837{
3838 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003839 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003840 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003841
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003843 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003844 if (IS_ERR(cookie))
3845 return PTR_ERR(cookie);
3846
3847 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3848 if (dentry->d_inode->i_op->put_link)
3849 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3850 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851}
3852
3853int vfs_follow_link(struct nameidata *nd, const char *link)
3854{
3855 return __vfs_follow_link(nd, link);
3856}
3857
3858/* get the link contents into pagecache */
3859static char *page_getlink(struct dentry * dentry, struct page **ppage)
3860{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003861 char *kaddr;
3862 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003864 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003866 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003868 kaddr = kmap(page);
3869 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3870 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871}
3872
3873int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3874{
3875 struct page *page = NULL;
3876 char *s = page_getlink(dentry, &page);
3877 int res = vfs_readlink(dentry,buffer,buflen,s);
3878 if (page) {
3879 kunmap(page);
3880 page_cache_release(page);
3881 }
3882 return res;
3883}
3884
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003885void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003887 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003889 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890}
3891
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003892void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003894 struct page *page = cookie;
3895
3896 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 kunmap(page);
3898 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 }
3900}
3901
Nick Piggin54566b22009-01-04 12:00:53 -08003902/*
3903 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3904 */
3905int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906{
3907 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003908 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003909 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003910 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003912 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3913 if (nofs)
3914 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915
NeilBrown7e53cac2006-03-25 03:07:57 -08003916retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003917 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003918 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003920 goto fail;
3921
Cong Wange8e3c3d2011-11-25 23:14:27 +08003922 kaddr = kmap_atomic(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 memcpy(kaddr, symname, len-1);
Cong Wange8e3c3d2011-11-25 23:14:27 +08003924 kunmap_atomic(kaddr);
Nick Pigginafddba42007-10-16 01:25:01 -07003925
3926 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3927 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 if (err < 0)
3929 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003930 if (err < len-1)
3931 goto retry;
3932
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 mark_inode_dirty(inode);
3934 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935fail:
3936 return err;
3937}
3938
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003939int page_symlink(struct inode *inode, const char *symname, int len)
3940{
3941 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003942 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003943}
3944
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003945const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 .readlink = generic_readlink,
3947 .follow_link = page_follow_link_light,
3948 .put_link = page_put_link,
3949};
3950
Al Viro2d8f3032008-07-22 09:59:21 -04003951EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003952EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953EXPORT_SYMBOL(follow_down);
3954EXPORT_SYMBOL(follow_up);
3955EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3956EXPORT_SYMBOL(getname);
3957EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958EXPORT_SYMBOL(lookup_one_len);
3959EXPORT_SYMBOL(page_follow_link_light);
3960EXPORT_SYMBOL(page_put_link);
3961EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003962EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963EXPORT_SYMBOL(page_symlink);
3964EXPORT_SYMBOL(page_symlink_inode_operations);
Al Virod1811462008-08-02 00:49:18 -04003965EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003966EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003967EXPORT_SYMBOL(inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968EXPORT_SYMBOL(unlock_rename);
3969EXPORT_SYMBOL(vfs_create);
3970EXPORT_SYMBOL(vfs_follow_link);
3971EXPORT_SYMBOL(vfs_link);
3972EXPORT_SYMBOL(vfs_mkdir);
3973EXPORT_SYMBOL(vfs_mknod);
3974EXPORT_SYMBOL(generic_permission);
3975EXPORT_SYMBOL(vfs_readlink);
3976EXPORT_SYMBOL(vfs_rename);
3977EXPORT_SYMBOL(vfs_rmdir);
3978EXPORT_SYMBOL(vfs_symlink);
3979EXPORT_SYMBOL(vfs_unlink);
3980EXPORT_SYMBOL(dentry_unhash);
3981EXPORT_SYMBOL(generic_readlink);