blob: 2354d4fc0038d597b3cf938016f3563d05ec2588 [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 Torvalds99d263d2014-09-13 11:30:10 -070037#include <linux/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/uaccess.h>
39
Eric Parise81e3f42009-12-04 15:47:36 -050040#include "internal.h"
Al Viroc7105362011-11-24 18:22:03 -050041#include "mount.h"
Eric Parise81e3f42009-12-04 15:47:36 -050042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/* [Feb-1997 T. Schoebel-Theuer]
44 * Fundamental changes in the pathname lookup mechanisms (namei)
45 * were necessary because of omirr. The reason is that omirr needs
46 * to know the _real_ pathname, not the user-supplied one, in case
47 * of symlinks (and also when transname replacements occur).
48 *
49 * The new code replaces the old recursive symlink resolution with
50 * an iterative one (in case of non-nested symlink chains). It does
51 * this with calls to <fs>_follow_link().
52 * As a side effect, dir_namei(), _namei() and follow_link() are now
53 * replaced with a single function lookup_dentry() that can handle all
54 * the special cases of the former code.
55 *
56 * With the new dcache, the pathname is stored at each inode, at least as
57 * long as the refcount of the inode is positive. As a side effect, the
58 * size of the dcache depends on the inode cache and thus is dynamic.
59 *
60 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
61 * resolution to correspond with current state of the code.
62 *
63 * Note that the symlink resolution is not *completely* iterative.
64 * There is still a significant amount of tail- and mid- recursion in
65 * the algorithm. Also, note that <fs>_readlink() is not used in
66 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
67 * may return different results than <fs>_follow_link(). Many virtual
68 * filesystems (including /proc) exhibit this behavior.
69 */
70
71/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
72 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
73 * and the name already exists in form of a symlink, try to create the new
74 * name indicated by the symlink. The old code always complained that the
75 * name already exists, due to not following the symlink even if its target
76 * is nonexistent. The new semantics affects also mknod() and link() when
Lucas De Marchi25985ed2011-03-30 22:57:33 -030077 * the name is a symlink pointing to a non-existent name.
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *
79 * I don't know which semantics is the right one, since I have no access
80 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
81 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
82 * "old" one. Personally, I think the new semantics is much more logical.
83 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
84 * file does succeed in both HP-UX and SunOs, but not in Solaris
85 * and in the old Linux semantics.
86 */
87
88/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
89 * semantics. See the comments in "open_namei" and "do_link" below.
90 *
91 * [10-Sep-98 Alan Modra] Another symlink change.
92 */
93
94/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
95 * inside the path - always follow.
96 * in the last component in creation/removal/renaming - never follow.
97 * if LOOKUP_FOLLOW passed - follow.
98 * if the pathname has trailing slashes - follow.
99 * otherwise - don't follow.
100 * (applied in that order).
101 *
102 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
103 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
104 * During the 2.4 we need to fix the userland stuff depending on it -
105 * hopefully we will be able to get rid of that wart in 2.5. So far only
106 * XEmacs seems to be relying on it...
107 */
108/*
109 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800110 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * any extra contention...
112 */
113
114/* In order to reduce some races, while at the same time doing additional
115 * checking and hopefully speeding things up, we copy filenames to the
116 * kernel data space before using them..
117 *
118 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
119 * PATH_MAX includes the nul terminator --RR.
120 */
Jeff Layton91a27b22012-10-10 15:25:28 -0400121
Al Virofd2f7cb2015-02-22 20:07:13 -0500122#define EMBEDDED_NAME_MAX (PATH_MAX - offsetof(struct filename, iname))
Jeff Layton7950e382012-10-10 16:43:13 -0400123
David Drysdale51f39a12014-12-12 16:57:29 -0800124struct filename *
Jeff Layton91a27b22012-10-10 15:25:28 -0400125getname_flags(const char __user *filename, int flags, int *empty)
126{
Al Viro94b5d262015-02-22 19:38:03 -0500127 struct filename *result;
Jeff Layton7950e382012-10-10 16:43:13 -0400128 char *kname;
Al Viro94b5d262015-02-22 19:38:03 -0500129 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Jeff Layton7ac86262012-10-10 15:25:28 -0400131 result = audit_reusename(filename);
132 if (result)
133 return result;
134
Jeff Layton7950e382012-10-10 16:43:13 -0400135 result = __getname();
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700136 if (unlikely(!result))
Eric Paris4043cde2012-01-03 14:23:08 -0500137 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Jeff Layton7950e382012-10-10 16:43:13 -0400139 /*
140 * First, try to embed the struct filename inside the names_cache
141 * allocation
142 */
Al Virofd2f7cb2015-02-22 20:07:13 -0500143 kname = (char *)result->iname;
Jeff Layton91a27b22012-10-10 15:25:28 -0400144 result->name = kname;
Jeff Layton7950e382012-10-10 16:43:13 -0400145
Al Viro94b5d262015-02-22 19:38:03 -0500146 len = strncpy_from_user(kname, filename, EMBEDDED_NAME_MAX);
Jeff Layton91a27b22012-10-10 15:25:28 -0400147 if (unlikely(len < 0)) {
Al Viro94b5d262015-02-22 19:38:03 -0500148 __putname(result);
149 return ERR_PTR(len);
Jeff Layton91a27b22012-10-10 15:25:28 -0400150 }
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700151
Jeff Layton7950e382012-10-10 16:43:13 -0400152 /*
153 * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
154 * separate struct filename so we can dedicate the entire
155 * names_cache allocation for the pathname, and re-do the copy from
156 * userland.
157 */
Al Viro94b5d262015-02-22 19:38:03 -0500158 if (unlikely(len == EMBEDDED_NAME_MAX)) {
Al Virofd2f7cb2015-02-22 20:07:13 -0500159 const size_t size = offsetof(struct filename, iname[1]);
Jeff Layton7950e382012-10-10 16:43:13 -0400160 kname = (char *)result;
161
Al Virofd2f7cb2015-02-22 20:07:13 -0500162 /*
163 * size is chosen that way we to guarantee that
164 * result->iname[0] is within the same object and that
165 * kname can't be equal to result->iname, no matter what.
166 */
167 result = kzalloc(size, GFP_KERNEL);
Al Viro94b5d262015-02-22 19:38:03 -0500168 if (unlikely(!result)) {
169 __putname(kname);
170 return ERR_PTR(-ENOMEM);
Jeff Layton7950e382012-10-10 16:43:13 -0400171 }
172 result->name = kname;
Al Viro94b5d262015-02-22 19:38:03 -0500173 len = strncpy_from_user(kname, filename, PATH_MAX);
174 if (unlikely(len < 0)) {
175 __putname(kname);
176 kfree(result);
177 return ERR_PTR(len);
178 }
179 if (unlikely(len == PATH_MAX)) {
180 __putname(kname);
181 kfree(result);
182 return ERR_PTR(-ENAMETOOLONG);
183 }
Jeff Layton7950e382012-10-10 16:43:13 -0400184 }
185
Al Viro94b5d262015-02-22 19:38:03 -0500186 result->refcnt = 1;
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700187 /* The empty path is special. */
188 if (unlikely(!len)) {
189 if (empty)
Eric Paris4043cde2012-01-03 14:23:08 -0500190 *empty = 1;
Al Viro94b5d262015-02-22 19:38:03 -0500191 if (!(flags & LOOKUP_EMPTY)) {
192 putname(result);
193 return ERR_PTR(-ENOENT);
194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 }
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700196
Jeff Layton7950e382012-10-10 16:43:13 -0400197 result->uptr = filename;
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800198 result->aname = NULL;
Jeff Layton7950e382012-10-10 16:43:13 -0400199 audit_getname(result);
200 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
Jeff Layton91a27b22012-10-10 15:25:28 -0400203struct filename *
204getname(const char __user * filename)
Al Virof52e0c12011-03-14 18:56:51 -0400205{
Linus Torvaldsf7493e52012-03-22 16:10:40 -0700206 return getname_flags(filename, 0, NULL);
Al Virof52e0c12011-03-14 18:56:51 -0400207}
208
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800209struct filename *
210getname_kernel(const char * filename)
211{
212 struct filename *result;
Paul Moore08518542015-01-21 23:59:56 -0500213 int len = strlen(filename) + 1;
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800214
215 result = __getname();
216 if (unlikely(!result))
217 return ERR_PTR(-ENOMEM);
218
Paul Moore08518542015-01-21 23:59:56 -0500219 if (len <= EMBEDDED_NAME_MAX) {
Al Virofd2f7cb2015-02-22 20:07:13 -0500220 result->name = (char *)result->iname;
Paul Moore08518542015-01-21 23:59:56 -0500221 } else if (len <= PATH_MAX) {
222 struct filename *tmp;
223
224 tmp = kmalloc(sizeof(*tmp), GFP_KERNEL);
225 if (unlikely(!tmp)) {
226 __putname(result);
227 return ERR_PTR(-ENOMEM);
228 }
229 tmp->name = (char *)result;
Paul Moore08518542015-01-21 23:59:56 -0500230 result = tmp;
231 } else {
232 __putname(result);
233 return ERR_PTR(-ENAMETOOLONG);
234 }
235 memcpy((char *)result->name, filename, len);
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800236 result->uptr = NULL;
237 result->aname = NULL;
Paul Moore55422d02015-01-22 00:00:23 -0500238 result->refcnt = 1;
Paul Moorefd3522f2015-01-22 00:00:10 -0500239 audit_getname(result);
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800240
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800241 return result;
242}
243
Jeff Layton91a27b22012-10-10 15:25:28 -0400244void putname(struct filename *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
Paul Moore55422d02015-01-22 00:00:23 -0500246 BUG_ON(name->refcnt <= 0);
247
248 if (--name->refcnt > 0)
249 return;
250
Al Virofd2f7cb2015-02-22 20:07:13 -0500251 if (name->name != name->iname) {
Paul Moore55422d02015-01-22 00:00:23 -0500252 __putname(name->name);
253 kfree(name);
254 } else
255 __putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Linus Torvaldse77819e2011-07-22 19:30:19 -0700258static int check_acl(struct inode *inode, int mask)
259{
Linus Torvalds84635d62011-07-25 22:47:03 -0700260#ifdef CONFIG_FS_POSIX_ACL
Linus Torvaldse77819e2011-07-22 19:30:19 -0700261 struct posix_acl *acl;
262
Linus Torvaldse77819e2011-07-22 19:30:19 -0700263 if (mask & MAY_NOT_BLOCK) {
Al Viro35678662011-08-02 21:32:13 -0400264 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
265 if (!acl)
Linus Torvaldse77819e2011-07-22 19:30:19 -0700266 return -EAGAIN;
Al Viro35678662011-08-02 21:32:13 -0400267 /* no ->get_acl() calls in RCU mode... */
268 if (acl == ACL_NOT_CACHED)
269 return -ECHILD;
Ari Savolainen206b1d02011-08-06 19:43:07 +0300270 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
Linus Torvaldse77819e2011-07-22 19:30:19 -0700271 }
272
Christoph Hellwig2982baa2013-12-20 05:16:38 -0800273 acl = get_acl(inode, ACL_TYPE_ACCESS);
274 if (IS_ERR(acl))
275 return PTR_ERR(acl);
Linus Torvaldse77819e2011-07-22 19:30:19 -0700276 if (acl) {
277 int error = posix_acl_permission(inode, acl, mask);
278 posix_acl_release(acl);
279 return error;
280 }
Linus Torvalds84635d62011-07-25 22:47:03 -0700281#endif
Linus Torvaldse77819e2011-07-22 19:30:19 -0700282
283 return -EAGAIN;
284}
285
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700286/*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530287 * This does the basic permission checking
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700288 */
Al Viro7e401452011-06-20 19:12:17 -0400289static int acl_permission_check(struct inode *inode, int mask)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700290{
Linus Torvalds26cf46b2011-05-13 11:51:01 -0700291 unsigned int mode = inode->i_mode;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700292
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -0800293 if (likely(uid_eq(current_fsuid(), inode->i_uid)))
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700294 mode >>= 6;
295 else {
Linus Torvaldse77819e2011-07-22 19:30:19 -0700296 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
Al Viro7e401452011-06-20 19:12:17 -0400297 int error = check_acl(inode, mask);
Nick Pigginb74c79e2011-01-07 17:49:58 +1100298 if (error != -EAGAIN)
299 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700300 }
301
302 if (in_group_p(inode->i_gid))
303 mode >>= 3;
304 }
305
306 /*
307 * If the DACs are ok we don't need any capability check.
308 */
Al Viro9c2c7032011-06-20 19:06:22 -0400309 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700310 return 0;
311 return -EACCES;
312}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100315 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 * @inode: inode to check access rights for
Andreas Gruenbacher8fd90c82011-10-23 23:13:30 +0530317 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 *
319 * Used to check for read/write/execute permissions on a file.
320 * We use "fsuid" for this, letting us set arbitrary permissions
321 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100322 * are used for other things.
323 *
324 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
325 * request cannot be satisfied (eg. requires blocking or too much complexity).
326 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 */
Al Viro2830ba72011-06-20 19:16:29 -0400328int generic_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700330 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
332 /*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530333 * Do the basic permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 */
Al Viro7e401452011-06-20 19:12:17 -0400335 ret = acl_permission_check(inode, mask);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700336 if (ret != -EACCES)
337 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Al Virod594e7e2011-06-20 19:55:42 -0400339 if (S_ISDIR(inode->i_mode)) {
340 /* DACs are overridable for directories */
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700341 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
Al Virod594e7e2011-06-20 19:55:42 -0400342 return 0;
343 if (!(mask & MAY_WRITE))
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700344 if (capable_wrt_inode_uidgid(inode,
345 CAP_DAC_READ_SEARCH))
Al Virod594e7e2011-06-20 19:55:42 -0400346 return 0;
347 return -EACCES;
348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 /*
350 * Read/write DACs are always overridable.
Al Virod594e7e2011-06-20 19:55:42 -0400351 * Executable DACs are overridable when there is
352 * at least one exec bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 */
Al Virod594e7e2011-06-20 19:55:42 -0400354 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700355 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return 0;
357
358 /*
359 * Searching includes executable on directories, else just read.
360 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600361 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Al Virod594e7e2011-06-20 19:55:42 -0400362 if (mask == MAY_READ)
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700363 if (capable_wrt_inode_uidgid(inode, CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return 0;
365
366 return -EACCES;
367}
Al Viro4d359502014-03-14 12:20:17 -0400368EXPORT_SYMBOL(generic_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700370/*
371 * We _really_ want to just do "generic_permission()" without
372 * even looking at the inode->i_op values. So we keep a cache
373 * flag in inode->i_opflags, that says "this has not special
374 * permission function, use the fast case".
375 */
376static inline int do_inode_permission(struct inode *inode, int mask)
377{
378 if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
379 if (likely(inode->i_op->permission))
380 return inode->i_op->permission(inode, mask);
381
382 /* This gets set once for the inode lifetime */
383 spin_lock(&inode->i_lock);
384 inode->i_opflags |= IOP_FASTPERM;
385 spin_unlock(&inode->i_lock);
386 }
387 return generic_permission(inode, mask);
388}
389
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200390/**
David Howells0bdaea92012-06-25 12:55:46 +0100391 * __inode_permission - Check for access rights to a given inode
392 * @inode: Inode to check permission on
393 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200394 *
David Howells0bdaea92012-06-25 12:55:46 +0100395 * Check for read/write/execute permissions on an inode.
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530396 *
397 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
David Howells0bdaea92012-06-25 12:55:46 +0100398 *
399 * This does not check for a read-only file system. You probably want
400 * inode_permission().
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200401 */
David Howells0bdaea92012-06-25 12:55:46 +0100402int __inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
Al Viroe6305c42008-07-15 21:03:57 -0400404 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700406 if (unlikely(mask & MAY_WRITE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 /*
408 * Nobody gets write access to an immutable file.
409 */
410 if (IS_IMMUTABLE(inode))
411 return -EACCES;
412 }
413
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700414 retval = do_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 if (retval)
416 return retval;
417
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700418 retval = devcgroup_inode_permission(inode, mask);
419 if (retval)
420 return retval;
421
Eric Parisd09ca732010-07-23 11:43:57 -0400422 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
Miklos Szeredibd5d0852014-10-24 00:14:35 +0200424EXPORT_SYMBOL(__inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Al Virof4d6ff82011-06-19 13:14:21 -0400426/**
David Howells0bdaea92012-06-25 12:55:46 +0100427 * sb_permission - Check superblock-level permissions
428 * @sb: Superblock of inode to check permission on
Randy Dunlap55852632012-08-18 17:39:25 -0700429 * @inode: Inode to check permission on
David Howells0bdaea92012-06-25 12:55:46 +0100430 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
431 *
432 * Separate out file-system wide checks from inode-specific permission checks.
433 */
434static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
435{
436 if (unlikely(mask & MAY_WRITE)) {
437 umode_t mode = inode->i_mode;
438
439 /* Nobody gets write access to a read-only fs. */
440 if ((sb->s_flags & MS_RDONLY) &&
441 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
442 return -EROFS;
443 }
444 return 0;
445}
446
447/**
448 * inode_permission - Check for access rights to a given inode
449 * @inode: Inode to check permission on
450 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
451 *
452 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
453 * this, letting us set arbitrary permissions for filesystem access without
454 * changing the "normal" UIDs which are used for other things.
455 *
456 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
457 */
458int inode_permission(struct inode *inode, int mask)
459{
460 int retval;
461
462 retval = sb_permission(inode->i_sb, inode, mask);
463 if (retval)
464 return retval;
465 return __inode_permission(inode, mask);
466}
Al Viro4d359502014-03-14 12:20:17 -0400467EXPORT_SYMBOL(inode_permission);
David Howells0bdaea92012-06-25 12:55:46 +0100468
469/**
Jan Blunck5dd784d2008-02-14 19:34:38 -0800470 * path_get - get a reference to a path
471 * @path: path to get the reference to
472 *
473 * Given a path increment the reference count to the dentry and the vfsmount.
474 */
Al Virodcf787f2013-03-01 23:51:07 -0500475void path_get(const struct path *path)
Jan Blunck5dd784d2008-02-14 19:34:38 -0800476{
477 mntget(path->mnt);
478 dget(path->dentry);
479}
480EXPORT_SYMBOL(path_get);
481
482/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800483 * path_put - put a reference to a path
484 * @path: path to put the reference to
485 *
486 * Given a path decrement the reference count to the dentry and the vfsmount.
487 */
Al Virodcf787f2013-03-01 23:51:07 -0500488void path_put(const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Jan Blunck1d957f92008-02-14 19:34:35 -0800490 dput(path->dentry);
491 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
Jan Blunck1d957f92008-02-14 19:34:35 -0800493EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
Al Viro1f55a6e2014-11-01 19:30:41 -0400495struct nameidata {
496 struct path path;
Al Virocaa85632015-04-22 17:52:47 -0400497 union {
498 struct qstr last;
499 struct path link;
500 };
Al Viro1f55a6e2014-11-01 19:30:41 -0400501 struct path root;
502 struct inode *inode; /* path.dentry.d_inode */
503 unsigned int flags;
504 unsigned seq, m_seq;
505 int last_type;
506 unsigned depth;
Al Viro5e530842014-11-20 14:14:42 -0500507 struct file *base;
Al Viro1f55a6e2014-11-01 19:30:41 -0400508};
509
Al Viro19660af2011-03-25 10:32:48 -0400510/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100511 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400512 * Documentation/filesystems/path-lookup.txt). In situations when we can't
513 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
514 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
515 * mode. Refcounts are grabbed at the last known good point before rcu-walk
516 * got stuck, so ref-walk may continue from there. If this is not successful
517 * (eg. a seqcount has changed), then failure is returned and it's up to caller
518 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100519 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100520
521/**
Al Viro19660af2011-03-25 10:32:48 -0400522 * unlazy_walk - try to switch to ref-walk mode.
523 * @nd: nameidata pathwalk data
524 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800525 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100526 *
Al Viro19660af2011-03-25 10:32:48 -0400527 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
528 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
529 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100530 */
Al Viro19660af2011-03-25 10:32:48 -0400531static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100532{
533 struct fs_struct *fs = current->fs;
534 struct dentry *parent = nd->path.dentry;
535
536 BUG_ON(!(nd->flags & LOOKUP_RCU));
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700537
538 /*
Al Viro48a066e2013-09-29 22:06:07 -0400539 * After legitimizing the bastards, terminate_walk()
540 * will do the right thing for non-RCU mode, and all our
541 * subsequent exit cases should rcu_read_unlock()
542 * before returning. Do vfsmount first; if dentry
543 * can't be legitimized, just set nd->path.dentry to NULL
544 * and rely on dput(NULL) being a no-op.
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700545 */
Al Viro48a066e2013-09-29 22:06:07 -0400546 if (!legitimize_mnt(nd->path.mnt, nd->m_seq))
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700547 return -ECHILD;
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700548 nd->flags &= ~LOOKUP_RCU;
Linus Torvalds15570082013-09-02 11:38:06 -0700549
Al Viro48a066e2013-09-29 22:06:07 -0400550 if (!lockref_get_not_dead(&parent->d_lockref)) {
551 nd->path.dentry = NULL;
Al Virod870b4a2013-11-29 01:48:32 -0500552 goto out;
Al Viro48a066e2013-09-29 22:06:07 -0400553 }
554
Linus Torvalds15570082013-09-02 11:38:06 -0700555 /*
556 * For a negative lookup, the lookup sequence point is the parents
557 * sequence point, and it only needs to revalidate the parent dentry.
558 *
559 * For a positive lookup, we need to move both the parent and the
560 * dentry from the RCU domain to be properly refcounted. And the
561 * sequence number in the dentry validates *both* dentry counters,
562 * since we checked the sequence number of the parent after we got
563 * the child sequence number. So we know the parent must still
564 * be valid if the child sequence number is still valid.
565 */
Al Viro19660af2011-03-25 10:32:48 -0400566 if (!dentry) {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700567 if (read_seqcount_retry(&parent->d_seq, nd->seq))
568 goto out;
Al Viro19660af2011-03-25 10:32:48 -0400569 BUG_ON(nd->inode != parent->d_inode);
570 } else {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700571 if (!lockref_get_not_dead(&dentry->d_lockref))
572 goto out;
573 if (read_seqcount_retry(&dentry->d_seq, nd->seq))
574 goto drop_dentry;
Al Viro19660af2011-03-25 10:32:48 -0400575 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700576
577 /*
578 * Sequence counts matched. Now make sure that the root is
579 * still valid and get it if required.
580 */
581 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
582 spin_lock(&fs->lock);
583 if (nd->root.mnt != fs->root.mnt || nd->root.dentry != fs->root.dentry)
584 goto unlock_and_drop_dentry;
Nick Piggin31e6b012011-01-07 17:49:52 +1100585 path_get(&nd->root);
586 spin_unlock(&fs->lock);
587 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100588
Al Viro8b61e742013-11-08 12:45:01 -0500589 rcu_read_unlock();
Nick Piggin31e6b012011-01-07 17:49:52 +1100590 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400591
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700592unlock_and_drop_dentry:
593 spin_unlock(&fs->lock);
594drop_dentry:
Al Viro8b61e742013-11-08 12:45:01 -0500595 rcu_read_unlock();
Linus Torvalds15570082013-09-02 11:38:06 -0700596 dput(dentry);
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700597 goto drop_root_mnt;
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700598out:
Al Viro8b61e742013-11-08 12:45:01 -0500599 rcu_read_unlock();
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700600drop_root_mnt:
601 if (!(nd->flags & LOOKUP_ROOT))
602 nd->root.mnt = NULL;
Nick Piggin31e6b012011-01-07 17:49:52 +1100603 return -ECHILD;
604}
605
Al Viro4ce16ef32012-06-10 16:10:59 -0400606static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
Nick Piggin34286d62011-01-07 17:49:57 +1100607{
Al Viro4ce16ef32012-06-10 16:10:59 -0400608 return dentry->d_op->d_revalidate(dentry, flags);
Nick Piggin34286d62011-01-07 17:49:57 +1100609}
610
Al Viro9f1fafe2011-03-25 11:00:12 -0400611/**
612 * complete_walk - successful completion of path walk
613 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500614 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400615 * If we had been in RCU mode, drop out of it and legitimize nd->path.
616 * Revalidate the final result, unless we'd already done that during
617 * the path walk or the filesystem doesn't ask for it. Return 0 on
618 * success, -error on failure. In case of failure caller does not
619 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500620 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400621static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500622{
Al Viro16c2cd72011-02-22 15:50:10 -0500623 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500624 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500625
Al Viro9f1fafe2011-03-25 11:00:12 -0400626 if (nd->flags & LOOKUP_RCU) {
627 nd->flags &= ~LOOKUP_RCU;
628 if (!(nd->flags & LOOKUP_ROOT))
629 nd->root.mnt = NULL;
Linus Torvalds15570082013-09-02 11:38:06 -0700630
Al Viro48a066e2013-09-29 22:06:07 -0400631 if (!legitimize_mnt(nd->path.mnt, nd->m_seq)) {
Al Viro8b61e742013-11-08 12:45:01 -0500632 rcu_read_unlock();
Al Viro48a066e2013-09-29 22:06:07 -0400633 return -ECHILD;
634 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700635 if (unlikely(!lockref_get_not_dead(&dentry->d_lockref))) {
Al Viro8b61e742013-11-08 12:45:01 -0500636 rcu_read_unlock();
Al Viro48a066e2013-09-29 22:06:07 -0400637 mntput(nd->path.mnt);
Al Viro9f1fafe2011-03-25 11:00:12 -0400638 return -ECHILD;
639 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700640 if (read_seqcount_retry(&dentry->d_seq, nd->seq)) {
Al Viro8b61e742013-11-08 12:45:01 -0500641 rcu_read_unlock();
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700642 dput(dentry);
Al Viro48a066e2013-09-29 22:06:07 -0400643 mntput(nd->path.mnt);
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700644 return -ECHILD;
645 }
Al Viro8b61e742013-11-08 12:45:01 -0500646 rcu_read_unlock();
Al Viro9f1fafe2011-03-25 11:00:12 -0400647 }
648
Al Viro16c2cd72011-02-22 15:50:10 -0500649 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500650 return 0;
651
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500652 if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
Al Viro16c2cd72011-02-22 15:50:10 -0500653 return 0;
654
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500655 status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
Jeff Layton39159de2009-12-07 12:01:50 -0500656 if (status > 0)
657 return 0;
658
Al Viro16c2cd72011-02-22 15:50:10 -0500659 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500660 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500661
Al Viro9f1fafe2011-03-25 11:00:12 -0400662 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500663 return status;
664}
665
Al Viro2a737872009-04-07 11:49:53 -0400666static __always_inline void set_root(struct nameidata *nd)
667{
Al Viro7bd88372014-09-13 21:55:46 -0400668 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400669}
670
Al Viro6de88d72009-08-09 01:41:57 +0400671static int link_path_walk(const char *, struct nameidata *);
672
Al Viro7bd88372014-09-13 21:55:46 -0400673static __always_inline unsigned set_root_rcu(struct nameidata *nd)
Nick Piggin31e6b012011-01-07 17:49:52 +1100674{
Al Viro7bd88372014-09-13 21:55:46 -0400675 struct fs_struct *fs = current->fs;
676 unsigned seq, res;
Nick Pigginc28cc362011-01-07 17:49:53 +1100677
Al Viro7bd88372014-09-13 21:55:46 -0400678 do {
679 seq = read_seqcount_begin(&fs->seq);
680 nd->root = fs->root;
681 res = __read_seqcount_begin(&nd->root.dentry->d_seq);
682 } while (read_seqcount_retry(&fs->seq, seq));
683 return res;
Nick Piggin31e6b012011-01-07 17:49:52 +1100684}
685
Jan Blunck1d957f92008-02-14 19:34:35 -0800686static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700687{
688 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800689 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700690 mntput(path->mnt);
691}
692
Nick Piggin7b9337a2011-01-14 08:42:43 +0000693static inline void path_to_nameidata(const struct path *path,
694 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700695{
Nick Piggin31e6b012011-01-07 17:49:52 +1100696 if (!(nd->flags & LOOKUP_RCU)) {
697 dput(nd->path.dentry);
698 if (nd->path.mnt != path->mnt)
699 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800700 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100701 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800702 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700703}
704
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400705/*
706 * Helper to directly jump to a known parsed path from ->follow_link,
707 * caller must have taken a reference to path beforehand.
708 */
709void nd_jump_link(struct nameidata *nd, struct path *path)
710{
711 path_put(&nd->path);
712
713 nd->path = *path;
714 nd->inode = nd->path.dentry->d_inode;
715 nd->flags |= LOOKUP_JUMPED;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400716}
717
Al Viro574197e2011-03-14 22:20:34 -0400718static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
719{
720 struct inode *inode = link->dentry->d_inode;
Al Viro680baac2015-05-02 13:32:22 -0400721 if (cookie && inode->i_op->put_link)
722 inode->i_op->put_link(link->dentry, cookie);
Al Viro574197e2011-03-14 22:20:34 -0400723 path_put(link);
724}
725
Linus Torvalds561ec642012-10-26 10:05:07 -0700726int sysctl_protected_symlinks __read_mostly = 0;
727int sysctl_protected_hardlinks __read_mostly = 0;
Kees Cook800179c2012-07-25 17:29:07 -0700728
729/**
730 * may_follow_link - Check symlink following for unsafe situations
731 * @link: The path of the symlink
Randy Dunlap55852632012-08-18 17:39:25 -0700732 * @nd: nameidata pathwalk data
Kees Cook800179c2012-07-25 17:29:07 -0700733 *
734 * In the case of the sysctl_protected_symlinks sysctl being enabled,
735 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
736 * in a sticky world-writable directory. This is to protect privileged
737 * processes from failing races against path names that may change out
738 * from under them by way of other users creating malicious symlinks.
739 * It will permit symlinks to be followed only when outside a sticky
740 * world-writable directory, or when the uid of the symlink and follower
741 * match, or when the directory owner matches the symlink's owner.
742 *
743 * Returns 0 if following the symlink is allowed, -ve on error.
744 */
745static inline int may_follow_link(struct path *link, struct nameidata *nd)
746{
747 const struct inode *inode;
748 const struct inode *parent;
749
750 if (!sysctl_protected_symlinks)
751 return 0;
752
753 /* Allowed if owner and follower match. */
754 inode = link->dentry->d_inode;
Eric W. Biederman81abe272012-08-03 09:38:08 -0700755 if (uid_eq(current_cred()->fsuid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700756 return 0;
757
758 /* Allowed if parent directory not sticky and world-writable. */
759 parent = nd->path.dentry->d_inode;
760 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
761 return 0;
762
763 /* Allowed if parent directory and link owner match. */
Eric W. Biederman81abe272012-08-03 09:38:08 -0700764 if (uid_eq(parent->i_uid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700765 return 0;
766
Sasha Levinffd8d102012-10-04 19:56:40 -0400767 audit_log_link_denied("follow_link", link);
Kees Cook800179c2012-07-25 17:29:07 -0700768 path_put_conditional(link, nd);
769 path_put(&nd->path);
770 return -EACCES;
771}
772
773/**
774 * safe_hardlink_source - Check for safe hardlink conditions
775 * @inode: the source inode to hardlink from
776 *
777 * Return false if at least one of the following conditions:
778 * - inode is not a regular file
779 * - inode is setuid
780 * - inode is setgid and group-exec
781 * - access failure for read and write
782 *
783 * Otherwise returns true.
784 */
785static bool safe_hardlink_source(struct inode *inode)
786{
787 umode_t mode = inode->i_mode;
788
789 /* Special files should not get pinned to the filesystem. */
790 if (!S_ISREG(mode))
791 return false;
792
793 /* Setuid files should not get pinned to the filesystem. */
794 if (mode & S_ISUID)
795 return false;
796
797 /* Executable setgid files should not get pinned to the filesystem. */
798 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
799 return false;
800
801 /* Hardlinking to unreadable or unwritable sources is dangerous. */
802 if (inode_permission(inode, MAY_READ | MAY_WRITE))
803 return false;
804
805 return true;
806}
807
808/**
809 * may_linkat - Check permissions for creating a hardlink
810 * @link: the source to hardlink from
811 *
812 * Block hardlink when all of:
813 * - sysctl_protected_hardlinks enabled
814 * - fsuid does not match inode
815 * - hardlink source is unsafe (see safe_hardlink_source() above)
816 * - not CAP_FOWNER
817 *
818 * Returns 0 if successful, -ve on error.
819 */
820static int may_linkat(struct path *link)
821{
822 const struct cred *cred;
823 struct inode *inode;
824
825 if (!sysctl_protected_hardlinks)
826 return 0;
827
828 cred = current_cred();
829 inode = link->dentry->d_inode;
830
831 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
832 * otherwise, it must be a safe source.
833 */
Eric W. Biederman81abe272012-08-03 09:38:08 -0700834 if (uid_eq(cred->fsuid, inode->i_uid) || safe_hardlink_source(inode) ||
Kees Cook800179c2012-07-25 17:29:07 -0700835 capable(CAP_FOWNER))
836 return 0;
837
Kees Cooka51d9ea2012-07-25 17:29:08 -0700838 audit_log_link_denied("linkat", link);
Kees Cook800179c2012-07-25 17:29:07 -0700839 return -EPERM;
840}
841
Al Viro0a959df2015-04-18 18:23:41 -0400842static __always_inline const char *
843get_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800844{
Nick Piggin7b9337a2011-01-14 08:42:43 +0000845 struct dentry *dentry = link->dentry;
Al Viro0a959df2015-04-18 18:23:41 -0400846 struct inode *inode = dentry->d_inode;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400847 int error;
Al Viro0a959df2015-04-18 18:23:41 -0400848 const char *res;
Ian Kent051d3812006-03-27 01:14:53 -0800849
Al Viro844a3912011-02-15 00:38:26 -0500850 BUG_ON(nd->flags & LOOKUP_RCU);
851
Al Viro0e794582011-03-16 02:45:02 -0400852 if (link->mnt == nd->path.mnt)
853 mntget(link->mnt);
854
Al Viro0a959df2015-04-18 18:23:41 -0400855 res = ERR_PTR(-ELOOP);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400856 if (unlikely(current->total_link_count >= 40))
Al Viro0a959df2015-04-18 18:23:41 -0400857 goto out;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400858
Al Viro574197e2011-03-14 22:20:34 -0400859 cond_resched();
860 current->total_link_count++;
861
Al Viro68ac1232012-03-15 08:21:57 -0400862 touch_atime(link);
Ian Kent051d3812006-03-27 01:14:53 -0800863
NeilBrown37882db2015-03-23 13:37:39 +1100864 error = security_inode_follow_link(dentry);
Al Viro0a959df2015-04-18 18:23:41 -0400865 res = ERR_PTR(error);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400866 if (error)
Al Viro0a959df2015-04-18 18:23:41 -0400867 goto out;
Al Viro36f3b4f2011-02-22 21:24:38 -0500868
Al Viro86acdca12009-12-22 23:45:11 -0500869 nd->last_type = LAST_BIND;
Al Viro680baac2015-05-02 13:32:22 -0400870 *p = NULL;
Al Virod4dee482015-04-30 20:08:02 -0400871 res = inode->i_link;
872 if (!res) {
873 res = inode->i_op->follow_link(dentry, p, nd);
874 if (IS_ERR(res)) {
Al Viro0a959df2015-04-18 18:23:41 -0400875out:
Al Virod4dee482015-04-30 20:08:02 -0400876 path_put(&nd->path);
877 path_put(link);
878 }
Ian Kent051d3812006-03-27 01:14:53 -0800879 }
Al Viro0a959df2015-04-18 18:23:41 -0400880 return res;
881}
Al Viro6d7b5aa2012-06-10 04:15:17 -0400882
Al Viro172a39a2015-04-18 18:45:16 -0400883static int follow_link(struct path *link, struct nameidata *nd, void **p)
Al Viro0a959df2015-04-18 18:23:41 -0400884{
885 const char *s = get_link(link, nd, p);
886 int error;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400887
Al Viro0a959df2015-04-18 18:23:41 -0400888 if (unlikely(IS_ERR(s)))
889 return PTR_ERR(s);
890 if (unlikely(!s))
891 return 0;
892 if (*s == '/') {
893 if (!nd->root.mnt)
894 set_root(nd);
895 path_put(&nd->path);
896 nd->path = nd->root;
897 path_get(&nd->root);
898 nd->flags |= LOOKUP_JUMPED;
899 }
900 nd->inode = nd->path.dentry->d_inode;
901 error = link_path_walk(s, nd);
902 if (unlikely(error))
903 put_link(nd, link, *p);
Ian Kent051d3812006-03-27 01:14:53 -0800904 return error;
905}
906
Nick Piggin31e6b012011-01-07 17:49:52 +1100907static int follow_up_rcu(struct path *path)
908{
Al Viro0714a532011-11-24 22:19:58 -0500909 struct mount *mnt = real_mount(path->mnt);
910 struct mount *parent;
Nick Piggin31e6b012011-01-07 17:49:52 +1100911 struct dentry *mountpoint;
912
Al Viro0714a532011-11-24 22:19:58 -0500913 parent = mnt->mnt_parent;
914 if (&parent->mnt == path->mnt)
Nick Piggin31e6b012011-01-07 17:49:52 +1100915 return 0;
Al Viroa73324d2011-11-24 22:25:07 -0500916 mountpoint = mnt->mnt_mountpoint;
Nick Piggin31e6b012011-01-07 17:49:52 +1100917 path->dentry = mountpoint;
Al Viro0714a532011-11-24 22:19:58 -0500918 path->mnt = &parent->mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +1100919 return 1;
920}
921
David Howellsf015f1262012-06-25 12:55:28 +0100922/*
923 * follow_up - Find the mountpoint of path's vfsmount
924 *
925 * Given a path, find the mountpoint of its source file system.
926 * Replace @path with the path of the mountpoint in the parent mount.
927 * Up is towards /.
928 *
929 * Return 1 if we went up a level and 0 if we were already at the
930 * root.
931 */
Al Virobab77eb2009-04-18 03:26:48 -0400932int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933{
Al Viro0714a532011-11-24 22:19:58 -0500934 struct mount *mnt = real_mount(path->mnt);
935 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000937
Al Viro48a066e2013-09-29 22:06:07 -0400938 read_seqlock_excl(&mount_lock);
Al Viro0714a532011-11-24 22:19:58 -0500939 parent = mnt->mnt_parent;
Al Viro3c0a6162012-07-18 17:32:50 +0400940 if (parent == mnt) {
Al Viro48a066e2013-09-29 22:06:07 -0400941 read_sequnlock_excl(&mount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 return 0;
943 }
Al Viro0714a532011-11-24 22:19:58 -0500944 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -0500945 mountpoint = dget(mnt->mnt_mountpoint);
Al Viro48a066e2013-09-29 22:06:07 -0400946 read_sequnlock_excl(&mount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400947 dput(path->dentry);
948 path->dentry = mountpoint;
949 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -0500950 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 return 1;
952}
Al Viro4d359502014-03-14 12:20:17 -0400953EXPORT_SYMBOL(follow_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100955/*
David Howells9875cf82011-01-14 18:45:21 +0000956 * Perform an automount
957 * - return -EISDIR to tell follow_managed() to stop and return the path we
958 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 */
David Howells9875cf82011-01-14 18:45:21 +0000960static int follow_automount(struct path *path, unsigned flags,
961 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100962{
David Howells9875cf82011-01-14 18:45:21 +0000963 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000964 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100965
David Howells9875cf82011-01-14 18:45:21 +0000966 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
967 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700968
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200969 /* We don't want to mount if someone's just doing a stat -
970 * unless they're stat'ing a directory and appended a '/' to
971 * the name.
972 *
973 * We do, however, want to mount if someone wants to open or
974 * create a file of any type under the mountpoint, wants to
975 * traverse through the mountpoint or wants to open the
976 * mounted directory. Also, autofs may mark negative dentries
977 * as being automount points. These will need the attentions
978 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +0000979 */
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200980 if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
Linus Torvaldsd94c1772011-09-26 17:44:55 -0700981 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200982 path->dentry->d_inode)
983 return -EISDIR;
984
David Howells9875cf82011-01-14 18:45:21 +0000985 current->total_link_count++;
986 if (current->total_link_count >= 40)
987 return -ELOOP;
988
989 mnt = path->dentry->d_op->d_automount(path);
990 if (IS_ERR(mnt)) {
991 /*
992 * The filesystem is allowed to return -EISDIR here to indicate
993 * it doesn't want to automount. For instance, autofs would do
994 * this so that its userspace daemon can mount on this dentry.
995 *
996 * However, we can only permit this if it's a terminal point in
997 * the path being looked up; if it wasn't then the remainder of
998 * the path is inaccessible and we should say so.
999 */
Al Viro49084c32011-06-25 21:59:52 -04001000 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +00001001 return -EREMOTE;
1002 return PTR_ERR(mnt);
1003 }
David Howellsea5b7782011-01-14 19:10:03 +00001004
David Howells9875cf82011-01-14 18:45:21 +00001005 if (!mnt) /* mount collision */
1006 return 0;
1007
Al Viro8aef1882011-06-16 15:10:06 +01001008 if (!*need_mntput) {
1009 /* lock_mount() may release path->mnt on error */
1010 mntget(path->mnt);
1011 *need_mntput = true;
1012 }
Al Viro19a167a2011-01-17 01:35:23 -05001013 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +00001014
David Howellsea5b7782011-01-14 19:10:03 +00001015 switch (err) {
1016 case -EBUSY:
1017 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -05001018 return 0;
David Howellsea5b7782011-01-14 19:10:03 +00001019 case 0:
Al Viro8aef1882011-06-16 15:10:06 +01001020 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +00001021 path->mnt = mnt;
1022 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +00001023 return 0;
Al Viro19a167a2011-01-17 01:35:23 -05001024 default:
1025 return err;
David Howellsea5b7782011-01-14 19:10:03 +00001026 }
Al Viro19a167a2011-01-17 01:35:23 -05001027
David Howells9875cf82011-01-14 18:45:21 +00001028}
1029
1030/*
1031 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +00001032 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +00001033 * - Flagged as mountpoint
1034 * - Flagged as automount point
1035 *
1036 * This may only be called in refwalk mode.
1037 *
1038 * Serialization is taken care of in namespace.c
1039 */
1040static int follow_managed(struct path *path, unsigned flags)
1041{
Al Viro8aef1882011-06-16 15:10:06 +01001042 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +00001043 unsigned managed;
1044 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +01001045 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +00001046
1047 /* Given that we're not holding a lock here, we retain the value in a
1048 * local variable for each dentry as we look at it so that we don't see
1049 * the components of that value change under us */
1050 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1051 managed &= DCACHE_MANAGED_DENTRY,
1052 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +00001053 /* Allow the filesystem to manage the transit without i_mutex
1054 * being held. */
1055 if (managed & DCACHE_MANAGE_TRANSIT) {
1056 BUG_ON(!path->dentry->d_op);
1057 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -04001058 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001059 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001060 break;
David Howellscc53ce52011-01-14 18:45:26 +00001061 }
1062
David Howells9875cf82011-01-14 18:45:21 +00001063 /* Transit to a mounted filesystem. */
1064 if (managed & DCACHE_MOUNTED) {
1065 struct vfsmount *mounted = lookup_mnt(path);
1066 if (mounted) {
1067 dput(path->dentry);
1068 if (need_mntput)
1069 mntput(path->mnt);
1070 path->mnt = mounted;
1071 path->dentry = dget(mounted->mnt_root);
1072 need_mntput = true;
1073 continue;
1074 }
1075
1076 /* Something is mounted on this dentry in another
1077 * namespace and/or whatever was mounted there in this
Al Viro48a066e2013-09-29 22:06:07 -04001078 * namespace got unmounted before lookup_mnt() could
1079 * get it */
David Howells9875cf82011-01-14 18:45:21 +00001080 }
1081
1082 /* Handle an automount point */
1083 if (managed & DCACHE_NEED_AUTOMOUNT) {
1084 ret = follow_automount(path, flags, &need_mntput);
1085 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001086 break;
David Howells9875cf82011-01-14 18:45:21 +00001087 continue;
1088 }
1089
1090 /* We didn't change the current path point */
1091 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 }
Al Viro8aef1882011-06-16 15:10:06 +01001093
1094 if (need_mntput && path->mnt == mnt)
1095 mntput(path->mnt);
1096 if (ret == -EISDIR)
1097 ret = 0;
Al Viroa3fbbde2011-11-07 21:21:26 +00001098 return ret < 0 ? ret : need_mntput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099}
1100
David Howellscc53ce52011-01-14 18:45:26 +00001101int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
1103 struct vfsmount *mounted;
1104
Al Viro1c755af2009-04-18 14:06:57 -04001105 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -04001107 dput(path->dentry);
1108 mntput(path->mnt);
1109 path->mnt = mounted;
1110 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 return 1;
1112 }
1113 return 0;
1114}
Al Viro4d359502014-03-14 12:20:17 -04001115EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
NeilBrownb8faf032014-08-04 17:06:29 +10001117static inline int managed_dentry_rcu(struct dentry *dentry)
Ian Kent62a73752011-03-25 01:51:02 +08001118{
NeilBrownb8faf032014-08-04 17:06:29 +10001119 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
1120 dentry->d_op->d_manage(dentry, true) : 0;
Ian Kent62a73752011-03-25 01:51:02 +08001121}
1122
David Howells9875cf82011-01-14 18:45:21 +00001123/*
Al Viro287548e2011-05-27 06:50:06 -04001124 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1125 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +00001126 */
1127static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -04001128 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +00001129{
Ian Kent62a73752011-03-25 01:51:02 +08001130 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -05001131 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +08001132 /*
1133 * Don't forget we might have a non-mountpoint managed dentry
1134 * that wants to block transit.
1135 */
NeilBrownb8faf032014-08-04 17:06:29 +10001136 switch (managed_dentry_rcu(path->dentry)) {
1137 case -ECHILD:
1138 default:
David Howellsab909112011-01-14 18:46:51 +00001139 return false;
NeilBrownb8faf032014-08-04 17:06:29 +10001140 case -EISDIR:
1141 return true;
1142 case 0:
1143 break;
1144 }
Ian Kent62a73752011-03-25 01:51:02 +08001145
1146 if (!d_mountpoint(path->dentry))
NeilBrownb8faf032014-08-04 17:06:29 +10001147 return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Ian Kent62a73752011-03-25 01:51:02 +08001148
Al Viro474279d2013-10-01 16:11:26 -04001149 mounted = __lookup_mnt(path->mnt, path->dentry);
David Howells9875cf82011-01-14 18:45:21 +00001150 if (!mounted)
1151 break;
Al Viroc7105362011-11-24 18:22:03 -05001152 path->mnt = &mounted->mnt;
1153 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +00001154 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001155 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -07001156 /*
1157 * Update the inode too. We don't need to re-check the
1158 * dentry sequence number here after this d_inode read,
1159 * because a mount-point is always pinned.
1160 */
1161 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +00001162 }
Al Virof5be3e29122014-09-13 21:50:45 -04001163 return !read_seqretry(&mount_lock, nd->m_seq) &&
NeilBrownb8faf032014-08-04 17:06:29 +10001164 !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Al Viro287548e2011-05-27 06:50:06 -04001165}
1166
Nick Piggin31e6b012011-01-07 17:49:52 +11001167static int follow_dotdot_rcu(struct nameidata *nd)
1168{
Al Viro4023bfc2014-09-13 21:59:43 -04001169 struct inode *inode = nd->inode;
Al Viro7bd88372014-09-13 21:55:46 -04001170 if (!nd->root.mnt)
1171 set_root_rcu(nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001172
David Howells9875cf82011-01-14 18:45:21 +00001173 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001174 if (nd->path.dentry == nd->root.dentry &&
1175 nd->path.mnt == nd->root.mnt) {
1176 break;
1177 }
1178 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1179 struct dentry *old = nd->path.dentry;
1180 struct dentry *parent = old->d_parent;
1181 unsigned seq;
1182
Al Viro4023bfc2014-09-13 21:59:43 -04001183 inode = parent->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001184 seq = read_seqcount_begin(&parent->d_seq);
1185 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -05001186 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +11001187 nd->path.dentry = parent;
1188 nd->seq = seq;
1189 break;
1190 }
1191 if (!follow_up_rcu(&nd->path))
1192 break;
Al Viro4023bfc2014-09-13 21:59:43 -04001193 inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001194 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +11001195 }
Al Virob37199e2014-03-20 15:18:22 -04001196 while (d_mountpoint(nd->path.dentry)) {
1197 struct mount *mounted;
1198 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
1199 if (!mounted)
1200 break;
1201 nd->path.mnt = &mounted->mnt;
1202 nd->path.dentry = mounted->mnt.mnt_root;
Al Viro4023bfc2014-09-13 21:59:43 -04001203 inode = nd->path.dentry->d_inode;
Al Virob37199e2014-03-20 15:18:22 -04001204 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Virof5be3e29122014-09-13 21:50:45 -04001205 if (read_seqretry(&mount_lock, nd->m_seq))
Al Virob37199e2014-03-20 15:18:22 -04001206 goto failed;
1207 }
Al Viro4023bfc2014-09-13 21:59:43 -04001208 nd->inode = inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001209 return 0;
Al Viroef7562d2011-03-04 14:35:59 -05001210
1211failed:
1212 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001213 if (!(nd->flags & LOOKUP_ROOT))
1214 nd->root.mnt = NULL;
Al Viro8b61e742013-11-08 12:45:01 -05001215 rcu_read_unlock();
Al Viroef7562d2011-03-04 14:35:59 -05001216 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001217}
1218
David Howells9875cf82011-01-14 18:45:21 +00001219/*
David Howellscc53ce52011-01-14 18:45:26 +00001220 * Follow down to the covering mount currently visible to userspace. At each
1221 * point, the filesystem owning that dentry may be queried as to whether the
1222 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001223 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001224int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001225{
1226 unsigned managed;
1227 int ret;
1228
1229 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1230 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1231 /* Allow the filesystem to manage the transit without i_mutex
1232 * being held.
1233 *
1234 * We indicate to the filesystem if someone is trying to mount
1235 * something here. This gives autofs the chance to deny anyone
1236 * other than its daemon the right to mount on its
1237 * superstructure.
1238 *
1239 * The filesystem may sleep at this point.
1240 */
1241 if (managed & DCACHE_MANAGE_TRANSIT) {
1242 BUG_ON(!path->dentry->d_op);
1243 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001244 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001245 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001246 if (ret < 0)
1247 return ret == -EISDIR ? 0 : ret;
1248 }
1249
1250 /* Transit to a mounted filesystem. */
1251 if (managed & DCACHE_MOUNTED) {
1252 struct vfsmount *mounted = lookup_mnt(path);
1253 if (!mounted)
1254 break;
1255 dput(path->dentry);
1256 mntput(path->mnt);
1257 path->mnt = mounted;
1258 path->dentry = dget(mounted->mnt_root);
1259 continue;
1260 }
1261
1262 /* Don't handle automount points here */
1263 break;
1264 }
1265 return 0;
1266}
Al Viro4d359502014-03-14 12:20:17 -04001267EXPORT_SYMBOL(follow_down);
David Howellscc53ce52011-01-14 18:45:26 +00001268
1269/*
David Howells9875cf82011-01-14 18:45:21 +00001270 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1271 */
1272static void follow_mount(struct path *path)
1273{
1274 while (d_mountpoint(path->dentry)) {
1275 struct vfsmount *mounted = lookup_mnt(path);
1276 if (!mounted)
1277 break;
1278 dput(path->dentry);
1279 mntput(path->mnt);
1280 path->mnt = mounted;
1281 path->dentry = dget(mounted->mnt_root);
1282 }
1283}
1284
Nick Piggin31e6b012011-01-07 17:49:52 +11001285static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
Al Viro7bd88372014-09-13 21:55:46 -04001287 if (!nd->root.mnt)
1288 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001291 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292
Al Viro2a737872009-04-07 11:49:53 -04001293 if (nd->path.dentry == nd->root.dentry &&
1294 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 break;
1296 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001297 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001298 /* rare case of legitimate dget_parent()... */
1299 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 dput(old);
1301 break;
1302 }
Al Viro3088dd72010-01-30 15:47:29 -05001303 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
Al Viro79ed0222009-04-18 13:59:41 -04001306 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001307 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308}
1309
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001311 * This looks up the name in dcache, possibly revalidates the old dentry and
1312 * allocates a new one if not found or not valid. In the need_lookup argument
1313 * returns whether i_op->lookup is necessary.
1314 *
1315 * dir->d_inode->i_mutex must be held
Nick Pigginbaa03892010-08-18 04:37:31 +10001316 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001317static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
Al Viro201f9562012-06-22 12:42:10 +04001318 unsigned int flags, bool *need_lookup)
Nick Pigginbaa03892010-08-18 04:37:31 +10001319{
Nick Pigginbaa03892010-08-18 04:37:31 +10001320 struct dentry *dentry;
Miklos Szeredibad61182012-03-26 12:54:24 +02001321 int error;
Nick Pigginbaa03892010-08-18 04:37:31 +10001322
Miklos Szeredibad61182012-03-26 12:54:24 +02001323 *need_lookup = false;
1324 dentry = d_lookup(dir, name);
1325 if (dentry) {
Jeff Layton39e3c952012-11-28 11:30:53 -05001326 if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
Al Viro201f9562012-06-22 12:42:10 +04001327 error = d_revalidate(dentry, flags);
Miklos Szeredibad61182012-03-26 12:54:24 +02001328 if (unlikely(error <= 0)) {
1329 if (error < 0) {
1330 dput(dentry);
1331 return ERR_PTR(error);
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001332 } else {
1333 d_invalidate(dentry);
Miklos Szeredibad61182012-03-26 12:54:24 +02001334 dput(dentry);
1335 dentry = NULL;
1336 }
1337 }
1338 }
1339 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001340
Miklos Szeredibad61182012-03-26 12:54:24 +02001341 if (!dentry) {
1342 dentry = d_alloc(dir, name);
1343 if (unlikely(!dentry))
1344 return ERR_PTR(-ENOMEM);
Nick Pigginbaa03892010-08-18 04:37:31 +10001345
Miklos Szeredibad61182012-03-26 12:54:24 +02001346 *need_lookup = true;
Nick Pigginbaa03892010-08-18 04:37:31 +10001347 }
1348 return dentry;
1349}
1350
1351/*
J. Bruce Fields13a2c3b2013-10-23 16:09:16 -04001352 * Call i_op->lookup on the dentry. The dentry must be negative and
1353 * unhashed.
Miklos Szeredibad61182012-03-26 12:54:24 +02001354 *
1355 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001356 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001357static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
Al Viro72bd8662012-06-10 17:17:17 -04001358 unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001359{
Josef Bacik44396f42011-05-31 11:58:49 -04001360 struct dentry *old;
1361
1362 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001363 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001364 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001365 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001366 }
Josef Bacik44396f42011-05-31 11:58:49 -04001367
Al Viro72bd8662012-06-10 17:17:17 -04001368 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001369 if (unlikely(old)) {
1370 dput(dentry);
1371 dentry = old;
1372 }
1373 return dentry;
1374}
1375
Al Viroa3255542012-03-30 14:41:51 -04001376static struct dentry *__lookup_hash(struct qstr *name,
Al Viro72bd8662012-06-10 17:17:17 -04001377 struct dentry *base, unsigned int flags)
Al Viroa3255542012-03-30 14:41:51 -04001378{
Miklos Szeredibad61182012-03-26 12:54:24 +02001379 bool need_lookup;
Al Viroa3255542012-03-30 14:41:51 -04001380 struct dentry *dentry;
1381
Al Viro72bd8662012-06-10 17:17:17 -04001382 dentry = lookup_dcache(name, base, flags, &need_lookup);
Miklos Szeredibad61182012-03-26 12:54:24 +02001383 if (!need_lookup)
1384 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001385
Al Viro72bd8662012-06-10 17:17:17 -04001386 return lookup_real(base->d_inode, dentry, flags);
Al Viroa3255542012-03-30 14:41:51 -04001387}
1388
Josef Bacik44396f42011-05-31 11:58:49 -04001389/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 * It's more convoluted than I'd like it to be, but... it's still fairly
1391 * small and for now I'd prefer to have fast path as straight as possible.
1392 * It _is_ time-critical.
1393 */
Al Viroe97cdc82013-01-24 18:16:00 -05001394static int lookup_fast(struct nameidata *nd,
Miklos Szeredi697f5142012-05-21 17:30:05 +02001395 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
Jan Blunck4ac91372008-02-14 19:34:32 -08001397 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001398 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001399 int need_reval = 1;
1400 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001401 int err;
1402
Al Viro3cac2602009-08-13 18:27:43 +04001403 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001404 * Rename seqlock is not required here because in the off chance
1405 * of a false negative due to a concurrent rename, we're going to
1406 * do the non-racy lookup, below.
1407 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001408 if (nd->flags & LOOKUP_RCU) {
1409 unsigned seq;
Al Viro766c4cb2015-05-07 19:24:57 -04001410 bool negative;
Linus Torvaldsda53be12013-05-21 15:22:44 -07001411 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
Al Viro5a18fff2011-03-11 04:44:53 -05001412 if (!dentry)
1413 goto unlazy;
1414
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001415 /*
1416 * This sequence count validates that the inode matches
1417 * the dentry name information from lookup.
1418 */
1419 *inode = dentry->d_inode;
Al Viro766c4cb2015-05-07 19:24:57 -04001420 negative = d_is_negative(dentry);
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001421 if (read_seqcount_retry(&dentry->d_seq, seq))
1422 return -ECHILD;
Al Viro766c4cb2015-05-07 19:24:57 -04001423 if (negative)
1424 return -ENOENT;
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001425
1426 /*
1427 * This sequence count validates that the parent had no
1428 * changes while we did the lookup of the dentry above.
1429 *
1430 * The memory barrier in read_seqcount_begin of child is
1431 * enough, we can use __read_seqcount_retry here.
1432 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001433 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1434 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001435 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001436
Al Viro24643082011-02-15 01:26:22 -05001437 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro4ce16ef32012-06-10 16:10:59 -04001438 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001439 if (unlikely(status <= 0)) {
1440 if (status != -ECHILD)
1441 need_reval = 0;
1442 goto unlazy;
1443 }
Al Viro24643082011-02-15 01:26:22 -05001444 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001445 path->mnt = mnt;
1446 path->dentry = dentry;
NeilBrownb8faf032014-08-04 17:06:29 +10001447 if (likely(__follow_mount_rcu(nd, path, inode)))
1448 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001449unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001450 if (unlazy_walk(nd, dentry))
1451 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001452 } else {
Al Viroe97cdc82013-01-24 18:16:00 -05001453 dentry = __d_lookup(parent, &nd->last);
Nick Piggin31e6b012011-01-07 17:49:52 +11001454 }
Al Viro5a18fff2011-03-11 04:44:53 -05001455
Al Viro81e6f522012-03-30 14:48:04 -04001456 if (unlikely(!dentry))
1457 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001458
Al Viro5a18fff2011-03-11 04:44:53 -05001459 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
Al Viro4ce16ef32012-06-10 16:10:59 -04001460 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001461 if (unlikely(status <= 0)) {
1462 if (status < 0) {
1463 dput(dentry);
1464 return status;
1465 }
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001466 d_invalidate(dentry);
1467 dput(dentry);
1468 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001469 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001470
Al Viro766c4cb2015-05-07 19:24:57 -04001471 if (unlikely(d_is_negative(dentry))) {
1472 dput(dentry);
1473 return -ENOENT;
1474 }
David Howells9875cf82011-01-14 18:45:21 +00001475 path->mnt = mnt;
1476 path->dentry = dentry;
1477 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001478 if (unlikely(err < 0)) {
1479 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001480 return err;
Ian Kent89312212011-01-18 12:06:10 +08001481 }
Al Viroa3fbbde2011-11-07 21:21:26 +00001482 if (err)
1483 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001484 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 return 0;
Al Viro81e6f522012-03-30 14:48:04 -04001486
1487need_lookup:
Miklos Szeredi697f5142012-05-21 17:30:05 +02001488 return 1;
1489}
1490
1491/* Fast lookup failed, do it the slow way */
Al Virocc2a5272013-01-24 18:19:49 -05001492static int lookup_slow(struct nameidata *nd, struct path *path)
Miklos Szeredi697f5142012-05-21 17:30:05 +02001493{
1494 struct dentry *dentry, *parent;
1495 int err;
1496
1497 parent = nd->path.dentry;
Al Viro81e6f522012-03-30 14:48:04 -04001498 BUG_ON(nd->inode != parent->d_inode);
1499
1500 mutex_lock(&parent->d_inode->i_mutex);
Al Virocc2a5272013-01-24 18:19:49 -05001501 dentry = __lookup_hash(&nd->last, parent, nd->flags);
Al Viro81e6f522012-03-30 14:48:04 -04001502 mutex_unlock(&parent->d_inode->i_mutex);
1503 if (IS_ERR(dentry))
1504 return PTR_ERR(dentry);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001505 path->mnt = nd->path.mnt;
1506 path->dentry = dentry;
1507 err = follow_managed(path, nd->flags);
1508 if (unlikely(err < 0)) {
1509 path_put_conditional(path, nd);
1510 return err;
1511 }
1512 if (err)
1513 nd->flags |= LOOKUP_JUMPED;
1514 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
1516
Al Viro52094c82011-02-21 21:34:47 -05001517static inline int may_lookup(struct nameidata *nd)
1518{
1519 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001520 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001521 if (err != -ECHILD)
1522 return err;
Al Viro19660af2011-03-25 10:32:48 -04001523 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001524 return -ECHILD;
1525 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001526 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001527}
1528
Al Viro9856fa12011-03-04 14:22:06 -05001529static inline int handle_dots(struct nameidata *nd, int type)
1530{
1531 if (type == LAST_DOTDOT) {
1532 if (nd->flags & LOOKUP_RCU) {
1533 if (follow_dotdot_rcu(nd))
1534 return -ECHILD;
1535 } else
1536 follow_dotdot(nd);
1537 }
1538 return 0;
1539}
1540
Al Viro951361f2011-03-04 14:44:37 -05001541static void terminate_walk(struct nameidata *nd)
1542{
1543 if (!(nd->flags & LOOKUP_RCU)) {
1544 path_put(&nd->path);
1545 } else {
1546 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001547 if (!(nd->flags & LOOKUP_ROOT))
1548 nd->root.mnt = NULL;
Al Viro8b61e742013-11-08 12:45:01 -05001549 rcu_read_unlock();
Al Viro951361f2011-03-04 14:44:37 -05001550 }
1551}
1552
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001553/*
1554 * Do we need to follow links? We _really_ want to be able
1555 * to do this check without having to look at inode->i_op,
1556 * so we keep a cache of "no, this doesn't need follow_link"
1557 * for the common case.
1558 */
David Howellsb18825a2013-09-12 19:22:53 +01001559static inline int should_follow_link(struct dentry *dentry, int follow)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001560{
David Howellsb18825a2013-09-12 19:22:53 +01001561 return unlikely(d_is_symlink(dentry)) ? follow : 0;
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001562}
1563
Al Virocaa85632015-04-22 17:52:47 -04001564static int walk_component(struct nameidata *nd, int follow)
Al Viroce57dfc2011-03-13 19:58:58 -04001565{
Al Virocaa85632015-04-22 17:52:47 -04001566 struct path path;
Al Viroce57dfc2011-03-13 19:58:58 -04001567 struct inode *inode;
1568 int err;
1569 /*
1570 * "." and ".." are special - ".." especially so because it has
1571 * to be able to know about the current root directory and
1572 * parent relationships.
1573 */
Al Viro21b9b072013-01-24 18:10:25 -05001574 if (unlikely(nd->last_type != LAST_NORM))
1575 return handle_dots(nd, nd->last_type);
Al Virocaa85632015-04-22 17:52:47 -04001576 err = lookup_fast(nd, &path, &inode);
Al Viroce57dfc2011-03-13 19:58:58 -04001577 if (unlikely(err)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001578 if (err < 0)
1579 goto out_err;
1580
Al Virocaa85632015-04-22 17:52:47 -04001581 err = lookup_slow(nd, &path);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001582 if (err < 0)
1583 goto out_err;
1584
Al Virocaa85632015-04-22 17:52:47 -04001585 inode = path.dentry->d_inode;
Al Viro766c4cb2015-05-07 19:24:57 -04001586 err = -ENOENT;
Al Virocaa85632015-04-22 17:52:47 -04001587 if (d_is_negative(path.dentry))
Al Viro766c4cb2015-05-07 19:24:57 -04001588 goto out_path_put;
Al Viroce57dfc2011-03-13 19:58:58 -04001589 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001590
Al Virocaa85632015-04-22 17:52:47 -04001591 if (should_follow_link(path.dentry, follow)) {
Al Viro19660af2011-03-25 10:32:48 -04001592 if (nd->flags & LOOKUP_RCU) {
Al Virocaa85632015-04-22 17:52:47 -04001593 if (unlikely(nd->path.mnt != path.mnt ||
1594 unlazy_walk(nd, path.dentry))) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001595 err = -ECHILD;
1596 goto out_err;
Al Viro19660af2011-03-25 10:32:48 -04001597 }
1598 }
Al Virocaa85632015-04-22 17:52:47 -04001599 BUG_ON(inode != path.dentry->d_inode);
1600 nd->link = path;
Al Viroce57dfc2011-03-13 19:58:58 -04001601 return 1;
1602 }
Al Virocaa85632015-04-22 17:52:47 -04001603 path_to_nameidata(&path, nd);
Al Viroce57dfc2011-03-13 19:58:58 -04001604 nd->inode = inode;
1605 return 0;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001606
1607out_path_put:
Al Virocaa85632015-04-22 17:52:47 -04001608 path_to_nameidata(&path, nd);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001609out_err:
1610 terminate_walk(nd);
1611 return err;
Al Viroce57dfc2011-03-13 19:58:58 -04001612}
1613
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614/*
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001615 * We can do the critical dentry name comparison and hashing
1616 * operations one word at a time, but we are limited to:
1617 *
1618 * - Architectures with fast unaligned word accesses. We could
1619 * do a "get_unaligned()" if this helps and is sufficiently
1620 * fast.
1621 *
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001622 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1623 * do not trap on the (extremely unlikely) case of a page
1624 * crossing operation.
1625 *
1626 * - Furthermore, we need an efficient 64-bit compile for the
1627 * 64-bit case in order to generate the "number of bytes in
1628 * the final mask". Again, that could be replaced with a
1629 * efficient population count instruction or similar.
1630 */
1631#ifdef CONFIG_DCACHE_WORD_ACCESS
1632
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001633#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001634
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001635#ifdef CONFIG_64BIT
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001636
1637static inline unsigned int fold_hash(unsigned long hash)
1638{
Linus Torvalds99d263d2014-09-13 11:30:10 -07001639 return hash_64(hash, 32);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001640}
1641
1642#else /* 32-bit case */
1643
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001644#define fold_hash(x) (x)
1645
1646#endif
1647
1648unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1649{
1650 unsigned long a, mask;
1651 unsigned long hash = 0;
1652
1653 for (;;) {
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001654 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001655 if (len < sizeof(unsigned long))
1656 break;
1657 hash += a;
Al Virof132c5b2012-03-22 21:59:52 +00001658 hash *= 9;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001659 name += sizeof(unsigned long);
1660 len -= sizeof(unsigned long);
1661 if (!len)
1662 goto done;
1663 }
Will Deacona5c21dc2013-12-12 17:40:21 +00001664 mask = bytemask_from_count(len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001665 hash += mask & a;
1666done:
1667 return fold_hash(hash);
1668}
1669EXPORT_SYMBOL(full_name_hash);
1670
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001671/*
1672 * Calculate the length and hash of the path component, and
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001673 * return the "hash_len" as the result.
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001674 */
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001675static inline u64 hash_name(const char *name)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001676{
Linus Torvalds36126f82012-05-26 10:43:17 -07001677 unsigned long a, b, adata, bdata, mask, hash, len;
1678 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001679
1680 hash = a = 0;
1681 len = -sizeof(unsigned long);
1682 do {
1683 hash = (hash + a) * 9;
1684 len += sizeof(unsigned long);
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001685 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07001686 b = a ^ REPEAT_BYTE('/');
1687 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001688
Linus Torvalds36126f82012-05-26 10:43:17 -07001689 adata = prep_zero_mask(a, adata, &constants);
1690 bdata = prep_zero_mask(b, bdata, &constants);
1691
1692 mask = create_zero_mask(adata | bdata);
1693
1694 hash += a & zero_bytemask(mask);
Linus Torvalds9226b5b2014-09-14 17:28:32 -07001695 len += find_zero(mask);
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001696 return hashlen_create(fold_hash(hash), len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001697}
1698
1699#else
1700
Linus Torvalds0145acc2012-03-02 14:32:59 -08001701unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1702{
1703 unsigned long hash = init_name_hash();
1704 while (len--)
1705 hash = partial_name_hash(*name++, hash);
1706 return end_name_hash(hash);
1707}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001708EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001709
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001710/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001711 * We know there's a real path component here of at least
1712 * one character.
1713 */
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001714static inline u64 hash_name(const char *name)
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001715{
1716 unsigned long hash = init_name_hash();
1717 unsigned long len = 0, c;
1718
1719 c = (unsigned char)*name;
1720 do {
1721 len++;
1722 hash = partial_name_hash(c, hash);
1723 c = (unsigned char)name[len];
1724 } while (c && c != '/');
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001725 return hashlen_create(end_name_hash(hash), len);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001726}
1727
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001728#endif
1729
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001730/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001732 * This is the basic name resolution function, turning a pathname into
1733 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001735 * Returns 0 and nd will have valid dentry and mnt on success.
1736 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 */
Al Viro6de88d72009-08-09 01:41:57 +04001738static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741
1742 while (*name=='/')
1743 name++;
1744 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001745 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 /* At this point we know we have a real path component. */
1748 for(;;) {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001749 u64 hash_len;
Al Virofe479a52011-02-22 15:10:03 -05001750 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751
Al Viro52094c82011-02-21 21:34:47 -05001752 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 if (err)
1754 break;
1755
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001756 hash_len = hash_name(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Al Virofe479a52011-02-22 15:10:03 -05001758 type = LAST_NORM;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001759 if (name[0] == '.') switch (hashlen_len(hash_len)) {
Al Virofe479a52011-02-22 15:10:03 -05001760 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001761 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001762 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001763 nd->flags |= LOOKUP_JUMPED;
1764 }
Al Virofe479a52011-02-22 15:10:03 -05001765 break;
1766 case 1:
1767 type = LAST_DOT;
1768 }
Al Viro5a202bc2011-03-08 14:17:44 -05001769 if (likely(type == LAST_NORM)) {
1770 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001771 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001772 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
James Hogana060dc52014-09-16 13:07:35 +01001773 struct qstr this = { { .hash_len = hash_len }, .name = name };
Linus Torvaldsda53be12013-05-21 15:22:44 -07001774 err = parent->d_op->d_hash(parent, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05001775 if (err < 0)
1776 break;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001777 hash_len = this.hash_len;
1778 name = this.name;
Al Viro5a202bc2011-03-08 14:17:44 -05001779 }
1780 }
Al Virofe479a52011-02-22 15:10:03 -05001781
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001782 nd->last.hash_len = hash_len;
1783 nd->last.name = name;
Al Viro5f4a6a62013-01-24 18:04:22 -05001784 nd->last_type = type;
1785
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001786 name += hashlen_len(hash_len);
1787 if (!*name)
Al Viro5f4a6a62013-01-24 18:04:22 -05001788 return 0;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001789 /*
1790 * If it wasn't NUL, we know it was '/'. Skip that
1791 * slash, and continue until no more slashes.
1792 */
1793 do {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001794 name++;
1795 } while (unlikely(*name == '/'));
1796 if (!*name)
Al Viro5f4a6a62013-01-24 18:04:22 -05001797 return 0;
1798
Al Virocaa85632015-04-22 17:52:47 -04001799 err = walk_component(nd, LOOKUP_FOLLOW);
Al Viroce57dfc2011-03-13 19:58:58 -04001800 if (err < 0)
1801 return err;
Al Virofe479a52011-02-22 15:10:03 -05001802
Al Viroce57dfc2011-03-13 19:58:58 -04001803 if (err) {
Al Viro5a460272015-04-17 23:44:45 -04001804 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1805 path_put_conditional(&nd->link, nd);
1806 path_put(&nd->path);
1807 return -ELOOP;
1808 }
1809 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
1810
1811 nd->depth++;
1812 current->link_count++;
1813
1814 do {
1815 struct path link = nd->link;
1816 void *cookie;
Al Viro172a39a2015-04-18 18:45:16 -04001817 const char *s = get_link(&link, nd, &cookie);
Al Viro5a460272015-04-17 23:44:45 -04001818
Al Viro172a39a2015-04-18 18:45:16 -04001819 if (unlikely(IS_ERR(s))) {
1820 err = PTR_ERR(s);
Al Viro5a460272015-04-17 23:44:45 -04001821 break;
Al Viro172a39a2015-04-18 18:45:16 -04001822 }
1823 err = 0;
1824 if (likely(s)) {
1825 if (*s == '/') {
1826 if (!nd->root.mnt)
1827 set_root(nd);
1828 path_put(&nd->path);
1829 nd->path = nd->root;
1830 path_get(&nd->root);
1831 nd->flags |= LOOKUP_JUMPED;
1832 }
1833 nd->inode = nd->path.dentry->d_inode;
1834 err = link_path_walk(s, nd);
1835 if (unlikely(err)) {
1836 put_link(nd, &link, cookie);
1837 break;
1838 }
1839 }
Al Viro5a460272015-04-17 23:44:45 -04001840 err = walk_component(nd, LOOKUP_FOLLOW);
1841 put_link(nd, &link, cookie);
1842 } while (err > 0);
1843
1844 current->link_count--;
1845 nd->depth--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001847 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001848 }
Miklos Szeredi44b1d532014-04-01 17:08:41 +02001849 if (!d_can_lookup(nd->path.dentry)) {
Al Virocaa85632015-04-22 17:52:47 -04001850 err = -ENOTDIR;
Al Viro5f4a6a62013-01-24 18:04:22 -05001851 break;
1852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 }
Al Viro951361f2011-03-04 14:44:37 -05001854 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 return err;
1856}
1857
Al Viro6e8a1f82015-02-22 19:46:04 -05001858static int path_init(int dfd, const struct filename *name, unsigned int flags,
Al Viro5e530842014-11-20 14:14:42 -05001859 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001861 int retval = 0;
Al Virofd2f7cb2015-02-22 20:07:13 -05001862 const char *s = name->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro980f3ea2014-11-20 14:20:24 -05001865 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 nd->depth = 0;
Al Viro5e530842014-11-20 14:14:42 -05001867 nd->base = NULL;
Al Viro5b6ca022011-03-09 23:04:47 -05001868 if (flags & LOOKUP_ROOT) {
David Howellsb18825a2013-09-12 19:22:53 +01001869 struct dentry *root = nd->root.dentry;
1870 struct inode *inode = root->d_inode;
Al Virofd2f7cb2015-02-22 20:07:13 -05001871 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02001872 if (!d_can_lookup(root))
Al Viro73d049a2011-03-11 12:08:24 -05001873 return -ENOTDIR;
1874 retval = inode_permission(inode, MAY_EXEC);
1875 if (retval)
1876 return retval;
1877 }
Al Viro5b6ca022011-03-09 23:04:47 -05001878 nd->path = nd->root;
1879 nd->inode = inode;
1880 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05001881 rcu_read_lock();
Al Viro5b6ca022011-03-09 23:04:47 -05001882 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro48a066e2013-09-29 22:06:07 -04001883 nd->m_seq = read_seqbegin(&mount_lock);
Al Viro5b6ca022011-03-09 23:04:47 -05001884 } else {
1885 path_get(&nd->path);
1886 }
Al Virod4658872014-11-20 14:23:33 -05001887 goto done;
Al Viro5b6ca022011-03-09 23:04:47 -05001888 }
1889
Al Viro2a737872009-04-07 11:49:53 -04001890 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891
Al Viro48a066e2013-09-29 22:06:07 -04001892 nd->m_seq = read_seqbegin(&mount_lock);
Al Virofd2f7cb2015-02-22 20:07:13 -05001893 if (*s == '/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001894 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05001895 rcu_read_lock();
Al Viro7bd88372014-09-13 21:55:46 -04001896 nd->seq = set_root_rcu(nd);
Al Viroe41f7d42011-02-22 14:02:58 -05001897 } else {
1898 set_root(nd);
1899 path_get(&nd->root);
1900 }
Al Viro2a737872009-04-07 11:49:53 -04001901 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001902 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001903 if (flags & LOOKUP_RCU) {
1904 struct fs_struct *fs = current->fs;
1905 unsigned seq;
1906
Al Viro8b61e742013-11-08 12:45:01 -05001907 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05001908
1909 do {
1910 seq = read_seqcount_begin(&fs->seq);
1911 nd->path = fs->pwd;
1912 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1913 } while (read_seqcount_retry(&fs->seq, seq));
1914 } else {
1915 get_fs_pwd(current->fs, &nd->path);
1916 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001917 } else {
Jeff Layton582aa642012-12-11 08:56:16 -05001918 /* Caller must check execute permissions on the starting path component */
Al Viro2903ff02012-08-28 12:52:22 -04001919 struct fd f = fdget_raw(dfd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001920 struct dentry *dentry;
1921
Al Viro2903ff02012-08-28 12:52:22 -04001922 if (!f.file)
1923 return -EBADF;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001924
Al Viro2903ff02012-08-28 12:52:22 -04001925 dentry = f.file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001926
Al Virofd2f7cb2015-02-22 20:07:13 -05001927 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02001928 if (!d_can_lookup(dentry)) {
Al Viro2903ff02012-08-28 12:52:22 -04001929 fdput(f);
1930 return -ENOTDIR;
1931 }
Al Virof52e0c12011-03-14 18:56:51 -04001932 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001933
Al Viro2903ff02012-08-28 12:52:22 -04001934 nd->path = f.file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001935 if (flags & LOOKUP_RCU) {
Linus Torvalds9c225f22014-03-03 09:36:58 -08001936 if (f.flags & FDPUT_FPUT)
Al Viro5e530842014-11-20 14:14:42 -05001937 nd->base = f.file;
Al Viroe41f7d42011-02-22 14:02:58 -05001938 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro8b61e742013-11-08 12:45:01 -05001939 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05001940 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001941 path_get(&nd->path);
1942 fdput(f);
Al Viroe41f7d42011-02-22 14:02:58 -05001943 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 }
Al Viroe41f7d42011-02-22 14:02:58 -05001945
Nick Piggin31e6b012011-01-07 17:49:52 +11001946 nd->inode = nd->path.dentry->d_inode;
Al Viro4023bfc2014-09-13 21:59:43 -04001947 if (!(flags & LOOKUP_RCU))
Al Virod4658872014-11-20 14:23:33 -05001948 goto done;
Al Viro4023bfc2014-09-13 21:59:43 -04001949 if (likely(!read_seqcount_retry(&nd->path.dentry->d_seq, nd->seq)))
Al Virod4658872014-11-20 14:23:33 -05001950 goto done;
Al Viro4023bfc2014-09-13 21:59:43 -04001951 if (!(nd->flags & LOOKUP_ROOT))
1952 nd->root.mnt = NULL;
1953 rcu_read_unlock();
1954 return -ECHILD;
Al Virod4658872014-11-20 14:23:33 -05001955done:
1956 current->total_link_count = 0;
Al Virofd2f7cb2015-02-22 20:07:13 -05001957 return link_path_walk(s, nd);
Al Viro9b4a9b12009-04-07 11:44:16 -04001958}
1959
Al Viro893b7772014-11-20 14:18:09 -05001960static void path_cleanup(struct nameidata *nd)
1961{
1962 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
1963 path_put(&nd->root);
1964 nd->root.mnt = NULL;
1965 }
1966 if (unlikely(nd->base))
1967 fput(nd->base);
Al Viro9b4a9b12009-04-07 11:44:16 -04001968}
1969
Al Virocaa85632015-04-22 17:52:47 -04001970static inline int lookup_last(struct nameidata *nd)
Al Virobd92d7f2011-03-14 19:54:59 -04001971{
1972 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1973 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1974
1975 nd->flags &= ~LOOKUP_PARENT;
Al Virocaa85632015-04-22 17:52:47 -04001976 return walk_component(nd, nd->flags & LOOKUP_FOLLOW);
Al Virobd92d7f2011-03-14 19:54:59 -04001977}
1978
Al Viro9b4a9b12009-04-07 11:44:16 -04001979/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viro5eb6b492015-02-22 19:40:53 -05001980static int path_lookupat(int dfd, const struct filename *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001981 unsigned int flags, struct nameidata *nd)
1982{
Al Virobd92d7f2011-03-14 19:54:59 -04001983 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001984
1985 /*
1986 * Path walking is largely split up into 2 different synchronisation
1987 * schemes, rcu-walk and ref-walk (explained in
1988 * Documentation/filesystems/path-lookup.txt). These share much of the
1989 * path walk code, but some things particularly setup, cleanup, and
1990 * following mounts are sufficiently divergent that functions are
1991 * duplicated. Typically there is a function foo(), and its RCU
1992 * analogue, foo_rcu().
1993 *
1994 * -ECHILD is the error number of choice (just to avoid clashes) that
1995 * is returned if some aspect of an rcu-walk fails. Such an error must
1996 * be handled by restarting a traditional ref-walk (which will always
1997 * be able to complete).
1998 */
Al Viro6e8a1f82015-02-22 19:46:04 -05001999 err = path_init(dfd, name, flags, nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002000 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virocaa85632015-04-22 17:52:47 -04002001 err = lookup_last(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002002 while (err > 0) {
2003 void *cookie;
Al Virocaa85632015-04-22 17:52:47 -04002004 struct path link = nd->link;
Kees Cook800179c2012-07-25 17:29:07 -07002005 err = may_follow_link(&link, nd);
2006 if (unlikely(err))
2007 break;
Al Virobd92d7f2011-03-14 19:54:59 -04002008 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04002009 err = follow_link(&link, nd, &cookie);
Al Viro6d7b5aa2012-06-10 04:15:17 -04002010 if (err)
2011 break;
Al Virocaa85632015-04-22 17:52:47 -04002012 err = lookup_last(nd);
Al Viro574197e2011-03-14 22:20:34 -04002013 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04002014 }
2015 }
Al Viroee0827c2011-02-21 23:38:09 -05002016
Al Viro9f1fafe2011-03-25 11:00:12 -04002017 if (!err)
2018 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002019
2020 if (!err && nd->flags & LOOKUP_DIRECTORY) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002021 if (!d_can_lookup(nd->path.dentry)) {
Al Virobd92d7f2011-03-14 19:54:59 -04002022 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04002023 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04002024 }
2025 }
Al Viro16c2cd72011-02-22 15:50:10 -05002026
Al Viro893b7772014-11-20 14:18:09 -05002027 path_cleanup(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002028 return err;
Al Viroee0827c2011-02-21 23:38:09 -05002029}
Nick Piggin31e6b012011-01-07 17:49:52 +11002030
Jeff Layton873f1ee2012-10-10 15:25:29 -04002031static int filename_lookup(int dfd, struct filename *name,
2032 unsigned int flags, struct nameidata *nd)
2033{
Al Viro5eb6b492015-02-22 19:40:53 -05002034 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002035 if (unlikely(retval == -ECHILD))
Al Viro5eb6b492015-02-22 19:40:53 -05002036 retval = path_lookupat(dfd, name, flags, nd);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002037 if (unlikely(retval == -ESTALE))
Al Viro5eb6b492015-02-22 19:40:53 -05002038 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002039
2040 if (likely(!retval))
Jeff Laytonadb5c242012-10-10 16:43:13 -04002041 audit_inode(name, nd->path.dentry, flags & LOOKUP_PARENT);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002042 return retval;
2043}
2044
Al Viro79714f72012-06-15 03:01:42 +04002045/* does lookup, returns the object with parent locked */
2046struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002047{
Paul Moore51689102015-01-22 00:00:03 -05002048 struct filename *filename = getname_kernel(name);
Al Viro79714f72012-06-15 03:01:42 +04002049 struct nameidata nd;
2050 struct dentry *d;
Paul Moore51689102015-01-22 00:00:03 -05002051 int err;
2052
2053 if (IS_ERR(filename))
2054 return ERR_CAST(filename);
2055
2056 err = filename_lookup(AT_FDCWD, filename, LOOKUP_PARENT, &nd);
2057 if (err) {
2058 d = ERR_PTR(err);
2059 goto out;
2060 }
Al Viro79714f72012-06-15 03:01:42 +04002061 if (nd.last_type != LAST_NORM) {
2062 path_put(&nd.path);
Paul Moore51689102015-01-22 00:00:03 -05002063 d = ERR_PTR(-EINVAL);
2064 goto out;
Al Viro79714f72012-06-15 03:01:42 +04002065 }
2066 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Al Viro1e0ea002012-07-22 23:46:21 +04002067 d = __lookup_hash(&nd.last, nd.path.dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04002068 if (IS_ERR(d)) {
2069 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2070 path_put(&nd.path);
Paul Moore51689102015-01-22 00:00:03 -05002071 goto out;
Al Viro79714f72012-06-15 03:01:42 +04002072 }
2073 *path = nd.path;
Paul Moore51689102015-01-22 00:00:03 -05002074out:
2075 putname(filename);
Al Viro79714f72012-06-15 03:01:42 +04002076 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002077}
2078
Al Virod1811462008-08-02 00:49:18 -04002079int kern_path(const char *name, unsigned int flags, struct path *path)
2080{
2081 struct nameidata nd;
Al Viro74eb8cc2015-02-23 02:44:36 -05002082 struct filename *filename = getname_kernel(name);
2083 int res = PTR_ERR(filename);
2084
2085 if (!IS_ERR(filename)) {
2086 res = filename_lookup(AT_FDCWD, filename, flags, &nd);
2087 putname(filename);
2088 if (!res)
2089 *path = nd.path;
2090 }
Al Virod1811462008-08-02 00:49:18 -04002091 return res;
2092}
Al Viro4d359502014-03-14 12:20:17 -04002093EXPORT_SYMBOL(kern_path);
Al Virod1811462008-08-02 00:49:18 -04002094
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002095/**
2096 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2097 * @dentry: pointer to dentry of the base directory
2098 * @mnt: pointer to vfs mount of the base directory
2099 * @name: pointer to file name
2100 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002101 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002102 */
2103int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2104 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002105 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002106{
Al Viro74eb8cc2015-02-23 02:44:36 -05002107 struct filename *filename = getname_kernel(name);
2108 int err = PTR_ERR(filename);
2109
Al Viroe0a01242011-06-27 17:00:37 -04002110 BUG_ON(flags & LOOKUP_PARENT);
Al Viro74eb8cc2015-02-23 02:44:36 -05002111
2112 /* the first argument of filename_lookup() is ignored with LOOKUP_ROOT */
2113 if (!IS_ERR(filename)) {
2114 struct nameidata nd;
2115 nd.root.dentry = dentry;
2116 nd.root.mnt = mnt;
2117 err = filename_lookup(AT_FDCWD, filename,
2118 flags | LOOKUP_ROOT, &nd);
2119 if (!err)
2120 *path = nd.path;
2121 putname(filename);
2122 }
Al Viroe0a01242011-06-27 17:00:37 -04002123 return err;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002124}
Al Viro4d359502014-03-14 12:20:17 -04002125EXPORT_SYMBOL(vfs_path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002126
Christoph Hellwigeead1912007-10-16 23:25:38 -07002127/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002128 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002129 * @name: pathname component to lookup
2130 * @base: base directory to lookup from
2131 * @len: maximum length @len should be interpreted to
2132 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002133 * Note that this routine is purely a helper for filesystem usage and should
Al Viro9e7543e2015-02-23 02:49:48 -05002134 * not be called by generic code.
Christoph Hellwigeead1912007-10-16 23:25:38 -07002135 */
James Morris057f6c02007-04-26 00:12:05 -07002136struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2137{
James Morris057f6c02007-04-26 00:12:05 -07002138 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05002139 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002140 int err;
James Morris057f6c02007-04-26 00:12:05 -07002141
David Woodhouse2f9092e2009-04-20 23:18:37 +01002142 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
2143
Al Viro6a96ba52011-03-07 23:49:20 -05002144 this.name = name;
2145 this.len = len;
Linus Torvalds0145acc2012-03-02 14:32:59 -08002146 this.hash = full_name_hash(name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05002147 if (!len)
2148 return ERR_PTR(-EACCES);
2149
Al Viro21d8a152012-11-29 22:17:21 -05002150 if (unlikely(name[0] == '.')) {
2151 if (len < 2 || (len == 2 && name[1] == '.'))
2152 return ERR_PTR(-EACCES);
2153 }
2154
Al Viro6a96ba52011-03-07 23:49:20 -05002155 while (len--) {
2156 c = *(const unsigned char *)name++;
2157 if (c == '/' || c == '\0')
2158 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05002159 }
Al Viro5a202bc2011-03-08 14:17:44 -05002160 /*
2161 * See if the low-level filesystem might want
2162 * to use its own hash..
2163 */
2164 if (base->d_flags & DCACHE_OP_HASH) {
Linus Torvaldsda53be12013-05-21 15:22:44 -07002165 int err = base->d_op->d_hash(base, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002166 if (err < 0)
2167 return ERR_PTR(err);
2168 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07002169
Miklos Szeredicda309d2012-03-26 12:54:21 +02002170 err = inode_permission(base->d_inode, MAY_EXEC);
2171 if (err)
2172 return ERR_PTR(err);
2173
Al Viro72bd8662012-06-10 17:17:17 -04002174 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002175}
Al Viro4d359502014-03-14 12:20:17 -04002176EXPORT_SYMBOL(lookup_one_len);
James Morris057f6c02007-04-26 00:12:05 -07002177
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002178int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2179 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180{
Al Viro2d8f3032008-07-22 09:59:21 -04002181 struct nameidata nd;
Jeff Layton91a27b22012-10-10 15:25:28 -04002182 struct filename *tmp = getname_flags(name, flags, empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04002185
2186 BUG_ON(flags & LOOKUP_PARENT);
2187
Jeff Layton873f1ee2012-10-10 15:25:29 -04002188 err = filename_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04002190 if (!err)
2191 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 }
2193 return err;
2194}
2195
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002196int user_path_at(int dfd, const char __user *name, unsigned flags,
2197 struct path *path)
2198{
Linus Torvaldsf7493e52012-03-22 16:10:40 -07002199 return user_path_at_empty(dfd, name, flags, path, NULL);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002200}
Al Viro4d359502014-03-14 12:20:17 -04002201EXPORT_SYMBOL(user_path_at);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002202
Jeff Layton873f1ee2012-10-10 15:25:29 -04002203/*
2204 * NB: most callers don't do anything directly with the reference to the
2205 * to struct filename, but the nd->last pointer points into the name string
2206 * allocated by getname. So we must hold the reference to it until all
2207 * path-walking is complete.
2208 */
Jeff Layton91a27b22012-10-10 15:25:28 -04002209static struct filename *
Al Virof5beed72015-04-30 16:09:11 -04002210user_path_parent(int dfd, const char __user *path,
2211 struct path *parent,
2212 struct qstr *last,
2213 int *type,
Jeff Layton9e790bd2012-12-11 12:10:09 -05002214 unsigned int flags)
Al Viro2ad94ae2008-07-21 09:32:51 -04002215{
Al Virof5beed72015-04-30 16:09:11 -04002216 struct nameidata nd;
Jeff Layton91a27b22012-10-10 15:25:28 -04002217 struct filename *s = getname(path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002218 int error;
2219
Jeff Layton9e790bd2012-12-11 12:10:09 -05002220 /* only LOOKUP_REVAL is allowed in extra flags */
2221 flags &= LOOKUP_REVAL;
2222
Al Viro2ad94ae2008-07-21 09:32:51 -04002223 if (IS_ERR(s))
Jeff Layton91a27b22012-10-10 15:25:28 -04002224 return s;
Al Viro2ad94ae2008-07-21 09:32:51 -04002225
Al Virof5beed72015-04-30 16:09:11 -04002226 error = filename_lookup(dfd, s, flags | LOOKUP_PARENT, &nd);
Jeff Layton91a27b22012-10-10 15:25:28 -04002227 if (error) {
Al Viro2ad94ae2008-07-21 09:32:51 -04002228 putname(s);
Jeff Layton91a27b22012-10-10 15:25:28 -04002229 return ERR_PTR(error);
2230 }
Al Virof5beed72015-04-30 16:09:11 -04002231 *parent = nd.path;
2232 *last = nd.last;
2233 *type = nd.last_type;
Al Viro2ad94ae2008-07-21 09:32:51 -04002234
Jeff Layton91a27b22012-10-10 15:25:28 -04002235 return s;
Al Viro2ad94ae2008-07-21 09:32:51 -04002236}
2237
Jeff Layton80334262013-07-26 06:23:25 -04002238/**
Al Viro197df042013-09-08 14:03:27 -04002239 * mountpoint_last - look up last component for umount
Jeff Layton80334262013-07-26 06:23:25 -04002240 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2241 * @path: pointer to container for result
2242 *
2243 * This is a special lookup_last function just for umount. In this case, we
2244 * need to resolve the path without doing any revalidation.
2245 *
2246 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2247 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2248 * in almost all cases, this lookup will be served out of the dcache. The only
2249 * cases where it won't are if nd->last refers to a symlink or the path is
2250 * bogus and it doesn't exist.
2251 *
2252 * Returns:
2253 * -error: if there was an error during lookup. This includes -ENOENT if the
2254 * lookup found a negative dentry. The nd->path reference will also be
2255 * put in this case.
2256 *
2257 * 0: if we successfully resolved nd->path and found it to not to be a
2258 * symlink that needs to be followed. "path" will also be populated.
2259 * The nd->path reference will also be put.
2260 *
2261 * 1: if we successfully resolved nd->last and found it to be a symlink
2262 * that needs to be followed. "path" will be populated with the path
2263 * to the link, and nd->path will *not* be put.
2264 */
2265static int
Al Viro197df042013-09-08 14:03:27 -04002266mountpoint_last(struct nameidata *nd, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002267{
2268 int error = 0;
2269 struct dentry *dentry;
2270 struct dentry *dir = nd->path.dentry;
2271
Al Viro35759522013-09-08 13:41:33 -04002272 /* If we're in rcuwalk, drop out of it to handle last component */
2273 if (nd->flags & LOOKUP_RCU) {
2274 if (unlazy_walk(nd, NULL)) {
2275 error = -ECHILD;
2276 goto out;
2277 }
Jeff Layton80334262013-07-26 06:23:25 -04002278 }
2279
2280 nd->flags &= ~LOOKUP_PARENT;
2281
2282 if (unlikely(nd->last_type != LAST_NORM)) {
2283 error = handle_dots(nd, nd->last_type);
Al Viro35759522013-09-08 13:41:33 -04002284 if (error)
2285 goto out;
2286 dentry = dget(nd->path.dentry);
2287 goto done;
Jeff Layton80334262013-07-26 06:23:25 -04002288 }
2289
2290 mutex_lock(&dir->d_inode->i_mutex);
2291 dentry = d_lookup(dir, &nd->last);
2292 if (!dentry) {
2293 /*
2294 * No cached dentry. Mounted dentries are pinned in the cache,
2295 * so that means that this dentry is probably a symlink or the
2296 * path doesn't actually point to a mounted dentry.
2297 */
2298 dentry = d_alloc(dir, &nd->last);
2299 if (!dentry) {
2300 error = -ENOMEM;
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002301 mutex_unlock(&dir->d_inode->i_mutex);
Al Viro35759522013-09-08 13:41:33 -04002302 goto out;
Jeff Layton80334262013-07-26 06:23:25 -04002303 }
Al Viro35759522013-09-08 13:41:33 -04002304 dentry = lookup_real(dir->d_inode, dentry, nd->flags);
2305 error = PTR_ERR(dentry);
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002306 if (IS_ERR(dentry)) {
2307 mutex_unlock(&dir->d_inode->i_mutex);
Al Viro35759522013-09-08 13:41:33 -04002308 goto out;
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002309 }
Jeff Layton80334262013-07-26 06:23:25 -04002310 }
2311 mutex_unlock(&dir->d_inode->i_mutex);
2312
Al Viro35759522013-09-08 13:41:33 -04002313done:
David Howells698934d2015-03-17 17:33:52 +00002314 if (d_is_negative(dentry)) {
Al Viro35759522013-09-08 13:41:33 -04002315 error = -ENOENT;
2316 dput(dentry);
2317 goto out;
Jeff Layton80334262013-07-26 06:23:25 -04002318 }
Al Viro35759522013-09-08 13:41:33 -04002319 path->dentry = dentry;
Vasily Averin295dc392014-07-21 12:30:23 +04002320 path->mnt = nd->path.mnt;
Al Virocaa85632015-04-22 17:52:47 -04002321 if (should_follow_link(dentry, nd->flags & LOOKUP_FOLLOW)) {
2322 nd->link = *path;
Al Viro35759522013-09-08 13:41:33 -04002323 return 1;
Al Virocaa85632015-04-22 17:52:47 -04002324 }
Vasily Averin295dc392014-07-21 12:30:23 +04002325 mntget(path->mnt);
Al Viro35759522013-09-08 13:41:33 -04002326 follow_mount(path);
2327 error = 0;
2328out:
Jeff Layton80334262013-07-26 06:23:25 -04002329 terminate_walk(nd);
2330 return error;
2331}
2332
2333/**
Al Viro197df042013-09-08 14:03:27 -04002334 * path_mountpoint - look up a path to be umounted
Jeff Layton80334262013-07-26 06:23:25 -04002335 * @dfd: directory file descriptor to start walk from
2336 * @name: full pathname to walk
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002337 * @path: pointer to container for result
Jeff Layton80334262013-07-26 06:23:25 -04002338 * @flags: lookup flags
Jeff Layton80334262013-07-26 06:23:25 -04002339 *
2340 * Look up the given name, but don't attempt to revalidate the last component.
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002341 * Returns 0 and "path" will be valid on success; Returns error otherwise.
Jeff Layton80334262013-07-26 06:23:25 -04002342 */
2343static int
Al Viro668696d2015-02-22 19:44:00 -05002344path_mountpoint(int dfd, const struct filename *name, struct path *path,
Al Viro46afd6f2015-05-01 22:08:30 -04002345 struct nameidata *nd, unsigned int flags)
Jeff Layton80334262013-07-26 06:23:25 -04002346{
Al Viro46afd6f2015-05-01 22:08:30 -04002347 int err = path_init(dfd, name, flags, nd);
Jeff Layton80334262013-07-26 06:23:25 -04002348 if (unlikely(err))
Al Viro115cbfd2014-10-11 23:05:52 -04002349 goto out;
Jeff Layton80334262013-07-26 06:23:25 -04002350
Al Viro46afd6f2015-05-01 22:08:30 -04002351 err = mountpoint_last(nd, path);
Jeff Layton80334262013-07-26 06:23:25 -04002352 while (err > 0) {
2353 void *cookie;
2354 struct path link = *path;
Al Viro46afd6f2015-05-01 22:08:30 -04002355 err = may_follow_link(&link, nd);
Jeff Layton80334262013-07-26 06:23:25 -04002356 if (unlikely(err))
2357 break;
Al Viro46afd6f2015-05-01 22:08:30 -04002358 nd->flags |= LOOKUP_PARENT;
2359 err = follow_link(&link, nd, &cookie);
Jeff Layton80334262013-07-26 06:23:25 -04002360 if (err)
2361 break;
Al Viro46afd6f2015-05-01 22:08:30 -04002362 err = mountpoint_last(nd, path);
2363 put_link(nd, &link, cookie);
Jeff Layton80334262013-07-26 06:23:25 -04002364 }
2365out:
Al Viro46afd6f2015-05-01 22:08:30 -04002366 path_cleanup(nd);
Jeff Layton80334262013-07-26 06:23:25 -04002367 return err;
2368}
2369
Al Viro2d864652013-09-08 20:18:44 -04002370static int
Al Viro668696d2015-02-22 19:44:00 -05002371filename_mountpoint(int dfd, struct filename *name, struct path *path,
Al Viro2d864652013-09-08 20:18:44 -04002372 unsigned int flags)
2373{
Al Viro46afd6f2015-05-01 22:08:30 -04002374 struct nameidata nd;
Al Virocbaab2d2015-01-22 02:49:00 -05002375 int error;
Al Viro668696d2015-02-22 19:44:00 -05002376 if (IS_ERR(name))
2377 return PTR_ERR(name);
Al Viro46afd6f2015-05-01 22:08:30 -04002378 error = path_mountpoint(dfd, name, path, &nd, flags | LOOKUP_RCU);
Al Viro2d864652013-09-08 20:18:44 -04002379 if (unlikely(error == -ECHILD))
Al Viro46afd6f2015-05-01 22:08:30 -04002380 error = path_mountpoint(dfd, name, path, &nd, flags);
Al Viro2d864652013-09-08 20:18:44 -04002381 if (unlikely(error == -ESTALE))
Al Viro46afd6f2015-05-01 22:08:30 -04002382 error = path_mountpoint(dfd, name, path, &nd, flags | LOOKUP_REVAL);
Al Viro2d864652013-09-08 20:18:44 -04002383 if (likely(!error))
Al Viro668696d2015-02-22 19:44:00 -05002384 audit_inode(name, path->dentry, 0);
2385 putname(name);
Al Viro2d864652013-09-08 20:18:44 -04002386 return error;
2387}
2388
Jeff Layton80334262013-07-26 06:23:25 -04002389/**
Al Viro197df042013-09-08 14:03:27 -04002390 * user_path_mountpoint_at - lookup a path from userland in order to umount it
Jeff Layton80334262013-07-26 06:23:25 -04002391 * @dfd: directory file descriptor
2392 * @name: pathname from userland
2393 * @flags: lookup flags
2394 * @path: pointer to container to hold result
2395 *
2396 * A umount is a special case for path walking. We're not actually interested
2397 * in the inode in this situation, and ESTALE errors can be a problem. We
2398 * simply want track down the dentry and vfsmount attached at the mountpoint
2399 * and avoid revalidating the last component.
2400 *
2401 * Returns 0 and populates "path" on success.
2402 */
2403int
Al Viro197df042013-09-08 14:03:27 -04002404user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
Jeff Layton80334262013-07-26 06:23:25 -04002405 struct path *path)
2406{
Al Virocbaab2d2015-01-22 02:49:00 -05002407 return filename_mountpoint(dfd, getname(name), path, flags);
Jeff Layton80334262013-07-26 06:23:25 -04002408}
2409
Al Viro2d864652013-09-08 20:18:44 -04002410int
2411kern_path_mountpoint(int dfd, const char *name, struct path *path,
2412 unsigned int flags)
2413{
Al Virocbaab2d2015-01-22 02:49:00 -05002414 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
Al Viro2d864652013-09-08 20:18:44 -04002415}
2416EXPORT_SYMBOL(kern_path_mountpoint);
2417
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002418int __check_sticky(struct inode *dir, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002420 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002421
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002422 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002424 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 return 0;
Andy Lutomirski23adbe12014-06-10 12:45:42 -07002426 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427}
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002428EXPORT_SYMBOL(__check_sticky);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430/*
2431 * Check whether we can remove a link victim from directory dir, check
2432 * whether the type of victim is right.
2433 * 1. We can't do it if dir is read-only (done in permission())
2434 * 2. We should have write and exec permissions on dir
2435 * 3. We can't remove anything from append-only dir
2436 * 4. We can't do anything with immutable dir (done in permission())
2437 * 5. If the sticky bit on dir is set we should either
2438 * a. be owner of dir, or
2439 * b. be owner of victim, or
2440 * c. have CAP_FOWNER capability
2441 * 6. If the victim is append-only or immutable we can't do antyhing with
2442 * links pointing to it.
2443 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2444 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2445 * 9. We can't remove a root or mountpoint.
2446 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2447 * nfs_async_unlink().
2448 */
David Howellsb18825a2013-09-12 19:22:53 +01002449static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
David Howellsb18825a2013-09-12 19:22:53 +01002451 struct inode *inode = victim->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 int error;
2453
David Howellsb18825a2013-09-12 19:22:53 +01002454 if (d_is_negative(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 return -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01002456 BUG_ON(!inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
2458 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002459 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Al Virof419a2e2008-07-22 00:07:17 -04002461 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 if (error)
2463 return error;
2464 if (IS_APPEND(dir))
2465 return -EPERM;
David Howellsb18825a2013-09-12 19:22:53 +01002466
2467 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
2468 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 return -EPERM;
2470 if (isdir) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002471 if (!d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 return -ENOTDIR;
2473 if (IS_ROOT(victim))
2474 return -EBUSY;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002475 } else if (d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 return -EISDIR;
2477 if (IS_DEADDIR(dir))
2478 return -ENOENT;
2479 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2480 return -EBUSY;
2481 return 0;
2482}
2483
2484/* Check whether we can create an object with dentry child in directory
2485 * dir.
2486 * 1. We can't do it if child already exists (open has special treatment for
2487 * this case, but since we are inlined it's OK)
2488 * 2. We can't do it if dir is read-only (done in permission())
2489 * 3. We should have write and exec permissions on dir
2490 * 4. We can't do it if dir is immutable (done in permission())
2491 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002492static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493{
Jeff Layton14e972b2013-05-08 10:25:58 -04002494 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 if (child->d_inode)
2496 return -EEXIST;
2497 if (IS_DEADDIR(dir))
2498 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04002499 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500}
2501
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502/*
2503 * p1 and p2 should be directories on the same fs.
2504 */
2505struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2506{
2507 struct dentry *p;
2508
2509 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07002510 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 return NULL;
2512 }
2513
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002514 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002516 p = d_ancestor(p2, p1);
2517 if (p) {
2518 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2519 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2520 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 }
2522
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002523 p = d_ancestor(p1, p2);
2524 if (p) {
2525 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2526 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2527 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 }
2529
Ingo Molnarf2eace22006-07-03 00:25:05 -07002530 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Miklos Szeredid1b72cc2014-10-27 15:42:01 +01002531 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 return NULL;
2533}
Al Viro4d359502014-03-14 12:20:17 -04002534EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
2536void unlock_rename(struct dentry *p1, struct dentry *p2)
2537{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002538 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002540 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002541 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 }
2543}
Al Viro4d359502014-03-14 12:20:17 -04002544EXPORT_SYMBOL(unlock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
Al Viro4acdaf22011-07-26 01:42:34 -04002546int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002547 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002549 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 if (error)
2551 return error;
2552
Al Viroacfa4382008-12-04 10:06:33 -05002553 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 return -EACCES; /* shouldn't it be ENOSYS? */
2555 mode &= S_IALLUGO;
2556 mode |= S_IFREG;
2557 error = security_inode_create(dir, dentry, mode);
2558 if (error)
2559 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002560 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002561 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002562 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 return error;
2564}
Al Viro4d359502014-03-14 12:20:17 -04002565EXPORT_SYMBOL(vfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
Al Viro73d049a2011-03-11 12:08:24 -05002567static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002569 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 struct inode *inode = dentry->d_inode;
2571 int error;
2572
Al Virobcda7652011-03-13 16:42:14 -04002573 /* O_PATH? */
2574 if (!acc_mode)
2575 return 0;
2576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 if (!inode)
2578 return -ENOENT;
2579
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002580 switch (inode->i_mode & S_IFMT) {
2581 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002583 case S_IFDIR:
2584 if (acc_mode & MAY_WRITE)
2585 return -EISDIR;
2586 break;
2587 case S_IFBLK:
2588 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002589 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002591 /*FALLTHRU*/
2592 case S_IFIFO:
2593 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002595 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002596 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002597
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002598 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002599 if (error)
2600 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002601
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 /*
2603 * An append-only file must be opened in append mode for writing.
2604 */
2605 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002606 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002607 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002609 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 }
2611
2612 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002613 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002614 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002616 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002617}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Jeff Laytone1181ee2010-12-07 16:19:50 -05002619static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002620{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002621 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002622 struct inode *inode = path->dentry->d_inode;
2623 int error = get_write_access(inode);
2624 if (error)
2625 return error;
2626 /*
2627 * Refuse to truncate files with mandatory locks held on them.
2628 */
Jeff Laytond7a06982014-03-10 09:54:15 -04002629 error = locks_verify_locked(filp);
Al Viro7715b522009-12-16 03:54:00 -05002630 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002631 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002632 if (!error) {
2633 error = do_truncate(path->dentry, 0,
2634 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002635 filp);
Al Viro7715b522009-12-16 03:54:00 -05002636 }
2637 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002638 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639}
2640
Dave Hansend57999e2008-02-15 14:37:27 -08002641static inline int open_to_namei_flags(int flag)
2642{
Al Viro8a5e9292011-06-25 19:15:54 -04002643 if ((flag & O_ACCMODE) == 3)
2644 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002645 return flag;
2646}
2647
Miklos Szeredid18e9002012-06-05 15:10:17 +02002648static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2649{
2650 int error = security_path_mknod(dir, dentry, mode, 0);
2651 if (error)
2652 return error;
2653
2654 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2655 if (error)
2656 return error;
2657
2658 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2659}
2660
David Howells1acf0af2012-06-14 16:13:46 +01002661/*
2662 * Attempt to atomically look up, create and open a file from a negative
2663 * dentry.
2664 *
2665 * Returns 0 if successful. The file will have been created and attached to
2666 * @file by the filesystem calling finish_open().
2667 *
2668 * Returns 1 if the file was looked up only or didn't need creating. The
2669 * caller will need to perform the open themselves. @path will have been
2670 * updated to point to the new dentry. This may be negative.
2671 *
2672 * Returns an error code otherwise.
2673 */
Al Viro2675a4e2012-06-22 12:41:10 +04002674static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2675 struct path *path, struct file *file,
2676 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04002677 bool got_write, bool need_lookup,
Al Viro2675a4e2012-06-22 12:41:10 +04002678 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002679{
2680 struct inode *dir = nd->path.dentry->d_inode;
2681 unsigned open_flag = open_to_namei_flags(op->open_flag);
2682 umode_t mode;
2683 int error;
2684 int acc_mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002685 int create_error = 0;
2686 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
Miklos Szeredi116cc022013-09-16 14:52:05 +02002687 bool excl;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002688
2689 BUG_ON(dentry->d_inode);
2690
2691 /* Don't create child dentry for a dead directory. */
2692 if (unlikely(IS_DEADDIR(dir))) {
Al Viro2675a4e2012-06-22 12:41:10 +04002693 error = -ENOENT;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002694 goto out;
2695 }
2696
Miklos Szeredi62b259d2012-08-15 13:01:24 +02002697 mode = op->mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002698 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2699 mode &= ~current_umask();
2700
Miklos Szeredi116cc022013-09-16 14:52:05 +02002701 excl = (open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT);
2702 if (excl)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002703 open_flag &= ~O_TRUNC;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002704
2705 /*
2706 * Checking write permission is tricky, bacuse we don't know if we are
2707 * going to actually need it: O_CREAT opens should work as long as the
2708 * file exists. But checking existence breaks atomicity. The trick is
2709 * to check access and if not granted clear O_CREAT from the flags.
2710 *
2711 * Another problem is returing the "right" error value (e.g. for an
2712 * O_EXCL open we want to return EEXIST not EROFS).
2713 */
Al Viro64894cf2012-07-31 00:53:35 +04002714 if (((open_flag & (O_CREAT | O_TRUNC)) ||
2715 (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2716 if (!(open_flag & O_CREAT)) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002717 /*
2718 * No O_CREATE -> atomicity not a requirement -> fall
2719 * back to lookup + open
2720 */
2721 goto no_open;
2722 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2723 /* Fall back and fail with the right error */
Al Viro64894cf2012-07-31 00:53:35 +04002724 create_error = -EROFS;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002725 goto no_open;
2726 } else {
2727 /* No side effects, safe to clear O_CREAT */
Al Viro64894cf2012-07-31 00:53:35 +04002728 create_error = -EROFS;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002729 open_flag &= ~O_CREAT;
2730 }
2731 }
2732
2733 if (open_flag & O_CREAT) {
Miklos Szeredi38227f72012-08-15 13:01:24 +02002734 error = may_o_create(&nd->path, dentry, mode);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002735 if (error) {
2736 create_error = error;
2737 if (open_flag & O_EXCL)
2738 goto no_open;
2739 open_flag &= ~O_CREAT;
2740 }
2741 }
2742
2743 if (nd->flags & LOOKUP_DIRECTORY)
2744 open_flag |= O_DIRECTORY;
2745
Al Viro30d90492012-06-22 12:40:19 +04002746 file->f_path.dentry = DENTRY_NOT_SET;
2747 file->f_path.mnt = nd->path.mnt;
2748 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
Al Viro47237682012-06-10 05:01:45 -04002749 opened);
Al Virod9585272012-06-22 12:39:14 +04002750 if (error < 0) {
Al Virod9585272012-06-22 12:39:14 +04002751 if (create_error && error == -ENOENT)
2752 error = create_error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002753 goto out;
2754 }
2755
Al Virod9585272012-06-22 12:39:14 +04002756 if (error) { /* returned 1, that is */
Al Viro30d90492012-06-22 12:40:19 +04002757 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04002758 error = -EIO;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002759 goto out;
2760 }
Al Viro30d90492012-06-22 12:40:19 +04002761 if (file->f_path.dentry) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002762 dput(dentry);
Al Viro30d90492012-06-22 12:40:19 +04002763 dentry = file->f_path.dentry;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002764 }
Al Viro03da6332013-09-16 19:22:33 -04002765 if (*opened & FILE_CREATED)
2766 fsnotify_create(dir, dentry);
2767 if (!dentry->d_inode) {
2768 WARN_ON(*opened & FILE_CREATED);
2769 if (create_error) {
2770 error = create_error;
2771 goto out;
2772 }
2773 } else {
2774 if (excl && !(*opened & FILE_CREATED)) {
2775 error = -EEXIST;
2776 goto out;
2777 }
Sage Weil62b2ce92012-08-15 13:30:12 -07002778 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02002779 goto looked_up;
2780 }
2781
2782 /*
2783 * We didn't have the inode before the open, so check open permission
2784 * here.
2785 */
Al Viro03da6332013-09-16 19:22:33 -04002786 acc_mode = op->acc_mode;
2787 if (*opened & FILE_CREATED) {
2788 WARN_ON(!(open_flag & O_CREAT));
2789 fsnotify_create(dir, dentry);
2790 acc_mode = MAY_OPEN;
2791 }
Al Viro2675a4e2012-06-22 12:41:10 +04002792 error = may_open(&file->f_path, acc_mode, open_flag);
2793 if (error)
2794 fput(file);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002795
2796out:
2797 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04002798 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002799
Miklos Szeredid18e9002012-06-05 15:10:17 +02002800no_open:
2801 if (need_lookup) {
Al Viro72bd8662012-06-10 17:17:17 -04002802 dentry = lookup_real(dir, dentry, nd->flags);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002803 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002804 return PTR_ERR(dentry);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002805
2806 if (create_error) {
2807 int open_flag = op->open_flag;
2808
Al Viro2675a4e2012-06-22 12:41:10 +04002809 error = create_error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002810 if ((open_flag & O_EXCL)) {
2811 if (!dentry->d_inode)
2812 goto out;
2813 } else if (!dentry->d_inode) {
2814 goto out;
2815 } else if ((open_flag & O_TRUNC) &&
David Howellse36cb0b2015-01-29 12:02:35 +00002816 d_is_reg(dentry)) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002817 goto out;
2818 }
2819 /* will fail later, go on to get the right error */
2820 }
2821 }
2822looked_up:
2823 path->dentry = dentry;
2824 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04002825 return 1;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002826}
2827
Nick Piggin31e6b012011-01-07 17:49:52 +11002828/*
David Howells1acf0af2012-06-14 16:13:46 +01002829 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002830 *
2831 * Must be called with i_mutex held on parent.
2832 *
David Howells1acf0af2012-06-14 16:13:46 +01002833 * Returns 0 if the file was successfully atomically created (if necessary) and
2834 * opened. In this case the file will be returned attached to @file.
2835 *
2836 * Returns 1 if the file was not completely opened at this time, though lookups
2837 * and creations will have been performed and the dentry returned in @path will
2838 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
2839 * specified then a negative dentry may be returned.
2840 *
2841 * An error code is returned otherwise.
2842 *
2843 * FILE_CREATE will be set in @*opened if the dentry was created and will be
2844 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002845 */
Al Viro2675a4e2012-06-22 12:41:10 +04002846static int lookup_open(struct nameidata *nd, struct path *path,
2847 struct file *file,
2848 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04002849 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002850{
2851 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002852 struct inode *dir_inode = dir->d_inode;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002853 struct dentry *dentry;
2854 int error;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002855 bool need_lookup;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002856
Al Viro47237682012-06-10 05:01:45 -04002857 *opened &= ~FILE_CREATED;
Al Viro201f9562012-06-22 12:42:10 +04002858 dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002859 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002860 return PTR_ERR(dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002861
Miklos Szeredid18e9002012-06-05 15:10:17 +02002862 /* Cached positive dentry: will open in f_op->open */
2863 if (!need_lookup && dentry->d_inode)
2864 goto out_no_open;
2865
2866 if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
Al Viro64894cf2012-07-31 00:53:35 +04002867 return atomic_open(nd, dentry, path, file, op, got_write,
Al Viro47237682012-06-10 05:01:45 -04002868 need_lookup, opened);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002869 }
2870
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002871 if (need_lookup) {
2872 BUG_ON(dentry->d_inode);
2873
Al Viro72bd8662012-06-10 17:17:17 -04002874 dentry = lookup_real(dir_inode, dentry, nd->flags);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002875 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002876 return PTR_ERR(dentry);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002877 }
2878
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002879 /* Negative dentry, just create the file */
2880 if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
2881 umode_t mode = op->mode;
2882 if (!IS_POSIXACL(dir->d_inode))
2883 mode &= ~current_umask();
2884 /*
2885 * This write is needed to ensure that a
2886 * rw->ro transition does not occur between
2887 * the time when the file is created and when
2888 * a permanent write count is taken through
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002889 * the 'struct file' in finish_open().
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002890 */
Al Viro64894cf2012-07-31 00:53:35 +04002891 if (!got_write) {
2892 error = -EROFS;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002893 goto out_dput;
Al Viro64894cf2012-07-31 00:53:35 +04002894 }
Al Viro47237682012-06-10 05:01:45 -04002895 *opened |= FILE_CREATED;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002896 error = security_path_mknod(&nd->path, dentry, mode, 0);
2897 if (error)
2898 goto out_dput;
Al Viro312b63f2012-06-10 18:09:36 -04002899 error = vfs_create(dir->d_inode, dentry, mode,
2900 nd->flags & LOOKUP_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002901 if (error)
2902 goto out_dput;
2903 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02002904out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002905 path->dentry = dentry;
2906 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04002907 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002908
2909out_dput:
2910 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04002911 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002912}
2913
2914/*
Al Virofe2d35f2011-03-05 22:58:25 -05002915 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002916 */
Al Viro896475d2015-04-22 18:02:17 -04002917static int do_last(struct nameidata *nd,
Al Viro2675a4e2012-06-22 12:41:10 +04002918 struct file *file, const struct open_flags *op,
Jeff Layton669abf42012-10-10 16:43:10 -04002919 int *opened, struct filename *name)
Al Virofb1cc552009-12-24 01:58:28 -05002920{
Al Viroa1e28032009-12-24 02:12:06 -05002921 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05002922 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002923 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04002924 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04002925 int acc_mode = op->acc_mode;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002926 struct inode *inode;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002927 struct path save_parent = { .dentry = NULL, .mnt = NULL };
Al Viro896475d2015-04-22 18:02:17 -04002928 struct path path;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002929 bool retried = false;
Al Viro16c2cd72011-02-22 15:50:10 -05002930 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002931
Al Viroc3e380b2011-02-23 13:39:45 -05002932 nd->flags &= ~LOOKUP_PARENT;
2933 nd->flags |= op->intent;
2934
Al Virobc77daa2013-06-06 09:12:33 -04002935 if (nd->last_type != LAST_NORM) {
Al Virofe2d35f2011-03-05 22:58:25 -05002936 error = handle_dots(nd, nd->last_type);
2937 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002938 return error;
Miklos Szeredie83db162012-06-05 15:10:29 +02002939 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05002940 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002941
Al Viroca344a892011-03-09 00:36:45 -05002942 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05002943 if (nd->last.name[nd->last.len])
2944 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2945 /* we _can_ be in RCU mode here */
Al Viro896475d2015-04-22 18:02:17 -04002946 error = lookup_fast(nd, &path, &inode);
Miklos Szeredi71574862012-06-05 15:10:14 +02002947 if (likely(!error))
2948 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002949
Miklos Szeredi71574862012-06-05 15:10:14 +02002950 if (error < 0)
Al Viro2675a4e2012-06-22 12:41:10 +04002951 goto out;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02002952
Miklos Szeredi71574862012-06-05 15:10:14 +02002953 BUG_ON(nd->inode != dir->d_inode);
Miklos Szeredib6183df2012-06-05 15:10:13 +02002954 } else {
2955 /* create side of things */
2956 /*
2957 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
2958 * has been cleared when we got to the last component we are
2959 * about to look up
2960 */
2961 error = complete_walk(nd);
2962 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002963 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02002964
Jeff Layton33e22082013-04-12 15:16:32 -04002965 audit_inode(name, dir, LOOKUP_PARENT);
Miklos Szeredib6183df2012-06-05 15:10:13 +02002966 error = -EISDIR;
2967 /* trailing slashes? */
2968 if (nd->last.name[nd->last.len])
Al Viro2675a4e2012-06-22 12:41:10 +04002969 goto out;
Al Virofe2d35f2011-03-05 22:58:25 -05002970 }
2971
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002972retry_lookup:
Al Viro64894cf2012-07-31 00:53:35 +04002973 if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
2974 error = mnt_want_write(nd->path.mnt);
2975 if (!error)
2976 got_write = true;
2977 /*
2978 * do _not_ fail yet - we might not need that or fail with
2979 * a different error; let lookup_open() decide; we'll be
2980 * dropping this one anyway.
2981 */
2982 }
Al Viroa1e28032009-12-24 02:12:06 -05002983 mutex_lock(&dir->d_inode->i_mutex);
Al Viro896475d2015-04-22 18:02:17 -04002984 error = lookup_open(nd, &path, file, op, got_write, opened);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002985 mutex_unlock(&dir->d_inode->i_mutex);
Al Viroa1e28032009-12-24 02:12:06 -05002986
Al Viro2675a4e2012-06-22 12:41:10 +04002987 if (error <= 0) {
2988 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002989 goto out;
2990
Al Viro47237682012-06-10 05:01:45 -04002991 if ((*opened & FILE_CREATED) ||
Al Viro496ad9a2013-01-23 17:07:38 -05002992 !S_ISREG(file_inode(file)->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002993 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002994
Jeff Laytonadb5c242012-10-10 16:43:13 -04002995 audit_inode(name, file->f_path.dentry, 0);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002996 goto opened;
2997 }
Al Virofb1cc552009-12-24 01:58:28 -05002998
Al Viro47237682012-06-10 05:01:45 -04002999 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05003000 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05003001 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003002 will_truncate = false;
Al Virobcda7652011-03-13 16:42:14 -04003003 acc_mode = MAY_OPEN;
Al Viro896475d2015-04-22 18:02:17 -04003004 path_to_nameidata(&path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02003005 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05003006 }
3007
3008 /*
Jeff Layton3134f372012-07-25 10:19:47 -04003009 * create/update audit record if it already exists.
Al Virofb1cc552009-12-24 01:58:28 -05003010 */
Al Viro896475d2015-04-22 18:02:17 -04003011 if (d_is_positive(path.dentry))
3012 audit_inode(name, path.dentry, 0);
Al Virofb1cc552009-12-24 01:58:28 -05003013
Miklos Szeredid18e9002012-06-05 15:10:17 +02003014 /*
3015 * If atomic_open() acquired write access it is dropped now due to
3016 * possible mount and symlink following (this might be optimized away if
3017 * necessary...)
3018 */
Al Viro64894cf2012-07-31 00:53:35 +04003019 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02003020 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003021 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003022 }
3023
Al Virofb1cc552009-12-24 01:58:28 -05003024 error = -EEXIST;
Al Virof8310c52012-07-30 11:50:30 +04003025 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))
Al Virofb1cc552009-12-24 01:58:28 -05003026 goto exit_dput;
3027
Al Viro896475d2015-04-22 18:02:17 -04003028 error = follow_managed(&path, nd->flags);
David Howells9875cf82011-01-14 18:45:21 +00003029 if (error < 0)
3030 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05003031
Al Viroa3fbbde2011-11-07 21:21:26 +00003032 if (error)
3033 nd->flags |= LOOKUP_JUMPED;
3034
Miklos Szeredidecf3402012-05-21 17:30:08 +02003035 BUG_ON(nd->flags & LOOKUP_RCU);
Al Viro896475d2015-04-22 18:02:17 -04003036 inode = path.dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05003037 error = -ENOENT;
Al Viro896475d2015-04-22 18:02:17 -04003038 if (d_is_negative(path.dentry)) {
3039 path_to_nameidata(&path, nd);
Al Viro2675a4e2012-06-22 12:41:10 +04003040 goto out;
Miklos Szeredi54c33e72012-05-21 17:30:10 +02003041 }
Al Viro766c4cb2015-05-07 19:24:57 -04003042finish_lookup:
Al Viro896475d2015-04-22 18:02:17 -04003043 if (should_follow_link(path.dentry, nd->flags & LOOKUP_FOLLOW)) {
Miklos Szeredid45ea862012-05-21 17:30:09 +02003044 if (nd->flags & LOOKUP_RCU) {
Al Viro896475d2015-04-22 18:02:17 -04003045 if (unlikely(nd->path.mnt != path.mnt ||
3046 unlazy_walk(nd, path.dentry))) {
Miklos Szeredid45ea862012-05-21 17:30:09 +02003047 error = -ECHILD;
Al Viro2675a4e2012-06-22 12:41:10 +04003048 goto out;
Miklos Szeredid45ea862012-05-21 17:30:09 +02003049 }
3050 }
Al Viro896475d2015-04-22 18:02:17 -04003051 BUG_ON(inode != path.dentry->d_inode);
3052 nd->link = path;
Al Viro2675a4e2012-06-22 12:41:10 +04003053 return 1;
Miklos Szeredid45ea862012-05-21 17:30:09 +02003054 }
Al Virofb1cc552009-12-24 01:58:28 -05003055
Al Viro896475d2015-04-22 18:02:17 -04003056 if (unlikely(d_is_symlink(path.dentry)) && !(open_flag & O_PATH)) {
3057 path_to_nameidata(&path, nd);
Al Viroa5cfe2d2015-04-22 12:10:45 -04003058 error = -ELOOP;
3059 goto out;
3060 }
3061
Al Viro896475d2015-04-22 18:02:17 -04003062 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path.mnt) {
3063 path_to_nameidata(&path, nd);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003064 } else {
3065 save_parent.dentry = nd->path.dentry;
Al Viro896475d2015-04-22 18:02:17 -04003066 save_parent.mnt = mntget(path.mnt);
3067 nd->path.dentry = path.dentry;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003068
3069 }
Miklos Szeredidecf3402012-05-21 17:30:08 +02003070 nd->inode = inode;
Al Viroa3fbbde2011-11-07 21:21:26 +00003071 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
Al Virobc77daa2013-06-06 09:12:33 -04003072finish_open:
Al Viroa3fbbde2011-11-07 21:21:26 +00003073 error = complete_walk(nd);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003074 if (error) {
3075 path_put(&save_parent);
Al Viro2675a4e2012-06-22 12:41:10 +04003076 return error;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003077 }
Al Virobc77daa2013-06-06 09:12:33 -04003078 audit_inode(name, nd->path.dentry, 0);
Al Virofb1cc552009-12-24 01:58:28 -05003079 error = -EISDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003080 if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003081 goto out;
Miklos Szerediaf2f5542012-05-21 17:30:11 +02003082 error = -ENOTDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003083 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003084 goto out;
David Howells4bbcbd32015-03-17 22:16:40 +00003085 if (!d_is_reg(nd->path.dentry))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003086 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05003087
Al Viro0f9d1a12011-03-09 00:13:14 -05003088 if (will_truncate) {
3089 error = mnt_want_write(nd->path.mnt);
3090 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003091 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04003092 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05003093 }
Miklos Szeredie83db162012-06-05 15:10:29 +02003094finish_open_created:
Al Virobcda7652011-03-13 16:42:14 -04003095 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05003096 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003097 goto out;
Miklos Szeredi4aa7c632014-10-24 00:14:35 +02003098
3099 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3100 error = vfs_open(&nd->path, file, current_cred());
3101 if (!error) {
3102 *opened |= FILE_OPENED;
3103 } else {
Al Viro30d90492012-06-22 12:40:19 +04003104 if (error == -EOPENSTALE)
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003105 goto stale_open;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003106 goto out;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003107 }
Miklos Szeredia8277b92012-06-05 15:10:32 +02003108opened:
Al Viro2675a4e2012-06-22 12:41:10 +04003109 error = open_check_o_direct(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003110 if (error)
3111 goto exit_fput;
Dmitry Kasatkin3034a142014-06-27 18:15:44 +03003112 error = ima_file_check(file, op->acc_mode, *opened);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02003113 if (error)
3114 goto exit_fput;
3115
3116 if (will_truncate) {
Al Viro2675a4e2012-06-22 12:41:10 +04003117 error = handle_truncate(file);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02003118 if (error)
3119 goto exit_fput;
Al Viro0f9d1a12011-03-09 00:13:14 -05003120 }
Al Viroca344a892011-03-09 00:36:45 -05003121out:
Al Viro64894cf2012-07-31 00:53:35 +04003122 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05003123 mnt_drop_write(nd->path.mnt);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003124 path_put(&save_parent);
Miklos Szeredie276ae62012-05-21 17:30:06 +02003125 terminate_walk(nd);
Al Viro2675a4e2012-06-22 12:41:10 +04003126 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003127
Al Virofb1cc552009-12-24 01:58:28 -05003128exit_dput:
Al Viro896475d2015-04-22 18:02:17 -04003129 path_put_conditional(&path, nd);
Al Viroca344a892011-03-09 00:36:45 -05003130 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003131exit_fput:
Al Viro2675a4e2012-06-22 12:41:10 +04003132 fput(file);
3133 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003134
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003135stale_open:
3136 /* If no saved parent or already retried then can't retry */
3137 if (!save_parent.dentry || retried)
3138 goto out;
3139
3140 BUG_ON(save_parent.dentry != dir);
3141 path_put(&nd->path);
3142 nd->path = save_parent;
3143 nd->inode = dir->d_inode;
3144 save_parent.mnt = NULL;
3145 save_parent.dentry = NULL;
Al Viro64894cf2012-07-31 00:53:35 +04003146 if (got_write) {
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003147 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003148 got_write = false;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003149 }
3150 retried = true;
3151 goto retry_lookup;
Al Virofb1cc552009-12-24 01:58:28 -05003152}
3153
Al Viro60545d02013-06-07 01:20:27 -04003154static int do_tmpfile(int dfd, struct filename *pathname,
3155 struct nameidata *nd, int flags,
3156 const struct open_flags *op,
3157 struct file *file, int *opened)
3158{
3159 static const struct qstr name = QSTR_INIT("/", 1);
3160 struct dentry *dentry, *child;
3161 struct inode *dir;
Al Viro5eb6b492015-02-22 19:40:53 -05003162 int error = path_lookupat(dfd, pathname,
Al Viro60545d02013-06-07 01:20:27 -04003163 flags | LOOKUP_DIRECTORY, nd);
3164 if (unlikely(error))
3165 return error;
3166 error = mnt_want_write(nd->path.mnt);
3167 if (unlikely(error))
3168 goto out;
3169 /* we want directory to be writable */
3170 error = inode_permission(nd->inode, MAY_WRITE | MAY_EXEC);
3171 if (error)
3172 goto out2;
3173 dentry = nd->path.dentry;
3174 dir = dentry->d_inode;
3175 if (!dir->i_op->tmpfile) {
3176 error = -EOPNOTSUPP;
3177 goto out2;
3178 }
3179 child = d_alloc(dentry, &name);
3180 if (unlikely(!child)) {
3181 error = -ENOMEM;
3182 goto out2;
3183 }
3184 nd->flags &= ~LOOKUP_DIRECTORY;
3185 nd->flags |= op->intent;
3186 dput(nd->path.dentry);
3187 nd->path.dentry = child;
3188 error = dir->i_op->tmpfile(dir, nd->path.dentry, op->mode);
3189 if (error)
3190 goto out2;
3191 audit_inode(pathname, nd->path.dentry, 0);
Eric Rannaud69a91c22014-10-30 01:51:01 -07003192 /* Don't check for other permissions, the inode was just created */
3193 error = may_open(&nd->path, MAY_OPEN, op->open_flag);
Al Viro60545d02013-06-07 01:20:27 -04003194 if (error)
3195 goto out2;
3196 file->f_path.mnt = nd->path.mnt;
3197 error = finish_open(file, nd->path.dentry, NULL, opened);
3198 if (error)
3199 goto out2;
3200 error = open_check_o_direct(file);
Al Virof4e0c302013-06-11 08:34:36 +04003201 if (error) {
Al Viro60545d02013-06-07 01:20:27 -04003202 fput(file);
Al Virof4e0c302013-06-11 08:34:36 +04003203 } else if (!(op->open_flag & O_EXCL)) {
3204 struct inode *inode = file_inode(file);
3205 spin_lock(&inode->i_lock);
3206 inode->i_state |= I_LINKABLE;
3207 spin_unlock(&inode->i_lock);
3208 }
Al Viro60545d02013-06-07 01:20:27 -04003209out2:
3210 mnt_drop_write(nd->path.mnt);
3211out:
3212 path_put(&nd->path);
3213 return error;
3214}
3215
Jeff Layton669abf42012-10-10 16:43:10 -04003216static struct file *path_openat(int dfd, struct filename *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05003217 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218{
Al Viro30d90492012-06-22 12:40:19 +04003219 struct file *file;
Al Viro47237682012-06-10 05:01:45 -04003220 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05003221 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11003222
Al Viro30d90492012-06-22 12:40:19 +04003223 file = get_empty_filp();
Al Viro1afc99b2013-02-14 20:41:04 -05003224 if (IS_ERR(file))
3225 return file;
Nick Piggin31e6b012011-01-07 17:49:52 +11003226
Al Viro30d90492012-06-22 12:40:19 +04003227 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11003228
Al Virobb458c62013-07-13 13:26:37 +04003229 if (unlikely(file->f_flags & __O_TMPFILE)) {
Al Viro60545d02013-06-07 01:20:27 -04003230 error = do_tmpfile(dfd, pathname, nd, flags, op, file, &opened);
Al Virof15133d2015-05-08 22:53:15 -04003231 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003232 }
3233
Al Viro6e8a1f82015-02-22 19:46:04 -05003234 error = path_init(dfd, pathname, flags, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11003235 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003236 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
Al Viro896475d2015-04-22 18:02:17 -04003238 error = do_last(nd, file, op, &opened, pathname);
Al Viro2675a4e2012-06-22 12:41:10 +04003239 while (unlikely(error > 0)) { /* trailing symlink */
Al Virocaa85632015-04-22 17:52:47 -04003240 struct path link = nd->link;
Al Virodef4af32009-12-26 08:37:05 -05003241 void *cookie;
Kees Cook800179c2012-07-25 17:29:07 -07003242 error = may_follow_link(&link, nd);
3243 if (unlikely(error))
3244 break;
Al Viro73d049a2011-03-11 12:08:24 -05003245 nd->flags |= LOOKUP_PARENT;
3246 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04003247 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05003248 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003249 break;
Al Viro896475d2015-04-22 18:02:17 -04003250 error = do_last(nd, file, op, &opened, pathname);
Al Viro574197e2011-03-14 22:20:34 -04003251 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05003252 }
Al Viro10fa8e62009-12-26 07:09:49 -05003253out:
Al Viro893b7772014-11-20 14:18:09 -05003254 path_cleanup(nd);
Al Virof15133d2015-05-08 22:53:15 -04003255out2:
Al Viro2675a4e2012-06-22 12:41:10 +04003256 if (!(opened & FILE_OPENED)) {
3257 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04003258 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003259 }
Al Viro2675a4e2012-06-22 12:41:10 +04003260 if (unlikely(error)) {
3261 if (error == -EOPENSTALE) {
3262 if (flags & LOOKUP_RCU)
3263 error = -ECHILD;
3264 else
3265 error = -ESTALE;
3266 }
3267 file = ERR_PTR(error);
3268 }
3269 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270}
3271
Jeff Layton669abf42012-10-10 16:43:10 -04003272struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +04003273 const struct open_flags *op)
Al Viro13aab422011-02-23 17:54:08 -05003274{
Al Viro73d049a2011-03-11 12:08:24 -05003275 struct nameidata nd;
Al Virof9652e12013-06-11 08:23:01 +04003276 int flags = op->lookup_flags;
Al Viro13aab422011-02-23 17:54:08 -05003277 struct file *filp;
3278
Al Viro73d049a2011-03-11 12:08:24 -05003279 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05003280 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05003281 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05003282 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05003283 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05003284 return filp;
3285}
3286
Al Viro73d049a2011-03-11 12:08:24 -05003287struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
Al Virof9652e12013-06-11 08:23:01 +04003288 const char *name, const struct open_flags *op)
Al Viro73d049a2011-03-11 12:08:24 -05003289{
3290 struct nameidata nd;
3291 struct file *file;
Paul Moore51689102015-01-22 00:00:03 -05003292 struct filename *filename;
Al Virof9652e12013-06-11 08:23:01 +04003293 int flags = op->lookup_flags | LOOKUP_ROOT;
Al Viro73d049a2011-03-11 12:08:24 -05003294
3295 nd.root.mnt = mnt;
3296 nd.root.dentry = dentry;
3297
David Howellsb18825a2013-09-12 19:22:53 +01003298 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05003299 return ERR_PTR(-ELOOP);
3300
Paul Moore51689102015-01-22 00:00:03 -05003301 filename = getname_kernel(name);
3302 if (unlikely(IS_ERR(filename)))
3303 return ERR_CAST(filename);
3304
3305 file = path_openat(-1, filename, &nd, op, flags | LOOKUP_RCU);
Al Viro73d049a2011-03-11 12:08:24 -05003306 if (unlikely(file == ERR_PTR(-ECHILD)))
Paul Moore51689102015-01-22 00:00:03 -05003307 file = path_openat(-1, filename, &nd, op, flags);
Al Viro73d049a2011-03-11 12:08:24 -05003308 if (unlikely(file == ERR_PTR(-ESTALE)))
Paul Moore51689102015-01-22 00:00:03 -05003309 file = path_openat(-1, filename, &nd, op, flags | LOOKUP_REVAL);
3310 putname(filename);
Al Viro73d049a2011-03-11 12:08:24 -05003311 return file;
3312}
3313
Al Virofa14a0b2015-01-22 02:16:49 -05003314static struct dentry *filename_create(int dfd, struct filename *name,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003315 struct path *path, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003317 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viroed75e952011-06-27 16:53:43 -04003318 struct nameidata nd;
Jan Karac30dabf2012-06-12 16:20:30 +02003319 int err2;
Jeff Layton1ac12b42012-12-11 12:10:06 -05003320 int error;
3321 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3322
3323 /*
3324 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3325 * other flags passed in are ignored!
3326 */
3327 lookup_flags &= LOOKUP_REVAL;
3328
Al Virofa14a0b2015-01-22 02:16:49 -05003329 error = filename_lookup(dfd, name, LOOKUP_PARENT|lookup_flags, &nd);
Al Viroed75e952011-06-27 16:53:43 -04003330 if (error)
3331 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003333 /*
3334 * Yucky last component or no last component at all?
3335 * (foo/., foo/.., /////)
3336 */
Al Viroed75e952011-06-27 16:53:43 -04003337 if (nd.last_type != LAST_NORM)
3338 goto out;
3339 nd.flags &= ~LOOKUP_PARENT;
3340 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003341
Jan Karac30dabf2012-06-12 16:20:30 +02003342 /* don't fail immediately if it's r/o, at least try to report other errors */
3343 err2 = mnt_want_write(nd.path.mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003344 /*
3345 * Do the final lookup.
3346 */
Al Viroed75e952011-06-27 16:53:43 -04003347 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Al Viro6a9f40d2015-04-30 12:25:18 -04003348 dentry = __lookup_hash(&nd.last, nd.path.dentry, nd.flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003350 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003351
Al Viroa8104a92012-07-20 02:25:00 +04003352 error = -EEXIST;
David Howellsb18825a2013-09-12 19:22:53 +01003353 if (d_is_positive(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003354 goto fail;
David Howellsb18825a2013-09-12 19:22:53 +01003355
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003356 /*
3357 * Special case - lookup gave negative, but... we had foo/bar/
3358 * From the vfs_mknod() POV we just have a negative dentry -
3359 * all is fine. Let's be bastards - you had / on the end, you've
3360 * been asking for (non-existent) directory. -ENOENT for you.
3361 */
Al Viroed75e952011-06-27 16:53:43 -04003362 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003363 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003364 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003365 }
Jan Karac30dabf2012-06-12 16:20:30 +02003366 if (unlikely(err2)) {
3367 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003368 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003369 }
Al Viroed75e952011-06-27 16:53:43 -04003370 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372fail:
Al Viroa8104a92012-07-20 02:25:00 +04003373 dput(dentry);
3374 dentry = ERR_PTR(error);
3375unlock:
Al Viroed75e952011-06-27 16:53:43 -04003376 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Karac30dabf2012-06-12 16:20:30 +02003377 if (!err2)
3378 mnt_drop_write(nd.path.mnt);
Al Viroed75e952011-06-27 16:53:43 -04003379out:
3380 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 return dentry;
3382}
Al Virofa14a0b2015-01-22 02:16:49 -05003383
3384struct dentry *kern_path_create(int dfd, const char *pathname,
3385 struct path *path, unsigned int lookup_flags)
3386{
Paul Moore51689102015-01-22 00:00:03 -05003387 struct filename *filename = getname_kernel(pathname);
3388 struct dentry *res;
3389
3390 if (IS_ERR(filename))
3391 return ERR_CAST(filename);
3392 res = filename_create(dfd, filename, path, lookup_flags);
3393 putname(filename);
3394 return res;
Al Virofa14a0b2015-01-22 02:16:49 -05003395}
Al Virodae6ad82011-06-26 11:50:15 -04003396EXPORT_SYMBOL(kern_path_create);
3397
Al Viro921a1652012-07-20 01:15:31 +04003398void done_path_create(struct path *path, struct dentry *dentry)
3399{
3400 dput(dentry);
3401 mutex_unlock(&path->dentry->d_inode->i_mutex);
Al Viroa8104a92012-07-20 02:25:00 +04003402 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003403 path_put(path);
3404}
3405EXPORT_SYMBOL(done_path_create);
3406
Jeff Layton1ac12b42012-12-11 12:10:06 -05003407struct dentry *user_path_create(int dfd, const char __user *pathname,
3408 struct path *path, unsigned int lookup_flags)
Al Virodae6ad82011-06-26 11:50:15 -04003409{
Jeff Layton91a27b22012-10-10 15:25:28 -04003410 struct filename *tmp = getname(pathname);
Al Virodae6ad82011-06-26 11:50:15 -04003411 struct dentry *res;
3412 if (IS_ERR(tmp))
3413 return ERR_CAST(tmp);
Al Virofa14a0b2015-01-22 02:16:49 -05003414 res = filename_create(dfd, tmp, path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003415 putname(tmp);
3416 return res;
3417}
3418EXPORT_SYMBOL(user_path_create);
3419
Al Viro1a67aaf2011-07-26 01:52:52 -04003420int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003422 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423
3424 if (error)
3425 return error;
3426
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003427 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 return -EPERM;
3429
Al Viroacfa4382008-12-04 10:06:33 -05003430 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 return -EPERM;
3432
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003433 error = devcgroup_inode_mknod(mode, dev);
3434 if (error)
3435 return error;
3436
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 error = security_inode_mknod(dir, dentry, mode, dev);
3438 if (error)
3439 return error;
3440
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003442 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003443 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 return error;
3445}
Al Viro4d359502014-03-14 12:20:17 -04003446EXPORT_SYMBOL(vfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447
Al Virof69aac02011-07-26 04:31:40 -04003448static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003449{
3450 switch (mode & S_IFMT) {
3451 case S_IFREG:
3452 case S_IFCHR:
3453 case S_IFBLK:
3454 case S_IFIFO:
3455 case S_IFSOCK:
3456 case 0: /* zero mode translates to S_IFREG */
3457 return 0;
3458 case S_IFDIR:
3459 return -EPERM;
3460 default:
3461 return -EINVAL;
3462 }
3463}
3464
Al Viro8208a222011-07-25 17:32:17 -04003465SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003466 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467{
Al Viro2ad94ae2008-07-21 09:32:51 -04003468 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003469 struct path path;
3470 int error;
Jeff Layton972567f2012-12-20 16:00:10 -05003471 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Al Viro8e4bfca2012-07-20 01:17:26 +04003473 error = may_mknod(mode);
3474 if (error)
3475 return error;
Jeff Layton972567f2012-12-20 16:00:10 -05003476retry:
3477 dentry = user_path_create(dfd, filename, &path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003478 if (IS_ERR(dentry))
3479 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003480
Al Virodae6ad82011-06-26 11:50:15 -04003481 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003482 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003483 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003484 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003485 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003486 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04003488 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 break;
3490 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04003491 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 new_decode_dev(dev));
3493 break;
3494 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003495 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 }
Al Viroa8104a92012-07-20 02:25:00 +04003498out:
Al Viro921a1652012-07-20 01:15:31 +04003499 done_path_create(&path, dentry);
Jeff Layton972567f2012-12-20 16:00:10 -05003500 if (retry_estale(error, lookup_flags)) {
3501 lookup_flags |= LOOKUP_REVAL;
3502 goto retry;
3503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 return error;
3505}
3506
Al Viro8208a222011-07-25 17:32:17 -04003507SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003508{
3509 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3510}
3511
Al Viro18bb1db2011-07-26 01:41:39 -04003512int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003514 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003515 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516
3517 if (error)
3518 return error;
3519
Al Viroacfa4382008-12-04 10:06:33 -05003520 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 return -EPERM;
3522
3523 mode &= (S_IRWXUGO|S_ISVTX);
3524 error = security_inode_mkdir(dir, dentry, mode);
3525 if (error)
3526 return error;
3527
Al Viro8de52772012-02-06 12:45:27 -05003528 if (max_links && dir->i_nlink >= max_links)
3529 return -EMLINK;
3530
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003532 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003533 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 return error;
3535}
Al Viro4d359502014-03-14 12:20:17 -04003536EXPORT_SYMBOL(vfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Al Viroa218d0f2011-11-21 14:59:34 -05003538SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539{
Dave Hansen6902d922006-09-30 23:29:01 -07003540 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003541 struct path path;
3542 int error;
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003543 unsigned int lookup_flags = LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003545retry:
3546 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003547 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003548 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003549
Al Virodae6ad82011-06-26 11:50:15 -04003550 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003551 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003552 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003553 if (!error)
3554 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003555 done_path_create(&path, dentry);
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003556 if (retry_estale(error, lookup_flags)) {
3557 lookup_flags |= LOOKUP_REVAL;
3558 goto retry;
3559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 return error;
3561}
3562
Al Viroa218d0f2011-11-21 14:59:34 -05003563SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003564{
3565 return sys_mkdirat(AT_FDCWD, pathname, mode);
3566}
3567
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568/*
Sage Weila71905f2011-05-24 13:06:08 -07003569 * The dentry_unhash() helper will try to drop the dentry early: we
J. Bruce Fieldsc0d02592012-02-15 11:48:40 -05003570 * should have a usage count of 1 if we're the only user of this
Sage Weila71905f2011-05-24 13:06:08 -07003571 * dentry, and if that is true (possibly after pruning the dcache),
3572 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 *
3574 * A low-level filesystem can, if it choses, legally
3575 * do a
3576 *
3577 * if (!d_unhashed(dentry))
3578 * return -EBUSY;
3579 *
3580 * if it cannot handle the case of removing a directory
3581 * that is still in use by something else..
3582 */
3583void dentry_unhash(struct dentry *dentry)
3584{
Vasily Averindc168422006-12-06 20:37:07 -08003585 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 spin_lock(&dentry->d_lock);
Waiman Long98474232013-08-28 18:24:59 -07003587 if (dentry->d_lockref.count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 __d_drop(dentry);
3589 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590}
Al Viro4d359502014-03-14 12:20:17 -04003591EXPORT_SYMBOL(dentry_unhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592
3593int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3594{
3595 int error = may_delete(dir, dentry, 1);
3596
3597 if (error)
3598 return error;
3599
Al Viroacfa4382008-12-04 10:06:33 -05003600 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 return -EPERM;
3602
Al Viro1d2ef592011-09-14 18:55:41 +01003603 dget(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003604 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605
Sage Weil912dbc12011-05-24 13:06:11 -07003606 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07003607 if (is_local_mountpoint(dentry))
Sage Weil912dbc12011-05-24 13:06:11 -07003608 goto out;
3609
3610 error = security_inode_rmdir(dir, dentry);
3611 if (error)
3612 goto out;
3613
Sage Weil3cebde22011-05-29 21:20:59 -07003614 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003615 error = dir->i_op->rmdir(dir, dentry);
3616 if (error)
3617 goto out;
3618
3619 dentry->d_inode->i_flags |= S_DEAD;
3620 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003621 detach_mounts(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003622
3623out:
3624 mutex_unlock(&dentry->d_inode->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01003625 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003626 if (!error)
3627 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 return error;
3629}
Al Viro4d359502014-03-14 12:20:17 -04003630EXPORT_SYMBOL(vfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003632static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633{
3634 int error = 0;
Jeff Layton91a27b22012-10-10 15:25:28 -04003635 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04003637 struct path path;
3638 struct qstr last;
3639 int type;
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003640 unsigned int lookup_flags = 0;
3641retry:
Al Virof5beed72015-04-30 16:09:11 -04003642 name = user_path_parent(dfd, pathname,
3643 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003644 if (IS_ERR(name))
3645 return PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
Al Virof5beed72015-04-30 16:09:11 -04003647 switch (type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003648 case LAST_DOTDOT:
3649 error = -ENOTEMPTY;
3650 goto exit1;
3651 case LAST_DOT:
3652 error = -EINVAL;
3653 goto exit1;
3654 case LAST_ROOT:
3655 error = -EBUSY;
3656 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003658
Al Virof5beed72015-04-30 16:09:11 -04003659 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02003660 if (error)
3661 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003662
Al Virof5beed72015-04-30 16:09:11 -04003663 mutex_lock_nested(&path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3664 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003666 if (IS_ERR(dentry))
3667 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003668 if (!dentry->d_inode) {
3669 error = -ENOENT;
3670 goto exit3;
3671 }
Al Virof5beed72015-04-30 16:09:11 -04003672 error = security_path_rmdir(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003673 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003674 goto exit3;
Al Virof5beed72015-04-30 16:09:11 -04003675 error = vfs_rmdir(path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08003676exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003677 dput(dentry);
3678exit2:
Al Virof5beed72015-04-30 16:09:11 -04003679 mutex_unlock(&path.dentry->d_inode->i_mutex);
3680 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681exit1:
Al Virof5beed72015-04-30 16:09:11 -04003682 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 putname(name);
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003684 if (retry_estale(error, lookup_flags)) {
3685 lookup_flags |= LOOKUP_REVAL;
3686 goto retry;
3687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 return error;
3689}
3690
Heiko Carstens3cdad422009-01-14 14:14:22 +01003691SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003692{
3693 return do_rmdir(AT_FDCWD, pathname);
3694}
3695
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003696/**
3697 * vfs_unlink - unlink a filesystem object
3698 * @dir: parent directory
3699 * @dentry: victim
3700 * @delegated_inode: returns victim inode, if the inode is delegated.
3701 *
3702 * The caller must hold dir->i_mutex.
3703 *
3704 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3705 * return a reference to the inode in delegated_inode. The caller
3706 * should then break the delegation on that inode and retry. Because
3707 * breaking a delegation may take a long time, the caller should drop
3708 * dir->i_mutex before doing so.
3709 *
3710 * Alternatively, a caller may pass NULL for delegated_inode. This may
3711 * be appropriate for callers that expect the underlying filesystem not
3712 * to be NFS exported.
3713 */
3714int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715{
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003716 struct inode *target = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 int error = may_delete(dir, dentry, 0);
3718
3719 if (error)
3720 return error;
3721
Al Viroacfa4382008-12-04 10:06:33 -05003722 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 return -EPERM;
3724
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003725 mutex_lock(&target->i_mutex);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003726 if (is_local_mountpoint(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727 error = -EBUSY;
3728 else {
3729 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003730 if (!error) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003731 error = try_break_deleg(target, delegated_inode);
3732 if (error)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003733 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 error = dir->i_op->unlink(dir, dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003735 if (!error) {
Al Virod83c49f2010-04-30 17:17:09 -04003736 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003737 detach_mounts(dentry);
3738 }
Al Virobec10522010-03-03 14:12:08 -05003739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 }
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003741out:
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003742 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743
3744 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3745 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003746 fsnotify_link_count(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 }
Robert Love0eeca282005-07-12 17:06:03 -04003749
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 return error;
3751}
Al Viro4d359502014-03-14 12:20:17 -04003752EXPORT_SYMBOL(vfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753
3754/*
3755 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003756 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 * writeout happening, and we don't want to prevent access to the directory
3758 * while waiting on the I/O.
3759 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003760static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761{
Al Viro2ad94ae2008-07-21 09:32:51 -04003762 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04003763 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04003765 struct path path;
3766 struct qstr last;
3767 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 struct inode *inode = NULL;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003769 struct inode *delegated_inode = NULL;
Jeff Layton5d18f812012-12-20 16:38:04 -05003770 unsigned int lookup_flags = 0;
3771retry:
Al Virof5beed72015-04-30 16:09:11 -04003772 name = user_path_parent(dfd, pathname,
3773 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003774 if (IS_ERR(name))
3775 return PTR_ERR(name);
Al Viro2ad94ae2008-07-21 09:32:51 -04003776
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 error = -EISDIR;
Al Virof5beed72015-04-30 16:09:11 -04003778 if (type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003780
Al Virof5beed72015-04-30 16:09:11 -04003781 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02003782 if (error)
3783 goto exit1;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003784retry_deleg:
Al Virof5beed72015-04-30 16:09:11 -04003785 mutex_lock_nested(&path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3786 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 error = PTR_ERR(dentry);
3788 if (!IS_ERR(dentry)) {
3789 /* Why not before? Because we want correct error value */
Al Virof5beed72015-04-30 16:09:11 -04003790 if (last.name[last.len])
Török Edwin50338b82011-06-16 00:06:14 +03003791 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 inode = dentry->d_inode;
David Howellsb18825a2013-09-12 19:22:53 +01003793 if (d_is_negative(dentry))
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003794 goto slashes;
3795 ihold(inode);
Al Virof5beed72015-04-30 16:09:11 -04003796 error = security_path_unlink(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003797 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003798 goto exit2;
Al Virof5beed72015-04-30 16:09:11 -04003799 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02003800exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 dput(dentry);
3802 }
Al Virof5beed72015-04-30 16:09:11 -04003803 mutex_unlock(&path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 if (inode)
3805 iput(inode); /* truncate the inode here */
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003806 inode = NULL;
3807 if (delegated_inode) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003808 error = break_deleg_wait(&delegated_inode);
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003809 if (!error)
3810 goto retry_deleg;
3811 }
Al Virof5beed72015-04-30 16:09:11 -04003812 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813exit1:
Al Virof5beed72015-04-30 16:09:11 -04003814 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 putname(name);
Jeff Layton5d18f812012-12-20 16:38:04 -05003816 if (retry_estale(error, lookup_flags)) {
3817 lookup_flags |= LOOKUP_REVAL;
3818 inode = NULL;
3819 goto retry;
3820 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 return error;
3822
3823slashes:
David Howellsb18825a2013-09-12 19:22:53 +01003824 if (d_is_negative(dentry))
3825 error = -ENOENT;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003826 else if (d_is_dir(dentry))
David Howellsb18825a2013-09-12 19:22:53 +01003827 error = -EISDIR;
3828 else
3829 error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 goto exit2;
3831}
3832
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003833SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003834{
3835 if ((flag & ~AT_REMOVEDIR) != 0)
3836 return -EINVAL;
3837
3838 if (flag & AT_REMOVEDIR)
3839 return do_rmdir(dfd, pathname);
3840
3841 return do_unlinkat(dfd, pathname);
3842}
3843
Heiko Carstens3480b252009-01-14 14:14:16 +01003844SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003845{
3846 return do_unlinkat(AT_FDCWD, pathname);
3847}
3848
Miklos Szeredidb2e7472008-06-24 16:50:16 +02003849int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003851 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852
3853 if (error)
3854 return error;
3855
Al Viroacfa4382008-12-04 10:06:33 -05003856 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 return -EPERM;
3858
3859 error = security_inode_symlink(dir, dentry, oldname);
3860 if (error)
3861 return error;
3862
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003864 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003865 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 return error;
3867}
Al Viro4d359502014-03-14 12:20:17 -04003868EXPORT_SYMBOL(vfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003870SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3871 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872{
Al Viro2ad94ae2008-07-21 09:32:51 -04003873 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04003874 struct filename *from;
Dave Hansen6902d922006-09-30 23:29:01 -07003875 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003876 struct path path;
Jeff Laytonf46d3562012-12-11 12:10:08 -05003877 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878
3879 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04003880 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 return PTR_ERR(from);
Jeff Laytonf46d3562012-12-11 12:10:08 -05003882retry:
3883 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003884 error = PTR_ERR(dentry);
3885 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003886 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07003887
Jeff Layton91a27b22012-10-10 15:25:28 -04003888 error = security_path_symlink(&path, dentry, from->name);
Al Viroa8104a92012-07-20 02:25:00 +04003889 if (!error)
Jeff Layton91a27b22012-10-10 15:25:28 -04003890 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
Al Viro921a1652012-07-20 01:15:31 +04003891 done_path_create(&path, dentry);
Jeff Laytonf46d3562012-12-11 12:10:08 -05003892 if (retry_estale(error, lookup_flags)) {
3893 lookup_flags |= LOOKUP_REVAL;
3894 goto retry;
3895 }
Dave Hansen6902d922006-09-30 23:29:01 -07003896out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897 putname(from);
3898 return error;
3899}
3900
Heiko Carstens3480b252009-01-14 14:14:16 +01003901SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003902{
3903 return sys_symlinkat(oldname, AT_FDCWD, newname);
3904}
3905
J. Bruce Fields146a8592011-09-20 17:14:31 -04003906/**
3907 * vfs_link - create a new link
3908 * @old_dentry: object to be linked
3909 * @dir: new parent
3910 * @new_dentry: where to create the new link
3911 * @delegated_inode: returns inode needing a delegation break
3912 *
3913 * The caller must hold dir->i_mutex
3914 *
3915 * If vfs_link discovers a delegation on the to-be-linked file in need
3916 * of breaking, it will return -EWOULDBLOCK and return a reference to the
3917 * inode in delegated_inode. The caller should then break the delegation
3918 * and retry. Because breaking a delegation may take a long time, the
3919 * caller should drop the i_mutex before doing so.
3920 *
3921 * Alternatively, a caller may pass NULL for delegated_inode. This may
3922 * be appropriate for callers that expect the underlying filesystem not
3923 * to be NFS exported.
3924 */
3925int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926{
3927 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05003928 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 int error;
3930
3931 if (!inode)
3932 return -ENOENT;
3933
Miklos Szeredia95164d2008-07-30 15:08:48 +02003934 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 if (error)
3936 return error;
3937
3938 if (dir->i_sb != inode->i_sb)
3939 return -EXDEV;
3940
3941 /*
3942 * A link to an append-only or immutable file cannot be created.
3943 */
3944 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3945 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05003946 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003948 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 return -EPERM;
3950
3951 error = security_inode_link(old_dentry, dir, new_dentry);
3952 if (error)
3953 return error;
3954
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003955 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303956 /* Make sure we don't allow creating hardlink to an unlinked file */
Al Virof4e0c302013-06-11 08:34:36 +04003957 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303958 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05003959 else if (max_links && inode->i_nlink >= max_links)
3960 error = -EMLINK;
J. Bruce Fields146a8592011-09-20 17:14:31 -04003961 else {
3962 error = try_break_deleg(inode, delegated_inode);
3963 if (!error)
3964 error = dir->i_op->link(old_dentry, dir, new_dentry);
3965 }
Al Virof4e0c302013-06-11 08:34:36 +04003966
3967 if (!error && (inode->i_state & I_LINKABLE)) {
3968 spin_lock(&inode->i_lock);
3969 inode->i_state &= ~I_LINKABLE;
3970 spin_unlock(&inode->i_lock);
3971 }
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003972 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003973 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003974 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 return error;
3976}
Al Viro4d359502014-03-14 12:20:17 -04003977EXPORT_SYMBOL(vfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978
3979/*
3980 * Hardlinks are often used in delicate situations. We avoid
3981 * security-related surprises by not following symlinks on the
3982 * newname. --KAB
3983 *
3984 * We don't follow them on the oldname either to be compatible
3985 * with linux 2.0, and to avoid hard-linking to directories
3986 * and other special files. --ADM
3987 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003988SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
3989 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990{
3991 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003992 struct path old_path, new_path;
J. Bruce Fields146a8592011-09-20 17:14:31 -04003993 struct inode *delegated_inode = NULL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303994 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303997 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003998 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303999 /*
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004000 * To use null names we require CAP_DAC_READ_SEARCH
4001 * This ensures that not everyone will be able to create
4002 * handlink using the passed filedescriptor.
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304003 */
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004004 if (flags & AT_EMPTY_PATH) {
4005 if (!capable(CAP_DAC_READ_SEARCH))
4006 return -ENOENT;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304007 how = LOOKUP_EMPTY;
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004008 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004009
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304010 if (flags & AT_SYMLINK_FOLLOW)
4011 how |= LOOKUP_FOLLOW;
Jeff Layton442e31c2012-12-20 16:15:38 -05004012retry:
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304013 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04004015 return error;
4016
Jeff Layton442e31c2012-12-20 16:15:38 -05004017 new_dentry = user_path_create(newdfd, newname, &new_path,
4018 (how & LOOKUP_REVAL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07004020 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004021 goto out;
4022
4023 error = -EXDEV;
4024 if (old_path.mnt != new_path.mnt)
4025 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07004026 error = may_linkat(&old_path);
4027 if (unlikely(error))
4028 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04004029 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004030 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04004031 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004032 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
Dave Hansen75c3f292008-02-15 14:37:45 -08004033out_dput:
Al Viro921a1652012-07-20 01:15:31 +04004034 done_path_create(&new_path, new_dentry);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004035 if (delegated_inode) {
4036 error = break_deleg_wait(&delegated_inode);
Oleg Drokind22e6332014-01-31 15:41:58 -05004037 if (!error) {
4038 path_put(&old_path);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004039 goto retry;
Oleg Drokind22e6332014-01-31 15:41:58 -05004040 }
J. Bruce Fields146a8592011-09-20 17:14:31 -04004041 }
Jeff Layton442e31c2012-12-20 16:15:38 -05004042 if (retry_estale(error, how)) {
Oleg Drokind22e6332014-01-31 15:41:58 -05004043 path_put(&old_path);
Jeff Layton442e31c2012-12-20 16:15:38 -05004044 how |= LOOKUP_REVAL;
4045 goto retry;
4046 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047out:
Al Viro2d8f3032008-07-22 09:59:21 -04004048 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049
4050 return error;
4051}
4052
Heiko Carstens3480b252009-01-14 14:14:16 +01004053SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004054{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004055 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004056}
4057
Miklos Szeredibc270272014-04-01 17:08:42 +02004058/**
4059 * vfs_rename - rename a filesystem object
4060 * @old_dir: parent of source
4061 * @old_dentry: source
4062 * @new_dir: parent of destination
4063 * @new_dentry: destination
4064 * @delegated_inode: returns an inode needing a delegation break
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004065 * @flags: rename flags
Miklos Szeredibc270272014-04-01 17:08:42 +02004066 *
4067 * The caller must hold multiple mutexes--see lock_rename()).
4068 *
4069 * If vfs_rename discovers a delegation in need of breaking at either
4070 * the source or destination, it will return -EWOULDBLOCK and return a
4071 * reference to the inode in delegated_inode. The caller should then
4072 * break the delegation and retry. Because breaking a delegation may
4073 * take a long time, the caller should drop all locks before doing
4074 * so.
4075 *
4076 * Alternatively, a caller may pass NULL for delegated_inode. This may
4077 * be appropriate for callers that expect the underlying filesystem not
4078 * to be NFS exported.
4079 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 * The worst of all namespace operations - renaming directory. "Perverted"
4081 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4082 * Problems:
J. Bruce Fieldsd03b29a2014-02-17 16:52:33 -05004083 * a) we can get into loop creation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 * b) race potential - two innocent renames can create a loop together.
4085 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004086 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 * story.
J. Bruce Fields6cedba82012-03-05 11:40:41 -05004088 * c) we have to lock _four_ objects - parents and victim (if it exists),
4089 * and source (if it is not a directory).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004090 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091 * whether the target exists). Solution: try to be smart with locking
4092 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004093 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 * move will be locked. Thus we can rank directories by the tree
4095 * (ancestors first) and rank all non-directories after them.
4096 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004097 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 * HOWEVER, it relies on the assumption that any object with ->lookup()
4099 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4100 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07004101 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004102 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05004104 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 * locking].
4106 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004108 struct inode *new_dir, struct dentry *new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004109 struct inode **delegated_inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110{
4111 int error;
Miklos Szeredibc270272014-04-01 17:08:42 +02004112 bool is_dir = d_is_dir(old_dentry);
Eric Paris59b0df22010-02-08 12:53:52 -05004113 const unsigned char *old_name;
Miklos Szeredibc270272014-04-01 17:08:42 +02004114 struct inode *source = old_dentry->d_inode;
4115 struct inode *target = new_dentry->d_inode;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004116 bool new_is_dir = false;
4117 unsigned max_links = new_dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118
Miklos Szeredibc270272014-04-01 17:08:42 +02004119 if (source == target)
4120 return 0;
4121
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 error = may_delete(old_dir, old_dentry, is_dir);
4123 if (error)
4124 return error;
4125
Miklos Szeredida1ce062014-04-01 17:08:43 +02004126 if (!target) {
Miklos Szeredia95164d2008-07-30 15:08:48 +02004127 error = may_create(new_dir, new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004128 } else {
4129 new_is_dir = d_is_dir(new_dentry);
4130
4131 if (!(flags & RENAME_EXCHANGE))
4132 error = may_delete(new_dir, new_dentry, is_dir);
4133 else
4134 error = may_delete(new_dir, new_dentry, new_is_dir);
4135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 if (error)
4137 return error;
4138
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004139 if (!old_dir->i_op->rename && !old_dir->i_op->rename2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 return -EPERM;
4141
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004142 if (flags && !old_dir->i_op->rename2)
4143 return -EINVAL;
4144
Miklos Szeredibc270272014-04-01 17:08:42 +02004145 /*
4146 * If we are going to change the parent - check write permissions,
4147 * we'll need to flip '..'.
4148 */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004149 if (new_dir != old_dir) {
4150 if (is_dir) {
4151 error = inode_permission(source, MAY_WRITE);
4152 if (error)
4153 return error;
4154 }
4155 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4156 error = inode_permission(target, MAY_WRITE);
4157 if (error)
4158 return error;
4159 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004160 }
Robert Love0eeca282005-07-12 17:06:03 -04004161
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004162 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4163 flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004164 if (error)
4165 return error;
4166
4167 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
4168 dget(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004169 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004170 lock_two_nondirectories(source, target);
4171 else if (target)
4172 mutex_lock(&target->i_mutex);
4173
4174 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07004175 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004176 goto out;
4177
Miklos Szeredida1ce062014-04-01 17:08:43 +02004178 if (max_links && new_dir != old_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004179 error = -EMLINK;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004180 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
Miklos Szeredibc270272014-04-01 17:08:42 +02004181 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004182 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4183 old_dir->i_nlink >= max_links)
4184 goto out;
4185 }
4186 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4187 shrink_dcache_parent(new_dentry);
4188 if (!is_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004189 error = try_break_deleg(source, delegated_inode);
4190 if (error)
4191 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004192 }
4193 if (target && !new_is_dir) {
4194 error = try_break_deleg(target, delegated_inode);
4195 if (error)
4196 goto out;
Miklos Szeredibc270272014-04-01 17:08:42 +02004197 }
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004198 if (!old_dir->i_op->rename2) {
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004199 error = old_dir->i_op->rename(old_dir, old_dentry,
4200 new_dir, new_dentry);
4201 } else {
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004202 WARN_ON(old_dir->i_op->rename != NULL);
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004203 error = old_dir->i_op->rename2(old_dir, old_dentry,
4204 new_dir, new_dentry, flags);
4205 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004206 if (error)
4207 goto out;
4208
Miklos Szeredida1ce062014-04-01 17:08:43 +02004209 if (!(flags & RENAME_EXCHANGE) && target) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004210 if (is_dir)
4211 target->i_flags |= S_DEAD;
4212 dont_mount(new_dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004213 detach_mounts(new_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004214 }
Miklos Szeredida1ce062014-04-01 17:08:43 +02004215 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4216 if (!(flags & RENAME_EXCHANGE))
4217 d_move(old_dentry, new_dentry);
4218 else
4219 d_exchange(old_dentry, new_dentry);
4220 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004221out:
Miklos Szeredida1ce062014-04-01 17:08:43 +02004222 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004223 unlock_two_nondirectories(source, target);
4224 else if (target)
4225 mutex_unlock(&target->i_mutex);
4226 dput(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004227 if (!error) {
Al Viro123df292009-12-25 04:57:57 -05004228 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Miklos Szeredida1ce062014-04-01 17:08:43 +02004229 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4230 if (flags & RENAME_EXCHANGE) {
4231 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4232 new_is_dir, NULL, new_dentry);
4233 }
4234 }
Robert Love0eeca282005-07-12 17:06:03 -04004235 fsnotify_oldname_free(old_name);
4236
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 return error;
4238}
Al Viro4d359502014-03-14 12:20:17 -04004239EXPORT_SYMBOL(vfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004241SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4242 int, newdfd, const char __user *, newname, unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243{
Al Viro2ad94ae2008-07-21 09:32:51 -04004244 struct dentry *old_dentry, *new_dentry;
4245 struct dentry *trap;
Al Virof5beed72015-04-30 16:09:11 -04004246 struct path old_path, new_path;
4247 struct qstr old_last, new_last;
4248 int old_type, new_type;
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004249 struct inode *delegated_inode = NULL;
Jeff Layton91a27b22012-10-10 15:25:28 -04004250 struct filename *from;
4251 struct filename *to;
Al Virof5beed72015-04-30 16:09:11 -04004252 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
Jeff Laytonc6a94282012-12-11 12:10:10 -05004253 bool should_retry = false;
Al Viro2ad94ae2008-07-21 09:32:51 -04004254 int error;
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004255
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004256 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredida1ce062014-04-01 17:08:43 +02004257 return -EINVAL;
4258
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004259 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4260 (flags & RENAME_EXCHANGE))
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004261 return -EINVAL;
4262
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004263 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4264 return -EPERM;
4265
Al Virof5beed72015-04-30 16:09:11 -04004266 if (flags & RENAME_EXCHANGE)
4267 target_flags = 0;
4268
Jeff Laytonc6a94282012-12-11 12:10:10 -05004269retry:
Al Virof5beed72015-04-30 16:09:11 -04004270 from = user_path_parent(olddfd, oldname,
4271 &old_path, &old_last, &old_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004272 if (IS_ERR(from)) {
4273 error = PTR_ERR(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 goto exit;
Jeff Layton91a27b22012-10-10 15:25:28 -04004275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276
Al Virof5beed72015-04-30 16:09:11 -04004277 to = user_path_parent(newdfd, newname,
4278 &new_path, &new_last, &new_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004279 if (IS_ERR(to)) {
4280 error = PTR_ERR(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281 goto exit1;
Jeff Layton91a27b22012-10-10 15:25:28 -04004282 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283
4284 error = -EXDEV;
Al Virof5beed72015-04-30 16:09:11 -04004285 if (old_path.mnt != new_path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 goto exit2;
4287
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 error = -EBUSY;
Al Virof5beed72015-04-30 16:09:11 -04004289 if (old_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 goto exit2;
4291
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004292 if (flags & RENAME_NOREPLACE)
4293 error = -EEXIST;
Al Virof5beed72015-04-30 16:09:11 -04004294 if (new_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295 goto exit2;
4296
Al Virof5beed72015-04-30 16:09:11 -04004297 error = mnt_want_write(old_path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004298 if (error)
4299 goto exit2;
4300
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004301retry_deleg:
Al Virof5beed72015-04-30 16:09:11 -04004302 trap = lock_rename(new_path.dentry, old_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303
Al Virof5beed72015-04-30 16:09:11 -04004304 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 error = PTR_ERR(old_dentry);
4306 if (IS_ERR(old_dentry))
4307 goto exit3;
4308 /* source must exist */
4309 error = -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01004310 if (d_is_negative(old_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311 goto exit4;
Al Virof5beed72015-04-30 16:09:11 -04004312 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 error = PTR_ERR(new_dentry);
4314 if (IS_ERR(new_dentry))
4315 goto exit4;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004316 error = -EEXIST;
4317 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4318 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004319 if (flags & RENAME_EXCHANGE) {
4320 error = -ENOENT;
4321 if (d_is_negative(new_dentry))
4322 goto exit5;
4323
4324 if (!d_is_dir(new_dentry)) {
4325 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004326 if (new_last.name[new_last.len])
Miklos Szeredida1ce062014-04-01 17:08:43 +02004327 goto exit5;
4328 }
4329 }
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004330 /* unless the source is a directory trailing slashes give -ENOTDIR */
4331 if (!d_is_dir(old_dentry)) {
4332 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004333 if (old_last.name[old_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004334 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004335 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004336 goto exit5;
4337 }
4338 /* source should not be ancestor of target */
4339 error = -EINVAL;
4340 if (old_dentry == trap)
4341 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 /* target should not be an ancestor of source */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004343 if (!(flags & RENAME_EXCHANGE))
4344 error = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 if (new_dentry == trap)
4346 goto exit5;
4347
Al Virof5beed72015-04-30 16:09:11 -04004348 error = security_path_rename(&old_path, old_dentry,
4349 &new_path, new_dentry, flags);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004350 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004351 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004352 error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4353 new_path.dentry->d_inode, new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004354 &delegated_inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355exit5:
4356 dput(new_dentry);
4357exit4:
4358 dput(old_dentry);
4359exit3:
Al Virof5beed72015-04-30 16:09:11 -04004360 unlock_rename(new_path.dentry, old_path.dentry);
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004361 if (delegated_inode) {
4362 error = break_deleg_wait(&delegated_inode);
4363 if (!error)
4364 goto retry_deleg;
4365 }
Al Virof5beed72015-04-30 16:09:11 -04004366 mnt_drop_write(old_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367exit2:
Jeff Laytonc6a94282012-12-11 12:10:10 -05004368 if (retry_estale(error, lookup_flags))
4369 should_retry = true;
Al Virof5beed72015-04-30 16:09:11 -04004370 path_put(&new_path);
Al Viro2ad94ae2008-07-21 09:32:51 -04004371 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372exit1:
Al Virof5beed72015-04-30 16:09:11 -04004373 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 putname(from);
Jeff Laytonc6a94282012-12-11 12:10:10 -05004375 if (should_retry) {
4376 should_retry = false;
4377 lookup_flags |= LOOKUP_REVAL;
4378 goto retry;
4379 }
Al Viro2ad94ae2008-07-21 09:32:51 -04004380exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004381 return error;
4382}
4383
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004384SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4385 int, newdfd, const char __user *, newname)
4386{
4387 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4388}
4389
Heiko Carstensa26eab22009-01-14 14:14:17 +01004390SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004391{
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004392 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004393}
4394
Miklos Szeredi787fb6b2014-10-24 00:14:36 +02004395int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4396{
4397 int error = may_create(dir, dentry);
4398 if (error)
4399 return error;
4400
4401 if (!dir->i_op->mknod)
4402 return -EPERM;
4403
4404 return dir->i_op->mknod(dir, dentry,
4405 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4406}
4407EXPORT_SYMBOL(vfs_whiteout);
4408
Al Viro5d826c82014-03-14 13:42:45 -04004409int readlink_copy(char __user *buffer, int buflen, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410{
Al Viro5d826c82014-03-14 13:42:45 -04004411 int len = PTR_ERR(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 if (IS_ERR(link))
4413 goto out;
4414
4415 len = strlen(link);
4416 if (len > (unsigned) buflen)
4417 len = buflen;
4418 if (copy_to_user(buffer, link, len))
4419 len = -EFAULT;
4420out:
4421 return len;
4422}
Al Viro5d826c82014-03-14 13:42:45 -04004423EXPORT_SYMBOL(readlink_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424
4425/*
4426 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
4427 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
4428 * using) it for any given inode is up to filesystem.
4429 */
4430int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4431{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004432 void *cookie;
Al Virod4dee482015-04-30 20:08:02 -04004433 const char *link = dentry->d_inode->i_link;
Marcin Slusarz694a1762008-06-09 16:40:37 -07004434 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004435
Al Virod4dee482015-04-30 20:08:02 -04004436 if (!link) {
4437 link = dentry->d_inode->i_op->follow_link(dentry, &cookie, NULL);
4438 if (IS_ERR(link))
4439 return PTR_ERR(link);
4440 }
Al Viro680baac2015-05-02 13:32:22 -04004441 res = readlink_copy(buffer, buflen, link);
4442 if (cookie && dentry->d_inode->i_op->put_link)
4443 dentry->d_inode->i_op->put_link(dentry, cookie);
Marcin Slusarz694a1762008-06-09 16:40:37 -07004444 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445}
Al Viro4d359502014-03-14 12:20:17 -04004446EXPORT_SYMBOL(generic_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448/* get the link contents into pagecache */
4449static char *page_getlink(struct dentry * dentry, struct page **ppage)
4450{
Duane Griffinebd09ab2008-12-19 20:47:12 +00004451 char *kaddr;
4452 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07004454 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07004456 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004457 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00004458 kaddr = kmap(page);
4459 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
4460 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004461}
4462
4463int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4464{
4465 struct page *page = NULL;
Al Viro5d826c82014-03-14 13:42:45 -04004466 int res = readlink_copy(buffer, buflen, page_getlink(dentry, &page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467 if (page) {
4468 kunmap(page);
4469 page_cache_release(page);
4470 }
4471 return res;
4472}
Al Viro4d359502014-03-14 12:20:17 -04004473EXPORT_SYMBOL(page_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474
Al Viro680baac2015-05-02 13:32:22 -04004475const char *page_follow_link_light(struct dentry *dentry, void **cookie, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004477 struct page *page = NULL;
Al Viro680baac2015-05-02 13:32:22 -04004478 char *res = page_getlink(dentry, &page);
4479 if (!IS_ERR(res))
4480 *cookie = page;
4481 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482}
Al Viro4d359502014-03-14 12:20:17 -04004483EXPORT_SYMBOL(page_follow_link_light);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484
Al Viro680baac2015-05-02 13:32:22 -04004485void page_put_link(struct dentry *dentry, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004487 struct page *page = cookie;
Al Viro680baac2015-05-02 13:32:22 -04004488 kunmap(page);
4489 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490}
Al Viro4d359502014-03-14 12:20:17 -04004491EXPORT_SYMBOL(page_put_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492
Nick Piggin54566b22009-01-04 12:00:53 -08004493/*
4494 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4495 */
4496int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497{
4498 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004499 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07004500 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08004501 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08004503 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4504 if (nofs)
4505 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506
NeilBrown7e53cac2006-03-25 03:07:57 -08004507retry:
Nick Pigginafddba42007-10-16 01:25:01 -07004508 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08004509 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07004511 goto fail;
4512
Cong Wange8e3c3d2011-11-25 23:14:27 +08004513 kaddr = kmap_atomic(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514 memcpy(kaddr, symname, len-1);
Cong Wange8e3c3d2011-11-25 23:14:27 +08004515 kunmap_atomic(kaddr);
Nick Pigginafddba42007-10-16 01:25:01 -07004516
4517 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4518 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519 if (err < 0)
4520 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07004521 if (err < len-1)
4522 goto retry;
4523
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 mark_inode_dirty(inode);
4525 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004526fail:
4527 return err;
4528}
Al Viro4d359502014-03-14 12:20:17 -04004529EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004531int page_symlink(struct inode *inode, const char *symname, int len)
4532{
4533 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08004534 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004535}
Al Viro4d359502014-03-14 12:20:17 -04004536EXPORT_SYMBOL(page_symlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004537
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004538const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 .readlink = generic_readlink,
4540 .follow_link = page_follow_link_light,
4541 .put_link = page_put_link,
4542};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004543EXPORT_SYMBOL(page_symlink_inode_operations);