blob: d8f858484538d62d9ccbd9da18540a886276f2ad [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>
George Spelvin2a18da7a2016-05-23 07:43:58 -040038#include <linux/bitops.h>
Eric W. Biedermanaeaa4a72016-07-23 11:20:44 -050039#include <linux/init_task.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/uaccess.h>
41
Eric Parise81e3f42009-12-04 15:47:36 -050042#include "internal.h"
Al Viroc7105362011-11-24 18:22:03 -050043#include "mount.h"
Eric Parise81e3f42009-12-04 15:47:36 -050044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/* [Feb-1997 T. Schoebel-Theuer]
46 * Fundamental changes in the pathname lookup mechanisms (namei)
47 * were necessary because of omirr. The reason is that omirr needs
48 * to know the _real_ pathname, not the user-supplied one, in case
49 * of symlinks (and also when transname replacements occur).
50 *
51 * The new code replaces the old recursive symlink resolution with
52 * an iterative one (in case of non-nested symlink chains). It does
53 * this with calls to <fs>_follow_link().
54 * As a side effect, dir_namei(), _namei() and follow_link() are now
55 * replaced with a single function lookup_dentry() that can handle all
56 * the special cases of the former code.
57 *
58 * With the new dcache, the pathname is stored at each inode, at least as
59 * long as the refcount of the inode is positive. As a side effect, the
60 * size of the dcache depends on the inode cache and thus is dynamic.
61 *
62 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
63 * resolution to correspond with current state of the code.
64 *
65 * Note that the symlink resolution is not *completely* iterative.
66 * There is still a significant amount of tail- and mid- recursion in
67 * the algorithm. Also, note that <fs>_readlink() is not used in
68 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
69 * may return different results than <fs>_follow_link(). Many virtual
70 * filesystems (including /proc) exhibit this behavior.
71 */
72
73/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
74 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
75 * and the name already exists in form of a symlink, try to create the new
76 * name indicated by the symlink. The old code always complained that the
77 * name already exists, due to not following the symlink even if its target
78 * is nonexistent. The new semantics affects also mknod() and link() when
Lucas De Marchi25985ed2011-03-30 22:57:33 -030079 * the name is a symlink pointing to a non-existent name.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 *
81 * I don't know which semantics is the right one, since I have no access
82 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
83 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
84 * "old" one. Personally, I think the new semantics is much more logical.
85 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
86 * file does succeed in both HP-UX and SunOs, but not in Solaris
87 * and in the old Linux semantics.
88 */
89
90/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
91 * semantics. See the comments in "open_namei" and "do_link" below.
92 *
93 * [10-Sep-98 Alan Modra] Another symlink change.
94 */
95
96/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
97 * inside the path - always follow.
98 * in the last component in creation/removal/renaming - never follow.
99 * if LOOKUP_FOLLOW passed - follow.
100 * if the pathname has trailing slashes - follow.
101 * otherwise - don't follow.
102 * (applied in that order).
103 *
104 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
105 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
106 * During the 2.4 we need to fix the userland stuff depending on it -
107 * hopefully we will be able to get rid of that wart in 2.5. So far only
108 * XEmacs seems to be relying on it...
109 */
110/*
111 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800112 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 * any extra contention...
114 */
115
116/* In order to reduce some races, while at the same time doing additional
117 * checking and hopefully speeding things up, we copy filenames to the
118 * kernel data space before using them..
119 *
120 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
121 * PATH_MAX includes the nul terminator --RR.
122 */
Jeff Layton91a27b22012-10-10 15:25:28 -0400123
Al Virofd2f7cb2015-02-22 20:07:13 -0500124#define EMBEDDED_NAME_MAX (PATH_MAX - offsetof(struct filename, iname))
Jeff Layton7950e382012-10-10 16:43:13 -0400125
David Drysdale51f39a12014-12-12 16:57:29 -0800126struct filename *
Jeff Layton91a27b22012-10-10 15:25:28 -0400127getname_flags(const char __user *filename, int flags, int *empty)
128{
Al Viro94b5d262015-02-22 19:38:03 -0500129 struct filename *result;
Jeff Layton7950e382012-10-10 16:43:13 -0400130 char *kname;
Al Viro94b5d262015-02-22 19:38:03 -0500131 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Jeff Layton7ac86262012-10-10 15:25:28 -0400133 result = audit_reusename(filename);
134 if (result)
135 return result;
136
Jeff Layton7950e382012-10-10 16:43:13 -0400137 result = __getname();
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700138 if (unlikely(!result))
Eric Paris4043cde2012-01-03 14:23:08 -0500139 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Jeff Layton7950e382012-10-10 16:43:13 -0400141 /*
142 * First, try to embed the struct filename inside the names_cache
143 * allocation
144 */
Al Virofd2f7cb2015-02-22 20:07:13 -0500145 kname = (char *)result->iname;
Jeff Layton91a27b22012-10-10 15:25:28 -0400146 result->name = kname;
Jeff Layton7950e382012-10-10 16:43:13 -0400147
Al Viro94b5d262015-02-22 19:38:03 -0500148 len = strncpy_from_user(kname, filename, EMBEDDED_NAME_MAX);
Jeff Layton91a27b22012-10-10 15:25:28 -0400149 if (unlikely(len < 0)) {
Al Viro94b5d262015-02-22 19:38:03 -0500150 __putname(result);
151 return ERR_PTR(len);
Jeff Layton91a27b22012-10-10 15:25:28 -0400152 }
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700153
Jeff Layton7950e382012-10-10 16:43:13 -0400154 /*
155 * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
156 * separate struct filename so we can dedicate the entire
157 * names_cache allocation for the pathname, and re-do the copy from
158 * userland.
159 */
Al Viro94b5d262015-02-22 19:38:03 -0500160 if (unlikely(len == EMBEDDED_NAME_MAX)) {
Al Virofd2f7cb2015-02-22 20:07:13 -0500161 const size_t size = offsetof(struct filename, iname[1]);
Jeff Layton7950e382012-10-10 16:43:13 -0400162 kname = (char *)result;
163
Al Virofd2f7cb2015-02-22 20:07:13 -0500164 /*
165 * size is chosen that way we to guarantee that
166 * result->iname[0] is within the same object and that
167 * kname can't be equal to result->iname, no matter what.
168 */
169 result = kzalloc(size, GFP_KERNEL);
Al Viro94b5d262015-02-22 19:38:03 -0500170 if (unlikely(!result)) {
171 __putname(kname);
172 return ERR_PTR(-ENOMEM);
Jeff Layton7950e382012-10-10 16:43:13 -0400173 }
174 result->name = kname;
Al Viro94b5d262015-02-22 19:38:03 -0500175 len = strncpy_from_user(kname, filename, PATH_MAX);
176 if (unlikely(len < 0)) {
177 __putname(kname);
178 kfree(result);
179 return ERR_PTR(len);
180 }
181 if (unlikely(len == PATH_MAX)) {
182 __putname(kname);
183 kfree(result);
184 return ERR_PTR(-ENAMETOOLONG);
185 }
Jeff Layton7950e382012-10-10 16:43:13 -0400186 }
187
Al Viro94b5d262015-02-22 19:38:03 -0500188 result->refcnt = 1;
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700189 /* The empty path is special. */
190 if (unlikely(!len)) {
191 if (empty)
Eric Paris4043cde2012-01-03 14:23:08 -0500192 *empty = 1;
Al Viro94b5d262015-02-22 19:38:03 -0500193 if (!(flags & LOOKUP_EMPTY)) {
194 putname(result);
195 return ERR_PTR(-ENOENT);
196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 }
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700198
Jeff Layton7950e382012-10-10 16:43:13 -0400199 result->uptr = filename;
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800200 result->aname = NULL;
Jeff Layton7950e382012-10-10 16:43:13 -0400201 audit_getname(result);
202 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
Jeff Layton91a27b22012-10-10 15:25:28 -0400205struct filename *
206getname(const char __user * filename)
Al Virof52e0c12011-03-14 18:56:51 -0400207{
Linus Torvaldsf7493e52012-03-22 16:10:40 -0700208 return getname_flags(filename, 0, NULL);
Al Virof52e0c12011-03-14 18:56:51 -0400209}
210
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800211struct filename *
212getname_kernel(const char * filename)
213{
214 struct filename *result;
Paul Moore08518542015-01-21 23:59:56 -0500215 int len = strlen(filename) + 1;
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800216
217 result = __getname();
218 if (unlikely(!result))
219 return ERR_PTR(-ENOMEM);
220
Paul Moore08518542015-01-21 23:59:56 -0500221 if (len <= EMBEDDED_NAME_MAX) {
Al Virofd2f7cb2015-02-22 20:07:13 -0500222 result->name = (char *)result->iname;
Paul Moore08518542015-01-21 23:59:56 -0500223 } else if (len <= PATH_MAX) {
Al Viro960534a2018-04-08 11:57:10 -0400224 const size_t size = offsetof(struct filename, iname[1]);
Paul Moore08518542015-01-21 23:59:56 -0500225 struct filename *tmp;
226
Al Viro960534a2018-04-08 11:57:10 -0400227 tmp = kmalloc(size, GFP_KERNEL);
Paul Moore08518542015-01-21 23:59:56 -0500228 if (unlikely(!tmp)) {
229 __putname(result);
230 return ERR_PTR(-ENOMEM);
231 }
232 tmp->name = (char *)result;
Paul Moore08518542015-01-21 23:59:56 -0500233 result = tmp;
234 } else {
235 __putname(result);
236 return ERR_PTR(-ENAMETOOLONG);
237 }
238 memcpy((char *)result->name, filename, len);
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800239 result->uptr = NULL;
240 result->aname = NULL;
Paul Moore55422d02015-01-22 00:00:23 -0500241 result->refcnt = 1;
Paul Moorefd3522f2015-01-22 00:00:10 -0500242 audit_getname(result);
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800243
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800244 return result;
245}
246
Jeff Layton91a27b22012-10-10 15:25:28 -0400247void putname(struct filename *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
Paul Moore55422d02015-01-22 00:00:23 -0500249 BUG_ON(name->refcnt <= 0);
250
251 if (--name->refcnt > 0)
252 return;
253
Al Virofd2f7cb2015-02-22 20:07:13 -0500254 if (name->name != name->iname) {
Paul Moore55422d02015-01-22 00:00:23 -0500255 __putname(name->name);
256 kfree(name);
257 } else
258 __putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvaldse77819e2011-07-22 19:30:19 -0700261static int check_acl(struct inode *inode, int mask)
262{
Linus Torvalds84635d62011-07-25 22:47:03 -0700263#ifdef CONFIG_FS_POSIX_ACL
Linus Torvaldse77819e2011-07-22 19:30:19 -0700264 struct posix_acl *acl;
265
Linus Torvaldse77819e2011-07-22 19:30:19 -0700266 if (mask & MAY_NOT_BLOCK) {
Al Viro35678662011-08-02 21:32:13 -0400267 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
268 if (!acl)
Linus Torvaldse77819e2011-07-22 19:30:19 -0700269 return -EAGAIN;
Al Viro35678662011-08-02 21:32:13 -0400270 /* no ->get_acl() calls in RCU mode... */
Andreas Gruenbacherb8a7a3a2016-03-24 14:38:37 +0100271 if (is_uncached_acl(acl))
Al Viro35678662011-08-02 21:32:13 -0400272 return -ECHILD;
Ari Savolainen206b1d02011-08-06 19:43:07 +0300273 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
Linus Torvaldse77819e2011-07-22 19:30:19 -0700274 }
275
Christoph Hellwig2982baa2013-12-20 05:16:38 -0800276 acl = get_acl(inode, ACL_TYPE_ACCESS);
277 if (IS_ERR(acl))
278 return PTR_ERR(acl);
Linus Torvaldse77819e2011-07-22 19:30:19 -0700279 if (acl) {
280 int error = posix_acl_permission(inode, acl, mask);
281 posix_acl_release(acl);
282 return error;
283 }
Linus Torvalds84635d62011-07-25 22:47:03 -0700284#endif
Linus Torvaldse77819e2011-07-22 19:30:19 -0700285
286 return -EAGAIN;
287}
288
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700289/*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530290 * This does the basic permission checking
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700291 */
Al Viro7e401452011-06-20 19:12:17 -0400292static int acl_permission_check(struct inode *inode, int mask)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700293{
Linus Torvalds26cf46b2011-05-13 11:51:01 -0700294 unsigned int mode = inode->i_mode;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700295
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -0800296 if (likely(uid_eq(current_fsuid(), inode->i_uid)))
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700297 mode >>= 6;
298 else {
Linus Torvaldse77819e2011-07-22 19:30:19 -0700299 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
Al Viro7e401452011-06-20 19:12:17 -0400300 int error = check_acl(inode, mask);
Nick Pigginb74c79e2011-01-07 17:49:58 +1100301 if (error != -EAGAIN)
302 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700303 }
304
305 if (in_group_p(inode->i_gid))
306 mode >>= 3;
307 }
308
309 /*
310 * If the DACs are ok we don't need any capability check.
311 */
Al Viro9c2c7032011-06-20 19:06:22 -0400312 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700313 return 0;
314 return -EACCES;
315}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316
317/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100318 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 * @inode: inode to check access rights for
Andreas Gruenbacher8fd90c82011-10-23 23:13:30 +0530320 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 *
322 * Used to check for read/write/execute permissions on a file.
323 * We use "fsuid" for this, letting us set arbitrary permissions
324 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100325 * are used for other things.
326 *
327 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
328 * request cannot be satisfied (eg. requires blocking or too much complexity).
329 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 */
Al Viro2830ba72011-06-20 19:16:29 -0400331int generic_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700333 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 /*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530336 * Do the basic permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 */
Al Viro7e401452011-06-20 19:12:17 -0400338 ret = acl_permission_check(inode, mask);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700339 if (ret != -EACCES)
340 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Al Virod594e7e2011-06-20 19:55:42 -0400342 if (S_ISDIR(inode->i_mode)) {
343 /* DACs are overridable for directories */
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700344 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
Al Virod594e7e2011-06-20 19:55:42 -0400345 return 0;
346 if (!(mask & MAY_WRITE))
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700347 if (capable_wrt_inode_uidgid(inode,
348 CAP_DAC_READ_SEARCH))
Al Virod594e7e2011-06-20 19:55:42 -0400349 return 0;
350 return -EACCES;
351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 /*
353 * Read/write DACs are always overridable.
Al Virod594e7e2011-06-20 19:55:42 -0400354 * Executable DACs are overridable when there is
355 * at least one exec bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 */
Al Virod594e7e2011-06-20 19:55:42 -0400357 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700358 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return 0;
360
361 /*
362 * Searching includes executable on directories, else just read.
363 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600364 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Al Virod594e7e2011-06-20 19:55:42 -0400365 if (mask == MAY_READ)
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700366 if (capable_wrt_inode_uidgid(inode, CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return 0;
368
369 return -EACCES;
370}
Al Viro4d359502014-03-14 12:20:17 -0400371EXPORT_SYMBOL(generic_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700373/*
374 * We _really_ want to just do "generic_permission()" without
375 * even looking at the inode->i_op values. So we keep a cache
376 * flag in inode->i_opflags, that says "this has not special
377 * permission function, use the fast case".
378 */
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -0700379static inline int do_inode_permission(struct vfsmount *mnt, struct inode *inode, int mask)
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700380{
381 if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -0700382 if (likely(mnt && inode->i_op->permission2))
383 return inode->i_op->permission2(mnt, inode, mask);
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700384 if (likely(inode->i_op->permission))
385 return inode->i_op->permission(inode, mask);
386
387 /* This gets set once for the inode lifetime */
388 spin_lock(&inode->i_lock);
389 inode->i_opflags |= IOP_FASTPERM;
390 spin_unlock(&inode->i_lock);
391 }
392 return generic_permission(inode, mask);
393}
394
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200395/**
David Howells0bdaea92012-06-25 12:55:46 +0100396 * __inode_permission - Check for access rights to a given inode
397 * @inode: Inode to check permission on
398 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200399 *
David Howells0bdaea92012-06-25 12:55:46 +0100400 * Check for read/write/execute permissions on an inode.
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530401 *
402 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
David Howells0bdaea92012-06-25 12:55:46 +0100403 *
404 * This does not check for a read-only file system. You probably want
405 * inode_permission().
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200406 */
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -0700407int __inode_permission2(struct vfsmount *mnt, struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
Al Viroe6305c42008-07-15 21:03:57 -0400409 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700411 if (unlikely(mask & MAY_WRITE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 /*
413 * Nobody gets write access to an immutable file.
414 */
415 if (IS_IMMUTABLE(inode))
Eryu Guan337684a2016-08-02 19:58:28 +0800416 return -EPERM;
Eric W. Biederman0bd23d092016-06-29 14:54:46 -0500417
418 /*
419 * Updating mtime will likely cause i_uid and i_gid to be
420 * written back improperly if their true value is unknown
421 * to the vfs.
422 */
423 if (HAS_UNMAPPED_ID(inode))
424 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 }
426
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -0700427 retval = do_inode_permission(mnt, inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 if (retval)
429 return retval;
430
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700431 retval = devcgroup_inode_permission(inode, mask);
432 if (retval)
433 return retval;
434
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -0700435 retval = security_inode_permission(inode, mask);
436 return retval;
437}
438EXPORT_SYMBOL(__inode_permission2);
439
440int __inode_permission(struct inode *inode, int mask)
441{
442 return __inode_permission2(NULL, inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
Miklos Szeredibd5d0852014-10-24 00:14:35 +0200444EXPORT_SYMBOL(__inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Al Virof4d6ff82011-06-19 13:14:21 -0400446/**
David Howells0bdaea92012-06-25 12:55:46 +0100447 * sb_permission - Check superblock-level permissions
448 * @sb: Superblock of inode to check permission on
Randy Dunlap55852632012-08-18 17:39:25 -0700449 * @inode: Inode to check permission on
David Howells0bdaea92012-06-25 12:55:46 +0100450 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
451 *
452 * Separate out file-system wide checks from inode-specific permission checks.
453 */
454static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
455{
456 if (unlikely(mask & MAY_WRITE)) {
457 umode_t mode = inode->i_mode;
458
459 /* Nobody gets write access to a read-only fs. */
460 if ((sb->s_flags & MS_RDONLY) &&
461 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
462 return -EROFS;
463 }
464 return 0;
465}
466
467/**
468 * inode_permission - Check for access rights to a given inode
469 * @inode: Inode to check permission on
470 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
471 *
472 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
473 * this, letting us set arbitrary permissions for filesystem access without
474 * changing the "normal" UIDs which are used for other things.
475 *
476 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
477 */
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -0700478int inode_permission2(struct vfsmount *mnt, struct inode *inode, int mask)
David Howells0bdaea92012-06-25 12:55:46 +0100479{
480 int retval;
481
482 retval = sb_permission(inode->i_sb, inode, mask);
483 if (retval)
484 return retval;
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -0700485 return __inode_permission2(mnt, inode, mask);
486}
487EXPORT_SYMBOL(inode_permission2);
488
489int inode_permission(struct inode *inode, int mask)
490{
491 return inode_permission2(NULL, inode, mask);
David Howells0bdaea92012-06-25 12:55:46 +0100492}
Al Viro4d359502014-03-14 12:20:17 -0400493EXPORT_SYMBOL(inode_permission);
David Howells0bdaea92012-06-25 12:55:46 +0100494
495/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800496 * path_get - get a reference to a path
497 * @path: path to get the reference to
498 *
499 * Given a path increment the reference count to the dentry and the vfsmount.
500 */
Al Virodcf787f2013-03-01 23:51:07 -0500501void path_get(const struct path *path)
Jan Blunck5dd784d02008-02-14 19:34:38 -0800502{
503 mntget(path->mnt);
504 dget(path->dentry);
505}
506EXPORT_SYMBOL(path_get);
507
508/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800509 * path_put - put a reference to a path
510 * @path: path to put the reference to
511 *
512 * Given a path decrement the reference count to the dentry and the vfsmount.
513 */
Al Virodcf787f2013-03-01 23:51:07 -0500514void path_put(const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
Jan Blunck1d957f92008-02-14 19:34:35 -0800516 dput(path->dentry);
517 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
Jan Blunck1d957f92008-02-14 19:34:35 -0800519EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Al Viro894bc8c2015-05-02 07:16:16 -0400521#define EMBEDDED_LEVELS 2
Al Viro1f55a6e2014-11-01 19:30:41 -0400522struct nameidata {
523 struct path path;
Al Viro1cf26652015-05-06 16:01:56 -0400524 struct qstr last;
Al Viro1f55a6e2014-11-01 19:30:41 -0400525 struct path root;
526 struct inode *inode; /* path.dentry.d_inode */
527 unsigned int flags;
Al Viro9883d182015-05-13 07:28:08 -0400528 unsigned seq, m_seq;
Al Viro1f55a6e2014-11-01 19:30:41 -0400529 int last_type;
530 unsigned depth;
NeilBrown756daf22015-03-23 13:37:38 +1100531 int total_link_count;
Al Viro697fc6c2015-05-02 19:38:35 -0400532 struct saved {
533 struct path link;
Al Virofceef392015-12-29 15:58:39 -0500534 struct delayed_call done;
Al Viro697fc6c2015-05-02 19:38:35 -0400535 const char *name;
Al Viro0450b2d2015-05-08 13:23:53 -0400536 unsigned seq;
Al Viro894bc8c2015-05-02 07:16:16 -0400537 } *stack, internal[EMBEDDED_LEVELS];
Al Viro9883d182015-05-13 07:28:08 -0400538 struct filename *name;
539 struct nameidata *saved;
Al Virofceef392015-12-29 15:58:39 -0500540 struct inode *link_inode;
Al Viro9883d182015-05-13 07:28:08 -0400541 unsigned root_seq;
542 int dfd;
Al Viro1f55a6e2014-11-01 19:30:41 -0400543};
544
Al Viro9883d182015-05-13 07:28:08 -0400545static void set_nameidata(struct nameidata *p, int dfd, struct filename *name)
Al Viro894bc8c2015-05-02 07:16:16 -0400546{
NeilBrown756daf22015-03-23 13:37:38 +1100547 struct nameidata *old = current->nameidata;
548 p->stack = p->internal;
Al Viroc8a53ee2015-05-12 18:43:07 -0400549 p->dfd = dfd;
550 p->name = name;
NeilBrown756daf22015-03-23 13:37:38 +1100551 p->total_link_count = old ? old->total_link_count : 0;
Al Viro9883d182015-05-13 07:28:08 -0400552 p->saved = old;
NeilBrown756daf22015-03-23 13:37:38 +1100553 current->nameidata = p;
Al Viro894bc8c2015-05-02 07:16:16 -0400554}
555
Al Viro9883d182015-05-13 07:28:08 -0400556static void restore_nameidata(void)
Al Viro894bc8c2015-05-02 07:16:16 -0400557{
Al Viro9883d182015-05-13 07:28:08 -0400558 struct nameidata *now = current->nameidata, *old = now->saved;
NeilBrown756daf22015-03-23 13:37:38 +1100559
560 current->nameidata = old;
561 if (old)
562 old->total_link_count = now->total_link_count;
Al Viroe1a63bb2015-12-05 21:06:33 -0500563 if (now->stack != now->internal)
NeilBrown756daf22015-03-23 13:37:38 +1100564 kfree(now->stack);
Al Viro894bc8c2015-05-02 07:16:16 -0400565}
566
567static int __nd_alloc_stack(struct nameidata *nd)
568{
Al Virobc40aee2015-05-09 13:04:24 -0400569 struct saved *p;
570
571 if (nd->flags & LOOKUP_RCU) {
572 p= kmalloc(MAXSYMLINKS * sizeof(struct saved),
573 GFP_ATOMIC);
574 if (unlikely(!p))
575 return -ECHILD;
576 } else {
577 p= kmalloc(MAXSYMLINKS * sizeof(struct saved),
Al Viro894bc8c2015-05-02 07:16:16 -0400578 GFP_KERNEL);
Al Virobc40aee2015-05-09 13:04:24 -0400579 if (unlikely(!p))
580 return -ENOMEM;
581 }
Al Viro894bc8c2015-05-02 07:16:16 -0400582 memcpy(p, nd->internal, sizeof(nd->internal));
583 nd->stack = p;
584 return 0;
585}
586
Eric W. Biederman397d4252015-08-15 20:27:13 -0500587/**
588 * path_connected - Verify that a path->dentry is below path->mnt.mnt_root
589 * @path: nameidate to verify
590 *
591 * Rename can sometimes move a file or directory outside of a bind
592 * mount, path_connected allows those cases to be detected.
593 */
594static bool path_connected(const struct path *path)
595{
596 struct vfsmount *mnt = path->mnt;
Eric W. Biedermaneaa95922018-03-14 18:20:29 -0500597 struct super_block *sb = mnt->mnt_sb;
Eric W. Biederman397d4252015-08-15 20:27:13 -0500598
Eric W. Biedermaneaa95922018-03-14 18:20:29 -0500599 /* Bind mounts and multi-root filesystems can have disconnected paths */
600 if (!(sb->s_iflags & SB_I_MULTIROOT) && (mnt->mnt_root == sb->s_root))
Eric W. Biederman397d4252015-08-15 20:27:13 -0500601 return true;
602
603 return is_subdir(path->dentry, mnt->mnt_root);
604}
605
Al Viro894bc8c2015-05-02 07:16:16 -0400606static inline int nd_alloc_stack(struct nameidata *nd)
607{
Al Viroda4e0be2015-05-03 20:52:15 -0400608 if (likely(nd->depth != EMBEDDED_LEVELS))
Al Viro894bc8c2015-05-02 07:16:16 -0400609 return 0;
610 if (likely(nd->stack != nd->internal))
611 return 0;
612 return __nd_alloc_stack(nd);
613}
614
Al Viro79733872015-05-09 12:55:43 -0400615static void drop_links(struct nameidata *nd)
616{
617 int i = nd->depth;
618 while (i--) {
619 struct saved *last = nd->stack + i;
Al Virofceef392015-12-29 15:58:39 -0500620 do_delayed_call(&last->done);
621 clear_delayed_call(&last->done);
Al Viro79733872015-05-09 12:55:43 -0400622 }
623}
624
625static void terminate_walk(struct nameidata *nd)
626{
627 drop_links(nd);
628 if (!(nd->flags & LOOKUP_RCU)) {
629 int i;
630 path_put(&nd->path);
631 for (i = 0; i < nd->depth; i++)
632 path_put(&nd->stack[i].link);
Al Viro102b8af2015-05-12 17:35:52 -0400633 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
634 path_put(&nd->root);
635 nd->root.mnt = NULL;
636 }
Al Viro79733872015-05-09 12:55:43 -0400637 } else {
638 nd->flags &= ~LOOKUP_RCU;
639 if (!(nd->flags & LOOKUP_ROOT))
640 nd->root.mnt = NULL;
641 rcu_read_unlock();
642 }
643 nd->depth = 0;
644}
645
646/* path_put is needed afterwards regardless of success or failure */
647static bool legitimize_path(struct nameidata *nd,
648 struct path *path, unsigned seq)
649{
650 int res = __legitimize_mnt(path->mnt, nd->m_seq);
651 if (unlikely(res)) {
652 if (res > 0)
653 path->mnt = NULL;
654 path->dentry = NULL;
655 return false;
656 }
657 if (unlikely(!lockref_get_not_dead(&path->dentry->d_lockref))) {
658 path->dentry = NULL;
659 return false;
660 }
661 return !read_seqcount_retry(&path->dentry->d_seq, seq);
662}
663
664static bool legitimize_links(struct nameidata *nd)
665{
666 int i;
667 for (i = 0; i < nd->depth; i++) {
668 struct saved *last = nd->stack + i;
669 if (unlikely(!legitimize_path(nd, &last->link, last->seq))) {
670 drop_links(nd);
671 nd->depth = i + 1;
672 return false;
673 }
674 }
675 return true;
676}
677
Al Viro19660af2011-03-25 10:32:48 -0400678/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100679 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400680 * Documentation/filesystems/path-lookup.txt). In situations when we can't
681 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
Mike Marshall57e37152015-11-30 11:11:59 -0500682 * normal reference counts on dentries and vfsmounts to transition to ref-walk
Al Viro19660af2011-03-25 10:32:48 -0400683 * mode. Refcounts are grabbed at the last known good point before rcu-walk
684 * got stuck, so ref-walk may continue from there. If this is not successful
685 * (eg. a seqcount has changed), then failure is returned and it's up to caller
686 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100687 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100688
689/**
Al Viro19660af2011-03-25 10:32:48 -0400690 * unlazy_walk - try to switch to ref-walk mode.
691 * @nd: nameidata pathwalk data
692 * @dentry: child of nd->path.dentry or NULL
Al Viro6e9918b2015-05-05 09:26:05 -0400693 * @seq: seq number to check dentry against
Randy Dunlap39191622011-01-08 19:36:21 -0800694 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100695 *
Al Viro19660af2011-03-25 10:32:48 -0400696 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
697 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
698 * @nd or NULL. Must be called from rcu-walk context.
Al Viro79733872015-05-09 12:55:43 -0400699 * Nothing should touch nameidata between unlazy_walk() failure and
700 * terminate_walk().
Nick Piggin31e6b012011-01-07 17:49:52 +1100701 */
Al Viro6e9918b2015-05-05 09:26:05 -0400702static int unlazy_walk(struct nameidata *nd, struct dentry *dentry, unsigned seq)
Nick Piggin31e6b012011-01-07 17:49:52 +1100703{
Nick Piggin31e6b012011-01-07 17:49:52 +1100704 struct dentry *parent = nd->path.dentry;
705
706 BUG_ON(!(nd->flags & LOOKUP_RCU));
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700707
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700708 nd->flags &= ~LOOKUP_RCU;
Al Viro79733872015-05-09 12:55:43 -0400709 if (unlikely(!legitimize_links(nd)))
710 goto out2;
711 if (unlikely(!legitimize_mnt(nd->path.mnt, nd->m_seq)))
712 goto out2;
713 if (unlikely(!lockref_get_not_dead(&parent->d_lockref)))
714 goto out1;
Al Viro48a066e2013-09-29 22:06:07 -0400715
Linus Torvalds15570082013-09-02 11:38:06 -0700716 /*
717 * For a negative lookup, the lookup sequence point is the parents
718 * sequence point, and it only needs to revalidate the parent dentry.
719 *
720 * For a positive lookup, we need to move both the parent and the
721 * dentry from the RCU domain to be properly refcounted. And the
722 * sequence number in the dentry validates *both* dentry counters,
723 * since we checked the sequence number of the parent after we got
724 * the child sequence number. So we know the parent must still
725 * be valid if the child sequence number is still valid.
726 */
Al Viro19660af2011-03-25 10:32:48 -0400727 if (!dentry) {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700728 if (read_seqcount_retry(&parent->d_seq, nd->seq))
729 goto out;
Al Viro19660af2011-03-25 10:32:48 -0400730 BUG_ON(nd->inode != parent->d_inode);
731 } else {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700732 if (!lockref_get_not_dead(&dentry->d_lockref))
733 goto out;
Al Viro6e9918b2015-05-05 09:26:05 -0400734 if (read_seqcount_retry(&dentry->d_seq, seq))
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700735 goto drop_dentry;
Al Viro19660af2011-03-25 10:32:48 -0400736 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700737
738 /*
739 * Sequence counts matched. Now make sure that the root is
740 * still valid and get it if required.
741 */
742 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro5a8d87e2015-05-12 00:10:18 -0400743 if (unlikely(!legitimize_path(nd, &nd->root, nd->root_seq))) {
744 rcu_read_unlock();
745 dput(dentry);
746 return -ECHILD;
Al Viro79733872015-05-09 12:55:43 -0400747 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100748 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100749
Al Viro8b61e742013-11-08 12:45:01 -0500750 rcu_read_unlock();
Nick Piggin31e6b012011-01-07 17:49:52 +1100751 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400752
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700753drop_dentry:
Al Viro8b61e742013-11-08 12:45:01 -0500754 rcu_read_unlock();
Linus Torvalds15570082013-09-02 11:38:06 -0700755 dput(dentry);
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700756 goto drop_root_mnt;
Al Viro79733872015-05-09 12:55:43 -0400757out2:
758 nd->path.mnt = NULL;
759out1:
760 nd->path.dentry = NULL;
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700761out:
Al Viro8b61e742013-11-08 12:45:01 -0500762 rcu_read_unlock();
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700763drop_root_mnt:
764 if (!(nd->flags & LOOKUP_ROOT))
765 nd->root.mnt = NULL;
Nick Piggin31e6b012011-01-07 17:49:52 +1100766 return -ECHILD;
767}
768
Al Viro79733872015-05-09 12:55:43 -0400769static int unlazy_link(struct nameidata *nd, struct path *link, unsigned seq)
770{
771 if (unlikely(!legitimize_path(nd, link, seq))) {
772 drop_links(nd);
773 nd->depth = 0;
774 nd->flags &= ~LOOKUP_RCU;
775 nd->path.mnt = NULL;
776 nd->path.dentry = NULL;
777 if (!(nd->flags & LOOKUP_ROOT))
778 nd->root.mnt = NULL;
779 rcu_read_unlock();
780 } else if (likely(unlazy_walk(nd, NULL, 0)) == 0) {
781 return 0;
782 }
783 path_put(link);
784 return -ECHILD;
785}
786
Al Viro4ce16ef32012-06-10 16:10:59 -0400787static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
Nick Piggin34286d62011-01-07 17:49:57 +1100788{
Al Viro4ce16ef32012-06-10 16:10:59 -0400789 return dentry->d_op->d_revalidate(dentry, flags);
Nick Piggin34286d62011-01-07 17:49:57 +1100790}
791
Al Viro9f1fafe2011-03-25 11:00:12 -0400792/**
793 * complete_walk - successful completion of path walk
794 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500795 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400796 * If we had been in RCU mode, drop out of it and legitimize nd->path.
797 * Revalidate the final result, unless we'd already done that during
798 * the path walk or the filesystem doesn't ask for it. Return 0 on
799 * success, -error on failure. In case of failure caller does not
800 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500801 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400802static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500803{
Al Viro16c2cd72011-02-22 15:50:10 -0500804 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500805 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500806
Al Viro9f1fafe2011-03-25 11:00:12 -0400807 if (nd->flags & LOOKUP_RCU) {
Al Viro9f1fafe2011-03-25 11:00:12 -0400808 if (!(nd->flags & LOOKUP_ROOT))
809 nd->root.mnt = NULL;
Al Viro6e9918b2015-05-05 09:26:05 -0400810 if (unlikely(unlazy_walk(nd, NULL, 0)))
Al Viro48a066e2013-09-29 22:06:07 -0400811 return -ECHILD;
Al Viro9f1fafe2011-03-25 11:00:12 -0400812 }
813
Al Viro16c2cd72011-02-22 15:50:10 -0500814 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500815 return 0;
816
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500817 if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
Al Viro16c2cd72011-02-22 15:50:10 -0500818 return 0;
819
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500820 status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
Jeff Layton39159de2009-12-07 12:01:50 -0500821 if (status > 0)
822 return 0;
823
Al Viro16c2cd72011-02-22 15:50:10 -0500824 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500825 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500826
Jeff Layton39159de2009-12-07 12:01:50 -0500827 return status;
828}
829
Al Viro18d8c862015-05-12 16:32:34 -0400830static void set_root(struct nameidata *nd)
Al Viro2a737872009-04-07 11:49:53 -0400831{
Al Viro7bd88372014-09-13 21:55:46 -0400832 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100833
Al Viro9e6697e2015-12-05 20:07:21 -0500834 if (nd->flags & LOOKUP_RCU) {
835 unsigned seq;
836
837 do {
838 seq = read_seqcount_begin(&fs->seq);
839 nd->root = fs->root;
840 nd->root_seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
841 } while (read_seqcount_retry(&fs->seq, seq));
842 } else {
843 get_fs_root(fs, &nd->root);
844 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100845}
846
Jan Blunck1d957f92008-02-14 19:34:35 -0800847static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700848{
849 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800850 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700851 mntput(path->mnt);
852}
853
Nick Piggin7b9337a2011-01-14 08:42:43 +0000854static inline void path_to_nameidata(const struct path *path,
855 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700856{
Nick Piggin31e6b012011-01-07 17:49:52 +1100857 if (!(nd->flags & LOOKUP_RCU)) {
858 dput(nd->path.dentry);
859 if (nd->path.mnt != path->mnt)
860 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800861 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100862 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800863 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700864}
865
Al Viro248fb5b2015-12-05 20:51:58 -0500866static int nd_jump_root(struct nameidata *nd)
867{
868 if (nd->flags & LOOKUP_RCU) {
869 struct dentry *d;
870 nd->path = nd->root;
871 d = nd->path.dentry;
872 nd->inode = d->d_inode;
873 nd->seq = nd->root_seq;
874 if (unlikely(read_seqcount_retry(&d->d_seq, nd->seq)))
875 return -ECHILD;
876 } else {
877 path_put(&nd->path);
878 nd->path = nd->root;
879 path_get(&nd->path);
880 nd->inode = nd->path.dentry->d_inode;
881 }
882 nd->flags |= LOOKUP_JUMPED;
883 return 0;
884}
885
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400886/*
Al Viro6b255392015-11-17 10:20:54 -0500887 * Helper to directly jump to a known parsed path from ->get_link,
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400888 * caller must have taken a reference to path beforehand.
889 */
Al Viro6e771372015-05-02 13:37:52 -0400890void nd_jump_link(struct path *path)
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400891{
Al Viro6e771372015-05-02 13:37:52 -0400892 struct nameidata *nd = current->nameidata;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400893 path_put(&nd->path);
894
895 nd->path = *path;
896 nd->inode = nd->path.dentry->d_inode;
897 nd->flags |= LOOKUP_JUMPED;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400898}
899
Al Virob9ff4422015-05-02 20:19:23 -0400900static inline void put_link(struct nameidata *nd)
Al Viro574197e2011-03-14 22:20:34 -0400901{
Al Viro21c30032015-05-03 21:06:24 -0400902 struct saved *last = nd->stack + --nd->depth;
Al Virofceef392015-12-29 15:58:39 -0500903 do_delayed_call(&last->done);
Al Viro6548fae2015-05-07 20:32:22 -0400904 if (!(nd->flags & LOOKUP_RCU))
905 path_put(&last->link);
Al Viro574197e2011-03-14 22:20:34 -0400906}
907
Linus Torvalds561ec642012-10-26 10:05:07 -0700908int sysctl_protected_symlinks __read_mostly = 0;
909int sysctl_protected_hardlinks __read_mostly = 0;
Salvatore Mesoraca0c41bee2018-08-23 17:00:35 -0700910int sysctl_protected_fifos __read_mostly;
911int sysctl_protected_regular __read_mostly;
Kees Cook800179c2012-07-25 17:29:07 -0700912
913/**
914 * may_follow_link - Check symlink following for unsafe situations
Randy Dunlap55852632012-08-18 17:39:25 -0700915 * @nd: nameidata pathwalk data
Kees Cook800179c2012-07-25 17:29:07 -0700916 *
917 * In the case of the sysctl_protected_symlinks sysctl being enabled,
918 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
919 * in a sticky world-writable directory. This is to protect privileged
920 * processes from failing races against path names that may change out
921 * from under them by way of other users creating malicious symlinks.
922 * It will permit symlinks to be followed only when outside a sticky
923 * world-writable directory, or when the uid of the symlink and follower
924 * match, or when the directory owner matches the symlink's owner.
925 *
926 * Returns 0 if following the symlink is allowed, -ve on error.
927 */
Al Virofec2fa22015-05-06 15:58:18 -0400928static inline int may_follow_link(struct nameidata *nd)
Kees Cook800179c2012-07-25 17:29:07 -0700929{
930 const struct inode *inode;
931 const struct inode *parent;
Seth Forshee2d7f9e22016-04-26 14:36:23 -0500932 kuid_t puid;
Kees Cook800179c2012-07-25 17:29:07 -0700933
934 if (!sysctl_protected_symlinks)
935 return 0;
936
937 /* Allowed if owner and follower match. */
Al Virofceef392015-12-29 15:58:39 -0500938 inode = nd->link_inode;
Eric W. Biederman81abe272012-08-03 09:38:08 -0700939 if (uid_eq(current_cred()->fsuid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700940 return 0;
941
942 /* Allowed if parent directory not sticky and world-writable. */
Al Viroaa65fa32015-08-04 23:23:50 -0400943 parent = nd->inode;
Kees Cook800179c2012-07-25 17:29:07 -0700944 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
945 return 0;
946
947 /* Allowed if parent directory and link owner match. */
Seth Forshee2d7f9e22016-04-26 14:36:23 -0500948 puid = parent->i_uid;
949 if (uid_valid(puid) && uid_eq(puid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700950 return 0;
951
Al Viro319565022015-05-07 20:37:40 -0400952 if (nd->flags & LOOKUP_RCU)
953 return -ECHILD;
954
Al Viro1cf26652015-05-06 16:01:56 -0400955 audit_log_link_denied("follow_link", &nd->stack[0].link);
Kees Cook800179c2012-07-25 17:29:07 -0700956 return -EACCES;
957}
958
959/**
960 * safe_hardlink_source - Check for safe hardlink conditions
961 * @inode: the source inode to hardlink from
962 *
963 * Return false if at least one of the following conditions:
964 * - inode is not a regular file
965 * - inode is setuid
966 * - inode is setgid and group-exec
967 * - access failure for read and write
968 *
969 * Otherwise returns true.
970 */
971static bool safe_hardlink_source(struct inode *inode)
972{
973 umode_t mode = inode->i_mode;
974
975 /* Special files should not get pinned to the filesystem. */
976 if (!S_ISREG(mode))
977 return false;
978
979 /* Setuid files should not get pinned to the filesystem. */
980 if (mode & S_ISUID)
981 return false;
982
983 /* Executable setgid files should not get pinned to the filesystem. */
984 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
985 return false;
986
987 /* Hardlinking to unreadable or unwritable sources is dangerous. */
988 if (inode_permission(inode, MAY_READ | MAY_WRITE))
989 return false;
990
991 return true;
992}
993
994/**
995 * may_linkat - Check permissions for creating a hardlink
996 * @link: the source to hardlink from
997 *
998 * Block hardlink when all of:
999 * - sysctl_protected_hardlinks enabled
1000 * - fsuid does not match inode
1001 * - hardlink source is unsafe (see safe_hardlink_source() above)
Dirk Steinmetzf2ca3792015-10-20 16:09:19 +02001002 * - not CAP_FOWNER in a namespace with the inode owner uid mapped
Kees Cook800179c2012-07-25 17:29:07 -07001003 *
1004 * Returns 0 if successful, -ve on error.
1005 */
1006static int may_linkat(struct path *link)
1007{
Kees Cook800179c2012-07-25 17:29:07 -07001008 struct inode *inode;
1009
1010 if (!sysctl_protected_hardlinks)
1011 return 0;
1012
Kees Cook800179c2012-07-25 17:29:07 -07001013 inode = link->dentry->d_inode;
1014
1015 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
1016 * otherwise, it must be a safe source.
1017 */
Dirk Steinmetzf2ca3792015-10-20 16:09:19 +02001018 if (inode_owner_or_capable(inode) || safe_hardlink_source(inode))
Kees Cook800179c2012-07-25 17:29:07 -07001019 return 0;
1020
Kees Cooka51d9ea2012-07-25 17:29:08 -07001021 audit_log_link_denied("linkat", link);
Kees Cook800179c2012-07-25 17:29:07 -07001022 return -EPERM;
1023}
1024
Salvatore Mesoraca0c41bee2018-08-23 17:00:35 -07001025/**
1026 * may_create_in_sticky - Check whether an O_CREAT open in a sticky directory
1027 * should be allowed, or not, on files that already
1028 * exist.
1029 * @dir: the sticky parent directory
1030 * @inode: the inode of the file to open
1031 *
1032 * Block an O_CREAT open of a FIFO (or a regular file) when:
1033 * - sysctl_protected_fifos (or sysctl_protected_regular) is enabled
1034 * - the file already exists
1035 * - we are in a sticky directory
1036 * - we don't own the file
1037 * - the owner of the directory doesn't own the file
1038 * - the directory is world writable
1039 * If the sysctl_protected_fifos (or sysctl_protected_regular) is set to 2
1040 * the directory doesn't have to be world writable: being group writable will
1041 * be enough.
1042 *
1043 * Returns 0 if the open is allowed, -ve on error.
1044 */
1045static int may_create_in_sticky(struct dentry * const dir,
1046 struct inode * const inode)
1047{
1048 if ((!sysctl_protected_fifos && S_ISFIFO(inode->i_mode)) ||
1049 (!sysctl_protected_regular && S_ISREG(inode->i_mode)) ||
1050 likely(!(dir->d_inode->i_mode & S_ISVTX)) ||
1051 uid_eq(inode->i_uid, dir->d_inode->i_uid) ||
1052 uid_eq(current_fsuid(), inode->i_uid))
1053 return 0;
1054
1055 if (likely(dir->d_inode->i_mode & 0002) ||
1056 (dir->d_inode->i_mode & 0020 &&
1057 ((sysctl_protected_fifos >= 2 && S_ISFIFO(inode->i_mode)) ||
1058 (sysctl_protected_regular >= 2 && S_ISREG(inode->i_mode))))) {
1059 return -EACCES;
1060 }
1061 return 0;
1062}
1063
Al Viro3b2e7f72015-04-19 00:53:50 -04001064static __always_inline
1065const char *get_link(struct nameidata *nd)
Ian Kent051d3812006-03-27 01:14:53 -08001066{
Al Viroab104922015-05-10 11:50:01 -04001067 struct saved *last = nd->stack + nd->depth - 1;
Al Viro1cf26652015-05-06 16:01:56 -04001068 struct dentry *dentry = last->link.dentry;
Al Virofceef392015-12-29 15:58:39 -05001069 struct inode *inode = nd->link_inode;
Al Viro6d7b5aa2012-06-10 04:15:17 -04001070 int error;
Al Viro0a959df2015-04-18 18:23:41 -04001071 const char *res;
Ian Kent051d3812006-03-27 01:14:53 -08001072
NeilBrown8fa9dd22015-03-23 13:37:40 +11001073 if (!(nd->flags & LOOKUP_RCU)) {
1074 touch_atime(&last->link);
1075 cond_resched();
Miklos Szeredi598e3c82016-09-16 12:44:20 +02001076 } else if (atime_needs_update_rcu(&last->link, inode)) {
NeilBrown8fa9dd22015-03-23 13:37:40 +11001077 if (unlikely(unlazy_walk(nd, NULL, 0)))
1078 return ERR_PTR(-ECHILD);
1079 touch_atime(&last->link);
1080 }
1081
NeilBrownbda0be72015-03-23 13:37:39 +11001082 error = security_inode_follow_link(dentry, inode,
1083 nd->flags & LOOKUP_RCU);
1084 if (unlikely(error))
Al Viro6920a442015-05-10 10:43:46 -04001085 return ERR_PTR(error);
Al Viro36f3b4f2011-02-22 21:24:38 -05001086
Al Viro86acdca12009-12-22 23:45:11 -05001087 nd->last_type = LAST_BIND;
Al Virod4dee482015-04-30 20:08:02 -04001088 res = inode->i_link;
1089 if (!res) {
Al Virofceef392015-12-29 15:58:39 -05001090 const char * (*get)(struct dentry *, struct inode *,
1091 struct delayed_call *);
1092 get = inode->i_op->get_link;
Al Viro8c1b4562015-05-09 18:15:21 -04001093 if (nd->flags & LOOKUP_RCU) {
Al Virofceef392015-12-29 15:58:39 -05001094 res = get(NULL, inode, &last->done);
Al Viro6b255392015-11-17 10:20:54 -05001095 if (res == ERR_PTR(-ECHILD)) {
1096 if (unlikely(unlazy_walk(nd, NULL, 0)))
1097 return ERR_PTR(-ECHILD);
Al Virofceef392015-12-29 15:58:39 -05001098 res = get(dentry, inode, &last->done);
Al Viro6b255392015-11-17 10:20:54 -05001099 }
1100 } else {
Al Virofceef392015-12-29 15:58:39 -05001101 res = get(dentry, inode, &last->done);
Al Viro8c1b4562015-05-09 18:15:21 -04001102 }
Al Virofceef392015-12-29 15:58:39 -05001103 if (IS_ERR_OR_NULL(res))
Al Virofab51e82015-05-10 11:01:00 -04001104 return res;
Ian Kent051d3812006-03-27 01:14:53 -08001105 }
Al Virofab51e82015-05-10 11:01:00 -04001106 if (*res == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05001107 if (!nd->root.mnt)
1108 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05001109 if (unlikely(nd_jump_root(nd)))
1110 return ERR_PTR(-ECHILD);
Al Virofab51e82015-05-10 11:01:00 -04001111 while (unlikely(*++res == '/'))
1112 ;
1113 }
1114 if (!*res)
1115 res = NULL;
Al Viro0a959df2015-04-18 18:23:41 -04001116 return res;
1117}
Al Viro6d7b5aa2012-06-10 04:15:17 -04001118
David Howellsf015f1262012-06-25 12:55:28 +01001119/*
1120 * follow_up - Find the mountpoint of path's vfsmount
1121 *
1122 * Given a path, find the mountpoint of its source file system.
1123 * Replace @path with the path of the mountpoint in the parent mount.
1124 * Up is towards /.
1125 *
1126 * Return 1 if we went up a level and 0 if we were already at the
1127 * root.
1128 */
Al Virobab77eb2009-04-18 03:26:48 -04001129int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
Al Viro0714a532011-11-24 22:19:58 -05001131 struct mount *mnt = real_mount(path->mnt);
1132 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +10001134
Al Viro48a066e2013-09-29 22:06:07 -04001135 read_seqlock_excl(&mount_lock);
Al Viro0714a532011-11-24 22:19:58 -05001136 parent = mnt->mnt_parent;
Al Viro3c0a6162012-07-18 17:32:50 +04001137 if (parent == mnt) {
Al Viro48a066e2013-09-29 22:06:07 -04001138 read_sequnlock_excl(&mount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 return 0;
1140 }
Al Viro0714a532011-11-24 22:19:58 -05001141 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -05001142 mountpoint = dget(mnt->mnt_mountpoint);
Al Viro48a066e2013-09-29 22:06:07 -04001143 read_sequnlock_excl(&mount_lock);
Al Virobab77eb2009-04-18 03:26:48 -04001144 dput(path->dentry);
1145 path->dentry = mountpoint;
1146 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -05001147 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 return 1;
1149}
Al Viro4d359502014-03-14 12:20:17 -04001150EXPORT_SYMBOL(follow_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151
Nick Pigginb5c84bf2011-01-07 17:49:38 +11001152/*
David Howells9875cf82011-01-14 18:45:21 +00001153 * Perform an automount
1154 * - return -EISDIR to tell follow_managed() to stop and return the path we
1155 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 */
NeilBrown756daf22015-03-23 13:37:38 +11001157static int follow_automount(struct path *path, struct nameidata *nd,
David Howells9875cf82011-01-14 18:45:21 +00001158 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +11001159{
David Howells9875cf82011-01-14 18:45:21 +00001160 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +00001161 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001162
David Howells9875cf82011-01-14 18:45:21 +00001163 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
1164 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -07001165
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001166 /* We don't want to mount if someone's just doing a stat -
1167 * unless they're stat'ing a directory and appended a '/' to
1168 * the name.
1169 *
1170 * We do, however, want to mount if someone wants to open or
1171 * create a file of any type under the mountpoint, wants to
1172 * traverse through the mountpoint or wants to open the
1173 * mounted directory. Also, autofs may mark negative dentries
1174 * as being automount points. These will need the attentions
1175 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +00001176 */
NeilBrown756daf22015-03-23 13:37:38 +11001177 if (!(nd->flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
1178 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001179 path->dentry->d_inode)
1180 return -EISDIR;
1181
NeilBrown756daf22015-03-23 13:37:38 +11001182 nd->total_link_count++;
1183 if (nd->total_link_count >= 40)
David Howells9875cf82011-01-14 18:45:21 +00001184 return -ELOOP;
1185
1186 mnt = path->dentry->d_op->d_automount(path);
1187 if (IS_ERR(mnt)) {
1188 /*
1189 * The filesystem is allowed to return -EISDIR here to indicate
1190 * it doesn't want to automount. For instance, autofs would do
1191 * this so that its userspace daemon can mount on this dentry.
1192 *
1193 * However, we can only permit this if it's a terminal point in
1194 * the path being looked up; if it wasn't then the remainder of
1195 * the path is inaccessible and we should say so.
1196 */
NeilBrown756daf22015-03-23 13:37:38 +11001197 if (PTR_ERR(mnt) == -EISDIR && (nd->flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +00001198 return -EREMOTE;
1199 return PTR_ERR(mnt);
1200 }
David Howellsea5b7782011-01-14 19:10:03 +00001201
David Howells9875cf82011-01-14 18:45:21 +00001202 if (!mnt) /* mount collision */
1203 return 0;
1204
Al Viro8aef1882011-06-16 15:10:06 +01001205 if (!*need_mntput) {
1206 /* lock_mount() may release path->mnt on error */
1207 mntget(path->mnt);
1208 *need_mntput = true;
1209 }
Al Viro19a167a2011-01-17 01:35:23 -05001210 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +00001211
David Howellsea5b7782011-01-14 19:10:03 +00001212 switch (err) {
1213 case -EBUSY:
1214 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -05001215 return 0;
David Howellsea5b7782011-01-14 19:10:03 +00001216 case 0:
Al Viro8aef1882011-06-16 15:10:06 +01001217 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +00001218 path->mnt = mnt;
1219 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +00001220 return 0;
Al Viro19a167a2011-01-17 01:35:23 -05001221 default:
1222 return err;
David Howellsea5b7782011-01-14 19:10:03 +00001223 }
Al Viro19a167a2011-01-17 01:35:23 -05001224
David Howells9875cf82011-01-14 18:45:21 +00001225}
1226
1227/*
1228 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +00001229 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +00001230 * - Flagged as mountpoint
1231 * - Flagged as automount point
1232 *
1233 * This may only be called in refwalk mode.
1234 *
1235 * Serialization is taken care of in namespace.c
1236 */
NeilBrown756daf22015-03-23 13:37:38 +11001237static int follow_managed(struct path *path, struct nameidata *nd)
David Howells9875cf82011-01-14 18:45:21 +00001238{
Al Viro8aef1882011-06-16 15:10:06 +01001239 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +00001240 unsigned managed;
1241 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +01001242 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +00001243
1244 /* Given that we're not holding a lock here, we retain the value in a
1245 * local variable for each dentry as we look at it so that we don't see
1246 * the components of that value change under us */
1247 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1248 managed &= DCACHE_MANAGED_DENTRY,
1249 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +00001250 /* Allow the filesystem to manage the transit without i_mutex
1251 * being held. */
1252 if (managed & DCACHE_MANAGE_TRANSIT) {
1253 BUG_ON(!path->dentry->d_op);
1254 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -04001255 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001256 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001257 break;
David Howellscc53ce52011-01-14 18:45:26 +00001258 }
1259
David Howells9875cf82011-01-14 18:45:21 +00001260 /* Transit to a mounted filesystem. */
1261 if (managed & DCACHE_MOUNTED) {
1262 struct vfsmount *mounted = lookup_mnt(path);
1263 if (mounted) {
1264 dput(path->dentry);
1265 if (need_mntput)
1266 mntput(path->mnt);
1267 path->mnt = mounted;
1268 path->dentry = dget(mounted->mnt_root);
1269 need_mntput = true;
1270 continue;
1271 }
1272
1273 /* Something is mounted on this dentry in another
1274 * namespace and/or whatever was mounted there in this
Al Viro48a066e2013-09-29 22:06:07 -04001275 * namespace got unmounted before lookup_mnt() could
1276 * get it */
David Howells9875cf82011-01-14 18:45:21 +00001277 }
1278
1279 /* Handle an automount point */
1280 if (managed & DCACHE_NEED_AUTOMOUNT) {
NeilBrown756daf22015-03-23 13:37:38 +11001281 ret = follow_automount(path, nd, &need_mntput);
David Howells9875cf82011-01-14 18:45:21 +00001282 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001283 break;
David Howells9875cf82011-01-14 18:45:21 +00001284 continue;
1285 }
1286
1287 /* We didn't change the current path point */
1288 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
Al Viro8aef1882011-06-16 15:10:06 +01001290
1291 if (need_mntput && path->mnt == mnt)
1292 mntput(path->mnt);
Al Viroe9742b52016-03-05 22:04:59 -05001293 if (ret == -EISDIR || !ret)
1294 ret = 1;
Al Viro84027522015-04-22 10:30:08 -04001295 if (need_mntput)
1296 nd->flags |= LOOKUP_JUMPED;
1297 if (unlikely(ret < 0))
1298 path_put_conditional(path, nd);
1299 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301
David Howellscc53ce52011-01-14 18:45:26 +00001302int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303{
1304 struct vfsmount *mounted;
1305
Al Viro1c755af2009-04-18 14:06:57 -04001306 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -04001308 dput(path->dentry);
1309 mntput(path->mnt);
1310 path->mnt = mounted;
1311 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 return 1;
1313 }
1314 return 0;
1315}
Al Viro4d359502014-03-14 12:20:17 -04001316EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
NeilBrownb8faf032014-08-04 17:06:29 +10001318static inline int managed_dentry_rcu(struct dentry *dentry)
Ian Kent62a73752011-03-25 01:51:02 +08001319{
NeilBrownb8faf032014-08-04 17:06:29 +10001320 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
1321 dentry->d_op->d_manage(dentry, true) : 0;
Ian Kent62a73752011-03-25 01:51:02 +08001322}
1323
David Howells9875cf82011-01-14 18:45:21 +00001324/*
Al Viro287548e2011-05-27 06:50:06 -04001325 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1326 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +00001327 */
1328static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro254cf582015-05-05 09:40:46 -04001329 struct inode **inode, unsigned *seqp)
David Howells9875cf82011-01-14 18:45:21 +00001330{
Ian Kent62a73752011-03-25 01:51:02 +08001331 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -05001332 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +08001333 /*
1334 * Don't forget we might have a non-mountpoint managed dentry
1335 * that wants to block transit.
1336 */
NeilBrownb8faf032014-08-04 17:06:29 +10001337 switch (managed_dentry_rcu(path->dentry)) {
1338 case -ECHILD:
1339 default:
David Howellsab909112011-01-14 18:46:51 +00001340 return false;
NeilBrownb8faf032014-08-04 17:06:29 +10001341 case -EISDIR:
1342 return true;
1343 case 0:
1344 break;
1345 }
Ian Kent62a73752011-03-25 01:51:02 +08001346
1347 if (!d_mountpoint(path->dentry))
NeilBrownb8faf032014-08-04 17:06:29 +10001348 return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Ian Kent62a73752011-03-25 01:51:02 +08001349
Al Viro474279d2013-10-01 16:11:26 -04001350 mounted = __lookup_mnt(path->mnt, path->dentry);
David Howells9875cf82011-01-14 18:45:21 +00001351 if (!mounted)
1352 break;
Al Viroc7105362011-11-24 18:22:03 -05001353 path->mnt = &mounted->mnt;
1354 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +00001355 nd->flags |= LOOKUP_JUMPED;
Al Viro254cf582015-05-05 09:40:46 -04001356 *seqp = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -07001357 /*
1358 * Update the inode too. We don't need to re-check the
1359 * dentry sequence number here after this d_inode read,
1360 * because a mount-point is always pinned.
1361 */
1362 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +00001363 }
Al Virof5be3e29122014-09-13 21:50:45 -04001364 return !read_seqretry(&mount_lock, nd->m_seq) &&
NeilBrownb8faf032014-08-04 17:06:29 +10001365 !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Al Viro287548e2011-05-27 06:50:06 -04001366}
1367
Nick Piggin31e6b012011-01-07 17:49:52 +11001368static int follow_dotdot_rcu(struct nameidata *nd)
1369{
Al Viro4023bfc2014-09-13 21:59:43 -04001370 struct inode *inode = nd->inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001371
David Howells9875cf82011-01-14 18:45:21 +00001372 while (1) {
Al Viroaed434a2015-05-12 12:22:47 -04001373 if (path_equal(&nd->path, &nd->root))
Nick Piggin31e6b012011-01-07 17:49:52 +11001374 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001375 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1376 struct dentry *old = nd->path.dentry;
1377 struct dentry *parent = old->d_parent;
1378 unsigned seq;
1379
Al Viro4023bfc2014-09-13 21:59:43 -04001380 inode = parent->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001381 seq = read_seqcount_begin(&parent->d_seq);
Al Viroaed434a2015-05-12 12:22:47 -04001382 if (unlikely(read_seqcount_retry(&old->d_seq, nd->seq)))
1383 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001384 nd->path.dentry = parent;
1385 nd->seq = seq;
Eric W. Biederman397d4252015-08-15 20:27:13 -05001386 if (unlikely(!path_connected(&nd->path)))
1387 return -ENOENT;
Nick Piggin31e6b012011-01-07 17:49:52 +11001388 break;
Al Viroaed434a2015-05-12 12:22:47 -04001389 } else {
1390 struct mount *mnt = real_mount(nd->path.mnt);
1391 struct mount *mparent = mnt->mnt_parent;
1392 struct dentry *mountpoint = mnt->mnt_mountpoint;
1393 struct inode *inode2 = mountpoint->d_inode;
1394 unsigned seq = read_seqcount_begin(&mountpoint->d_seq);
1395 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1396 return -ECHILD;
1397 if (&mparent->mnt == nd->path.mnt)
1398 break;
1399 /* we know that mountpoint was pinned */
1400 nd->path.dentry = mountpoint;
1401 nd->path.mnt = &mparent->mnt;
1402 inode = inode2;
1403 nd->seq = seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001404 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001405 }
Al Viroaed434a2015-05-12 12:22:47 -04001406 while (unlikely(d_mountpoint(nd->path.dentry))) {
Al Virob37199e2014-03-20 15:18:22 -04001407 struct mount *mounted;
1408 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
Al Viroaed434a2015-05-12 12:22:47 -04001409 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1410 return -ECHILD;
Al Virob37199e2014-03-20 15:18:22 -04001411 if (!mounted)
1412 break;
1413 nd->path.mnt = &mounted->mnt;
1414 nd->path.dentry = mounted->mnt.mnt_root;
Al Viro4023bfc2014-09-13 21:59:43 -04001415 inode = nd->path.dentry->d_inode;
Al Virob37199e2014-03-20 15:18:22 -04001416 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Virob37199e2014-03-20 15:18:22 -04001417 }
Al Viro4023bfc2014-09-13 21:59:43 -04001418 nd->inode = inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001419 return 0;
1420}
1421
David Howells9875cf82011-01-14 18:45:21 +00001422/*
David Howellscc53ce52011-01-14 18:45:26 +00001423 * Follow down to the covering mount currently visible to userspace. At each
1424 * point, the filesystem owning that dentry may be queried as to whether the
1425 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001426 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001427int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001428{
1429 unsigned managed;
1430 int ret;
1431
1432 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1433 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1434 /* Allow the filesystem to manage the transit without i_mutex
1435 * being held.
1436 *
1437 * We indicate to the filesystem if someone is trying to mount
1438 * something here. This gives autofs the chance to deny anyone
1439 * other than its daemon the right to mount on its
1440 * superstructure.
1441 *
1442 * The filesystem may sleep at this point.
1443 */
1444 if (managed & DCACHE_MANAGE_TRANSIT) {
1445 BUG_ON(!path->dentry->d_op);
1446 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001447 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001448 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001449 if (ret < 0)
1450 return ret == -EISDIR ? 0 : ret;
1451 }
1452
1453 /* Transit to a mounted filesystem. */
1454 if (managed & DCACHE_MOUNTED) {
1455 struct vfsmount *mounted = lookup_mnt(path);
1456 if (!mounted)
1457 break;
1458 dput(path->dentry);
1459 mntput(path->mnt);
1460 path->mnt = mounted;
1461 path->dentry = dget(mounted->mnt_root);
1462 continue;
1463 }
1464
1465 /* Don't handle automount points here */
1466 break;
1467 }
1468 return 0;
1469}
Al Viro4d359502014-03-14 12:20:17 -04001470EXPORT_SYMBOL(follow_down);
David Howellscc53ce52011-01-14 18:45:26 +00001471
1472/*
David Howells9875cf82011-01-14 18:45:21 +00001473 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1474 */
1475static void follow_mount(struct path *path)
1476{
1477 while (d_mountpoint(path->dentry)) {
1478 struct vfsmount *mounted = lookup_mnt(path);
1479 if (!mounted)
1480 break;
1481 dput(path->dentry);
1482 mntput(path->mnt);
1483 path->mnt = mounted;
1484 path->dentry = dget(mounted->mnt_root);
1485 }
1486}
1487
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05001488static int path_parent_directory(struct path *path)
1489{
1490 struct dentry *old = path->dentry;
1491 /* rare case of legitimate dget_parent()... */
1492 path->dentry = dget_parent(path->dentry);
1493 dput(old);
1494 if (unlikely(!path_connected(path)))
1495 return -ENOENT;
1496 return 0;
1497}
1498
Eric W. Biederman397d4252015-08-15 20:27:13 -05001499static int follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500{
1501 while(1) {
Al Viro2a737872009-04-07 11:49:53 -04001502 if (nd->path.dentry == nd->root.dentry &&
1503 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 break;
1505 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001506 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05001507 int ret = path_parent_directory(&nd->path);
1508 if (ret)
1509 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 break;
1511 }
Al Viro3088dd72010-01-30 15:47:29 -05001512 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 }
Al Viro79ed0222009-04-18 13:59:41 -04001515 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001516 nd->inode = nd->path.dentry->d_inode;
Eric W. Biederman397d4252015-08-15 20:27:13 -05001517 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518}
1519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520/*
Oleg Drokinf4fdace2016-07-07 22:04:04 -04001521 * This looks up the name in dcache and possibly revalidates the found dentry.
1522 * NULL is returned if the dentry does not exist in the cache.
Nick Pigginbaa03892010-08-18 04:37:31 +10001523 */
Al Viroe3c13922016-03-06 14:03:27 -05001524static struct dentry *lookup_dcache(const struct qstr *name,
1525 struct dentry *dir,
Al Viro6c51e512016-03-05 20:09:32 -05001526 unsigned int flags)
Nick Pigginbaa03892010-08-18 04:37:31 +10001527{
Nick Pigginbaa03892010-08-18 04:37:31 +10001528 struct dentry *dentry;
Miklos Szeredibad61182012-03-26 12:54:24 +02001529 int error;
Nick Pigginbaa03892010-08-18 04:37:31 +10001530
Miklos Szeredibad61182012-03-26 12:54:24 +02001531 dentry = d_lookup(dir, name);
1532 if (dentry) {
Jeff Layton39e3c952012-11-28 11:30:53 -05001533 if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
Al Viro201f9562012-06-22 12:42:10 +04001534 error = d_revalidate(dentry, flags);
Miklos Szeredibad61182012-03-26 12:54:24 +02001535 if (unlikely(error <= 0)) {
Al Viro74ff0ff2016-03-05 22:37:46 -05001536 if (!error)
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001537 d_invalidate(dentry);
Al Viro74ff0ff2016-03-05 22:37:46 -05001538 dput(dentry);
1539 return ERR_PTR(error);
Miklos Szeredibad61182012-03-26 12:54:24 +02001540 }
1541 }
1542 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001543 return dentry;
1544}
1545
1546/*
J. Bruce Fields13a2c3b2013-10-23 16:09:16 -04001547 * Call i_op->lookup on the dentry. The dentry must be negative and
1548 * unhashed.
Miklos Szeredibad61182012-03-26 12:54:24 +02001549 *
1550 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001551 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001552static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
Al Viro72bd8662012-06-10 17:17:17 -04001553 unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001554{
Josef Bacik44396f42011-05-31 11:58:49 -04001555 struct dentry *old;
1556
1557 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001558 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001559 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001560 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001561 }
Josef Bacik44396f42011-05-31 11:58:49 -04001562
Al Viro72bd8662012-06-10 17:17:17 -04001563 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001564 if (unlikely(old)) {
1565 dput(dentry);
1566 dentry = old;
1567 }
1568 return dentry;
1569}
1570
Al Viroe3c13922016-03-06 14:03:27 -05001571static struct dentry *__lookup_hash(const struct qstr *name,
Al Viro72bd8662012-06-10 17:17:17 -04001572 struct dentry *base, unsigned int flags)
Al Viroa3255542012-03-30 14:41:51 -04001573{
Al Viro6c51e512016-03-05 20:09:32 -05001574 struct dentry *dentry = lookup_dcache(name, base, flags);
Al Viroa3255542012-03-30 14:41:51 -04001575
Al Viro6c51e512016-03-05 20:09:32 -05001576 if (dentry)
Miklos Szeredibad61182012-03-26 12:54:24 +02001577 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001578
Al Viro6c51e512016-03-05 20:09:32 -05001579 dentry = d_alloc(base, name);
1580 if (unlikely(!dentry))
1581 return ERR_PTR(-ENOMEM);
1582
Al Viro72bd8662012-06-10 17:17:17 -04001583 return lookup_real(base->d_inode, dentry, flags);
Al Viroa3255542012-03-30 14:41:51 -04001584}
1585
Al Viroe97cdc82013-01-24 18:16:00 -05001586static int lookup_fast(struct nameidata *nd,
Al Viro254cf582015-05-05 09:40:46 -04001587 struct path *path, struct inode **inode,
1588 unsigned *seqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589{
Jan Blunck4ac91372008-02-14 19:34:32 -08001590 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001591 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001592 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001593 int err;
1594
Al Viro3cac2602009-08-13 18:27:43 +04001595 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001596 * Rename seqlock is not required here because in the off chance
Al Viro5d0f49c2016-03-05 21:32:53 -05001597 * of a false negative due to a concurrent rename, the caller is
1598 * going to fall back to non-racy lookup.
Nick Pigginb04f7842010-08-18 04:37:34 +10001599 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001600 if (nd->flags & LOOKUP_RCU) {
1601 unsigned seq;
Al Viro766c4cb2015-05-07 19:24:57 -04001602 bool negative;
Linus Torvaldsda53be12013-05-21 15:22:44 -07001603 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
Al Viro5d0f49c2016-03-05 21:32:53 -05001604 if (unlikely(!dentry)) {
1605 if (unlazy_walk(nd, NULL, 0))
1606 return -ECHILD;
Al Viroe9742b52016-03-05 22:04:59 -05001607 return 0;
Al Viro5d0f49c2016-03-05 21:32:53 -05001608 }
Al Viro5a18fff2011-03-11 04:44:53 -05001609
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001610 /*
1611 * This sequence count validates that the inode matches
1612 * the dentry name information from lookup.
1613 */
David Howells63afdfc2015-05-06 15:59:00 +01001614 *inode = d_backing_inode(dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04001615 negative = d_is_negative(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001616 if (unlikely(read_seqcount_retry(&dentry->d_seq, seq)))
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001617 return -ECHILD;
1618
1619 /*
1620 * This sequence count validates that the parent had no
1621 * changes while we did the lookup of the dentry above.
1622 *
1623 * The memory barrier in read_seqcount_begin of child is
1624 * enough, we can use __read_seqcount_retry here.
1625 */
Al Viro5d0f49c2016-03-05 21:32:53 -05001626 if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq)))
Nick Piggin31e6b012011-01-07 17:49:52 +11001627 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001628
Al Viro254cf582015-05-05 09:40:46 -04001629 *seqp = seq;
Al Viro5d0f49c2016-03-05 21:32:53 -05001630 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
Al Viro4ce16ef32012-06-10 16:10:59 -04001631 status = d_revalidate(dentry, nd->flags);
Al Viro5d0f49c2016-03-05 21:32:53 -05001632 if (unlikely(status <= 0)) {
1633 if (unlazy_walk(nd, dentry, seq))
1634 return -ECHILD;
1635 if (status == -ECHILD)
1636 status = d_revalidate(dentry, nd->flags);
1637 } else {
1638 /*
1639 * Note: do negative dentry check after revalidation in
1640 * case that drops it.
1641 */
1642 if (unlikely(negative))
1643 return -ENOENT;
1644 path->mnt = mnt;
1645 path->dentry = dentry;
1646 if (likely(__follow_mount_rcu(nd, path, inode, seqp)))
Al Viroe9742b52016-03-05 22:04:59 -05001647 return 1;
Al Viro5d0f49c2016-03-05 21:32:53 -05001648 if (unlazy_walk(nd, dentry, seq))
1649 return -ECHILD;
Al Viro24643082011-02-15 01:26:22 -05001650 }
Al Viro5a18fff2011-03-11 04:44:53 -05001651 } else {
Al Viroe97cdc82013-01-24 18:16:00 -05001652 dentry = __d_lookup(parent, &nd->last);
Al Viro5d0f49c2016-03-05 21:32:53 -05001653 if (unlikely(!dentry))
Al Viroe9742b52016-03-05 22:04:59 -05001654 return 0;
Al Viro5d0f49c2016-03-05 21:32:53 -05001655 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
1656 status = d_revalidate(dentry, nd->flags);
Nick Piggin31e6b012011-01-07 17:49:52 +11001657 }
Al Viro5a18fff2011-03-11 04:44:53 -05001658 if (unlikely(status <= 0)) {
Al Viroe9742b52016-03-05 22:04:59 -05001659 if (!status)
Al Viro5d0f49c2016-03-05 21:32:53 -05001660 d_invalidate(dentry);
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001661 dput(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001662 return status;
Al Viro5a18fff2011-03-11 04:44:53 -05001663 }
Al Viro766c4cb2015-05-07 19:24:57 -04001664 if (unlikely(d_is_negative(dentry))) {
1665 dput(dentry);
1666 return -ENOENT;
1667 }
Al Viro5d0f49c2016-03-05 21:32:53 -05001668
David Howells9875cf82011-01-14 18:45:21 +00001669 path->mnt = mnt;
1670 path->dentry = dentry;
NeilBrown756daf22015-03-23 13:37:38 +11001671 err = follow_managed(path, nd);
Al Viroe9742b52016-03-05 22:04:59 -05001672 if (likely(err > 0))
David Howells63afdfc2015-05-06 15:59:00 +01001673 *inode = d_backing_inode(path->dentry);
Al Viro84027522015-04-22 10:30:08 -04001674 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001675}
1676
1677/* Fast lookup failed, do it the slow way */
Al Viroe3c13922016-03-06 14:03:27 -05001678static struct dentry *lookup_slow(const struct qstr *name,
1679 struct dentry *dir,
1680 unsigned int flags)
Miklos Szeredi697f5142012-05-21 17:30:05 +02001681{
Al Viro94bdd652016-04-15 02:42:04 -04001682 struct dentry *dentry = ERR_PTR(-ENOENT), *old;
Al Viro19363862016-04-14 19:33:34 -04001683 struct inode *inode = dir->d_inode;
Al Virod9171b92016-04-15 03:33:13 -04001684 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Al Viro19363862016-04-14 19:33:34 -04001685
Al Viro9902af72016-04-15 15:08:36 -04001686 inode_lock_shared(inode);
Al Viro19363862016-04-14 19:33:34 -04001687 /* Don't go there if it's already dead */
Al Viro94bdd652016-04-15 02:42:04 -04001688 if (unlikely(IS_DEADDIR(inode)))
1689 goto out;
1690again:
Al Virod9171b92016-04-15 03:33:13 -04001691 dentry = d_alloc_parallel(dir, name, &wq);
Al Viro94bdd652016-04-15 02:42:04 -04001692 if (IS_ERR(dentry))
1693 goto out;
1694 if (unlikely(!d_in_lookup(dentry))) {
Al Viro949a8522016-03-06 14:20:52 -05001695 if ((dentry->d_flags & DCACHE_OP_REVALIDATE) &&
1696 !(flags & LOOKUP_NO_REVAL)) {
1697 int error = d_revalidate(dentry, flags);
1698 if (unlikely(error <= 0)) {
Al Viro94bdd652016-04-15 02:42:04 -04001699 if (!error) {
Al Viro949a8522016-03-06 14:20:52 -05001700 d_invalidate(dentry);
Al Viro94bdd652016-04-15 02:42:04 -04001701 dput(dentry);
1702 goto again;
1703 }
Al Viro949a8522016-03-06 14:20:52 -05001704 dput(dentry);
1705 dentry = ERR_PTR(error);
1706 }
1707 }
Al Viro94bdd652016-04-15 02:42:04 -04001708 } else {
1709 old = inode->i_op->lookup(inode, dentry, flags);
1710 d_lookup_done(dentry);
1711 if (unlikely(old)) {
1712 dput(dentry);
1713 dentry = old;
Al Viro949a8522016-03-06 14:20:52 -05001714 }
1715 }
Al Viro94bdd652016-04-15 02:42:04 -04001716out:
Al Viro9902af72016-04-15 15:08:36 -04001717 inode_unlock_shared(inode);
Al Viroe3c13922016-03-06 14:03:27 -05001718 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719}
1720
Al Viro52094c82011-02-21 21:34:47 -05001721static inline int may_lookup(struct nameidata *nd)
1722{
1723 if (nd->flags & LOOKUP_RCU) {
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07001724 int err = inode_permission2(nd->path.mnt, nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001725 if (err != -ECHILD)
1726 return err;
Al Viro6e9918b2015-05-05 09:26:05 -04001727 if (unlazy_walk(nd, NULL, 0))
Al Viro52094c82011-02-21 21:34:47 -05001728 return -ECHILD;
1729 }
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07001730 return inode_permission2(nd->path.mnt, nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001731}
1732
Al Viro9856fa12011-03-04 14:22:06 -05001733static inline int handle_dots(struct nameidata *nd, int type)
1734{
1735 if (type == LAST_DOTDOT) {
Al Viro9e6697e2015-12-05 20:07:21 -05001736 if (!nd->root.mnt)
1737 set_root(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001738 if (nd->flags & LOOKUP_RCU) {
Al Viro70291ae2015-05-04 07:53:00 -04001739 return follow_dotdot_rcu(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001740 } else
Eric W. Biederman397d4252015-08-15 20:27:13 -05001741 return follow_dotdot(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001742 }
1743 return 0;
1744}
1745
Al Viro181548c2015-05-07 19:54:34 -04001746static int pick_link(struct nameidata *nd, struct path *link,
1747 struct inode *inode, unsigned seq)
Al Virod63ff282015-05-04 18:13:23 -04001748{
Al Viro626de992015-05-04 18:26:59 -04001749 int error;
Al Viro1cf26652015-05-06 16:01:56 -04001750 struct saved *last;
NeilBrown756daf22015-03-23 13:37:38 +11001751 if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) {
Al Viro626de992015-05-04 18:26:59 -04001752 path_to_nameidata(link, nd);
1753 return -ELOOP;
1754 }
Al Virobc40aee2015-05-09 13:04:24 -04001755 if (!(nd->flags & LOOKUP_RCU)) {
Al Viro79733872015-05-09 12:55:43 -04001756 if (link->mnt == nd->path.mnt)
1757 mntget(link->mnt);
Al Virod63ff282015-05-04 18:13:23 -04001758 }
Al Viro626de992015-05-04 18:26:59 -04001759 error = nd_alloc_stack(nd);
1760 if (unlikely(error)) {
Al Virobc40aee2015-05-09 13:04:24 -04001761 if (error == -ECHILD) {
1762 if (unlikely(unlazy_link(nd, link, seq)))
1763 return -ECHILD;
1764 error = nd_alloc_stack(nd);
1765 }
1766 if (error) {
1767 path_put(link);
1768 return error;
1769 }
Al Viro626de992015-05-04 18:26:59 -04001770 }
1771
Al Viroab104922015-05-10 11:50:01 -04001772 last = nd->stack + nd->depth++;
Al Viro1cf26652015-05-06 16:01:56 -04001773 last->link = *link;
Al Virofceef392015-12-29 15:58:39 -05001774 clear_delayed_call(&last->done);
1775 nd->link_inode = inode;
Al Viro0450b2d2015-05-08 13:23:53 -04001776 last->seq = seq;
Al Virod63ff282015-05-04 18:13:23 -04001777 return 1;
1778}
1779
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001780/*
1781 * Do we need to follow links? We _really_ want to be able
1782 * to do this check without having to look at inode->i_op,
1783 * so we keep a cache of "no, this doesn't need follow_link"
1784 * for the common case.
1785 */
Al Viro254cf582015-05-05 09:40:46 -04001786static inline int should_follow_link(struct nameidata *nd, struct path *link,
Al Viro181548c2015-05-07 19:54:34 -04001787 int follow,
1788 struct inode *inode, unsigned seq)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001789{
Al Virod63ff282015-05-04 18:13:23 -04001790 if (likely(!d_is_symlink(link->dentry)))
1791 return 0;
1792 if (!follow)
1793 return 0;
Al Viroa7f77542016-02-27 19:31:01 -05001794 /* make sure that d_is_symlink above matches inode */
1795 if (nd->flags & LOOKUP_RCU) {
1796 if (read_seqcount_retry(&link->dentry->d_seq, seq))
1797 return -ECHILD;
1798 }
Al Viro181548c2015-05-07 19:54:34 -04001799 return pick_link(nd, link, inode, seq);
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001800}
1801
Al Viro4693a542015-05-04 17:47:11 -04001802enum {WALK_GET = 1, WALK_PUT = 2};
1803
1804static int walk_component(struct nameidata *nd, int flags)
Al Viroce57dfc2011-03-13 19:58:58 -04001805{
Al Virocaa85632015-04-22 17:52:47 -04001806 struct path path;
Al Viroce57dfc2011-03-13 19:58:58 -04001807 struct inode *inode;
Al Viro254cf582015-05-05 09:40:46 -04001808 unsigned seq;
Al Viroce57dfc2011-03-13 19:58:58 -04001809 int err;
1810 /*
1811 * "." and ".." are special - ".." especially so because it has
1812 * to be able to know about the current root directory and
1813 * parent relationships.
1814 */
Al Viro4693a542015-05-04 17:47:11 -04001815 if (unlikely(nd->last_type != LAST_NORM)) {
1816 err = handle_dots(nd, nd->last_type);
1817 if (flags & WALK_PUT)
1818 put_link(nd);
1819 return err;
1820 }
Al Viro254cf582015-05-05 09:40:46 -04001821 err = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05001822 if (unlikely(err <= 0)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001823 if (err < 0)
Al Virof0a9ba72015-05-04 07:59:30 -04001824 return err;
Al Viroe3c13922016-03-06 14:03:27 -05001825 path.dentry = lookup_slow(&nd->last, nd->path.dentry,
1826 nd->flags);
1827 if (IS_ERR(path.dentry))
1828 return PTR_ERR(path.dentry);
Al Viro7500c382016-03-31 00:23:05 -04001829
Al Viroe3c13922016-03-06 14:03:27 -05001830 path.mnt = nd->path.mnt;
1831 err = follow_managed(&path, nd);
1832 if (unlikely(err < 0))
Al Virof0a9ba72015-05-04 07:59:30 -04001833 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001834
Al Viro7500c382016-03-31 00:23:05 -04001835 if (unlikely(d_is_negative(path.dentry))) {
1836 path_to_nameidata(&path, nd);
1837 return -ENOENT;
1838 }
1839
Al Viro254cf582015-05-05 09:40:46 -04001840 seq = 0; /* we are already out of RCU mode */
Al Virod4565642016-02-27 19:23:16 -05001841 inode = d_backing_inode(path.dentry);
Al Viroce57dfc2011-03-13 19:58:58 -04001842 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001843
Al Viro4693a542015-05-04 17:47:11 -04001844 if (flags & WALK_PUT)
1845 put_link(nd);
Al Viro181548c2015-05-07 19:54:34 -04001846 err = should_follow_link(nd, &path, flags & WALK_GET, inode, seq);
Al Virod63ff282015-05-04 18:13:23 -04001847 if (unlikely(err))
1848 return err;
Al Virocaa85632015-04-22 17:52:47 -04001849 path_to_nameidata(&path, nd);
Al Viroce57dfc2011-03-13 19:58:58 -04001850 nd->inode = inode;
Al Viro254cf582015-05-05 09:40:46 -04001851 nd->seq = seq;
Al Viroce57dfc2011-03-13 19:58:58 -04001852 return 0;
1853}
1854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855/*
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001856 * We can do the critical dentry name comparison and hashing
1857 * operations one word at a time, but we are limited to:
1858 *
1859 * - Architectures with fast unaligned word accesses. We could
1860 * do a "get_unaligned()" if this helps and is sufficiently
1861 * fast.
1862 *
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001863 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1864 * do not trap on the (extremely unlikely) case of a page
1865 * crossing operation.
1866 *
1867 * - Furthermore, we need an efficient 64-bit compile for the
1868 * 64-bit case in order to generate the "number of bytes in
1869 * the final mask". Again, that could be replaced with a
1870 * efficient population count instruction or similar.
1871 */
1872#ifdef CONFIG_DCACHE_WORD_ACCESS
1873
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001874#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001875
George Spelvin468a9422016-05-26 22:11:51 -04001876#ifdef HASH_MIX
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001877
George Spelvin468a9422016-05-26 22:11:51 -04001878/* Architecture provides HASH_MIX and fold_hash() in <asm/hash.h> */
1879
1880#elif defined(CONFIG_64BIT)
George Spelvin2a18da7a2016-05-23 07:43:58 -04001881/*
1882 * Register pressure in the mixing function is an issue, particularly
1883 * on 32-bit x86, but almost any function requires one state value and
1884 * one temporary. Instead, use a function designed for two state values
1885 * and no temporaries.
1886 *
1887 * This function cannot create a collision in only two iterations, so
1888 * we have two iterations to achieve avalanche. In those two iterations,
1889 * we have six layers of mixing, which is enough to spread one bit's
1890 * influence out to 2^6 = 64 state bits.
1891 *
1892 * Rotate constants are scored by considering either 64 one-bit input
1893 * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the
1894 * probability of that delta causing a change to each of the 128 output
1895 * bits, using a sample of random initial states.
1896 *
1897 * The Shannon entropy of the computed probabilities is then summed
1898 * to produce a score. Ideally, any input change has a 50% chance of
1899 * toggling any given output bit.
1900 *
1901 * Mixing scores (in bits) for (12,45):
1902 * Input delta: 1-bit 2-bit
1903 * 1 round: 713.3 42542.6
1904 * 2 rounds: 2753.7 140389.8
1905 * 3 rounds: 5954.1 233458.2
1906 * 4 rounds: 7862.6 256672.2
1907 * Perfect: 8192 258048
1908 * (64*128) (64*63/2 * 128)
1909 */
1910#define HASH_MIX(x, y, a) \
1911 ( x ^= (a), \
1912 y ^= x, x = rol64(x,12),\
1913 x += y, y = rol64(y,45),\
1914 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001915
George Spelvin0fed3ac2016-05-02 06:31:01 -04001916/*
George Spelvin2a18da7a2016-05-23 07:43:58 -04001917 * Fold two longs into one 32-bit hash value. This must be fast, but
1918 * latency isn't quite as critical, as there is a fair bit of additional
1919 * work done before the hash value is used.
George Spelvin0fed3ac2016-05-02 06:31:01 -04001920 */
George Spelvin2a18da7a2016-05-23 07:43:58 -04001921static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001922{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001923 y ^= x * GOLDEN_RATIO_64;
1924 y *= GOLDEN_RATIO_64;
1925 return y >> 32;
George Spelvin0fed3ac2016-05-02 06:31:01 -04001926}
1927
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001928#else /* 32-bit case */
1929
George Spelvin2a18da7a2016-05-23 07:43:58 -04001930/*
1931 * Mixing scores (in bits) for (7,20):
1932 * Input delta: 1-bit 2-bit
1933 * 1 round: 330.3 9201.6
1934 * 2 rounds: 1246.4 25475.4
1935 * 3 rounds: 1907.1 31295.1
1936 * 4 rounds: 2042.3 31718.6
1937 * Perfect: 2048 31744
1938 * (32*64) (32*31/2 * 64)
1939 */
1940#define HASH_MIX(x, y, a) \
1941 ( x ^= (a), \
1942 y ^= x, x = rol32(x, 7),\
1943 x += y, y = rol32(y,20),\
1944 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001945
George Spelvin2a18da7a2016-05-23 07:43:58 -04001946static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001947{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001948 /* Use arch-optimized multiply if one exists */
1949 return __hash_32(y ^ __hash_32(x));
George Spelvin0fed3ac2016-05-02 06:31:01 -04001950}
1951
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001952#endif
1953
George Spelvin2a18da7a2016-05-23 07:43:58 -04001954/*
1955 * Return the hash of a string of known length. This is carfully
1956 * designed to match hash_name(), which is the more critical function.
1957 * In particular, we must end by hashing a final word containing 0..7
1958 * payload bytes, to match the way that hash_name() iterates until it
1959 * finds the delimiter after the name.
1960 */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001961unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001962{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001963 unsigned long a, x = 0, y = (unsigned long)salt;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001964
1965 for (;;) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001966 if (!len)
1967 goto done;
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001968 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001969 if (len < sizeof(unsigned long))
1970 break;
George Spelvin2a18da7a2016-05-23 07:43:58 -04001971 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001972 name += sizeof(unsigned long);
1973 len -= sizeof(unsigned long);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001974 }
George Spelvin2a18da7a2016-05-23 07:43:58 -04001975 x ^= a & bytemask_from_count(len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001976done:
George Spelvin2a18da7a2016-05-23 07:43:58 -04001977 return fold_hash(x, y);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001978}
1979EXPORT_SYMBOL(full_name_hash);
1980
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001981/* Return the "hash_len" (hash and length) of a null-terminated string */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001982u64 hashlen_string(const void *salt, const char *name)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001983{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001984 unsigned long a = 0, x = 0, y = (unsigned long)salt;
1985 unsigned long adata, mask, len;
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001986 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1987
Linus Torvalds8387ff22016-06-10 07:51:30 -07001988 len = 0;
1989 goto inside;
1990
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001991 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001992 HASH_MIX(x, y, a);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001993 len += sizeof(unsigned long);
Linus Torvalds8387ff22016-06-10 07:51:30 -07001994inside:
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001995 a = load_unaligned_zeropad(name+len);
1996 } while (!has_zero(a, &adata, &constants));
1997
1998 adata = prep_zero_mask(a, adata, &constants);
1999 mask = create_zero_mask(adata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04002000 x ^= a & zero_bytemask(mask);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002001
George Spelvin2a18da7a2016-05-23 07:43:58 -04002002 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002003}
2004EXPORT_SYMBOL(hashlen_string);
2005
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002006/*
2007 * Calculate the length and hash of the path component, and
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002008 * return the "hash_len" as the result.
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002009 */
Linus Torvalds8387ff22016-06-10 07:51:30 -07002010static inline u64 hash_name(const void *salt, const char *name)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002011{
Linus Torvalds8387ff22016-06-10 07:51:30 -07002012 unsigned long a = 0, b, x = 0, y = (unsigned long)salt;
2013 unsigned long adata, bdata, mask, len;
Linus Torvalds36126f82012-05-26 10:43:17 -07002014 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002015
Linus Torvalds8387ff22016-06-10 07:51:30 -07002016 len = 0;
2017 goto inside;
2018
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002019 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04002020 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002021 len += sizeof(unsigned long);
Linus Torvalds8387ff22016-06-10 07:51:30 -07002022inside:
Linus Torvaldse419b4c2012-05-03 10:16:43 -07002023 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07002024 b = a ^ REPEAT_BYTE('/');
2025 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002026
Linus Torvalds36126f82012-05-26 10:43:17 -07002027 adata = prep_zero_mask(a, adata, &constants);
2028 bdata = prep_zero_mask(b, bdata, &constants);
Linus Torvalds36126f82012-05-26 10:43:17 -07002029 mask = create_zero_mask(adata | bdata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04002030 x ^= a & zero_bytemask(mask);
Linus Torvalds36126f82012-05-26 10:43:17 -07002031
George Spelvin2a18da7a2016-05-23 07:43:58 -04002032 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002033}
2034
George Spelvin2a18da7a2016-05-23 07:43:58 -04002035#else /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002036
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002037/* Return the hash of a string of known length */
Linus Torvalds8387ff22016-06-10 07:51:30 -07002038unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
Linus Torvalds0145acc2012-03-02 14:32:59 -08002039{
Linus Torvalds8387ff22016-06-10 07:51:30 -07002040 unsigned long hash = init_name_hash(salt);
Linus Torvalds0145acc2012-03-02 14:32:59 -08002041 while (len--)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002042 hash = partial_name_hash((unsigned char)*name++, hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08002043 return end_name_hash(hash);
2044}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08002045EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08002046
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002047/* Return the "hash_len" (hash and length) of a null-terminated string */
Linus Torvalds8387ff22016-06-10 07:51:30 -07002048u64 hashlen_string(const void *salt, const char *name)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002049{
Linus Torvalds8387ff22016-06-10 07:51:30 -07002050 unsigned long hash = init_name_hash(salt);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002051 unsigned long len = 0, c;
2052
2053 c = (unsigned char)*name;
George Spelvine0ab7af2016-05-29 08:05:56 -04002054 while (c) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002055 len++;
2056 hash = partial_name_hash(c, hash);
2057 c = (unsigned char)name[len];
George Spelvine0ab7af2016-05-29 08:05:56 -04002058 }
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002059 return hashlen_create(end_name_hash(hash), len);
2060}
George Spelvinf2a031b2016-05-29 01:26:41 -04002061EXPORT_SYMBOL(hashlen_string);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002062
Linus Torvalds3ddcd052011-08-06 22:45:50 -07002063/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002064 * We know there's a real path component here of at least
2065 * one character.
2066 */
Linus Torvalds8387ff22016-06-10 07:51:30 -07002067static inline u64 hash_name(const void *salt, const char *name)
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002068{
Linus Torvalds8387ff22016-06-10 07:51:30 -07002069 unsigned long hash = init_name_hash(salt);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002070 unsigned long len = 0, c;
2071
2072 c = (unsigned char)*name;
2073 do {
2074 len++;
2075 hash = partial_name_hash(c, hash);
2076 c = (unsigned char)name[len];
2077 } while (c && c != '/');
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002078 return hashlen_create(end_name_hash(hash), len);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002079}
2080
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002081#endif
2082
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002083/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01002085 * This is the basic name resolution function, turning a pathname into
2086 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01002088 * Returns 0 and nd will have valid dentry and mnt on success.
2089 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 */
Al Viro6de88d72009-08-09 01:41:57 +04002091static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 int err;
Al Viro32cd7462015-04-18 20:30:49 -04002094
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 while (*name=='/')
2096 name++;
2097 if (!*name)
Al Viro9e18f102015-04-18 20:44:34 -04002098 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 /* At this point we know we have a real path component. */
2101 for(;;) {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002102 u64 hash_len;
Al Virofe479a52011-02-22 15:10:03 -05002103 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
Al Viro52094c82011-02-21 21:34:47 -05002105 err = may_lookup(nd);
George Spelvin2a18da7a2016-05-23 07:43:58 -04002106 if (err)
Al Viro3595e232015-05-09 16:54:45 -04002107 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Linus Torvalds8387ff22016-06-10 07:51:30 -07002109 hash_len = hash_name(nd->path.dentry, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
Al Virofe479a52011-02-22 15:10:03 -05002111 type = LAST_NORM;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002112 if (name[0] == '.') switch (hashlen_len(hash_len)) {
Al Virofe479a52011-02-22 15:10:03 -05002113 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002114 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05002115 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05002116 nd->flags |= LOOKUP_JUMPED;
2117 }
Al Virofe479a52011-02-22 15:10:03 -05002118 break;
2119 case 1:
2120 type = LAST_DOT;
2121 }
Al Viro5a202bc2011-03-08 14:17:44 -05002122 if (likely(type == LAST_NORM)) {
2123 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05002124 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05002125 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
James Hogana060dc52014-09-16 13:07:35 +01002126 struct qstr this = { { .hash_len = hash_len }, .name = name };
Linus Torvaldsda53be12013-05-21 15:22:44 -07002127 err = parent->d_op->d_hash(parent, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002128 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002129 return err;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002130 hash_len = this.hash_len;
2131 name = this.name;
Al Viro5a202bc2011-03-08 14:17:44 -05002132 }
2133 }
Al Virofe479a52011-02-22 15:10:03 -05002134
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002135 nd->last.hash_len = hash_len;
2136 nd->last.name = name;
Al Viro5f4a6a62013-01-24 18:04:22 -05002137 nd->last_type = type;
2138
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002139 name += hashlen_len(hash_len);
2140 if (!*name)
Al Virobdf6cbf2015-04-18 20:21:40 -04002141 goto OK;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002142 /*
2143 * If it wasn't NUL, we know it was '/'. Skip that
2144 * slash, and continue until no more slashes.
2145 */
2146 do {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002147 name++;
2148 } while (unlikely(*name == '/'));
Al Viro8620c232015-05-04 08:58:35 -04002149 if (unlikely(!*name)) {
2150OK:
Al Viro368ee9b2015-05-08 17:19:59 -04002151 /* pathname body, done */
Al Viro8620c232015-05-04 08:58:35 -04002152 if (!nd->depth)
2153 return 0;
2154 name = nd->stack[nd->depth - 1].name;
Al Viro368ee9b2015-05-08 17:19:59 -04002155 /* trailing symlink, done */
Al Viro8620c232015-05-04 08:58:35 -04002156 if (!name)
2157 return 0;
2158 /* last component of nested symlink */
Al Viro4693a542015-05-04 17:47:11 -04002159 err = walk_component(nd, WALK_GET | WALK_PUT);
Al Viro8620c232015-05-04 08:58:35 -04002160 } else {
Al Viro4693a542015-05-04 17:47:11 -04002161 err = walk_component(nd, WALK_GET);
Al Viro8620c232015-05-04 08:58:35 -04002162 }
Al Viroce57dfc2011-03-13 19:58:58 -04002163 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002164 return err;
Al Virofe479a52011-02-22 15:10:03 -05002165
Al Viroce57dfc2011-03-13 19:58:58 -04002166 if (err) {
Al Viro626de992015-05-04 18:26:59 -04002167 const char *s = get_link(nd);
Al Viro5a460272015-04-17 23:44:45 -04002168
Viresh Kumara1c83682015-08-12 15:59:44 +05302169 if (IS_ERR(s))
Al Viro3595e232015-05-09 16:54:45 -04002170 return PTR_ERR(s);
Al Virod40bcc02015-04-18 20:03:03 -04002171 err = 0;
2172 if (unlikely(!s)) {
2173 /* jumped */
Al Virob9ff4422015-05-02 20:19:23 -04002174 put_link(nd);
Al Virod40bcc02015-04-18 20:03:03 -04002175 } else {
Al Virofab51e82015-05-10 11:01:00 -04002176 nd->stack[nd->depth - 1].name = name;
2177 name = s;
2178 continue;
Al Virod40bcc02015-04-18 20:03:03 -04002179 }
Nick Piggin31e6b012011-01-07 17:49:52 +11002180 }
Al Viro97242f92015-08-01 19:59:28 -04002181 if (unlikely(!d_can_lookup(nd->path.dentry))) {
2182 if (nd->flags & LOOKUP_RCU) {
2183 if (unlazy_walk(nd, NULL, 0))
2184 return -ECHILD;
2185 }
Al Viro3595e232015-05-09 16:54:45 -04002186 return -ENOTDIR;
Al Viro97242f92015-08-01 19:59:28 -04002187 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189}
2190
Al Viroc8a53ee2015-05-12 18:43:07 -04002191static const char *path_init(struct nameidata *nd, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192{
Prasanna Medaea3834d2005-04-29 16:00:17 +01002193 int retval = 0;
Al Viroc8a53ee2015-05-12 18:43:07 -04002194 const char *s = nd->name->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Linus Torvalds012e79b2017-04-02 17:10:08 -07002196 if (!*s)
2197 flags &= ~LOOKUP_RCU;
2198
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro980f3ea2014-11-20 14:20:24 -05002200 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05002202 if (flags & LOOKUP_ROOT) {
David Howellsb18825a2013-09-12 19:22:53 +01002203 struct dentry *root = nd->root.dentry;
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002204 struct vfsmount *mnt = nd->root.mnt;
David Howellsb18825a2013-09-12 19:22:53 +01002205 struct inode *inode = root->d_inode;
Al Virofd2f7cb2015-02-22 20:07:13 -05002206 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002207 if (!d_can_lookup(root))
Al Viro368ee9b2015-05-08 17:19:59 -04002208 return ERR_PTR(-ENOTDIR);
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002209 retval = inode_permission2(mnt, inode, MAY_EXEC);
Al Viro73d049a2011-03-11 12:08:24 -05002210 if (retval)
Al Viro368ee9b2015-05-08 17:19:59 -04002211 return ERR_PTR(retval);
Al Viro73d049a2011-03-11 12:08:24 -05002212 }
Al Viro5b6ca022011-03-09 23:04:47 -05002213 nd->path = nd->root;
2214 nd->inode = inode;
2215 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002216 rcu_read_lock();
Al Viro5b6ca022011-03-09 23:04:47 -05002217 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro8f47a0162015-05-09 19:02:01 -04002218 nd->root_seq = nd->seq;
Al Viro48a066e2013-09-29 22:06:07 -04002219 nd->m_seq = read_seqbegin(&mount_lock);
Al Viro5b6ca022011-03-09 23:04:47 -05002220 } else {
2221 path_get(&nd->path);
2222 }
Al Viro368ee9b2015-05-08 17:19:59 -04002223 return s;
Al Viro5b6ca022011-03-09 23:04:47 -05002224 }
2225
Al Viro2a737872009-04-07 11:49:53 -04002226 nd->root.mnt = NULL;
Al Viro248fb5b2015-12-05 20:51:58 -05002227 nd->path.mnt = NULL;
2228 nd->path.dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
Al Viro48a066e2013-09-29 22:06:07 -04002230 nd->m_seq = read_seqbegin(&mount_lock);
Al Virofd2f7cb2015-02-22 20:07:13 -05002231 if (*s == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05002232 if (flags & LOOKUP_RCU)
Al Viro8b61e742013-11-08 12:45:01 -05002233 rcu_read_lock();
Al Viro9e6697e2015-12-05 20:07:21 -05002234 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05002235 if (likely(!nd_jump_root(nd)))
Al Viroef55d912015-12-05 20:25:06 -05002236 return s;
Al Viro248fb5b2015-12-05 20:51:58 -05002237 nd->root.mnt = NULL;
Al Viroef55d912015-12-05 20:25:06 -05002238 rcu_read_unlock();
2239 return ERR_PTR(-ECHILD);
Al Viroc8a53ee2015-05-12 18:43:07 -04002240 } else if (nd->dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05002241 if (flags & LOOKUP_RCU) {
2242 struct fs_struct *fs = current->fs;
2243 unsigned seq;
2244
Al Viro8b61e742013-11-08 12:45:01 -05002245 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05002246
2247 do {
2248 seq = read_seqcount_begin(&fs->seq);
2249 nd->path = fs->pwd;
Al Viroef55d912015-12-05 20:25:06 -05002250 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002251 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
2252 } while (read_seqcount_retry(&fs->seq, seq));
2253 } else {
2254 get_fs_pwd(current->fs, &nd->path);
Al Viroef55d912015-12-05 20:25:06 -05002255 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002256 }
Al Viroef55d912015-12-05 20:25:06 -05002257 return s;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002258 } else {
Jeff Layton582aa642012-12-11 08:56:16 -05002259 /* Caller must check execute permissions on the starting path component */
Al Viroc8a53ee2015-05-12 18:43:07 -04002260 struct fd f = fdget_raw(nd->dfd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002261 struct dentry *dentry;
2262
Al Viro2903ff02012-08-28 12:52:22 -04002263 if (!f.file)
Al Viro368ee9b2015-05-08 17:19:59 -04002264 return ERR_PTR(-EBADF);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002265
Al Viro2903ff02012-08-28 12:52:22 -04002266 dentry = f.file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002267
Al Virofd2f7cb2015-02-22 20:07:13 -05002268 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002269 if (!d_can_lookup(dentry)) {
Al Viro2903ff02012-08-28 12:52:22 -04002270 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002271 return ERR_PTR(-ENOTDIR);
Al Viro2903ff02012-08-28 12:52:22 -04002272 }
Al Virof52e0c12011-03-14 18:56:51 -04002273 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002274
Al Viro2903ff02012-08-28 12:52:22 -04002275 nd->path = f.file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05002276 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002277 rcu_read_lock();
Al Viro34a26b92015-05-11 08:05:05 -04002278 nd->inode = nd->path.dentry->d_inode;
2279 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viroe41f7d42011-02-22 14:02:58 -05002280 } else {
Al Viro2903ff02012-08-28 12:52:22 -04002281 path_get(&nd->path);
Al Viro34a26b92015-05-11 08:05:05 -04002282 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002283 }
Al Viro34a26b92015-05-11 08:05:05 -04002284 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002285 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 }
Al Viro9b4a9b12009-04-07 11:44:16 -04002287}
2288
Al Viro3bdba282015-05-08 17:37:07 -04002289static const char *trailing_symlink(struct nameidata *nd)
Al Viro95fa25d2015-04-22 13:46:57 -04002290{
2291 const char *s;
Al Virofec2fa22015-05-06 15:58:18 -04002292 int error = may_follow_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002293 if (unlikely(error))
Al Viro3bdba282015-05-08 17:37:07 -04002294 return ERR_PTR(error);
Al Viro95fa25d2015-04-22 13:46:57 -04002295 nd->flags |= LOOKUP_PARENT;
Al Virofab51e82015-05-10 11:01:00 -04002296 nd->stack[0].name = NULL;
Al Viro3b2e7f72015-04-19 00:53:50 -04002297 s = get_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002298 return s ? s : "";
Al Viro95fa25d2015-04-22 13:46:57 -04002299}
2300
Al Virocaa85632015-04-22 17:52:47 -04002301static inline int lookup_last(struct nameidata *nd)
Al Virobd92d7f2011-03-14 19:54:59 -04002302{
2303 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2304 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2305
2306 nd->flags &= ~LOOKUP_PARENT;
Al Virodeb106c2015-05-08 18:05:21 -04002307 return walk_component(nd,
Al Viro4693a542015-05-04 17:47:11 -04002308 nd->flags & LOOKUP_FOLLOW
2309 ? nd->depth
2310 ? WALK_PUT | WALK_GET
2311 : WALK_GET
2312 : 0);
Al Virobd92d7f2011-03-14 19:54:59 -04002313}
2314
Al Viro9b4a9b12009-04-07 11:44:16 -04002315/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002316static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path)
Al Viro9b4a9b12009-04-07 11:44:16 -04002317{
Al Viroc8a53ee2015-05-12 18:43:07 -04002318 const char *s = path_init(nd, flags);
Al Virobd92d7f2011-03-14 19:54:59 -04002319 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11002320
Al Viro368ee9b2015-05-08 17:19:59 -04002321 if (IS_ERR(s))
2322 return PTR_ERR(s);
Al Viro3bdba282015-05-08 17:37:07 -04002323 while (!(err = link_path_walk(s, nd))
2324 && ((err = lookup_last(nd)) > 0)) {
2325 s = trailing_symlink(nd);
2326 if (IS_ERR(s)) {
2327 err = PTR_ERR(s);
2328 break;
Al Virobd92d7f2011-03-14 19:54:59 -04002329 }
2330 }
Al Viro9f1fafe2011-03-25 11:00:12 -04002331 if (!err)
2332 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002333
Al Virodeb106c2015-05-08 18:05:21 -04002334 if (!err && nd->flags & LOOKUP_DIRECTORY)
2335 if (!d_can_lookup(nd->path.dentry))
Al Virobd23a532011-03-23 09:56:30 -04002336 err = -ENOTDIR;
Al Viro625b6d12015-05-12 16:36:12 -04002337 if (!err) {
2338 *path = nd->path;
2339 nd->path.mnt = NULL;
2340 nd->path.dentry = NULL;
2341 }
2342 terminate_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002343 return err;
Al Viroee0827c2011-02-21 23:38:09 -05002344}
Nick Piggin31e6b012011-01-07 17:49:52 +11002345
Al Viro625b6d12015-05-12 16:36:12 -04002346static int filename_lookup(int dfd, struct filename *name, unsigned flags,
Al Viro9ad1aaa2015-05-12 16:44:39 -04002347 struct path *path, struct path *root)
Jeff Layton873f1ee2012-10-10 15:25:29 -04002348{
Al Viro894bc8c2015-05-02 07:16:16 -04002349 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002350 struct nameidata nd;
Al Viroabc9f5b2015-05-12 16:53:42 -04002351 if (IS_ERR(name))
2352 return PTR_ERR(name);
Al Viro9ad1aaa2015-05-12 16:44:39 -04002353 if (unlikely(root)) {
2354 nd.root = *root;
2355 flags |= LOOKUP_ROOT;
2356 }
Al Viro9883d182015-05-13 07:28:08 -04002357 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002358 retval = path_lookupat(&nd, flags | LOOKUP_RCU, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002359 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002360 retval = path_lookupat(&nd, flags, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002361 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002362 retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002363
2364 if (likely(!retval))
Al Viro625b6d12015-05-12 16:36:12 -04002365 audit_inode(name, path->dentry, flags & LOOKUP_PARENT);
Al Viro9883d182015-05-13 07:28:08 -04002366 restore_nameidata();
Al Viroe4bd1c12015-05-12 16:40:39 -04002367 putname(name);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002368 return retval;
2369}
2370
Al Viro8bcb77f2015-05-08 16:59:20 -04002371/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002372static int path_parentat(struct nameidata *nd, unsigned flags,
Al Viro391172c2015-05-09 11:19:16 -04002373 struct path *parent)
Al Viro8bcb77f2015-05-08 16:59:20 -04002374{
Al Viroc8a53ee2015-05-12 18:43:07 -04002375 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002376 int err;
2377 if (IS_ERR(s))
2378 return PTR_ERR(s);
2379 err = link_path_walk(s, nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002380 if (!err)
2381 err = complete_walk(nd);
Al Viro391172c2015-05-09 11:19:16 -04002382 if (!err) {
2383 *parent = nd->path;
2384 nd->path.mnt = NULL;
2385 nd->path.dentry = NULL;
2386 }
2387 terminate_walk(nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002388 return err;
2389}
2390
Al Viro5c31b6c2015-05-12 17:32:54 -04002391static struct filename *filename_parentat(int dfd, struct filename *name,
Al Viro391172c2015-05-09 11:19:16 -04002392 unsigned int flags, struct path *parent,
2393 struct qstr *last, int *type)
Al Viro8bcb77f2015-05-08 16:59:20 -04002394{
2395 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002396 struct nameidata nd;
Al Viro8bcb77f2015-05-08 16:59:20 -04002397
Al Viro5c31b6c2015-05-12 17:32:54 -04002398 if (IS_ERR(name))
2399 return name;
Al Viro9883d182015-05-13 07:28:08 -04002400 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002401 retval = path_parentat(&nd, flags | LOOKUP_RCU, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002402 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002403 retval = path_parentat(&nd, flags, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002404 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002405 retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent);
Al Viro391172c2015-05-09 11:19:16 -04002406 if (likely(!retval)) {
2407 *last = nd.last;
2408 *type = nd.last_type;
2409 audit_inode(name, parent->dentry, LOOKUP_PARENT);
Al Viro5c31b6c2015-05-12 17:32:54 -04002410 } else {
2411 putname(name);
2412 name = ERR_PTR(retval);
Al Viro391172c2015-05-09 11:19:16 -04002413 }
Al Viro9883d182015-05-13 07:28:08 -04002414 restore_nameidata();
Al Viro5c31b6c2015-05-12 17:32:54 -04002415 return name;
Al Viro8bcb77f2015-05-08 16:59:20 -04002416}
2417
Al Viro79714f72012-06-15 03:01:42 +04002418/* does lookup, returns the object with parent locked */
2419struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002420{
Al Viro5c31b6c2015-05-12 17:32:54 -04002421 struct filename *filename;
2422 struct dentry *d;
Al Viro391172c2015-05-09 11:19:16 -04002423 struct qstr last;
2424 int type;
Paul Moore51689102015-01-22 00:00:03 -05002425
Al Viro5c31b6c2015-05-12 17:32:54 -04002426 filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path,
2427 &last, &type);
Paul Moore51689102015-01-22 00:00:03 -05002428 if (IS_ERR(filename))
2429 return ERR_CAST(filename);
Al Viro5c31b6c2015-05-12 17:32:54 -04002430 if (unlikely(type != LAST_NORM)) {
Al Viro391172c2015-05-09 11:19:16 -04002431 path_put(path);
Al Viro5c31b6c2015-05-12 17:32:54 -04002432 putname(filename);
2433 return ERR_PTR(-EINVAL);
Al Viro79714f72012-06-15 03:01:42 +04002434 }
Al Viro59551022016-01-22 15:40:57 -05002435 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04002436 d = __lookup_hash(&last, path->dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04002437 if (IS_ERR(d)) {
Al Viro59551022016-01-22 15:40:57 -05002438 inode_unlock(path->dentry->d_inode);
Al Viro391172c2015-05-09 11:19:16 -04002439 path_put(path);
Al Viro79714f72012-06-15 03:01:42 +04002440 }
Paul Moore51689102015-01-22 00:00:03 -05002441 putname(filename);
Al Viro79714f72012-06-15 03:01:42 +04002442 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002443}
2444
Al Virod1811462008-08-02 00:49:18 -04002445int kern_path(const char *name, unsigned int flags, struct path *path)
2446{
Al Viroabc9f5b2015-05-12 16:53:42 -04002447 return filename_lookup(AT_FDCWD, getname_kernel(name),
2448 flags, path, NULL);
Al Virod1811462008-08-02 00:49:18 -04002449}
Al Viro4d359502014-03-14 12:20:17 -04002450EXPORT_SYMBOL(kern_path);
Al Virod1811462008-08-02 00:49:18 -04002451
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002452/**
2453 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2454 * @dentry: pointer to dentry of the base directory
2455 * @mnt: pointer to vfs mount of the base directory
2456 * @name: pointer to file name
2457 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002458 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002459 */
2460int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2461 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002462 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002463{
Al Viro9ad1aaa2015-05-12 16:44:39 -04002464 struct path root = {.mnt = mnt, .dentry = dentry};
Al Viro9ad1aaa2015-05-12 16:44:39 -04002465 /* the first argument of filename_lookup() is ignored with root */
Al Viroabc9f5b2015-05-12 16:53:42 -04002466 return filename_lookup(AT_FDCWD, getname_kernel(name),
2467 flags , path, &root);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002468}
Al Viro4d359502014-03-14 12:20:17 -04002469EXPORT_SYMBOL(vfs_path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002470
Christoph Hellwigeead1912007-10-16 23:25:38 -07002471/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002472 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002473 * @name: pathname component to lookup
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002474 * @mnt: mount we are looking up on
Christoph Hellwigeead1912007-10-16 23:25:38 -07002475 * @base: base directory to lookup from
2476 * @len: maximum length @len should be interpreted to
2477 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002478 * Note that this routine is purely a helper for filesystem usage and should
Al Viro9e7543e2015-02-23 02:49:48 -05002479 * not be called by generic code.
NeilBrownbbddca82016-01-07 16:08:20 -05002480 *
2481 * The caller must hold base->i_mutex.
Christoph Hellwigeead1912007-10-16 23:25:38 -07002482 */
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002483struct dentry *lookup_one_len2(const char *name, struct vfsmount *mnt, struct dentry *base, int len)
James Morris057f6c02007-04-26 00:12:05 -07002484{
James Morris057f6c02007-04-26 00:12:05 -07002485 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05002486 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002487 int err;
James Morris057f6c02007-04-26 00:12:05 -07002488
Al Viro59551022016-01-22 15:40:57 -05002489 WARN_ON_ONCE(!inode_is_locked(base->d_inode));
David Woodhouse2f9092e2009-04-20 23:18:37 +01002490
Al Viro6a96ba52011-03-07 23:49:20 -05002491 this.name = name;
2492 this.len = len;
Linus Torvalds8387ff22016-06-10 07:51:30 -07002493 this.hash = full_name_hash(base, name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05002494 if (!len)
2495 return ERR_PTR(-EACCES);
2496
Al Viro21d8a152012-11-29 22:17:21 -05002497 if (unlikely(name[0] == '.')) {
2498 if (len < 2 || (len == 2 && name[1] == '.'))
2499 return ERR_PTR(-EACCES);
2500 }
2501
Al Viro6a96ba52011-03-07 23:49:20 -05002502 while (len--) {
2503 c = *(const unsigned char *)name++;
2504 if (c == '/' || c == '\0')
2505 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05002506 }
Al Viro5a202bc2011-03-08 14:17:44 -05002507 /*
2508 * See if the low-level filesystem might want
2509 * to use its own hash..
2510 */
2511 if (base->d_flags & DCACHE_OP_HASH) {
Linus Torvaldsda53be12013-05-21 15:22:44 -07002512 int err = base->d_op->d_hash(base, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002513 if (err < 0)
2514 return ERR_PTR(err);
2515 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07002516
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002517 err = inode_permission2(mnt, base->d_inode, MAY_EXEC);
Miklos Szeredicda309d2012-03-26 12:54:21 +02002518 if (err)
2519 return ERR_PTR(err);
2520
Al Viro72bd8662012-06-10 17:17:17 -04002521 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002522}
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002523EXPORT_SYMBOL(lookup_one_len2);
2524
2525struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2526{
2527 return lookup_one_len2(name, NULL, base, len);
2528}
Al Viro4d359502014-03-14 12:20:17 -04002529EXPORT_SYMBOL(lookup_one_len);
James Morris057f6c02007-04-26 00:12:05 -07002530
NeilBrownbbddca82016-01-07 16:08:20 -05002531/**
2532 * lookup_one_len_unlocked - filesystem helper to lookup single pathname component
2533 * @name: pathname component to lookup
2534 * @base: base directory to lookup from
2535 * @len: maximum length @len should be interpreted to
2536 *
2537 * Note that this routine is purely a helper for filesystem usage and should
2538 * not be called by generic code.
2539 *
2540 * Unlike lookup_one_len, it should be called without the parent
2541 * i_mutex held, and will take the i_mutex itself if necessary.
2542 */
2543struct dentry *lookup_one_len_unlocked(const char *name,
2544 struct dentry *base, int len)
2545{
2546 struct qstr this;
2547 unsigned int c;
2548 int err;
Linus Torvalds20d00ee2016-07-29 12:17:52 -07002549 struct dentry *ret;
NeilBrownbbddca82016-01-07 16:08:20 -05002550
2551 this.name = name;
2552 this.len = len;
Linus Torvalds8387ff22016-06-10 07:51:30 -07002553 this.hash = full_name_hash(base, name, len);
NeilBrownbbddca82016-01-07 16:08:20 -05002554 if (!len)
2555 return ERR_PTR(-EACCES);
2556
2557 if (unlikely(name[0] == '.')) {
2558 if (len < 2 || (len == 2 && name[1] == '.'))
2559 return ERR_PTR(-EACCES);
2560 }
2561
2562 while (len--) {
2563 c = *(const unsigned char *)name++;
2564 if (c == '/' || c == '\0')
2565 return ERR_PTR(-EACCES);
2566 }
2567 /*
2568 * See if the low-level filesystem might want
2569 * to use its own hash..
2570 */
2571 if (base->d_flags & DCACHE_OP_HASH) {
2572 int err = base->d_op->d_hash(base, &this);
2573 if (err < 0)
2574 return ERR_PTR(err);
2575 }
2576
2577 err = inode_permission(base->d_inode, MAY_EXEC);
2578 if (err)
2579 return ERR_PTR(err);
2580
Linus Torvalds20d00ee2016-07-29 12:17:52 -07002581 ret = lookup_dcache(&this, base, 0);
2582 if (!ret)
2583 ret = lookup_slow(&this, base, 0);
2584 return ret;
NeilBrownbbddca82016-01-07 16:08:20 -05002585}
2586EXPORT_SYMBOL(lookup_one_len_unlocked);
2587
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05002588#ifdef CONFIG_UNIX98_PTYS
2589int path_pts(struct path *path)
2590{
2591 /* Find something mounted on "pts" in the same directory as
2592 * the input path.
2593 */
2594 struct dentry *child, *parent;
2595 struct qstr this;
2596 int ret;
2597
2598 ret = path_parent_directory(path);
2599 if (ret)
2600 return ret;
2601
2602 parent = path->dentry;
2603 this.name = "pts";
2604 this.len = 3;
2605 child = d_hash_and_lookup(parent, &this);
2606 if (!child)
2607 return -ENOENT;
2608
2609 path->dentry = child;
2610 dput(parent);
2611 follow_mount(path);
2612 return 0;
2613}
2614#endif
2615
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002616int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2617 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618{
Al Viroabc9f5b2015-05-12 16:53:42 -04002619 return filename_lookup(dfd, getname_flags(name, flags, empty),
2620 flags, path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621}
Al Virob853a162015-05-13 09:12:02 -04002622EXPORT_SYMBOL(user_path_at_empty);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002623
Jeff Layton873f1ee2012-10-10 15:25:29 -04002624/*
2625 * NB: most callers don't do anything directly with the reference to the
2626 * to struct filename, but the nd->last pointer points into the name string
2627 * allocated by getname. So we must hold the reference to it until all
2628 * path-walking is complete.
2629 */
Al Viroa2ec4a22015-05-13 06:57:49 -04002630static inline struct filename *
Al Virof5beed72015-04-30 16:09:11 -04002631user_path_parent(int dfd, const char __user *path,
2632 struct path *parent,
2633 struct qstr *last,
2634 int *type,
Jeff Layton9e790bd2012-12-11 12:10:09 -05002635 unsigned int flags)
Al Viro2ad94ae2008-07-21 09:32:51 -04002636{
Jeff Layton9e790bd2012-12-11 12:10:09 -05002637 /* only LOOKUP_REVAL is allowed in extra flags */
Al Viro5c31b6c2015-05-12 17:32:54 -04002638 return filename_parentat(dfd, getname(path), flags & LOOKUP_REVAL,
2639 parent, last, type);
Al Viro2ad94ae2008-07-21 09:32:51 -04002640}
2641
Jeff Layton80334262013-07-26 06:23:25 -04002642/**
Al Viro197df042013-09-08 14:03:27 -04002643 * mountpoint_last - look up last component for umount
Jeff Layton80334262013-07-26 06:23:25 -04002644 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2645 * @path: pointer to container for result
2646 *
2647 * This is a special lookup_last function just for umount. In this case, we
2648 * need to resolve the path without doing any revalidation.
2649 *
2650 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2651 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2652 * in almost all cases, this lookup will be served out of the dcache. The only
2653 * cases where it won't are if nd->last refers to a symlink or the path is
2654 * bogus and it doesn't exist.
2655 *
2656 * Returns:
2657 * -error: if there was an error during lookup. This includes -ENOENT if the
2658 * lookup found a negative dentry. The nd->path reference will also be
2659 * put in this case.
2660 *
2661 * 0: if we successfully resolved nd->path and found it to not to be a
2662 * symlink that needs to be followed. "path" will also be populated.
2663 * The nd->path reference will also be put.
2664 *
2665 * 1: if we successfully resolved nd->last and found it to be a symlink
2666 * that needs to be followed. "path" will be populated with the path
2667 * to the link, and nd->path will *not* be put.
2668 */
2669static int
Al Viro197df042013-09-08 14:03:27 -04002670mountpoint_last(struct nameidata *nd, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002671{
2672 int error = 0;
2673 struct dentry *dentry;
2674 struct dentry *dir = nd->path.dentry;
2675
Al Viro35759522013-09-08 13:41:33 -04002676 /* If we're in rcuwalk, drop out of it to handle last component */
2677 if (nd->flags & LOOKUP_RCU) {
Al Viro6e9918b2015-05-05 09:26:05 -04002678 if (unlazy_walk(nd, NULL, 0))
Al Virodeb106c2015-05-08 18:05:21 -04002679 return -ECHILD;
Jeff Layton80334262013-07-26 06:23:25 -04002680 }
2681
2682 nd->flags &= ~LOOKUP_PARENT;
2683
2684 if (unlikely(nd->last_type != LAST_NORM)) {
2685 error = handle_dots(nd, nd->last_type);
Al Viro35759522013-09-08 13:41:33 -04002686 if (error)
Al Virodeb106c2015-05-08 18:05:21 -04002687 return error;
Al Viro35759522013-09-08 13:41:33 -04002688 dentry = dget(nd->path.dentry);
Al Viro949a8522016-03-06 14:20:52 -05002689 } else {
2690 dentry = d_lookup(dir, &nd->last);
Jeff Layton80334262013-07-26 06:23:25 -04002691 if (!dentry) {
Al Viro949a8522016-03-06 14:20:52 -05002692 /*
2693 * No cached dentry. Mounted dentries are pinned in the
2694 * cache, so that means that this dentry is probably
2695 * a symlink or the path doesn't actually point
2696 * to a mounted dentry.
2697 */
2698 dentry = lookup_slow(&nd->last, dir,
2699 nd->flags | LOOKUP_NO_REVAL);
2700 if (IS_ERR(dentry))
2701 return PTR_ERR(dentry);
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002702 }
Jeff Layton80334262013-07-26 06:23:25 -04002703 }
David Howells698934d2015-03-17 17:33:52 +00002704 if (d_is_negative(dentry)) {
Al Viro35759522013-09-08 13:41:33 -04002705 dput(dentry);
Al Virodeb106c2015-05-08 18:05:21 -04002706 return -ENOENT;
Jeff Layton80334262013-07-26 06:23:25 -04002707 }
Al Viro191d7f72015-05-04 08:26:45 -04002708 if (nd->depth)
2709 put_link(nd);
Al Viro35759522013-09-08 13:41:33 -04002710 path->dentry = dentry;
Vasily Averin295dc392014-07-21 12:30:23 +04002711 path->mnt = nd->path.mnt;
Al Viro181548c2015-05-07 19:54:34 -04002712 error = should_follow_link(nd, path, nd->flags & LOOKUP_FOLLOW,
2713 d_backing_inode(dentry), 0);
Al Virodeb106c2015-05-08 18:05:21 -04002714 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04002715 return error;
Vasily Averin295dc392014-07-21 12:30:23 +04002716 mntget(path->mnt);
Al Viro35759522013-09-08 13:41:33 -04002717 follow_mount(path);
Al Virodeb106c2015-05-08 18:05:21 -04002718 return 0;
Jeff Layton80334262013-07-26 06:23:25 -04002719}
2720
2721/**
Al Viro197df042013-09-08 14:03:27 -04002722 * path_mountpoint - look up a path to be umounted
Masanari Iida2a78b852015-09-09 15:39:23 -07002723 * @nd: lookup context
Jeff Layton80334262013-07-26 06:23:25 -04002724 * @flags: lookup flags
Al Viroc8a53ee2015-05-12 18:43:07 -04002725 * @path: pointer to container for result
Jeff Layton80334262013-07-26 06:23:25 -04002726 *
2727 * Look up the given name, but don't attempt to revalidate the last component.
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002728 * Returns 0 and "path" will be valid on success; Returns error otherwise.
Jeff Layton80334262013-07-26 06:23:25 -04002729 */
2730static int
Al Viroc8a53ee2015-05-12 18:43:07 -04002731path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002732{
Al Viroc8a53ee2015-05-12 18:43:07 -04002733 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002734 int err;
2735 if (IS_ERR(s))
2736 return PTR_ERR(s);
Al Viro3bdba282015-05-08 17:37:07 -04002737 while (!(err = link_path_walk(s, nd)) &&
2738 (err = mountpoint_last(nd, path)) > 0) {
2739 s = trailing_symlink(nd);
2740 if (IS_ERR(s)) {
2741 err = PTR_ERR(s);
Jeff Layton80334262013-07-26 06:23:25 -04002742 break;
Al Viro3bdba282015-05-08 17:37:07 -04002743 }
Jeff Layton80334262013-07-26 06:23:25 -04002744 }
Al Virodeb106c2015-05-08 18:05:21 -04002745 terminate_walk(nd);
Jeff Layton80334262013-07-26 06:23:25 -04002746 return err;
2747}
2748
Al Viro2d864652013-09-08 20:18:44 -04002749static int
Al Viro668696d2015-02-22 19:44:00 -05002750filename_mountpoint(int dfd, struct filename *name, struct path *path,
Al Viro2d864652013-09-08 20:18:44 -04002751 unsigned int flags)
2752{
Al Viro9883d182015-05-13 07:28:08 -04002753 struct nameidata nd;
Al Virocbaab2d2015-01-22 02:49:00 -05002754 int error;
Al Viro668696d2015-02-22 19:44:00 -05002755 if (IS_ERR(name))
2756 return PTR_ERR(name);
Al Viro9883d182015-05-13 07:28:08 -04002757 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002758 error = path_mountpoint(&nd, flags | LOOKUP_RCU, path);
Al Viro2d864652013-09-08 20:18:44 -04002759 if (unlikely(error == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002760 error = path_mountpoint(&nd, flags, path);
Al Viro2d864652013-09-08 20:18:44 -04002761 if (unlikely(error == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002762 error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path);
Al Viro2d864652013-09-08 20:18:44 -04002763 if (likely(!error))
Al Viro668696d2015-02-22 19:44:00 -05002764 audit_inode(name, path->dentry, 0);
Al Viro9883d182015-05-13 07:28:08 -04002765 restore_nameidata();
Al Viro668696d2015-02-22 19:44:00 -05002766 putname(name);
Al Viro2d864652013-09-08 20:18:44 -04002767 return error;
2768}
2769
Jeff Layton80334262013-07-26 06:23:25 -04002770/**
Al Viro197df042013-09-08 14:03:27 -04002771 * user_path_mountpoint_at - lookup a path from userland in order to umount it
Jeff Layton80334262013-07-26 06:23:25 -04002772 * @dfd: directory file descriptor
2773 * @name: pathname from userland
2774 * @flags: lookup flags
2775 * @path: pointer to container to hold result
2776 *
2777 * A umount is a special case for path walking. We're not actually interested
2778 * in the inode in this situation, and ESTALE errors can be a problem. We
2779 * simply want track down the dentry and vfsmount attached at the mountpoint
2780 * and avoid revalidating the last component.
2781 *
2782 * Returns 0 and populates "path" on success.
2783 */
2784int
Al Viro197df042013-09-08 14:03:27 -04002785user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
Jeff Layton80334262013-07-26 06:23:25 -04002786 struct path *path)
2787{
Al Virocbaab2d2015-01-22 02:49:00 -05002788 return filename_mountpoint(dfd, getname(name), path, flags);
Jeff Layton80334262013-07-26 06:23:25 -04002789}
2790
Al Viro2d864652013-09-08 20:18:44 -04002791int
2792kern_path_mountpoint(int dfd, const char *name, struct path *path,
2793 unsigned int flags)
2794{
Al Virocbaab2d2015-01-22 02:49:00 -05002795 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
Al Viro2d864652013-09-08 20:18:44 -04002796}
2797EXPORT_SYMBOL(kern_path_mountpoint);
2798
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002799int __check_sticky(struct inode *dir, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002801 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002802
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002803 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002805 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 return 0;
Andy Lutomirski23adbe12014-06-10 12:45:42 -07002807 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808}
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002809EXPORT_SYMBOL(__check_sticky);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
2811/*
2812 * Check whether we can remove a link victim from directory dir, check
2813 * whether the type of victim is right.
2814 * 1. We can't do it if dir is read-only (done in permission())
2815 * 2. We should have write and exec permissions on dir
2816 * 3. We can't remove anything from append-only dir
2817 * 4. We can't do anything with immutable dir (done in permission())
2818 * 5. If the sticky bit on dir is set we should either
2819 * a. be owner of dir, or
2820 * b. be owner of victim, or
2821 * c. have CAP_FOWNER capability
2822 * 6. If the victim is append-only or immutable we can't do antyhing with
2823 * links pointing to it.
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05002824 * 7. If the victim has an unknown uid or gid we can't change the inode.
2825 * 8. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2826 * 9. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2827 * 10. We can't remove a root or mountpoint.
2828 * 11. We don't allow removal of NFS sillyrenamed files; it's handled by
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 * nfs_async_unlink().
2830 */
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002831static int may_delete(struct vfsmount *mnt, struct inode *dir, struct dentry *victim, bool isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832{
David Howells63afdfc2015-05-06 15:59:00 +01002833 struct inode *inode = d_backing_inode(victim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 int error;
2835
David Howellsb18825a2013-09-12 19:22:53 +01002836 if (d_is_negative(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 return -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01002838 BUG_ON(!inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
2840 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002841 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002843 error = inode_permission2(mnt, dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 if (error)
2845 return error;
2846 if (IS_APPEND(dir))
2847 return -EPERM;
David Howellsb18825a2013-09-12 19:22:53 +01002848
2849 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05002850 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode) || HAS_UNMAPPED_ID(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 return -EPERM;
2852 if (isdir) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002853 if (!d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 return -ENOTDIR;
2855 if (IS_ROOT(victim))
2856 return -EBUSY;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002857 } else if (d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 return -EISDIR;
2859 if (IS_DEADDIR(dir))
2860 return -ENOENT;
2861 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2862 return -EBUSY;
2863 return 0;
2864}
2865
2866/* Check whether we can create an object with dentry child in directory
2867 * dir.
2868 * 1. We can't do it if child already exists (open has special treatment for
2869 * this case, but since we are inlined it's OK)
2870 * 2. We can't do it if dir is read-only (done in permission())
Eric W. Biederman036d5232016-07-01 12:52:06 -05002871 * 3. We can't do it if the fs can't represent the fsuid or fsgid.
2872 * 4. We should have write and exec permissions on dir
2873 * 5. We can't do it if dir is immutable (done in permission())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 */
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002875static inline int may_create(struct vfsmount *mnt, struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876{
Eric W. Biederman036d5232016-07-01 12:52:06 -05002877 struct user_namespace *s_user_ns;
Jeff Layton14e972b2013-05-08 10:25:58 -04002878 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 if (child->d_inode)
2880 return -EEXIST;
2881 if (IS_DEADDIR(dir))
2882 return -ENOENT;
Eric W. Biederman036d5232016-07-01 12:52:06 -05002883 s_user_ns = dir->i_sb->s_user_ns;
2884 if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
2885 !kgid_has_mapping(s_user_ns, current_fsgid()))
2886 return -EOVERFLOW;
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002887 return inode_permission2(mnt, dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888}
2889
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890/*
2891 * p1 and p2 should be directories on the same fs.
2892 */
2893struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2894{
2895 struct dentry *p;
2896
2897 if (p1 == p2) {
Al Viro59551022016-01-22 15:40:57 -05002898 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 return NULL;
2900 }
2901
Al Virofc640052016-04-10 01:33:30 -04002902 mutex_lock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002904 p = d_ancestor(p2, p1);
2905 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002906 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT);
2907 inode_lock_nested(p1->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002908 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 }
2910
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002911 p = d_ancestor(p1, p2);
2912 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002913 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2914 inode_lock_nested(p2->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002915 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 }
2917
Al Viro59551022016-01-22 15:40:57 -05002918 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2919 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 return NULL;
2921}
Al Viro4d359502014-03-14 12:20:17 -04002922EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
2924void unlock_rename(struct dentry *p1, struct dentry *p2)
2925{
Al Viro59551022016-01-22 15:40:57 -05002926 inode_unlock(p1->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 if (p1 != p2) {
Al Viro59551022016-01-22 15:40:57 -05002928 inode_unlock(p2->d_inode);
Al Virofc640052016-04-10 01:33:30 -04002929 mutex_unlock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 }
2931}
Al Viro4d359502014-03-14 12:20:17 -04002932EXPORT_SYMBOL(unlock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002934int vfs_create2(struct vfsmount *mnt, struct inode *dir, struct dentry *dentry,
2935 umode_t mode, bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936{
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002937 int error = may_create(mnt, dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 if (error)
2939 return error;
2940
Al Viroacfa4382008-12-04 10:06:33 -05002941 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 return -EACCES; /* shouldn't it be ENOSYS? */
2943 mode &= S_IALLUGO;
2944 mode |= S_IFREG;
2945 error = security_inode_create(dir, dentry, mode);
2946 if (error)
2947 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002948 error = dir->i_op->create(dir, dentry, mode, want_excl);
Neeraj Sonic692cb92018-04-18 17:20:22 +05302949 if (error)
2950 return error;
2951 error = security_inode_post_create(dir, dentry, mode);
2952 if (error)
2953 return error;
Stephen Smalleya74574a2005-09-09 13:01:44 -07002954 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002955 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 return error;
2957}
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002958EXPORT_SYMBOL(vfs_create2);
2959
2960int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
2961 bool want_excl)
2962{
2963 return vfs_create2(NULL, dir, dentry, mode, want_excl);
2964}
Al Viro4d359502014-03-14 12:20:17 -04002965EXPORT_SYMBOL(vfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002967bool may_open_dev(const struct path *path)
2968{
2969 return !(path->mnt->mnt_flags & MNT_NODEV) &&
2970 !(path->mnt->mnt_sb->s_iflags & SB_I_NODEV);
2971}
2972
Al Viro73d049a2011-03-11 12:08:24 -05002973static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002975 struct dentry *dentry = path->dentry;
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002976 struct vfsmount *mnt = path->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 struct inode *inode = dentry->d_inode;
2978 int error;
2979
2980 if (!inode)
2981 return -ENOENT;
2982
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002983 switch (inode->i_mode & S_IFMT) {
2984 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002986 case S_IFDIR:
2987 if (acc_mode & MAY_WRITE)
2988 return -EISDIR;
2989 break;
2990 case S_IFBLK:
2991 case S_IFCHR:
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002992 if (!may_open_dev(path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002994 /*FALLTHRU*/
2995 case S_IFIFO:
2996 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002998 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002999 }
Dave Hansenb41572e2007-10-16 23:31:14 -07003000
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003001 error = inode_permission2(mnt, inode, MAY_OPEN | acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07003002 if (error)
3003 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05003004
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 /*
3006 * An append-only file must be opened in append mode for writing.
3007 */
3008 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05003009 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05003010 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05003012 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 }
3014
3015 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07003016 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05003017 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04003019 return 0;
Al Viro7715b522009-12-16 03:54:00 -05003020}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021
Jeff Laytone1181ee2010-12-07 16:19:50 -05003022static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05003023{
Jeff Laytone1181ee2010-12-07 16:19:50 -05003024 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05003025 struct inode *inode = path->dentry->d_inode;
3026 int error = get_write_access(inode);
3027 if (error)
3028 return error;
3029 /*
3030 * Refuse to truncate files with mandatory locks held on them.
3031 */
Jeff Laytond7a06982014-03-10 09:54:15 -04003032 error = locks_verify_locked(filp);
Al Viro7715b522009-12-16 03:54:00 -05003033 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09003034 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05003035 if (!error) {
Daniel Rosenberg2757e9b2016-10-26 16:33:11 -07003036 error = do_truncate2(path->mnt, path->dentry, 0,
Al Viro7715b522009-12-16 03:54:00 -05003037 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05003038 filp);
Al Viro7715b522009-12-16 03:54:00 -05003039 }
3040 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04003041 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042}
3043
Dave Hansend57999e2008-02-15 14:37:27 -08003044static inline int open_to_namei_flags(int flag)
3045{
Al Viro8a5e9292011-06-25 19:15:54 -04003046 if ((flag & O_ACCMODE) == 3)
3047 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08003048 return flag;
3049}
3050
Al Virod3607752016-03-25 15:21:09 -04003051static int may_o_create(const struct path *dir, struct dentry *dentry, umode_t mode)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003052{
Seth Forshee2e727b82017-10-07 22:36:55 +00003053 struct user_namespace *s_user_ns;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003054 int error = security_path_mknod(dir, dentry, mode, 0);
3055 if (error)
3056 return error;
3057
Seth Forshee2e727b82017-10-07 22:36:55 +00003058 s_user_ns = dir->dentry->d_sb->s_user_ns;
3059 if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
3060 !kgid_has_mapping(s_user_ns, current_fsgid()))
3061 return -EOVERFLOW;
3062
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003063 error = inode_permission2(dir->mnt, dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003064 if (error)
3065 return error;
3066
3067 return security_inode_create(dir->dentry->d_inode, dentry, mode);
3068}
3069
David Howells1acf0af2012-06-14 16:13:46 +01003070/*
3071 * Attempt to atomically look up, create and open a file from a negative
3072 * dentry.
3073 *
3074 * Returns 0 if successful. The file will have been created and attached to
3075 * @file by the filesystem calling finish_open().
3076 *
3077 * Returns 1 if the file was looked up only or didn't need creating. The
3078 * caller will need to perform the open themselves. @path will have been
3079 * updated to point to the new dentry. This may be negative.
3080 *
3081 * Returns an error code otherwise.
3082 */
Al Viro2675a4e2012-06-22 12:41:10 +04003083static int atomic_open(struct nameidata *nd, struct dentry *dentry,
3084 struct path *path, struct file *file,
3085 const struct open_flags *op,
Al Viro1643b432016-04-27 19:14:10 -04003086 int open_flag, umode_t mode,
Al Viro2675a4e2012-06-22 12:41:10 +04003087 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003088{
Miklos Szeredid18e9002012-06-05 15:10:17 +02003089 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003090 struct inode *dir = nd->path.dentry->d_inode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003091 int error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003092
Al Viro384f26e2016-04-28 02:03:55 -04003093 if (!(~open_flag & (O_EXCL | O_CREAT))) /* both O_EXCL and O_CREAT */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003094 open_flag &= ~O_TRUNC;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003095
Miklos Szeredid18e9002012-06-05 15:10:17 +02003096 if (nd->flags & LOOKUP_DIRECTORY)
3097 open_flag |= O_DIRECTORY;
3098
Al Viro30d90492012-06-22 12:40:19 +04003099 file->f_path.dentry = DENTRY_NOT_SET;
3100 file->f_path.mnt = nd->path.mnt;
Al Viro0fb1ea02016-04-27 14:13:10 -04003101 error = dir->i_op->atomic_open(dir, dentry, file,
3102 open_to_namei_flags(open_flag),
3103 mode, opened);
Al Viro6fbd0712016-04-28 11:50:59 -04003104 d_lookup_done(dentry);
Al Viro384f26e2016-04-28 02:03:55 -04003105 if (!error) {
3106 /*
3107 * We didn't have the inode before the open, so check open
3108 * permission here.
3109 */
3110 int acc_mode = op->acc_mode;
3111 if (*opened & FILE_CREATED) {
3112 WARN_ON(!(open_flag & O_CREAT));
3113 fsnotify_create(dir, dentry);
3114 acc_mode = 0;
3115 }
3116 error = may_open(&file->f_path, acc_mode, open_flag);
3117 if (WARN_ON(error > 0))
3118 error = -EINVAL;
3119 } else if (error > 0) {
Al Viro30d90492012-06-22 12:40:19 +04003120 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04003121 error = -EIO;
Al Viro03da6332013-09-16 19:22:33 -04003122 } else {
Al Viro384f26e2016-04-28 02:03:55 -04003123 if (file->f_path.dentry) {
3124 dput(dentry);
3125 dentry = file->f_path.dentry;
Al Viro03da6332013-09-16 19:22:33 -04003126 }
Al Viro384f26e2016-04-28 02:03:55 -04003127 if (*opened & FILE_CREATED)
3128 fsnotify_create(dir, dentry);
Al Viroa01e7182016-06-07 21:53:51 -04003129 if (unlikely(d_is_negative(dentry))) {
3130 error = -ENOENT;
3131 } else {
3132 path->dentry = dentry;
3133 path->mnt = nd->path.mnt;
3134 return 1;
3135 }
Sage Weil62b2ce92012-08-15 13:30:12 -07003136 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003137 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003138 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003139 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003140}
3141
Nick Piggin31e6b012011-01-07 17:49:52 +11003142/*
David Howells1acf0af2012-06-14 16:13:46 +01003143 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003144 *
3145 * Must be called with i_mutex held on parent.
3146 *
David Howells1acf0af2012-06-14 16:13:46 +01003147 * Returns 0 if the file was successfully atomically created (if necessary) and
3148 * opened. In this case the file will be returned attached to @file.
3149 *
3150 * Returns 1 if the file was not completely opened at this time, though lookups
3151 * and creations will have been performed and the dentry returned in @path will
3152 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
3153 * specified then a negative dentry may be returned.
3154 *
3155 * An error code is returned otherwise.
3156 *
3157 * FILE_CREATE will be set in @*opened if the dentry was created and will be
3158 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003159 */
Al Viro2675a4e2012-06-22 12:41:10 +04003160static int lookup_open(struct nameidata *nd, struct path *path,
3161 struct file *file,
3162 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04003163 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003164{
3165 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003166 struct inode *dir_inode = dir->d_inode;
Al Viro1643b432016-04-27 19:14:10 -04003167 int open_flag = op->open_flag;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003168 struct dentry *dentry;
Al Viro1643b432016-04-27 19:14:10 -04003169 int error, create_error = 0;
Al Viro1643b432016-04-27 19:14:10 -04003170 umode_t mode = op->mode;
Al Viro6fbd0712016-04-28 11:50:59 -04003171 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003172
Al Viroce8644f2016-04-26 14:17:56 -04003173 if (unlikely(IS_DEADDIR(dir_inode)))
3174 return -ENOENT;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003175
Al Viro47237682012-06-10 05:01:45 -04003176 *opened &= ~FILE_CREATED;
Al Viro6fbd0712016-04-28 11:50:59 -04003177 dentry = d_lookup(dir, &nd->last);
3178 for (;;) {
3179 if (!dentry) {
3180 dentry = d_alloc_parallel(dir, &nd->last, &wq);
3181 if (IS_ERR(dentry))
3182 return PTR_ERR(dentry);
3183 }
3184 if (d_in_lookup(dentry))
3185 break;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003186
Al Viro6fbd0712016-04-28 11:50:59 -04003187 if (!(dentry->d_flags & DCACHE_OP_REVALIDATE))
3188 break;
3189
3190 error = d_revalidate(dentry, nd->flags);
3191 if (likely(error > 0))
3192 break;
3193 if (error)
3194 goto out_dput;
3195 d_invalidate(dentry);
3196 dput(dentry);
3197 dentry = NULL;
3198 }
3199 if (dentry->d_inode) {
Al Viro6c51e512016-03-05 20:09:32 -05003200 /* Cached positive dentry: will open in f_op->open */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003201 goto out_no_open;
Al Viro6c51e512016-03-05 20:09:32 -05003202 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003203
Al Viro1643b432016-04-27 19:14:10 -04003204 /*
3205 * Checking write permission is tricky, bacuse we don't know if we are
3206 * going to actually need it: O_CREAT opens should work as long as the
3207 * file exists. But checking existence breaks atomicity. The trick is
3208 * to check access and if not granted clear O_CREAT from the flags.
3209 *
3210 * Another problem is returing the "right" error value (e.g. for an
3211 * O_EXCL open we want to return EEXIST not EROFS).
3212 */
3213 if (open_flag & O_CREAT) {
3214 if (!IS_POSIXACL(dir->d_inode))
3215 mode &= ~current_umask();
3216 if (unlikely(!got_write)) {
3217 create_error = -EROFS;
3218 open_flag &= ~O_CREAT;
3219 if (open_flag & (O_EXCL | O_TRUNC))
3220 goto no_open;
3221 /* No side effects, safe to clear O_CREAT */
3222 } else {
3223 create_error = may_o_create(&nd->path, dentry, mode);
3224 if (create_error) {
3225 open_flag &= ~O_CREAT;
3226 if (open_flag & O_EXCL)
3227 goto no_open;
3228 }
3229 }
3230 } else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) &&
3231 unlikely(!got_write)) {
3232 /*
3233 * No O_CREATE -> atomicity not a requirement -> fall
3234 * back to lookup + open
3235 */
3236 goto no_open;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003237 }
3238
Al Viro1643b432016-04-27 19:14:10 -04003239 if (dir_inode->i_op->atomic_open) {
3240 error = atomic_open(nd, dentry, path, file, op, open_flag,
3241 mode, opened);
3242 if (unlikely(error == -ENOENT) && create_error)
3243 error = create_error;
3244 return error;
3245 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003246
Al Viro1643b432016-04-27 19:14:10 -04003247no_open:
Al Viro6fbd0712016-04-28 11:50:59 -04003248 if (d_in_lookup(dentry)) {
Al Viro12fa5e22016-04-28 11:19:43 -04003249 struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry,
3250 nd->flags);
Al Viro6fbd0712016-04-28 11:50:59 -04003251 d_lookup_done(dentry);
Al Viro12fa5e22016-04-28 11:19:43 -04003252 if (unlikely(res)) {
3253 if (IS_ERR(res)) {
3254 error = PTR_ERR(res);
3255 goto out_dput;
3256 }
3257 dput(dentry);
3258 dentry = res;
3259 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003260 }
3261
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003262 /* Negative dentry, just create the file */
Al Viro1643b432016-04-27 19:14:10 -04003263 if (!dentry->d_inode && (open_flag & O_CREAT)) {
Al Viro47237682012-06-10 05:01:45 -04003264 *opened |= FILE_CREATED;
Al Viroce8644f2016-04-26 14:17:56 -04003265 audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE);
Al Viroce8644f2016-04-26 14:17:56 -04003266 if (!dir_inode->i_op->create) {
3267 error = -EACCES;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003268 goto out_dput;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003269 }
Al Viroce8644f2016-04-26 14:17:56 -04003270 error = dir_inode->i_op->create(dir_inode, dentry, mode,
Al Viro1643b432016-04-27 19:14:10 -04003271 open_flag & O_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003272 if (error)
3273 goto out_dput;
Al Viroce8644f2016-04-26 14:17:56 -04003274 fsnotify_create(dir_inode, dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003275 }
Al Viro1643b432016-04-27 19:14:10 -04003276 if (unlikely(create_error) && !dentry->d_inode) {
3277 error = create_error;
3278 goto out_dput;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003279 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003280out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003281 path->dentry = dentry;
3282 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04003283 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003284
3285out_dput:
3286 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003287 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003288}
3289
3290/*
Al Virofe2d35f2011-03-05 22:58:25 -05003291 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11003292 */
Al Viro896475d2015-04-22 18:02:17 -04003293static int do_last(struct nameidata *nd,
Al Viro2675a4e2012-06-22 12:41:10 +04003294 struct file *file, const struct open_flags *op,
Al Viro76ae2a52015-05-12 18:44:32 -04003295 int *opened)
Al Virofb1cc552009-12-24 01:58:28 -05003296{
Al Viroa1e28032009-12-24 02:12:06 -05003297 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05003298 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003299 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04003300 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04003301 int acc_mode = op->acc_mode;
Al Viro254cf582015-05-05 09:40:46 -04003302 unsigned seq;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003303 struct inode *inode;
Al Viro896475d2015-04-22 18:02:17 -04003304 struct path path;
Al Viro16c2cd72011-02-22 15:50:10 -05003305 int error;
Al Virofb1cc552009-12-24 01:58:28 -05003306
Al Viroc3e380b2011-02-23 13:39:45 -05003307 nd->flags &= ~LOOKUP_PARENT;
3308 nd->flags |= op->intent;
3309
Al Virobc77daa2013-06-06 09:12:33 -04003310 if (nd->last_type != LAST_NORM) {
Al Virofe2d35f2011-03-05 22:58:25 -05003311 error = handle_dots(nd, nd->last_type);
Al Virodeb106c2015-05-08 18:05:21 -04003312 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003313 return error;
Miklos Szeredie83db162012-06-05 15:10:29 +02003314 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05003315 }
Al Viro67ee3ad2009-12-26 07:01:01 -05003316
Al Viroca344a892011-03-09 00:36:45 -05003317 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05003318 if (nd->last.name[nd->last.len])
3319 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3320 /* we _can_ be in RCU mode here */
Al Viro254cf582015-05-05 09:40:46 -04003321 error = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05003322 if (likely(error > 0))
Miklos Szeredi71574862012-06-05 15:10:14 +02003323 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003324
Miklos Szeredi71574862012-06-05 15:10:14 +02003325 if (error < 0)
Al Virodeb106c2015-05-08 18:05:21 -04003326 return error;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02003327
Miklos Szeredi71574862012-06-05 15:10:14 +02003328 BUG_ON(nd->inode != dir->d_inode);
Al Viro6583fe22016-03-05 18:14:03 -05003329 BUG_ON(nd->flags & LOOKUP_RCU);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003330 } else {
3331 /* create side of things */
3332 /*
3333 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3334 * has been cleared when we got to the last component we are
3335 * about to look up
3336 */
3337 error = complete_walk(nd);
Al Viroe8bb73d2015-05-08 16:28:42 -04003338 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003339 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02003340
Al Viro76ae2a52015-05-12 18:44:32 -04003341 audit_inode(nd->name, dir, LOOKUP_PARENT);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003342 /* trailing slashes? */
Al Virodeb106c2015-05-08 18:05:21 -04003343 if (unlikely(nd->last.name[nd->last.len]))
3344 return -EISDIR;
Al Virofe2d35f2011-03-05 22:58:25 -05003345 }
3346
Al Viro9cf843e2016-04-28 19:35:16 -04003347 if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
Al Viro64894cf2012-07-31 00:53:35 +04003348 error = mnt_want_write(nd->path.mnt);
3349 if (!error)
3350 got_write = true;
3351 /*
3352 * do _not_ fail yet - we might not need that or fail with
3353 * a different error; let lookup_open() decide; we'll be
3354 * dropping this one anyway.
3355 */
3356 }
Al Viro9cf843e2016-04-28 19:35:16 -04003357 if (open_flag & O_CREAT)
3358 inode_lock(dir->d_inode);
3359 else
3360 inode_lock_shared(dir->d_inode);
Al Viro896475d2015-04-22 18:02:17 -04003361 error = lookup_open(nd, &path, file, op, got_write, opened);
Al Viro9cf843e2016-04-28 19:35:16 -04003362 if (open_flag & O_CREAT)
3363 inode_unlock(dir->d_inode);
3364 else
3365 inode_unlock_shared(dir->d_inode);
Al Viroa1e28032009-12-24 02:12:06 -05003366
Al Viro2675a4e2012-06-22 12:41:10 +04003367 if (error <= 0) {
3368 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003369 goto out;
3370
Al Viro47237682012-06-10 05:01:45 -04003371 if ((*opened & FILE_CREATED) ||
Al Viro496ad9a2013-01-23 17:07:38 -05003372 !S_ISREG(file_inode(file)->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003373 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003374
Al Viro76ae2a52015-05-12 18:44:32 -04003375 audit_inode(nd->name, file->f_path.dentry, 0);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003376 goto opened;
3377 }
Al Virofb1cc552009-12-24 01:58:28 -05003378
Al Viro47237682012-06-10 05:01:45 -04003379 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05003380 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05003381 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003382 will_truncate = false;
Al Viro62fb4a12015-12-26 22:33:24 -05003383 acc_mode = 0;
Al Viro896475d2015-04-22 18:02:17 -04003384 path_to_nameidata(&path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02003385 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05003386 }
3387
3388 /*
Miklos Szeredid18e9002012-06-05 15:10:17 +02003389 * If atomic_open() acquired write access it is dropped now due to
3390 * possible mount and symlink following (this might be optimized away if
3391 * necessary...)
3392 */
Al Viro64894cf2012-07-31 00:53:35 +04003393 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02003394 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003395 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003396 }
3397
Al Viroe6ec03a2016-06-05 00:23:09 -04003398 error = follow_managed(&path, nd);
3399 if (unlikely(error < 0))
3400 return error;
3401
Al Viro6583fe22016-03-05 18:14:03 -05003402 if (unlikely(d_is_negative(path.dentry))) {
3403 path_to_nameidata(&path, nd);
3404 return -ENOENT;
3405 }
3406
3407 /*
3408 * create/update audit record if it already exists.
3409 */
3410 audit_inode(nd->name, path.dentry, 0);
3411
Al Virodeb106c2015-05-08 18:05:21 -04003412 if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
3413 path_to_nameidata(&path, nd);
3414 return -EEXIST;
3415 }
Al Virofb1cc552009-12-24 01:58:28 -05003416
Al Viro254cf582015-05-05 09:40:46 -04003417 seq = 0; /* out of RCU mode, so the value doesn't matter */
Al Virod4565642016-02-27 19:23:16 -05003418 inode = d_backing_inode(path.dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04003419finish_lookup:
Al Virod63ff282015-05-04 18:13:23 -04003420 if (nd->depth)
3421 put_link(nd);
Al Viro181548c2015-05-07 19:54:34 -04003422 error = should_follow_link(nd, &path, nd->flags & LOOKUP_FOLLOW,
3423 inode, seq);
Al Virodeb106c2015-05-08 18:05:21 -04003424 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04003425 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003426
Al Virofac7d192016-06-04 11:41:49 -04003427 path_to_nameidata(&path, nd);
Miklos Szeredidecf3402012-05-21 17:30:08 +02003428 nd->inode = inode;
Al Viro254cf582015-05-05 09:40:46 -04003429 nd->seq = seq;
Al Viroa3fbbde2011-11-07 21:21:26 +00003430 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
Al Virobc77daa2013-06-06 09:12:33 -04003431finish_open:
Al Viroa3fbbde2011-11-07 21:21:26 +00003432 error = complete_walk(nd);
Al Virofac7d192016-06-04 11:41:49 -04003433 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003434 return error;
Al Viro76ae2a52015-05-12 18:44:32 -04003435 audit_inode(nd->name, nd->path.dentry, 0);
Salvatore Mesoraca0c41bee2018-08-23 17:00:35 -07003436 if (open_flag & O_CREAT) {
3437 error = -EISDIR;
3438 if (d_is_dir(nd->path.dentry))
3439 goto out;
3440 error = may_create_in_sticky(dir,
3441 d_backing_inode(nd->path.dentry));
3442 if (unlikely(error))
3443 goto out;
3444 }
Miklos Szerediaf2f5542012-05-21 17:30:11 +02003445 error = -ENOTDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003446 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003447 goto out;
David Howells4bbcbd32015-03-17 22:16:40 +00003448 if (!d_is_reg(nd->path.dentry))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003449 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05003450
Al Viro0f9d1a12011-03-09 00:13:14 -05003451 if (will_truncate) {
3452 error = mnt_want_write(nd->path.mnt);
3453 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003454 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04003455 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05003456 }
Miklos Szeredie83db162012-06-05 15:10:29 +02003457finish_open_created:
Al Viro6ac08702016-04-26 00:02:50 -04003458 error = may_open(&nd->path, acc_mode, open_flag);
3459 if (error)
3460 goto out;
Miklos Szeredi4aa7c632014-10-24 00:14:35 +02003461 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3462 error = vfs_open(&nd->path, file, current_cred());
Al Virofac7d192016-06-04 11:41:49 -04003463 if (error)
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003464 goto out;
Al Virofac7d192016-06-04 11:41:49 -04003465 *opened |= FILE_OPENED;
Miklos Szeredia8277b92012-06-05 15:10:32 +02003466opened:
Al Viro2675a4e2012-06-22 12:41:10 +04003467 error = open_check_o_direct(file);
Al Virofe9ec822016-04-27 03:14:20 -04003468 if (!error)
3469 error = ima_file_check(file, op->acc_mode, *opened);
3470 if (!error && will_truncate)
Al Viro2675a4e2012-06-22 12:41:10 +04003471 error = handle_truncate(file);
Al Viroca344a892011-03-09 00:36:45 -05003472out:
Al Virofe9ec822016-04-27 03:14:20 -04003473 if (unlikely(error) && (*opened & FILE_OPENED))
3474 fput(file);
Al Viroc80567c2016-02-27 19:17:33 -05003475 if (unlikely(error > 0)) {
3476 WARN_ON(1);
3477 error = -EINVAL;
3478 }
Al Viro64894cf2012-07-31 00:53:35 +04003479 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05003480 mnt_drop_write(nd->path.mnt);
Al Viro2675a4e2012-06-22 12:41:10 +04003481 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003482}
3483
Al Viroc8a53ee2015-05-12 18:43:07 -04003484static int do_tmpfile(struct nameidata *nd, unsigned flags,
Al Viro60545d02013-06-07 01:20:27 -04003485 const struct open_flags *op,
3486 struct file *file, int *opened)
3487{
3488 static const struct qstr name = QSTR_INIT("/", 1);
Al Viro625b6d12015-05-12 16:36:12 -04003489 struct dentry *child;
Al Viro60545d02013-06-07 01:20:27 -04003490 struct inode *dir;
Al Viro625b6d12015-05-12 16:36:12 -04003491 struct path path;
Al Viroc8a53ee2015-05-12 18:43:07 -04003492 int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
Al Viro60545d02013-06-07 01:20:27 -04003493 if (unlikely(error))
3494 return error;
Al Viro625b6d12015-05-12 16:36:12 -04003495 error = mnt_want_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003496 if (unlikely(error))
3497 goto out;
Al Viro625b6d12015-05-12 16:36:12 -04003498 dir = path.dentry->d_inode;
Al Viro60545d02013-06-07 01:20:27 -04003499 /* we want directory to be writable */
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003500 error = inode_permission2(nd->path.mnt, dir, MAY_WRITE | MAY_EXEC);
Al Viro60545d02013-06-07 01:20:27 -04003501 if (error)
3502 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003503 if (!dir->i_op->tmpfile) {
3504 error = -EOPNOTSUPP;
3505 goto out2;
3506 }
Al Viro625b6d12015-05-12 16:36:12 -04003507 child = d_alloc(path.dentry, &name);
Al Viro60545d02013-06-07 01:20:27 -04003508 if (unlikely(!child)) {
3509 error = -ENOMEM;
3510 goto out2;
3511 }
Al Viro625b6d12015-05-12 16:36:12 -04003512 dput(path.dentry);
3513 path.dentry = child;
3514 error = dir->i_op->tmpfile(dir, child, op->mode);
Al Viro60545d02013-06-07 01:20:27 -04003515 if (error)
3516 goto out2;
Al Viroc8a53ee2015-05-12 18:43:07 -04003517 audit_inode(nd->name, child, 0);
Eric Rannaud69a91c22014-10-30 01:51:01 -07003518 /* Don't check for other permissions, the inode was just created */
Al Viro62fb4a12015-12-26 22:33:24 -05003519 error = may_open(&path, 0, op->open_flag);
Al Viro60545d02013-06-07 01:20:27 -04003520 if (error)
3521 goto out2;
Al Viro625b6d12015-05-12 16:36:12 -04003522 file->f_path.mnt = path.mnt;
3523 error = finish_open(file, child, NULL, opened);
Al Viro60545d02013-06-07 01:20:27 -04003524 if (error)
3525 goto out2;
3526 error = open_check_o_direct(file);
Al Virof4e0c302013-06-11 08:34:36 +04003527 if (error) {
Al Viro60545d02013-06-07 01:20:27 -04003528 fput(file);
Al Virof4e0c302013-06-11 08:34:36 +04003529 } else if (!(op->open_flag & O_EXCL)) {
3530 struct inode *inode = file_inode(file);
3531 spin_lock(&inode->i_lock);
3532 inode->i_state |= I_LINKABLE;
3533 spin_unlock(&inode->i_lock);
3534 }
Al Viro60545d02013-06-07 01:20:27 -04003535out2:
Al Viro625b6d12015-05-12 16:36:12 -04003536 mnt_drop_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003537out:
Al Viro625b6d12015-05-12 16:36:12 -04003538 path_put(&path);
Al Viro60545d02013-06-07 01:20:27 -04003539 return error;
3540}
3541
Al Viro6ac08702016-04-26 00:02:50 -04003542static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file)
3543{
3544 struct path path;
3545 int error = path_lookupat(nd, flags, &path);
3546 if (!error) {
3547 audit_inode(nd->name, path.dentry, 0);
3548 error = vfs_open(&path, file, current_cred());
3549 path_put(&path);
3550 }
3551 return error;
3552}
3553
Al Viroc8a53ee2015-05-12 18:43:07 -04003554static struct file *path_openat(struct nameidata *nd,
3555 const struct open_flags *op, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556{
Al Viro368ee9b2015-05-08 17:19:59 -04003557 const char *s;
Al Viro30d90492012-06-22 12:40:19 +04003558 struct file *file;
Al Viro47237682012-06-10 05:01:45 -04003559 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05003560 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11003561
Al Viro30d90492012-06-22 12:40:19 +04003562 file = get_empty_filp();
Al Viro1afc99b2013-02-14 20:41:04 -05003563 if (IS_ERR(file))
3564 return file;
Nick Piggin31e6b012011-01-07 17:49:52 +11003565
Al Viro30d90492012-06-22 12:40:19 +04003566 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11003567
Al Virobb458c62013-07-13 13:26:37 +04003568 if (unlikely(file->f_flags & __O_TMPFILE)) {
Al Viroc8a53ee2015-05-12 18:43:07 -04003569 error = do_tmpfile(nd, flags, op, file, &opened);
Al Virof15133d2015-05-08 22:53:15 -04003570 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003571 }
3572
Al Viro6ac08702016-04-26 00:02:50 -04003573 if (unlikely(file->f_flags & O_PATH)) {
3574 error = do_o_path(nd, flags, file);
3575 if (!error)
3576 opened |= FILE_OPENED;
3577 goto out2;
3578 }
3579
Al Viroc8a53ee2015-05-12 18:43:07 -04003580 s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04003581 if (IS_ERR(s)) {
3582 put_filp(file);
3583 return ERR_CAST(s);
3584 }
Al Viro3bdba282015-05-08 17:37:07 -04003585 while (!(error = link_path_walk(s, nd)) &&
Al Viro76ae2a52015-05-12 18:44:32 -04003586 (error = do_last(nd, file, op, &opened)) > 0) {
Al Viro73d049a2011-03-11 12:08:24 -05003587 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro3bdba282015-05-08 17:37:07 -04003588 s = trailing_symlink(nd);
3589 if (IS_ERR(s)) {
3590 error = PTR_ERR(s);
Al Viro2675a4e2012-06-22 12:41:10 +04003591 break;
Al Viro3bdba282015-05-08 17:37:07 -04003592 }
Al Viro806b6812009-12-26 07:16:40 -05003593 }
Al Virodeb106c2015-05-08 18:05:21 -04003594 terminate_walk(nd);
Al Virof15133d2015-05-08 22:53:15 -04003595out2:
Al Viro2675a4e2012-06-22 12:41:10 +04003596 if (!(opened & FILE_OPENED)) {
3597 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04003598 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003599 }
Al Viro2675a4e2012-06-22 12:41:10 +04003600 if (unlikely(error)) {
3601 if (error == -EOPENSTALE) {
3602 if (flags & LOOKUP_RCU)
3603 error = -ECHILD;
3604 else
3605 error = -ESTALE;
3606 }
3607 file = ERR_PTR(error);
3608 }
3609 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610}
3611
Jeff Layton669abf42012-10-10 16:43:10 -04003612struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +04003613 const struct open_flags *op)
Al Viro13aab422011-02-23 17:54:08 -05003614{
Al Viro9883d182015-05-13 07:28:08 -04003615 struct nameidata nd;
Al Virof9652e12013-06-11 08:23:01 +04003616 int flags = op->lookup_flags;
Al Viro13aab422011-02-23 17:54:08 -05003617 struct file *filp;
3618
Al Viro9883d182015-05-13 07:28:08 -04003619 set_nameidata(&nd, dfd, pathname);
Al Viroc8a53ee2015-05-12 18:43:07 -04003620 filp = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05003621 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003622 filp = path_openat(&nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05003623 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003624 filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003625 restore_nameidata();
Al Viro13aab422011-02-23 17:54:08 -05003626 return filp;
3627}
3628
Al Viro73d049a2011-03-11 12:08:24 -05003629struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
Al Virof9652e12013-06-11 08:23:01 +04003630 const char *name, const struct open_flags *op)
Al Viro73d049a2011-03-11 12:08:24 -05003631{
Al Viro9883d182015-05-13 07:28:08 -04003632 struct nameidata nd;
Al Viro73d049a2011-03-11 12:08:24 -05003633 struct file *file;
Paul Moore51689102015-01-22 00:00:03 -05003634 struct filename *filename;
Al Virof9652e12013-06-11 08:23:01 +04003635 int flags = op->lookup_flags | LOOKUP_ROOT;
Al Viro73d049a2011-03-11 12:08:24 -05003636
3637 nd.root.mnt = mnt;
3638 nd.root.dentry = dentry;
3639
David Howellsb18825a2013-09-12 19:22:53 +01003640 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05003641 return ERR_PTR(-ELOOP);
3642
Paul Moore51689102015-01-22 00:00:03 -05003643 filename = getname_kernel(name);
Viresh Kumara1c83682015-08-12 15:59:44 +05303644 if (IS_ERR(filename))
Paul Moore51689102015-01-22 00:00:03 -05003645 return ERR_CAST(filename);
3646
Al Viro9883d182015-05-13 07:28:08 -04003647 set_nameidata(&nd, -1, filename);
Al Viroc8a53ee2015-05-12 18:43:07 -04003648 file = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro73d049a2011-03-11 12:08:24 -05003649 if (unlikely(file == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003650 file = path_openat(&nd, op, flags);
Al Viro73d049a2011-03-11 12:08:24 -05003651 if (unlikely(file == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003652 file = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003653 restore_nameidata();
Paul Moore51689102015-01-22 00:00:03 -05003654 putname(filename);
Al Viro73d049a2011-03-11 12:08:24 -05003655 return file;
3656}
3657
Al Virofa14a0b2015-01-22 02:16:49 -05003658static struct dentry *filename_create(int dfd, struct filename *name,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003659 struct path *path, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003661 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viro391172c2015-05-09 11:19:16 -04003662 struct qstr last;
3663 int type;
Jan Karac30dabf2012-06-12 16:20:30 +02003664 int err2;
Jeff Layton1ac12b42012-12-11 12:10:06 -05003665 int error;
3666 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3667
3668 /*
3669 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3670 * other flags passed in are ignored!
3671 */
3672 lookup_flags &= LOOKUP_REVAL;
3673
Al Viro5c31b6c2015-05-12 17:32:54 -04003674 name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
3675 if (IS_ERR(name))
3676 return ERR_CAST(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003678 /*
3679 * Yucky last component or no last component at all?
3680 * (foo/., foo/.., /////)
3681 */
Al Viro5c31b6c2015-05-12 17:32:54 -04003682 if (unlikely(type != LAST_NORM))
Al Viroed75e952011-06-27 16:53:43 -04003683 goto out;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003684
Jan Karac30dabf2012-06-12 16:20:30 +02003685 /* don't fail immediately if it's r/o, at least try to report other errors */
Al Viro391172c2015-05-09 11:19:16 -04003686 err2 = mnt_want_write(path->mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003687 /*
3688 * Do the final lookup.
3689 */
Al Viro391172c2015-05-09 11:19:16 -04003690 lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Al Viro59551022016-01-22 15:40:57 -05003691 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04003692 dentry = __lookup_hash(&last, path->dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003694 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003695
Al Viroa8104a92012-07-20 02:25:00 +04003696 error = -EEXIST;
David Howellsb18825a2013-09-12 19:22:53 +01003697 if (d_is_positive(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003698 goto fail;
David Howellsb18825a2013-09-12 19:22:53 +01003699
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003700 /*
3701 * Special case - lookup gave negative, but... we had foo/bar/
3702 * From the vfs_mknod() POV we just have a negative dentry -
3703 * all is fine. Let's be bastards - you had / on the end, you've
3704 * been asking for (non-existent) directory. -ENOENT for you.
3705 */
Al Viro391172c2015-05-09 11:19:16 -04003706 if (unlikely(!is_dir && last.name[last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003707 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003708 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003709 }
Jan Karac30dabf2012-06-12 16:20:30 +02003710 if (unlikely(err2)) {
3711 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003712 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003713 }
Al Viro181c37b2015-05-12 17:21:25 -04003714 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716fail:
Al Viroa8104a92012-07-20 02:25:00 +04003717 dput(dentry);
3718 dentry = ERR_PTR(error);
3719unlock:
Al Viro59551022016-01-22 15:40:57 -05003720 inode_unlock(path->dentry->d_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02003721 if (!err2)
Al Viro391172c2015-05-09 11:19:16 -04003722 mnt_drop_write(path->mnt);
Al Viroed75e952011-06-27 16:53:43 -04003723out:
Al Viro391172c2015-05-09 11:19:16 -04003724 path_put(path);
Al Viro181c37b2015-05-12 17:21:25 -04003725 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726 return dentry;
3727}
Al Virofa14a0b2015-01-22 02:16:49 -05003728
3729struct dentry *kern_path_create(int dfd, const char *pathname,
3730 struct path *path, unsigned int lookup_flags)
3731{
Al Viro181c37b2015-05-12 17:21:25 -04003732 return filename_create(dfd, getname_kernel(pathname),
3733 path, lookup_flags);
Al Virofa14a0b2015-01-22 02:16:49 -05003734}
Al Virodae6ad82011-06-26 11:50:15 -04003735EXPORT_SYMBOL(kern_path_create);
3736
Al Viro921a1652012-07-20 01:15:31 +04003737void done_path_create(struct path *path, struct dentry *dentry)
3738{
3739 dput(dentry);
Al Viro59551022016-01-22 15:40:57 -05003740 inode_unlock(path->dentry->d_inode);
Al Viroa8104a92012-07-20 02:25:00 +04003741 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003742 path_put(path);
3743}
3744EXPORT_SYMBOL(done_path_create);
3745
Al Viro520ae682015-05-13 07:00:28 -04003746inline struct dentry *user_path_create(int dfd, const char __user *pathname,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003747 struct path *path, unsigned int lookup_flags)
Al Virodae6ad82011-06-26 11:50:15 -04003748{
Al Viro181c37b2015-05-12 17:21:25 -04003749 return filename_create(dfd, getname(pathname), path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003750}
3751EXPORT_SYMBOL(user_path_create);
3752
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003753int vfs_mknod2(struct vfsmount *mnt, struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754{
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003755 int error = may_create(mnt, dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756
3757 if (error)
3758 return error;
3759
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003760 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761 return -EPERM;
3762
Al Viroacfa4382008-12-04 10:06:33 -05003763 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 return -EPERM;
3765
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003766 error = devcgroup_inode_mknod(mode, dev);
3767 if (error)
3768 return error;
3769
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770 error = security_inode_mknod(dir, dentry, mode, dev);
3771 if (error)
3772 return error;
3773
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 error = dir->i_op->mknod(dir, dentry, mode, dev);
Neeraj Sonic692cb92018-04-18 17:20:22 +05303775 if (error)
3776 return error;
3777
3778 error = security_inode_post_create(dir, dentry, mode);
3779 if (error)
3780 return error;
3781
Stephen Smalleya74574a2005-09-09 13:01:44 -07003782 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003783 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784 return error;
3785}
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003786EXPORT_SYMBOL(vfs_mknod2);
3787
3788int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
3789{
3790 return vfs_mknod2(NULL, dir, dentry, mode, dev);
3791}
Al Viro4d359502014-03-14 12:20:17 -04003792EXPORT_SYMBOL(vfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793
Al Virof69aac02011-07-26 04:31:40 -04003794static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003795{
3796 switch (mode & S_IFMT) {
3797 case S_IFREG:
3798 case S_IFCHR:
3799 case S_IFBLK:
3800 case S_IFIFO:
3801 case S_IFSOCK:
3802 case 0: /* zero mode translates to S_IFREG */
3803 return 0;
3804 case S_IFDIR:
3805 return -EPERM;
3806 default:
3807 return -EINVAL;
3808 }
3809}
3810
Al Viro8208a222011-07-25 17:32:17 -04003811SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003812 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813{
Al Viro2ad94ae2008-07-21 09:32:51 -04003814 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003815 struct path path;
3816 int error;
Jeff Layton972567f2012-12-20 16:00:10 -05003817 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818
Al Viro8e4bfca2012-07-20 01:17:26 +04003819 error = may_mknod(mode);
3820 if (error)
3821 return error;
Jeff Layton972567f2012-12-20 16:00:10 -05003822retry:
3823 dentry = user_path_create(dfd, filename, &path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003824 if (IS_ERR(dentry))
3825 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003826
Al Virodae6ad82011-06-26 11:50:15 -04003827 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003828 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003829 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003830 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003831 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003832 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 case 0: case S_IFREG:
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003834 error = vfs_create2(path.mnt, path.dentry->d_inode,dentry,mode,true);
Mimi Zohar05d1a712016-02-29 19:52:05 -05003835 if (!error)
3836 ima_post_path_mknod(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 break;
3838 case S_IFCHR: case S_IFBLK:
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003839 error = vfs_mknod2(path.mnt, path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 new_decode_dev(dev));
3841 break;
3842 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003843 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 }
Al Viroa8104a92012-07-20 02:25:00 +04003846out:
Al Viro921a1652012-07-20 01:15:31 +04003847 done_path_create(&path, dentry);
Jeff Layton972567f2012-12-20 16:00:10 -05003848 if (retry_estale(error, lookup_flags)) {
3849 lookup_flags |= LOOKUP_REVAL;
3850 goto retry;
3851 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 return error;
3853}
3854
Al Viro8208a222011-07-25 17:32:17 -04003855SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003856{
3857 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3858}
3859
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003860int vfs_mkdir2(struct vfsmount *mnt, struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861{
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003862 int error = may_create(mnt, dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003863 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864
3865 if (error)
3866 return error;
3867
Al Viroacfa4382008-12-04 10:06:33 -05003868 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 return -EPERM;
3870
3871 mode &= (S_IRWXUGO|S_ISVTX);
3872 error = security_inode_mkdir(dir, dentry, mode);
3873 if (error)
3874 return error;
3875
Al Viro8de52772012-02-06 12:45:27 -05003876 if (max_links && dir->i_nlink >= max_links)
3877 return -EMLINK;
3878
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003880 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003881 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 return error;
3883}
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003884EXPORT_SYMBOL(vfs_mkdir2);
3885
3886int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
3887{
3888 return vfs_mkdir2(NULL, dir, dentry, mode);
3889}
Al Viro4d359502014-03-14 12:20:17 -04003890EXPORT_SYMBOL(vfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891
Al Viroa218d0f2011-11-21 14:59:34 -05003892SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893{
Dave Hansen6902d922006-09-30 23:29:01 -07003894 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003895 struct path path;
3896 int error;
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003897 unsigned int lookup_flags = LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003899retry:
3900 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003901 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003902 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003903
Al Virodae6ad82011-06-26 11:50:15 -04003904 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003905 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003906 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003907 if (!error)
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003908 error = vfs_mkdir2(path.mnt, path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003909 done_path_create(&path, dentry);
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003910 if (retry_estale(error, lookup_flags)) {
3911 lookup_flags |= LOOKUP_REVAL;
3912 goto retry;
3913 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 return error;
3915}
3916
Al Viroa218d0f2011-11-21 14:59:34 -05003917SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003918{
3919 return sys_mkdirat(AT_FDCWD, pathname, mode);
3920}
3921
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003922int vfs_rmdir2(struct vfsmount *mnt, struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923{
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003924 int error = may_delete(mnt, dir, dentry, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925
3926 if (error)
3927 return error;
3928
Al Viroacfa4382008-12-04 10:06:33 -05003929 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 return -EPERM;
3931
Al Viro1d2ef592011-09-14 18:55:41 +01003932 dget(dentry);
Al Viro59551022016-01-22 15:40:57 -05003933 inode_lock(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934
Sage Weil912dbc12011-05-24 13:06:11 -07003935 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07003936 if (is_local_mountpoint(dentry))
Sage Weil912dbc12011-05-24 13:06:11 -07003937 goto out;
3938
3939 error = security_inode_rmdir(dir, dentry);
3940 if (error)
3941 goto out;
3942
Sage Weil3cebde22011-05-29 21:20:59 -07003943 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003944 error = dir->i_op->rmdir(dir, dentry);
3945 if (error)
3946 goto out;
3947
3948 dentry->d_inode->i_flags |= S_DEAD;
3949 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003950 detach_mounts(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003951
3952out:
Al Viro59551022016-01-22 15:40:57 -05003953 inode_unlock(dentry->d_inode);
Al Viro1d2ef592011-09-14 18:55:41 +01003954 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003955 if (!error)
3956 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 return error;
3958}
Guenter Roeckf1222162017-01-30 12:29:00 -08003959EXPORT_SYMBOL(vfs_rmdir2);
3960
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003961int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3962{
3963 return vfs_rmdir2(NULL, dir, dentry);
3964}
Al Viro4d359502014-03-14 12:20:17 -04003965EXPORT_SYMBOL(vfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003967static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968{
3969 int error = 0;
Jeff Layton91a27b22012-10-10 15:25:28 -04003970 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04003972 struct path path;
3973 struct qstr last;
3974 int type;
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003975 unsigned int lookup_flags = 0;
3976retry:
Al Virof5beed72015-04-30 16:09:11 -04003977 name = user_path_parent(dfd, pathname,
3978 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003979 if (IS_ERR(name))
3980 return PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981
Al Virof5beed72015-04-30 16:09:11 -04003982 switch (type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003983 case LAST_DOTDOT:
3984 error = -ENOTEMPTY;
3985 goto exit1;
3986 case LAST_DOT:
3987 error = -EINVAL;
3988 goto exit1;
3989 case LAST_ROOT:
3990 error = -EBUSY;
3991 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003993
Al Virof5beed72015-04-30 16:09:11 -04003994 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02003995 if (error)
3996 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003997
Al Viro59551022016-01-22 15:40:57 -05003998 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04003999 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07004001 if (IS_ERR(dentry))
4002 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04004003 if (!dentry->d_inode) {
4004 error = -ENOENT;
4005 goto exit3;
4006 }
Al Virof5beed72015-04-30 16:09:11 -04004007 error = security_path_rmdir(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004008 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004009 goto exit3;
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004010 error = vfs_rmdir2(path.mnt, path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08004011exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07004012 dput(dentry);
4013exit2:
Al Viro59551022016-01-22 15:40:57 -05004014 inode_unlock(path.dentry->d_inode);
Al Virof5beed72015-04-30 16:09:11 -04004015 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016exit1:
Al Virof5beed72015-04-30 16:09:11 -04004017 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 putname(name);
Jeff Laytonc6ee9202012-12-20 16:28:33 -05004019 if (retry_estale(error, lookup_flags)) {
4020 lookup_flags |= LOOKUP_REVAL;
4021 goto retry;
4022 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 return error;
4024}
4025
Heiko Carstens3cdad422009-01-14 14:14:22 +01004026SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004027{
4028 return do_rmdir(AT_FDCWD, pathname);
4029}
4030
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004031/**
4032 * vfs_unlink - unlink a filesystem object
4033 * @dir: parent directory
4034 * @dentry: victim
4035 * @delegated_inode: returns victim inode, if the inode is delegated.
4036 *
4037 * The caller must hold dir->i_mutex.
4038 *
4039 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
4040 * return a reference to the inode in delegated_inode. The caller
4041 * should then break the delegation on that inode and retry. Because
4042 * breaking a delegation may take a long time, the caller should drop
4043 * dir->i_mutex before doing so.
4044 *
4045 * Alternatively, a caller may pass NULL for delegated_inode. This may
4046 * be appropriate for callers that expect the underlying filesystem not
4047 * to be NFS exported.
4048 */
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004049int vfs_unlink2(struct vfsmount *mnt, struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050{
J. Bruce Fields9accbb92012-08-28 07:03:24 -04004051 struct inode *target = dentry->d_inode;
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004052 int error = may_delete(mnt, dir, dentry, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053
4054 if (error)
4055 return error;
4056
Al Viroacfa4382008-12-04 10:06:33 -05004057 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058 return -EPERM;
4059
Al Viro59551022016-01-22 15:40:57 -05004060 inode_lock(target);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004061 if (is_local_mountpoint(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 error = -EBUSY;
4063 else {
4064 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05004065 if (!error) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07004066 error = try_break_deleg(target, delegated_inode);
4067 if (error)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004068 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 error = dir->i_op->unlink(dir, dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004070 if (!error) {
Al Virod83c49f2010-04-30 17:17:09 -04004071 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004072 detach_mounts(dentry);
4073 }
Al Virobec10522010-03-03 14:12:08 -05004074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 }
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004076out:
Al Viro59551022016-01-22 15:40:57 -05004077 inode_unlock(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
4079 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
4080 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
J. Bruce Fields9accbb92012-08-28 07:03:24 -04004081 fsnotify_link_count(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 }
Robert Love0eeca282005-07-12 17:06:03 -04004084
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 return error;
4086}
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004087EXPORT_SYMBOL(vfs_unlink2);
4088
4089int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
4090{
4091 return vfs_unlink2(NULL, dir, dentry, delegated_inode);
4092}
Al Viro4d359502014-03-14 12:20:17 -04004093EXPORT_SYMBOL(vfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094
4095/*
4096 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004097 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 * writeout happening, and we don't want to prevent access to the directory
4099 * while waiting on the I/O.
4100 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004101static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102{
Al Viro2ad94ae2008-07-21 09:32:51 -04004103 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04004104 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04004106 struct path path;
4107 struct qstr last;
4108 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 struct inode *inode = NULL;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004110 struct inode *delegated_inode = NULL;
Jeff Layton5d18f812012-12-20 16:38:04 -05004111 unsigned int lookup_flags = 0;
4112retry:
Al Virof5beed72015-04-30 16:09:11 -04004113 name = user_path_parent(dfd, pathname,
4114 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004115 if (IS_ERR(name))
4116 return PTR_ERR(name);
Al Viro2ad94ae2008-07-21 09:32:51 -04004117
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 error = -EISDIR;
Al Virof5beed72015-04-30 16:09:11 -04004119 if (type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09004121
Al Virof5beed72015-04-30 16:09:11 -04004122 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004123 if (error)
4124 goto exit1;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004125retry_deleg:
Al Viro59551022016-01-22 15:40:57 -05004126 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04004127 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 error = PTR_ERR(dentry);
4129 if (!IS_ERR(dentry)) {
4130 /* Why not before? Because we want correct error value */
Al Virof5beed72015-04-30 16:09:11 -04004131 if (last.name[last.len])
Török Edwin50338b82011-06-16 00:06:14 +03004132 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 inode = dentry->d_inode;
David Howellsb18825a2013-09-12 19:22:53 +01004134 if (d_is_negative(dentry))
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04004135 goto slashes;
4136 ihold(inode);
Al Virof5beed72015-04-30 16:09:11 -04004137 error = security_path_unlink(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004138 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004139 goto exit2;
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004140 error = vfs_unlink2(path.mnt, path.dentry->d_inode, dentry, &delegated_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02004141exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 dput(dentry);
4143 }
Al Viro59551022016-01-22 15:40:57 -05004144 inode_unlock(path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145 if (inode)
4146 iput(inode); /* truncate the inode here */
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004147 inode = NULL;
4148 if (delegated_inode) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07004149 error = break_deleg_wait(&delegated_inode);
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004150 if (!error)
4151 goto retry_deleg;
4152 }
Al Virof5beed72015-04-30 16:09:11 -04004153 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154exit1:
Al Virof5beed72015-04-30 16:09:11 -04004155 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 putname(name);
Jeff Layton5d18f812012-12-20 16:38:04 -05004157 if (retry_estale(error, lookup_flags)) {
4158 lookup_flags |= LOOKUP_REVAL;
4159 inode = NULL;
4160 goto retry;
4161 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 return error;
4163
4164slashes:
David Howellsb18825a2013-09-12 19:22:53 +01004165 if (d_is_negative(dentry))
4166 error = -ENOENT;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02004167 else if (d_is_dir(dentry))
David Howellsb18825a2013-09-12 19:22:53 +01004168 error = -EISDIR;
4169 else
4170 error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004171 goto exit2;
4172}
4173
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004174SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004175{
4176 if ((flag & ~AT_REMOVEDIR) != 0)
4177 return -EINVAL;
4178
4179 if (flag & AT_REMOVEDIR)
4180 return do_rmdir(dfd, pathname);
4181
4182 return do_unlinkat(dfd, pathname);
4183}
4184
Heiko Carstens3480b252009-01-14 14:14:16 +01004185SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004186{
4187 return do_unlinkat(AT_FDCWD, pathname);
4188}
4189
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004190int vfs_symlink2(struct vfsmount *mnt, struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191{
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004192 int error = may_create(mnt, dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193
4194 if (error)
4195 return error;
4196
Al Viroacfa4382008-12-04 10:06:33 -05004197 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198 return -EPERM;
4199
4200 error = security_inode_symlink(dir, dentry, oldname);
4201 if (error)
4202 return error;
4203
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07004205 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00004206 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207 return error;
4208}
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004209EXPORT_SYMBOL(vfs_symlink2);
4210
4211int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
4212{
4213 return vfs_symlink2(NULL, dir, dentry, oldname);
4214}
Al Viro4d359502014-03-14 12:20:17 -04004215EXPORT_SYMBOL(vfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004217SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
4218 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219{
Al Viro2ad94ae2008-07-21 09:32:51 -04004220 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04004221 struct filename *from;
Dave Hansen6902d922006-09-30 23:29:01 -07004222 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004223 struct path path;
Jeff Laytonf46d3562012-12-11 12:10:08 -05004224 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225
4226 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04004227 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 return PTR_ERR(from);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004229retry:
4230 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07004231 error = PTR_ERR(dentry);
4232 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004233 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07004234
Jeff Layton91a27b22012-10-10 15:25:28 -04004235 error = security_path_symlink(&path, dentry, from->name);
Al Viroa8104a92012-07-20 02:25:00 +04004236 if (!error)
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004237 error = vfs_symlink2(path.mnt, path.dentry->d_inode, dentry, from->name);
Al Viro921a1652012-07-20 01:15:31 +04004238 done_path_create(&path, dentry);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004239 if (retry_estale(error, lookup_flags)) {
4240 lookup_flags |= LOOKUP_REVAL;
4241 goto retry;
4242 }
Dave Hansen6902d922006-09-30 23:29:01 -07004243out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 putname(from);
4245 return error;
4246}
4247
Heiko Carstens3480b252009-01-14 14:14:16 +01004248SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004249{
4250 return sys_symlinkat(oldname, AT_FDCWD, newname);
4251}
4252
J. Bruce Fields146a8592011-09-20 17:14:31 -04004253/**
4254 * vfs_link - create a new link
4255 * @old_dentry: object to be linked
4256 * @dir: new parent
4257 * @new_dentry: where to create the new link
4258 * @delegated_inode: returns inode needing a delegation break
4259 *
4260 * The caller must hold dir->i_mutex
4261 *
4262 * If vfs_link discovers a delegation on the to-be-linked file in need
4263 * of breaking, it will return -EWOULDBLOCK and return a reference to the
4264 * inode in delegated_inode. The caller should then break the delegation
4265 * and retry. Because breaking a delegation may take a long time, the
4266 * caller should drop the i_mutex before doing so.
4267 *
4268 * Alternatively, a caller may pass NULL for delegated_inode. This may
4269 * be appropriate for callers that expect the underlying filesystem not
4270 * to be NFS exported.
4271 */
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004272int vfs_link2(struct vfsmount *mnt, struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273{
4274 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05004275 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 int error;
4277
4278 if (!inode)
4279 return -ENOENT;
4280
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004281 error = may_create(mnt, dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282 if (error)
4283 return error;
4284
4285 if (dir->i_sb != inode->i_sb)
4286 return -EXDEV;
4287
4288 /*
4289 * A link to an append-only or immutable file cannot be created.
4290 */
4291 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4292 return -EPERM;
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05004293 /*
4294 * Updating the link count will likely cause i_uid and i_gid to
4295 * be writen back improperly if their true value is unknown to
4296 * the vfs.
4297 */
4298 if (HAS_UNMAPPED_ID(inode))
4299 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05004300 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004302 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 return -EPERM;
4304
4305 error = security_inode_link(old_dentry, dir, new_dentry);
4306 if (error)
4307 return error;
4308
Al Viro59551022016-01-22 15:40:57 -05004309 inode_lock(inode);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304310 /* Make sure we don't allow creating hardlink to an unlinked file */
Al Virof4e0c302013-06-11 08:34:36 +04004311 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304312 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05004313 else if (max_links && inode->i_nlink >= max_links)
4314 error = -EMLINK;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004315 else {
4316 error = try_break_deleg(inode, delegated_inode);
4317 if (!error)
4318 error = dir->i_op->link(old_dentry, dir, new_dentry);
4319 }
Al Virof4e0c302013-06-11 08:34:36 +04004320
4321 if (!error && (inode->i_state & I_LINKABLE)) {
4322 spin_lock(&inode->i_lock);
4323 inode->i_state &= ~I_LINKABLE;
4324 spin_unlock(&inode->i_lock);
4325 }
Al Viro59551022016-01-22 15:40:57 -05004326 inode_unlock(inode);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07004327 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004328 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 return error;
4330}
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004331EXPORT_SYMBOL(vfs_link2);
4332
4333int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
4334{
4335 return vfs_link2(NULL, old_dentry, dir, new_dentry, delegated_inode);
4336}
Al Viro4d359502014-03-14 12:20:17 -04004337EXPORT_SYMBOL(vfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338
4339/*
4340 * Hardlinks are often used in delicate situations. We avoid
4341 * security-related surprises by not following symlinks on the
4342 * newname. --KAB
4343 *
4344 * We don't follow them on the oldname either to be compatible
4345 * with linux 2.0, and to avoid hard-linking to directories
4346 * and other special files. --ADM
4347 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004348SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4349 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350{
4351 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004352 struct path old_path, new_path;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004353 struct inode *delegated_inode = NULL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304354 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304357 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004358 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304359 /*
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004360 * To use null names we require CAP_DAC_READ_SEARCH
4361 * This ensures that not everyone will be able to create
4362 * handlink using the passed filedescriptor.
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304363 */
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004364 if (flags & AT_EMPTY_PATH) {
4365 if (!capable(CAP_DAC_READ_SEARCH))
4366 return -ENOENT;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304367 how = LOOKUP_EMPTY;
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004368 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004369
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304370 if (flags & AT_SYMLINK_FOLLOW)
4371 how |= LOOKUP_FOLLOW;
Jeff Layton442e31c2012-12-20 16:15:38 -05004372retry:
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304373 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04004375 return error;
4376
Jeff Layton442e31c2012-12-20 16:15:38 -05004377 new_dentry = user_path_create(newdfd, newname, &new_path,
4378 (how & LOOKUP_REVAL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004379 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07004380 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004381 goto out;
4382
4383 error = -EXDEV;
4384 if (old_path.mnt != new_path.mnt)
4385 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07004386 error = may_linkat(&old_path);
4387 if (unlikely(error))
4388 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04004389 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004390 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04004391 goto out_dput;
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004392 error = vfs_link2(old_path.mnt, old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
Dave Hansen75c3f292008-02-15 14:37:45 -08004393out_dput:
Al Viro921a1652012-07-20 01:15:31 +04004394 done_path_create(&new_path, new_dentry);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004395 if (delegated_inode) {
4396 error = break_deleg_wait(&delegated_inode);
Oleg Drokind22e6332014-01-31 15:41:58 -05004397 if (!error) {
4398 path_put(&old_path);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004399 goto retry;
Oleg Drokind22e6332014-01-31 15:41:58 -05004400 }
J. Bruce Fields146a8592011-09-20 17:14:31 -04004401 }
Jeff Layton442e31c2012-12-20 16:15:38 -05004402 if (retry_estale(error, how)) {
Oleg Drokind22e6332014-01-31 15:41:58 -05004403 path_put(&old_path);
Jeff Layton442e31c2012-12-20 16:15:38 -05004404 how |= LOOKUP_REVAL;
4405 goto retry;
4406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407out:
Al Viro2d8f3032008-07-22 09:59:21 -04004408 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409
4410 return error;
4411}
4412
Heiko Carstens3480b252009-01-14 14:14:16 +01004413SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004414{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004415 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004416}
4417
Miklos Szeredibc270272014-04-01 17:08:42 +02004418/**
4419 * vfs_rename - rename a filesystem object
4420 * @old_dir: parent of source
4421 * @old_dentry: source
4422 * @new_dir: parent of destination
4423 * @new_dentry: destination
4424 * @delegated_inode: returns an inode needing a delegation break
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004425 * @flags: rename flags
Miklos Szeredibc270272014-04-01 17:08:42 +02004426 *
4427 * The caller must hold multiple mutexes--see lock_rename()).
4428 *
4429 * If vfs_rename discovers a delegation in need of breaking at either
4430 * the source or destination, it will return -EWOULDBLOCK and return a
4431 * reference to the inode in delegated_inode. The caller should then
4432 * break the delegation and retry. Because breaking a delegation may
4433 * take a long time, the caller should drop all locks before doing
4434 * so.
4435 *
4436 * Alternatively, a caller may pass NULL for delegated_inode. This may
4437 * be appropriate for callers that expect the underlying filesystem not
4438 * to be NFS exported.
4439 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004440 * The worst of all namespace operations - renaming directory. "Perverted"
4441 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4442 * Problems:
J. Bruce Fieldsd03b29a2014-02-17 16:52:33 -05004443 * a) we can get into loop creation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444 * b) race potential - two innocent renames can create a loop together.
4445 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004446 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447 * story.
J. Bruce Fields6cedba82012-03-05 11:40:41 -05004448 * c) we have to lock _four_ objects - parents and victim (if it exists),
4449 * and source (if it is not a directory).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004450 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 * whether the target exists). Solution: try to be smart with locking
4452 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004453 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454 * move will be locked. Thus we can rank directories by the tree
4455 * (ancestors first) and rank all non-directories after them.
4456 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004457 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 * HOWEVER, it relies on the assumption that any object with ->lookup()
4459 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4460 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07004461 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004462 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05004464 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465 * locking].
4466 */
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004467int vfs_rename2(struct vfsmount *mnt,
4468 struct inode *old_dir, struct dentry *old_dentry,
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004469 struct inode *new_dir, struct dentry *new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004470 struct inode **delegated_inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471{
4472 int error;
Miklos Szeredibc270272014-04-01 17:08:42 +02004473 bool is_dir = d_is_dir(old_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004474 struct inode *source = old_dentry->d_inode;
4475 struct inode *target = new_dentry->d_inode;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004476 bool new_is_dir = false;
4477 unsigned max_links = new_dir->i_sb->s_max_links;
Al Viroad25f112017-07-07 14:51:19 -04004478 struct name_snapshot old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479
Miklos Szeredi9409e222016-05-11 01:16:37 +02004480 /*
4481 * Check source == target.
4482 * On overlayfs need to look at underlying inodes.
4483 */
Miklos Szeredi2d902672016-06-30 08:53:27 +02004484 if (d_real_inode(old_dentry) == d_real_inode(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004485 return 0;
4486
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004487 error = may_delete(mnt, old_dir, old_dentry, is_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 if (error)
4489 return error;
4490
Miklos Szeredida1ce062014-04-01 17:08:43 +02004491 if (!target) {
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004492 error = may_create(mnt, new_dir, new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004493 } else {
4494 new_is_dir = d_is_dir(new_dentry);
4495
4496 if (!(flags & RENAME_EXCHANGE))
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004497 error = may_delete(mnt, new_dir, new_dentry, is_dir);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004498 else
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004499 error = may_delete(mnt, new_dir, new_dentry, new_is_dir);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501 if (error)
4502 return error;
4503
Miklos Szeredi2773bf02016-09-27 11:03:58 +02004504 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505 return -EPERM;
4506
Miklos Szeredibc270272014-04-01 17:08:42 +02004507 /*
4508 * If we are going to change the parent - check write permissions,
4509 * we'll need to flip '..'.
4510 */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004511 if (new_dir != old_dir) {
4512 if (is_dir) {
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004513 error = inode_permission2(mnt, source, MAY_WRITE);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004514 if (error)
4515 return error;
4516 }
4517 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004518 error = inode_permission2(mnt, target, MAY_WRITE);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004519 if (error)
4520 return error;
4521 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004522 }
Robert Love0eeca282005-07-12 17:06:03 -04004523
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004524 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4525 flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004526 if (error)
4527 return error;
4528
Al Viroad25f112017-07-07 14:51:19 -04004529 take_dentry_name_snapshot(&old_name, old_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004530 dget(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004531 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004532 lock_two_nondirectories(source, target);
4533 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004534 inode_lock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004535
4536 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07004537 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004538 goto out;
4539
Miklos Szeredida1ce062014-04-01 17:08:43 +02004540 if (max_links && new_dir != old_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004541 error = -EMLINK;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004542 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
Miklos Szeredibc270272014-04-01 17:08:42 +02004543 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004544 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4545 old_dir->i_nlink >= max_links)
4546 goto out;
4547 }
4548 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4549 shrink_dcache_parent(new_dentry);
4550 if (!is_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004551 error = try_break_deleg(source, delegated_inode);
4552 if (error)
4553 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004554 }
4555 if (target && !new_is_dir) {
4556 error = try_break_deleg(target, delegated_inode);
4557 if (error)
4558 goto out;
Miklos Szeredibc270272014-04-01 17:08:42 +02004559 }
Miklos Szeredi2773bf02016-09-27 11:03:58 +02004560 error = old_dir->i_op->rename(old_dir, old_dentry,
Miklos Szeredi18fc84d2016-09-27 11:03:58 +02004561 new_dir, new_dentry, flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004562 if (error)
4563 goto out;
4564
Miklos Szeredida1ce062014-04-01 17:08:43 +02004565 if (!(flags & RENAME_EXCHANGE) && target) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004566 if (is_dir)
4567 target->i_flags |= S_DEAD;
4568 dont_mount(new_dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004569 detach_mounts(new_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004570 }
Miklos Szeredida1ce062014-04-01 17:08:43 +02004571 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4572 if (!(flags & RENAME_EXCHANGE))
4573 d_move(old_dentry, new_dentry);
4574 else
4575 d_exchange(old_dentry, new_dentry);
4576 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004577out:
Miklos Szeredida1ce062014-04-01 17:08:43 +02004578 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004579 unlock_two_nondirectories(source, target);
4580 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004581 inode_unlock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004582 dput(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004583 if (!error) {
Al Viroad25f112017-07-07 14:51:19 -04004584 fsnotify_move(old_dir, new_dir, old_name.name, is_dir,
Miklos Szeredida1ce062014-04-01 17:08:43 +02004585 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4586 if (flags & RENAME_EXCHANGE) {
4587 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4588 new_is_dir, NULL, new_dentry);
4589 }
4590 }
Al Viroad25f112017-07-07 14:51:19 -04004591 release_dentry_name_snapshot(&old_name);
Robert Love0eeca282005-07-12 17:06:03 -04004592
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593 return error;
4594}
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004595EXPORT_SYMBOL(vfs_rename2);
4596
4597int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
4598 struct inode *new_dir, struct dentry *new_dentry,
4599 struct inode **delegated_inode, unsigned int flags)
4600{
4601 return vfs_rename2(NULL, old_dir, old_dentry, new_dir, new_dentry, delegated_inode, flags);
4602}
Al Viro4d359502014-03-14 12:20:17 -04004603EXPORT_SYMBOL(vfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004605SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4606 int, newdfd, const char __user *, newname, unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004607{
Al Viro2ad94ae2008-07-21 09:32:51 -04004608 struct dentry *old_dentry, *new_dentry;
4609 struct dentry *trap;
Al Virof5beed72015-04-30 16:09:11 -04004610 struct path old_path, new_path;
4611 struct qstr old_last, new_last;
4612 int old_type, new_type;
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004613 struct inode *delegated_inode = NULL;
Jeff Layton91a27b22012-10-10 15:25:28 -04004614 struct filename *from;
4615 struct filename *to;
Al Virof5beed72015-04-30 16:09:11 -04004616 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
Jeff Laytonc6a94282012-12-11 12:10:10 -05004617 bool should_retry = false;
Al Viro2ad94ae2008-07-21 09:32:51 -04004618 int error;
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004619
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004620 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredida1ce062014-04-01 17:08:43 +02004621 return -EINVAL;
4622
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004623 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4624 (flags & RENAME_EXCHANGE))
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004625 return -EINVAL;
4626
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004627 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4628 return -EPERM;
4629
Al Virof5beed72015-04-30 16:09:11 -04004630 if (flags & RENAME_EXCHANGE)
4631 target_flags = 0;
4632
Jeff Laytonc6a94282012-12-11 12:10:10 -05004633retry:
Al Virof5beed72015-04-30 16:09:11 -04004634 from = user_path_parent(olddfd, oldname,
4635 &old_path, &old_last, &old_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004636 if (IS_ERR(from)) {
4637 error = PTR_ERR(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638 goto exit;
Jeff Layton91a27b22012-10-10 15:25:28 -04004639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640
Al Virof5beed72015-04-30 16:09:11 -04004641 to = user_path_parent(newdfd, newname,
4642 &new_path, &new_last, &new_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004643 if (IS_ERR(to)) {
4644 error = PTR_ERR(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004645 goto exit1;
Jeff Layton91a27b22012-10-10 15:25:28 -04004646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647
4648 error = -EXDEV;
Al Virof5beed72015-04-30 16:09:11 -04004649 if (old_path.mnt != new_path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650 goto exit2;
4651
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652 error = -EBUSY;
Al Virof5beed72015-04-30 16:09:11 -04004653 if (old_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 goto exit2;
4655
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004656 if (flags & RENAME_NOREPLACE)
4657 error = -EEXIST;
Al Virof5beed72015-04-30 16:09:11 -04004658 if (new_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004659 goto exit2;
4660
Al Virof5beed72015-04-30 16:09:11 -04004661 error = mnt_want_write(old_path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004662 if (error)
4663 goto exit2;
4664
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004665retry_deleg:
Al Virof5beed72015-04-30 16:09:11 -04004666 trap = lock_rename(new_path.dentry, old_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667
Al Virof5beed72015-04-30 16:09:11 -04004668 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 error = PTR_ERR(old_dentry);
4670 if (IS_ERR(old_dentry))
4671 goto exit3;
4672 /* source must exist */
4673 error = -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01004674 if (d_is_negative(old_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004675 goto exit4;
Al Virof5beed72015-04-30 16:09:11 -04004676 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004677 error = PTR_ERR(new_dentry);
4678 if (IS_ERR(new_dentry))
4679 goto exit4;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004680 error = -EEXIST;
4681 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4682 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004683 if (flags & RENAME_EXCHANGE) {
4684 error = -ENOENT;
4685 if (d_is_negative(new_dentry))
4686 goto exit5;
4687
4688 if (!d_is_dir(new_dentry)) {
4689 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004690 if (new_last.name[new_last.len])
Miklos Szeredida1ce062014-04-01 17:08:43 +02004691 goto exit5;
4692 }
4693 }
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004694 /* unless the source is a directory trailing slashes give -ENOTDIR */
4695 if (!d_is_dir(old_dentry)) {
4696 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004697 if (old_last.name[old_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004698 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004699 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004700 goto exit5;
4701 }
4702 /* source should not be ancestor of target */
4703 error = -EINVAL;
4704 if (old_dentry == trap)
4705 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004706 /* target should not be an ancestor of source */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004707 if (!(flags & RENAME_EXCHANGE))
4708 error = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004709 if (new_dentry == trap)
4710 goto exit5;
4711
Al Virof5beed72015-04-30 16:09:11 -04004712 error = security_path_rename(&old_path, old_dentry,
4713 &new_path, new_dentry, flags);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004714 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004715 goto exit5;
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004716 error = vfs_rename2(old_path.mnt, old_path.dentry->d_inode, old_dentry,
Al Virof5beed72015-04-30 16:09:11 -04004717 new_path.dentry->d_inode, new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004718 &delegated_inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719exit5:
4720 dput(new_dentry);
4721exit4:
4722 dput(old_dentry);
4723exit3:
Al Virof5beed72015-04-30 16:09:11 -04004724 unlock_rename(new_path.dentry, old_path.dentry);
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004725 if (delegated_inode) {
4726 error = break_deleg_wait(&delegated_inode);
4727 if (!error)
4728 goto retry_deleg;
4729 }
Al Virof5beed72015-04-30 16:09:11 -04004730 mnt_drop_write(old_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731exit2:
Jeff Laytonc6a94282012-12-11 12:10:10 -05004732 if (retry_estale(error, lookup_flags))
4733 should_retry = true;
Al Virof5beed72015-04-30 16:09:11 -04004734 path_put(&new_path);
Al Viro2ad94ae2008-07-21 09:32:51 -04004735 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004736exit1:
Al Virof5beed72015-04-30 16:09:11 -04004737 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004738 putname(from);
Jeff Laytonc6a94282012-12-11 12:10:10 -05004739 if (should_retry) {
4740 should_retry = false;
4741 lookup_flags |= LOOKUP_REVAL;
4742 goto retry;
4743 }
Al Viro2ad94ae2008-07-21 09:32:51 -04004744exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004745 return error;
4746}
4747
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004748SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4749 int, newdfd, const char __user *, newname)
4750{
4751 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4752}
4753
Heiko Carstensa26eab22009-01-14 14:14:17 +01004754SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004755{
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004756 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004757}
4758
Miklos Szeredi787fb6b2014-10-24 00:14:36 +02004759int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4760{
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004761 int error = may_create(NULL, dir, dentry);
Miklos Szeredi787fb6b2014-10-24 00:14:36 +02004762 if (error)
4763 return error;
4764
4765 if (!dir->i_op->mknod)
4766 return -EPERM;
4767
4768 return dir->i_op->mknod(dir, dentry,
4769 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4770}
4771EXPORT_SYMBOL(vfs_whiteout);
4772
Al Viro5d826c82014-03-14 13:42:45 -04004773int readlink_copy(char __user *buffer, int buflen, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004774{
Al Viro5d826c82014-03-14 13:42:45 -04004775 int len = PTR_ERR(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004776 if (IS_ERR(link))
4777 goto out;
4778
4779 len = strlen(link);
4780 if (len > (unsigned) buflen)
4781 len = buflen;
4782 if (copy_to_user(buffer, link, len))
4783 len = -EFAULT;
4784out:
4785 return len;
4786}
4787
4788/*
4789 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
Al Viro6b255392015-11-17 10:20:54 -05004790 * have ->get_link() not calling nd_jump_link(). Using (or not using) it
4791 * for any given inode is up to filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792 */
4793int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4794{
Al Virofceef392015-12-29 15:58:39 -05004795 DEFINE_DELAYED_CALL(done);
Al Viro5f2c4172015-05-07 11:14:26 -04004796 struct inode *inode = d_inode(dentry);
4797 const char *link = inode->i_link;
Marcin Slusarz694a1762008-06-09 16:40:37 -07004798 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004799
Al Virod4dee482015-04-30 20:08:02 -04004800 if (!link) {
Al Virofceef392015-12-29 15:58:39 -05004801 link = inode->i_op->get_link(dentry, inode, &done);
Al Virod4dee482015-04-30 20:08:02 -04004802 if (IS_ERR(link))
4803 return PTR_ERR(link);
4804 }
Al Viro680baac2015-05-02 13:32:22 -04004805 res = readlink_copy(buffer, buflen, link);
Al Virofceef392015-12-29 15:58:39 -05004806 do_delayed_call(&done);
Marcin Slusarz694a1762008-06-09 16:40:37 -07004807 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004808}
Al Viro4d359502014-03-14 12:20:17 -04004809EXPORT_SYMBOL(generic_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810
Miklos Szeredid60874c2016-10-04 14:40:45 +02004811/**
4812 * vfs_get_link - get symlink body
4813 * @dentry: dentry on which to get symbolic link
4814 * @done: caller needs to free returned data with this
4815 *
4816 * Calls security hook and i_op->get_link() on the supplied inode.
4817 *
4818 * It does not touch atime. That's up to the caller if necessary.
4819 *
4820 * Does not work on "special" symlinks like /proc/$$/fd/N
4821 */
4822const char *vfs_get_link(struct dentry *dentry, struct delayed_call *done)
4823{
4824 const char *res = ERR_PTR(-EINVAL);
4825 struct inode *inode = d_inode(dentry);
4826
4827 if (d_is_symlink(dentry)) {
4828 res = ERR_PTR(security_inode_readlink(dentry));
4829 if (!res)
4830 res = inode->i_op->get_link(dentry, inode, done);
4831 }
4832 return res;
4833}
4834EXPORT_SYMBOL(vfs_get_link);
4835
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836/* get the link contents into pagecache */
Al Viro6b255392015-11-17 10:20:54 -05004837const char *page_get_link(struct dentry *dentry, struct inode *inode,
Al Virofceef392015-12-29 15:58:39 -05004838 struct delayed_call *callback)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004839{
Duane Griffinebd09ab2008-12-19 20:47:12 +00004840 char *kaddr;
4841 struct page *page;
Al Viro6b255392015-11-17 10:20:54 -05004842 struct address_space *mapping = inode->i_mapping;
4843
Al Virod3883d42015-11-17 10:41:04 -05004844 if (!dentry) {
4845 page = find_get_page(mapping, 0);
4846 if (!page)
4847 return ERR_PTR(-ECHILD);
4848 if (!PageUptodate(page)) {
4849 put_page(page);
4850 return ERR_PTR(-ECHILD);
4851 }
4852 } else {
4853 page = read_mapping_page(mapping, 0, NULL);
4854 if (IS_ERR(page))
4855 return (char*)page;
4856 }
Al Virofceef392015-12-29 15:58:39 -05004857 set_delayed_call(callback, page_put_link, page);
Al Viro21fc61c2015-11-17 01:07:57 -05004858 BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM);
4859 kaddr = page_address(page);
Al Viro6b255392015-11-17 10:20:54 -05004860 nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1);
Duane Griffinebd09ab2008-12-19 20:47:12 +00004861 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004862}
4863
Al Viro6b255392015-11-17 10:20:54 -05004864EXPORT_SYMBOL(page_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004865
Al Virofceef392015-12-29 15:58:39 -05004866void page_put_link(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004867{
Al Virofceef392015-12-29 15:58:39 -05004868 put_page(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004869}
Al Viro4d359502014-03-14 12:20:17 -04004870EXPORT_SYMBOL(page_put_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004871
Al Viroaa80dea2015-11-16 18:26:34 -05004872int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4873{
Al Virofceef392015-12-29 15:58:39 -05004874 DEFINE_DELAYED_CALL(done);
Al Viro6b255392015-11-17 10:20:54 -05004875 int res = readlink_copy(buffer, buflen,
4876 page_get_link(dentry, d_inode(dentry),
Al Virofceef392015-12-29 15:58:39 -05004877 &done));
4878 do_delayed_call(&done);
Al Viroaa80dea2015-11-16 18:26:34 -05004879 return res;
4880}
4881EXPORT_SYMBOL(page_readlink);
4882
Nick Piggin54566b22009-01-04 12:00:53 -08004883/*
4884 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4885 */
4886int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887{
4888 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004889 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07004890 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08004891 int err;
Nick Piggin54566b22009-01-04 12:00:53 -08004892 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4893 if (nofs)
4894 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004895
NeilBrown7e53cac2006-03-25 03:07:57 -08004896retry:
Nick Pigginafddba42007-10-16 01:25:01 -07004897 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08004898 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07004900 goto fail;
4901
Al Viro21fc61c2015-11-17 01:07:57 -05004902 memcpy(page_address(page), symname, len-1);
Nick Pigginafddba42007-10-16 01:25:01 -07004903
4904 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4905 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906 if (err < 0)
4907 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07004908 if (err < len-1)
4909 goto retry;
4910
Linus Torvalds1da177e2005-04-16 15:20:36 -07004911 mark_inode_dirty(inode);
4912 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004913fail:
4914 return err;
4915}
Al Viro4d359502014-03-14 12:20:17 -04004916EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004918int page_symlink(struct inode *inode, const char *symname, int len)
4919{
4920 return __page_symlink(inode, symname, len,
Michal Hockoc62d2552015-11-06 16:28:49 -08004921 !mapping_gfp_constraint(inode->i_mapping, __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004922}
Al Viro4d359502014-03-14 12:20:17 -04004923EXPORT_SYMBOL(page_symlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004924
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004925const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004926 .readlink = generic_readlink,
Al Viro6b255392015-11-17 10:20:54 -05004927 .get_link = page_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004928};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929EXPORT_SYMBOL(page_symlink_inode_operations);