blob: c7a6eabc02a534c6df67dbe1674d6b42709aaa8f [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 Blunck5dd784d02008-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 Blunck5dd784d02008-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;
497 struct qstr last;
498 struct path root;
499 struct inode *inode; /* path.dentry.d_inode */
500 unsigned int flags;
501 unsigned seq, m_seq;
502 int last_type;
503 unsigned depth;
Al Viro5e530842014-11-20 14:14:42 -0500504 struct file *base;
Al Viro1f55a6e2014-11-01 19:30:41 -0400505 char *saved_names[MAX_NESTED_LINKS + 1];
506};
507
Eric W. Biedermaneed13ce2015-08-15 20:27:13 -0500508/**
509 * path_connected - Verify that a path->dentry is below path->mnt.mnt_root
510 * @path: nameidate to verify
511 *
512 * Rename can sometimes move a file or directory outside of a bind
513 * mount, path_connected allows those cases to be detected.
514 */
515static bool path_connected(const struct path *path)
516{
517 struct vfsmount *mnt = path->mnt;
518
519 /* Only bind mounts can have disconnected paths */
520 if (mnt->mnt_root == mnt->mnt_sb->s_root)
521 return true;
522
523 return is_subdir(path->dentry, mnt->mnt_root);
524}
525
Al Viro19660af2011-03-25 10:32:48 -0400526/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100527 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400528 * Documentation/filesystems/path-lookup.txt). In situations when we can't
529 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
530 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
531 * mode. Refcounts are grabbed at the last known good point before rcu-walk
532 * got stuck, so ref-walk may continue from there. If this is not successful
533 * (eg. a seqcount has changed), then failure is returned and it's up to caller
534 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100535 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100536
537/**
Al Viro19660af2011-03-25 10:32:48 -0400538 * unlazy_walk - try to switch to ref-walk mode.
539 * @nd: nameidata pathwalk data
540 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800541 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100542 *
Al Viro19660af2011-03-25 10:32:48 -0400543 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
544 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
545 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100546 */
Al Viro19660af2011-03-25 10:32:48 -0400547static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100548{
549 struct fs_struct *fs = current->fs;
550 struct dentry *parent = nd->path.dentry;
551
552 BUG_ON(!(nd->flags & LOOKUP_RCU));
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700553
554 /*
Al Viro48a066e2013-09-29 22:06:07 -0400555 * After legitimizing the bastards, terminate_walk()
556 * will do the right thing for non-RCU mode, and all our
557 * subsequent exit cases should rcu_read_unlock()
558 * before returning. Do vfsmount first; if dentry
559 * can't be legitimized, just set nd->path.dentry to NULL
560 * and rely on dput(NULL) being a no-op.
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700561 */
Al Viro48a066e2013-09-29 22:06:07 -0400562 if (!legitimize_mnt(nd->path.mnt, nd->m_seq))
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700563 return -ECHILD;
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700564 nd->flags &= ~LOOKUP_RCU;
Linus Torvalds15570082013-09-02 11:38:06 -0700565
Al Viro48a066e2013-09-29 22:06:07 -0400566 if (!lockref_get_not_dead(&parent->d_lockref)) {
567 nd->path.dentry = NULL;
Al Virod870b4a2013-11-29 01:48:32 -0500568 goto out;
Al Viro48a066e2013-09-29 22:06:07 -0400569 }
570
Linus Torvalds15570082013-09-02 11:38:06 -0700571 /*
572 * For a negative lookup, the lookup sequence point is the parents
573 * sequence point, and it only needs to revalidate the parent dentry.
574 *
575 * For a positive lookup, we need to move both the parent and the
576 * dentry from the RCU domain to be properly refcounted. And the
577 * sequence number in the dentry validates *both* dentry counters,
578 * since we checked the sequence number of the parent after we got
579 * the child sequence number. So we know the parent must still
580 * be valid if the child sequence number is still valid.
581 */
Al Viro19660af2011-03-25 10:32:48 -0400582 if (!dentry) {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700583 if (read_seqcount_retry(&parent->d_seq, nd->seq))
584 goto out;
Al Viro19660af2011-03-25 10:32:48 -0400585 BUG_ON(nd->inode != parent->d_inode);
586 } else {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700587 if (!lockref_get_not_dead(&dentry->d_lockref))
588 goto out;
589 if (read_seqcount_retry(&dentry->d_seq, nd->seq))
590 goto drop_dentry;
Al Viro19660af2011-03-25 10:32:48 -0400591 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700592
593 /*
594 * Sequence counts matched. Now make sure that the root is
595 * still valid and get it if required.
596 */
597 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
598 spin_lock(&fs->lock);
599 if (nd->root.mnt != fs->root.mnt || nd->root.dentry != fs->root.dentry)
600 goto unlock_and_drop_dentry;
Nick Piggin31e6b012011-01-07 17:49:52 +1100601 path_get(&nd->root);
602 spin_unlock(&fs->lock);
603 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100604
Al Viro8b61e742013-11-08 12:45:01 -0500605 rcu_read_unlock();
Nick Piggin31e6b012011-01-07 17:49:52 +1100606 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400607
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700608unlock_and_drop_dentry:
609 spin_unlock(&fs->lock);
610drop_dentry:
Al Viro8b61e742013-11-08 12:45:01 -0500611 rcu_read_unlock();
Linus Torvalds15570082013-09-02 11:38:06 -0700612 dput(dentry);
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700613 goto drop_root_mnt;
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700614out:
Al Viro8b61e742013-11-08 12:45:01 -0500615 rcu_read_unlock();
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700616drop_root_mnt:
617 if (!(nd->flags & LOOKUP_ROOT))
618 nd->root.mnt = NULL;
Nick Piggin31e6b012011-01-07 17:49:52 +1100619 return -ECHILD;
620}
621
Al Viro4ce16ef32012-06-10 16:10:59 -0400622static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
Nick Piggin34286d62011-01-07 17:49:57 +1100623{
Al Viro4ce16ef32012-06-10 16:10:59 -0400624 return dentry->d_op->d_revalidate(dentry, flags);
Nick Piggin34286d62011-01-07 17:49:57 +1100625}
626
Al Viro9f1fafe2011-03-25 11:00:12 -0400627/**
628 * complete_walk - successful completion of path walk
629 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500630 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400631 * If we had been in RCU mode, drop out of it and legitimize nd->path.
632 * Revalidate the final result, unless we'd already done that during
633 * the path walk or the filesystem doesn't ask for it. Return 0 on
634 * success, -error on failure. In case of failure caller does not
635 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500636 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400637static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500638{
Al Viro16c2cd72011-02-22 15:50:10 -0500639 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500640 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500641
Al Viro9f1fafe2011-03-25 11:00:12 -0400642 if (nd->flags & LOOKUP_RCU) {
643 nd->flags &= ~LOOKUP_RCU;
644 if (!(nd->flags & LOOKUP_ROOT))
645 nd->root.mnt = NULL;
Linus Torvalds15570082013-09-02 11:38:06 -0700646
Al Viro48a066e2013-09-29 22:06:07 -0400647 if (!legitimize_mnt(nd->path.mnt, nd->m_seq)) {
Al Viro8b61e742013-11-08 12:45:01 -0500648 rcu_read_unlock();
Al Viro48a066e2013-09-29 22:06:07 -0400649 return -ECHILD;
650 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700651 if (unlikely(!lockref_get_not_dead(&dentry->d_lockref))) {
Al Viro8b61e742013-11-08 12:45:01 -0500652 rcu_read_unlock();
Al Viro48a066e2013-09-29 22:06:07 -0400653 mntput(nd->path.mnt);
Al Viro9f1fafe2011-03-25 11:00:12 -0400654 return -ECHILD;
655 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700656 if (read_seqcount_retry(&dentry->d_seq, nd->seq)) {
Al Viro8b61e742013-11-08 12:45:01 -0500657 rcu_read_unlock();
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700658 dput(dentry);
Al Viro48a066e2013-09-29 22:06:07 -0400659 mntput(nd->path.mnt);
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700660 return -ECHILD;
661 }
Al Viro8b61e742013-11-08 12:45:01 -0500662 rcu_read_unlock();
Al Viro9f1fafe2011-03-25 11:00:12 -0400663 }
664
Al Viro16c2cd72011-02-22 15:50:10 -0500665 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500666 return 0;
667
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500668 if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
Al Viro16c2cd72011-02-22 15:50:10 -0500669 return 0;
670
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500671 status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
Jeff Layton39159de2009-12-07 12:01:50 -0500672 if (status > 0)
673 return 0;
674
Al Viro16c2cd72011-02-22 15:50:10 -0500675 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500676 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500677
Al Viro9f1fafe2011-03-25 11:00:12 -0400678 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500679 return status;
680}
681
Al Viro2a737872009-04-07 11:49:53 -0400682static __always_inline void set_root(struct nameidata *nd)
683{
Al Viro7bd88372014-09-13 21:55:46 -0400684 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400685}
686
Al Viro6de88d72009-08-09 01:41:57 +0400687static int link_path_walk(const char *, struct nameidata *);
688
Al Viro7bd88372014-09-13 21:55:46 -0400689static __always_inline unsigned set_root_rcu(struct nameidata *nd)
Nick Piggin31e6b012011-01-07 17:49:52 +1100690{
Al Viro7bd88372014-09-13 21:55:46 -0400691 struct fs_struct *fs = current->fs;
692 unsigned seq, res;
Nick Pigginc28cc362011-01-07 17:49:53 +1100693
Al Viro7bd88372014-09-13 21:55:46 -0400694 do {
695 seq = read_seqcount_begin(&fs->seq);
696 nd->root = fs->root;
697 res = __read_seqcount_begin(&nd->root.dentry->d_seq);
698 } while (read_seqcount_retry(&fs->seq, seq));
699 return res;
Nick Piggin31e6b012011-01-07 17:49:52 +1100700}
701
Jan Blunck1d957f92008-02-14 19:34:35 -0800702static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700703{
704 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800705 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700706 mntput(path->mnt);
707}
708
Nick Piggin7b9337a2011-01-14 08:42:43 +0000709static inline void path_to_nameidata(const struct path *path,
710 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700711{
Nick Piggin31e6b012011-01-07 17:49:52 +1100712 if (!(nd->flags & LOOKUP_RCU)) {
713 dput(nd->path.dentry);
714 if (nd->path.mnt != path->mnt)
715 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800716 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100717 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800718 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700719}
720
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400721/*
722 * Helper to directly jump to a known parsed path from ->follow_link,
723 * caller must have taken a reference to path beforehand.
724 */
725void nd_jump_link(struct nameidata *nd, struct path *path)
726{
727 path_put(&nd->path);
728
729 nd->path = *path;
730 nd->inode = nd->path.dentry->d_inode;
731 nd->flags |= LOOKUP_JUMPED;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400732}
733
Al Viro1f55a6e2014-11-01 19:30:41 -0400734void nd_set_link(struct nameidata *nd, char *path)
735{
736 nd->saved_names[nd->depth] = path;
737}
738EXPORT_SYMBOL(nd_set_link);
739
740char *nd_get_link(struct nameidata *nd)
741{
742 return nd->saved_names[nd->depth];
743}
744EXPORT_SYMBOL(nd_get_link);
745
Al Viro574197e2011-03-14 22:20:34 -0400746static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
747{
748 struct inode *inode = link->dentry->d_inode;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400749 if (inode->i_op->put_link)
Al Viro574197e2011-03-14 22:20:34 -0400750 inode->i_op->put_link(link->dentry, nd, cookie);
751 path_put(link);
752}
753
Linus Torvalds561ec642012-10-26 10:05:07 -0700754int sysctl_protected_symlinks __read_mostly = 0;
755int sysctl_protected_hardlinks __read_mostly = 0;
Kees Cook800179c2012-07-25 17:29:07 -0700756
757/**
758 * may_follow_link - Check symlink following for unsafe situations
759 * @link: The path of the symlink
Randy Dunlap55852632012-08-18 17:39:25 -0700760 * @nd: nameidata pathwalk data
Kees Cook800179c2012-07-25 17:29:07 -0700761 *
762 * In the case of the sysctl_protected_symlinks sysctl being enabled,
763 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
764 * in a sticky world-writable directory. This is to protect privileged
765 * processes from failing races against path names that may change out
766 * from under them by way of other users creating malicious symlinks.
767 * It will permit symlinks to be followed only when outside a sticky
768 * world-writable directory, or when the uid of the symlink and follower
769 * match, or when the directory owner matches the symlink's owner.
770 *
771 * Returns 0 if following the symlink is allowed, -ve on error.
772 */
773static inline int may_follow_link(struct path *link, struct nameidata *nd)
774{
775 const struct inode *inode;
776 const struct inode *parent;
777
778 if (!sysctl_protected_symlinks)
779 return 0;
780
781 /* Allowed if owner and follower match. */
782 inode = link->dentry->d_inode;
Eric W. Biederman81abe272012-08-03 09:38:08 -0700783 if (uid_eq(current_cred()->fsuid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700784 return 0;
785
786 /* Allowed if parent directory not sticky and world-writable. */
787 parent = nd->path.dentry->d_inode;
788 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
789 return 0;
790
791 /* Allowed if parent directory and link owner match. */
Eric W. Biederman81abe272012-08-03 09:38:08 -0700792 if (uid_eq(parent->i_uid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700793 return 0;
794
Sasha Levinffd8d102012-10-04 19:56:40 -0400795 audit_log_link_denied("follow_link", link);
Kees Cook800179c2012-07-25 17:29:07 -0700796 path_put_conditional(link, nd);
797 path_put(&nd->path);
798 return -EACCES;
799}
800
801/**
802 * safe_hardlink_source - Check for safe hardlink conditions
803 * @inode: the source inode to hardlink from
804 *
805 * Return false if at least one of the following conditions:
806 * - inode is not a regular file
807 * - inode is setuid
808 * - inode is setgid and group-exec
809 * - access failure for read and write
810 *
811 * Otherwise returns true.
812 */
813static bool safe_hardlink_source(struct inode *inode)
814{
815 umode_t mode = inode->i_mode;
816
817 /* Special files should not get pinned to the filesystem. */
818 if (!S_ISREG(mode))
819 return false;
820
821 /* Setuid files should not get pinned to the filesystem. */
822 if (mode & S_ISUID)
823 return false;
824
825 /* Executable setgid files should not get pinned to the filesystem. */
826 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
827 return false;
828
829 /* Hardlinking to unreadable or unwritable sources is dangerous. */
830 if (inode_permission(inode, MAY_READ | MAY_WRITE))
831 return false;
832
833 return true;
834}
835
836/**
837 * may_linkat - Check permissions for creating a hardlink
838 * @link: the source to hardlink from
839 *
840 * Block hardlink when all of:
841 * - sysctl_protected_hardlinks enabled
842 * - fsuid does not match inode
843 * - hardlink source is unsafe (see safe_hardlink_source() above)
844 * - not CAP_FOWNER
845 *
846 * Returns 0 if successful, -ve on error.
847 */
848static int may_linkat(struct path *link)
849{
850 const struct cred *cred;
851 struct inode *inode;
852
853 if (!sysctl_protected_hardlinks)
854 return 0;
855
856 cred = current_cred();
857 inode = link->dentry->d_inode;
858
859 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
860 * otherwise, it must be a safe source.
861 */
Eric W. Biederman81abe272012-08-03 09:38:08 -0700862 if (uid_eq(cred->fsuid, inode->i_uid) || safe_hardlink_source(inode) ||
Kees Cook800179c2012-07-25 17:29:07 -0700863 capable(CAP_FOWNER))
864 return 0;
865
Kees Cooka51d9ea2012-07-25 17:29:08 -0700866 audit_log_link_denied("linkat", link);
Kees Cook800179c2012-07-25 17:29:07 -0700867 return -EPERM;
868}
869
Al Virodef4af32009-12-26 08:37:05 -0500870static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400871follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800872{
Nick Piggin7b9337a2011-01-14 08:42:43 +0000873 struct dentry *dentry = link->dentry;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400874 int error;
875 char *s;
Ian Kent051d3812006-03-27 01:14:53 -0800876
Al Viro844a3912011-02-15 00:38:26 -0500877 BUG_ON(nd->flags & LOOKUP_RCU);
878
Al Viro0e794582011-03-16 02:45:02 -0400879 if (link->mnt == nd->path.mnt)
880 mntget(link->mnt);
881
Al Viro6d7b5aa2012-06-10 04:15:17 -0400882 error = -ELOOP;
883 if (unlikely(current->total_link_count >= 40))
884 goto out_put_nd_path;
885
Al Viro574197e2011-03-14 22:20:34 -0400886 cond_resched();
887 current->total_link_count++;
888
Al Viro68ac1232012-03-15 08:21:57 -0400889 touch_atime(link);
Ian Kent051d3812006-03-27 01:14:53 -0800890 nd_set_link(nd, NULL);
891
Al Viro36f3b4f2011-02-22 21:24:38 -0500892 error = security_inode_follow_link(link->dentry, nd);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400893 if (error)
894 goto out_put_nd_path;
Al Viro36f3b4f2011-02-22 21:24:38 -0500895
Al Viro86acdca12009-12-22 23:45:11 -0500896 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500897 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
898 error = PTR_ERR(*p);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400899 if (IS_ERR(*p))
Christoph Hellwig408ef012012-06-18 10:47:03 -0400900 goto out_put_nd_path;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400901
902 error = 0;
903 s = nd_get_link(nd);
904 if (s) {
Al Viro443ed252013-09-10 12:00:43 -0400905 if (unlikely(IS_ERR(s))) {
906 path_put(&nd->path);
907 put_link(nd, link, *p);
908 return PTR_ERR(s);
909 }
910 if (*s == '/') {
Al Viro7bd88372014-09-13 21:55:46 -0400911 if (!nd->root.mnt)
912 set_root(nd);
Al Viro443ed252013-09-10 12:00:43 -0400913 path_put(&nd->path);
914 nd->path = nd->root;
915 path_get(&nd->root);
916 nd->flags |= LOOKUP_JUMPED;
917 }
918 nd->inode = nd->path.dentry->d_inode;
919 error = link_path_walk(s, nd);
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400920 if (unlikely(error))
921 put_link(nd, link, *p);
Ian Kent051d3812006-03-27 01:14:53 -0800922 }
Al Viro6d7b5aa2012-06-10 04:15:17 -0400923
924 return error;
925
926out_put_nd_path:
Arnd Bergmann98f6ef62012-10-11 13:20:00 +0000927 *p = NULL;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400928 path_put(&nd->path);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400929 path_put(link);
Ian Kent051d3812006-03-27 01:14:53 -0800930 return error;
931}
932
Nick Piggin31e6b012011-01-07 17:49:52 +1100933static int follow_up_rcu(struct path *path)
934{
Al Viro0714a532011-11-24 22:19:58 -0500935 struct mount *mnt = real_mount(path->mnt);
936 struct mount *parent;
Nick Piggin31e6b012011-01-07 17:49:52 +1100937 struct dentry *mountpoint;
938
Al Viro0714a532011-11-24 22:19:58 -0500939 parent = mnt->mnt_parent;
940 if (&parent->mnt == path->mnt)
Nick Piggin31e6b012011-01-07 17:49:52 +1100941 return 0;
Al Viroa73324d2011-11-24 22:25:07 -0500942 mountpoint = mnt->mnt_mountpoint;
Nick Piggin31e6b012011-01-07 17:49:52 +1100943 path->dentry = mountpoint;
Al Viro0714a532011-11-24 22:19:58 -0500944 path->mnt = &parent->mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +1100945 return 1;
946}
947
David Howellsf015f1262012-06-25 12:55:28 +0100948/*
949 * follow_up - Find the mountpoint of path's vfsmount
950 *
951 * Given a path, find the mountpoint of its source file system.
952 * Replace @path with the path of the mountpoint in the parent mount.
953 * Up is towards /.
954 *
955 * Return 1 if we went up a level and 0 if we were already at the
956 * root.
957 */
Al Virobab77eb2009-04-18 03:26:48 -0400958int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959{
Al Viro0714a532011-11-24 22:19:58 -0500960 struct mount *mnt = real_mount(path->mnt);
961 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000963
Al Viro48a066e2013-09-29 22:06:07 -0400964 read_seqlock_excl(&mount_lock);
Al Viro0714a532011-11-24 22:19:58 -0500965 parent = mnt->mnt_parent;
Al Viro3c0a6162012-07-18 17:32:50 +0400966 if (parent == mnt) {
Al Viro48a066e2013-09-29 22:06:07 -0400967 read_sequnlock_excl(&mount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 return 0;
969 }
Al Viro0714a532011-11-24 22:19:58 -0500970 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -0500971 mountpoint = dget(mnt->mnt_mountpoint);
Al Viro48a066e2013-09-29 22:06:07 -0400972 read_sequnlock_excl(&mount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400973 dput(path->dentry);
974 path->dentry = mountpoint;
975 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -0500976 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 return 1;
978}
Al Viro4d359502014-03-14 12:20:17 -0400979EXPORT_SYMBOL(follow_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100981/*
David Howells9875cf82011-01-14 18:45:21 +0000982 * Perform an automount
983 * - return -EISDIR to tell follow_managed() to stop and return the path we
984 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 */
David Howells9875cf82011-01-14 18:45:21 +0000986static int follow_automount(struct path *path, unsigned flags,
987 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100988{
David Howells9875cf82011-01-14 18:45:21 +0000989 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000990 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100991
David Howells9875cf82011-01-14 18:45:21 +0000992 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
993 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700994
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200995 /* We don't want to mount if someone's just doing a stat -
996 * unless they're stat'ing a directory and appended a '/' to
997 * the name.
998 *
999 * We do, however, want to mount if someone wants to open or
1000 * create a file of any type under the mountpoint, wants to
1001 * traverse through the mountpoint or wants to open the
1002 * mounted directory. Also, autofs may mark negative dentries
1003 * as being automount points. These will need the attentions
1004 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +00001005 */
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001006 if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
Linus Torvaldsd94c1772011-09-26 17:44:55 -07001007 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001008 path->dentry->d_inode)
1009 return -EISDIR;
1010
David Howells9875cf82011-01-14 18:45:21 +00001011 current->total_link_count++;
1012 if (current->total_link_count >= 40)
1013 return -ELOOP;
1014
1015 mnt = path->dentry->d_op->d_automount(path);
1016 if (IS_ERR(mnt)) {
1017 /*
1018 * The filesystem is allowed to return -EISDIR here to indicate
1019 * it doesn't want to automount. For instance, autofs would do
1020 * this so that its userspace daemon can mount on this dentry.
1021 *
1022 * However, we can only permit this if it's a terminal point in
1023 * the path being looked up; if it wasn't then the remainder of
1024 * the path is inaccessible and we should say so.
1025 */
Al Viro49084c32011-06-25 21:59:52 -04001026 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +00001027 return -EREMOTE;
1028 return PTR_ERR(mnt);
1029 }
David Howellsea5b7782011-01-14 19:10:03 +00001030
David Howells9875cf82011-01-14 18:45:21 +00001031 if (!mnt) /* mount collision */
1032 return 0;
1033
Al Viro8aef1882011-06-16 15:10:06 +01001034 if (!*need_mntput) {
1035 /* lock_mount() may release path->mnt on error */
1036 mntget(path->mnt);
1037 *need_mntput = true;
1038 }
Al Viro19a167a2011-01-17 01:35:23 -05001039 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +00001040
David Howellsea5b7782011-01-14 19:10:03 +00001041 switch (err) {
1042 case -EBUSY:
1043 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -05001044 return 0;
David Howellsea5b7782011-01-14 19:10:03 +00001045 case 0:
Al Viro8aef1882011-06-16 15:10:06 +01001046 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +00001047 path->mnt = mnt;
1048 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +00001049 return 0;
Al Viro19a167a2011-01-17 01:35:23 -05001050 default:
1051 return err;
David Howellsea5b7782011-01-14 19:10:03 +00001052 }
Al Viro19a167a2011-01-17 01:35:23 -05001053
David Howells9875cf82011-01-14 18:45:21 +00001054}
1055
1056/*
1057 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +00001058 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +00001059 * - Flagged as mountpoint
1060 * - Flagged as automount point
1061 *
1062 * This may only be called in refwalk mode.
1063 *
1064 * Serialization is taken care of in namespace.c
1065 */
1066static int follow_managed(struct path *path, unsigned flags)
1067{
Al Viro8aef1882011-06-16 15:10:06 +01001068 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +00001069 unsigned managed;
1070 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +01001071 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +00001072
1073 /* Given that we're not holding a lock here, we retain the value in a
1074 * local variable for each dentry as we look at it so that we don't see
1075 * the components of that value change under us */
1076 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1077 managed &= DCACHE_MANAGED_DENTRY,
1078 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +00001079 /* Allow the filesystem to manage the transit without i_mutex
1080 * being held. */
1081 if (managed & DCACHE_MANAGE_TRANSIT) {
1082 BUG_ON(!path->dentry->d_op);
1083 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -04001084 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001085 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001086 break;
David Howellscc53ce52011-01-14 18:45:26 +00001087 }
1088
David Howells9875cf82011-01-14 18:45:21 +00001089 /* Transit to a mounted filesystem. */
1090 if (managed & DCACHE_MOUNTED) {
1091 struct vfsmount *mounted = lookup_mnt(path);
1092 if (mounted) {
1093 dput(path->dentry);
1094 if (need_mntput)
1095 mntput(path->mnt);
1096 path->mnt = mounted;
1097 path->dentry = dget(mounted->mnt_root);
1098 need_mntput = true;
1099 continue;
1100 }
1101
1102 /* Something is mounted on this dentry in another
1103 * namespace and/or whatever was mounted there in this
Al Viro48a066e2013-09-29 22:06:07 -04001104 * namespace got unmounted before lookup_mnt() could
1105 * get it */
David Howells9875cf82011-01-14 18:45:21 +00001106 }
1107
1108 /* Handle an automount point */
1109 if (managed & DCACHE_NEED_AUTOMOUNT) {
1110 ret = follow_automount(path, flags, &need_mntput);
1111 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001112 break;
David Howells9875cf82011-01-14 18:45:21 +00001113 continue;
1114 }
1115
1116 /* We didn't change the current path point */
1117 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
Al Viro8aef1882011-06-16 15:10:06 +01001119
1120 if (need_mntput && path->mnt == mnt)
1121 mntput(path->mnt);
1122 if (ret == -EISDIR)
1123 ret = 0;
Al Viroa3fbbde2011-11-07 21:21:26 +00001124 return ret < 0 ? ret : need_mntput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125}
1126
David Howellscc53ce52011-01-14 18:45:26 +00001127int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
1129 struct vfsmount *mounted;
1130
Al Viro1c755af2009-04-18 14:06:57 -04001131 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -04001133 dput(path->dentry);
1134 mntput(path->mnt);
1135 path->mnt = mounted;
1136 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 return 1;
1138 }
1139 return 0;
1140}
Al Viro4d359502014-03-14 12:20:17 -04001141EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
NeilBrownb8faf032014-08-04 17:06:29 +10001143static inline int managed_dentry_rcu(struct dentry *dentry)
Ian Kent62a73752011-03-25 01:51:02 +08001144{
NeilBrownb8faf032014-08-04 17:06:29 +10001145 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
1146 dentry->d_op->d_manage(dentry, true) : 0;
Ian Kent62a73752011-03-25 01:51:02 +08001147}
1148
David Howells9875cf82011-01-14 18:45:21 +00001149/*
Al Viro287548e2011-05-27 06:50:06 -04001150 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1151 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +00001152 */
1153static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -04001154 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +00001155{
Ian Kent62a73752011-03-25 01:51:02 +08001156 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -05001157 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +08001158 /*
1159 * Don't forget we might have a non-mountpoint managed dentry
1160 * that wants to block transit.
1161 */
NeilBrownb8faf032014-08-04 17:06:29 +10001162 switch (managed_dentry_rcu(path->dentry)) {
1163 case -ECHILD:
1164 default:
David Howellsab909112011-01-14 18:46:51 +00001165 return false;
NeilBrownb8faf032014-08-04 17:06:29 +10001166 case -EISDIR:
1167 return true;
1168 case 0:
1169 break;
1170 }
Ian Kent62a73752011-03-25 01:51:02 +08001171
1172 if (!d_mountpoint(path->dentry))
NeilBrownb8faf032014-08-04 17:06:29 +10001173 return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Ian Kent62a73752011-03-25 01:51:02 +08001174
Al Viro474279d2013-10-01 16:11:26 -04001175 mounted = __lookup_mnt(path->mnt, path->dentry);
David Howells9875cf82011-01-14 18:45:21 +00001176 if (!mounted)
1177 break;
Al Viroc7105362011-11-24 18:22:03 -05001178 path->mnt = &mounted->mnt;
1179 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +00001180 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001181 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -07001182 /*
1183 * Update the inode too. We don't need to re-check the
1184 * dentry sequence number here after this d_inode read,
1185 * because a mount-point is always pinned.
1186 */
1187 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +00001188 }
Al Virof5be3e29122014-09-13 21:50:45 -04001189 return !read_seqretry(&mount_lock, nd->m_seq) &&
NeilBrownb8faf032014-08-04 17:06:29 +10001190 !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Al Viro287548e2011-05-27 06:50:06 -04001191}
1192
Nick Piggin31e6b012011-01-07 17:49:52 +11001193static int follow_dotdot_rcu(struct nameidata *nd)
1194{
Al Viro4023bfc2014-09-13 21:59:43 -04001195 struct inode *inode = nd->inode;
Al Viro7bd88372014-09-13 21:55:46 -04001196 if (!nd->root.mnt)
1197 set_root_rcu(nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001198
David Howells9875cf82011-01-14 18:45:21 +00001199 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001200 if (nd->path.dentry == nd->root.dentry &&
1201 nd->path.mnt == nd->root.mnt) {
1202 break;
1203 }
1204 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1205 struct dentry *old = nd->path.dentry;
1206 struct dentry *parent = old->d_parent;
1207 unsigned seq;
1208
Al Viro4023bfc2014-09-13 21:59:43 -04001209 inode = parent->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001210 seq = read_seqcount_begin(&parent->d_seq);
1211 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -05001212 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +11001213 nd->path.dentry = parent;
1214 nd->seq = seq;
Eric W. Biedermaneed13ce2015-08-15 20:27:13 -05001215 if (unlikely(!path_connected(&nd->path)))
1216 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +11001217 break;
1218 }
1219 if (!follow_up_rcu(&nd->path))
1220 break;
Al Viro4023bfc2014-09-13 21:59:43 -04001221 inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001222 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +11001223 }
Al Virob37199e2014-03-20 15:18:22 -04001224 while (d_mountpoint(nd->path.dentry)) {
1225 struct mount *mounted;
1226 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
1227 if (!mounted)
1228 break;
1229 nd->path.mnt = &mounted->mnt;
1230 nd->path.dentry = mounted->mnt.mnt_root;
Al Viro4023bfc2014-09-13 21:59:43 -04001231 inode = nd->path.dentry->d_inode;
Al Virob37199e2014-03-20 15:18:22 -04001232 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Virof5be3e29122014-09-13 21:50:45 -04001233 if (read_seqretry(&mount_lock, nd->m_seq))
Al Virob37199e2014-03-20 15:18:22 -04001234 goto failed;
1235 }
Al Viro4023bfc2014-09-13 21:59:43 -04001236 nd->inode = inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001237 return 0;
Al Viroef7562d2011-03-04 14:35:59 -05001238
1239failed:
1240 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001241 if (!(nd->flags & LOOKUP_ROOT))
1242 nd->root.mnt = NULL;
Al Viro8b61e742013-11-08 12:45:01 -05001243 rcu_read_unlock();
Al Viroef7562d2011-03-04 14:35:59 -05001244 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001245}
1246
David Howells9875cf82011-01-14 18:45:21 +00001247/*
David Howellscc53ce52011-01-14 18:45:26 +00001248 * Follow down to the covering mount currently visible to userspace. At each
1249 * point, the filesystem owning that dentry may be queried as to whether the
1250 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001251 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001252int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001253{
1254 unsigned managed;
1255 int ret;
1256
1257 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1258 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1259 /* Allow the filesystem to manage the transit without i_mutex
1260 * being held.
1261 *
1262 * We indicate to the filesystem if someone is trying to mount
1263 * something here. This gives autofs the chance to deny anyone
1264 * other than its daemon the right to mount on its
1265 * superstructure.
1266 *
1267 * The filesystem may sleep at this point.
1268 */
1269 if (managed & DCACHE_MANAGE_TRANSIT) {
1270 BUG_ON(!path->dentry->d_op);
1271 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001272 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001273 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001274 if (ret < 0)
1275 return ret == -EISDIR ? 0 : ret;
1276 }
1277
1278 /* Transit to a mounted filesystem. */
1279 if (managed & DCACHE_MOUNTED) {
1280 struct vfsmount *mounted = lookup_mnt(path);
1281 if (!mounted)
1282 break;
1283 dput(path->dentry);
1284 mntput(path->mnt);
1285 path->mnt = mounted;
1286 path->dentry = dget(mounted->mnt_root);
1287 continue;
1288 }
1289
1290 /* Don't handle automount points here */
1291 break;
1292 }
1293 return 0;
1294}
Al Viro4d359502014-03-14 12:20:17 -04001295EXPORT_SYMBOL(follow_down);
David Howellscc53ce52011-01-14 18:45:26 +00001296
1297/*
David Howells9875cf82011-01-14 18:45:21 +00001298 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1299 */
1300static void follow_mount(struct path *path)
1301{
1302 while (d_mountpoint(path->dentry)) {
1303 struct vfsmount *mounted = lookup_mnt(path);
1304 if (!mounted)
1305 break;
1306 dput(path->dentry);
1307 mntput(path->mnt);
1308 path->mnt = mounted;
1309 path->dentry = dget(mounted->mnt_root);
1310 }
1311}
1312
Eric W. Biedermaneed13ce2015-08-15 20:27:13 -05001313static int follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
Al Viro7bd88372014-09-13 21:55:46 -04001315 if (!nd->root.mnt)
1316 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001319 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Al Viro2a737872009-04-07 11:49:53 -04001321 if (nd->path.dentry == nd->root.dentry &&
1322 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 break;
1324 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001325 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001326 /* rare case of legitimate dget_parent()... */
1327 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 dput(old);
Eric W. Biedermaneed13ce2015-08-15 20:27:13 -05001329 if (unlikely(!path_connected(&nd->path))) {
1330 path_put(&nd->path);
1331 return -ENOENT;
1332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 break;
1334 }
Al Viro3088dd72010-01-30 15:47:29 -05001335 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 }
Al Viro79ed0222009-04-18 13:59:41 -04001338 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001339 nd->inode = nd->path.dentry->d_inode;
Eric W. Biedermaneed13ce2015-08-15 20:27:13 -05001340 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341}
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001344 * This looks up the name in dcache, possibly revalidates the old dentry and
1345 * allocates a new one if not found or not valid. In the need_lookup argument
1346 * returns whether i_op->lookup is necessary.
1347 *
1348 * dir->d_inode->i_mutex must be held
Nick Pigginbaa03892010-08-18 04:37:31 +10001349 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001350static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
Al Viro201f9562012-06-22 12:42:10 +04001351 unsigned int flags, bool *need_lookup)
Nick Pigginbaa03892010-08-18 04:37:31 +10001352{
Nick Pigginbaa03892010-08-18 04:37:31 +10001353 struct dentry *dentry;
Miklos Szeredibad61182012-03-26 12:54:24 +02001354 int error;
Nick Pigginbaa03892010-08-18 04:37:31 +10001355
Miklos Szeredibad61182012-03-26 12:54:24 +02001356 *need_lookup = false;
1357 dentry = d_lookup(dir, name);
1358 if (dentry) {
Jeff Layton39e3c952012-11-28 11:30:53 -05001359 if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
Al Viro201f9562012-06-22 12:42:10 +04001360 error = d_revalidate(dentry, flags);
Miklos Szeredibad61182012-03-26 12:54:24 +02001361 if (unlikely(error <= 0)) {
1362 if (error < 0) {
1363 dput(dentry);
1364 return ERR_PTR(error);
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001365 } else {
1366 d_invalidate(dentry);
Miklos Szeredibad61182012-03-26 12:54:24 +02001367 dput(dentry);
1368 dentry = NULL;
1369 }
1370 }
1371 }
1372 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001373
Miklos Szeredibad61182012-03-26 12:54:24 +02001374 if (!dentry) {
1375 dentry = d_alloc(dir, name);
1376 if (unlikely(!dentry))
1377 return ERR_PTR(-ENOMEM);
Nick Pigginbaa03892010-08-18 04:37:31 +10001378
Miklos Szeredibad61182012-03-26 12:54:24 +02001379 *need_lookup = true;
Nick Pigginbaa03892010-08-18 04:37:31 +10001380 }
1381 return dentry;
1382}
1383
1384/*
J. Bruce Fields13a2c3b2013-10-23 16:09:16 -04001385 * Call i_op->lookup on the dentry. The dentry must be negative and
1386 * unhashed.
Miklos Szeredibad61182012-03-26 12:54:24 +02001387 *
1388 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001389 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001390static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
Al Viro72bd8662012-06-10 17:17:17 -04001391 unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001392{
Josef Bacik44396f42011-05-31 11:58:49 -04001393 struct dentry *old;
1394
1395 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001396 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001397 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001398 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001399 }
Josef Bacik44396f42011-05-31 11:58:49 -04001400
Al Viro72bd8662012-06-10 17:17:17 -04001401 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001402 if (unlikely(old)) {
1403 dput(dentry);
1404 dentry = old;
1405 }
1406 return dentry;
1407}
1408
Al Viroa3255542012-03-30 14:41:51 -04001409static struct dentry *__lookup_hash(struct qstr *name,
Al Viro72bd8662012-06-10 17:17:17 -04001410 struct dentry *base, unsigned int flags)
Al Viroa3255542012-03-30 14:41:51 -04001411{
Miklos Szeredibad61182012-03-26 12:54:24 +02001412 bool need_lookup;
Al Viroa3255542012-03-30 14:41:51 -04001413 struct dentry *dentry;
1414
Al Viro72bd8662012-06-10 17:17:17 -04001415 dentry = lookup_dcache(name, base, flags, &need_lookup);
Miklos Szeredibad61182012-03-26 12:54:24 +02001416 if (!need_lookup)
1417 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001418
Al Viro72bd8662012-06-10 17:17:17 -04001419 return lookup_real(base->d_inode, dentry, flags);
Al Viroa3255542012-03-30 14:41:51 -04001420}
1421
Josef Bacik44396f42011-05-31 11:58:49 -04001422/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 * It's more convoluted than I'd like it to be, but... it's still fairly
1424 * small and for now I'd prefer to have fast path as straight as possible.
1425 * It _is_ time-critical.
1426 */
Al Viroe97cdc82013-01-24 18:16:00 -05001427static int lookup_fast(struct nameidata *nd,
Miklos Szeredi697f5142012-05-21 17:30:05 +02001428 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
Jan Blunck4ac91372008-02-14 19:34:32 -08001430 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001431 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001432 int need_reval = 1;
1433 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001434 int err;
1435
Al Viro3cac2602009-08-13 18:27:43 +04001436 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001437 * Rename seqlock is not required here because in the off chance
1438 * of a false negative due to a concurrent rename, we're going to
1439 * do the non-racy lookup, below.
1440 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001441 if (nd->flags & LOOKUP_RCU) {
1442 unsigned seq;
Al Viro766c4cb2015-05-07 19:24:57 -04001443 bool negative;
Linus Torvaldsda53be12013-05-21 15:22:44 -07001444 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
Al Viro5a18fff2011-03-11 04:44:53 -05001445 if (!dentry)
1446 goto unlazy;
1447
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001448 /*
1449 * This sequence count validates that the inode matches
1450 * the dentry name information from lookup.
1451 */
1452 *inode = dentry->d_inode;
Al Viro766c4cb2015-05-07 19:24:57 -04001453 negative = d_is_negative(dentry);
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001454 if (read_seqcount_retry(&dentry->d_seq, seq))
1455 return -ECHILD;
1456
1457 /*
1458 * This sequence count validates that the parent had no
1459 * changes while we did the lookup of the dentry above.
1460 *
1461 * The memory barrier in read_seqcount_begin of child is
1462 * enough, we can use __read_seqcount_retry here.
1463 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001464 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1465 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001466 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001467
Al Viro24643082011-02-15 01:26:22 -05001468 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro4ce16ef32012-06-10 16:10:59 -04001469 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001470 if (unlikely(status <= 0)) {
1471 if (status != -ECHILD)
1472 need_reval = 0;
1473 goto unlazy;
1474 }
Al Viro24643082011-02-15 01:26:22 -05001475 }
Trond Myklebust2058efb2015-10-09 13:44:34 -04001476 /*
1477 * Note: do negative dentry check after revalidation in
1478 * case that drops it.
1479 */
1480 if (negative)
1481 return -ENOENT;
Nick Piggin31e6b012011-01-07 17:49:52 +11001482 path->mnt = mnt;
1483 path->dentry = dentry;
NeilBrownb8faf032014-08-04 17:06:29 +10001484 if (likely(__follow_mount_rcu(nd, path, inode)))
1485 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001486unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001487 if (unlazy_walk(nd, dentry))
1488 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001489 } else {
Al Viroe97cdc82013-01-24 18:16:00 -05001490 dentry = __d_lookup(parent, &nd->last);
Nick Piggin31e6b012011-01-07 17:49:52 +11001491 }
Al Viro5a18fff2011-03-11 04:44:53 -05001492
Al Viro81e6f522012-03-30 14:48:04 -04001493 if (unlikely(!dentry))
1494 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001495
Al Viro5a18fff2011-03-11 04:44:53 -05001496 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
Al Viro4ce16ef32012-06-10 16:10:59 -04001497 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001498 if (unlikely(status <= 0)) {
1499 if (status < 0) {
1500 dput(dentry);
1501 return status;
1502 }
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001503 d_invalidate(dentry);
1504 dput(dentry);
1505 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001506 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001507
Al Viro766c4cb2015-05-07 19:24:57 -04001508 if (unlikely(d_is_negative(dentry))) {
1509 dput(dentry);
1510 return -ENOENT;
1511 }
David Howells9875cf82011-01-14 18:45:21 +00001512 path->mnt = mnt;
1513 path->dentry = dentry;
1514 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001515 if (unlikely(err < 0)) {
1516 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001517 return err;
Ian Kent89312212011-01-18 12:06:10 +08001518 }
Al Viroa3fbbde2011-11-07 21:21:26 +00001519 if (err)
1520 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001521 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 return 0;
Al Viro81e6f522012-03-30 14:48:04 -04001523
1524need_lookup:
Miklos Szeredi697f5142012-05-21 17:30:05 +02001525 return 1;
1526}
1527
1528/* Fast lookup failed, do it the slow way */
Al Virocc2a5272013-01-24 18:19:49 -05001529static int lookup_slow(struct nameidata *nd, struct path *path)
Miklos Szeredi697f5142012-05-21 17:30:05 +02001530{
1531 struct dentry *dentry, *parent;
1532 int err;
1533
1534 parent = nd->path.dentry;
Al Viro81e6f522012-03-30 14:48:04 -04001535 BUG_ON(nd->inode != parent->d_inode);
1536
1537 mutex_lock(&parent->d_inode->i_mutex);
Al Virocc2a5272013-01-24 18:19:49 -05001538 dentry = __lookup_hash(&nd->last, parent, nd->flags);
Al Viro81e6f522012-03-30 14:48:04 -04001539 mutex_unlock(&parent->d_inode->i_mutex);
1540 if (IS_ERR(dentry))
1541 return PTR_ERR(dentry);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001542 path->mnt = nd->path.mnt;
1543 path->dentry = dentry;
1544 err = follow_managed(path, nd->flags);
1545 if (unlikely(err < 0)) {
1546 path_put_conditional(path, nd);
1547 return err;
1548 }
1549 if (err)
1550 nd->flags |= LOOKUP_JUMPED;
1551 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552}
1553
Al Viro52094c82011-02-21 21:34:47 -05001554static inline int may_lookup(struct nameidata *nd)
1555{
1556 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001557 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001558 if (err != -ECHILD)
1559 return err;
Al Viro19660af2011-03-25 10:32:48 -04001560 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001561 return -ECHILD;
1562 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001563 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001564}
1565
Al Viro9856fa12011-03-04 14:22:06 -05001566static inline int handle_dots(struct nameidata *nd, int type)
1567{
1568 if (type == LAST_DOTDOT) {
1569 if (nd->flags & LOOKUP_RCU) {
1570 if (follow_dotdot_rcu(nd))
1571 return -ECHILD;
1572 } else
Eric W. Biedermaneed13ce2015-08-15 20:27:13 -05001573 return follow_dotdot(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001574 }
1575 return 0;
1576}
1577
Al Viro951361f2011-03-04 14:44:37 -05001578static void terminate_walk(struct nameidata *nd)
1579{
1580 if (!(nd->flags & LOOKUP_RCU)) {
1581 path_put(&nd->path);
1582 } else {
1583 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001584 if (!(nd->flags & LOOKUP_ROOT))
1585 nd->root.mnt = NULL;
Al Viro8b61e742013-11-08 12:45:01 -05001586 rcu_read_unlock();
Al Viro951361f2011-03-04 14:44:37 -05001587 }
1588}
1589
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001590/*
1591 * Do we need to follow links? We _really_ want to be able
1592 * to do this check without having to look at inode->i_op,
1593 * so we keep a cache of "no, this doesn't need follow_link"
1594 * for the common case.
1595 */
David Howellsb18825a2013-09-12 19:22:53 +01001596static inline int should_follow_link(struct dentry *dentry, int follow)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001597{
David Howellsb18825a2013-09-12 19:22:53 +01001598 return unlikely(d_is_symlink(dentry)) ? follow : 0;
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001599}
1600
Al Viroce57dfc2011-03-13 19:58:58 -04001601static inline int walk_component(struct nameidata *nd, struct path *path,
Al Viro21b9b072013-01-24 18:10:25 -05001602 int follow)
Al Viroce57dfc2011-03-13 19:58:58 -04001603{
1604 struct inode *inode;
1605 int err;
1606 /*
1607 * "." and ".." are special - ".." especially so because it has
1608 * to be able to know about the current root directory and
1609 * parent relationships.
1610 */
Al Viro21b9b072013-01-24 18:10:25 -05001611 if (unlikely(nd->last_type != LAST_NORM))
1612 return handle_dots(nd, nd->last_type);
Al Viroe97cdc82013-01-24 18:16:00 -05001613 err = lookup_fast(nd, path, &inode);
Al Viroce57dfc2011-03-13 19:58:58 -04001614 if (unlikely(err)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001615 if (err < 0)
1616 goto out_err;
1617
Al Virocc2a5272013-01-24 18:19:49 -05001618 err = lookup_slow(nd, path);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001619 if (err < 0)
1620 goto out_err;
1621
Al Viro766c4cb2015-05-07 19:24:57 -04001622 err = -ENOENT;
1623 if (d_is_negative(path->dentry))
1624 goto out_path_put;
Al Viro9b77cd132016-02-27 19:23:16 -05001625 inode = path->dentry->d_inode;
Al Viroce57dfc2011-03-13 19:58:58 -04001626 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001627
David Howellsb18825a2013-09-12 19:22:53 +01001628 if (should_follow_link(path->dentry, follow)) {
Al Viro19660af2011-03-25 10:32:48 -04001629 if (nd->flags & LOOKUP_RCU) {
Al Viro3cab9892015-04-24 15:47:07 -04001630 if (unlikely(nd->path.mnt != path->mnt ||
1631 unlazy_walk(nd, path->dentry))) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001632 err = -ECHILD;
1633 goto out_err;
Al Viro19660af2011-03-25 10:32:48 -04001634 }
1635 }
Al Viroce57dfc2011-03-13 19:58:58 -04001636 BUG_ON(inode != path->dentry->d_inode);
1637 return 1;
1638 }
1639 path_to_nameidata(path, nd);
1640 nd->inode = inode;
1641 return 0;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001642
1643out_path_put:
1644 path_to_nameidata(path, nd);
1645out_err:
1646 terminate_walk(nd);
1647 return err;
Al Viroce57dfc2011-03-13 19:58:58 -04001648}
1649
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650/*
Al Virob3563792011-03-14 21:54:55 -04001651 * This limits recursive symlink follows to 8, while
1652 * limiting consecutive symlinks to 40.
1653 *
1654 * Without that kind of total limit, nasty chains of consecutive
1655 * symlinks can cause almost arbitrarily long lookups.
1656 */
1657static inline int nested_symlink(struct path *path, struct nameidata *nd)
1658{
1659 int res;
1660
Al Virob3563792011-03-14 21:54:55 -04001661 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1662 path_put_conditional(path, nd);
1663 path_put(&nd->path);
1664 return -ELOOP;
1665 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001666 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001667
1668 nd->depth++;
1669 current->link_count++;
1670
1671 do {
1672 struct path link = *path;
1673 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001674
1675 res = follow_link(&link, nd, &cookie);
Al Viro6d7b5aa2012-06-10 04:15:17 -04001676 if (res)
1677 break;
Al Viro21b9b072013-01-24 18:10:25 -05001678 res = walk_component(nd, path, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001679 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001680 } while (res > 0);
1681
1682 current->link_count--;
1683 nd->depth--;
1684 return res;
1685}
1686
1687/*
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001688 * We can do the critical dentry name comparison and hashing
1689 * operations one word at a time, but we are limited to:
1690 *
1691 * - Architectures with fast unaligned word accesses. We could
1692 * do a "get_unaligned()" if this helps and is sufficiently
1693 * fast.
1694 *
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001695 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1696 * do not trap on the (extremely unlikely) case of a page
1697 * crossing operation.
1698 *
1699 * - Furthermore, we need an efficient 64-bit compile for the
1700 * 64-bit case in order to generate the "number of bytes in
1701 * the final mask". Again, that could be replaced with a
1702 * efficient population count instruction or similar.
1703 */
1704#ifdef CONFIG_DCACHE_WORD_ACCESS
1705
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001706#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001707
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001708#ifdef CONFIG_64BIT
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001709
1710static inline unsigned int fold_hash(unsigned long hash)
1711{
Linus Torvalds99d263d2014-09-13 11:30:10 -07001712 return hash_64(hash, 32);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001713}
1714
1715#else /* 32-bit case */
1716
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001717#define fold_hash(x) (x)
1718
1719#endif
1720
1721unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1722{
1723 unsigned long a, mask;
1724 unsigned long hash = 0;
1725
1726 for (;;) {
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001727 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001728 if (len < sizeof(unsigned long))
1729 break;
1730 hash += a;
Al Virof132c5b2012-03-22 21:59:52 +00001731 hash *= 9;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001732 name += sizeof(unsigned long);
1733 len -= sizeof(unsigned long);
1734 if (!len)
1735 goto done;
1736 }
Will Deacona5c21dc2013-12-12 17:40:21 +00001737 mask = bytemask_from_count(len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001738 hash += mask & a;
1739done:
1740 return fold_hash(hash);
1741}
1742EXPORT_SYMBOL(full_name_hash);
1743
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001744/*
1745 * Calculate the length and hash of the path component, and
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001746 * return the "hash_len" as the result.
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001747 */
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001748static inline u64 hash_name(const char *name)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001749{
Linus Torvalds36126f82012-05-26 10:43:17 -07001750 unsigned long a, b, adata, bdata, mask, hash, len;
1751 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001752
1753 hash = a = 0;
1754 len = -sizeof(unsigned long);
1755 do {
1756 hash = (hash + a) * 9;
1757 len += sizeof(unsigned long);
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001758 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07001759 b = a ^ REPEAT_BYTE('/');
1760 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001761
Linus Torvalds36126f82012-05-26 10:43:17 -07001762 adata = prep_zero_mask(a, adata, &constants);
1763 bdata = prep_zero_mask(b, bdata, &constants);
1764
1765 mask = create_zero_mask(adata | bdata);
1766
1767 hash += a & zero_bytemask(mask);
Linus Torvalds9226b5b2014-09-14 17:28:32 -07001768 len += find_zero(mask);
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001769 return hashlen_create(fold_hash(hash), len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001770}
1771
1772#else
1773
Linus Torvalds0145acc2012-03-02 14:32:59 -08001774unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1775{
1776 unsigned long hash = init_name_hash();
1777 while (len--)
1778 hash = partial_name_hash(*name++, hash);
1779 return end_name_hash(hash);
1780}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001781EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001782
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001783/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001784 * We know there's a real path component here of at least
1785 * one character.
1786 */
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001787static inline u64 hash_name(const char *name)
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001788{
1789 unsigned long hash = init_name_hash();
1790 unsigned long len = 0, c;
1791
1792 c = (unsigned char)*name;
1793 do {
1794 len++;
1795 hash = partial_name_hash(c, hash);
1796 c = (unsigned char)name[len];
1797 } while (c && c != '/');
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001798 return hashlen_create(end_name_hash(hash), len);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001799}
1800
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001801#endif
1802
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001803/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001805 * This is the basic name resolution function, turning a pathname into
1806 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001808 * Returns 0 and nd will have valid dentry and mnt on success.
1809 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 */
Al Viro6de88d72009-08-09 01:41:57 +04001811static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
1813 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
1816 while (*name=='/')
1817 name++;
1818 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001819 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 /* At this point we know we have a real path component. */
1822 for(;;) {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001823 u64 hash_len;
Al Virofe479a52011-02-22 15:10:03 -05001824 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Al Viro52094c82011-02-21 21:34:47 -05001826 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 if (err)
1828 break;
1829
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001830 hash_len = hash_name(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Al Virofe479a52011-02-22 15:10:03 -05001832 type = LAST_NORM;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001833 if (name[0] == '.') switch (hashlen_len(hash_len)) {
Al Virofe479a52011-02-22 15:10:03 -05001834 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001835 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001836 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001837 nd->flags |= LOOKUP_JUMPED;
1838 }
Al Virofe479a52011-02-22 15:10:03 -05001839 break;
1840 case 1:
1841 type = LAST_DOT;
1842 }
Al Viro5a202bc2011-03-08 14:17:44 -05001843 if (likely(type == LAST_NORM)) {
1844 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001845 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001846 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
James Hogana060dc52014-09-16 13:07:35 +01001847 struct qstr this = { { .hash_len = hash_len }, .name = name };
Linus Torvaldsda53be12013-05-21 15:22:44 -07001848 err = parent->d_op->d_hash(parent, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05001849 if (err < 0)
1850 break;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001851 hash_len = this.hash_len;
1852 name = this.name;
Al Viro5a202bc2011-03-08 14:17:44 -05001853 }
1854 }
Al Virofe479a52011-02-22 15:10:03 -05001855
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001856 nd->last.hash_len = hash_len;
1857 nd->last.name = name;
Al Viro5f4a6a62013-01-24 18:04:22 -05001858 nd->last_type = type;
1859
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001860 name += hashlen_len(hash_len);
1861 if (!*name)
Al Viro5f4a6a62013-01-24 18:04:22 -05001862 return 0;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001863 /*
1864 * If it wasn't NUL, we know it was '/'. Skip that
1865 * slash, and continue until no more slashes.
1866 */
1867 do {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001868 name++;
1869 } while (unlikely(*name == '/'));
1870 if (!*name)
Al Viro5f4a6a62013-01-24 18:04:22 -05001871 return 0;
1872
Al Viro21b9b072013-01-24 18:10:25 -05001873 err = walk_component(nd, &next, LOOKUP_FOLLOW);
Al Viroce57dfc2011-03-13 19:58:58 -04001874 if (err < 0)
1875 return err;
Al Virofe479a52011-02-22 15:10:03 -05001876
Al Viroce57dfc2011-03-13 19:58:58 -04001877 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001878 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001880 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001881 }
Miklos Szeredi44b1d532014-04-01 17:08:41 +02001882 if (!d_can_lookup(nd->path.dentry)) {
Al Viro5f4a6a62013-01-24 18:04:22 -05001883 err = -ENOTDIR;
1884 break;
1885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 }
Al Viro951361f2011-03-04 14:44:37 -05001887 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 return err;
1889}
1890
Al Viro6e8a1f82015-02-22 19:46:04 -05001891static int path_init(int dfd, const struct filename *name, unsigned int flags,
Al Viro5e530842014-11-20 14:14:42 -05001892 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001894 int retval = 0;
Al Virofd2f7cb2015-02-22 20:07:13 -05001895 const char *s = name->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
1897 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro980f3ea2014-11-20 14:20:24 -05001898 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 nd->depth = 0;
Al Viro5e530842014-11-20 14:14:42 -05001900 nd->base = NULL;
Al Viro5b6ca022011-03-09 23:04:47 -05001901 if (flags & LOOKUP_ROOT) {
David Howellsb18825a2013-09-12 19:22:53 +01001902 struct dentry *root = nd->root.dentry;
1903 struct inode *inode = root->d_inode;
Al Virofd2f7cb2015-02-22 20:07:13 -05001904 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02001905 if (!d_can_lookup(root))
Al Viro73d049a2011-03-11 12:08:24 -05001906 return -ENOTDIR;
1907 retval = inode_permission(inode, MAY_EXEC);
1908 if (retval)
1909 return retval;
1910 }
Al Viro5b6ca022011-03-09 23:04:47 -05001911 nd->path = nd->root;
1912 nd->inode = inode;
1913 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05001914 rcu_read_lock();
Al Viro5b6ca022011-03-09 23:04:47 -05001915 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro48a066e2013-09-29 22:06:07 -04001916 nd->m_seq = read_seqbegin(&mount_lock);
Al Viro5b6ca022011-03-09 23:04:47 -05001917 } else {
1918 path_get(&nd->path);
1919 }
Al Virod4658872014-11-20 14:23:33 -05001920 goto done;
Al Viro5b6ca022011-03-09 23:04:47 -05001921 }
1922
Al Viro2a737872009-04-07 11:49:53 -04001923 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924
Al Viro48a066e2013-09-29 22:06:07 -04001925 nd->m_seq = read_seqbegin(&mount_lock);
Al Virofd2f7cb2015-02-22 20:07:13 -05001926 if (*s == '/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001927 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05001928 rcu_read_lock();
Al Viro7bd88372014-09-13 21:55:46 -04001929 nd->seq = set_root_rcu(nd);
Al Viroe41f7d42011-02-22 14:02:58 -05001930 } else {
1931 set_root(nd);
1932 path_get(&nd->root);
1933 }
Al Viro2a737872009-04-07 11:49:53 -04001934 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001935 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001936 if (flags & LOOKUP_RCU) {
1937 struct fs_struct *fs = current->fs;
1938 unsigned seq;
1939
Al Viro8b61e742013-11-08 12:45:01 -05001940 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05001941
1942 do {
1943 seq = read_seqcount_begin(&fs->seq);
1944 nd->path = fs->pwd;
1945 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1946 } while (read_seqcount_retry(&fs->seq, seq));
1947 } else {
1948 get_fs_pwd(current->fs, &nd->path);
1949 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001950 } else {
Jeff Layton582aa642012-12-11 08:56:16 -05001951 /* Caller must check execute permissions on the starting path component */
Al Viro2903ff02012-08-28 12:52:22 -04001952 struct fd f = fdget_raw(dfd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001953 struct dentry *dentry;
1954
Al Viro2903ff02012-08-28 12:52:22 -04001955 if (!f.file)
1956 return -EBADF;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001957
Al Viro2903ff02012-08-28 12:52:22 -04001958 dentry = f.file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001959
Al Virofd2f7cb2015-02-22 20:07:13 -05001960 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02001961 if (!d_can_lookup(dentry)) {
Al Viro2903ff02012-08-28 12:52:22 -04001962 fdput(f);
1963 return -ENOTDIR;
1964 }
Al Virof52e0c12011-03-14 18:56:51 -04001965 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001966
Al Viro2903ff02012-08-28 12:52:22 -04001967 nd->path = f.file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001968 if (flags & LOOKUP_RCU) {
Linus Torvalds9c225f22014-03-03 09:36:58 -08001969 if (f.flags & FDPUT_FPUT)
Al Viro5e530842014-11-20 14:14:42 -05001970 nd->base = f.file;
Al Viroe41f7d42011-02-22 14:02:58 -05001971 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro8b61e742013-11-08 12:45:01 -05001972 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05001973 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001974 path_get(&nd->path);
1975 fdput(f);
Al Viroe41f7d42011-02-22 14:02:58 -05001976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 }
Al Viroe41f7d42011-02-22 14:02:58 -05001978
Nick Piggin31e6b012011-01-07 17:49:52 +11001979 nd->inode = nd->path.dentry->d_inode;
Al Viro4023bfc2014-09-13 21:59:43 -04001980 if (!(flags & LOOKUP_RCU))
Al Virod4658872014-11-20 14:23:33 -05001981 goto done;
Al Viro4023bfc2014-09-13 21:59:43 -04001982 if (likely(!read_seqcount_retry(&nd->path.dentry->d_seq, nd->seq)))
Al Virod4658872014-11-20 14:23:33 -05001983 goto done;
Al Viro4023bfc2014-09-13 21:59:43 -04001984 if (!(nd->flags & LOOKUP_ROOT))
1985 nd->root.mnt = NULL;
1986 rcu_read_unlock();
1987 return -ECHILD;
Al Virod4658872014-11-20 14:23:33 -05001988done:
1989 current->total_link_count = 0;
Al Virofd2f7cb2015-02-22 20:07:13 -05001990 return link_path_walk(s, nd);
Al Viro9b4a9b12009-04-07 11:44:16 -04001991}
1992
Al Viro893b7772014-11-20 14:18:09 -05001993static void path_cleanup(struct nameidata *nd)
1994{
1995 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
1996 path_put(&nd->root);
1997 nd->root.mnt = NULL;
1998 }
1999 if (unlikely(nd->base))
2000 fput(nd->base);
Al Viro9b4a9b12009-04-07 11:44:16 -04002001}
2002
Al Virobd92d7f2011-03-14 19:54:59 -04002003static inline int lookup_last(struct nameidata *nd, struct path *path)
2004{
2005 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2006 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2007
2008 nd->flags &= ~LOOKUP_PARENT;
Al Viro21b9b072013-01-24 18:10:25 -05002009 return walk_component(nd, path, nd->flags & LOOKUP_FOLLOW);
Al Virobd92d7f2011-03-14 19:54:59 -04002010}
2011
Al Viro9b4a9b12009-04-07 11:44:16 -04002012/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viro5eb6b492015-02-22 19:40:53 -05002013static int path_lookupat(int dfd, const struct filename *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04002014 unsigned int flags, struct nameidata *nd)
2015{
Al Virobd92d7f2011-03-14 19:54:59 -04002016 struct path path;
2017 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11002018
2019 /*
2020 * Path walking is largely split up into 2 different synchronisation
2021 * schemes, rcu-walk and ref-walk (explained in
2022 * Documentation/filesystems/path-lookup.txt). These share much of the
2023 * path walk code, but some things particularly setup, cleanup, and
2024 * following mounts are sufficiently divergent that functions are
2025 * duplicated. Typically there is a function foo(), and its RCU
2026 * analogue, foo_rcu().
2027 *
2028 * -ECHILD is the error number of choice (just to avoid clashes) that
2029 * is returned if some aspect of an rcu-walk fails. Such an error must
2030 * be handled by restarting a traditional ref-walk (which will always
2031 * be able to complete).
2032 */
Al Viro6e8a1f82015-02-22 19:46:04 -05002033 err = path_init(dfd, name, flags, nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002034 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04002035 err = lookup_last(nd, &path);
2036 while (err > 0) {
2037 void *cookie;
2038 struct path link = path;
Kees Cook800179c2012-07-25 17:29:07 -07002039 err = may_follow_link(&link, nd);
2040 if (unlikely(err))
2041 break;
Al Virobd92d7f2011-03-14 19:54:59 -04002042 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04002043 err = follow_link(&link, nd, &cookie);
Al Viro6d7b5aa2012-06-10 04:15:17 -04002044 if (err)
2045 break;
2046 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04002047 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04002048 }
2049 }
Al Viroee0827c2011-02-21 23:38:09 -05002050
Al Viro9f1fafe2011-03-25 11:00:12 -04002051 if (!err)
2052 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002053
2054 if (!err && nd->flags & LOOKUP_DIRECTORY) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002055 if (!d_can_lookup(nd->path.dentry)) {
Al Virobd92d7f2011-03-14 19:54:59 -04002056 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04002057 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04002058 }
2059 }
Al Viro16c2cd72011-02-22 15:50:10 -05002060
Al Viro893b7772014-11-20 14:18:09 -05002061 path_cleanup(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002062 return err;
Al Viroee0827c2011-02-21 23:38:09 -05002063}
Nick Piggin31e6b012011-01-07 17:49:52 +11002064
Jeff Layton873f1ee2012-10-10 15:25:29 -04002065static int filename_lookup(int dfd, struct filename *name,
2066 unsigned int flags, struct nameidata *nd)
2067{
Al Viro5eb6b492015-02-22 19:40:53 -05002068 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002069 if (unlikely(retval == -ECHILD))
Al Viro5eb6b492015-02-22 19:40:53 -05002070 retval = path_lookupat(dfd, name, flags, nd);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002071 if (unlikely(retval == -ESTALE))
Al Viro5eb6b492015-02-22 19:40:53 -05002072 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002073
2074 if (likely(!retval))
Jeff Laytonadb5c242012-10-10 16:43:13 -04002075 audit_inode(name, nd->path.dentry, flags & LOOKUP_PARENT);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002076 return retval;
2077}
2078
Al Viro79714f72012-06-15 03:01:42 +04002079/* does lookup, returns the object with parent locked */
2080struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002081{
Paul Moore51689102015-01-22 00:00:03 -05002082 struct filename *filename = getname_kernel(name);
Al Viro79714f72012-06-15 03:01:42 +04002083 struct nameidata nd;
2084 struct dentry *d;
Paul Moore51689102015-01-22 00:00:03 -05002085 int err;
2086
2087 if (IS_ERR(filename))
2088 return ERR_CAST(filename);
2089
2090 err = filename_lookup(AT_FDCWD, filename, LOOKUP_PARENT, &nd);
2091 if (err) {
2092 d = ERR_PTR(err);
2093 goto out;
2094 }
Al Viro79714f72012-06-15 03:01:42 +04002095 if (nd.last_type != LAST_NORM) {
2096 path_put(&nd.path);
Paul Moore51689102015-01-22 00:00:03 -05002097 d = ERR_PTR(-EINVAL);
2098 goto out;
Al Viro79714f72012-06-15 03:01:42 +04002099 }
2100 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Al Viro1e0ea002012-07-22 23:46:21 +04002101 d = __lookup_hash(&nd.last, nd.path.dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04002102 if (IS_ERR(d)) {
2103 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2104 path_put(&nd.path);
Paul Moore51689102015-01-22 00:00:03 -05002105 goto out;
Al Viro79714f72012-06-15 03:01:42 +04002106 }
2107 *path = nd.path;
Paul Moore51689102015-01-22 00:00:03 -05002108out:
2109 putname(filename);
Al Viro79714f72012-06-15 03:01:42 +04002110 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002111}
2112
Al Virod1811462008-08-02 00:49:18 -04002113int kern_path(const char *name, unsigned int flags, struct path *path)
2114{
2115 struct nameidata nd;
Al Viro74eb8cc2015-02-23 02:44:36 -05002116 struct filename *filename = getname_kernel(name);
2117 int res = PTR_ERR(filename);
2118
2119 if (!IS_ERR(filename)) {
2120 res = filename_lookup(AT_FDCWD, filename, flags, &nd);
2121 putname(filename);
2122 if (!res)
2123 *path = nd.path;
2124 }
Al Virod1811462008-08-02 00:49:18 -04002125 return res;
2126}
Al Viro4d359502014-03-14 12:20:17 -04002127EXPORT_SYMBOL(kern_path);
Al Virod1811462008-08-02 00:49:18 -04002128
Josef 'Jeff' Sipek16f182002007-07-19 01:48:18 -07002129/**
2130 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2131 * @dentry: pointer to dentry of the base directory
2132 * @mnt: pointer to vfs mount of the base directory
2133 * @name: pointer to file name
2134 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002135 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f182002007-07-19 01:48:18 -07002136 */
2137int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2138 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002139 struct path *path)
Josef 'Jeff' Sipek16f182002007-07-19 01:48:18 -07002140{
Al Viro74eb8cc2015-02-23 02:44:36 -05002141 struct filename *filename = getname_kernel(name);
2142 int err = PTR_ERR(filename);
2143
Al Viroe0a01242011-06-27 17:00:37 -04002144 BUG_ON(flags & LOOKUP_PARENT);
Al Viro74eb8cc2015-02-23 02:44:36 -05002145
2146 /* the first argument of filename_lookup() is ignored with LOOKUP_ROOT */
2147 if (!IS_ERR(filename)) {
2148 struct nameidata nd;
2149 nd.root.dentry = dentry;
2150 nd.root.mnt = mnt;
2151 err = filename_lookup(AT_FDCWD, filename,
2152 flags | LOOKUP_ROOT, &nd);
2153 if (!err)
2154 *path = nd.path;
2155 putname(filename);
2156 }
Al Viroe0a01242011-06-27 17:00:37 -04002157 return err;
Josef 'Jeff' Sipek16f182002007-07-19 01:48:18 -07002158}
Al Viro4d359502014-03-14 12:20:17 -04002159EXPORT_SYMBOL(vfs_path_lookup);
Josef 'Jeff' Sipek16f182002007-07-19 01:48:18 -07002160
James Morris057f6c02007-04-26 00:12:05 -07002161/*
2162 * Restricted form of lookup. Doesn't follow links, single-component only,
2163 * needs parent already locked. Doesn't follow mounts.
2164 * SMP-safe.
2165 */
Adrian Bunka244e162006-03-31 02:32:11 -08002166static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167{
Al Viro72bd8662012-06-10 17:17:17 -04002168 return __lookup_hash(&nd->last, nd->path.dentry, nd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169}
2170
Christoph Hellwigeead1912007-10-16 23:25:38 -07002171/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002172 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002173 * @name: pathname component to lookup
2174 * @base: base directory to lookup from
2175 * @len: maximum length @len should be interpreted to
2176 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002177 * Note that this routine is purely a helper for filesystem usage and should
Al Viro9e7543e2015-02-23 02:49:48 -05002178 * not be called by generic code.
Christoph Hellwigeead1912007-10-16 23:25:38 -07002179 */
James Morris057f6c02007-04-26 00:12:05 -07002180struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2181{
James Morris057f6c02007-04-26 00:12:05 -07002182 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05002183 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002184 int err;
James Morris057f6c02007-04-26 00:12:05 -07002185
David Woodhouse2f9092e2009-04-20 23:18:37 +01002186 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
2187
Al Viro6a96ba52011-03-07 23:49:20 -05002188 this.name = name;
2189 this.len = len;
Linus Torvalds0145acc2012-03-02 14:32:59 -08002190 this.hash = full_name_hash(name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05002191 if (!len)
2192 return ERR_PTR(-EACCES);
2193
Al Viro21d8a152012-11-29 22:17:21 -05002194 if (unlikely(name[0] == '.')) {
2195 if (len < 2 || (len == 2 && name[1] == '.'))
2196 return ERR_PTR(-EACCES);
2197 }
2198
Al Viro6a96ba52011-03-07 23:49:20 -05002199 while (len--) {
2200 c = *(const unsigned char *)name++;
2201 if (c == '/' || c == '\0')
2202 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05002203 }
Al Viro5a202bc2011-03-08 14:17:44 -05002204 /*
2205 * See if the low-level filesystem might want
2206 * to use its own hash..
2207 */
2208 if (base->d_flags & DCACHE_OP_HASH) {
Linus Torvaldsda53be12013-05-21 15:22:44 -07002209 int err = base->d_op->d_hash(base, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002210 if (err < 0)
2211 return ERR_PTR(err);
2212 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07002213
Miklos Szeredicda309d2012-03-26 12:54:21 +02002214 err = inode_permission(base->d_inode, MAY_EXEC);
2215 if (err)
2216 return ERR_PTR(err);
2217
Al Viro72bd8662012-06-10 17:17:17 -04002218 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002219}
Al Viro4d359502014-03-14 12:20:17 -04002220EXPORT_SYMBOL(lookup_one_len);
James Morris057f6c02007-04-26 00:12:05 -07002221
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002222int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2223 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224{
Al Viro2d8f3032008-07-22 09:59:21 -04002225 struct nameidata nd;
Jeff Layton91a27b22012-10-10 15:25:28 -04002226 struct filename *tmp = getname_flags(name, flags, empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04002229
2230 BUG_ON(flags & LOOKUP_PARENT);
2231
Jeff Layton873f1ee2012-10-10 15:25:29 -04002232 err = filename_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04002234 if (!err)
2235 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 }
2237 return err;
2238}
2239
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002240int user_path_at(int dfd, const char __user *name, unsigned flags,
2241 struct path *path)
2242{
Linus Torvaldsf7493e52012-03-22 16:10:40 -07002243 return user_path_at_empty(dfd, name, flags, path, NULL);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002244}
Al Viro4d359502014-03-14 12:20:17 -04002245EXPORT_SYMBOL(user_path_at);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002246
Jeff Layton873f1ee2012-10-10 15:25:29 -04002247/*
2248 * NB: most callers don't do anything directly with the reference to the
2249 * to struct filename, but the nd->last pointer points into the name string
2250 * allocated by getname. So we must hold the reference to it until all
2251 * path-walking is complete.
2252 */
Jeff Layton91a27b22012-10-10 15:25:28 -04002253static struct filename *
Jeff Layton9e790bd2012-12-11 12:10:09 -05002254user_path_parent(int dfd, const char __user *path, struct nameidata *nd,
2255 unsigned int flags)
Al Viro2ad94ae2008-07-21 09:32:51 -04002256{
Jeff Layton91a27b22012-10-10 15:25:28 -04002257 struct filename *s = getname(path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002258 int error;
2259
Jeff Layton9e790bd2012-12-11 12:10:09 -05002260 /* only LOOKUP_REVAL is allowed in extra flags */
2261 flags &= LOOKUP_REVAL;
2262
Al Viro2ad94ae2008-07-21 09:32:51 -04002263 if (IS_ERR(s))
Jeff Layton91a27b22012-10-10 15:25:28 -04002264 return s;
Al Viro2ad94ae2008-07-21 09:32:51 -04002265
Jeff Layton9e790bd2012-12-11 12:10:09 -05002266 error = filename_lookup(dfd, s, flags | LOOKUP_PARENT, nd);
Jeff Layton91a27b22012-10-10 15:25:28 -04002267 if (error) {
Al Viro2ad94ae2008-07-21 09:32:51 -04002268 putname(s);
Jeff Layton91a27b22012-10-10 15:25:28 -04002269 return ERR_PTR(error);
2270 }
Al Viro2ad94ae2008-07-21 09:32:51 -04002271
Jeff Layton91a27b22012-10-10 15:25:28 -04002272 return s;
Al Viro2ad94ae2008-07-21 09:32:51 -04002273}
2274
Jeff Layton80334262013-07-26 06:23:25 -04002275/**
Al Viro197df042013-09-08 14:03:27 -04002276 * mountpoint_last - look up last component for umount
Jeff Layton80334262013-07-26 06:23:25 -04002277 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2278 * @path: pointer to container for result
2279 *
2280 * This is a special lookup_last function just for umount. In this case, we
2281 * need to resolve the path without doing any revalidation.
2282 *
2283 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2284 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2285 * in almost all cases, this lookup will be served out of the dcache. The only
2286 * cases where it won't are if nd->last refers to a symlink or the path is
2287 * bogus and it doesn't exist.
2288 *
2289 * Returns:
2290 * -error: if there was an error during lookup. This includes -ENOENT if the
2291 * lookup found a negative dentry. The nd->path reference will also be
2292 * put in this case.
2293 *
2294 * 0: if we successfully resolved nd->path and found it to not to be a
2295 * symlink that needs to be followed. "path" will also be populated.
2296 * The nd->path reference will also be put.
2297 *
2298 * 1: if we successfully resolved nd->last and found it to be a symlink
2299 * that needs to be followed. "path" will be populated with the path
2300 * to the link, and nd->path will *not* be put.
2301 */
2302static int
Al Viro197df042013-09-08 14:03:27 -04002303mountpoint_last(struct nameidata *nd, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002304{
2305 int error = 0;
2306 struct dentry *dentry;
2307 struct dentry *dir = nd->path.dentry;
2308
Al Viro35759522013-09-08 13:41:33 -04002309 /* If we're in rcuwalk, drop out of it to handle last component */
2310 if (nd->flags & LOOKUP_RCU) {
2311 if (unlazy_walk(nd, NULL)) {
2312 error = -ECHILD;
2313 goto out;
2314 }
Jeff Layton80334262013-07-26 06:23:25 -04002315 }
2316
2317 nd->flags &= ~LOOKUP_PARENT;
2318
2319 if (unlikely(nd->last_type != LAST_NORM)) {
2320 error = handle_dots(nd, nd->last_type);
Al Viro35759522013-09-08 13:41:33 -04002321 if (error)
Eric W. Biedermaneed13ce2015-08-15 20:27:13 -05002322 return error;
Al Viro35759522013-09-08 13:41:33 -04002323 dentry = dget(nd->path.dentry);
2324 goto done;
Jeff Layton80334262013-07-26 06:23:25 -04002325 }
2326
2327 mutex_lock(&dir->d_inode->i_mutex);
2328 dentry = d_lookup(dir, &nd->last);
2329 if (!dentry) {
2330 /*
2331 * No cached dentry. Mounted dentries are pinned in the cache,
2332 * so that means that this dentry is probably a symlink or the
2333 * path doesn't actually point to a mounted dentry.
2334 */
2335 dentry = d_alloc(dir, &nd->last);
2336 if (!dentry) {
2337 error = -ENOMEM;
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002338 mutex_unlock(&dir->d_inode->i_mutex);
Al Viro35759522013-09-08 13:41:33 -04002339 goto out;
Jeff Layton80334262013-07-26 06:23:25 -04002340 }
Al Viro35759522013-09-08 13:41:33 -04002341 dentry = lookup_real(dir->d_inode, dentry, nd->flags);
2342 error = PTR_ERR(dentry);
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002343 if (IS_ERR(dentry)) {
2344 mutex_unlock(&dir->d_inode->i_mutex);
Al Viro35759522013-09-08 13:41:33 -04002345 goto out;
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002346 }
Jeff Layton80334262013-07-26 06:23:25 -04002347 }
2348 mutex_unlock(&dir->d_inode->i_mutex);
2349
Al Viro35759522013-09-08 13:41:33 -04002350done:
David Howells698934d2015-03-17 17:33:52 +00002351 if (d_is_negative(dentry)) {
Al Viro35759522013-09-08 13:41:33 -04002352 error = -ENOENT;
2353 dput(dentry);
2354 goto out;
Jeff Layton80334262013-07-26 06:23:25 -04002355 }
Al Viro35759522013-09-08 13:41:33 -04002356 path->dentry = dentry;
Vasily Averin295dc392014-07-21 12:30:23 +04002357 path->mnt = nd->path.mnt;
David Howellsb18825a2013-09-12 19:22:53 +01002358 if (should_follow_link(dentry, nd->flags & LOOKUP_FOLLOW))
Al Viro35759522013-09-08 13:41:33 -04002359 return 1;
Vasily Averin295dc392014-07-21 12:30:23 +04002360 mntget(path->mnt);
Al Viro35759522013-09-08 13:41:33 -04002361 follow_mount(path);
2362 error = 0;
2363out:
Jeff Layton80334262013-07-26 06:23:25 -04002364 terminate_walk(nd);
2365 return error;
2366}
2367
2368/**
Al Viro197df042013-09-08 14:03:27 -04002369 * path_mountpoint - look up a path to be umounted
Jeff Layton80334262013-07-26 06:23:25 -04002370 * @dfd: directory file descriptor to start walk from
2371 * @name: full pathname to walk
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002372 * @path: pointer to container for result
Jeff Layton80334262013-07-26 06:23:25 -04002373 * @flags: lookup flags
Jeff Layton80334262013-07-26 06:23:25 -04002374 *
2375 * Look up the given name, but don't attempt to revalidate the last component.
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002376 * Returns 0 and "path" will be valid on success; Returns error otherwise.
Jeff Layton80334262013-07-26 06:23:25 -04002377 */
2378static int
Al Viro668696d2015-02-22 19:44:00 -05002379path_mountpoint(int dfd, const struct filename *name, struct path *path,
2380 unsigned int flags)
Jeff Layton80334262013-07-26 06:23:25 -04002381{
Jeff Layton80334262013-07-26 06:23:25 -04002382 struct nameidata nd;
2383 int err;
2384
Al Viro6e8a1f82015-02-22 19:46:04 -05002385 err = path_init(dfd, name, flags, &nd);
Jeff Layton80334262013-07-26 06:23:25 -04002386 if (unlikely(err))
Al Viro115cbfd2014-10-11 23:05:52 -04002387 goto out;
Jeff Layton80334262013-07-26 06:23:25 -04002388
Al Viro197df042013-09-08 14:03:27 -04002389 err = mountpoint_last(&nd, path);
Jeff Layton80334262013-07-26 06:23:25 -04002390 while (err > 0) {
2391 void *cookie;
2392 struct path link = *path;
2393 err = may_follow_link(&link, &nd);
2394 if (unlikely(err))
2395 break;
2396 nd.flags |= LOOKUP_PARENT;
2397 err = follow_link(&link, &nd, &cookie);
2398 if (err)
2399 break;
Al Viro197df042013-09-08 14:03:27 -04002400 err = mountpoint_last(&nd, path);
Jeff Layton80334262013-07-26 06:23:25 -04002401 put_link(&nd, &link, cookie);
2402 }
2403out:
Al Viro893b7772014-11-20 14:18:09 -05002404 path_cleanup(&nd);
Jeff Layton80334262013-07-26 06:23:25 -04002405 return err;
2406}
2407
Al Viro2d864652013-09-08 20:18:44 -04002408static int
Al Viro668696d2015-02-22 19:44:00 -05002409filename_mountpoint(int dfd, struct filename *name, struct path *path,
Al Viro2d864652013-09-08 20:18:44 -04002410 unsigned int flags)
2411{
Al Virocbaab2d2015-01-22 02:49:00 -05002412 int error;
Al Viro668696d2015-02-22 19:44:00 -05002413 if (IS_ERR(name))
2414 return PTR_ERR(name);
2415 error = path_mountpoint(dfd, name, path, flags | LOOKUP_RCU);
Al Viro2d864652013-09-08 20:18:44 -04002416 if (unlikely(error == -ECHILD))
Al Viro668696d2015-02-22 19:44:00 -05002417 error = path_mountpoint(dfd, name, path, flags);
Al Viro2d864652013-09-08 20:18:44 -04002418 if (unlikely(error == -ESTALE))
Al Viro668696d2015-02-22 19:44:00 -05002419 error = path_mountpoint(dfd, name, path, flags | LOOKUP_REVAL);
Al Viro2d864652013-09-08 20:18:44 -04002420 if (likely(!error))
Al Viro668696d2015-02-22 19:44:00 -05002421 audit_inode(name, path->dentry, 0);
2422 putname(name);
Al Viro2d864652013-09-08 20:18:44 -04002423 return error;
2424}
2425
Jeff Layton80334262013-07-26 06:23:25 -04002426/**
Al Viro197df042013-09-08 14:03:27 -04002427 * user_path_mountpoint_at - lookup a path from userland in order to umount it
Jeff Layton80334262013-07-26 06:23:25 -04002428 * @dfd: directory file descriptor
2429 * @name: pathname from userland
2430 * @flags: lookup flags
2431 * @path: pointer to container to hold result
2432 *
2433 * A umount is a special case for path walking. We're not actually interested
2434 * in the inode in this situation, and ESTALE errors can be a problem. We
2435 * simply want track down the dentry and vfsmount attached at the mountpoint
2436 * and avoid revalidating the last component.
2437 *
2438 * Returns 0 and populates "path" on success.
2439 */
2440int
Al Viro197df042013-09-08 14:03:27 -04002441user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
Jeff Layton80334262013-07-26 06:23:25 -04002442 struct path *path)
2443{
Al Virocbaab2d2015-01-22 02:49:00 -05002444 return filename_mountpoint(dfd, getname(name), path, flags);
Jeff Layton80334262013-07-26 06:23:25 -04002445}
2446
Al Viro2d864652013-09-08 20:18:44 -04002447int
2448kern_path_mountpoint(int dfd, const char *name, struct path *path,
2449 unsigned int flags)
2450{
Al Virocbaab2d2015-01-22 02:49:00 -05002451 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
Al Viro2d864652013-09-08 20:18:44 -04002452}
2453EXPORT_SYMBOL(kern_path_mountpoint);
2454
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002455int __check_sticky(struct inode *dir, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002457 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002458
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002459 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002461 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 return 0;
Andy Lutomirski23adbe12014-06-10 12:45:42 -07002463 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464}
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002465EXPORT_SYMBOL(__check_sticky);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
2467/*
2468 * Check whether we can remove a link victim from directory dir, check
2469 * whether the type of victim is right.
2470 * 1. We can't do it if dir is read-only (done in permission())
2471 * 2. We should have write and exec permissions on dir
2472 * 3. We can't remove anything from append-only dir
2473 * 4. We can't do anything with immutable dir (done in permission())
2474 * 5. If the sticky bit on dir is set we should either
2475 * a. be owner of dir, or
2476 * b. be owner of victim, or
2477 * c. have CAP_FOWNER capability
2478 * 6. If the victim is append-only or immutable we can't do antyhing with
2479 * links pointing to it.
2480 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2481 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2482 * 9. We can't remove a root or mountpoint.
2483 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2484 * nfs_async_unlink().
2485 */
David Howellsb18825a2013-09-12 19:22:53 +01002486static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487{
David Howellsb18825a2013-09-12 19:22:53 +01002488 struct inode *inode = victim->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 int error;
2490
David Howellsb18825a2013-09-12 19:22:53 +01002491 if (d_is_negative(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 return -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01002493 BUG_ON(!inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
2495 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002496 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
Al Virof419a2e2008-07-22 00:07:17 -04002498 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 if (error)
2500 return error;
2501 if (IS_APPEND(dir))
2502 return -EPERM;
David Howellsb18825a2013-09-12 19:22:53 +01002503
2504 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
2505 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 return -EPERM;
2507 if (isdir) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002508 if (!d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 return -ENOTDIR;
2510 if (IS_ROOT(victim))
2511 return -EBUSY;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002512 } else if (d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 return -EISDIR;
2514 if (IS_DEADDIR(dir))
2515 return -ENOENT;
2516 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2517 return -EBUSY;
2518 return 0;
2519}
2520
2521/* Check whether we can create an object with dentry child in directory
2522 * dir.
2523 * 1. We can't do it if child already exists (open has special treatment for
2524 * this case, but since we are inlined it's OK)
2525 * 2. We can't do it if dir is read-only (done in permission())
2526 * 3. We should have write and exec permissions on dir
2527 * 4. We can't do it if dir is immutable (done in permission())
2528 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002529static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530{
Jeff Layton14e972b2013-05-08 10:25:58 -04002531 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 if (child->d_inode)
2533 return -EEXIST;
2534 if (IS_DEADDIR(dir))
2535 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04002536 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537}
2538
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539/*
2540 * p1 and p2 should be directories on the same fs.
2541 */
2542struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2543{
2544 struct dentry *p;
2545
2546 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07002547 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 return NULL;
2549 }
2550
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002551 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002553 p = d_ancestor(p2, p1);
2554 if (p) {
2555 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2556 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2557 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 }
2559
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002560 p = d_ancestor(p1, p2);
2561 if (p) {
2562 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2563 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2564 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 }
2566
Ingo Molnarf2eace22006-07-03 00:25:05 -07002567 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Miklos Szeredid1b72cc2014-10-27 15:42:01 +01002568 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 return NULL;
2570}
Al Viro4d359502014-03-14 12:20:17 -04002571EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
2573void unlock_rename(struct dentry *p1, struct dentry *p2)
2574{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002575 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002577 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002578 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 }
2580}
Al Viro4d359502014-03-14 12:20:17 -04002581EXPORT_SYMBOL(unlock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
Al Viro4acdaf22011-07-26 01:42:34 -04002583int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002584 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002586 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 if (error)
2588 return error;
2589
Al Viroacfa4382008-12-04 10:06:33 -05002590 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 return -EACCES; /* shouldn't it be ENOSYS? */
2592 mode &= S_IALLUGO;
2593 mode |= S_IFREG;
2594 error = security_inode_create(dir, dentry, mode);
2595 if (error)
2596 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002597 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002598 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002599 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 return error;
2601}
Al Viro4d359502014-03-14 12:20:17 -04002602EXPORT_SYMBOL(vfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
Al Viro73d049a2011-03-11 12:08:24 -05002604static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002606 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 struct inode *inode = dentry->d_inode;
2608 int error;
2609
Al Virobcda7652011-03-13 16:42:14 -04002610 /* O_PATH? */
2611 if (!acc_mode)
2612 return 0;
2613
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 if (!inode)
2615 return -ENOENT;
2616
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002617 switch (inode->i_mode & S_IFMT) {
2618 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002620 case S_IFDIR:
2621 if (acc_mode & MAY_WRITE)
2622 return -EISDIR;
2623 break;
2624 case S_IFBLK:
2625 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002626 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002628 /*FALLTHRU*/
2629 case S_IFIFO:
2630 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002632 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002633 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002634
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002635 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002636 if (error)
2637 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002638
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 /*
2640 * An append-only file must be opened in append mode for writing.
2641 */
2642 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002643 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002644 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002646 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 }
2648
2649 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002650 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002651 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002653 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002654}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
Jeff Laytone1181ee2010-12-07 16:19:50 -05002656static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002657{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002658 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002659 struct inode *inode = path->dentry->d_inode;
2660 int error = get_write_access(inode);
2661 if (error)
2662 return error;
2663 /*
2664 * Refuse to truncate files with mandatory locks held on them.
2665 */
Jeff Laytond7a06982014-03-10 09:54:15 -04002666 error = locks_verify_locked(filp);
Al Viro7715b522009-12-16 03:54:00 -05002667 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002668 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002669 if (!error) {
2670 error = do_truncate(path->dentry, 0,
2671 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002672 filp);
Al Viro7715b522009-12-16 03:54:00 -05002673 }
2674 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002675 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676}
2677
Dave Hansend57999e2008-02-15 14:37:27 -08002678static inline int open_to_namei_flags(int flag)
2679{
Al Viro8a5e9292011-06-25 19:15:54 -04002680 if ((flag & O_ACCMODE) == 3)
2681 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002682 return flag;
2683}
2684
Miklos Szeredid18e9002012-06-05 15:10:17 +02002685static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2686{
2687 int error = security_path_mknod(dir, dentry, mode, 0);
2688 if (error)
2689 return error;
2690
2691 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2692 if (error)
2693 return error;
2694
2695 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2696}
2697
David Howells1acf0af2012-06-14 16:13:46 +01002698/*
2699 * Attempt to atomically look up, create and open a file from a negative
2700 * dentry.
2701 *
2702 * Returns 0 if successful. The file will have been created and attached to
2703 * @file by the filesystem calling finish_open().
2704 *
2705 * Returns 1 if the file was looked up only or didn't need creating. The
2706 * caller will need to perform the open themselves. @path will have been
2707 * updated to point to the new dentry. This may be negative.
2708 *
2709 * Returns an error code otherwise.
2710 */
Al Viro2675a4e2012-06-22 12:41:10 +04002711static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2712 struct path *path, struct file *file,
2713 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04002714 bool got_write, bool need_lookup,
Al Viro2675a4e2012-06-22 12:41:10 +04002715 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002716{
2717 struct inode *dir = nd->path.dentry->d_inode;
2718 unsigned open_flag = open_to_namei_flags(op->open_flag);
2719 umode_t mode;
2720 int error;
2721 int acc_mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002722 int create_error = 0;
2723 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
Miklos Szeredi116cc022013-09-16 14:52:05 +02002724 bool excl;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002725
2726 BUG_ON(dentry->d_inode);
2727
2728 /* Don't create child dentry for a dead directory. */
2729 if (unlikely(IS_DEADDIR(dir))) {
Al Viro2675a4e2012-06-22 12:41:10 +04002730 error = -ENOENT;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002731 goto out;
2732 }
2733
Miklos Szeredi62b259d2012-08-15 13:01:24 +02002734 mode = op->mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002735 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2736 mode &= ~current_umask();
2737
Miklos Szeredi116cc022013-09-16 14:52:05 +02002738 excl = (open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT);
2739 if (excl)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002740 open_flag &= ~O_TRUNC;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002741
2742 /*
2743 * Checking write permission is tricky, bacuse we don't know if we are
2744 * going to actually need it: O_CREAT opens should work as long as the
2745 * file exists. But checking existence breaks atomicity. The trick is
2746 * to check access and if not granted clear O_CREAT from the flags.
2747 *
2748 * Another problem is returing the "right" error value (e.g. for an
2749 * O_EXCL open we want to return EEXIST not EROFS).
2750 */
Al Viro64894cf2012-07-31 00:53:35 +04002751 if (((open_flag & (O_CREAT | O_TRUNC)) ||
2752 (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2753 if (!(open_flag & O_CREAT)) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002754 /*
2755 * No O_CREATE -> atomicity not a requirement -> fall
2756 * back to lookup + open
2757 */
2758 goto no_open;
2759 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2760 /* Fall back and fail with the right error */
Al Viro64894cf2012-07-31 00:53:35 +04002761 create_error = -EROFS;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002762 goto no_open;
2763 } else {
2764 /* No side effects, safe to clear O_CREAT */
Al Viro64894cf2012-07-31 00:53:35 +04002765 create_error = -EROFS;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002766 open_flag &= ~O_CREAT;
2767 }
2768 }
2769
2770 if (open_flag & O_CREAT) {
Miklos Szeredi38227f72012-08-15 13:01:24 +02002771 error = may_o_create(&nd->path, dentry, mode);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002772 if (error) {
2773 create_error = error;
2774 if (open_flag & O_EXCL)
2775 goto no_open;
2776 open_flag &= ~O_CREAT;
2777 }
2778 }
2779
2780 if (nd->flags & LOOKUP_DIRECTORY)
2781 open_flag |= O_DIRECTORY;
2782
Al Viro30d90492012-06-22 12:40:19 +04002783 file->f_path.dentry = DENTRY_NOT_SET;
2784 file->f_path.mnt = nd->path.mnt;
2785 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
Al Viro47237682012-06-10 05:01:45 -04002786 opened);
Al Virod9585272012-06-22 12:39:14 +04002787 if (error < 0) {
Al Virod9585272012-06-22 12:39:14 +04002788 if (create_error && error == -ENOENT)
2789 error = create_error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002790 goto out;
2791 }
2792
Al Virod9585272012-06-22 12:39:14 +04002793 if (error) { /* returned 1, that is */
Al Viro30d90492012-06-22 12:40:19 +04002794 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04002795 error = -EIO;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002796 goto out;
2797 }
Al Viro30d90492012-06-22 12:40:19 +04002798 if (file->f_path.dentry) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002799 dput(dentry);
Al Viro30d90492012-06-22 12:40:19 +04002800 dentry = file->f_path.dentry;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002801 }
Al Viro03da6332013-09-16 19:22:33 -04002802 if (*opened & FILE_CREATED)
2803 fsnotify_create(dir, dentry);
2804 if (!dentry->d_inode) {
2805 WARN_ON(*opened & FILE_CREATED);
2806 if (create_error) {
2807 error = create_error;
2808 goto out;
2809 }
2810 } else {
2811 if (excl && !(*opened & FILE_CREATED)) {
2812 error = -EEXIST;
2813 goto out;
2814 }
Sage Weil62b2ce92012-08-15 13:30:12 -07002815 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02002816 goto looked_up;
2817 }
2818
2819 /*
2820 * We didn't have the inode before the open, so check open permission
2821 * here.
2822 */
Al Viro03da6332013-09-16 19:22:33 -04002823 acc_mode = op->acc_mode;
2824 if (*opened & FILE_CREATED) {
2825 WARN_ON(!(open_flag & O_CREAT));
2826 fsnotify_create(dir, dentry);
2827 acc_mode = MAY_OPEN;
2828 }
Al Viro2675a4e2012-06-22 12:41:10 +04002829 error = may_open(&file->f_path, acc_mode, open_flag);
2830 if (error)
2831 fput(file);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002832
2833out:
2834 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04002835 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002836
Miklos Szeredid18e9002012-06-05 15:10:17 +02002837no_open:
2838 if (need_lookup) {
Al Viro72bd8662012-06-10 17:17:17 -04002839 dentry = lookup_real(dir, dentry, nd->flags);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002840 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002841 return PTR_ERR(dentry);
Al Viro9ddd8342016-04-27 01:11:55 -04002842 }
2843 if (create_error && !dentry->d_inode) {
2844 error = create_error;
2845 goto out;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002846 }
2847looked_up:
2848 path->dentry = dentry;
2849 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04002850 return 1;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002851}
2852
Nick Piggin31e6b012011-01-07 17:49:52 +11002853/*
David Howells1acf0af2012-06-14 16:13:46 +01002854 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002855 *
2856 * Must be called with i_mutex held on parent.
2857 *
David Howells1acf0af2012-06-14 16:13:46 +01002858 * Returns 0 if the file was successfully atomically created (if necessary) and
2859 * opened. In this case the file will be returned attached to @file.
2860 *
2861 * Returns 1 if the file was not completely opened at this time, though lookups
2862 * and creations will have been performed and the dentry returned in @path will
2863 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
2864 * specified then a negative dentry may be returned.
2865 *
2866 * An error code is returned otherwise.
2867 *
2868 * FILE_CREATE will be set in @*opened if the dentry was created and will be
2869 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002870 */
Al Viro2675a4e2012-06-22 12:41:10 +04002871static int lookup_open(struct nameidata *nd, struct path *path,
2872 struct file *file,
2873 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04002874 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002875{
2876 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002877 struct inode *dir_inode = dir->d_inode;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002878 struct dentry *dentry;
2879 int error;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002880 bool need_lookup;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002881
Al Viro47237682012-06-10 05:01:45 -04002882 *opened &= ~FILE_CREATED;
Al Viro201f9562012-06-22 12:42:10 +04002883 dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002884 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002885 return PTR_ERR(dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002886
Miklos Szeredid18e9002012-06-05 15:10:17 +02002887 /* Cached positive dentry: will open in f_op->open */
2888 if (!need_lookup && dentry->d_inode)
2889 goto out_no_open;
2890
2891 if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
Al Viro64894cf2012-07-31 00:53:35 +04002892 return atomic_open(nd, dentry, path, file, op, got_write,
Al Viro47237682012-06-10 05:01:45 -04002893 need_lookup, opened);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002894 }
2895
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002896 if (need_lookup) {
2897 BUG_ON(dentry->d_inode);
2898
Al Viro72bd8662012-06-10 17:17:17 -04002899 dentry = lookup_real(dir_inode, dentry, nd->flags);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002900 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002901 return PTR_ERR(dentry);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002902 }
2903
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002904 /* Negative dentry, just create the file */
2905 if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
2906 umode_t mode = op->mode;
2907 if (!IS_POSIXACL(dir->d_inode))
2908 mode &= ~current_umask();
2909 /*
2910 * This write is needed to ensure that a
2911 * rw->ro transition does not occur between
2912 * the time when the file is created and when
2913 * a permanent write count is taken through
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002914 * the 'struct file' in finish_open().
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002915 */
Al Viro64894cf2012-07-31 00:53:35 +04002916 if (!got_write) {
2917 error = -EROFS;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002918 goto out_dput;
Al Viro64894cf2012-07-31 00:53:35 +04002919 }
Al Viro47237682012-06-10 05:01:45 -04002920 *opened |= FILE_CREATED;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002921 error = security_path_mknod(&nd->path, dentry, mode, 0);
2922 if (error)
2923 goto out_dput;
Al Viro312b63f2012-06-10 18:09:36 -04002924 error = vfs_create(dir->d_inode, dentry, mode,
2925 nd->flags & LOOKUP_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002926 if (error)
2927 goto out_dput;
2928 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02002929out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002930 path->dentry = dentry;
2931 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04002932 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002933
2934out_dput:
2935 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04002936 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002937}
2938
2939/*
Al Virofe2d35f2011-03-05 22:58:25 -05002940 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002941 */
Al Viro2675a4e2012-06-22 12:41:10 +04002942static int do_last(struct nameidata *nd, struct path *path,
2943 struct file *file, const struct open_flags *op,
Jeff Layton669abf42012-10-10 16:43:10 -04002944 int *opened, struct filename *name)
Al Virofb1cc552009-12-24 01:58:28 -05002945{
Al Viroa1e28032009-12-24 02:12:06 -05002946 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05002947 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002948 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04002949 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04002950 int acc_mode = op->acc_mode;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002951 struct inode *inode;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002952 bool symlink_ok = false;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002953 struct path save_parent = { .dentry = NULL, .mnt = NULL };
2954 bool retried = false;
Al Viro16c2cd72011-02-22 15:50:10 -05002955 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002956
Al Viroc3e380b2011-02-23 13:39:45 -05002957 nd->flags &= ~LOOKUP_PARENT;
2958 nd->flags |= op->intent;
2959
Al Virobc77daa2013-06-06 09:12:33 -04002960 if (nd->last_type != LAST_NORM) {
Al Virofe2d35f2011-03-05 22:58:25 -05002961 error = handle_dots(nd, nd->last_type);
2962 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002963 return error;
Miklos Szeredie83db162012-06-05 15:10:29 +02002964 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05002965 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002966
Al Viroca344a892011-03-09 00:36:45 -05002967 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05002968 if (nd->last.name[nd->last.len])
2969 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002970 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002971 symlink_ok = true;
Al Virofe2d35f2011-03-05 22:58:25 -05002972 /* we _can_ be in RCU mode here */
Al Viroe97cdc82013-01-24 18:16:00 -05002973 error = lookup_fast(nd, path, &inode);
Miklos Szeredi71574862012-06-05 15:10:14 +02002974 if (likely(!error))
2975 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002976
Miklos Szeredi71574862012-06-05 15:10:14 +02002977 if (error < 0)
Al Viro2675a4e2012-06-22 12:41:10 +04002978 goto out;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02002979
Miklos Szeredi71574862012-06-05 15:10:14 +02002980 BUG_ON(nd->inode != dir->d_inode);
Miklos Szeredib6183df2012-06-05 15:10:13 +02002981 } else {
2982 /* create side of things */
2983 /*
2984 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
2985 * has been cleared when we got to the last component we are
2986 * about to look up
2987 */
2988 error = complete_walk(nd);
2989 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002990 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02002991
Jeff Layton33e22082013-04-12 15:16:32 -04002992 audit_inode(name, dir, LOOKUP_PARENT);
Miklos Szeredib6183df2012-06-05 15:10:13 +02002993 error = -EISDIR;
2994 /* trailing slashes? */
2995 if (nd->last.name[nd->last.len])
Al Viro2675a4e2012-06-22 12:41:10 +04002996 goto out;
Al Virofe2d35f2011-03-05 22:58:25 -05002997 }
2998
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002999retry_lookup:
Al Viro64894cf2012-07-31 00:53:35 +04003000 if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
3001 error = mnt_want_write(nd->path.mnt);
3002 if (!error)
3003 got_write = true;
3004 /*
3005 * do _not_ fail yet - we might not need that or fail with
3006 * a different error; let lookup_open() decide; we'll be
3007 * dropping this one anyway.
3008 */
3009 }
Al Viroa1e28032009-12-24 02:12:06 -05003010 mutex_lock(&dir->d_inode->i_mutex);
Al Viro64894cf2012-07-31 00:53:35 +04003011 error = lookup_open(nd, path, file, op, got_write, opened);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003012 mutex_unlock(&dir->d_inode->i_mutex);
Al Viroa1e28032009-12-24 02:12:06 -05003013
Al Viro2675a4e2012-06-22 12:41:10 +04003014 if (error <= 0) {
3015 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003016 goto out;
3017
Al Viro47237682012-06-10 05:01:45 -04003018 if ((*opened & FILE_CREATED) ||
Al Viro496ad9a2013-01-23 17:07:38 -05003019 !S_ISREG(file_inode(file)->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003020 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003021
Jeff Laytonadb5c242012-10-10 16:43:13 -04003022 audit_inode(name, file->f_path.dentry, 0);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003023 goto opened;
3024 }
Al Virofb1cc552009-12-24 01:58:28 -05003025
Al Viro47237682012-06-10 05:01:45 -04003026 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05003027 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05003028 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003029 will_truncate = false;
Al Virobcda7652011-03-13 16:42:14 -04003030 acc_mode = MAY_OPEN;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003031 path_to_nameidata(path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02003032 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05003033 }
3034
3035 /*
Jeff Layton3134f372012-07-25 10:19:47 -04003036 * create/update audit record if it already exists.
Al Virofb1cc552009-12-24 01:58:28 -05003037 */
David Howellsb18825a2013-09-12 19:22:53 +01003038 if (d_is_positive(path->dentry))
Jeff Laytonadb5c242012-10-10 16:43:13 -04003039 audit_inode(name, path->dentry, 0);
Al Virofb1cc552009-12-24 01:58:28 -05003040
Miklos Szeredid18e9002012-06-05 15:10:17 +02003041 /*
3042 * If atomic_open() acquired write access it is dropped now due to
3043 * possible mount and symlink following (this might be optimized away if
3044 * necessary...)
3045 */
Al Viro64894cf2012-07-31 00:53:35 +04003046 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02003047 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003048 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003049 }
3050
Al Virofb1cc552009-12-24 01:58:28 -05003051 error = -EEXIST;
Al Virof8310c52012-07-30 11:50:30 +04003052 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))
Al Virofb1cc552009-12-24 01:58:28 -05003053 goto exit_dput;
3054
David Howells9875cf82011-01-14 18:45:21 +00003055 error = follow_managed(path, nd->flags);
3056 if (error < 0)
3057 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05003058
Al Viroa3fbbde2011-11-07 21:21:26 +00003059 if (error)
3060 nd->flags |= LOOKUP_JUMPED;
3061
Miklos Szeredidecf3402012-05-21 17:30:08 +02003062 BUG_ON(nd->flags & LOOKUP_RCU);
3063 inode = path->dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05003064 error = -ENOENT;
David Howells698934d2015-03-17 17:33:52 +00003065 if (d_is_negative(path->dentry)) {
Miklos Szeredi54c33e72012-05-21 17:30:10 +02003066 path_to_nameidata(path, nd);
Al Viro2675a4e2012-06-22 12:41:10 +04003067 goto out;
Miklos Szeredi54c33e72012-05-21 17:30:10 +02003068 }
Al Viro9b77cd132016-02-27 19:23:16 -05003069 inode = path->dentry->d_inode;
Al Viro766c4cb2015-05-07 19:24:57 -04003070finish_lookup:
3071 /* we _can_ be in RCU mode here */
David Howellsb18825a2013-09-12 19:22:53 +01003072 if (should_follow_link(path->dentry, !symlink_ok)) {
Miklos Szeredid45ea862012-05-21 17:30:09 +02003073 if (nd->flags & LOOKUP_RCU) {
Al Viro3cab9892015-04-24 15:47:07 -04003074 if (unlikely(nd->path.mnt != path->mnt ||
3075 unlazy_walk(nd, path->dentry))) {
Miklos Szeredid45ea862012-05-21 17:30:09 +02003076 error = -ECHILD;
Al Viro2675a4e2012-06-22 12:41:10 +04003077 goto out;
Miklos Szeredid45ea862012-05-21 17:30:09 +02003078 }
3079 }
3080 BUG_ON(inode != path->dentry->d_inode);
Al Viro2675a4e2012-06-22 12:41:10 +04003081 return 1;
Miklos Szeredid45ea862012-05-21 17:30:09 +02003082 }
Al Virofb1cc552009-12-24 01:58:28 -05003083
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003084 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path->mnt) {
3085 path_to_nameidata(path, nd);
3086 } else {
3087 save_parent.dentry = nd->path.dentry;
3088 save_parent.mnt = mntget(path->mnt);
3089 nd->path.dentry = path->dentry;
3090
3091 }
Miklos Szeredidecf3402012-05-21 17:30:08 +02003092 nd->inode = inode;
Al Viroa3fbbde2011-11-07 21:21:26 +00003093 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
Al Virobc77daa2013-06-06 09:12:33 -04003094finish_open:
Al Viroa3fbbde2011-11-07 21:21:26 +00003095 error = complete_walk(nd);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003096 if (error) {
3097 path_put(&save_parent);
Al Viro2675a4e2012-06-22 12:41:10 +04003098 return error;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003099 }
Al Virobc77daa2013-06-06 09:12:33 -04003100 audit_inode(name, nd->path.dentry, 0);
Al Virofb1cc552009-12-24 01:58:28 -05003101 error = -EISDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003102 if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003103 goto out;
Miklos Szerediaf2f5542012-05-21 17:30:11 +02003104 error = -ENOTDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003105 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003106 goto out;
David Howells4bbcbd3b2015-03-17 22:16:40 +00003107 if (!d_is_reg(nd->path.dentry))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003108 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05003109
Al Viro0f9d1a12011-03-09 00:13:14 -05003110 if (will_truncate) {
3111 error = mnt_want_write(nd->path.mnt);
3112 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003113 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04003114 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05003115 }
Miklos Szeredie83db162012-06-05 15:10:29 +02003116finish_open_created:
Al Virobcda7652011-03-13 16:42:14 -04003117 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05003118 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003119 goto out;
Miklos Szeredi4aa7c632014-10-24 00:14:35 +02003120
3121 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3122 error = vfs_open(&nd->path, file, current_cred());
3123 if (!error) {
3124 *opened |= FILE_OPENED;
3125 } else {
Al Viro30d90492012-06-22 12:40:19 +04003126 if (error == -EOPENSTALE)
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003127 goto stale_open;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003128 goto out;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003129 }
Miklos Szeredia8277b92012-06-05 15:10:32 +02003130opened:
Al Viro2675a4e2012-06-22 12:41:10 +04003131 error = open_check_o_direct(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003132 if (error)
3133 goto exit_fput;
Dmitry Kasatkin3034a142014-06-27 18:15:44 +03003134 error = ima_file_check(file, op->acc_mode, *opened);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02003135 if (error)
3136 goto exit_fput;
3137
3138 if (will_truncate) {
Al Viro2675a4e2012-06-22 12:41:10 +04003139 error = handle_truncate(file);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02003140 if (error)
3141 goto exit_fput;
Al Viro0f9d1a12011-03-09 00:13:14 -05003142 }
Al Viroca344a892011-03-09 00:36:45 -05003143out:
Al Viro3960cde2016-02-27 19:17:33 -05003144 if (unlikely(error > 0)) {
3145 WARN_ON(1);
3146 error = -EINVAL;
3147 }
Al Viro64894cf2012-07-31 00:53:35 +04003148 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05003149 mnt_drop_write(nd->path.mnt);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003150 path_put(&save_parent);
Miklos Szeredie276ae62012-05-21 17:30:06 +02003151 terminate_walk(nd);
Al Viro2675a4e2012-06-22 12:41:10 +04003152 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003153
Al Virofb1cc552009-12-24 01:58:28 -05003154exit_dput:
3155 path_put_conditional(path, nd);
Al Viroca344a892011-03-09 00:36:45 -05003156 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003157exit_fput:
Al Viro2675a4e2012-06-22 12:41:10 +04003158 fput(file);
3159 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003160
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003161stale_open:
3162 /* If no saved parent or already retried then can't retry */
3163 if (!save_parent.dentry || retried)
3164 goto out;
3165
3166 BUG_ON(save_parent.dentry != dir);
3167 path_put(&nd->path);
3168 nd->path = save_parent;
3169 nd->inode = dir->d_inode;
3170 save_parent.mnt = NULL;
3171 save_parent.dentry = NULL;
Al Viro64894cf2012-07-31 00:53:35 +04003172 if (got_write) {
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003173 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003174 got_write = false;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003175 }
3176 retried = true;
3177 goto retry_lookup;
Al Virofb1cc552009-12-24 01:58:28 -05003178}
3179
Al Viro60545d02013-06-07 01:20:27 -04003180static int do_tmpfile(int dfd, struct filename *pathname,
3181 struct nameidata *nd, int flags,
3182 const struct open_flags *op,
3183 struct file *file, int *opened)
3184{
3185 static const struct qstr name = QSTR_INIT("/", 1);
3186 struct dentry *dentry, *child;
3187 struct inode *dir;
Al Viro5eb6b492015-02-22 19:40:53 -05003188 int error = path_lookupat(dfd, pathname,
Al Viro60545d02013-06-07 01:20:27 -04003189 flags | LOOKUP_DIRECTORY, nd);
3190 if (unlikely(error))
3191 return error;
3192 error = mnt_want_write(nd->path.mnt);
3193 if (unlikely(error))
3194 goto out;
3195 /* we want directory to be writable */
3196 error = inode_permission(nd->inode, MAY_WRITE | MAY_EXEC);
3197 if (error)
3198 goto out2;
3199 dentry = nd->path.dentry;
3200 dir = dentry->d_inode;
3201 if (!dir->i_op->tmpfile) {
3202 error = -EOPNOTSUPP;
3203 goto out2;
3204 }
3205 child = d_alloc(dentry, &name);
3206 if (unlikely(!child)) {
3207 error = -ENOMEM;
3208 goto out2;
3209 }
3210 nd->flags &= ~LOOKUP_DIRECTORY;
3211 nd->flags |= op->intent;
3212 dput(nd->path.dentry);
3213 nd->path.dentry = child;
3214 error = dir->i_op->tmpfile(dir, nd->path.dentry, op->mode);
3215 if (error)
3216 goto out2;
3217 audit_inode(pathname, nd->path.dentry, 0);
Eric Rannaud69a91c22014-10-30 01:51:01 -07003218 /* Don't check for other permissions, the inode was just created */
3219 error = may_open(&nd->path, MAY_OPEN, op->open_flag);
Al Viro60545d02013-06-07 01:20:27 -04003220 if (error)
3221 goto out2;
3222 file->f_path.mnt = nd->path.mnt;
3223 error = finish_open(file, nd->path.dentry, NULL, opened);
3224 if (error)
3225 goto out2;
3226 error = open_check_o_direct(file);
Al Virof4e0c302013-06-11 08:34:36 +04003227 if (error) {
Al Viro60545d02013-06-07 01:20:27 -04003228 fput(file);
Al Virof4e0c302013-06-11 08:34:36 +04003229 } else if (!(op->open_flag & O_EXCL)) {
3230 struct inode *inode = file_inode(file);
3231 spin_lock(&inode->i_lock);
3232 inode->i_state |= I_LINKABLE;
3233 spin_unlock(&inode->i_lock);
3234 }
Al Viro60545d02013-06-07 01:20:27 -04003235out2:
3236 mnt_drop_write(nd->path.mnt);
3237out:
3238 path_put(&nd->path);
3239 return error;
3240}
3241
Jeff Layton669abf42012-10-10 16:43:10 -04003242static struct file *path_openat(int dfd, struct filename *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05003243 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244{
Al Viro30d90492012-06-22 12:40:19 +04003245 struct file *file;
Al Viro9850c052010-01-13 15:01:15 -05003246 struct path path;
Al Viro47237682012-06-10 05:01:45 -04003247 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05003248 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11003249
Al Viro30d90492012-06-22 12:40:19 +04003250 file = get_empty_filp();
Al Viro1afc99b2013-02-14 20:41:04 -05003251 if (IS_ERR(file))
3252 return file;
Nick Piggin31e6b012011-01-07 17:49:52 +11003253
Al Viro30d90492012-06-22 12:40:19 +04003254 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11003255
Al Virobb458c62013-07-13 13:26:37 +04003256 if (unlikely(file->f_flags & __O_TMPFILE)) {
Al Viro60545d02013-06-07 01:20:27 -04003257 error = do_tmpfile(dfd, pathname, nd, flags, op, file, &opened);
Al Virof15133d2015-05-08 22:53:15 -04003258 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003259 }
3260
Al Viro6e8a1f82015-02-22 19:46:04 -05003261 error = path_init(dfd, pathname, flags, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11003262 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003263 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Al Viro2675a4e2012-06-22 12:41:10 +04003265 error = do_last(nd, &path, file, op, &opened, pathname);
3266 while (unlikely(error > 0)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00003267 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05003268 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04003269 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05003270 path_put_conditional(&path, nd);
3271 path_put(&nd->path);
Al Viro2675a4e2012-06-22 12:41:10 +04003272 error = -ELOOP;
Al Viro40b39132011-03-09 16:22:18 -05003273 break;
3274 }
Kees Cook800179c2012-07-25 17:29:07 -07003275 error = may_follow_link(&link, nd);
3276 if (unlikely(error))
3277 break;
Al Viro73d049a2011-03-11 12:08:24 -05003278 nd->flags |= LOOKUP_PARENT;
3279 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04003280 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05003281 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003282 break;
3283 error = do_last(nd, &path, file, op, &opened, pathname);
Al Viro574197e2011-03-14 22:20:34 -04003284 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05003285 }
Al Viro10fa8e62009-12-26 07:09:49 -05003286out:
Al Viro893b7772014-11-20 14:18:09 -05003287 path_cleanup(nd);
Al Virof15133d2015-05-08 22:53:15 -04003288out2:
Al Viro2675a4e2012-06-22 12:41:10 +04003289 if (!(opened & FILE_OPENED)) {
3290 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04003291 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003292 }
Al Viro2675a4e2012-06-22 12:41:10 +04003293 if (unlikely(error)) {
3294 if (error == -EOPENSTALE) {
3295 if (flags & LOOKUP_RCU)
3296 error = -ECHILD;
3297 else
3298 error = -ESTALE;
3299 }
3300 file = ERR_PTR(error);
3301 }
3302 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303}
3304
Jeff Layton669abf42012-10-10 16:43:10 -04003305struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +04003306 const struct open_flags *op)
Al Viro13aab422011-02-23 17:54:08 -05003307{
Al Viro73d049a2011-03-11 12:08:24 -05003308 struct nameidata nd;
Al Virof9652e12013-06-11 08:23:01 +04003309 int flags = op->lookup_flags;
Al Viro13aab422011-02-23 17:54:08 -05003310 struct file *filp;
3311
Al Viro73d049a2011-03-11 12:08:24 -05003312 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05003313 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05003314 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05003315 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05003316 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05003317 return filp;
3318}
3319
Al Viro73d049a2011-03-11 12:08:24 -05003320struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
Al Virof9652e12013-06-11 08:23:01 +04003321 const char *name, const struct open_flags *op)
Al Viro73d049a2011-03-11 12:08:24 -05003322{
3323 struct nameidata nd;
3324 struct file *file;
Paul Moore51689102015-01-22 00:00:03 -05003325 struct filename *filename;
Al Virof9652e12013-06-11 08:23:01 +04003326 int flags = op->lookup_flags | LOOKUP_ROOT;
Al Viro73d049a2011-03-11 12:08:24 -05003327
3328 nd.root.mnt = mnt;
3329 nd.root.dentry = dentry;
3330
David Howellsb18825a2013-09-12 19:22:53 +01003331 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05003332 return ERR_PTR(-ELOOP);
3333
Paul Moore51689102015-01-22 00:00:03 -05003334 filename = getname_kernel(name);
3335 if (unlikely(IS_ERR(filename)))
3336 return ERR_CAST(filename);
3337
3338 file = path_openat(-1, filename, &nd, op, flags | LOOKUP_RCU);
Al Viro73d049a2011-03-11 12:08:24 -05003339 if (unlikely(file == ERR_PTR(-ECHILD)))
Paul Moore51689102015-01-22 00:00:03 -05003340 file = path_openat(-1, filename, &nd, op, flags);
Al Viro73d049a2011-03-11 12:08:24 -05003341 if (unlikely(file == ERR_PTR(-ESTALE)))
Paul Moore51689102015-01-22 00:00:03 -05003342 file = path_openat(-1, filename, &nd, op, flags | LOOKUP_REVAL);
3343 putname(filename);
Al Viro73d049a2011-03-11 12:08:24 -05003344 return file;
3345}
3346
Al Virofa14a0b2015-01-22 02:16:49 -05003347static struct dentry *filename_create(int dfd, struct filename *name,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003348 struct path *path, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003350 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viroed75e952011-06-27 16:53:43 -04003351 struct nameidata nd;
Jan Karac30dabf2012-06-12 16:20:30 +02003352 int err2;
Jeff Layton1ac12b42012-12-11 12:10:06 -05003353 int error;
3354 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3355
3356 /*
3357 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3358 * other flags passed in are ignored!
3359 */
3360 lookup_flags &= LOOKUP_REVAL;
3361
Al Virofa14a0b2015-01-22 02:16:49 -05003362 error = filename_lookup(dfd, name, LOOKUP_PARENT|lookup_flags, &nd);
Al Viroed75e952011-06-27 16:53:43 -04003363 if (error)
3364 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003366 /*
3367 * Yucky last component or no last component at all?
3368 * (foo/., foo/.., /////)
3369 */
Al Viroed75e952011-06-27 16:53:43 -04003370 if (nd.last_type != LAST_NORM)
3371 goto out;
3372 nd.flags &= ~LOOKUP_PARENT;
3373 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003374
Jan Karac30dabf2012-06-12 16:20:30 +02003375 /* don't fail immediately if it's r/o, at least try to report other errors */
3376 err2 = mnt_want_write(nd.path.mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003377 /*
3378 * Do the final lookup.
3379 */
Al Viroed75e952011-06-27 16:53:43 -04003380 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3381 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003383 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003384
Al Viroa8104a92012-07-20 02:25:00 +04003385 error = -EEXIST;
David Howellsb18825a2013-09-12 19:22:53 +01003386 if (d_is_positive(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003387 goto fail;
David Howellsb18825a2013-09-12 19:22:53 +01003388
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003389 /*
3390 * Special case - lookup gave negative, but... we had foo/bar/
3391 * From the vfs_mknod() POV we just have a negative dentry -
3392 * all is fine. Let's be bastards - you had / on the end, you've
3393 * been asking for (non-existent) directory. -ENOENT for you.
3394 */
Al Viroed75e952011-06-27 16:53:43 -04003395 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003396 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003397 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003398 }
Jan Karac30dabf2012-06-12 16:20:30 +02003399 if (unlikely(err2)) {
3400 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003401 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003402 }
Al Viroed75e952011-06-27 16:53:43 -04003403 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405fail:
Al Viroa8104a92012-07-20 02:25:00 +04003406 dput(dentry);
3407 dentry = ERR_PTR(error);
3408unlock:
Al Viroed75e952011-06-27 16:53:43 -04003409 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Karac30dabf2012-06-12 16:20:30 +02003410 if (!err2)
3411 mnt_drop_write(nd.path.mnt);
Al Viroed75e952011-06-27 16:53:43 -04003412out:
3413 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 return dentry;
3415}
Al Virofa14a0b2015-01-22 02:16:49 -05003416
3417struct dentry *kern_path_create(int dfd, const char *pathname,
3418 struct path *path, unsigned int lookup_flags)
3419{
Paul Moore51689102015-01-22 00:00:03 -05003420 struct filename *filename = getname_kernel(pathname);
3421 struct dentry *res;
3422
3423 if (IS_ERR(filename))
3424 return ERR_CAST(filename);
3425 res = filename_create(dfd, filename, path, lookup_flags);
3426 putname(filename);
3427 return res;
Al Virofa14a0b2015-01-22 02:16:49 -05003428}
Al Virodae6ad82011-06-26 11:50:15 -04003429EXPORT_SYMBOL(kern_path_create);
3430
Al Viro921a1652012-07-20 01:15:31 +04003431void done_path_create(struct path *path, struct dentry *dentry)
3432{
3433 dput(dentry);
3434 mutex_unlock(&path->dentry->d_inode->i_mutex);
Al Viroa8104a92012-07-20 02:25:00 +04003435 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003436 path_put(path);
3437}
3438EXPORT_SYMBOL(done_path_create);
3439
Jeff Layton1ac12b42012-12-11 12:10:06 -05003440struct dentry *user_path_create(int dfd, const char __user *pathname,
3441 struct path *path, unsigned int lookup_flags)
Al Virodae6ad82011-06-26 11:50:15 -04003442{
Jeff Layton91a27b22012-10-10 15:25:28 -04003443 struct filename *tmp = getname(pathname);
Al Virodae6ad82011-06-26 11:50:15 -04003444 struct dentry *res;
3445 if (IS_ERR(tmp))
3446 return ERR_CAST(tmp);
Al Virofa14a0b2015-01-22 02:16:49 -05003447 res = filename_create(dfd, tmp, path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003448 putname(tmp);
3449 return res;
3450}
3451EXPORT_SYMBOL(user_path_create);
3452
Al Viro1a67aaf2011-07-26 01:52:52 -04003453int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003455 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
3457 if (error)
3458 return error;
3459
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003460 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 return -EPERM;
3462
Al Viroacfa4382008-12-04 10:06:33 -05003463 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 return -EPERM;
3465
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003466 error = devcgroup_inode_mknod(mode, dev);
3467 if (error)
3468 return error;
3469
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 error = security_inode_mknod(dir, dentry, mode, dev);
3471 if (error)
3472 return error;
3473
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003475 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003476 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 return error;
3478}
Al Viro4d359502014-03-14 12:20:17 -04003479EXPORT_SYMBOL(vfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480
Al Virof69aac02011-07-26 04:31:40 -04003481static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003482{
3483 switch (mode & S_IFMT) {
3484 case S_IFREG:
3485 case S_IFCHR:
3486 case S_IFBLK:
3487 case S_IFIFO:
3488 case S_IFSOCK:
3489 case 0: /* zero mode translates to S_IFREG */
3490 return 0;
3491 case S_IFDIR:
3492 return -EPERM;
3493 default:
3494 return -EINVAL;
3495 }
3496}
3497
Al Viro8208a222011-07-25 17:32:17 -04003498SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003499 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500{
Al Viro2ad94ae2008-07-21 09:32:51 -04003501 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003502 struct path path;
3503 int error;
Jeff Layton972567f2012-12-20 16:00:10 -05003504 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505
Al Viro8e4bfca2012-07-20 01:17:26 +04003506 error = may_mknod(mode);
3507 if (error)
3508 return error;
Jeff Layton972567f2012-12-20 16:00:10 -05003509retry:
3510 dentry = user_path_create(dfd, filename, &path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003511 if (IS_ERR(dentry))
3512 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003513
Al Virodae6ad82011-06-26 11:50:15 -04003514 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003515 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003516 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003517 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003518 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003519 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04003521 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 break;
3523 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04003524 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 new_decode_dev(dev));
3526 break;
3527 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003528 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003530 }
Al Viroa8104a92012-07-20 02:25:00 +04003531out:
Al Viro921a1652012-07-20 01:15:31 +04003532 done_path_create(&path, dentry);
Jeff Layton972567f2012-12-20 16:00:10 -05003533 if (retry_estale(error, lookup_flags)) {
3534 lookup_flags |= LOOKUP_REVAL;
3535 goto retry;
3536 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 return error;
3538}
3539
Al Viro8208a222011-07-25 17:32:17 -04003540SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003541{
3542 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3543}
3544
Al Viro18bb1db2011-07-26 01:41:39 -04003545int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003546{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003547 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003548 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549
3550 if (error)
3551 return error;
3552
Al Viroacfa4382008-12-04 10:06:33 -05003553 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 return -EPERM;
3555
3556 mode &= (S_IRWXUGO|S_ISVTX);
3557 error = security_inode_mkdir(dir, dentry, mode);
3558 if (error)
3559 return error;
3560
Al Viro8de52772012-02-06 12:45:27 -05003561 if (max_links && dir->i_nlink >= max_links)
3562 return -EMLINK;
3563
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003565 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003566 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 return error;
3568}
Al Viro4d359502014-03-14 12:20:17 -04003569EXPORT_SYMBOL(vfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570
Al Viroa218d0f2011-11-21 14:59:34 -05003571SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572{
Dave Hansen6902d922006-09-30 23:29:01 -07003573 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003574 struct path path;
3575 int error;
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003576 unsigned int lookup_flags = LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003578retry:
3579 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003580 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003581 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003582
Al Virodae6ad82011-06-26 11:50:15 -04003583 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003584 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003585 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003586 if (!error)
3587 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003588 done_path_create(&path, dentry);
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003589 if (retry_estale(error, lookup_flags)) {
3590 lookup_flags |= LOOKUP_REVAL;
3591 goto retry;
3592 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 return error;
3594}
3595
Al Viroa218d0f2011-11-21 14:59:34 -05003596SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003597{
3598 return sys_mkdirat(AT_FDCWD, pathname, mode);
3599}
3600
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601/*
Sage Weila71905f2011-05-24 13:06:08 -07003602 * The dentry_unhash() helper will try to drop the dentry early: we
J. Bruce Fieldsc0d02592012-02-15 11:48:40 -05003603 * should have a usage count of 1 if we're the only user of this
Sage Weila71905f2011-05-24 13:06:08 -07003604 * dentry, and if that is true (possibly after pruning the dcache),
3605 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 *
3607 * A low-level filesystem can, if it choses, legally
3608 * do a
3609 *
3610 * if (!d_unhashed(dentry))
3611 * return -EBUSY;
3612 *
3613 * if it cannot handle the case of removing a directory
3614 * that is still in use by something else..
3615 */
3616void dentry_unhash(struct dentry *dentry)
3617{
Vasily Averindc168422006-12-06 20:37:07 -08003618 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 spin_lock(&dentry->d_lock);
Waiman Long98474232013-08-28 18:24:59 -07003620 if (dentry->d_lockref.count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621 __d_drop(dentry);
3622 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623}
Al Viro4d359502014-03-14 12:20:17 -04003624EXPORT_SYMBOL(dentry_unhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625
3626int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3627{
3628 int error = may_delete(dir, dentry, 1);
3629
3630 if (error)
3631 return error;
3632
Al Viroacfa4382008-12-04 10:06:33 -05003633 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 return -EPERM;
3635
Al Viro1d2ef592011-09-14 18:55:41 +01003636 dget(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003637 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638
Sage Weil912dbc12011-05-24 13:06:11 -07003639 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07003640 if (is_local_mountpoint(dentry))
Sage Weil912dbc12011-05-24 13:06:11 -07003641 goto out;
3642
3643 error = security_inode_rmdir(dir, dentry);
3644 if (error)
3645 goto out;
3646
Sage Weil3cebde22011-05-29 21:20:59 -07003647 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003648 error = dir->i_op->rmdir(dir, dentry);
3649 if (error)
3650 goto out;
3651
3652 dentry->d_inode->i_flags |= S_DEAD;
3653 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003654 detach_mounts(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003655
3656out:
3657 mutex_unlock(&dentry->d_inode->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01003658 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003659 if (!error)
3660 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 return error;
3662}
Al Viro4d359502014-03-14 12:20:17 -04003663EXPORT_SYMBOL(vfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003665static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666{
3667 int error = 0;
Jeff Layton91a27b22012-10-10 15:25:28 -04003668 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 struct dentry *dentry;
3670 struct nameidata nd;
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003671 unsigned int lookup_flags = 0;
3672retry:
3673 name = user_path_parent(dfd, pathname, &nd, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003674 if (IS_ERR(name))
3675 return PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676
3677 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003678 case LAST_DOTDOT:
3679 error = -ENOTEMPTY;
3680 goto exit1;
3681 case LAST_DOT:
3682 error = -EINVAL;
3683 goto exit1;
3684 case LAST_ROOT:
3685 error = -EBUSY;
3686 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003688
3689 nd.flags &= ~LOOKUP_PARENT;
Jan Karac30dabf2012-06-12 16:20:30 +02003690 error = mnt_want_write(nd.path.mnt);
3691 if (error)
3692 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003693
Jan Blunck4ac91372008-02-14 19:34:32 -08003694 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08003695 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003697 if (IS_ERR(dentry))
3698 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003699 if (!dentry->d_inode) {
3700 error = -ENOENT;
3701 goto exit3;
3702 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003703 error = security_path_rmdir(&nd.path, dentry);
3704 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003705 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08003706 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08003707exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003708 dput(dentry);
3709exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08003710 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Karac30dabf2012-06-12 16:20:30 +02003711 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003713 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 putname(name);
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003715 if (retry_estale(error, lookup_flags)) {
3716 lookup_flags |= LOOKUP_REVAL;
3717 goto retry;
3718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 return error;
3720}
3721
Heiko Carstens3cdad422009-01-14 14:14:22 +01003722SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003723{
3724 return do_rmdir(AT_FDCWD, pathname);
3725}
3726
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003727/**
3728 * vfs_unlink - unlink a filesystem object
3729 * @dir: parent directory
3730 * @dentry: victim
3731 * @delegated_inode: returns victim inode, if the inode is delegated.
3732 *
3733 * The caller must hold dir->i_mutex.
3734 *
3735 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3736 * return a reference to the inode in delegated_inode. The caller
3737 * should then break the delegation on that inode and retry. Because
3738 * breaking a delegation may take a long time, the caller should drop
3739 * dir->i_mutex before doing so.
3740 *
3741 * Alternatively, a caller may pass NULL for delegated_inode. This may
3742 * be appropriate for callers that expect the underlying filesystem not
3743 * to be NFS exported.
3744 */
3745int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746{
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003747 struct inode *target = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 int error = may_delete(dir, dentry, 0);
3749
3750 if (error)
3751 return error;
3752
Al Viroacfa4382008-12-04 10:06:33 -05003753 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 return -EPERM;
3755
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003756 mutex_lock(&target->i_mutex);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003757 if (is_local_mountpoint(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 error = -EBUSY;
3759 else {
3760 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003761 if (!error) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003762 error = try_break_deleg(target, delegated_inode);
3763 if (error)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003764 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 error = dir->i_op->unlink(dir, dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003766 if (!error) {
Al Virod83c49f2010-04-30 17:17:09 -04003767 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003768 detach_mounts(dentry);
3769 }
Al Virobec10522010-03-03 14:12:08 -05003770 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 }
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003772out:
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003773 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774
3775 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3776 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003777 fsnotify_link_count(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779 }
Robert Love0eeca282005-07-12 17:06:03 -04003780
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 return error;
3782}
Al Viro4d359502014-03-14 12:20:17 -04003783EXPORT_SYMBOL(vfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
3785/*
3786 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003787 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 * writeout happening, and we don't want to prevent access to the directory
3789 * while waiting on the I/O.
3790 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003791static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792{
Al Viro2ad94ae2008-07-21 09:32:51 -04003793 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04003794 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 struct dentry *dentry;
3796 struct nameidata nd;
3797 struct inode *inode = NULL;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003798 struct inode *delegated_inode = NULL;
Jeff Layton5d18f812012-12-20 16:38:04 -05003799 unsigned int lookup_flags = 0;
3800retry:
3801 name = user_path_parent(dfd, pathname, &nd, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003802 if (IS_ERR(name))
3803 return PTR_ERR(name);
Al Viro2ad94ae2008-07-21 09:32:51 -04003804
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 error = -EISDIR;
3806 if (nd.last_type != LAST_NORM)
3807 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003808
3809 nd.flags &= ~LOOKUP_PARENT;
Jan Karac30dabf2012-06-12 16:20:30 +02003810 error = mnt_want_write(nd.path.mnt);
3811 if (error)
3812 goto exit1;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003813retry_deleg:
Jan Blunck4ac91372008-02-14 19:34:32 -08003814 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08003815 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 error = PTR_ERR(dentry);
3817 if (!IS_ERR(dentry)) {
3818 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03003819 if (nd.last.name[nd.last.len])
3820 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 inode = dentry->d_inode;
David Howellsb18825a2013-09-12 19:22:53 +01003822 if (d_is_negative(dentry))
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003823 goto slashes;
3824 ihold(inode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003825 error = security_path_unlink(&nd.path, dentry);
3826 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003827 goto exit2;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003828 error = vfs_unlink(nd.path.dentry->d_inode, dentry, &delegated_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02003829exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 dput(dentry);
3831 }
Jan Blunck4ac91372008-02-14 19:34:32 -08003832 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 if (inode)
3834 iput(inode); /* truncate the inode here */
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003835 inode = NULL;
3836 if (delegated_inode) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003837 error = break_deleg_wait(&delegated_inode);
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003838 if (!error)
3839 goto retry_deleg;
3840 }
Jan Karac30dabf2012-06-12 16:20:30 +02003841 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003842exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003843 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 putname(name);
Jeff Layton5d18f812012-12-20 16:38:04 -05003845 if (retry_estale(error, lookup_flags)) {
3846 lookup_flags |= LOOKUP_REVAL;
3847 inode = NULL;
3848 goto retry;
3849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 return error;
3851
3852slashes:
David Howellsb18825a2013-09-12 19:22:53 +01003853 if (d_is_negative(dentry))
3854 error = -ENOENT;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003855 else if (d_is_dir(dentry))
David Howellsb18825a2013-09-12 19:22:53 +01003856 error = -EISDIR;
3857 else
3858 error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 goto exit2;
3860}
3861
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003862SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003863{
3864 if ((flag & ~AT_REMOVEDIR) != 0)
3865 return -EINVAL;
3866
3867 if (flag & AT_REMOVEDIR)
3868 return do_rmdir(dfd, pathname);
3869
3870 return do_unlinkat(dfd, pathname);
3871}
3872
Heiko Carstens3480b252009-01-14 14:14:16 +01003873SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003874{
3875 return do_unlinkat(AT_FDCWD, pathname);
3876}
3877
Miklos Szeredidb2e7472008-06-24 16:50:16 +02003878int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003880 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881
3882 if (error)
3883 return error;
3884
Al Viroacfa4382008-12-04 10:06:33 -05003885 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 return -EPERM;
3887
3888 error = security_inode_symlink(dir, dentry, oldname);
3889 if (error)
3890 return error;
3891
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003893 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003894 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 return error;
3896}
Al Viro4d359502014-03-14 12:20:17 -04003897EXPORT_SYMBOL(vfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003899SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3900 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901{
Al Viro2ad94ae2008-07-21 09:32:51 -04003902 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04003903 struct filename *from;
Dave Hansen6902d922006-09-30 23:29:01 -07003904 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003905 struct path path;
Jeff Laytonf46d3562012-12-11 12:10:08 -05003906 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
3908 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04003909 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 return PTR_ERR(from);
Jeff Laytonf46d3562012-12-11 12:10:08 -05003911retry:
3912 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003913 error = PTR_ERR(dentry);
3914 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003915 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07003916
Jeff Layton91a27b22012-10-10 15:25:28 -04003917 error = security_path_symlink(&path, dentry, from->name);
Al Viroa8104a92012-07-20 02:25:00 +04003918 if (!error)
Jeff Layton91a27b22012-10-10 15:25:28 -04003919 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
Al Viro921a1652012-07-20 01:15:31 +04003920 done_path_create(&path, dentry);
Jeff Laytonf46d3562012-12-11 12:10:08 -05003921 if (retry_estale(error, lookup_flags)) {
3922 lookup_flags |= LOOKUP_REVAL;
3923 goto retry;
3924 }
Dave Hansen6902d922006-09-30 23:29:01 -07003925out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926 putname(from);
3927 return error;
3928}
3929
Heiko Carstens3480b252009-01-14 14:14:16 +01003930SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003931{
3932 return sys_symlinkat(oldname, AT_FDCWD, newname);
3933}
3934
J. Bruce Fields146a8592011-09-20 17:14:31 -04003935/**
3936 * vfs_link - create a new link
3937 * @old_dentry: object to be linked
3938 * @dir: new parent
3939 * @new_dentry: where to create the new link
3940 * @delegated_inode: returns inode needing a delegation break
3941 *
3942 * The caller must hold dir->i_mutex
3943 *
3944 * If vfs_link discovers a delegation on the to-be-linked file in need
3945 * of breaking, it will return -EWOULDBLOCK and return a reference to the
3946 * inode in delegated_inode. The caller should then break the delegation
3947 * and retry. Because breaking a delegation may take a long time, the
3948 * caller should drop the i_mutex before doing so.
3949 *
3950 * Alternatively, a caller may pass NULL for delegated_inode. This may
3951 * be appropriate for callers that expect the underlying filesystem not
3952 * to be NFS exported.
3953 */
3954int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955{
3956 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05003957 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 int error;
3959
3960 if (!inode)
3961 return -ENOENT;
3962
Miklos Szeredia95164d2008-07-30 15:08:48 +02003963 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964 if (error)
3965 return error;
3966
3967 if (dir->i_sb != inode->i_sb)
3968 return -EXDEV;
3969
3970 /*
3971 * A link to an append-only or immutable file cannot be created.
3972 */
3973 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3974 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05003975 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003977 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 return -EPERM;
3979
3980 error = security_inode_link(old_dentry, dir, new_dentry);
3981 if (error)
3982 return error;
3983
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003984 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303985 /* Make sure we don't allow creating hardlink to an unlinked file */
Al Virof4e0c302013-06-11 08:34:36 +04003986 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303987 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05003988 else if (max_links && inode->i_nlink >= max_links)
3989 error = -EMLINK;
J. Bruce Fields146a8592011-09-20 17:14:31 -04003990 else {
3991 error = try_break_deleg(inode, delegated_inode);
3992 if (!error)
3993 error = dir->i_op->link(old_dentry, dir, new_dentry);
3994 }
Al Virof4e0c302013-06-11 08:34:36 +04003995
3996 if (!error && (inode->i_state & I_LINKABLE)) {
3997 spin_lock(&inode->i_lock);
3998 inode->i_state &= ~I_LINKABLE;
3999 spin_unlock(&inode->i_lock);
4000 }
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004001 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07004002 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004003 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 return error;
4005}
Al Viro4d359502014-03-14 12:20:17 -04004006EXPORT_SYMBOL(vfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007
4008/*
4009 * Hardlinks are often used in delicate situations. We avoid
4010 * security-related surprises by not following symlinks on the
4011 * newname. --KAB
4012 *
4013 * We don't follow them on the oldname either to be compatible
4014 * with linux 2.0, and to avoid hard-linking to directories
4015 * and other special files. --ADM
4016 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004017SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4018 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004019{
4020 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004021 struct path old_path, new_path;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004022 struct inode *delegated_inode = NULL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304023 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304026 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004027 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304028 /*
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004029 * To use null names we require CAP_DAC_READ_SEARCH
4030 * This ensures that not everyone will be able to create
4031 * handlink using the passed filedescriptor.
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304032 */
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004033 if (flags & AT_EMPTY_PATH) {
4034 if (!capable(CAP_DAC_READ_SEARCH))
4035 return -ENOENT;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304036 how = LOOKUP_EMPTY;
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004037 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004038
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304039 if (flags & AT_SYMLINK_FOLLOW)
4040 how |= LOOKUP_FOLLOW;
Jeff Layton442e31c2012-12-20 16:15:38 -05004041retry:
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304042 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04004044 return error;
4045
Jeff Layton442e31c2012-12-20 16:15:38 -05004046 new_dentry = user_path_create(newdfd, newname, &new_path,
4047 (how & LOOKUP_REVAL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07004049 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004050 goto out;
4051
4052 error = -EXDEV;
4053 if (old_path.mnt != new_path.mnt)
4054 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07004055 error = may_linkat(&old_path);
4056 if (unlikely(error))
4057 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04004058 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004059 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04004060 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004061 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
Dave Hansen75c3f292008-02-15 14:37:45 -08004062out_dput:
Al Viro921a1652012-07-20 01:15:31 +04004063 done_path_create(&new_path, new_dentry);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004064 if (delegated_inode) {
4065 error = break_deleg_wait(&delegated_inode);
Oleg Drokind22e6332014-01-31 15:41:58 -05004066 if (!error) {
4067 path_put(&old_path);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004068 goto retry;
Oleg Drokind22e6332014-01-31 15:41:58 -05004069 }
J. Bruce Fields146a8592011-09-20 17:14:31 -04004070 }
Jeff Layton442e31c2012-12-20 16:15:38 -05004071 if (retry_estale(error, how)) {
Oleg Drokind22e6332014-01-31 15:41:58 -05004072 path_put(&old_path);
Jeff Layton442e31c2012-12-20 16:15:38 -05004073 how |= LOOKUP_REVAL;
4074 goto retry;
4075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076out:
Al Viro2d8f3032008-07-22 09:59:21 -04004077 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
4079 return error;
4080}
4081
Heiko Carstens3480b252009-01-14 14:14:16 +01004082SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004083{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004084 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004085}
4086
Miklos Szeredibc270272014-04-01 17:08:42 +02004087/**
4088 * vfs_rename - rename a filesystem object
4089 * @old_dir: parent of source
4090 * @old_dentry: source
4091 * @new_dir: parent of destination
4092 * @new_dentry: destination
4093 * @delegated_inode: returns an inode needing a delegation break
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004094 * @flags: rename flags
Miklos Szeredibc270272014-04-01 17:08:42 +02004095 *
4096 * The caller must hold multiple mutexes--see lock_rename()).
4097 *
4098 * If vfs_rename discovers a delegation in need of breaking at either
4099 * the source or destination, it will return -EWOULDBLOCK and return a
4100 * reference to the inode in delegated_inode. The caller should then
4101 * break the delegation and retry. Because breaking a delegation may
4102 * take a long time, the caller should drop all locks before doing
4103 * so.
4104 *
4105 * Alternatively, a caller may pass NULL for delegated_inode. This may
4106 * be appropriate for callers that expect the underlying filesystem not
4107 * to be NFS exported.
4108 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 * The worst of all namespace operations - renaming directory. "Perverted"
4110 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4111 * Problems:
J. Bruce Fieldsd03b29a2014-02-17 16:52:33 -05004112 * a) we can get into loop creation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 * b) race potential - two innocent renames can create a loop together.
4114 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004115 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 * story.
J. Bruce Fields6cedba82012-03-05 11:40:41 -05004117 * c) we have to lock _four_ objects - parents and victim (if it exists),
4118 * and source (if it is not a directory).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004119 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 * whether the target exists). Solution: try to be smart with locking
4121 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004122 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 * move will be locked. Thus we can rank directories by the tree
4124 * (ancestors first) and rank all non-directories after them.
4125 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004126 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 * HOWEVER, it relies on the assumption that any object with ->lookup()
4128 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4129 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07004130 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004131 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05004133 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134 * locking].
4135 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004137 struct inode *new_dir, struct dentry *new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004138 struct inode **delegated_inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139{
4140 int error;
Miklos Szeredibc270272014-04-01 17:08:42 +02004141 bool is_dir = d_is_dir(old_dentry);
Eric Paris59b0df22010-02-08 12:53:52 -05004142 const unsigned char *old_name;
Miklos Szeredibc270272014-04-01 17:08:42 +02004143 struct inode *source = old_dentry->d_inode;
4144 struct inode *target = new_dentry->d_inode;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004145 bool new_is_dir = false;
4146 unsigned max_links = new_dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147
Miklos Szeredibc270272014-04-01 17:08:42 +02004148 if (source == target)
4149 return 0;
4150
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151 error = may_delete(old_dir, old_dentry, is_dir);
4152 if (error)
4153 return error;
4154
Miklos Szeredida1ce062014-04-01 17:08:43 +02004155 if (!target) {
Miklos Szeredia95164d2008-07-30 15:08:48 +02004156 error = may_create(new_dir, new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004157 } else {
4158 new_is_dir = d_is_dir(new_dentry);
4159
4160 if (!(flags & RENAME_EXCHANGE))
4161 error = may_delete(new_dir, new_dentry, is_dir);
4162 else
4163 error = may_delete(new_dir, new_dentry, new_is_dir);
4164 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 if (error)
4166 return error;
4167
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004168 if (!old_dir->i_op->rename && !old_dir->i_op->rename2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 return -EPERM;
4170
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004171 if (flags && !old_dir->i_op->rename2)
4172 return -EINVAL;
4173
Miklos Szeredibc270272014-04-01 17:08:42 +02004174 /*
4175 * If we are going to change the parent - check write permissions,
4176 * we'll need to flip '..'.
4177 */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004178 if (new_dir != old_dir) {
4179 if (is_dir) {
4180 error = inode_permission(source, MAY_WRITE);
4181 if (error)
4182 return error;
4183 }
4184 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4185 error = inode_permission(target, MAY_WRITE);
4186 if (error)
4187 return error;
4188 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004189 }
Robert Love0eeca282005-07-12 17:06:03 -04004190
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004191 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4192 flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004193 if (error)
4194 return error;
4195
4196 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
4197 dget(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004198 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004199 lock_two_nondirectories(source, target);
4200 else if (target)
4201 mutex_lock(&target->i_mutex);
4202
4203 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07004204 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004205 goto out;
4206
Miklos Szeredida1ce062014-04-01 17:08:43 +02004207 if (max_links && new_dir != old_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004208 error = -EMLINK;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004209 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
Miklos Szeredibc270272014-04-01 17:08:42 +02004210 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004211 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4212 old_dir->i_nlink >= max_links)
4213 goto out;
4214 }
4215 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4216 shrink_dcache_parent(new_dentry);
4217 if (!is_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004218 error = try_break_deleg(source, delegated_inode);
4219 if (error)
4220 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004221 }
4222 if (target && !new_is_dir) {
4223 error = try_break_deleg(target, delegated_inode);
4224 if (error)
4225 goto out;
Miklos Szeredibc270272014-04-01 17:08:42 +02004226 }
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004227 if (!old_dir->i_op->rename2) {
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004228 error = old_dir->i_op->rename(old_dir, old_dentry,
4229 new_dir, new_dentry);
4230 } else {
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004231 WARN_ON(old_dir->i_op->rename != NULL);
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004232 error = old_dir->i_op->rename2(old_dir, old_dentry,
4233 new_dir, new_dentry, flags);
4234 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004235 if (error)
4236 goto out;
4237
Miklos Szeredida1ce062014-04-01 17:08:43 +02004238 if (!(flags & RENAME_EXCHANGE) && target) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004239 if (is_dir)
4240 target->i_flags |= S_DEAD;
4241 dont_mount(new_dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004242 detach_mounts(new_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004243 }
Miklos Szeredida1ce062014-04-01 17:08:43 +02004244 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4245 if (!(flags & RENAME_EXCHANGE))
4246 d_move(old_dentry, new_dentry);
4247 else
4248 d_exchange(old_dentry, new_dentry);
4249 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004250out:
Miklos Szeredida1ce062014-04-01 17:08:43 +02004251 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004252 unlock_two_nondirectories(source, target);
4253 else if (target)
4254 mutex_unlock(&target->i_mutex);
4255 dput(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004256 if (!error) {
Al Viro123df292009-12-25 04:57:57 -05004257 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Miklos Szeredida1ce062014-04-01 17:08:43 +02004258 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4259 if (flags & RENAME_EXCHANGE) {
4260 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4261 new_is_dir, NULL, new_dentry);
4262 }
4263 }
Robert Love0eeca282005-07-12 17:06:03 -04004264 fsnotify_oldname_free(old_name);
4265
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266 return error;
4267}
Al Viro4d359502014-03-14 12:20:17 -04004268EXPORT_SYMBOL(vfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004270SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4271 int, newdfd, const char __user *, newname, unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272{
Al Viro2ad94ae2008-07-21 09:32:51 -04004273 struct dentry *old_dir, *new_dir;
4274 struct dentry *old_dentry, *new_dentry;
4275 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 struct nameidata oldnd, newnd;
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004277 struct inode *delegated_inode = NULL;
Jeff Layton91a27b22012-10-10 15:25:28 -04004278 struct filename *from;
4279 struct filename *to;
Jeff Laytonc6a94282012-12-11 12:10:10 -05004280 unsigned int lookup_flags = 0;
4281 bool should_retry = false;
Al Viro2ad94ae2008-07-21 09:32:51 -04004282 int error;
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004283
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004284 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredida1ce062014-04-01 17:08:43 +02004285 return -EINVAL;
4286
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004287 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4288 (flags & RENAME_EXCHANGE))
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004289 return -EINVAL;
4290
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004291 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4292 return -EPERM;
4293
Jeff Laytonc6a94282012-12-11 12:10:10 -05004294retry:
4295 from = user_path_parent(olddfd, oldname, &oldnd, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004296 if (IS_ERR(from)) {
4297 error = PTR_ERR(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 goto exit;
Jeff Layton91a27b22012-10-10 15:25:28 -04004299 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300
Jeff Laytonc6a94282012-12-11 12:10:10 -05004301 to = user_path_parent(newdfd, newname, &newnd, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004302 if (IS_ERR(to)) {
4303 error = PTR_ERR(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 goto exit1;
Jeff Layton91a27b22012-10-10 15:25:28 -04004305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306
4307 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08004308 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 goto exit2;
4310
Jan Blunck4ac91372008-02-14 19:34:32 -08004311 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 error = -EBUSY;
4313 if (oldnd.last_type != LAST_NORM)
4314 goto exit2;
4315
Jan Blunck4ac91372008-02-14 19:34:32 -08004316 new_dir = newnd.path.dentry;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004317 if (flags & RENAME_NOREPLACE)
4318 error = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 if (newnd.last_type != LAST_NORM)
4320 goto exit2;
4321
Jan Karac30dabf2012-06-12 16:20:30 +02004322 error = mnt_want_write(oldnd.path.mnt);
4323 if (error)
4324 goto exit2;
4325
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09004326 oldnd.flags &= ~LOOKUP_PARENT;
4327 newnd.flags &= ~LOOKUP_PARENT;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004328 if (!(flags & RENAME_EXCHANGE))
4329 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09004330
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004331retry_deleg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 trap = lock_rename(new_dir, old_dir);
4333
Christoph Hellwig49705b72005-11-08 21:35:06 -08004334 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 error = PTR_ERR(old_dentry);
4336 if (IS_ERR(old_dentry))
4337 goto exit3;
4338 /* source must exist */
4339 error = -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01004340 if (d_is_negative(old_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08004342 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 error = PTR_ERR(new_dentry);
4344 if (IS_ERR(new_dentry))
4345 goto exit4;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004346 error = -EEXIST;
4347 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4348 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004349 if (flags & RENAME_EXCHANGE) {
4350 error = -ENOENT;
4351 if (d_is_negative(new_dentry))
4352 goto exit5;
4353
4354 if (!d_is_dir(new_dentry)) {
4355 error = -ENOTDIR;
4356 if (newnd.last.name[newnd.last.len])
4357 goto exit5;
4358 }
4359 }
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004360 /* unless the source is a directory trailing slashes give -ENOTDIR */
4361 if (!d_is_dir(old_dentry)) {
4362 error = -ENOTDIR;
4363 if (oldnd.last.name[oldnd.last.len])
4364 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004365 if (!(flags & RENAME_EXCHANGE) && newnd.last.name[newnd.last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004366 goto exit5;
4367 }
4368 /* source should not be ancestor of target */
4369 error = -EINVAL;
4370 if (old_dentry == trap)
4371 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 /* target should not be an ancestor of source */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004373 if (!(flags & RENAME_EXCHANGE))
4374 error = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 if (new_dentry == trap)
4376 goto exit5;
4377
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004378 error = security_path_rename(&oldnd.path, old_dentry,
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004379 &newnd.path, new_dentry, flags);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004380 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004381 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 error = vfs_rename(old_dir->d_inode, old_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004383 new_dir->d_inode, new_dentry,
4384 &delegated_inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385exit5:
4386 dput(new_dentry);
4387exit4:
4388 dput(old_dentry);
4389exit3:
4390 unlock_rename(new_dir, old_dir);
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004391 if (delegated_inode) {
4392 error = break_deleg_wait(&delegated_inode);
4393 if (!error)
4394 goto retry_deleg;
4395 }
Jan Karac30dabf2012-06-12 16:20:30 +02004396 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397exit2:
Jeff Laytonc6a94282012-12-11 12:10:10 -05004398 if (retry_estale(error, lookup_flags))
4399 should_retry = true;
Jan Blunck1d957f92008-02-14 19:34:35 -08004400 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04004401 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08004403 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004404 putname(from);
Jeff Laytonc6a94282012-12-11 12:10:10 -05004405 if (should_retry) {
4406 should_retry = false;
4407 lookup_flags |= LOOKUP_REVAL;
4408 goto retry;
4409 }
Al Viro2ad94ae2008-07-21 09:32:51 -04004410exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411 return error;
4412}
4413
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004414SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4415 int, newdfd, const char __user *, newname)
4416{
4417 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4418}
4419
Heiko Carstensa26eab22009-01-14 14:14:17 +01004420SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004421{
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004422 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004423}
4424
Miklos Szeredi787fb6b2014-10-24 00:14:36 +02004425int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4426{
4427 int error = may_create(dir, dentry);
4428 if (error)
4429 return error;
4430
4431 if (!dir->i_op->mknod)
4432 return -EPERM;
4433
4434 return dir->i_op->mknod(dir, dentry,
4435 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4436}
4437EXPORT_SYMBOL(vfs_whiteout);
4438
Al Viro5d826c82014-03-14 13:42:45 -04004439int readlink_copy(char __user *buffer, int buflen, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440{
Al Viro5d826c82014-03-14 13:42:45 -04004441 int len = PTR_ERR(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 if (IS_ERR(link))
4443 goto out;
4444
4445 len = strlen(link);
4446 if (len > (unsigned) buflen)
4447 len = buflen;
4448 if (copy_to_user(buffer, link, len))
4449 len = -EFAULT;
4450out:
4451 return len;
4452}
Al Viro5d826c82014-03-14 13:42:45 -04004453EXPORT_SYMBOL(readlink_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454
4455/*
4456 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
4457 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
4458 * using) it for any given inode is up to filesystem.
4459 */
4460int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4461{
4462 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004463 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07004464 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004465
Linus Torvalds1da177e2005-04-16 15:20:36 -07004466 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004467 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07004468 if (IS_ERR(cookie))
4469 return PTR_ERR(cookie);
4470
Al Viro5d826c82014-03-14 13:42:45 -04004471 res = readlink_copy(buffer, buflen, nd_get_link(&nd));
Marcin Slusarz694a1762008-06-09 16:40:37 -07004472 if (dentry->d_inode->i_op->put_link)
4473 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
4474 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475}
Al Viro4d359502014-03-14 12:20:17 -04004476EXPORT_SYMBOL(generic_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477
Linus Torvalds1da177e2005-04-16 15:20:36 -07004478/* get the link contents into pagecache */
4479static char *page_getlink(struct dentry * dentry, struct page **ppage)
4480{
Duane Griffinebd09ab2008-12-19 20:47:12 +00004481 char *kaddr;
4482 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004483 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07004484 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07004486 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00004488 kaddr = kmap(page);
4489 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
4490 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491}
4492
4493int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4494{
4495 struct page *page = NULL;
Al Viro5d826c82014-03-14 13:42:45 -04004496 int res = readlink_copy(buffer, buflen, page_getlink(dentry, &page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004497 if (page) {
4498 kunmap(page);
4499 page_cache_release(page);
4500 }
4501 return res;
4502}
Al Viro4d359502014-03-14 12:20:17 -04004503EXPORT_SYMBOL(page_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004505void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004507 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004509 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510}
Al Viro4d359502014-03-14 12:20:17 -04004511EXPORT_SYMBOL(page_follow_link_light);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004513void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004515 struct page *page = cookie;
4516
4517 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518 kunmap(page);
4519 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520 }
4521}
Al Viro4d359502014-03-14 12:20:17 -04004522EXPORT_SYMBOL(page_put_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523
Nick Piggin54566b22009-01-04 12:00:53 -08004524/*
4525 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4526 */
4527int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528{
4529 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004530 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07004531 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08004532 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08004534 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4535 if (nofs)
4536 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537
NeilBrown7e53cac2006-03-25 03:07:57 -08004538retry:
Nick Pigginafddba42007-10-16 01:25:01 -07004539 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08004540 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07004542 goto fail;
4543
Cong Wange8e3c3d2011-11-25 23:14:27 +08004544 kaddr = kmap_atomic(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545 memcpy(kaddr, symname, len-1);
Cong Wange8e3c3d2011-11-25 23:14:27 +08004546 kunmap_atomic(kaddr);
Nick Pigginafddba42007-10-16 01:25:01 -07004547
4548 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4549 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004550 if (err < 0)
4551 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07004552 if (err < len-1)
4553 goto retry;
4554
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 mark_inode_dirty(inode);
4556 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557fail:
4558 return err;
4559}
Al Viro4d359502014-03-14 12:20:17 -04004560EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004561
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004562int page_symlink(struct inode *inode, const char *symname, int len)
4563{
4564 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08004565 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004566}
Al Viro4d359502014-03-14 12:20:17 -04004567EXPORT_SYMBOL(page_symlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004568
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004569const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004570 .readlink = generic_readlink,
4571 .follow_link = page_follow_link_light,
4572 .put_link = page_put_link,
4573};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574EXPORT_SYMBOL(page_symlink_inode_operations);