blob: d07bc1b206c38d8c21e87154924eaf7019527864 [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 */
Jeff Layton91a27b22012-10-10 15:25:28 -0400120void final_putname(struct filename *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
Jeff Layton7950e382012-10-10 16:43:13 -0400122 if (name->separate) {
123 __putname(name->name);
124 kfree(name);
125 } else {
126 __putname(name);
127 }
Jeff Layton91a27b22012-10-10 15:25:28 -0400128}
129
Jeff Layton7950e382012-10-10 16:43:13 -0400130#define EMBEDDED_NAME_MAX (PATH_MAX - sizeof(struct filename))
131
Jeff Layton91a27b22012-10-10 15:25:28 -0400132static struct filename *
133getname_flags(const char __user *filename, int flags, int *empty)
134{
135 struct filename *result, *err;
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700136 int len;
Jeff Layton7950e382012-10-10 16:43:13 -0400137 long max;
138 char *kname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Jeff Layton7ac86262012-10-10 15:25:28 -0400140 result = audit_reusename(filename);
141 if (result)
142 return result;
143
Jeff Layton7950e382012-10-10 16:43:13 -0400144 result = __getname();
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700145 if (unlikely(!result))
Eric Paris4043cde2012-01-03 14:23:08 -0500146 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Jeff Layton7950e382012-10-10 16:43:13 -0400148 /*
149 * First, try to embed the struct filename inside the names_cache
150 * allocation
151 */
152 kname = (char *)result + sizeof(*result);
Jeff Layton91a27b22012-10-10 15:25:28 -0400153 result->name = kname;
Jeff Layton7950e382012-10-10 16:43:13 -0400154 result->separate = false;
155 max = EMBEDDED_NAME_MAX;
156
157recopy:
158 len = strncpy_from_user(kname, filename, max);
Jeff Layton91a27b22012-10-10 15:25:28 -0400159 if (unlikely(len < 0)) {
160 err = ERR_PTR(len);
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700161 goto error;
Jeff Layton91a27b22012-10-10 15:25:28 -0400162 }
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700163
Jeff Layton7950e382012-10-10 16:43:13 -0400164 /*
165 * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
166 * separate struct filename so we can dedicate the entire
167 * names_cache allocation for the pathname, and re-do the copy from
168 * userland.
169 */
170 if (len == EMBEDDED_NAME_MAX && max == EMBEDDED_NAME_MAX) {
171 kname = (char *)result;
172
173 result = kzalloc(sizeof(*result), GFP_KERNEL);
174 if (!result) {
175 err = ERR_PTR(-ENOMEM);
176 result = (struct filename *)kname;
177 goto error;
178 }
179 result->name = kname;
180 result->separate = true;
181 max = PATH_MAX;
182 goto recopy;
183 }
184
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700185 /* The empty path is special. */
186 if (unlikely(!len)) {
187 if (empty)
Eric Paris4043cde2012-01-03 14:23:08 -0500188 *empty = 1;
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700189 err = ERR_PTR(-ENOENT);
190 if (!(flags & LOOKUP_EMPTY))
191 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700193
194 err = ERR_PTR(-ENAMETOOLONG);
Jeff Layton7950e382012-10-10 16:43:13 -0400195 if (unlikely(len >= PATH_MAX))
196 goto error;
197
198 result->uptr = filename;
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800199 result->aname = NULL;
Jeff Layton7950e382012-10-10 16:43:13 -0400200 audit_getname(result);
201 return result;
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700202
203error:
Jeff Layton7950e382012-10-10 16:43:13 -0400204 final_putname(result);
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700205 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Jeff Layton91a27b22012-10-10 15:25:28 -0400208struct filename *
209getname(const char __user * filename)
Al Virof52e0c12011-03-14 18:56:51 -0400210{
Linus Torvaldsf7493e52012-03-22 16:10:40 -0700211 return getname_flags(filename, 0, NULL);
Al Virof52e0c12011-03-14 18:56:51 -0400212}
213
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800214/*
215 * The "getname_kernel()" interface doesn't do pathnames longer
216 * than EMBEDDED_NAME_MAX. Deal with it - you're a kernel user.
217 */
218struct filename *
219getname_kernel(const char * filename)
220{
221 struct filename *result;
222 char *kname;
223 int len;
224
225 len = strlen(filename);
226 if (len >= EMBEDDED_NAME_MAX)
227 return ERR_PTR(-ENAMETOOLONG);
228
229 result = __getname();
230 if (unlikely(!result))
231 return ERR_PTR(-ENOMEM);
232
233 kname = (char *)result + sizeof(*result);
234 result->name = kname;
235 result->uptr = NULL;
236 result->aname = NULL;
237 result->separate = false;
238
239 strlcpy(kname, filename, EMBEDDED_NAME_MAX);
240 return result;
241}
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243#ifdef CONFIG_AUDITSYSCALL
Jeff Layton91a27b22012-10-10 15:25:28 -0400244void putname(struct filename *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Al Viro5ac3a9c2006-07-16 06:38:45 -0400246 if (unlikely(!audit_dummy_context()))
Jeff Layton91a27b22012-10-10 15:25:28 -0400247 return audit_putname(name);
248 final_putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250#endif
251
Linus Torvaldse77819e2011-07-22 19:30:19 -0700252static int check_acl(struct inode *inode, int mask)
253{
Linus Torvalds84635d62011-07-25 22:47:03 -0700254#ifdef CONFIG_FS_POSIX_ACL
Linus Torvaldse77819e2011-07-22 19:30:19 -0700255 struct posix_acl *acl;
256
Linus Torvaldse77819e2011-07-22 19:30:19 -0700257 if (mask & MAY_NOT_BLOCK) {
Al Viro35678662011-08-02 21:32:13 -0400258 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
259 if (!acl)
Linus Torvaldse77819e2011-07-22 19:30:19 -0700260 return -EAGAIN;
Al Viro35678662011-08-02 21:32:13 -0400261 /* no ->get_acl() calls in RCU mode... */
262 if (acl == ACL_NOT_CACHED)
263 return -ECHILD;
Ari Savolainen206b1d02011-08-06 19:43:07 +0300264 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
Linus Torvaldse77819e2011-07-22 19:30:19 -0700265 }
266
Christoph Hellwig2982baa2013-12-20 05:16:38 -0800267 acl = get_acl(inode, ACL_TYPE_ACCESS);
268 if (IS_ERR(acl))
269 return PTR_ERR(acl);
Linus Torvaldse77819e2011-07-22 19:30:19 -0700270 if (acl) {
271 int error = posix_acl_permission(inode, acl, mask);
272 posix_acl_release(acl);
273 return error;
274 }
Linus Torvalds84635d62011-07-25 22:47:03 -0700275#endif
Linus Torvaldse77819e2011-07-22 19:30:19 -0700276
277 return -EAGAIN;
278}
279
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700280/*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530281 * This does the basic permission checking
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700282 */
Al Viro7e401452011-06-20 19:12:17 -0400283static int acl_permission_check(struct inode *inode, int mask)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700284{
Linus Torvalds26cf46b2011-05-13 11:51:01 -0700285 unsigned int mode = inode->i_mode;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700286
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -0800287 if (likely(uid_eq(current_fsuid(), inode->i_uid)))
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700288 mode >>= 6;
289 else {
Linus Torvaldse77819e2011-07-22 19:30:19 -0700290 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
Al Viro7e401452011-06-20 19:12:17 -0400291 int error = check_acl(inode, mask);
Nick Pigginb74c79e2011-01-07 17:49:58 +1100292 if (error != -EAGAIN)
293 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700294 }
295
296 if (in_group_p(inode->i_gid))
297 mode >>= 3;
298 }
299
300 /*
301 * If the DACs are ok we don't need any capability check.
302 */
Al Viro9c2c7032011-06-20 19:06:22 -0400303 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700304 return 0;
305 return -EACCES;
306}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100309 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 * @inode: inode to check access rights for
Andreas Gruenbacher8fd90c82011-10-23 23:13:30 +0530311 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 *
313 * Used to check for read/write/execute permissions on a file.
314 * We use "fsuid" for this, letting us set arbitrary permissions
315 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100316 * are used for other things.
317 *
318 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
319 * request cannot be satisfied (eg. requires blocking or too much complexity).
320 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 */
Al Viro2830ba72011-06-20 19:16:29 -0400322int generic_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700324 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 /*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530327 * Do the basic permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 */
Al Viro7e401452011-06-20 19:12:17 -0400329 ret = acl_permission_check(inode, mask);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700330 if (ret != -EACCES)
331 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Al Virod594e7e2011-06-20 19:55:42 -0400333 if (S_ISDIR(inode->i_mode)) {
334 /* DACs are overridable for directories */
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700335 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
Al Virod594e7e2011-06-20 19:55:42 -0400336 return 0;
337 if (!(mask & MAY_WRITE))
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700338 if (capable_wrt_inode_uidgid(inode,
339 CAP_DAC_READ_SEARCH))
Al Virod594e7e2011-06-20 19:55:42 -0400340 return 0;
341 return -EACCES;
342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 /*
344 * Read/write DACs are always overridable.
Al Virod594e7e2011-06-20 19:55:42 -0400345 * Executable DACs are overridable when there is
346 * at least one exec bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 */
Al Virod594e7e2011-06-20 19:55:42 -0400348 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700349 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 return 0;
351
352 /*
353 * Searching includes executable on directories, else just read.
354 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600355 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Al Virod594e7e2011-06-20 19:55:42 -0400356 if (mask == MAY_READ)
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700357 if (capable_wrt_inode_uidgid(inode, CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 return 0;
359
360 return -EACCES;
361}
Al Viro4d359502014-03-14 12:20:17 -0400362EXPORT_SYMBOL(generic_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700364/*
365 * We _really_ want to just do "generic_permission()" without
366 * even looking at the inode->i_op values. So we keep a cache
367 * flag in inode->i_opflags, that says "this has not special
368 * permission function, use the fast case".
369 */
370static inline int do_inode_permission(struct inode *inode, int mask)
371{
372 if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
373 if (likely(inode->i_op->permission))
374 return inode->i_op->permission(inode, mask);
375
376 /* This gets set once for the inode lifetime */
377 spin_lock(&inode->i_lock);
378 inode->i_opflags |= IOP_FASTPERM;
379 spin_unlock(&inode->i_lock);
380 }
381 return generic_permission(inode, mask);
382}
383
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200384/**
David Howells0bdaea92012-06-25 12:55:46 +0100385 * __inode_permission - Check for access rights to a given inode
386 * @inode: Inode to check permission on
387 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200388 *
David Howells0bdaea92012-06-25 12:55:46 +0100389 * Check for read/write/execute permissions on an inode.
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530390 *
391 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
David Howells0bdaea92012-06-25 12:55:46 +0100392 *
393 * This does not check for a read-only file system. You probably want
394 * inode_permission().
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200395 */
David Howells0bdaea92012-06-25 12:55:46 +0100396int __inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
Al Viroe6305c42008-07-15 21:03:57 -0400398 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700400 if (unlikely(mask & MAY_WRITE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 /*
402 * Nobody gets write access to an immutable file.
403 */
404 if (IS_IMMUTABLE(inode))
405 return -EACCES;
406 }
407
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700408 retval = do_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 if (retval)
410 return retval;
411
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700412 retval = devcgroup_inode_permission(inode, mask);
413 if (retval)
414 return retval;
415
Eric Parisd09ca732010-07-23 11:43:57 -0400416 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
418
Al Virof4d6ff82011-06-19 13:14:21 -0400419/**
David Howells0bdaea92012-06-25 12:55:46 +0100420 * sb_permission - Check superblock-level permissions
421 * @sb: Superblock of inode to check permission on
Randy Dunlap55852632012-08-18 17:39:25 -0700422 * @inode: Inode to check permission on
David Howells0bdaea92012-06-25 12:55:46 +0100423 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
424 *
425 * Separate out file-system wide checks from inode-specific permission checks.
426 */
427static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
428{
429 if (unlikely(mask & MAY_WRITE)) {
430 umode_t mode = inode->i_mode;
431
432 /* Nobody gets write access to a read-only fs. */
433 if ((sb->s_flags & MS_RDONLY) &&
434 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
435 return -EROFS;
436 }
437 return 0;
438}
439
440/**
441 * inode_permission - Check for access rights to a given inode
442 * @inode: Inode to check permission on
443 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
444 *
445 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
446 * this, letting us set arbitrary permissions for filesystem access without
447 * changing the "normal" UIDs which are used for other things.
448 *
449 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
450 */
451int inode_permission(struct inode *inode, int mask)
452{
453 int retval;
454
455 retval = sb_permission(inode->i_sb, inode, mask);
456 if (retval)
457 return retval;
458 return __inode_permission(inode, mask);
459}
Al Viro4d359502014-03-14 12:20:17 -0400460EXPORT_SYMBOL(inode_permission);
David Howells0bdaea92012-06-25 12:55:46 +0100461
462/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800463 * path_get - get a reference to a path
464 * @path: path to get the reference to
465 *
466 * Given a path increment the reference count to the dentry and the vfsmount.
467 */
Al Virodcf787f2013-03-01 23:51:07 -0500468void path_get(const struct path *path)
Jan Blunck5dd784d02008-02-14 19:34:38 -0800469{
470 mntget(path->mnt);
471 dget(path->dentry);
472}
473EXPORT_SYMBOL(path_get);
474
475/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800476 * path_put - put a reference to a path
477 * @path: path to put the reference to
478 *
479 * Given a path decrement the reference count to the dentry and the vfsmount.
480 */
Al Virodcf787f2013-03-01 23:51:07 -0500481void path_put(const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482{
Jan Blunck1d957f92008-02-14 19:34:35 -0800483 dput(path->dentry);
484 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485}
Jan Blunck1d957f92008-02-14 19:34:35 -0800486EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Al Viro19660af2011-03-25 10:32:48 -0400488/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100489 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400490 * Documentation/filesystems/path-lookup.txt). In situations when we can't
491 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
492 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
493 * mode. Refcounts are grabbed at the last known good point before rcu-walk
494 * got stuck, so ref-walk may continue from there. If this is not successful
495 * (eg. a seqcount has changed), then failure is returned and it's up to caller
496 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100497 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100498
499/**
Al Viro19660af2011-03-25 10:32:48 -0400500 * unlazy_walk - try to switch to ref-walk mode.
501 * @nd: nameidata pathwalk data
502 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800503 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100504 *
Al Viro19660af2011-03-25 10:32:48 -0400505 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
506 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
507 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100508 */
Al Viro19660af2011-03-25 10:32:48 -0400509static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100510{
511 struct fs_struct *fs = current->fs;
512 struct dentry *parent = nd->path.dentry;
513
514 BUG_ON(!(nd->flags & LOOKUP_RCU));
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700515
516 /*
Al Viro48a066e2013-09-29 22:06:07 -0400517 * After legitimizing the bastards, terminate_walk()
518 * will do the right thing for non-RCU mode, and all our
519 * subsequent exit cases should rcu_read_unlock()
520 * before returning. Do vfsmount first; if dentry
521 * can't be legitimized, just set nd->path.dentry to NULL
522 * and rely on dput(NULL) being a no-op.
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700523 */
Al Viro48a066e2013-09-29 22:06:07 -0400524 if (!legitimize_mnt(nd->path.mnt, nd->m_seq))
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700525 return -ECHILD;
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700526 nd->flags &= ~LOOKUP_RCU;
Linus Torvalds15570082013-09-02 11:38:06 -0700527
Al Viro48a066e2013-09-29 22:06:07 -0400528 if (!lockref_get_not_dead(&parent->d_lockref)) {
529 nd->path.dentry = NULL;
Al Virod870b4a2013-11-29 01:48:32 -0500530 goto out;
Al Viro48a066e2013-09-29 22:06:07 -0400531 }
532
Linus Torvalds15570082013-09-02 11:38:06 -0700533 /*
534 * For a negative lookup, the lookup sequence point is the parents
535 * sequence point, and it only needs to revalidate the parent dentry.
536 *
537 * For a positive lookup, we need to move both the parent and the
538 * dentry from the RCU domain to be properly refcounted. And the
539 * sequence number in the dentry validates *both* dentry counters,
540 * since we checked the sequence number of the parent after we got
541 * the child sequence number. So we know the parent must still
542 * be valid if the child sequence number is still valid.
543 */
Al Viro19660af2011-03-25 10:32:48 -0400544 if (!dentry) {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700545 if (read_seqcount_retry(&parent->d_seq, nd->seq))
546 goto out;
Al Viro19660af2011-03-25 10:32:48 -0400547 BUG_ON(nd->inode != parent->d_inode);
548 } else {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700549 if (!lockref_get_not_dead(&dentry->d_lockref))
550 goto out;
551 if (read_seqcount_retry(&dentry->d_seq, nd->seq))
552 goto drop_dentry;
Al Viro19660af2011-03-25 10:32:48 -0400553 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700554
555 /*
556 * Sequence counts matched. Now make sure that the root is
557 * still valid and get it if required.
558 */
559 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
560 spin_lock(&fs->lock);
561 if (nd->root.mnt != fs->root.mnt || nd->root.dentry != fs->root.dentry)
562 goto unlock_and_drop_dentry;
Nick Piggin31e6b012011-01-07 17:49:52 +1100563 path_get(&nd->root);
564 spin_unlock(&fs->lock);
565 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100566
Al Viro8b61e742013-11-08 12:45:01 -0500567 rcu_read_unlock();
Nick Piggin31e6b012011-01-07 17:49:52 +1100568 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400569
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700570unlock_and_drop_dentry:
571 spin_unlock(&fs->lock);
572drop_dentry:
Al Viro8b61e742013-11-08 12:45:01 -0500573 rcu_read_unlock();
Linus Torvalds15570082013-09-02 11:38:06 -0700574 dput(dentry);
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700575 goto drop_root_mnt;
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700576out:
Al Viro8b61e742013-11-08 12:45:01 -0500577 rcu_read_unlock();
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700578drop_root_mnt:
579 if (!(nd->flags & LOOKUP_ROOT))
580 nd->root.mnt = NULL;
Nick Piggin31e6b012011-01-07 17:49:52 +1100581 return -ECHILD;
582}
583
Al Viro4ce16ef32012-06-10 16:10:59 -0400584static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
Nick Piggin34286d62011-01-07 17:49:57 +1100585{
Al Viro4ce16ef32012-06-10 16:10:59 -0400586 return dentry->d_op->d_revalidate(dentry, flags);
Nick Piggin34286d62011-01-07 17:49:57 +1100587}
588
Al Viro9f1fafe2011-03-25 11:00:12 -0400589/**
590 * complete_walk - successful completion of path walk
591 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500592 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400593 * If we had been in RCU mode, drop out of it and legitimize nd->path.
594 * Revalidate the final result, unless we'd already done that during
595 * the path walk or the filesystem doesn't ask for it. Return 0 on
596 * success, -error on failure. In case of failure caller does not
597 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500598 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400599static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500600{
Al Viro16c2cd72011-02-22 15:50:10 -0500601 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500602 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500603
Al Viro9f1fafe2011-03-25 11:00:12 -0400604 if (nd->flags & LOOKUP_RCU) {
605 nd->flags &= ~LOOKUP_RCU;
606 if (!(nd->flags & LOOKUP_ROOT))
607 nd->root.mnt = NULL;
Linus Torvalds15570082013-09-02 11:38:06 -0700608
Al Viro48a066e2013-09-29 22:06:07 -0400609 if (!legitimize_mnt(nd->path.mnt, nd->m_seq)) {
Al Viro8b61e742013-11-08 12:45:01 -0500610 rcu_read_unlock();
Al Viro48a066e2013-09-29 22:06:07 -0400611 return -ECHILD;
612 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700613 if (unlikely(!lockref_get_not_dead(&dentry->d_lockref))) {
Al Viro8b61e742013-11-08 12:45:01 -0500614 rcu_read_unlock();
Al Viro48a066e2013-09-29 22:06:07 -0400615 mntput(nd->path.mnt);
Al Viro9f1fafe2011-03-25 11:00:12 -0400616 return -ECHILD;
617 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700618 if (read_seqcount_retry(&dentry->d_seq, nd->seq)) {
Al Viro8b61e742013-11-08 12:45:01 -0500619 rcu_read_unlock();
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700620 dput(dentry);
Al Viro48a066e2013-09-29 22:06:07 -0400621 mntput(nd->path.mnt);
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700622 return -ECHILD;
623 }
Al Viro8b61e742013-11-08 12:45:01 -0500624 rcu_read_unlock();
Al Viro9f1fafe2011-03-25 11:00:12 -0400625 }
626
Al Viro16c2cd72011-02-22 15:50:10 -0500627 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500628 return 0;
629
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500630 if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
Al Viro16c2cd72011-02-22 15:50:10 -0500631 return 0;
632
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500633 status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
Jeff Layton39159de2009-12-07 12:01:50 -0500634 if (status > 0)
635 return 0;
636
Al Viro16c2cd72011-02-22 15:50:10 -0500637 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500638 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500639
Al Viro9f1fafe2011-03-25 11:00:12 -0400640 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500641 return status;
642}
643
Al Viro2a737872009-04-07 11:49:53 -0400644static __always_inline void set_root(struct nameidata *nd)
645{
Al Viro7bd88372014-09-13 21:55:46 -0400646 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400647}
648
Al Viro6de88d72009-08-09 01:41:57 +0400649static int link_path_walk(const char *, struct nameidata *);
650
Al Viro7bd88372014-09-13 21:55:46 -0400651static __always_inline unsigned set_root_rcu(struct nameidata *nd)
Nick Piggin31e6b012011-01-07 17:49:52 +1100652{
Al Viro7bd88372014-09-13 21:55:46 -0400653 struct fs_struct *fs = current->fs;
654 unsigned seq, res;
Nick Pigginc28cc362011-01-07 17:49:53 +1100655
Al Viro7bd88372014-09-13 21:55:46 -0400656 do {
657 seq = read_seqcount_begin(&fs->seq);
658 nd->root = fs->root;
659 res = __read_seqcount_begin(&nd->root.dentry->d_seq);
660 } while (read_seqcount_retry(&fs->seq, seq));
661 return res;
Nick Piggin31e6b012011-01-07 17:49:52 +1100662}
663
Jan Blunck1d957f92008-02-14 19:34:35 -0800664static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700665{
666 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800667 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700668 mntput(path->mnt);
669}
670
Nick Piggin7b9337a2011-01-14 08:42:43 +0000671static inline void path_to_nameidata(const struct path *path,
672 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700673{
Nick Piggin31e6b012011-01-07 17:49:52 +1100674 if (!(nd->flags & LOOKUP_RCU)) {
675 dput(nd->path.dentry);
676 if (nd->path.mnt != path->mnt)
677 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800678 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100679 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800680 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700681}
682
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400683/*
684 * Helper to directly jump to a known parsed path from ->follow_link,
685 * caller must have taken a reference to path beforehand.
686 */
687void nd_jump_link(struct nameidata *nd, struct path *path)
688{
689 path_put(&nd->path);
690
691 nd->path = *path;
692 nd->inode = nd->path.dentry->d_inode;
693 nd->flags |= LOOKUP_JUMPED;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400694}
695
Al Viro574197e2011-03-14 22:20:34 -0400696static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
697{
698 struct inode *inode = link->dentry->d_inode;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400699 if (inode->i_op->put_link)
Al Viro574197e2011-03-14 22:20:34 -0400700 inode->i_op->put_link(link->dentry, nd, cookie);
701 path_put(link);
702}
703
Linus Torvalds561ec642012-10-26 10:05:07 -0700704int sysctl_protected_symlinks __read_mostly = 0;
705int sysctl_protected_hardlinks __read_mostly = 0;
Kees Cook800179c2012-07-25 17:29:07 -0700706
707/**
708 * may_follow_link - Check symlink following for unsafe situations
709 * @link: The path of the symlink
Randy Dunlap55852632012-08-18 17:39:25 -0700710 * @nd: nameidata pathwalk data
Kees Cook800179c2012-07-25 17:29:07 -0700711 *
712 * In the case of the sysctl_protected_symlinks sysctl being enabled,
713 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
714 * in a sticky world-writable directory. This is to protect privileged
715 * processes from failing races against path names that may change out
716 * from under them by way of other users creating malicious symlinks.
717 * It will permit symlinks to be followed only when outside a sticky
718 * world-writable directory, or when the uid of the symlink and follower
719 * match, or when the directory owner matches the symlink's owner.
720 *
721 * Returns 0 if following the symlink is allowed, -ve on error.
722 */
723static inline int may_follow_link(struct path *link, struct nameidata *nd)
724{
725 const struct inode *inode;
726 const struct inode *parent;
727
728 if (!sysctl_protected_symlinks)
729 return 0;
730
731 /* Allowed if owner and follower match. */
732 inode = link->dentry->d_inode;
Eric W. Biederman81abe272012-08-03 09:38:08 -0700733 if (uid_eq(current_cred()->fsuid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700734 return 0;
735
736 /* Allowed if parent directory not sticky and world-writable. */
737 parent = nd->path.dentry->d_inode;
738 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
739 return 0;
740
741 /* Allowed if parent directory and link owner match. */
Eric W. Biederman81abe272012-08-03 09:38:08 -0700742 if (uid_eq(parent->i_uid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700743 return 0;
744
Sasha Levinffd8d102012-10-04 19:56:40 -0400745 audit_log_link_denied("follow_link", link);
Kees Cook800179c2012-07-25 17:29:07 -0700746 path_put_conditional(link, nd);
747 path_put(&nd->path);
748 return -EACCES;
749}
750
751/**
752 * safe_hardlink_source - Check for safe hardlink conditions
753 * @inode: the source inode to hardlink from
754 *
755 * Return false if at least one of the following conditions:
756 * - inode is not a regular file
757 * - inode is setuid
758 * - inode is setgid and group-exec
759 * - access failure for read and write
760 *
761 * Otherwise returns true.
762 */
763static bool safe_hardlink_source(struct inode *inode)
764{
765 umode_t mode = inode->i_mode;
766
767 /* Special files should not get pinned to the filesystem. */
768 if (!S_ISREG(mode))
769 return false;
770
771 /* Setuid files should not get pinned to the filesystem. */
772 if (mode & S_ISUID)
773 return false;
774
775 /* Executable setgid files should not get pinned to the filesystem. */
776 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
777 return false;
778
779 /* Hardlinking to unreadable or unwritable sources is dangerous. */
780 if (inode_permission(inode, MAY_READ | MAY_WRITE))
781 return false;
782
783 return true;
784}
785
786/**
787 * may_linkat - Check permissions for creating a hardlink
788 * @link: the source to hardlink from
789 *
790 * Block hardlink when all of:
791 * - sysctl_protected_hardlinks enabled
792 * - fsuid does not match inode
793 * - hardlink source is unsafe (see safe_hardlink_source() above)
794 * - not CAP_FOWNER
795 *
796 * Returns 0 if successful, -ve on error.
797 */
798static int may_linkat(struct path *link)
799{
800 const struct cred *cred;
801 struct inode *inode;
802
803 if (!sysctl_protected_hardlinks)
804 return 0;
805
806 cred = current_cred();
807 inode = link->dentry->d_inode;
808
809 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
810 * otherwise, it must be a safe source.
811 */
Eric W. Biederman81abe272012-08-03 09:38:08 -0700812 if (uid_eq(cred->fsuid, inode->i_uid) || safe_hardlink_source(inode) ||
Kees Cook800179c2012-07-25 17:29:07 -0700813 capable(CAP_FOWNER))
814 return 0;
815
Kees Cooka51d9ea2012-07-25 17:29:08 -0700816 audit_log_link_denied("linkat", link);
Kees Cook800179c2012-07-25 17:29:07 -0700817 return -EPERM;
818}
819
Al Virodef4af32009-12-26 08:37:05 -0500820static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400821follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800822{
Nick Piggin7b9337a2011-01-14 08:42:43 +0000823 struct dentry *dentry = link->dentry;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400824 int error;
825 char *s;
Ian Kent051d3812006-03-27 01:14:53 -0800826
Al Viro844a3912011-02-15 00:38:26 -0500827 BUG_ON(nd->flags & LOOKUP_RCU);
828
Al Viro0e794582011-03-16 02:45:02 -0400829 if (link->mnt == nd->path.mnt)
830 mntget(link->mnt);
831
Al Viro6d7b5aa2012-06-10 04:15:17 -0400832 error = -ELOOP;
833 if (unlikely(current->total_link_count >= 40))
834 goto out_put_nd_path;
835
Al Viro574197e2011-03-14 22:20:34 -0400836 cond_resched();
837 current->total_link_count++;
838
Al Viro68ac1232012-03-15 08:21:57 -0400839 touch_atime(link);
Ian Kent051d3812006-03-27 01:14:53 -0800840 nd_set_link(nd, NULL);
841
Al Viro36f3b4f2011-02-22 21:24:38 -0500842 error = security_inode_follow_link(link->dentry, nd);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400843 if (error)
844 goto out_put_nd_path;
Al Viro36f3b4f2011-02-22 21:24:38 -0500845
Al Viro86acdca12009-12-22 23:45:11 -0500846 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500847 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
848 error = PTR_ERR(*p);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400849 if (IS_ERR(*p))
Christoph Hellwig408ef012012-06-18 10:47:03 -0400850 goto out_put_nd_path;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400851
852 error = 0;
853 s = nd_get_link(nd);
854 if (s) {
Al Viro443ed252013-09-10 12:00:43 -0400855 if (unlikely(IS_ERR(s))) {
856 path_put(&nd->path);
857 put_link(nd, link, *p);
858 return PTR_ERR(s);
859 }
860 if (*s == '/') {
Al Viro7bd88372014-09-13 21:55:46 -0400861 if (!nd->root.mnt)
862 set_root(nd);
Al Viro443ed252013-09-10 12:00:43 -0400863 path_put(&nd->path);
864 nd->path = nd->root;
865 path_get(&nd->root);
866 nd->flags |= LOOKUP_JUMPED;
867 }
868 nd->inode = nd->path.dentry->d_inode;
869 error = link_path_walk(s, nd);
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400870 if (unlikely(error))
871 put_link(nd, link, *p);
Ian Kent051d3812006-03-27 01:14:53 -0800872 }
Al Viro6d7b5aa2012-06-10 04:15:17 -0400873
874 return error;
875
876out_put_nd_path:
Arnd Bergmann98f6ef62012-10-11 13:20:00 +0000877 *p = NULL;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400878 path_put(&nd->path);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400879 path_put(link);
Ian Kent051d3812006-03-27 01:14:53 -0800880 return error;
881}
882
Nick Piggin31e6b012011-01-07 17:49:52 +1100883static int follow_up_rcu(struct path *path)
884{
Al Viro0714a532011-11-24 22:19:58 -0500885 struct mount *mnt = real_mount(path->mnt);
886 struct mount *parent;
Nick Piggin31e6b012011-01-07 17:49:52 +1100887 struct dentry *mountpoint;
888
Al Viro0714a532011-11-24 22:19:58 -0500889 parent = mnt->mnt_parent;
890 if (&parent->mnt == path->mnt)
Nick Piggin31e6b012011-01-07 17:49:52 +1100891 return 0;
Al Viroa73324d2011-11-24 22:25:07 -0500892 mountpoint = mnt->mnt_mountpoint;
Nick Piggin31e6b012011-01-07 17:49:52 +1100893 path->dentry = mountpoint;
Al Viro0714a532011-11-24 22:19:58 -0500894 path->mnt = &parent->mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +1100895 return 1;
896}
897
David Howellsf015f1262012-06-25 12:55:28 +0100898/*
899 * follow_up - Find the mountpoint of path's vfsmount
900 *
901 * Given a path, find the mountpoint of its source file system.
902 * Replace @path with the path of the mountpoint in the parent mount.
903 * Up is towards /.
904 *
905 * Return 1 if we went up a level and 0 if we were already at the
906 * root.
907 */
Al Virobab77eb2009-04-18 03:26:48 -0400908int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Al Viro0714a532011-11-24 22:19:58 -0500910 struct mount *mnt = real_mount(path->mnt);
911 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000913
Al Viro48a066e2013-09-29 22:06:07 -0400914 read_seqlock_excl(&mount_lock);
Al Viro0714a532011-11-24 22:19:58 -0500915 parent = mnt->mnt_parent;
Al Viro3c0a6162012-07-18 17:32:50 +0400916 if (parent == mnt) {
Al Viro48a066e2013-09-29 22:06:07 -0400917 read_sequnlock_excl(&mount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 return 0;
919 }
Al Viro0714a532011-11-24 22:19:58 -0500920 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -0500921 mountpoint = dget(mnt->mnt_mountpoint);
Al Viro48a066e2013-09-29 22:06:07 -0400922 read_sequnlock_excl(&mount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400923 dput(path->dentry);
924 path->dentry = mountpoint;
925 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -0500926 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return 1;
928}
Al Viro4d359502014-03-14 12:20:17 -0400929EXPORT_SYMBOL(follow_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100931/*
David Howells9875cf82011-01-14 18:45:21 +0000932 * Perform an automount
933 * - return -EISDIR to tell follow_managed() to stop and return the path we
934 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 */
David Howells9875cf82011-01-14 18:45:21 +0000936static int follow_automount(struct path *path, unsigned flags,
937 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100938{
David Howells9875cf82011-01-14 18:45:21 +0000939 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000940 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100941
David Howells9875cf82011-01-14 18:45:21 +0000942 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
943 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700944
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200945 /* We don't want to mount if someone's just doing a stat -
946 * unless they're stat'ing a directory and appended a '/' to
947 * the name.
948 *
949 * We do, however, want to mount if someone wants to open or
950 * create a file of any type under the mountpoint, wants to
951 * traverse through the mountpoint or wants to open the
952 * mounted directory. Also, autofs may mark negative dentries
953 * as being automount points. These will need the attentions
954 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +0000955 */
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200956 if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
Linus Torvaldsd94c1772011-09-26 17:44:55 -0700957 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200958 path->dentry->d_inode)
959 return -EISDIR;
960
David Howells9875cf82011-01-14 18:45:21 +0000961 current->total_link_count++;
962 if (current->total_link_count >= 40)
963 return -ELOOP;
964
965 mnt = path->dentry->d_op->d_automount(path);
966 if (IS_ERR(mnt)) {
967 /*
968 * The filesystem is allowed to return -EISDIR here to indicate
969 * it doesn't want to automount. For instance, autofs would do
970 * this so that its userspace daemon can mount on this dentry.
971 *
972 * However, we can only permit this if it's a terminal point in
973 * the path being looked up; if it wasn't then the remainder of
974 * the path is inaccessible and we should say so.
975 */
Al Viro49084c32011-06-25 21:59:52 -0400976 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +0000977 return -EREMOTE;
978 return PTR_ERR(mnt);
979 }
David Howellsea5b7782011-01-14 19:10:03 +0000980
David Howells9875cf82011-01-14 18:45:21 +0000981 if (!mnt) /* mount collision */
982 return 0;
983
Al Viro8aef1882011-06-16 15:10:06 +0100984 if (!*need_mntput) {
985 /* lock_mount() may release path->mnt on error */
986 mntget(path->mnt);
987 *need_mntput = true;
988 }
Al Viro19a167a2011-01-17 01:35:23 -0500989 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000990
David Howellsea5b7782011-01-14 19:10:03 +0000991 switch (err) {
992 case -EBUSY:
993 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500994 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000995 case 0:
Al Viro8aef1882011-06-16 15:10:06 +0100996 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +0000997 path->mnt = mnt;
998 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +0000999 return 0;
Al Viro19a167a2011-01-17 01:35:23 -05001000 default:
1001 return err;
David Howellsea5b7782011-01-14 19:10:03 +00001002 }
Al Viro19a167a2011-01-17 01:35:23 -05001003
David Howells9875cf82011-01-14 18:45:21 +00001004}
1005
1006/*
1007 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +00001008 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +00001009 * - Flagged as mountpoint
1010 * - Flagged as automount point
1011 *
1012 * This may only be called in refwalk mode.
1013 *
1014 * Serialization is taken care of in namespace.c
1015 */
1016static int follow_managed(struct path *path, unsigned flags)
1017{
Al Viro8aef1882011-06-16 15:10:06 +01001018 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +00001019 unsigned managed;
1020 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +01001021 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +00001022
1023 /* Given that we're not holding a lock here, we retain the value in a
1024 * local variable for each dentry as we look at it so that we don't see
1025 * the components of that value change under us */
1026 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1027 managed &= DCACHE_MANAGED_DENTRY,
1028 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +00001029 /* Allow the filesystem to manage the transit without i_mutex
1030 * being held. */
1031 if (managed & DCACHE_MANAGE_TRANSIT) {
1032 BUG_ON(!path->dentry->d_op);
1033 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -04001034 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001035 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001036 break;
David Howellscc53ce52011-01-14 18:45:26 +00001037 }
1038
David Howells9875cf82011-01-14 18:45:21 +00001039 /* Transit to a mounted filesystem. */
1040 if (managed & DCACHE_MOUNTED) {
1041 struct vfsmount *mounted = lookup_mnt(path);
1042 if (mounted) {
1043 dput(path->dentry);
1044 if (need_mntput)
1045 mntput(path->mnt);
1046 path->mnt = mounted;
1047 path->dentry = dget(mounted->mnt_root);
1048 need_mntput = true;
1049 continue;
1050 }
1051
1052 /* Something is mounted on this dentry in another
1053 * namespace and/or whatever was mounted there in this
Al Viro48a066e2013-09-29 22:06:07 -04001054 * namespace got unmounted before lookup_mnt() could
1055 * get it */
David Howells9875cf82011-01-14 18:45:21 +00001056 }
1057
1058 /* Handle an automount point */
1059 if (managed & DCACHE_NEED_AUTOMOUNT) {
1060 ret = follow_automount(path, flags, &need_mntput);
1061 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001062 break;
David Howells9875cf82011-01-14 18:45:21 +00001063 continue;
1064 }
1065
1066 /* We didn't change the current path point */
1067 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 }
Al Viro8aef1882011-06-16 15:10:06 +01001069
1070 if (need_mntput && path->mnt == mnt)
1071 mntput(path->mnt);
1072 if (ret == -EISDIR)
1073 ret = 0;
Al Viroa3fbbde2011-11-07 21:21:26 +00001074 return ret < 0 ? ret : need_mntput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075}
1076
David Howellscc53ce52011-01-14 18:45:26 +00001077int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078{
1079 struct vfsmount *mounted;
1080
Al Viro1c755af2009-04-18 14:06:57 -04001081 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -04001083 dput(path->dentry);
1084 mntput(path->mnt);
1085 path->mnt = mounted;
1086 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 return 1;
1088 }
1089 return 0;
1090}
Al Viro4d359502014-03-14 12:20:17 -04001091EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
NeilBrownb8faf032014-08-04 17:06:29 +10001093static inline int managed_dentry_rcu(struct dentry *dentry)
Ian Kent62a73752011-03-25 01:51:02 +08001094{
NeilBrownb8faf032014-08-04 17:06:29 +10001095 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
1096 dentry->d_op->d_manage(dentry, true) : 0;
Ian Kent62a73752011-03-25 01:51:02 +08001097}
1098
David Howells9875cf82011-01-14 18:45:21 +00001099/*
Al Viro287548e2011-05-27 06:50:06 -04001100 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1101 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +00001102 */
1103static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -04001104 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +00001105{
Ian Kent62a73752011-03-25 01:51:02 +08001106 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -05001107 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +08001108 /*
1109 * Don't forget we might have a non-mountpoint managed dentry
1110 * that wants to block transit.
1111 */
NeilBrownb8faf032014-08-04 17:06:29 +10001112 switch (managed_dentry_rcu(path->dentry)) {
1113 case -ECHILD:
1114 default:
David Howellsab909112011-01-14 18:46:51 +00001115 return false;
NeilBrownb8faf032014-08-04 17:06:29 +10001116 case -EISDIR:
1117 return true;
1118 case 0:
1119 break;
1120 }
Ian Kent62a73752011-03-25 01:51:02 +08001121
1122 if (!d_mountpoint(path->dentry))
NeilBrownb8faf032014-08-04 17:06:29 +10001123 return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Ian Kent62a73752011-03-25 01:51:02 +08001124
Al Viro474279d2013-10-01 16:11:26 -04001125 mounted = __lookup_mnt(path->mnt, path->dentry);
David Howells9875cf82011-01-14 18:45:21 +00001126 if (!mounted)
1127 break;
Al Viroc7105362011-11-24 18:22:03 -05001128 path->mnt = &mounted->mnt;
1129 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +00001130 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001131 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -07001132 /*
1133 * Update the inode too. We don't need to re-check the
1134 * dentry sequence number here after this d_inode read,
1135 * because a mount-point is always pinned.
1136 */
1137 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +00001138 }
Al Virof5be3e29122014-09-13 21:50:45 -04001139 return !read_seqretry(&mount_lock, nd->m_seq) &&
NeilBrownb8faf032014-08-04 17:06:29 +10001140 !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Al Viro287548e2011-05-27 06:50:06 -04001141}
1142
Nick Piggin31e6b012011-01-07 17:49:52 +11001143static int follow_dotdot_rcu(struct nameidata *nd)
1144{
Al Viro4023bfc2014-09-13 21:59:43 -04001145 struct inode *inode = nd->inode;
Al Viro7bd88372014-09-13 21:55:46 -04001146 if (!nd->root.mnt)
1147 set_root_rcu(nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001148
David Howells9875cf82011-01-14 18:45:21 +00001149 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001150 if (nd->path.dentry == nd->root.dentry &&
1151 nd->path.mnt == nd->root.mnt) {
1152 break;
1153 }
1154 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1155 struct dentry *old = nd->path.dentry;
1156 struct dentry *parent = old->d_parent;
1157 unsigned seq;
1158
Al Viro4023bfc2014-09-13 21:59:43 -04001159 inode = parent->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001160 seq = read_seqcount_begin(&parent->d_seq);
1161 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -05001162 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +11001163 nd->path.dentry = parent;
1164 nd->seq = seq;
1165 break;
1166 }
1167 if (!follow_up_rcu(&nd->path))
1168 break;
Al Viro4023bfc2014-09-13 21:59:43 -04001169 inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001170 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +11001171 }
Al Virob37199e2014-03-20 15:18:22 -04001172 while (d_mountpoint(nd->path.dentry)) {
1173 struct mount *mounted;
1174 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
1175 if (!mounted)
1176 break;
1177 nd->path.mnt = &mounted->mnt;
1178 nd->path.dentry = mounted->mnt.mnt_root;
Al Viro4023bfc2014-09-13 21:59:43 -04001179 inode = nd->path.dentry->d_inode;
Al Virob37199e2014-03-20 15:18:22 -04001180 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Virof5be3e29122014-09-13 21:50:45 -04001181 if (read_seqretry(&mount_lock, nd->m_seq))
Al Virob37199e2014-03-20 15:18:22 -04001182 goto failed;
1183 }
Al Viro4023bfc2014-09-13 21:59:43 -04001184 nd->inode = inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001185 return 0;
Al Viroef7562d2011-03-04 14:35:59 -05001186
1187failed:
1188 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001189 if (!(nd->flags & LOOKUP_ROOT))
1190 nd->root.mnt = NULL;
Al Viro8b61e742013-11-08 12:45:01 -05001191 rcu_read_unlock();
Al Viroef7562d2011-03-04 14:35:59 -05001192 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001193}
1194
David Howells9875cf82011-01-14 18:45:21 +00001195/*
David Howellscc53ce52011-01-14 18:45:26 +00001196 * Follow down to the covering mount currently visible to userspace. At each
1197 * point, the filesystem owning that dentry may be queried as to whether the
1198 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001199 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001200int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001201{
1202 unsigned managed;
1203 int ret;
1204
1205 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1206 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1207 /* Allow the filesystem to manage the transit without i_mutex
1208 * being held.
1209 *
1210 * We indicate to the filesystem if someone is trying to mount
1211 * something here. This gives autofs the chance to deny anyone
1212 * other than its daemon the right to mount on its
1213 * superstructure.
1214 *
1215 * The filesystem may sleep at this point.
1216 */
1217 if (managed & DCACHE_MANAGE_TRANSIT) {
1218 BUG_ON(!path->dentry->d_op);
1219 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001220 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001221 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001222 if (ret < 0)
1223 return ret == -EISDIR ? 0 : ret;
1224 }
1225
1226 /* Transit to a mounted filesystem. */
1227 if (managed & DCACHE_MOUNTED) {
1228 struct vfsmount *mounted = lookup_mnt(path);
1229 if (!mounted)
1230 break;
1231 dput(path->dentry);
1232 mntput(path->mnt);
1233 path->mnt = mounted;
1234 path->dentry = dget(mounted->mnt_root);
1235 continue;
1236 }
1237
1238 /* Don't handle automount points here */
1239 break;
1240 }
1241 return 0;
1242}
Al Viro4d359502014-03-14 12:20:17 -04001243EXPORT_SYMBOL(follow_down);
David Howellscc53ce52011-01-14 18:45:26 +00001244
1245/*
David Howells9875cf82011-01-14 18:45:21 +00001246 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1247 */
1248static void follow_mount(struct path *path)
1249{
1250 while (d_mountpoint(path->dentry)) {
1251 struct vfsmount *mounted = lookup_mnt(path);
1252 if (!mounted)
1253 break;
1254 dput(path->dentry);
1255 mntput(path->mnt);
1256 path->mnt = mounted;
1257 path->dentry = dget(mounted->mnt_root);
1258 }
1259}
1260
Nick Piggin31e6b012011-01-07 17:49:52 +11001261static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Al Viro7bd88372014-09-13 21:55:46 -04001263 if (!nd->root.mnt)
1264 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001265
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001267 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Al Viro2a737872009-04-07 11:49:53 -04001269 if (nd->path.dentry == nd->root.dentry &&
1270 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 break;
1272 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001273 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001274 /* rare case of legitimate dget_parent()... */
1275 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 dput(old);
1277 break;
1278 }
Al Viro3088dd72010-01-30 15:47:29 -05001279 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 }
Al Viro79ed0222009-04-18 13:59:41 -04001282 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001283 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001287 * This looks up the name in dcache, possibly revalidates the old dentry and
1288 * allocates a new one if not found or not valid. In the need_lookup argument
1289 * returns whether i_op->lookup is necessary.
1290 *
1291 * dir->d_inode->i_mutex must be held
Nick Pigginbaa03892010-08-18 04:37:31 +10001292 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001293static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
Al Viro201f9562012-06-22 12:42:10 +04001294 unsigned int flags, bool *need_lookup)
Nick Pigginbaa03892010-08-18 04:37:31 +10001295{
Nick Pigginbaa03892010-08-18 04:37:31 +10001296 struct dentry *dentry;
Miklos Szeredibad61182012-03-26 12:54:24 +02001297 int error;
Nick Pigginbaa03892010-08-18 04:37:31 +10001298
Miklos Szeredibad61182012-03-26 12:54:24 +02001299 *need_lookup = false;
1300 dentry = d_lookup(dir, name);
1301 if (dentry) {
Jeff Layton39e3c952012-11-28 11:30:53 -05001302 if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
Al Viro201f9562012-06-22 12:42:10 +04001303 error = d_revalidate(dentry, flags);
Miklos Szeredibad61182012-03-26 12:54:24 +02001304 if (unlikely(error <= 0)) {
1305 if (error < 0) {
1306 dput(dentry);
1307 return ERR_PTR(error);
1308 } else if (!d_invalidate(dentry)) {
1309 dput(dentry);
1310 dentry = NULL;
1311 }
1312 }
1313 }
1314 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001315
Miklos Szeredibad61182012-03-26 12:54:24 +02001316 if (!dentry) {
1317 dentry = d_alloc(dir, name);
1318 if (unlikely(!dentry))
1319 return ERR_PTR(-ENOMEM);
Nick Pigginbaa03892010-08-18 04:37:31 +10001320
Miklos Szeredibad61182012-03-26 12:54:24 +02001321 *need_lookup = true;
Nick Pigginbaa03892010-08-18 04:37:31 +10001322 }
1323 return dentry;
1324}
1325
1326/*
J. Bruce Fields13a2c3b2013-10-23 16:09:16 -04001327 * Call i_op->lookup on the dentry. The dentry must be negative and
1328 * unhashed.
Miklos Szeredibad61182012-03-26 12:54:24 +02001329 *
1330 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001331 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001332static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
Al Viro72bd8662012-06-10 17:17:17 -04001333 unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001334{
Josef Bacik44396f42011-05-31 11:58:49 -04001335 struct dentry *old;
1336
1337 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001338 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001339 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001340 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001341 }
Josef Bacik44396f42011-05-31 11:58:49 -04001342
Al Viro72bd8662012-06-10 17:17:17 -04001343 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001344 if (unlikely(old)) {
1345 dput(dentry);
1346 dentry = old;
1347 }
1348 return dentry;
1349}
1350
Al Viroa3255542012-03-30 14:41:51 -04001351static struct dentry *__lookup_hash(struct qstr *name,
Al Viro72bd8662012-06-10 17:17:17 -04001352 struct dentry *base, unsigned int flags)
Al Viroa3255542012-03-30 14:41:51 -04001353{
Miklos Szeredibad61182012-03-26 12:54:24 +02001354 bool need_lookup;
Al Viroa3255542012-03-30 14:41:51 -04001355 struct dentry *dentry;
1356
Al Viro72bd8662012-06-10 17:17:17 -04001357 dentry = lookup_dcache(name, base, flags, &need_lookup);
Miklos Szeredibad61182012-03-26 12:54:24 +02001358 if (!need_lookup)
1359 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001360
Al Viro72bd8662012-06-10 17:17:17 -04001361 return lookup_real(base->d_inode, dentry, flags);
Al Viroa3255542012-03-30 14:41:51 -04001362}
1363
Josef Bacik44396f42011-05-31 11:58:49 -04001364/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 * It's more convoluted than I'd like it to be, but... it's still fairly
1366 * small and for now I'd prefer to have fast path as straight as possible.
1367 * It _is_ time-critical.
1368 */
Al Viroe97cdc82013-01-24 18:16:00 -05001369static int lookup_fast(struct nameidata *nd,
Miklos Szeredi697f5142012-05-21 17:30:05 +02001370 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371{
Jan Blunck4ac91372008-02-14 19:34:32 -08001372 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001373 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001374 int need_reval = 1;
1375 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001376 int err;
1377
Al Viro3cac2602009-08-13 18:27:43 +04001378 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001379 * Rename seqlock is not required here because in the off chance
1380 * of a false negative due to a concurrent rename, we're going to
1381 * do the non-racy lookup, below.
1382 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001383 if (nd->flags & LOOKUP_RCU) {
1384 unsigned seq;
Linus Torvaldsda53be12013-05-21 15:22:44 -07001385 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
Al Viro5a18fff2011-03-11 04:44:53 -05001386 if (!dentry)
1387 goto unlazy;
1388
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001389 /*
1390 * This sequence count validates that the inode matches
1391 * the dentry name information from lookup.
1392 */
1393 *inode = dentry->d_inode;
1394 if (read_seqcount_retry(&dentry->d_seq, seq))
1395 return -ECHILD;
1396
1397 /*
1398 * This sequence count validates that the parent had no
1399 * changes while we did the lookup of the dentry above.
1400 *
1401 * The memory barrier in read_seqcount_begin of child is
1402 * enough, we can use __read_seqcount_retry here.
1403 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001404 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1405 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001406 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001407
Al Viro24643082011-02-15 01:26:22 -05001408 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro4ce16ef32012-06-10 16:10:59 -04001409 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001410 if (unlikely(status <= 0)) {
1411 if (status != -ECHILD)
1412 need_reval = 0;
1413 goto unlazy;
1414 }
Al Viro24643082011-02-15 01:26:22 -05001415 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001416 path->mnt = mnt;
1417 path->dentry = dentry;
NeilBrownb8faf032014-08-04 17:06:29 +10001418 if (likely(__follow_mount_rcu(nd, path, inode)))
1419 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001420unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001421 if (unlazy_walk(nd, dentry))
1422 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001423 } else {
Al Viroe97cdc82013-01-24 18:16:00 -05001424 dentry = __d_lookup(parent, &nd->last);
Nick Piggin31e6b012011-01-07 17:49:52 +11001425 }
Al Viro5a18fff2011-03-11 04:44:53 -05001426
Al Viro81e6f522012-03-30 14:48:04 -04001427 if (unlikely(!dentry))
1428 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001429
Al Viro5a18fff2011-03-11 04:44:53 -05001430 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
Al Viro4ce16ef32012-06-10 16:10:59 -04001431 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001432 if (unlikely(status <= 0)) {
1433 if (status < 0) {
1434 dput(dentry);
1435 return status;
1436 }
1437 if (!d_invalidate(dentry)) {
1438 dput(dentry);
Al Viro81e6f522012-03-30 14:48:04 -04001439 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001440 }
1441 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001442
David Howells9875cf82011-01-14 18:45:21 +00001443 path->mnt = mnt;
1444 path->dentry = dentry;
1445 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001446 if (unlikely(err < 0)) {
1447 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001448 return err;
Ian Kent89312212011-01-18 12:06:10 +08001449 }
Al Viroa3fbbde2011-11-07 21:21:26 +00001450 if (err)
1451 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001452 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 return 0;
Al Viro81e6f522012-03-30 14:48:04 -04001454
1455need_lookup:
Miklos Szeredi697f5142012-05-21 17:30:05 +02001456 return 1;
1457}
1458
1459/* Fast lookup failed, do it the slow way */
Al Virocc2a5272013-01-24 18:19:49 -05001460static int lookup_slow(struct nameidata *nd, struct path *path)
Miklos Szeredi697f5142012-05-21 17:30:05 +02001461{
1462 struct dentry *dentry, *parent;
1463 int err;
1464
1465 parent = nd->path.dentry;
Al Viro81e6f522012-03-30 14:48:04 -04001466 BUG_ON(nd->inode != parent->d_inode);
1467
1468 mutex_lock(&parent->d_inode->i_mutex);
Al Virocc2a5272013-01-24 18:19:49 -05001469 dentry = __lookup_hash(&nd->last, parent, nd->flags);
Al Viro81e6f522012-03-30 14:48:04 -04001470 mutex_unlock(&parent->d_inode->i_mutex);
1471 if (IS_ERR(dentry))
1472 return PTR_ERR(dentry);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001473 path->mnt = nd->path.mnt;
1474 path->dentry = dentry;
1475 err = follow_managed(path, nd->flags);
1476 if (unlikely(err < 0)) {
1477 path_put_conditional(path, nd);
1478 return err;
1479 }
1480 if (err)
1481 nd->flags |= LOOKUP_JUMPED;
1482 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483}
1484
Al Viro52094c82011-02-21 21:34:47 -05001485static inline int may_lookup(struct nameidata *nd)
1486{
1487 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001488 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001489 if (err != -ECHILD)
1490 return err;
Al Viro19660af2011-03-25 10:32:48 -04001491 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001492 return -ECHILD;
1493 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001494 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001495}
1496
Al Viro9856fa12011-03-04 14:22:06 -05001497static inline int handle_dots(struct nameidata *nd, int type)
1498{
1499 if (type == LAST_DOTDOT) {
1500 if (nd->flags & LOOKUP_RCU) {
1501 if (follow_dotdot_rcu(nd))
1502 return -ECHILD;
1503 } else
1504 follow_dotdot(nd);
1505 }
1506 return 0;
1507}
1508
Al Viro951361f2011-03-04 14:44:37 -05001509static void terminate_walk(struct nameidata *nd)
1510{
1511 if (!(nd->flags & LOOKUP_RCU)) {
1512 path_put(&nd->path);
1513 } else {
1514 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001515 if (!(nd->flags & LOOKUP_ROOT))
1516 nd->root.mnt = NULL;
Al Viro8b61e742013-11-08 12:45:01 -05001517 rcu_read_unlock();
Al Viro951361f2011-03-04 14:44:37 -05001518 }
1519}
1520
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001521/*
1522 * Do we need to follow links? We _really_ want to be able
1523 * to do this check without having to look at inode->i_op,
1524 * so we keep a cache of "no, this doesn't need follow_link"
1525 * for the common case.
1526 */
David Howellsb18825a2013-09-12 19:22:53 +01001527static inline int should_follow_link(struct dentry *dentry, int follow)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001528{
David Howellsb18825a2013-09-12 19:22:53 +01001529 return unlikely(d_is_symlink(dentry)) ? follow : 0;
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001530}
1531
Al Viroce57dfc2011-03-13 19:58:58 -04001532static inline int walk_component(struct nameidata *nd, struct path *path,
Al Viro21b9b072013-01-24 18:10:25 -05001533 int follow)
Al Viroce57dfc2011-03-13 19:58:58 -04001534{
1535 struct inode *inode;
1536 int err;
1537 /*
1538 * "." and ".." are special - ".." especially so because it has
1539 * to be able to know about the current root directory and
1540 * parent relationships.
1541 */
Al Viro21b9b072013-01-24 18:10:25 -05001542 if (unlikely(nd->last_type != LAST_NORM))
1543 return handle_dots(nd, nd->last_type);
Al Viroe97cdc82013-01-24 18:16:00 -05001544 err = lookup_fast(nd, path, &inode);
Al Viroce57dfc2011-03-13 19:58:58 -04001545 if (unlikely(err)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001546 if (err < 0)
1547 goto out_err;
1548
Al Virocc2a5272013-01-24 18:19:49 -05001549 err = lookup_slow(nd, path);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001550 if (err < 0)
1551 goto out_err;
1552
1553 inode = path->dentry->d_inode;
Al Viroce57dfc2011-03-13 19:58:58 -04001554 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001555 err = -ENOENT;
Al Viro22213312014-04-19 12:30:58 -04001556 if (!inode || d_is_negative(path->dentry))
Miklos Szeredi697f5142012-05-21 17:30:05 +02001557 goto out_path_put;
1558
David Howellsb18825a2013-09-12 19:22:53 +01001559 if (should_follow_link(path->dentry, follow)) {
Al Viro19660af2011-03-25 10:32:48 -04001560 if (nd->flags & LOOKUP_RCU) {
1561 if (unlikely(unlazy_walk(nd, path->dentry))) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001562 err = -ECHILD;
1563 goto out_err;
Al Viro19660af2011-03-25 10:32:48 -04001564 }
1565 }
Al Viroce57dfc2011-03-13 19:58:58 -04001566 BUG_ON(inode != path->dentry->d_inode);
1567 return 1;
1568 }
1569 path_to_nameidata(path, nd);
1570 nd->inode = inode;
1571 return 0;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001572
1573out_path_put:
1574 path_to_nameidata(path, nd);
1575out_err:
1576 terminate_walk(nd);
1577 return err;
Al Viroce57dfc2011-03-13 19:58:58 -04001578}
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580/*
Al Virob3563792011-03-14 21:54:55 -04001581 * This limits recursive symlink follows to 8, while
1582 * limiting consecutive symlinks to 40.
1583 *
1584 * Without that kind of total limit, nasty chains of consecutive
1585 * symlinks can cause almost arbitrarily long lookups.
1586 */
1587static inline int nested_symlink(struct path *path, struct nameidata *nd)
1588{
1589 int res;
1590
Al Virob3563792011-03-14 21:54:55 -04001591 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1592 path_put_conditional(path, nd);
1593 path_put(&nd->path);
1594 return -ELOOP;
1595 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001596 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001597
1598 nd->depth++;
1599 current->link_count++;
1600
1601 do {
1602 struct path link = *path;
1603 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001604
1605 res = follow_link(&link, nd, &cookie);
Al Viro6d7b5aa2012-06-10 04:15:17 -04001606 if (res)
1607 break;
Al Viro21b9b072013-01-24 18:10:25 -05001608 res = walk_component(nd, path, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001609 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001610 } while (res > 0);
1611
1612 current->link_count--;
1613 nd->depth--;
1614 return res;
1615}
1616
1617/*
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001618 * We can do the critical dentry name comparison and hashing
1619 * operations one word at a time, but we are limited to:
1620 *
1621 * - Architectures with fast unaligned word accesses. We could
1622 * do a "get_unaligned()" if this helps and is sufficiently
1623 * fast.
1624 *
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001625 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1626 * do not trap on the (extremely unlikely) case of a page
1627 * crossing operation.
1628 *
1629 * - Furthermore, we need an efficient 64-bit compile for the
1630 * 64-bit case in order to generate the "number of bytes in
1631 * the final mask". Again, that could be replaced with a
1632 * efficient population count instruction or similar.
1633 */
1634#ifdef CONFIG_DCACHE_WORD_ACCESS
1635
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001636#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001637
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001638#ifdef CONFIG_64BIT
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001639
1640static inline unsigned int fold_hash(unsigned long hash)
1641{
1642 hash += hash >> (8*sizeof(int));
1643 return hash;
1644}
1645
1646#else /* 32-bit case */
1647
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001648#define fold_hash(x) (x)
1649
1650#endif
1651
1652unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1653{
1654 unsigned long a, mask;
1655 unsigned long hash = 0;
1656
1657 for (;;) {
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001658 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001659 if (len < sizeof(unsigned long))
1660 break;
1661 hash += a;
Al Virof132c5b2012-03-22 21:59:52 +00001662 hash *= 9;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001663 name += sizeof(unsigned long);
1664 len -= sizeof(unsigned long);
1665 if (!len)
1666 goto done;
1667 }
Will Deacona5c21dc2013-12-12 17:40:21 +00001668 mask = bytemask_from_count(len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001669 hash += mask & a;
1670done:
1671 return fold_hash(hash);
1672}
1673EXPORT_SYMBOL(full_name_hash);
1674
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001675/*
1676 * Calculate the length and hash of the path component, and
1677 * return the length of the component;
1678 */
1679static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1680{
Linus Torvalds36126f82012-05-26 10:43:17 -07001681 unsigned long a, b, adata, bdata, mask, hash, len;
1682 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001683
1684 hash = a = 0;
1685 len = -sizeof(unsigned long);
1686 do {
1687 hash = (hash + a) * 9;
1688 len += sizeof(unsigned long);
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001689 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07001690 b = a ^ REPEAT_BYTE('/');
1691 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001692
Linus Torvalds36126f82012-05-26 10:43:17 -07001693 adata = prep_zero_mask(a, adata, &constants);
1694 bdata = prep_zero_mask(b, bdata, &constants);
1695
1696 mask = create_zero_mask(adata | bdata);
1697
1698 hash += a & zero_bytemask(mask);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001699 *hashp = fold_hash(hash);
1700
Linus Torvalds36126f82012-05-26 10:43:17 -07001701 return len + find_zero(mask);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001702}
1703
1704#else
1705
Linus Torvalds0145acc2012-03-02 14:32:59 -08001706unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1707{
1708 unsigned long hash = init_name_hash();
1709 while (len--)
1710 hash = partial_name_hash(*name++, hash);
1711 return end_name_hash(hash);
1712}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001713EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001714
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001715/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001716 * We know there's a real path component here of at least
1717 * one character.
1718 */
1719static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1720{
1721 unsigned long hash = init_name_hash();
1722 unsigned long len = 0, c;
1723
1724 c = (unsigned char)*name;
1725 do {
1726 len++;
1727 hash = partial_name_hash(c, hash);
1728 c = (unsigned char)name[len];
1729 } while (c && c != '/');
1730 *hashp = end_name_hash(hash);
1731 return len;
1732}
1733
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001734#endif
1735
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001736/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001738 * This is the basic name resolution function, turning a pathname into
1739 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001741 * Returns 0 and nd will have valid dentry and mnt on success.
1742 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 */
Al Viro6de88d72009-08-09 01:41:57 +04001744static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745{
1746 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748
1749 while (*name=='/')
1750 name++;
1751 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001752 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 /* At this point we know we have a real path component. */
1755 for(;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 struct qstr this;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001757 long len;
Al Virofe479a52011-02-22 15:10:03 -05001758 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759
Al Viro52094c82011-02-21 21:34:47 -05001760 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 if (err)
1762 break;
1763
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001764 len = hash_name(name, &this.hash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765 this.name = name;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001766 this.len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Al Virofe479a52011-02-22 15:10:03 -05001768 type = LAST_NORM;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001769 if (name[0] == '.') switch (len) {
Al Virofe479a52011-02-22 15:10:03 -05001770 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001771 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001772 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001773 nd->flags |= LOOKUP_JUMPED;
1774 }
Al Virofe479a52011-02-22 15:10:03 -05001775 break;
1776 case 1:
1777 type = LAST_DOT;
1778 }
Al Viro5a202bc2011-03-08 14:17:44 -05001779 if (likely(type == LAST_NORM)) {
1780 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001781 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001782 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
Linus Torvaldsda53be12013-05-21 15:22:44 -07001783 err = parent->d_op->d_hash(parent, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05001784 if (err < 0)
1785 break;
1786 }
1787 }
Al Virofe479a52011-02-22 15:10:03 -05001788
Al Viro5f4a6a62013-01-24 18:04:22 -05001789 nd->last = this;
1790 nd->last_type = type;
1791
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001792 if (!name[len])
Al Viro5f4a6a62013-01-24 18:04:22 -05001793 return 0;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001794 /*
1795 * If it wasn't NUL, we know it was '/'. Skip that
1796 * slash, and continue until no more slashes.
1797 */
1798 do {
1799 len++;
1800 } while (unlikely(name[len] == '/'));
1801 if (!name[len])
Al Viro5f4a6a62013-01-24 18:04:22 -05001802 return 0;
1803
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001804 name += len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805
Al Viro21b9b072013-01-24 18:10:25 -05001806 err = walk_component(nd, &next, LOOKUP_FOLLOW);
Al Viroce57dfc2011-03-13 19:58:58 -04001807 if (err < 0)
1808 return err;
Al Virofe479a52011-02-22 15:10:03 -05001809
Al Viroce57dfc2011-03-13 19:58:58 -04001810 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001811 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001813 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001814 }
Miklos Szeredi44b1d532014-04-01 17:08:41 +02001815 if (!d_can_lookup(nd->path.dentry)) {
Al Viro5f4a6a62013-01-24 18:04:22 -05001816 err = -ENOTDIR;
1817 break;
1818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 }
Al Viro951361f2011-03-04 14:44:37 -05001820 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 return err;
1822}
1823
Al Viro70e9b352011-03-05 21:12:22 -05001824static int path_init(int dfd, const char *name, unsigned int flags,
1825 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001827 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001830 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001832 if (flags & LOOKUP_ROOT) {
David Howellsb18825a2013-09-12 19:22:53 +01001833 struct dentry *root = nd->root.dentry;
1834 struct inode *inode = root->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001835 if (*name) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02001836 if (!d_can_lookup(root))
Al Viro73d049a2011-03-11 12:08:24 -05001837 return -ENOTDIR;
1838 retval = inode_permission(inode, MAY_EXEC);
1839 if (retval)
1840 return retval;
1841 }
Al Viro5b6ca022011-03-09 23:04:47 -05001842 nd->path = nd->root;
1843 nd->inode = inode;
1844 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05001845 rcu_read_lock();
Al Viro5b6ca022011-03-09 23:04:47 -05001846 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro48a066e2013-09-29 22:06:07 -04001847 nd->m_seq = read_seqbegin(&mount_lock);
Al Viro5b6ca022011-03-09 23:04:47 -05001848 } else {
1849 path_get(&nd->path);
1850 }
1851 return 0;
1852 }
1853
Al Viro2a737872009-04-07 11:49:53 -04001854 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Al Viro48a066e2013-09-29 22:06:07 -04001856 nd->m_seq = read_seqbegin(&mount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001858 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05001859 rcu_read_lock();
Al Viro7bd88372014-09-13 21:55:46 -04001860 nd->seq = set_root_rcu(nd);
Al Viroe41f7d42011-02-22 14:02:58 -05001861 } else {
1862 set_root(nd);
1863 path_get(&nd->root);
1864 }
Al Viro2a737872009-04-07 11:49:53 -04001865 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001866 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001867 if (flags & LOOKUP_RCU) {
1868 struct fs_struct *fs = current->fs;
1869 unsigned seq;
1870
Al Viro8b61e742013-11-08 12:45:01 -05001871 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05001872
1873 do {
1874 seq = read_seqcount_begin(&fs->seq);
1875 nd->path = fs->pwd;
1876 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1877 } while (read_seqcount_retry(&fs->seq, seq));
1878 } else {
1879 get_fs_pwd(current->fs, &nd->path);
1880 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001881 } else {
Jeff Layton582aa642012-12-11 08:56:16 -05001882 /* Caller must check execute permissions on the starting path component */
Al Viro2903ff02012-08-28 12:52:22 -04001883 struct fd f = fdget_raw(dfd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001884 struct dentry *dentry;
1885
Al Viro2903ff02012-08-28 12:52:22 -04001886 if (!f.file)
1887 return -EBADF;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001888
Al Viro2903ff02012-08-28 12:52:22 -04001889 dentry = f.file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001890
Al Virof52e0c12011-03-14 18:56:51 -04001891 if (*name) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02001892 if (!d_can_lookup(dentry)) {
Al Viro2903ff02012-08-28 12:52:22 -04001893 fdput(f);
1894 return -ENOTDIR;
1895 }
Al Virof52e0c12011-03-14 18:56:51 -04001896 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001897
Al Viro2903ff02012-08-28 12:52:22 -04001898 nd->path = f.file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001899 if (flags & LOOKUP_RCU) {
Linus Torvalds9c225f22014-03-03 09:36:58 -08001900 if (f.flags & FDPUT_FPUT)
Al Viro2903ff02012-08-28 12:52:22 -04001901 *fp = f.file;
Al Viroe41f7d42011-02-22 14:02:58 -05001902 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro8b61e742013-11-08 12:45:01 -05001903 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05001904 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001905 path_get(&nd->path);
1906 fdput(f);
Al Viroe41f7d42011-02-22 14:02:58 -05001907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
Al Viroe41f7d42011-02-22 14:02:58 -05001909
Nick Piggin31e6b012011-01-07 17:49:52 +11001910 nd->inode = nd->path.dentry->d_inode;
Al Viro4023bfc2014-09-13 21:59:43 -04001911 if (!(flags & LOOKUP_RCU))
1912 return 0;
1913 if (likely(!read_seqcount_retry(&nd->path.dentry->d_seq, nd->seq)))
1914 return 0;
1915 if (!(nd->flags & LOOKUP_ROOT))
1916 nd->root.mnt = NULL;
1917 rcu_read_unlock();
1918 return -ECHILD;
Al Viro9b4a9b12009-04-07 11:44:16 -04001919}
1920
Al Virobd92d7f2011-03-14 19:54:59 -04001921static inline int lookup_last(struct nameidata *nd, struct path *path)
1922{
1923 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1924 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1925
1926 nd->flags &= ~LOOKUP_PARENT;
Al Viro21b9b072013-01-24 18:10:25 -05001927 return walk_component(nd, path, nd->flags & LOOKUP_FOLLOW);
Al Virobd92d7f2011-03-14 19:54:59 -04001928}
1929
Al Viro9b4a9b12009-04-07 11:44:16 -04001930/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001931static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001932 unsigned int flags, struct nameidata *nd)
1933{
Al Viro70e9b352011-03-05 21:12:22 -05001934 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001935 struct path path;
1936 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001937
1938 /*
1939 * Path walking is largely split up into 2 different synchronisation
1940 * schemes, rcu-walk and ref-walk (explained in
1941 * Documentation/filesystems/path-lookup.txt). These share much of the
1942 * path walk code, but some things particularly setup, cleanup, and
1943 * following mounts are sufficiently divergent that functions are
1944 * duplicated. Typically there is a function foo(), and its RCU
1945 * analogue, foo_rcu().
1946 *
1947 * -ECHILD is the error number of choice (just to avoid clashes) that
1948 * is returned if some aspect of an rcu-walk fails. Such an error must
1949 * be handled by restarting a traditional ref-walk (which will always
1950 * be able to complete).
1951 */
Al Virobd92d7f2011-03-14 19:54:59 -04001952 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001953
Al Virobd92d7f2011-03-14 19:54:59 -04001954 if (unlikely(err))
1955 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001956
1957 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001958 err = link_path_walk(name, nd);
1959
1960 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001961 err = lookup_last(nd, &path);
1962 while (err > 0) {
1963 void *cookie;
1964 struct path link = path;
Kees Cook800179c2012-07-25 17:29:07 -07001965 err = may_follow_link(&link, nd);
1966 if (unlikely(err))
1967 break;
Al Virobd92d7f2011-03-14 19:54:59 -04001968 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001969 err = follow_link(&link, nd, &cookie);
Al Viro6d7b5aa2012-06-10 04:15:17 -04001970 if (err)
1971 break;
1972 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001973 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001974 }
1975 }
Al Viroee0827c2011-02-21 23:38:09 -05001976
Al Viro9f1fafe2011-03-25 11:00:12 -04001977 if (!err)
1978 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001979
1980 if (!err && nd->flags & LOOKUP_DIRECTORY) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02001981 if (!d_can_lookup(nd->path.dentry)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001982 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001983 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001984 }
1985 }
Al Viro16c2cd72011-02-22 15:50:10 -05001986
Al Viro70e9b352011-03-05 21:12:22 -05001987 if (base)
1988 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001989
Al Viro5b6ca022011-03-09 23:04:47 -05001990 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001991 path_put(&nd->root);
1992 nd->root.mnt = NULL;
1993 }
Al Virobd92d7f2011-03-14 19:54:59 -04001994 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001995}
Nick Piggin31e6b012011-01-07 17:49:52 +11001996
Jeff Layton873f1ee2012-10-10 15:25:29 -04001997static int filename_lookup(int dfd, struct filename *name,
1998 unsigned int flags, struct nameidata *nd)
1999{
2000 int retval = path_lookupat(dfd, name->name, flags | LOOKUP_RCU, nd);
2001 if (unlikely(retval == -ECHILD))
2002 retval = path_lookupat(dfd, name->name, flags, nd);
2003 if (unlikely(retval == -ESTALE))
2004 retval = path_lookupat(dfd, name->name,
2005 flags | LOOKUP_REVAL, nd);
2006
2007 if (likely(!retval))
Jeff Laytonadb5c242012-10-10 16:43:13 -04002008 audit_inode(name, nd->path.dentry, flags & LOOKUP_PARENT);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002009 return retval;
2010}
2011
Al Viroee0827c2011-02-21 23:38:09 -05002012static int do_path_lookup(int dfd, const char *name,
2013 unsigned int flags, struct nameidata *nd)
2014{
Jeff Layton873f1ee2012-10-10 15:25:29 -04002015 struct filename filename = { .name = name };
Nick Piggin31e6b012011-01-07 17:49:52 +11002016
Jeff Layton873f1ee2012-10-10 15:25:29 -04002017 return filename_lookup(dfd, &filename, flags, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018}
2019
Al Viro79714f72012-06-15 03:01:42 +04002020/* does lookup, returns the object with parent locked */
2021struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002022{
Al Viro79714f72012-06-15 03:01:42 +04002023 struct nameidata nd;
2024 struct dentry *d;
2025 int err = do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, &nd);
2026 if (err)
2027 return ERR_PTR(err);
2028 if (nd.last_type != LAST_NORM) {
2029 path_put(&nd.path);
2030 return ERR_PTR(-EINVAL);
2031 }
2032 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Al Viro1e0ea002012-07-22 23:46:21 +04002033 d = __lookup_hash(&nd.last, nd.path.dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04002034 if (IS_ERR(d)) {
2035 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2036 path_put(&nd.path);
2037 return d;
2038 }
2039 *path = nd.path;
2040 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002041}
2042
Al Virod1811462008-08-02 00:49:18 -04002043int kern_path(const char *name, unsigned int flags, struct path *path)
2044{
2045 struct nameidata nd;
2046 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
2047 if (!res)
2048 *path = nd.path;
2049 return res;
2050}
Al Viro4d359502014-03-14 12:20:17 -04002051EXPORT_SYMBOL(kern_path);
Al Virod1811462008-08-02 00:49:18 -04002052
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002053/**
2054 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2055 * @dentry: pointer to dentry of the base directory
2056 * @mnt: pointer to vfs mount of the base directory
2057 * @name: pointer to file name
2058 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002059 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002060 */
2061int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2062 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002063 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002064{
Al Viroe0a01242011-06-27 17:00:37 -04002065 struct nameidata nd;
2066 int err;
2067 nd.root.dentry = dentry;
2068 nd.root.mnt = mnt;
2069 BUG_ON(flags & LOOKUP_PARENT);
Al Viro5b6ca022011-03-09 23:04:47 -05002070 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
Al Viroe0a01242011-06-27 17:00:37 -04002071 err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
2072 if (!err)
2073 *path = nd.path;
2074 return err;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002075}
Al Viro4d359502014-03-14 12:20:17 -04002076EXPORT_SYMBOL(vfs_path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002077
James Morris057f6c02007-04-26 00:12:05 -07002078/*
2079 * Restricted form of lookup. Doesn't follow links, single-component only,
2080 * needs parent already locked. Doesn't follow mounts.
2081 * SMP-safe.
2082 */
Adrian Bunka244e162006-03-31 02:32:11 -08002083static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
Al Viro72bd8662012-06-10 17:17:17 -04002085 return __lookup_hash(&nd->last, nd->path.dentry, nd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086}
2087
Christoph Hellwigeead1912007-10-16 23:25:38 -07002088/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002089 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002090 * @name: pathname component to lookup
2091 * @base: base directory to lookup from
2092 * @len: maximum length @len should be interpreted to
2093 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002094 * Note that this routine is purely a helper for filesystem usage and should
2095 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07002096 * nameidata argument is passed to the filesystem methods and a filesystem
2097 * using this helper needs to be prepared for that.
2098 */
James Morris057f6c02007-04-26 00:12:05 -07002099struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2100{
James Morris057f6c02007-04-26 00:12:05 -07002101 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05002102 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002103 int err;
James Morris057f6c02007-04-26 00:12:05 -07002104
David Woodhouse2f9092e2009-04-20 23:18:37 +01002105 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
2106
Al Viro6a96ba52011-03-07 23:49:20 -05002107 this.name = name;
2108 this.len = len;
Linus Torvalds0145acc2012-03-02 14:32:59 -08002109 this.hash = full_name_hash(name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05002110 if (!len)
2111 return ERR_PTR(-EACCES);
2112
Al Viro21d8a152012-11-29 22:17:21 -05002113 if (unlikely(name[0] == '.')) {
2114 if (len < 2 || (len == 2 && name[1] == '.'))
2115 return ERR_PTR(-EACCES);
2116 }
2117
Al Viro6a96ba52011-03-07 23:49:20 -05002118 while (len--) {
2119 c = *(const unsigned char *)name++;
2120 if (c == '/' || c == '\0')
2121 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05002122 }
Al Viro5a202bc2011-03-08 14:17:44 -05002123 /*
2124 * See if the low-level filesystem might want
2125 * to use its own hash..
2126 */
2127 if (base->d_flags & DCACHE_OP_HASH) {
Linus Torvaldsda53be12013-05-21 15:22:44 -07002128 int err = base->d_op->d_hash(base, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002129 if (err < 0)
2130 return ERR_PTR(err);
2131 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07002132
Miklos Szeredicda309d2012-03-26 12:54:21 +02002133 err = inode_permission(base->d_inode, MAY_EXEC);
2134 if (err)
2135 return ERR_PTR(err);
2136
Al Viro72bd8662012-06-10 17:17:17 -04002137 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002138}
Al Viro4d359502014-03-14 12:20:17 -04002139EXPORT_SYMBOL(lookup_one_len);
James Morris057f6c02007-04-26 00:12:05 -07002140
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002141int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2142 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143{
Al Viro2d8f3032008-07-22 09:59:21 -04002144 struct nameidata nd;
Jeff Layton91a27b22012-10-10 15:25:28 -04002145 struct filename *tmp = getname_flags(name, flags, empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04002148
2149 BUG_ON(flags & LOOKUP_PARENT);
2150
Jeff Layton873f1ee2012-10-10 15:25:29 -04002151 err = filename_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04002153 if (!err)
2154 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 }
2156 return err;
2157}
2158
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002159int user_path_at(int dfd, const char __user *name, unsigned flags,
2160 struct path *path)
2161{
Linus Torvaldsf7493e52012-03-22 16:10:40 -07002162 return user_path_at_empty(dfd, name, flags, path, NULL);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002163}
Al Viro4d359502014-03-14 12:20:17 -04002164EXPORT_SYMBOL(user_path_at);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002165
Jeff Layton873f1ee2012-10-10 15:25:29 -04002166/*
2167 * NB: most callers don't do anything directly with the reference to the
2168 * to struct filename, but the nd->last pointer points into the name string
2169 * allocated by getname. So we must hold the reference to it until all
2170 * path-walking is complete.
2171 */
Jeff Layton91a27b22012-10-10 15:25:28 -04002172static struct filename *
Jeff Layton9e790bd2012-12-11 12:10:09 -05002173user_path_parent(int dfd, const char __user *path, struct nameidata *nd,
2174 unsigned int flags)
Al Viro2ad94ae2008-07-21 09:32:51 -04002175{
Jeff Layton91a27b22012-10-10 15:25:28 -04002176 struct filename *s = getname(path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002177 int error;
2178
Jeff Layton9e790bd2012-12-11 12:10:09 -05002179 /* only LOOKUP_REVAL is allowed in extra flags */
2180 flags &= LOOKUP_REVAL;
2181
Al Viro2ad94ae2008-07-21 09:32:51 -04002182 if (IS_ERR(s))
Jeff Layton91a27b22012-10-10 15:25:28 -04002183 return s;
Al Viro2ad94ae2008-07-21 09:32:51 -04002184
Jeff Layton9e790bd2012-12-11 12:10:09 -05002185 error = filename_lookup(dfd, s, flags | LOOKUP_PARENT, nd);
Jeff Layton91a27b22012-10-10 15:25:28 -04002186 if (error) {
Al Viro2ad94ae2008-07-21 09:32:51 -04002187 putname(s);
Jeff Layton91a27b22012-10-10 15:25:28 -04002188 return ERR_PTR(error);
2189 }
Al Viro2ad94ae2008-07-21 09:32:51 -04002190
Jeff Layton91a27b22012-10-10 15:25:28 -04002191 return s;
Al Viro2ad94ae2008-07-21 09:32:51 -04002192}
2193
Jeff Layton80334262013-07-26 06:23:25 -04002194/**
Al Viro197df042013-09-08 14:03:27 -04002195 * mountpoint_last - look up last component for umount
Jeff Layton80334262013-07-26 06:23:25 -04002196 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2197 * @path: pointer to container for result
2198 *
2199 * This is a special lookup_last function just for umount. In this case, we
2200 * need to resolve the path without doing any revalidation.
2201 *
2202 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2203 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2204 * in almost all cases, this lookup will be served out of the dcache. The only
2205 * cases where it won't are if nd->last refers to a symlink or the path is
2206 * bogus and it doesn't exist.
2207 *
2208 * Returns:
2209 * -error: if there was an error during lookup. This includes -ENOENT if the
2210 * lookup found a negative dentry. The nd->path reference will also be
2211 * put in this case.
2212 *
2213 * 0: if we successfully resolved nd->path and found it to not to be a
2214 * symlink that needs to be followed. "path" will also be populated.
2215 * The nd->path reference will also be put.
2216 *
2217 * 1: if we successfully resolved nd->last and found it to be a symlink
2218 * that needs to be followed. "path" will be populated with the path
2219 * to the link, and nd->path will *not* be put.
2220 */
2221static int
Al Viro197df042013-09-08 14:03:27 -04002222mountpoint_last(struct nameidata *nd, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002223{
2224 int error = 0;
2225 struct dentry *dentry;
2226 struct dentry *dir = nd->path.dentry;
2227
Al Viro35759522013-09-08 13:41:33 -04002228 /* If we're in rcuwalk, drop out of it to handle last component */
2229 if (nd->flags & LOOKUP_RCU) {
2230 if (unlazy_walk(nd, NULL)) {
2231 error = -ECHILD;
2232 goto out;
2233 }
Jeff Layton80334262013-07-26 06:23:25 -04002234 }
2235
2236 nd->flags &= ~LOOKUP_PARENT;
2237
2238 if (unlikely(nd->last_type != LAST_NORM)) {
2239 error = handle_dots(nd, nd->last_type);
Al Viro35759522013-09-08 13:41:33 -04002240 if (error)
2241 goto out;
2242 dentry = dget(nd->path.dentry);
2243 goto done;
Jeff Layton80334262013-07-26 06:23:25 -04002244 }
2245
2246 mutex_lock(&dir->d_inode->i_mutex);
2247 dentry = d_lookup(dir, &nd->last);
2248 if (!dentry) {
2249 /*
2250 * No cached dentry. Mounted dentries are pinned in the cache,
2251 * so that means that this dentry is probably a symlink or the
2252 * path doesn't actually point to a mounted dentry.
2253 */
2254 dentry = d_alloc(dir, &nd->last);
2255 if (!dentry) {
2256 error = -ENOMEM;
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002257 mutex_unlock(&dir->d_inode->i_mutex);
Al Viro35759522013-09-08 13:41:33 -04002258 goto out;
Jeff Layton80334262013-07-26 06:23:25 -04002259 }
Al Viro35759522013-09-08 13:41:33 -04002260 dentry = lookup_real(dir->d_inode, dentry, nd->flags);
2261 error = PTR_ERR(dentry);
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002262 if (IS_ERR(dentry)) {
2263 mutex_unlock(&dir->d_inode->i_mutex);
Al Viro35759522013-09-08 13:41:33 -04002264 goto out;
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002265 }
Jeff Layton80334262013-07-26 06:23:25 -04002266 }
2267 mutex_unlock(&dir->d_inode->i_mutex);
2268
Al Viro35759522013-09-08 13:41:33 -04002269done:
Al Viro22213312014-04-19 12:30:58 -04002270 if (!dentry->d_inode || d_is_negative(dentry)) {
Al Viro35759522013-09-08 13:41:33 -04002271 error = -ENOENT;
2272 dput(dentry);
2273 goto out;
Jeff Layton80334262013-07-26 06:23:25 -04002274 }
Al Viro35759522013-09-08 13:41:33 -04002275 path->dentry = dentry;
Vasily Averin295dc392014-07-21 12:30:23 +04002276 path->mnt = nd->path.mnt;
David Howellsb18825a2013-09-12 19:22:53 +01002277 if (should_follow_link(dentry, nd->flags & LOOKUP_FOLLOW))
Al Viro35759522013-09-08 13:41:33 -04002278 return 1;
Vasily Averin295dc392014-07-21 12:30:23 +04002279 mntget(path->mnt);
Al Viro35759522013-09-08 13:41:33 -04002280 follow_mount(path);
2281 error = 0;
2282out:
Jeff Layton80334262013-07-26 06:23:25 -04002283 terminate_walk(nd);
2284 return error;
2285}
2286
2287/**
Al Viro197df042013-09-08 14:03:27 -04002288 * path_mountpoint - look up a path to be umounted
Jeff Layton80334262013-07-26 06:23:25 -04002289 * @dfd: directory file descriptor to start walk from
2290 * @name: full pathname to walk
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002291 * @path: pointer to container for result
Jeff Layton80334262013-07-26 06:23:25 -04002292 * @flags: lookup flags
Jeff Layton80334262013-07-26 06:23:25 -04002293 *
2294 * Look up the given name, but don't attempt to revalidate the last component.
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002295 * Returns 0 and "path" will be valid on success; Returns error otherwise.
Jeff Layton80334262013-07-26 06:23:25 -04002296 */
2297static int
Al Viro197df042013-09-08 14:03:27 -04002298path_mountpoint(int dfd, const char *name, struct path *path, unsigned int flags)
Jeff Layton80334262013-07-26 06:23:25 -04002299{
2300 struct file *base = NULL;
2301 struct nameidata nd;
2302 int err;
2303
2304 err = path_init(dfd, name, flags | LOOKUP_PARENT, &nd, &base);
2305 if (unlikely(err))
2306 return err;
2307
2308 current->total_link_count = 0;
2309 err = link_path_walk(name, &nd);
2310 if (err)
2311 goto out;
2312
Al Viro197df042013-09-08 14:03:27 -04002313 err = mountpoint_last(&nd, path);
Jeff Layton80334262013-07-26 06:23:25 -04002314 while (err > 0) {
2315 void *cookie;
2316 struct path link = *path;
2317 err = may_follow_link(&link, &nd);
2318 if (unlikely(err))
2319 break;
2320 nd.flags |= LOOKUP_PARENT;
2321 err = follow_link(&link, &nd, &cookie);
2322 if (err)
2323 break;
Al Viro197df042013-09-08 14:03:27 -04002324 err = mountpoint_last(&nd, path);
Jeff Layton80334262013-07-26 06:23:25 -04002325 put_link(&nd, &link, cookie);
2326 }
2327out:
2328 if (base)
2329 fput(base);
2330
2331 if (nd.root.mnt && !(nd.flags & LOOKUP_ROOT))
2332 path_put(&nd.root);
2333
2334 return err;
2335}
2336
Al Viro2d864652013-09-08 20:18:44 -04002337static int
2338filename_mountpoint(int dfd, struct filename *s, struct path *path,
2339 unsigned int flags)
2340{
2341 int error = path_mountpoint(dfd, s->name, path, flags | LOOKUP_RCU);
2342 if (unlikely(error == -ECHILD))
2343 error = path_mountpoint(dfd, s->name, path, flags);
2344 if (unlikely(error == -ESTALE))
2345 error = path_mountpoint(dfd, s->name, path, flags | LOOKUP_REVAL);
2346 if (likely(!error))
2347 audit_inode(s, path->dentry, 0);
2348 return error;
2349}
2350
Jeff Layton80334262013-07-26 06:23:25 -04002351/**
Al Viro197df042013-09-08 14:03:27 -04002352 * user_path_mountpoint_at - lookup a path from userland in order to umount it
Jeff Layton80334262013-07-26 06:23:25 -04002353 * @dfd: directory file descriptor
2354 * @name: pathname from userland
2355 * @flags: lookup flags
2356 * @path: pointer to container to hold result
2357 *
2358 * A umount is a special case for path walking. We're not actually interested
2359 * in the inode in this situation, and ESTALE errors can be a problem. We
2360 * simply want track down the dentry and vfsmount attached at the mountpoint
2361 * and avoid revalidating the last component.
2362 *
2363 * Returns 0 and populates "path" on success.
2364 */
2365int
Al Viro197df042013-09-08 14:03:27 -04002366user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
Jeff Layton80334262013-07-26 06:23:25 -04002367 struct path *path)
2368{
2369 struct filename *s = getname(name);
2370 int error;
Jeff Layton80334262013-07-26 06:23:25 -04002371 if (IS_ERR(s))
2372 return PTR_ERR(s);
Al Viro2d864652013-09-08 20:18:44 -04002373 error = filename_mountpoint(dfd, s, path, flags);
Jeff Layton80334262013-07-26 06:23:25 -04002374 putname(s);
2375 return error;
2376}
2377
Al Viro2d864652013-09-08 20:18:44 -04002378int
2379kern_path_mountpoint(int dfd, const char *name, struct path *path,
2380 unsigned int flags)
2381{
2382 struct filename s = {.name = name};
2383 return filename_mountpoint(dfd, &s, path, flags);
2384}
2385EXPORT_SYMBOL(kern_path_mountpoint);
2386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387/*
2388 * It's inline, so penalty for filesystems that don't use sticky bit is
2389 * minimal.
2390 */
2391static inline int check_sticky(struct inode *dir, struct inode *inode)
2392{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002393 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002394
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 if (!(dir->i_mode & S_ISVTX))
2396 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002397 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002399 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 return 0;
Andy Lutomirski23adbe12014-06-10 12:45:42 -07002401 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402}
2403
2404/*
2405 * Check whether we can remove a link victim from directory dir, check
2406 * whether the type of victim is right.
2407 * 1. We can't do it if dir is read-only (done in permission())
2408 * 2. We should have write and exec permissions on dir
2409 * 3. We can't remove anything from append-only dir
2410 * 4. We can't do anything with immutable dir (done in permission())
2411 * 5. If the sticky bit on dir is set we should either
2412 * a. be owner of dir, or
2413 * b. be owner of victim, or
2414 * c. have CAP_FOWNER capability
2415 * 6. If the victim is append-only or immutable we can't do antyhing with
2416 * links pointing to it.
2417 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2418 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2419 * 9. We can't remove a root or mountpoint.
2420 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2421 * nfs_async_unlink().
2422 */
David Howellsb18825a2013-09-12 19:22:53 +01002423static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424{
David Howellsb18825a2013-09-12 19:22:53 +01002425 struct inode *inode = victim->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 int error;
2427
David Howellsb18825a2013-09-12 19:22:53 +01002428 if (d_is_negative(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 return -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01002430 BUG_ON(!inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
2432 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002433 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
Al Virof419a2e2008-07-22 00:07:17 -04002435 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 if (error)
2437 return error;
2438 if (IS_APPEND(dir))
2439 return -EPERM;
David Howellsb18825a2013-09-12 19:22:53 +01002440
2441 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
2442 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 return -EPERM;
2444 if (isdir) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002445 if (!d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 return -ENOTDIR;
2447 if (IS_ROOT(victim))
2448 return -EBUSY;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002449 } else if (d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 return -EISDIR;
2451 if (IS_DEADDIR(dir))
2452 return -ENOENT;
2453 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2454 return -EBUSY;
2455 return 0;
2456}
2457
2458/* Check whether we can create an object with dentry child in directory
2459 * dir.
2460 * 1. We can't do it if child already exists (open has special treatment for
2461 * this case, but since we are inlined it's OK)
2462 * 2. We can't do it if dir is read-only (done in permission())
2463 * 3. We should have write and exec permissions on dir
2464 * 4. We can't do it if dir is immutable (done in permission())
2465 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002466static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467{
Jeff Layton14e972b2013-05-08 10:25:58 -04002468 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 if (child->d_inode)
2470 return -EEXIST;
2471 if (IS_DEADDIR(dir))
2472 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04002473 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474}
2475
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476/*
2477 * p1 and p2 should be directories on the same fs.
2478 */
2479struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2480{
2481 struct dentry *p;
2482
2483 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07002484 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 return NULL;
2486 }
2487
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002488 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002490 p = d_ancestor(p2, p1);
2491 if (p) {
2492 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2493 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2494 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 }
2496
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002497 p = d_ancestor(p1, p2);
2498 if (p) {
2499 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2500 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2501 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 }
2503
Ingo Molnarf2eace22006-07-03 00:25:05 -07002504 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2505 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 return NULL;
2507}
Al Viro4d359502014-03-14 12:20:17 -04002508EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
2510void unlock_rename(struct dentry *p1, struct dentry *p2)
2511{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002512 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002514 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002515 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 }
2517}
Al Viro4d359502014-03-14 12:20:17 -04002518EXPORT_SYMBOL(unlock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
Al Viro4acdaf22011-07-26 01:42:34 -04002520int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002521 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002523 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 if (error)
2525 return error;
2526
Al Viroacfa4382008-12-04 10:06:33 -05002527 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 return -EACCES; /* shouldn't it be ENOSYS? */
2529 mode &= S_IALLUGO;
2530 mode |= S_IFREG;
2531 error = security_inode_create(dir, dentry, mode);
2532 if (error)
2533 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002534 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002535 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002536 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 return error;
2538}
Al Viro4d359502014-03-14 12:20:17 -04002539EXPORT_SYMBOL(vfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
Al Viro73d049a2011-03-11 12:08:24 -05002541static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002543 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 struct inode *inode = dentry->d_inode;
2545 int error;
2546
Al Virobcda7652011-03-13 16:42:14 -04002547 /* O_PATH? */
2548 if (!acc_mode)
2549 return 0;
2550
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 if (!inode)
2552 return -ENOENT;
2553
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002554 switch (inode->i_mode & S_IFMT) {
2555 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002557 case S_IFDIR:
2558 if (acc_mode & MAY_WRITE)
2559 return -EISDIR;
2560 break;
2561 case S_IFBLK:
2562 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002563 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002565 /*FALLTHRU*/
2566 case S_IFIFO:
2567 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002569 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002570 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002571
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002572 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002573 if (error)
2574 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002575
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 /*
2577 * An append-only file must be opened in append mode for writing.
2578 */
2579 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002580 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002581 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002583 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 }
2585
2586 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002587 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002588 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002590 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002591}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
Jeff Laytone1181ee2010-12-07 16:19:50 -05002593static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002594{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002595 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002596 struct inode *inode = path->dentry->d_inode;
2597 int error = get_write_access(inode);
2598 if (error)
2599 return error;
2600 /*
2601 * Refuse to truncate files with mandatory locks held on them.
2602 */
Jeff Laytond7a06982014-03-10 09:54:15 -04002603 error = locks_verify_locked(filp);
Al Viro7715b522009-12-16 03:54:00 -05002604 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002605 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002606 if (!error) {
2607 error = do_truncate(path->dentry, 0,
2608 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002609 filp);
Al Viro7715b522009-12-16 03:54:00 -05002610 }
2611 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002612 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613}
2614
Dave Hansend57999e2008-02-15 14:37:27 -08002615static inline int open_to_namei_flags(int flag)
2616{
Al Viro8a5e9292011-06-25 19:15:54 -04002617 if ((flag & O_ACCMODE) == 3)
2618 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002619 return flag;
2620}
2621
Miklos Szeredid18e9002012-06-05 15:10:17 +02002622static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2623{
2624 int error = security_path_mknod(dir, dentry, mode, 0);
2625 if (error)
2626 return error;
2627
2628 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2629 if (error)
2630 return error;
2631
2632 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2633}
2634
David Howells1acf0af2012-06-14 16:13:46 +01002635/*
2636 * Attempt to atomically look up, create and open a file from a negative
2637 * dentry.
2638 *
2639 * Returns 0 if successful. The file will have been created and attached to
2640 * @file by the filesystem calling finish_open().
2641 *
2642 * Returns 1 if the file was looked up only or didn't need creating. The
2643 * caller will need to perform the open themselves. @path will have been
2644 * updated to point to the new dentry. This may be negative.
2645 *
2646 * Returns an error code otherwise.
2647 */
Al Viro2675a4e2012-06-22 12:41:10 +04002648static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2649 struct path *path, struct file *file,
2650 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04002651 bool got_write, bool need_lookup,
Al Viro2675a4e2012-06-22 12:41:10 +04002652 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002653{
2654 struct inode *dir = nd->path.dentry->d_inode;
2655 unsigned open_flag = open_to_namei_flags(op->open_flag);
2656 umode_t mode;
2657 int error;
2658 int acc_mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002659 int create_error = 0;
2660 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
Miklos Szeredi116cc022013-09-16 14:52:05 +02002661 bool excl;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002662
2663 BUG_ON(dentry->d_inode);
2664
2665 /* Don't create child dentry for a dead directory. */
2666 if (unlikely(IS_DEADDIR(dir))) {
Al Viro2675a4e2012-06-22 12:41:10 +04002667 error = -ENOENT;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002668 goto out;
2669 }
2670
Miklos Szeredi62b259d2012-08-15 13:01:24 +02002671 mode = op->mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002672 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2673 mode &= ~current_umask();
2674
Miklos Szeredi116cc022013-09-16 14:52:05 +02002675 excl = (open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT);
2676 if (excl)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002677 open_flag &= ~O_TRUNC;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002678
2679 /*
2680 * Checking write permission is tricky, bacuse we don't know if we are
2681 * going to actually need it: O_CREAT opens should work as long as the
2682 * file exists. But checking existence breaks atomicity. The trick is
2683 * to check access and if not granted clear O_CREAT from the flags.
2684 *
2685 * Another problem is returing the "right" error value (e.g. for an
2686 * O_EXCL open we want to return EEXIST not EROFS).
2687 */
Al Viro64894cf2012-07-31 00:53:35 +04002688 if (((open_flag & (O_CREAT | O_TRUNC)) ||
2689 (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2690 if (!(open_flag & O_CREAT)) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002691 /*
2692 * No O_CREATE -> atomicity not a requirement -> fall
2693 * back to lookup + open
2694 */
2695 goto no_open;
2696 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2697 /* Fall back and fail with the right error */
Al Viro64894cf2012-07-31 00:53:35 +04002698 create_error = -EROFS;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002699 goto no_open;
2700 } else {
2701 /* No side effects, safe to clear O_CREAT */
Al Viro64894cf2012-07-31 00:53:35 +04002702 create_error = -EROFS;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002703 open_flag &= ~O_CREAT;
2704 }
2705 }
2706
2707 if (open_flag & O_CREAT) {
Miklos Szeredi38227f72012-08-15 13:01:24 +02002708 error = may_o_create(&nd->path, dentry, mode);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002709 if (error) {
2710 create_error = error;
2711 if (open_flag & O_EXCL)
2712 goto no_open;
2713 open_flag &= ~O_CREAT;
2714 }
2715 }
2716
2717 if (nd->flags & LOOKUP_DIRECTORY)
2718 open_flag |= O_DIRECTORY;
2719
Al Viro30d90492012-06-22 12:40:19 +04002720 file->f_path.dentry = DENTRY_NOT_SET;
2721 file->f_path.mnt = nd->path.mnt;
2722 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
Al Viro47237682012-06-10 05:01:45 -04002723 opened);
Al Virod9585272012-06-22 12:39:14 +04002724 if (error < 0) {
Al Virod9585272012-06-22 12:39:14 +04002725 if (create_error && error == -ENOENT)
2726 error = create_error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002727 goto out;
2728 }
2729
Al Virod9585272012-06-22 12:39:14 +04002730 if (error) { /* returned 1, that is */
Al Viro30d90492012-06-22 12:40:19 +04002731 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04002732 error = -EIO;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002733 goto out;
2734 }
Al Viro30d90492012-06-22 12:40:19 +04002735 if (file->f_path.dentry) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002736 dput(dentry);
Al Viro30d90492012-06-22 12:40:19 +04002737 dentry = file->f_path.dentry;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002738 }
Al Viro03da6332013-09-16 19:22:33 -04002739 if (*opened & FILE_CREATED)
2740 fsnotify_create(dir, dentry);
2741 if (!dentry->d_inode) {
2742 WARN_ON(*opened & FILE_CREATED);
2743 if (create_error) {
2744 error = create_error;
2745 goto out;
2746 }
2747 } else {
2748 if (excl && !(*opened & FILE_CREATED)) {
2749 error = -EEXIST;
2750 goto out;
2751 }
Sage Weil62b2ce92012-08-15 13:30:12 -07002752 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02002753 goto looked_up;
2754 }
2755
2756 /*
2757 * We didn't have the inode before the open, so check open permission
2758 * here.
2759 */
Al Viro03da6332013-09-16 19:22:33 -04002760 acc_mode = op->acc_mode;
2761 if (*opened & FILE_CREATED) {
2762 WARN_ON(!(open_flag & O_CREAT));
2763 fsnotify_create(dir, dentry);
2764 acc_mode = MAY_OPEN;
2765 }
Al Viro2675a4e2012-06-22 12:41:10 +04002766 error = may_open(&file->f_path, acc_mode, open_flag);
2767 if (error)
2768 fput(file);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002769
2770out:
2771 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04002772 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002773
Miklos Szeredid18e9002012-06-05 15:10:17 +02002774no_open:
2775 if (need_lookup) {
Al Viro72bd8662012-06-10 17:17:17 -04002776 dentry = lookup_real(dir, dentry, nd->flags);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002777 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002778 return PTR_ERR(dentry);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002779
2780 if (create_error) {
2781 int open_flag = op->open_flag;
2782
Al Viro2675a4e2012-06-22 12:41:10 +04002783 error = create_error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002784 if ((open_flag & O_EXCL)) {
2785 if (!dentry->d_inode)
2786 goto out;
2787 } else if (!dentry->d_inode) {
2788 goto out;
2789 } else if ((open_flag & O_TRUNC) &&
2790 S_ISREG(dentry->d_inode->i_mode)) {
2791 goto out;
2792 }
2793 /* will fail later, go on to get the right error */
2794 }
2795 }
2796looked_up:
2797 path->dentry = dentry;
2798 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04002799 return 1;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002800}
2801
Nick Piggin31e6b012011-01-07 17:49:52 +11002802/*
David Howells1acf0af2012-06-14 16:13:46 +01002803 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002804 *
2805 * Must be called with i_mutex held on parent.
2806 *
David Howells1acf0af2012-06-14 16:13:46 +01002807 * Returns 0 if the file was successfully atomically created (if necessary) and
2808 * opened. In this case the file will be returned attached to @file.
2809 *
2810 * Returns 1 if the file was not completely opened at this time, though lookups
2811 * and creations will have been performed and the dentry returned in @path will
2812 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
2813 * specified then a negative dentry may be returned.
2814 *
2815 * An error code is returned otherwise.
2816 *
2817 * FILE_CREATE will be set in @*opened if the dentry was created and will be
2818 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002819 */
Al Viro2675a4e2012-06-22 12:41:10 +04002820static int lookup_open(struct nameidata *nd, struct path *path,
2821 struct file *file,
2822 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04002823 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002824{
2825 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002826 struct inode *dir_inode = dir->d_inode;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002827 struct dentry *dentry;
2828 int error;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002829 bool need_lookup;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002830
Al Viro47237682012-06-10 05:01:45 -04002831 *opened &= ~FILE_CREATED;
Al Viro201f9562012-06-22 12:42:10 +04002832 dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002833 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002834 return PTR_ERR(dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002835
Miklos Szeredid18e9002012-06-05 15:10:17 +02002836 /* Cached positive dentry: will open in f_op->open */
2837 if (!need_lookup && dentry->d_inode)
2838 goto out_no_open;
2839
2840 if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
Al Viro64894cf2012-07-31 00:53:35 +04002841 return atomic_open(nd, dentry, path, file, op, got_write,
Al Viro47237682012-06-10 05:01:45 -04002842 need_lookup, opened);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002843 }
2844
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002845 if (need_lookup) {
2846 BUG_ON(dentry->d_inode);
2847
Al Viro72bd8662012-06-10 17:17:17 -04002848 dentry = lookup_real(dir_inode, dentry, nd->flags);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002849 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002850 return PTR_ERR(dentry);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002851 }
2852
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002853 /* Negative dentry, just create the file */
2854 if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
2855 umode_t mode = op->mode;
2856 if (!IS_POSIXACL(dir->d_inode))
2857 mode &= ~current_umask();
2858 /*
2859 * This write is needed to ensure that a
2860 * rw->ro transition does not occur between
2861 * the time when the file is created and when
2862 * a permanent write count is taken through
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002863 * the 'struct file' in finish_open().
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002864 */
Al Viro64894cf2012-07-31 00:53:35 +04002865 if (!got_write) {
2866 error = -EROFS;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002867 goto out_dput;
Al Viro64894cf2012-07-31 00:53:35 +04002868 }
Al Viro47237682012-06-10 05:01:45 -04002869 *opened |= FILE_CREATED;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002870 error = security_path_mknod(&nd->path, dentry, mode, 0);
2871 if (error)
2872 goto out_dput;
Al Viro312b63f2012-06-10 18:09:36 -04002873 error = vfs_create(dir->d_inode, dentry, mode,
2874 nd->flags & LOOKUP_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002875 if (error)
2876 goto out_dput;
2877 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02002878out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002879 path->dentry = dentry;
2880 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04002881 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002882
2883out_dput:
2884 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04002885 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002886}
2887
2888/*
Al Virofe2d35f2011-03-05 22:58:25 -05002889 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002890 */
Al Viro2675a4e2012-06-22 12:41:10 +04002891static int do_last(struct nameidata *nd, struct path *path,
2892 struct file *file, const struct open_flags *op,
Jeff Layton669abf42012-10-10 16:43:10 -04002893 int *opened, struct filename *name)
Al Virofb1cc552009-12-24 01:58:28 -05002894{
Al Viroa1e28032009-12-24 02:12:06 -05002895 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05002896 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002897 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04002898 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04002899 int acc_mode = op->acc_mode;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002900 struct inode *inode;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002901 bool symlink_ok = false;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002902 struct path save_parent = { .dentry = NULL, .mnt = NULL };
2903 bool retried = false;
Al Viro16c2cd72011-02-22 15:50:10 -05002904 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002905
Al Viroc3e380b2011-02-23 13:39:45 -05002906 nd->flags &= ~LOOKUP_PARENT;
2907 nd->flags |= op->intent;
2908
Al Virobc77daa2013-06-06 09:12:33 -04002909 if (nd->last_type != LAST_NORM) {
Al Virofe2d35f2011-03-05 22:58:25 -05002910 error = handle_dots(nd, nd->last_type);
2911 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002912 return error;
Miklos Szeredie83db162012-06-05 15:10:29 +02002913 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05002914 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002915
Al Viroca344a892011-03-09 00:36:45 -05002916 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05002917 if (nd->last.name[nd->last.len])
2918 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002919 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002920 symlink_ok = true;
Al Virofe2d35f2011-03-05 22:58:25 -05002921 /* we _can_ be in RCU mode here */
Al Viroe97cdc82013-01-24 18:16:00 -05002922 error = lookup_fast(nd, path, &inode);
Miklos Szeredi71574862012-06-05 15:10:14 +02002923 if (likely(!error))
2924 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002925
Miklos Szeredi71574862012-06-05 15:10:14 +02002926 if (error < 0)
Al Viro2675a4e2012-06-22 12:41:10 +04002927 goto out;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02002928
Miklos Szeredi71574862012-06-05 15:10:14 +02002929 BUG_ON(nd->inode != dir->d_inode);
Miklos Szeredib6183df2012-06-05 15:10:13 +02002930 } else {
2931 /* create side of things */
2932 /*
2933 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
2934 * has been cleared when we got to the last component we are
2935 * about to look up
2936 */
2937 error = complete_walk(nd);
2938 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002939 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02002940
Jeff Layton33e22082013-04-12 15:16:32 -04002941 audit_inode(name, dir, LOOKUP_PARENT);
Miklos Szeredib6183df2012-06-05 15:10:13 +02002942 error = -EISDIR;
2943 /* trailing slashes? */
2944 if (nd->last.name[nd->last.len])
Al Viro2675a4e2012-06-22 12:41:10 +04002945 goto out;
Al Virofe2d35f2011-03-05 22:58:25 -05002946 }
2947
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002948retry_lookup:
Al Viro64894cf2012-07-31 00:53:35 +04002949 if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
2950 error = mnt_want_write(nd->path.mnt);
2951 if (!error)
2952 got_write = true;
2953 /*
2954 * do _not_ fail yet - we might not need that or fail with
2955 * a different error; let lookup_open() decide; we'll be
2956 * dropping this one anyway.
2957 */
2958 }
Al Viroa1e28032009-12-24 02:12:06 -05002959 mutex_lock(&dir->d_inode->i_mutex);
Al Viro64894cf2012-07-31 00:53:35 +04002960 error = lookup_open(nd, path, file, op, got_write, opened);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002961 mutex_unlock(&dir->d_inode->i_mutex);
Al Viroa1e28032009-12-24 02:12:06 -05002962
Al Viro2675a4e2012-06-22 12:41:10 +04002963 if (error <= 0) {
2964 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002965 goto out;
2966
Al Viro47237682012-06-10 05:01:45 -04002967 if ((*opened & FILE_CREATED) ||
Al Viro496ad9a2013-01-23 17:07:38 -05002968 !S_ISREG(file_inode(file)->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002969 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002970
Jeff Laytonadb5c242012-10-10 16:43:13 -04002971 audit_inode(name, file->f_path.dentry, 0);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002972 goto opened;
2973 }
Al Virofb1cc552009-12-24 01:58:28 -05002974
Al Viro47237682012-06-10 05:01:45 -04002975 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05002976 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002977 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002978 will_truncate = false;
Al Virobcda7652011-03-13 16:42:14 -04002979 acc_mode = MAY_OPEN;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002980 path_to_nameidata(path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02002981 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05002982 }
2983
2984 /*
Jeff Layton3134f372012-07-25 10:19:47 -04002985 * create/update audit record if it already exists.
Al Virofb1cc552009-12-24 01:58:28 -05002986 */
David Howellsb18825a2013-09-12 19:22:53 +01002987 if (d_is_positive(path->dentry))
Jeff Laytonadb5c242012-10-10 16:43:13 -04002988 audit_inode(name, path->dentry, 0);
Al Virofb1cc552009-12-24 01:58:28 -05002989
Miklos Szeredid18e9002012-06-05 15:10:17 +02002990 /*
2991 * If atomic_open() acquired write access it is dropped now due to
2992 * possible mount and symlink following (this might be optimized away if
2993 * necessary...)
2994 */
Al Viro64894cf2012-07-31 00:53:35 +04002995 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002996 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04002997 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002998 }
2999
Al Virofb1cc552009-12-24 01:58:28 -05003000 error = -EEXIST;
Al Virof8310c52012-07-30 11:50:30 +04003001 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))
Al Virofb1cc552009-12-24 01:58:28 -05003002 goto exit_dput;
3003
David Howells9875cf82011-01-14 18:45:21 +00003004 error = follow_managed(path, nd->flags);
3005 if (error < 0)
3006 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05003007
Al Viroa3fbbde2011-11-07 21:21:26 +00003008 if (error)
3009 nd->flags |= LOOKUP_JUMPED;
3010
Miklos Szeredidecf3402012-05-21 17:30:08 +02003011 BUG_ON(nd->flags & LOOKUP_RCU);
3012 inode = path->dentry->d_inode;
Miklos Szeredi5f5daac2012-05-21 17:30:14 +02003013finish_lookup:
3014 /* we _can_ be in RCU mode here */
Al Virofb1cc552009-12-24 01:58:28 -05003015 error = -ENOENT;
Al Viro22213312014-04-19 12:30:58 -04003016 if (!inode || d_is_negative(path->dentry)) {
Miklos Szeredi54c33e72012-05-21 17:30:10 +02003017 path_to_nameidata(path, nd);
Al Viro2675a4e2012-06-22 12:41:10 +04003018 goto out;
Miklos Szeredi54c33e72012-05-21 17:30:10 +02003019 }
Al Viro9e67f362009-12-26 07:04:50 -05003020
David Howellsb18825a2013-09-12 19:22:53 +01003021 if (should_follow_link(path->dentry, !symlink_ok)) {
Miklos Szeredid45ea862012-05-21 17:30:09 +02003022 if (nd->flags & LOOKUP_RCU) {
3023 if (unlikely(unlazy_walk(nd, path->dentry))) {
3024 error = -ECHILD;
Al Viro2675a4e2012-06-22 12:41:10 +04003025 goto out;
Miklos Szeredid45ea862012-05-21 17:30:09 +02003026 }
3027 }
3028 BUG_ON(inode != path->dentry->d_inode);
Al Viro2675a4e2012-06-22 12:41:10 +04003029 return 1;
Miklos Szeredid45ea862012-05-21 17:30:09 +02003030 }
Al Virofb1cc552009-12-24 01:58:28 -05003031
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003032 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path->mnt) {
3033 path_to_nameidata(path, nd);
3034 } else {
3035 save_parent.dentry = nd->path.dentry;
3036 save_parent.mnt = mntget(path->mnt);
3037 nd->path.dentry = path->dentry;
3038
3039 }
Miklos Szeredidecf3402012-05-21 17:30:08 +02003040 nd->inode = inode;
Al Viroa3fbbde2011-11-07 21:21:26 +00003041 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
Al Virobc77daa2013-06-06 09:12:33 -04003042finish_open:
Al Viroa3fbbde2011-11-07 21:21:26 +00003043 error = complete_walk(nd);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003044 if (error) {
3045 path_put(&save_parent);
Al Viro2675a4e2012-06-22 12:41:10 +04003046 return error;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003047 }
Al Virobc77daa2013-06-06 09:12:33 -04003048 audit_inode(name, nd->path.dentry, 0);
Al Virofb1cc552009-12-24 01:58:28 -05003049 error = -EISDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003050 if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003051 goto out;
Miklos Szerediaf2f5542012-05-21 17:30:11 +02003052 error = -ENOTDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003053 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003054 goto out;
Al Viro6c0d46c2011-03-09 00:59:59 -05003055 if (!S_ISREG(nd->inode->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003056 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05003057
Al Viro0f9d1a12011-03-09 00:13:14 -05003058 if (will_truncate) {
3059 error = mnt_want_write(nd->path.mnt);
3060 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003061 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04003062 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05003063 }
Miklos Szeredie83db162012-06-05 15:10:29 +02003064finish_open_created:
Al Virobcda7652011-03-13 16:42:14 -04003065 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05003066 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003067 goto out;
Al Viro30d90492012-06-22 12:40:19 +04003068 file->f_path.mnt = nd->path.mnt;
3069 error = finish_open(file, nd->path.dentry, NULL, opened);
3070 if (error) {
Al Viro30d90492012-06-22 12:40:19 +04003071 if (error == -EOPENSTALE)
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003072 goto stale_open;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003073 goto out;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003074 }
Miklos Szeredia8277b92012-06-05 15:10:32 +02003075opened:
Al Viro2675a4e2012-06-22 12:41:10 +04003076 error = open_check_o_direct(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003077 if (error)
3078 goto exit_fput;
Al Viro2675a4e2012-06-22 12:41:10 +04003079 error = ima_file_check(file, op->acc_mode);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02003080 if (error)
3081 goto exit_fput;
3082
3083 if (will_truncate) {
Al Viro2675a4e2012-06-22 12:41:10 +04003084 error = handle_truncate(file);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02003085 if (error)
3086 goto exit_fput;
Al Viro0f9d1a12011-03-09 00:13:14 -05003087 }
Al Viroca344a892011-03-09 00:36:45 -05003088out:
Al Viro64894cf2012-07-31 00:53:35 +04003089 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05003090 mnt_drop_write(nd->path.mnt);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003091 path_put(&save_parent);
Miklos Szeredie276ae62012-05-21 17:30:06 +02003092 terminate_walk(nd);
Al Viro2675a4e2012-06-22 12:41:10 +04003093 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003094
Al Virofb1cc552009-12-24 01:58:28 -05003095exit_dput:
3096 path_put_conditional(path, nd);
Al Viroca344a892011-03-09 00:36:45 -05003097 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003098exit_fput:
Al Viro2675a4e2012-06-22 12:41:10 +04003099 fput(file);
3100 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003101
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003102stale_open:
3103 /* If no saved parent or already retried then can't retry */
3104 if (!save_parent.dentry || retried)
3105 goto out;
3106
3107 BUG_ON(save_parent.dentry != dir);
3108 path_put(&nd->path);
3109 nd->path = save_parent;
3110 nd->inode = dir->d_inode;
3111 save_parent.mnt = NULL;
3112 save_parent.dentry = NULL;
Al Viro64894cf2012-07-31 00:53:35 +04003113 if (got_write) {
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003114 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003115 got_write = false;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003116 }
3117 retried = true;
3118 goto retry_lookup;
Al Virofb1cc552009-12-24 01:58:28 -05003119}
3120
Al Viro60545d02013-06-07 01:20:27 -04003121static int do_tmpfile(int dfd, struct filename *pathname,
3122 struct nameidata *nd, int flags,
3123 const struct open_flags *op,
3124 struct file *file, int *opened)
3125{
3126 static const struct qstr name = QSTR_INIT("/", 1);
3127 struct dentry *dentry, *child;
3128 struct inode *dir;
3129 int error = path_lookupat(dfd, pathname->name,
3130 flags | LOOKUP_DIRECTORY, nd);
3131 if (unlikely(error))
3132 return error;
3133 error = mnt_want_write(nd->path.mnt);
3134 if (unlikely(error))
3135 goto out;
3136 /* we want directory to be writable */
3137 error = inode_permission(nd->inode, MAY_WRITE | MAY_EXEC);
3138 if (error)
3139 goto out2;
3140 dentry = nd->path.dentry;
3141 dir = dentry->d_inode;
3142 if (!dir->i_op->tmpfile) {
3143 error = -EOPNOTSUPP;
3144 goto out2;
3145 }
3146 child = d_alloc(dentry, &name);
3147 if (unlikely(!child)) {
3148 error = -ENOMEM;
3149 goto out2;
3150 }
3151 nd->flags &= ~LOOKUP_DIRECTORY;
3152 nd->flags |= op->intent;
3153 dput(nd->path.dentry);
3154 nd->path.dentry = child;
3155 error = dir->i_op->tmpfile(dir, nd->path.dentry, op->mode);
3156 if (error)
3157 goto out2;
3158 audit_inode(pathname, nd->path.dentry, 0);
3159 error = may_open(&nd->path, op->acc_mode, op->open_flag);
3160 if (error)
3161 goto out2;
3162 file->f_path.mnt = nd->path.mnt;
3163 error = finish_open(file, nd->path.dentry, NULL, opened);
3164 if (error)
3165 goto out2;
3166 error = open_check_o_direct(file);
Al Virof4e0c302013-06-11 08:34:36 +04003167 if (error) {
Al Viro60545d02013-06-07 01:20:27 -04003168 fput(file);
Al Virof4e0c302013-06-11 08:34:36 +04003169 } else if (!(op->open_flag & O_EXCL)) {
3170 struct inode *inode = file_inode(file);
3171 spin_lock(&inode->i_lock);
3172 inode->i_state |= I_LINKABLE;
3173 spin_unlock(&inode->i_lock);
3174 }
Al Viro60545d02013-06-07 01:20:27 -04003175out2:
3176 mnt_drop_write(nd->path.mnt);
3177out:
3178 path_put(&nd->path);
3179 return error;
3180}
3181
Jeff Layton669abf42012-10-10 16:43:10 -04003182static struct file *path_openat(int dfd, struct filename *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05003183 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184{
Al Virofe2d35f2011-03-05 22:58:25 -05003185 struct file *base = NULL;
Al Viro30d90492012-06-22 12:40:19 +04003186 struct file *file;
Al Viro9850c052010-01-13 15:01:15 -05003187 struct path path;
Al Viro47237682012-06-10 05:01:45 -04003188 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05003189 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11003190
Al Viro30d90492012-06-22 12:40:19 +04003191 file = get_empty_filp();
Al Viro1afc99b2013-02-14 20:41:04 -05003192 if (IS_ERR(file))
3193 return file;
Nick Piggin31e6b012011-01-07 17:49:52 +11003194
Al Viro30d90492012-06-22 12:40:19 +04003195 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11003196
Al Virobb458c62013-07-13 13:26:37 +04003197 if (unlikely(file->f_flags & __O_TMPFILE)) {
Al Viro60545d02013-06-07 01:20:27 -04003198 error = do_tmpfile(dfd, pathname, nd, flags, op, file, &opened);
3199 goto out;
3200 }
3201
Jeff Layton669abf42012-10-10 16:43:10 -04003202 error = path_init(dfd, pathname->name, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11003203 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003204 goto out;
Nick Piggin31e6b012011-01-07 17:49:52 +11003205
Al Virofe2d35f2011-03-05 22:58:25 -05003206 current->total_link_count = 0;
Jeff Layton669abf42012-10-10 16:43:10 -04003207 error = link_path_walk(pathname->name, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11003208 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003209 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210
Al Viro2675a4e2012-06-22 12:41:10 +04003211 error = do_last(nd, &path, file, op, &opened, pathname);
3212 while (unlikely(error > 0)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00003213 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05003214 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04003215 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05003216 path_put_conditional(&path, nd);
3217 path_put(&nd->path);
Al Viro2675a4e2012-06-22 12:41:10 +04003218 error = -ELOOP;
Al Viro40b39132011-03-09 16:22:18 -05003219 break;
3220 }
Kees Cook800179c2012-07-25 17:29:07 -07003221 error = may_follow_link(&link, nd);
3222 if (unlikely(error))
3223 break;
Al Viro73d049a2011-03-11 12:08:24 -05003224 nd->flags |= LOOKUP_PARENT;
3225 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04003226 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05003227 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003228 break;
3229 error = do_last(nd, &path, file, op, &opened, pathname);
Al Viro574197e2011-03-14 22:20:34 -04003230 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05003231 }
Al Viro10fa8e62009-12-26 07:09:49 -05003232out:
Al Viro73d049a2011-03-11 12:08:24 -05003233 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
3234 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05003235 if (base)
3236 fput(base);
Al Viro2675a4e2012-06-22 12:41:10 +04003237 if (!(opened & FILE_OPENED)) {
3238 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04003239 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003240 }
Al Viro2675a4e2012-06-22 12:41:10 +04003241 if (unlikely(error)) {
3242 if (error == -EOPENSTALE) {
3243 if (flags & LOOKUP_RCU)
3244 error = -ECHILD;
3245 else
3246 error = -ESTALE;
3247 }
3248 file = ERR_PTR(error);
3249 }
3250 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251}
3252
Jeff Layton669abf42012-10-10 16:43:10 -04003253struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +04003254 const struct open_flags *op)
Al Viro13aab422011-02-23 17:54:08 -05003255{
Al Viro73d049a2011-03-11 12:08:24 -05003256 struct nameidata nd;
Al Virof9652e12013-06-11 08:23:01 +04003257 int flags = op->lookup_flags;
Al Viro13aab422011-02-23 17:54:08 -05003258 struct file *filp;
3259
Al Viro73d049a2011-03-11 12:08:24 -05003260 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05003261 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05003262 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05003263 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05003264 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05003265 return filp;
3266}
3267
Al Viro73d049a2011-03-11 12:08:24 -05003268struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
Al Virof9652e12013-06-11 08:23:01 +04003269 const char *name, const struct open_flags *op)
Al Viro73d049a2011-03-11 12:08:24 -05003270{
3271 struct nameidata nd;
3272 struct file *file;
Jeff Layton669abf42012-10-10 16:43:10 -04003273 struct filename filename = { .name = name };
Al Virof9652e12013-06-11 08:23:01 +04003274 int flags = op->lookup_flags | LOOKUP_ROOT;
Al Viro73d049a2011-03-11 12:08:24 -05003275
3276 nd.root.mnt = mnt;
3277 nd.root.dentry = dentry;
3278
David Howellsb18825a2013-09-12 19:22:53 +01003279 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05003280 return ERR_PTR(-ELOOP);
3281
Jeff Layton669abf42012-10-10 16:43:10 -04003282 file = path_openat(-1, &filename, &nd, op, flags | LOOKUP_RCU);
Al Viro73d049a2011-03-11 12:08:24 -05003283 if (unlikely(file == ERR_PTR(-ECHILD)))
Jeff Layton669abf42012-10-10 16:43:10 -04003284 file = path_openat(-1, &filename, &nd, op, flags);
Al Viro73d049a2011-03-11 12:08:24 -05003285 if (unlikely(file == ERR_PTR(-ESTALE)))
Jeff Layton669abf42012-10-10 16:43:10 -04003286 file = path_openat(-1, &filename, &nd, op, flags | LOOKUP_REVAL);
Al Viro73d049a2011-03-11 12:08:24 -05003287 return file;
3288}
3289
Jeff Layton1ac12b42012-12-11 12:10:06 -05003290struct dentry *kern_path_create(int dfd, const char *pathname,
3291 struct path *path, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003293 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viroed75e952011-06-27 16:53:43 -04003294 struct nameidata nd;
Jan Karac30dabf2012-06-12 16:20:30 +02003295 int err2;
Jeff Layton1ac12b42012-12-11 12:10:06 -05003296 int error;
3297 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3298
3299 /*
3300 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3301 * other flags passed in are ignored!
3302 */
3303 lookup_flags &= LOOKUP_REVAL;
3304
3305 error = do_path_lookup(dfd, pathname, LOOKUP_PARENT|lookup_flags, &nd);
Al Viroed75e952011-06-27 16:53:43 -04003306 if (error)
3307 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003309 /*
3310 * Yucky last component or no last component at all?
3311 * (foo/., foo/.., /////)
3312 */
Al Viroed75e952011-06-27 16:53:43 -04003313 if (nd.last_type != LAST_NORM)
3314 goto out;
3315 nd.flags &= ~LOOKUP_PARENT;
3316 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003317
Jan Karac30dabf2012-06-12 16:20:30 +02003318 /* don't fail immediately if it's r/o, at least try to report other errors */
3319 err2 = mnt_want_write(nd.path.mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003320 /*
3321 * Do the final lookup.
3322 */
Al Viroed75e952011-06-27 16:53:43 -04003323 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3324 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003326 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003327
Al Viroa8104a92012-07-20 02:25:00 +04003328 error = -EEXIST;
David Howellsb18825a2013-09-12 19:22:53 +01003329 if (d_is_positive(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003330 goto fail;
David Howellsb18825a2013-09-12 19:22:53 +01003331
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003332 /*
3333 * Special case - lookup gave negative, but... we had foo/bar/
3334 * From the vfs_mknod() POV we just have a negative dentry -
3335 * all is fine. Let's be bastards - you had / on the end, you've
3336 * been asking for (non-existent) directory. -ENOENT for you.
3337 */
Al Viroed75e952011-06-27 16:53:43 -04003338 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003339 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003340 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003341 }
Jan Karac30dabf2012-06-12 16:20:30 +02003342 if (unlikely(err2)) {
3343 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003344 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003345 }
Al Viroed75e952011-06-27 16:53:43 -04003346 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003347 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348fail:
Al Viroa8104a92012-07-20 02:25:00 +04003349 dput(dentry);
3350 dentry = ERR_PTR(error);
3351unlock:
Al Viroed75e952011-06-27 16:53:43 -04003352 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Karac30dabf2012-06-12 16:20:30 +02003353 if (!err2)
3354 mnt_drop_write(nd.path.mnt);
Al Viroed75e952011-06-27 16:53:43 -04003355out:
3356 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 return dentry;
3358}
Al Virodae6ad82011-06-26 11:50:15 -04003359EXPORT_SYMBOL(kern_path_create);
3360
Al Viro921a1652012-07-20 01:15:31 +04003361void done_path_create(struct path *path, struct dentry *dentry)
3362{
3363 dput(dentry);
3364 mutex_unlock(&path->dentry->d_inode->i_mutex);
Al Viroa8104a92012-07-20 02:25:00 +04003365 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003366 path_put(path);
3367}
3368EXPORT_SYMBOL(done_path_create);
3369
Jeff Layton1ac12b42012-12-11 12:10:06 -05003370struct dentry *user_path_create(int dfd, const char __user *pathname,
3371 struct path *path, unsigned int lookup_flags)
Al Virodae6ad82011-06-26 11:50:15 -04003372{
Jeff Layton91a27b22012-10-10 15:25:28 -04003373 struct filename *tmp = getname(pathname);
Al Virodae6ad82011-06-26 11:50:15 -04003374 struct dentry *res;
3375 if (IS_ERR(tmp))
3376 return ERR_CAST(tmp);
Jeff Layton1ac12b42012-12-11 12:10:06 -05003377 res = kern_path_create(dfd, tmp->name, path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003378 putname(tmp);
3379 return res;
3380}
3381EXPORT_SYMBOL(user_path_create);
3382
Al Viro1a67aaf2011-07-26 01:52:52 -04003383int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003385 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386
3387 if (error)
3388 return error;
3389
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003390 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 return -EPERM;
3392
Al Viroacfa4382008-12-04 10:06:33 -05003393 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 return -EPERM;
3395
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003396 error = devcgroup_inode_mknod(mode, dev);
3397 if (error)
3398 return error;
3399
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 error = security_inode_mknod(dir, dentry, mode, dev);
3401 if (error)
3402 return error;
3403
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003405 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003406 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 return error;
3408}
Al Viro4d359502014-03-14 12:20:17 -04003409EXPORT_SYMBOL(vfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
Al Virof69aac02011-07-26 04:31:40 -04003411static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003412{
3413 switch (mode & S_IFMT) {
3414 case S_IFREG:
3415 case S_IFCHR:
3416 case S_IFBLK:
3417 case S_IFIFO:
3418 case S_IFSOCK:
3419 case 0: /* zero mode translates to S_IFREG */
3420 return 0;
3421 case S_IFDIR:
3422 return -EPERM;
3423 default:
3424 return -EINVAL;
3425 }
3426}
3427
Al Viro8208a222011-07-25 17:32:17 -04003428SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003429 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430{
Al Viro2ad94ae2008-07-21 09:32:51 -04003431 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003432 struct path path;
3433 int error;
Jeff Layton972567f2012-12-20 16:00:10 -05003434 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
Al Viro8e4bfca2012-07-20 01:17:26 +04003436 error = may_mknod(mode);
3437 if (error)
3438 return error;
Jeff Layton972567f2012-12-20 16:00:10 -05003439retry:
3440 dentry = user_path_create(dfd, filename, &path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003441 if (IS_ERR(dentry))
3442 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003443
Al Virodae6ad82011-06-26 11:50:15 -04003444 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003445 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003446 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003447 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003448 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003449 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04003451 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 break;
3453 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04003454 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 new_decode_dev(dev));
3456 break;
3457 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003458 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 }
Al Viroa8104a92012-07-20 02:25:00 +04003461out:
Al Viro921a1652012-07-20 01:15:31 +04003462 done_path_create(&path, dentry);
Jeff Layton972567f2012-12-20 16:00:10 -05003463 if (retry_estale(error, lookup_flags)) {
3464 lookup_flags |= LOOKUP_REVAL;
3465 goto retry;
3466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 return error;
3468}
3469
Al Viro8208a222011-07-25 17:32:17 -04003470SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003471{
3472 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3473}
3474
Al Viro18bb1db2011-07-26 01:41:39 -04003475int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003477 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003478 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
3480 if (error)
3481 return error;
3482
Al Viroacfa4382008-12-04 10:06:33 -05003483 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 return -EPERM;
3485
3486 mode &= (S_IRWXUGO|S_ISVTX);
3487 error = security_inode_mkdir(dir, dentry, mode);
3488 if (error)
3489 return error;
3490
Al Viro8de52772012-02-06 12:45:27 -05003491 if (max_links && dir->i_nlink >= max_links)
3492 return -EMLINK;
3493
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003495 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003496 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 return error;
3498}
Al Viro4d359502014-03-14 12:20:17 -04003499EXPORT_SYMBOL(vfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
Al Viroa218d0f2011-11-21 14:59:34 -05003501SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502{
Dave Hansen6902d922006-09-30 23:29:01 -07003503 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003504 struct path path;
3505 int error;
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003506 unsigned int lookup_flags = LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003508retry:
3509 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003510 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003511 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003512
Al Virodae6ad82011-06-26 11:50:15 -04003513 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003514 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003515 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003516 if (!error)
3517 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003518 done_path_create(&path, dentry);
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003519 if (retry_estale(error, lookup_flags)) {
3520 lookup_flags |= LOOKUP_REVAL;
3521 goto retry;
3522 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 return error;
3524}
3525
Al Viroa218d0f2011-11-21 14:59:34 -05003526SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003527{
3528 return sys_mkdirat(AT_FDCWD, pathname, mode);
3529}
3530
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531/*
Sage Weila71905f2011-05-24 13:06:08 -07003532 * The dentry_unhash() helper will try to drop the dentry early: we
J. Bruce Fieldsc0d02592012-02-15 11:48:40 -05003533 * should have a usage count of 1 if we're the only user of this
Sage Weila71905f2011-05-24 13:06:08 -07003534 * dentry, and if that is true (possibly after pruning the dcache),
3535 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 *
3537 * A low-level filesystem can, if it choses, legally
3538 * do a
3539 *
3540 * if (!d_unhashed(dentry))
3541 * return -EBUSY;
3542 *
3543 * if it cannot handle the case of removing a directory
3544 * that is still in use by something else..
3545 */
3546void dentry_unhash(struct dentry *dentry)
3547{
Vasily Averindc168422006-12-06 20:37:07 -08003548 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 spin_lock(&dentry->d_lock);
Waiman Long98474232013-08-28 18:24:59 -07003550 if (dentry->d_lockref.count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551 __d_drop(dentry);
3552 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553}
Al Viro4d359502014-03-14 12:20:17 -04003554EXPORT_SYMBOL(dentry_unhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555
3556int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3557{
3558 int error = may_delete(dir, dentry, 1);
3559
3560 if (error)
3561 return error;
3562
Al Viroacfa4382008-12-04 10:06:33 -05003563 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 return -EPERM;
3565
Al Viro1d2ef592011-09-14 18:55:41 +01003566 dget(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003567 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568
Sage Weil912dbc12011-05-24 13:06:11 -07003569 error = -EBUSY;
3570 if (d_mountpoint(dentry))
3571 goto out;
3572
3573 error = security_inode_rmdir(dir, dentry);
3574 if (error)
3575 goto out;
3576
Sage Weil3cebde22011-05-29 21:20:59 -07003577 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003578 error = dir->i_op->rmdir(dir, dentry);
3579 if (error)
3580 goto out;
3581
3582 dentry->d_inode->i_flags |= S_DEAD;
3583 dont_mount(dentry);
3584
3585out:
3586 mutex_unlock(&dentry->d_inode->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01003587 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003588 if (!error)
3589 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 return error;
3591}
Al Viro4d359502014-03-14 12:20:17 -04003592EXPORT_SYMBOL(vfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003594static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595{
3596 int error = 0;
Jeff Layton91a27b22012-10-10 15:25:28 -04003597 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 struct dentry *dentry;
3599 struct nameidata nd;
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003600 unsigned int lookup_flags = 0;
3601retry:
3602 name = user_path_parent(dfd, pathname, &nd, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003603 if (IS_ERR(name))
3604 return PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605
3606 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003607 case LAST_DOTDOT:
3608 error = -ENOTEMPTY;
3609 goto exit1;
3610 case LAST_DOT:
3611 error = -EINVAL;
3612 goto exit1;
3613 case LAST_ROOT:
3614 error = -EBUSY;
3615 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003617
3618 nd.flags &= ~LOOKUP_PARENT;
Jan Karac30dabf2012-06-12 16:20:30 +02003619 error = mnt_want_write(nd.path.mnt);
3620 if (error)
3621 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003622
Jan Blunck4ac91372008-02-14 19:34:32 -08003623 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08003624 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003626 if (IS_ERR(dentry))
3627 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003628 if (!dentry->d_inode) {
3629 error = -ENOENT;
3630 goto exit3;
3631 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003632 error = security_path_rmdir(&nd.path, dentry);
3633 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003634 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08003635 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08003636exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003637 dput(dentry);
3638exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08003639 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Karac30dabf2012-06-12 16:20:30 +02003640 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003642 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 putname(name);
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003644 if (retry_estale(error, lookup_flags)) {
3645 lookup_flags |= LOOKUP_REVAL;
3646 goto retry;
3647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 return error;
3649}
3650
Heiko Carstens3cdad422009-01-14 14:14:22 +01003651SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003652{
3653 return do_rmdir(AT_FDCWD, pathname);
3654}
3655
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003656/**
3657 * vfs_unlink - unlink a filesystem object
3658 * @dir: parent directory
3659 * @dentry: victim
3660 * @delegated_inode: returns victim inode, if the inode is delegated.
3661 *
3662 * The caller must hold dir->i_mutex.
3663 *
3664 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3665 * return a reference to the inode in delegated_inode. The caller
3666 * should then break the delegation on that inode and retry. Because
3667 * breaking a delegation may take a long time, the caller should drop
3668 * dir->i_mutex before doing so.
3669 *
3670 * Alternatively, a caller may pass NULL for delegated_inode. This may
3671 * be appropriate for callers that expect the underlying filesystem not
3672 * to be NFS exported.
3673 */
3674int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675{
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003676 struct inode *target = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677 int error = may_delete(dir, dentry, 0);
3678
3679 if (error)
3680 return error;
3681
Al Viroacfa4382008-12-04 10:06:33 -05003682 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 return -EPERM;
3684
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003685 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 if (d_mountpoint(dentry))
3687 error = -EBUSY;
3688 else {
3689 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003690 if (!error) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003691 error = try_break_deleg(target, delegated_inode);
3692 if (error)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003693 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003695 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04003696 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05003697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 }
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003699out:
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003700 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
3702 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3703 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003704 fsnotify_link_count(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706 }
Robert Love0eeca282005-07-12 17:06:03 -04003707
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 return error;
3709}
Al Viro4d359502014-03-14 12:20:17 -04003710EXPORT_SYMBOL(vfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711
3712/*
3713 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003714 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 * writeout happening, and we don't want to prevent access to the directory
3716 * while waiting on the I/O.
3717 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003718static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719{
Al Viro2ad94ae2008-07-21 09:32:51 -04003720 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04003721 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 struct dentry *dentry;
3723 struct nameidata nd;
3724 struct inode *inode = NULL;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003725 struct inode *delegated_inode = NULL;
Jeff Layton5d18f812012-12-20 16:38:04 -05003726 unsigned int lookup_flags = 0;
3727retry:
3728 name = user_path_parent(dfd, pathname, &nd, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003729 if (IS_ERR(name))
3730 return PTR_ERR(name);
Al Viro2ad94ae2008-07-21 09:32:51 -04003731
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 error = -EISDIR;
3733 if (nd.last_type != LAST_NORM)
3734 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003735
3736 nd.flags &= ~LOOKUP_PARENT;
Jan Karac30dabf2012-06-12 16:20:30 +02003737 error = mnt_want_write(nd.path.mnt);
3738 if (error)
3739 goto exit1;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003740retry_deleg:
Jan Blunck4ac91372008-02-14 19:34:32 -08003741 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08003742 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743 error = PTR_ERR(dentry);
3744 if (!IS_ERR(dentry)) {
3745 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03003746 if (nd.last.name[nd.last.len])
3747 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 inode = dentry->d_inode;
David Howellsb18825a2013-09-12 19:22:53 +01003749 if (d_is_negative(dentry))
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003750 goto slashes;
3751 ihold(inode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003752 error = security_path_unlink(&nd.path, dentry);
3753 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003754 goto exit2;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003755 error = vfs_unlink(nd.path.dentry->d_inode, dentry, &delegated_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02003756exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 dput(dentry);
3758 }
Jan Blunck4ac91372008-02-14 19:34:32 -08003759 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 if (inode)
3761 iput(inode); /* truncate the inode here */
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003762 inode = NULL;
3763 if (delegated_inode) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003764 error = break_deleg_wait(&delegated_inode);
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003765 if (!error)
3766 goto retry_deleg;
3767 }
Jan Karac30dabf2012-06-12 16:20:30 +02003768 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003770 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 putname(name);
Jeff Layton5d18f812012-12-20 16:38:04 -05003772 if (retry_estale(error, lookup_flags)) {
3773 lookup_flags |= LOOKUP_REVAL;
3774 inode = NULL;
3775 goto retry;
3776 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 return error;
3778
3779slashes:
David Howellsb18825a2013-09-12 19:22:53 +01003780 if (d_is_negative(dentry))
3781 error = -ENOENT;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003782 else if (d_is_dir(dentry))
David Howellsb18825a2013-09-12 19:22:53 +01003783 error = -EISDIR;
3784 else
3785 error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 goto exit2;
3787}
3788
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003789SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003790{
3791 if ((flag & ~AT_REMOVEDIR) != 0)
3792 return -EINVAL;
3793
3794 if (flag & AT_REMOVEDIR)
3795 return do_rmdir(dfd, pathname);
3796
3797 return do_unlinkat(dfd, pathname);
3798}
3799
Heiko Carstens3480b252009-01-14 14:14:16 +01003800SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003801{
3802 return do_unlinkat(AT_FDCWD, pathname);
3803}
3804
Miklos Szeredidb2e7472008-06-24 16:50:16 +02003805int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003807 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808
3809 if (error)
3810 return error;
3811
Al Viroacfa4382008-12-04 10:06:33 -05003812 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 return -EPERM;
3814
3815 error = security_inode_symlink(dir, dentry, oldname);
3816 if (error)
3817 return error;
3818
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003820 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003821 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 return error;
3823}
Al Viro4d359502014-03-14 12:20:17 -04003824EXPORT_SYMBOL(vfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003826SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3827 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828{
Al Viro2ad94ae2008-07-21 09:32:51 -04003829 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04003830 struct filename *from;
Dave Hansen6902d922006-09-30 23:29:01 -07003831 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003832 struct path path;
Jeff Laytonf46d3562012-12-11 12:10:08 -05003833 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834
3835 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04003836 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 return PTR_ERR(from);
Jeff Laytonf46d3562012-12-11 12:10:08 -05003838retry:
3839 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003840 error = PTR_ERR(dentry);
3841 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003842 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07003843
Jeff Layton91a27b22012-10-10 15:25:28 -04003844 error = security_path_symlink(&path, dentry, from->name);
Al Viroa8104a92012-07-20 02:25:00 +04003845 if (!error)
Jeff Layton91a27b22012-10-10 15:25:28 -04003846 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
Al Viro921a1652012-07-20 01:15:31 +04003847 done_path_create(&path, dentry);
Jeff Laytonf46d3562012-12-11 12:10:08 -05003848 if (retry_estale(error, lookup_flags)) {
3849 lookup_flags |= LOOKUP_REVAL;
3850 goto retry;
3851 }
Dave Hansen6902d922006-09-30 23:29:01 -07003852out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 putname(from);
3854 return error;
3855}
3856
Heiko Carstens3480b252009-01-14 14:14:16 +01003857SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003858{
3859 return sys_symlinkat(oldname, AT_FDCWD, newname);
3860}
3861
J. Bruce Fields146a8592011-09-20 17:14:31 -04003862/**
3863 * vfs_link - create a new link
3864 * @old_dentry: object to be linked
3865 * @dir: new parent
3866 * @new_dentry: where to create the new link
3867 * @delegated_inode: returns inode needing a delegation break
3868 *
3869 * The caller must hold dir->i_mutex
3870 *
3871 * If vfs_link discovers a delegation on the to-be-linked file in need
3872 * of breaking, it will return -EWOULDBLOCK and return a reference to the
3873 * inode in delegated_inode. The caller should then break the delegation
3874 * and retry. Because breaking a delegation may take a long time, the
3875 * caller should drop the i_mutex before doing so.
3876 *
3877 * Alternatively, a caller may pass NULL for delegated_inode. This may
3878 * be appropriate for callers that expect the underlying filesystem not
3879 * to be NFS exported.
3880 */
3881int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882{
3883 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05003884 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 int error;
3886
3887 if (!inode)
3888 return -ENOENT;
3889
Miklos Szeredia95164d2008-07-30 15:08:48 +02003890 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 if (error)
3892 return error;
3893
3894 if (dir->i_sb != inode->i_sb)
3895 return -EXDEV;
3896
3897 /*
3898 * A link to an append-only or immutable file cannot be created.
3899 */
3900 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3901 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05003902 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003904 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 return -EPERM;
3906
3907 error = security_inode_link(old_dentry, dir, new_dentry);
3908 if (error)
3909 return error;
3910
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003911 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303912 /* Make sure we don't allow creating hardlink to an unlinked file */
Al Virof4e0c302013-06-11 08:34:36 +04003913 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303914 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05003915 else if (max_links && inode->i_nlink >= max_links)
3916 error = -EMLINK;
J. Bruce Fields146a8592011-09-20 17:14:31 -04003917 else {
3918 error = try_break_deleg(inode, delegated_inode);
3919 if (!error)
3920 error = dir->i_op->link(old_dentry, dir, new_dentry);
3921 }
Al Virof4e0c302013-06-11 08:34:36 +04003922
3923 if (!error && (inode->i_state & I_LINKABLE)) {
3924 spin_lock(&inode->i_lock);
3925 inode->i_state &= ~I_LINKABLE;
3926 spin_unlock(&inode->i_lock);
3927 }
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003928 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003929 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003930 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 return error;
3932}
Al Viro4d359502014-03-14 12:20:17 -04003933EXPORT_SYMBOL(vfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934
3935/*
3936 * Hardlinks are often used in delicate situations. We avoid
3937 * security-related surprises by not following symlinks on the
3938 * newname. --KAB
3939 *
3940 * We don't follow them on the oldname either to be compatible
3941 * with linux 2.0, and to avoid hard-linking to directories
3942 * and other special files. --ADM
3943 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003944SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
3945 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946{
3947 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003948 struct path old_path, new_path;
J. Bruce Fields146a8592011-09-20 17:14:31 -04003949 struct inode *delegated_inode = NULL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303950 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303953 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003954 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303955 /*
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07003956 * To use null names we require CAP_DAC_READ_SEARCH
3957 * This ensures that not everyone will be able to create
3958 * handlink using the passed filedescriptor.
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303959 */
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07003960 if (flags & AT_EMPTY_PATH) {
3961 if (!capable(CAP_DAC_READ_SEARCH))
3962 return -ENOENT;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303963 how = LOOKUP_EMPTY;
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07003964 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003965
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303966 if (flags & AT_SYMLINK_FOLLOW)
3967 how |= LOOKUP_FOLLOW;
Jeff Layton442e31c2012-12-20 16:15:38 -05003968retry:
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303969 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04003971 return error;
3972
Jeff Layton442e31c2012-12-20 16:15:38 -05003973 new_dentry = user_path_create(newdfd, newname, &new_path,
3974 (how & LOOKUP_REVAL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003976 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003977 goto out;
3978
3979 error = -EXDEV;
3980 if (old_path.mnt != new_path.mnt)
3981 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07003982 error = may_linkat(&old_path);
3983 if (unlikely(error))
3984 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04003985 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003986 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003987 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04003988 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
Dave Hansen75c3f292008-02-15 14:37:45 -08003989out_dput:
Al Viro921a1652012-07-20 01:15:31 +04003990 done_path_create(&new_path, new_dentry);
J. Bruce Fields146a8592011-09-20 17:14:31 -04003991 if (delegated_inode) {
3992 error = break_deleg_wait(&delegated_inode);
Oleg Drokind22e6332014-01-31 15:41:58 -05003993 if (!error) {
3994 path_put(&old_path);
J. Bruce Fields146a8592011-09-20 17:14:31 -04003995 goto retry;
Oleg Drokind22e6332014-01-31 15:41:58 -05003996 }
J. Bruce Fields146a8592011-09-20 17:14:31 -04003997 }
Jeff Layton442e31c2012-12-20 16:15:38 -05003998 if (retry_estale(error, how)) {
Oleg Drokind22e6332014-01-31 15:41:58 -05003999 path_put(&old_path);
Jeff Layton442e31c2012-12-20 16:15:38 -05004000 how |= LOOKUP_REVAL;
4001 goto retry;
4002 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003out:
Al Viro2d8f3032008-07-22 09:59:21 -04004004 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005
4006 return error;
4007}
4008
Heiko Carstens3480b252009-01-14 14:14:16 +01004009SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004010{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004011 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004012}
4013
Miklos Szeredibc270272014-04-01 17:08:42 +02004014/**
4015 * vfs_rename - rename a filesystem object
4016 * @old_dir: parent of source
4017 * @old_dentry: source
4018 * @new_dir: parent of destination
4019 * @new_dentry: destination
4020 * @delegated_inode: returns an inode needing a delegation break
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004021 * @flags: rename flags
Miklos Szeredibc270272014-04-01 17:08:42 +02004022 *
4023 * The caller must hold multiple mutexes--see lock_rename()).
4024 *
4025 * If vfs_rename discovers a delegation in need of breaking at either
4026 * the source or destination, it will return -EWOULDBLOCK and return a
4027 * reference to the inode in delegated_inode. The caller should then
4028 * break the delegation and retry. Because breaking a delegation may
4029 * take a long time, the caller should drop all locks before doing
4030 * so.
4031 *
4032 * Alternatively, a caller may pass NULL for delegated_inode. This may
4033 * be appropriate for callers that expect the underlying filesystem not
4034 * to be NFS exported.
4035 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036 * The worst of all namespace operations - renaming directory. "Perverted"
4037 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4038 * Problems:
J. Bruce Fieldsd03b29a2014-02-17 16:52:33 -05004039 * a) we can get into loop creation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 * b) race potential - two innocent renames can create a loop together.
4041 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004042 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 * story.
J. Bruce Fields6cedba82012-03-05 11:40:41 -05004044 * c) we have to lock _four_ objects - parents and victim (if it exists),
4045 * and source (if it is not a directory).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004046 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 * whether the target exists). Solution: try to be smart with locking
4048 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004049 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 * move will be locked. Thus we can rank directories by the tree
4051 * (ancestors first) and rank all non-directories after them.
4052 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004053 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054 * HOWEVER, it relies on the assumption that any object with ->lookup()
4055 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4056 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07004057 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004058 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05004060 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 * locking].
4062 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004064 struct inode *new_dir, struct dentry *new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004065 struct inode **delegated_inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066{
4067 int error;
Miklos Szeredibc270272014-04-01 17:08:42 +02004068 bool is_dir = d_is_dir(old_dentry);
Eric Paris59b0df22010-02-08 12:53:52 -05004069 const unsigned char *old_name;
Miklos Szeredibc270272014-04-01 17:08:42 +02004070 struct inode *source = old_dentry->d_inode;
4071 struct inode *target = new_dentry->d_inode;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004072 bool new_is_dir = false;
4073 unsigned max_links = new_dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074
Miklos Szeredibc270272014-04-01 17:08:42 +02004075 if (source == target)
4076 return 0;
4077
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 error = may_delete(old_dir, old_dentry, is_dir);
4079 if (error)
4080 return error;
4081
Miklos Szeredida1ce062014-04-01 17:08:43 +02004082 if (!target) {
Miklos Szeredia95164d2008-07-30 15:08:48 +02004083 error = may_create(new_dir, new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004084 } else {
4085 new_is_dir = d_is_dir(new_dentry);
4086
4087 if (!(flags & RENAME_EXCHANGE))
4088 error = may_delete(new_dir, new_dentry, is_dir);
4089 else
4090 error = may_delete(new_dir, new_dentry, new_is_dir);
4091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 if (error)
4093 return error;
4094
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004095 if (!old_dir->i_op->rename && !old_dir->i_op->rename2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096 return -EPERM;
4097
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004098 if (flags && !old_dir->i_op->rename2)
4099 return -EINVAL;
4100
Miklos Szeredibc270272014-04-01 17:08:42 +02004101 /*
4102 * If we are going to change the parent - check write permissions,
4103 * we'll need to flip '..'.
4104 */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004105 if (new_dir != old_dir) {
4106 if (is_dir) {
4107 error = inode_permission(source, MAY_WRITE);
4108 if (error)
4109 return error;
4110 }
4111 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4112 error = inode_permission(target, MAY_WRITE);
4113 if (error)
4114 return error;
4115 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004116 }
Robert Love0eeca282005-07-12 17:06:03 -04004117
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004118 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4119 flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004120 if (error)
4121 return error;
4122
4123 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
4124 dget(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004125 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004126 lock_two_nondirectories(source, target);
4127 else if (target)
4128 mutex_lock(&target->i_mutex);
4129
4130 error = -EBUSY;
4131 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
4132 goto out;
4133
Miklos Szeredida1ce062014-04-01 17:08:43 +02004134 if (max_links && new_dir != old_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004135 error = -EMLINK;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004136 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
Miklos Szeredibc270272014-04-01 17:08:42 +02004137 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004138 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4139 old_dir->i_nlink >= max_links)
4140 goto out;
4141 }
4142 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4143 shrink_dcache_parent(new_dentry);
4144 if (!is_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004145 error = try_break_deleg(source, delegated_inode);
4146 if (error)
4147 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004148 }
4149 if (target && !new_is_dir) {
4150 error = try_break_deleg(target, delegated_inode);
4151 if (error)
4152 goto out;
Miklos Szeredibc270272014-04-01 17:08:42 +02004153 }
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004154 if (!old_dir->i_op->rename2) {
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004155 error = old_dir->i_op->rename(old_dir, old_dentry,
4156 new_dir, new_dentry);
4157 } else {
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004158 WARN_ON(old_dir->i_op->rename != NULL);
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004159 error = old_dir->i_op->rename2(old_dir, old_dentry,
4160 new_dir, new_dentry, flags);
4161 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004162 if (error)
4163 goto out;
4164
Miklos Szeredida1ce062014-04-01 17:08:43 +02004165 if (!(flags & RENAME_EXCHANGE) && target) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004166 if (is_dir)
4167 target->i_flags |= S_DEAD;
4168 dont_mount(new_dentry);
4169 }
Miklos Szeredida1ce062014-04-01 17:08:43 +02004170 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4171 if (!(flags & RENAME_EXCHANGE))
4172 d_move(old_dentry, new_dentry);
4173 else
4174 d_exchange(old_dentry, new_dentry);
4175 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004176out:
Miklos Szeredida1ce062014-04-01 17:08:43 +02004177 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004178 unlock_two_nondirectories(source, target);
4179 else if (target)
4180 mutex_unlock(&target->i_mutex);
4181 dput(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004182 if (!error) {
Al Viro123df292009-12-25 04:57:57 -05004183 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Miklos Szeredida1ce062014-04-01 17:08:43 +02004184 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4185 if (flags & RENAME_EXCHANGE) {
4186 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4187 new_is_dir, NULL, new_dentry);
4188 }
4189 }
Robert Love0eeca282005-07-12 17:06:03 -04004190 fsnotify_oldname_free(old_name);
4191
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192 return error;
4193}
Al Viro4d359502014-03-14 12:20:17 -04004194EXPORT_SYMBOL(vfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004196SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4197 int, newdfd, const char __user *, newname, unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198{
Al Viro2ad94ae2008-07-21 09:32:51 -04004199 struct dentry *old_dir, *new_dir;
4200 struct dentry *old_dentry, *new_dentry;
4201 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 struct nameidata oldnd, newnd;
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004203 struct inode *delegated_inode = NULL;
Jeff Layton91a27b22012-10-10 15:25:28 -04004204 struct filename *from;
4205 struct filename *to;
Jeff Laytonc6a94282012-12-11 12:10:10 -05004206 unsigned int lookup_flags = 0;
4207 bool should_retry = false;
Al Viro2ad94ae2008-07-21 09:32:51 -04004208 int error;
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004209
Miklos Szeredida1ce062014-04-01 17:08:43 +02004210 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE))
4211 return -EINVAL;
4212
4213 if ((flags & RENAME_NOREPLACE) && (flags & RENAME_EXCHANGE))
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004214 return -EINVAL;
4215
Jeff Laytonc6a94282012-12-11 12:10:10 -05004216retry:
4217 from = user_path_parent(olddfd, oldname, &oldnd, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004218 if (IS_ERR(from)) {
4219 error = PTR_ERR(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 goto exit;
Jeff Layton91a27b22012-10-10 15:25:28 -04004221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222
Jeff Laytonc6a94282012-12-11 12:10:10 -05004223 to = user_path_parent(newdfd, newname, &newnd, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004224 if (IS_ERR(to)) {
4225 error = PTR_ERR(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226 goto exit1;
Jeff Layton91a27b22012-10-10 15:25:28 -04004227 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228
4229 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08004230 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 goto exit2;
4232
Jan Blunck4ac91372008-02-14 19:34:32 -08004233 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 error = -EBUSY;
4235 if (oldnd.last_type != LAST_NORM)
4236 goto exit2;
4237
Jan Blunck4ac91372008-02-14 19:34:32 -08004238 new_dir = newnd.path.dentry;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004239 if (flags & RENAME_NOREPLACE)
4240 error = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241 if (newnd.last_type != LAST_NORM)
4242 goto exit2;
4243
Jan Karac30dabf2012-06-12 16:20:30 +02004244 error = mnt_want_write(oldnd.path.mnt);
4245 if (error)
4246 goto exit2;
4247
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09004248 oldnd.flags &= ~LOOKUP_PARENT;
4249 newnd.flags &= ~LOOKUP_PARENT;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004250 if (!(flags & RENAME_EXCHANGE))
4251 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09004252
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004253retry_deleg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 trap = lock_rename(new_dir, old_dir);
4255
Christoph Hellwig49705b72005-11-08 21:35:06 -08004256 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 error = PTR_ERR(old_dentry);
4258 if (IS_ERR(old_dentry))
4259 goto exit3;
4260 /* source must exist */
4261 error = -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01004262 if (d_is_negative(old_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08004264 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 error = PTR_ERR(new_dentry);
4266 if (IS_ERR(new_dentry))
4267 goto exit4;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004268 error = -EEXIST;
4269 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4270 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004271 if (flags & RENAME_EXCHANGE) {
4272 error = -ENOENT;
4273 if (d_is_negative(new_dentry))
4274 goto exit5;
4275
4276 if (!d_is_dir(new_dentry)) {
4277 error = -ENOTDIR;
4278 if (newnd.last.name[newnd.last.len])
4279 goto exit5;
4280 }
4281 }
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004282 /* unless the source is a directory trailing slashes give -ENOTDIR */
4283 if (!d_is_dir(old_dentry)) {
4284 error = -ENOTDIR;
4285 if (oldnd.last.name[oldnd.last.len])
4286 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004287 if (!(flags & RENAME_EXCHANGE) && newnd.last.name[newnd.last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004288 goto exit5;
4289 }
4290 /* source should not be ancestor of target */
4291 error = -EINVAL;
4292 if (old_dentry == trap)
4293 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294 /* target should not be an ancestor of source */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004295 if (!(flags & RENAME_EXCHANGE))
4296 error = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 if (new_dentry == trap)
4298 goto exit5;
4299
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004300 error = security_path_rename(&oldnd.path, old_dentry,
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004301 &newnd.path, new_dentry, flags);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004302 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004303 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 error = vfs_rename(old_dir->d_inode, old_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004305 new_dir->d_inode, new_dentry,
4306 &delegated_inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004307exit5:
4308 dput(new_dentry);
4309exit4:
4310 dput(old_dentry);
4311exit3:
4312 unlock_rename(new_dir, old_dir);
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004313 if (delegated_inode) {
4314 error = break_deleg_wait(&delegated_inode);
4315 if (!error)
4316 goto retry_deleg;
4317 }
Jan Karac30dabf2012-06-12 16:20:30 +02004318 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319exit2:
Jeff Laytonc6a94282012-12-11 12:10:10 -05004320 if (retry_estale(error, lookup_flags))
4321 should_retry = true;
Jan Blunck1d957f92008-02-14 19:34:35 -08004322 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04004323 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08004325 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326 putname(from);
Jeff Laytonc6a94282012-12-11 12:10:10 -05004327 if (should_retry) {
4328 should_retry = false;
4329 lookup_flags |= LOOKUP_REVAL;
4330 goto retry;
4331 }
Al Viro2ad94ae2008-07-21 09:32:51 -04004332exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 return error;
4334}
4335
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004336SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4337 int, newdfd, const char __user *, newname)
4338{
4339 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4340}
4341
Heiko Carstensa26eab22009-01-14 14:14:17 +01004342SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004343{
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004344 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004345}
4346
Al Viro5d826c82014-03-14 13:42:45 -04004347int readlink_copy(char __user *buffer, int buflen, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348{
Al Viro5d826c82014-03-14 13:42:45 -04004349 int len = PTR_ERR(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 if (IS_ERR(link))
4351 goto out;
4352
4353 len = strlen(link);
4354 if (len > (unsigned) buflen)
4355 len = buflen;
4356 if (copy_to_user(buffer, link, len))
4357 len = -EFAULT;
4358out:
4359 return len;
4360}
Al Viro5d826c82014-03-14 13:42:45 -04004361EXPORT_SYMBOL(readlink_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362
4363/*
4364 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
4365 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
4366 * using) it for any given inode is up to filesystem.
4367 */
4368int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4369{
4370 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004371 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07004372 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004373
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004375 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07004376 if (IS_ERR(cookie))
4377 return PTR_ERR(cookie);
4378
Al Viro5d826c82014-03-14 13:42:45 -04004379 res = readlink_copy(buffer, buflen, nd_get_link(&nd));
Marcin Slusarz694a1762008-06-09 16:40:37 -07004380 if (dentry->d_inode->i_op->put_link)
4381 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
4382 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383}
Al Viro4d359502014-03-14 12:20:17 -04004384EXPORT_SYMBOL(generic_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386/* get the link contents into pagecache */
4387static char *page_getlink(struct dentry * dentry, struct page **ppage)
4388{
Duane Griffinebd09ab2008-12-19 20:47:12 +00004389 char *kaddr;
4390 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07004392 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07004394 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00004396 kaddr = kmap(page);
4397 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
4398 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399}
4400
4401int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4402{
4403 struct page *page = NULL;
Al Viro5d826c82014-03-14 13:42:45 -04004404 int res = readlink_copy(buffer, buflen, page_getlink(dentry, &page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405 if (page) {
4406 kunmap(page);
4407 page_cache_release(page);
4408 }
4409 return res;
4410}
Al Viro4d359502014-03-14 12:20:17 -04004411EXPORT_SYMBOL(page_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004413void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004415 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004417 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004418}
Al Viro4d359502014-03-14 12:20:17 -04004419EXPORT_SYMBOL(page_follow_link_light);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004420
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004421void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004422{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004423 struct page *page = cookie;
4424
4425 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426 kunmap(page);
4427 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428 }
4429}
Al Viro4d359502014-03-14 12:20:17 -04004430EXPORT_SYMBOL(page_put_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431
Nick Piggin54566b22009-01-04 12:00:53 -08004432/*
4433 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4434 */
4435int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436{
4437 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004438 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07004439 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08004440 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08004442 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4443 if (nofs)
4444 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445
NeilBrown7e53cac2006-03-25 03:07:57 -08004446retry:
Nick Pigginafddba42007-10-16 01:25:01 -07004447 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08004448 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004449 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07004450 goto fail;
4451
Cong Wange8e3c3d2011-11-25 23:14:27 +08004452 kaddr = kmap_atomic(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 memcpy(kaddr, symname, len-1);
Cong Wange8e3c3d2011-11-25 23:14:27 +08004454 kunmap_atomic(kaddr);
Nick Pigginafddba42007-10-16 01:25:01 -07004455
4456 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4457 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 if (err < 0)
4459 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07004460 if (err < len-1)
4461 goto retry;
4462
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 mark_inode_dirty(inode);
4464 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465fail:
4466 return err;
4467}
Al Viro4d359502014-03-14 12:20:17 -04004468EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004470int page_symlink(struct inode *inode, const char *symname, int len)
4471{
4472 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08004473 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004474}
Al Viro4d359502014-03-14 12:20:17 -04004475EXPORT_SYMBOL(page_symlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004476
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004477const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478 .readlink = generic_readlink,
4479 .follow_link = page_follow_link_light,
4480 .put_link = page_put_link,
4481};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482EXPORT_SYMBOL(page_symlink_inode_operations);