blob: 88eb41cdd63983af96c4aa8a6996b7274f7dc632 [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);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002949 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002950 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 return error;
2952}
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002953EXPORT_SYMBOL(vfs_create2);
2954
2955int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
2956 bool want_excl)
2957{
2958 return vfs_create2(NULL, dir, dentry, mode, want_excl);
2959}
Al Viro4d359502014-03-14 12:20:17 -04002960EXPORT_SYMBOL(vfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002962bool may_open_dev(const struct path *path)
2963{
2964 return !(path->mnt->mnt_flags & MNT_NODEV) &&
2965 !(path->mnt->mnt_sb->s_iflags & SB_I_NODEV);
2966}
2967
Al Viro73d049a2011-03-11 12:08:24 -05002968static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002970 struct dentry *dentry = path->dentry;
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002971 struct vfsmount *mnt = path->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 struct inode *inode = dentry->d_inode;
2973 int error;
2974
2975 if (!inode)
2976 return -ENOENT;
2977
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002978 switch (inode->i_mode & S_IFMT) {
2979 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002981 case S_IFDIR:
2982 if (acc_mode & MAY_WRITE)
2983 return -EISDIR;
2984 break;
2985 case S_IFBLK:
2986 case S_IFCHR:
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002987 if (!may_open_dev(path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002989 /*FALLTHRU*/
2990 case S_IFIFO:
2991 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002993 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002994 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002995
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07002996 error = inode_permission2(mnt, inode, MAY_OPEN | acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002997 if (error)
2998 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002999
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 /*
3001 * An append-only file must be opened in append mode for writing.
3002 */
3003 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05003004 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05003005 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05003007 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 }
3009
3010 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07003011 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05003012 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04003014 return 0;
Al Viro7715b522009-12-16 03:54:00 -05003015}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016
Jeff Laytone1181ee2010-12-07 16:19:50 -05003017static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05003018{
Jeff Laytone1181ee2010-12-07 16:19:50 -05003019 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05003020 struct inode *inode = path->dentry->d_inode;
3021 int error = get_write_access(inode);
3022 if (error)
3023 return error;
3024 /*
3025 * Refuse to truncate files with mandatory locks held on them.
3026 */
Jeff Laytond7a06982014-03-10 09:54:15 -04003027 error = locks_verify_locked(filp);
Al Viro7715b522009-12-16 03:54:00 -05003028 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09003029 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05003030 if (!error) {
Daniel Rosenberg2757e9b2016-10-26 16:33:11 -07003031 error = do_truncate2(path->mnt, path->dentry, 0,
Al Viro7715b522009-12-16 03:54:00 -05003032 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05003033 filp);
Al Viro7715b522009-12-16 03:54:00 -05003034 }
3035 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04003036 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037}
3038
Dave Hansend57999e2008-02-15 14:37:27 -08003039static inline int open_to_namei_flags(int flag)
3040{
Al Viro8a5e9292011-06-25 19:15:54 -04003041 if ((flag & O_ACCMODE) == 3)
3042 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08003043 return flag;
3044}
3045
Al Virod3607752016-03-25 15:21:09 -04003046static int may_o_create(const struct path *dir, struct dentry *dentry, umode_t mode)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003047{
Seth Forshee2e727b82017-10-07 22:36:55 +00003048 struct user_namespace *s_user_ns;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003049 int error = security_path_mknod(dir, dentry, mode, 0);
3050 if (error)
3051 return error;
3052
Seth Forshee2e727b82017-10-07 22:36:55 +00003053 s_user_ns = dir->dentry->d_sb->s_user_ns;
3054 if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
3055 !kgid_has_mapping(s_user_ns, current_fsgid()))
3056 return -EOVERFLOW;
3057
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003058 error = inode_permission2(dir->mnt, dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003059 if (error)
3060 return error;
3061
3062 return security_inode_create(dir->dentry->d_inode, dentry, mode);
3063}
3064
David Howells1acf0af2012-06-14 16:13:46 +01003065/*
3066 * Attempt to atomically look up, create and open a file from a negative
3067 * dentry.
3068 *
3069 * Returns 0 if successful. The file will have been created and attached to
3070 * @file by the filesystem calling finish_open().
3071 *
3072 * Returns 1 if the file was looked up only or didn't need creating. The
3073 * caller will need to perform the open themselves. @path will have been
3074 * updated to point to the new dentry. This may be negative.
3075 *
3076 * Returns an error code otherwise.
3077 */
Al Viro2675a4e2012-06-22 12:41:10 +04003078static int atomic_open(struct nameidata *nd, struct dentry *dentry,
3079 struct path *path, struct file *file,
3080 const struct open_flags *op,
Al Viro1643b432016-04-27 19:14:10 -04003081 int open_flag, umode_t mode,
Al Viro2675a4e2012-06-22 12:41:10 +04003082 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003083{
Miklos Szeredid18e9002012-06-05 15:10:17 +02003084 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003085 struct inode *dir = nd->path.dentry->d_inode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003086 int error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003087
Al Viro384f26e2016-04-28 02:03:55 -04003088 if (!(~open_flag & (O_EXCL | O_CREAT))) /* both O_EXCL and O_CREAT */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003089 open_flag &= ~O_TRUNC;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003090
Miklos Szeredid18e9002012-06-05 15:10:17 +02003091 if (nd->flags & LOOKUP_DIRECTORY)
3092 open_flag |= O_DIRECTORY;
3093
Al Viro30d90492012-06-22 12:40:19 +04003094 file->f_path.dentry = DENTRY_NOT_SET;
3095 file->f_path.mnt = nd->path.mnt;
Al Viro0fb1ea02016-04-27 14:13:10 -04003096 error = dir->i_op->atomic_open(dir, dentry, file,
3097 open_to_namei_flags(open_flag),
3098 mode, opened);
Al Viro6fbd0712016-04-28 11:50:59 -04003099 d_lookup_done(dentry);
Al Viro384f26e2016-04-28 02:03:55 -04003100 if (!error) {
3101 /*
3102 * We didn't have the inode before the open, so check open
3103 * permission here.
3104 */
3105 int acc_mode = op->acc_mode;
3106 if (*opened & FILE_CREATED) {
3107 WARN_ON(!(open_flag & O_CREAT));
3108 fsnotify_create(dir, dentry);
3109 acc_mode = 0;
3110 }
3111 error = may_open(&file->f_path, acc_mode, open_flag);
3112 if (WARN_ON(error > 0))
3113 error = -EINVAL;
3114 } else if (error > 0) {
Al Viro30d90492012-06-22 12:40:19 +04003115 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04003116 error = -EIO;
Al Viro03da6332013-09-16 19:22:33 -04003117 } else {
Al Viro384f26e2016-04-28 02:03:55 -04003118 if (file->f_path.dentry) {
3119 dput(dentry);
3120 dentry = file->f_path.dentry;
Al Viro03da6332013-09-16 19:22:33 -04003121 }
Al Viro384f26e2016-04-28 02:03:55 -04003122 if (*opened & FILE_CREATED)
3123 fsnotify_create(dir, dentry);
Al Viroa01e7182016-06-07 21:53:51 -04003124 if (unlikely(d_is_negative(dentry))) {
3125 error = -ENOENT;
3126 } else {
3127 path->dentry = dentry;
3128 path->mnt = nd->path.mnt;
3129 return 1;
3130 }
Sage Weil62b2ce92012-08-15 13:30:12 -07003131 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003132 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003133 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003134 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003135}
3136
Nick Piggin31e6b012011-01-07 17:49:52 +11003137/*
David Howells1acf0af2012-06-14 16:13:46 +01003138 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003139 *
3140 * Must be called with i_mutex held on parent.
3141 *
David Howells1acf0af2012-06-14 16:13:46 +01003142 * Returns 0 if the file was successfully atomically created (if necessary) and
3143 * opened. In this case the file will be returned attached to @file.
3144 *
3145 * Returns 1 if the file was not completely opened at this time, though lookups
3146 * and creations will have been performed and the dentry returned in @path will
3147 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
3148 * specified then a negative dentry may be returned.
3149 *
3150 * An error code is returned otherwise.
3151 *
3152 * FILE_CREATE will be set in @*opened if the dentry was created and will be
3153 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003154 */
Al Viro2675a4e2012-06-22 12:41:10 +04003155static int lookup_open(struct nameidata *nd, struct path *path,
3156 struct file *file,
3157 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04003158 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003159{
3160 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003161 struct inode *dir_inode = dir->d_inode;
Al Viro1643b432016-04-27 19:14:10 -04003162 int open_flag = op->open_flag;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003163 struct dentry *dentry;
Al Viro1643b432016-04-27 19:14:10 -04003164 int error, create_error = 0;
Al Viro1643b432016-04-27 19:14:10 -04003165 umode_t mode = op->mode;
Al Viro6fbd0712016-04-28 11:50:59 -04003166 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003167
Al Viroce8644f2016-04-26 14:17:56 -04003168 if (unlikely(IS_DEADDIR(dir_inode)))
3169 return -ENOENT;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003170
Al Viro47237682012-06-10 05:01:45 -04003171 *opened &= ~FILE_CREATED;
Al Viro6fbd0712016-04-28 11:50:59 -04003172 dentry = d_lookup(dir, &nd->last);
3173 for (;;) {
3174 if (!dentry) {
3175 dentry = d_alloc_parallel(dir, &nd->last, &wq);
3176 if (IS_ERR(dentry))
3177 return PTR_ERR(dentry);
3178 }
3179 if (d_in_lookup(dentry))
3180 break;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003181
Al Viro6fbd0712016-04-28 11:50:59 -04003182 if (!(dentry->d_flags & DCACHE_OP_REVALIDATE))
3183 break;
3184
3185 error = d_revalidate(dentry, nd->flags);
3186 if (likely(error > 0))
3187 break;
3188 if (error)
3189 goto out_dput;
3190 d_invalidate(dentry);
3191 dput(dentry);
3192 dentry = NULL;
3193 }
3194 if (dentry->d_inode) {
Al Viro6c51e512016-03-05 20:09:32 -05003195 /* Cached positive dentry: will open in f_op->open */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003196 goto out_no_open;
Al Viro6c51e512016-03-05 20:09:32 -05003197 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003198
Al Viro1643b432016-04-27 19:14:10 -04003199 /*
3200 * Checking write permission is tricky, bacuse we don't know if we are
3201 * going to actually need it: O_CREAT opens should work as long as the
3202 * file exists. But checking existence breaks atomicity. The trick is
3203 * to check access and if not granted clear O_CREAT from the flags.
3204 *
3205 * Another problem is returing the "right" error value (e.g. for an
3206 * O_EXCL open we want to return EEXIST not EROFS).
3207 */
3208 if (open_flag & O_CREAT) {
3209 if (!IS_POSIXACL(dir->d_inode))
3210 mode &= ~current_umask();
3211 if (unlikely(!got_write)) {
3212 create_error = -EROFS;
3213 open_flag &= ~O_CREAT;
3214 if (open_flag & (O_EXCL | O_TRUNC))
3215 goto no_open;
3216 /* No side effects, safe to clear O_CREAT */
3217 } else {
3218 create_error = may_o_create(&nd->path, dentry, mode);
3219 if (create_error) {
3220 open_flag &= ~O_CREAT;
3221 if (open_flag & O_EXCL)
3222 goto no_open;
3223 }
3224 }
3225 } else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) &&
3226 unlikely(!got_write)) {
3227 /*
3228 * No O_CREATE -> atomicity not a requirement -> fall
3229 * back to lookup + open
3230 */
3231 goto no_open;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003232 }
3233
Al Viro1643b432016-04-27 19:14:10 -04003234 if (dir_inode->i_op->atomic_open) {
3235 error = atomic_open(nd, dentry, path, file, op, open_flag,
3236 mode, opened);
3237 if (unlikely(error == -ENOENT) && create_error)
3238 error = create_error;
3239 return error;
3240 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003241
Al Viro1643b432016-04-27 19:14:10 -04003242no_open:
Al Viro6fbd0712016-04-28 11:50:59 -04003243 if (d_in_lookup(dentry)) {
Al Viro12fa5e22016-04-28 11:19:43 -04003244 struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry,
3245 nd->flags);
Al Viro6fbd0712016-04-28 11:50:59 -04003246 d_lookup_done(dentry);
Al Viro12fa5e22016-04-28 11:19:43 -04003247 if (unlikely(res)) {
3248 if (IS_ERR(res)) {
3249 error = PTR_ERR(res);
3250 goto out_dput;
3251 }
3252 dput(dentry);
3253 dentry = res;
3254 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003255 }
3256
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003257 /* Negative dentry, just create the file */
Al Viro1643b432016-04-27 19:14:10 -04003258 if (!dentry->d_inode && (open_flag & O_CREAT)) {
Al Viro47237682012-06-10 05:01:45 -04003259 *opened |= FILE_CREATED;
Al Viroce8644f2016-04-26 14:17:56 -04003260 audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE);
Al Viroce8644f2016-04-26 14:17:56 -04003261 if (!dir_inode->i_op->create) {
3262 error = -EACCES;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003263 goto out_dput;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003264 }
Al Viroce8644f2016-04-26 14:17:56 -04003265 error = dir_inode->i_op->create(dir_inode, dentry, mode,
Al Viro1643b432016-04-27 19:14:10 -04003266 open_flag & O_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003267 if (error)
3268 goto out_dput;
Al Viroce8644f2016-04-26 14:17:56 -04003269 fsnotify_create(dir_inode, dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003270 }
Al Viro1643b432016-04-27 19:14:10 -04003271 if (unlikely(create_error) && !dentry->d_inode) {
3272 error = create_error;
3273 goto out_dput;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003274 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003275out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003276 path->dentry = dentry;
3277 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04003278 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003279
3280out_dput:
3281 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003282 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003283}
3284
3285/*
Al Virofe2d35f2011-03-05 22:58:25 -05003286 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11003287 */
Al Viro896475d2015-04-22 18:02:17 -04003288static int do_last(struct nameidata *nd,
Al Viro2675a4e2012-06-22 12:41:10 +04003289 struct file *file, const struct open_flags *op,
Al Viro76ae2a52015-05-12 18:44:32 -04003290 int *opened)
Al Virofb1cc552009-12-24 01:58:28 -05003291{
Al Viroa1e28032009-12-24 02:12:06 -05003292 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05003293 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003294 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04003295 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04003296 int acc_mode = op->acc_mode;
Al Viro254cf582015-05-05 09:40:46 -04003297 unsigned seq;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003298 struct inode *inode;
Al Viro896475d2015-04-22 18:02:17 -04003299 struct path path;
Al Viro16c2cd72011-02-22 15:50:10 -05003300 int error;
Al Virofb1cc552009-12-24 01:58:28 -05003301
Al Viroc3e380b2011-02-23 13:39:45 -05003302 nd->flags &= ~LOOKUP_PARENT;
3303 nd->flags |= op->intent;
3304
Al Virobc77daa2013-06-06 09:12:33 -04003305 if (nd->last_type != LAST_NORM) {
Al Virofe2d35f2011-03-05 22:58:25 -05003306 error = handle_dots(nd, nd->last_type);
Al Virodeb106c2015-05-08 18:05:21 -04003307 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003308 return error;
Miklos Szeredie83db162012-06-05 15:10:29 +02003309 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05003310 }
Al Viro67ee3ad2009-12-26 07:01:01 -05003311
Al Viroca344a892011-03-09 00:36:45 -05003312 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05003313 if (nd->last.name[nd->last.len])
3314 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3315 /* we _can_ be in RCU mode here */
Al Viro254cf582015-05-05 09:40:46 -04003316 error = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05003317 if (likely(error > 0))
Miklos Szeredi71574862012-06-05 15:10:14 +02003318 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003319
Miklos Szeredi71574862012-06-05 15:10:14 +02003320 if (error < 0)
Al Virodeb106c2015-05-08 18:05:21 -04003321 return error;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02003322
Miklos Szeredi71574862012-06-05 15:10:14 +02003323 BUG_ON(nd->inode != dir->d_inode);
Al Viro6583fe22016-03-05 18:14:03 -05003324 BUG_ON(nd->flags & LOOKUP_RCU);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003325 } else {
3326 /* create side of things */
3327 /*
3328 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3329 * has been cleared when we got to the last component we are
3330 * about to look up
3331 */
3332 error = complete_walk(nd);
Al Viroe8bb73d2015-05-08 16:28:42 -04003333 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003334 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02003335
Al Viro76ae2a52015-05-12 18:44:32 -04003336 audit_inode(nd->name, dir, LOOKUP_PARENT);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003337 /* trailing slashes? */
Al Virodeb106c2015-05-08 18:05:21 -04003338 if (unlikely(nd->last.name[nd->last.len]))
3339 return -EISDIR;
Al Virofe2d35f2011-03-05 22:58:25 -05003340 }
3341
Al Viro9cf843e2016-04-28 19:35:16 -04003342 if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
Al Viro64894cf2012-07-31 00:53:35 +04003343 error = mnt_want_write(nd->path.mnt);
3344 if (!error)
3345 got_write = true;
3346 /*
3347 * do _not_ fail yet - we might not need that or fail with
3348 * a different error; let lookup_open() decide; we'll be
3349 * dropping this one anyway.
3350 */
3351 }
Al Viro9cf843e2016-04-28 19:35:16 -04003352 if (open_flag & O_CREAT)
3353 inode_lock(dir->d_inode);
3354 else
3355 inode_lock_shared(dir->d_inode);
Al Viro896475d2015-04-22 18:02:17 -04003356 error = lookup_open(nd, &path, file, op, got_write, opened);
Al Viro9cf843e2016-04-28 19:35:16 -04003357 if (open_flag & O_CREAT)
3358 inode_unlock(dir->d_inode);
3359 else
3360 inode_unlock_shared(dir->d_inode);
Al Viroa1e28032009-12-24 02:12:06 -05003361
Al Viro2675a4e2012-06-22 12:41:10 +04003362 if (error <= 0) {
3363 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003364 goto out;
3365
Al Viro47237682012-06-10 05:01:45 -04003366 if ((*opened & FILE_CREATED) ||
Al Viro496ad9a2013-01-23 17:07:38 -05003367 !S_ISREG(file_inode(file)->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003368 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003369
Al Viro76ae2a52015-05-12 18:44:32 -04003370 audit_inode(nd->name, file->f_path.dentry, 0);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003371 goto opened;
3372 }
Al Virofb1cc552009-12-24 01:58:28 -05003373
Al Viro47237682012-06-10 05:01:45 -04003374 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05003375 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05003376 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003377 will_truncate = false;
Al Viro62fb4a12015-12-26 22:33:24 -05003378 acc_mode = 0;
Al Viro896475d2015-04-22 18:02:17 -04003379 path_to_nameidata(&path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02003380 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05003381 }
3382
3383 /*
Miklos Szeredid18e9002012-06-05 15:10:17 +02003384 * If atomic_open() acquired write access it is dropped now due to
3385 * possible mount and symlink following (this might be optimized away if
3386 * necessary...)
3387 */
Al Viro64894cf2012-07-31 00:53:35 +04003388 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02003389 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003390 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003391 }
3392
Al Viroe6ec03a2016-06-05 00:23:09 -04003393 error = follow_managed(&path, nd);
3394 if (unlikely(error < 0))
3395 return error;
3396
Al Viro6583fe22016-03-05 18:14:03 -05003397 if (unlikely(d_is_negative(path.dentry))) {
3398 path_to_nameidata(&path, nd);
3399 return -ENOENT;
3400 }
3401
3402 /*
3403 * create/update audit record if it already exists.
3404 */
3405 audit_inode(nd->name, path.dentry, 0);
3406
Al Virodeb106c2015-05-08 18:05:21 -04003407 if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
3408 path_to_nameidata(&path, nd);
3409 return -EEXIST;
3410 }
Al Virofb1cc552009-12-24 01:58:28 -05003411
Al Viro254cf582015-05-05 09:40:46 -04003412 seq = 0; /* out of RCU mode, so the value doesn't matter */
Al Virod4565642016-02-27 19:23:16 -05003413 inode = d_backing_inode(path.dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04003414finish_lookup:
Al Virod63ff282015-05-04 18:13:23 -04003415 if (nd->depth)
3416 put_link(nd);
Al Viro181548c2015-05-07 19:54:34 -04003417 error = should_follow_link(nd, &path, nd->flags & LOOKUP_FOLLOW,
3418 inode, seq);
Al Virodeb106c2015-05-08 18:05:21 -04003419 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04003420 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003421
Al Virofac7d192016-06-04 11:41:49 -04003422 path_to_nameidata(&path, nd);
Miklos Szeredidecf3402012-05-21 17:30:08 +02003423 nd->inode = inode;
Al Viro254cf582015-05-05 09:40:46 -04003424 nd->seq = seq;
Al Viroa3fbbde2011-11-07 21:21:26 +00003425 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
Al Virobc77daa2013-06-06 09:12:33 -04003426finish_open:
Al Viroa3fbbde2011-11-07 21:21:26 +00003427 error = complete_walk(nd);
Al Virofac7d192016-06-04 11:41:49 -04003428 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003429 return error;
Al Viro76ae2a52015-05-12 18:44:32 -04003430 audit_inode(nd->name, nd->path.dentry, 0);
Salvatore Mesoraca0c41bee2018-08-23 17:00:35 -07003431 if (open_flag & O_CREAT) {
3432 error = -EISDIR;
3433 if (d_is_dir(nd->path.dentry))
3434 goto out;
3435 error = may_create_in_sticky(dir,
3436 d_backing_inode(nd->path.dentry));
3437 if (unlikely(error))
3438 goto out;
3439 }
Miklos Szerediaf2f5542012-05-21 17:30:11 +02003440 error = -ENOTDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003441 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003442 goto out;
David Howells4bbcbd32015-03-17 22:16:40 +00003443 if (!d_is_reg(nd->path.dentry))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003444 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05003445
Al Viro0f9d1a12011-03-09 00:13:14 -05003446 if (will_truncate) {
3447 error = mnt_want_write(nd->path.mnt);
3448 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003449 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04003450 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05003451 }
Miklos Szeredie83db162012-06-05 15:10:29 +02003452finish_open_created:
Al Viro6ac08702016-04-26 00:02:50 -04003453 error = may_open(&nd->path, acc_mode, open_flag);
3454 if (error)
3455 goto out;
Miklos Szeredi4aa7c632014-10-24 00:14:35 +02003456 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3457 error = vfs_open(&nd->path, file, current_cred());
Al Virofac7d192016-06-04 11:41:49 -04003458 if (error)
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003459 goto out;
Al Virofac7d192016-06-04 11:41:49 -04003460 *opened |= FILE_OPENED;
Miklos Szeredia8277b92012-06-05 15:10:32 +02003461opened:
Al Viro2675a4e2012-06-22 12:41:10 +04003462 error = open_check_o_direct(file);
Al Virofe9ec822016-04-27 03:14:20 -04003463 if (!error)
3464 error = ima_file_check(file, op->acc_mode, *opened);
3465 if (!error && will_truncate)
Al Viro2675a4e2012-06-22 12:41:10 +04003466 error = handle_truncate(file);
Al Viroca344a892011-03-09 00:36:45 -05003467out:
Al Virofe9ec822016-04-27 03:14:20 -04003468 if (unlikely(error) && (*opened & FILE_OPENED))
3469 fput(file);
Al Viroc80567c2016-02-27 19:17:33 -05003470 if (unlikely(error > 0)) {
3471 WARN_ON(1);
3472 error = -EINVAL;
3473 }
Al Viro64894cf2012-07-31 00:53:35 +04003474 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05003475 mnt_drop_write(nd->path.mnt);
Al Viro2675a4e2012-06-22 12:41:10 +04003476 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003477}
3478
Al Viroc8a53ee2015-05-12 18:43:07 -04003479static int do_tmpfile(struct nameidata *nd, unsigned flags,
Al Viro60545d02013-06-07 01:20:27 -04003480 const struct open_flags *op,
3481 struct file *file, int *opened)
3482{
3483 static const struct qstr name = QSTR_INIT("/", 1);
Al Viro625b6d12015-05-12 16:36:12 -04003484 struct dentry *child;
Al Viro60545d02013-06-07 01:20:27 -04003485 struct inode *dir;
Al Viro625b6d12015-05-12 16:36:12 -04003486 struct path path;
Al Viroc8a53ee2015-05-12 18:43:07 -04003487 int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
Al Viro60545d02013-06-07 01:20:27 -04003488 if (unlikely(error))
3489 return error;
Al Viro625b6d12015-05-12 16:36:12 -04003490 error = mnt_want_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003491 if (unlikely(error))
3492 goto out;
Al Viro625b6d12015-05-12 16:36:12 -04003493 dir = path.dentry->d_inode;
Al Viro60545d02013-06-07 01:20:27 -04003494 /* we want directory to be writable */
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003495 error = inode_permission2(nd->path.mnt, dir, MAY_WRITE | MAY_EXEC);
Al Viro60545d02013-06-07 01:20:27 -04003496 if (error)
3497 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003498 if (!dir->i_op->tmpfile) {
3499 error = -EOPNOTSUPP;
3500 goto out2;
3501 }
Al Viro625b6d12015-05-12 16:36:12 -04003502 child = d_alloc(path.dentry, &name);
Al Viro60545d02013-06-07 01:20:27 -04003503 if (unlikely(!child)) {
3504 error = -ENOMEM;
3505 goto out2;
3506 }
Al Viro625b6d12015-05-12 16:36:12 -04003507 dput(path.dentry);
3508 path.dentry = child;
3509 error = dir->i_op->tmpfile(dir, child, op->mode);
Al Viro60545d02013-06-07 01:20:27 -04003510 if (error)
3511 goto out2;
Al Viroc8a53ee2015-05-12 18:43:07 -04003512 audit_inode(nd->name, child, 0);
Eric Rannaud69a91c22014-10-30 01:51:01 -07003513 /* Don't check for other permissions, the inode was just created */
Al Viro62fb4a12015-12-26 22:33:24 -05003514 error = may_open(&path, 0, op->open_flag);
Al Viro60545d02013-06-07 01:20:27 -04003515 if (error)
3516 goto out2;
Al Viro625b6d12015-05-12 16:36:12 -04003517 file->f_path.mnt = path.mnt;
3518 error = finish_open(file, child, NULL, opened);
Al Viro60545d02013-06-07 01:20:27 -04003519 if (error)
3520 goto out2;
3521 error = open_check_o_direct(file);
Al Virof4e0c302013-06-11 08:34:36 +04003522 if (error) {
Al Viro60545d02013-06-07 01:20:27 -04003523 fput(file);
Al Virof4e0c302013-06-11 08:34:36 +04003524 } else if (!(op->open_flag & O_EXCL)) {
3525 struct inode *inode = file_inode(file);
3526 spin_lock(&inode->i_lock);
3527 inode->i_state |= I_LINKABLE;
3528 spin_unlock(&inode->i_lock);
3529 }
Al Viro60545d02013-06-07 01:20:27 -04003530out2:
Al Viro625b6d12015-05-12 16:36:12 -04003531 mnt_drop_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003532out:
Al Viro625b6d12015-05-12 16:36:12 -04003533 path_put(&path);
Al Viro60545d02013-06-07 01:20:27 -04003534 return error;
3535}
3536
Al Viro6ac08702016-04-26 00:02:50 -04003537static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file)
3538{
3539 struct path path;
3540 int error = path_lookupat(nd, flags, &path);
3541 if (!error) {
3542 audit_inode(nd->name, path.dentry, 0);
3543 error = vfs_open(&path, file, current_cred());
3544 path_put(&path);
3545 }
3546 return error;
3547}
3548
Al Viroc8a53ee2015-05-12 18:43:07 -04003549static struct file *path_openat(struct nameidata *nd,
3550 const struct open_flags *op, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003551{
Al Viro368ee9b2015-05-08 17:19:59 -04003552 const char *s;
Al Viro30d90492012-06-22 12:40:19 +04003553 struct file *file;
Al Viro47237682012-06-10 05:01:45 -04003554 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05003555 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11003556
Al Viro30d90492012-06-22 12:40:19 +04003557 file = get_empty_filp();
Al Viro1afc99b2013-02-14 20:41:04 -05003558 if (IS_ERR(file))
3559 return file;
Nick Piggin31e6b012011-01-07 17:49:52 +11003560
Al Viro30d90492012-06-22 12:40:19 +04003561 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11003562
Al Virobb458c62013-07-13 13:26:37 +04003563 if (unlikely(file->f_flags & __O_TMPFILE)) {
Al Viroc8a53ee2015-05-12 18:43:07 -04003564 error = do_tmpfile(nd, flags, op, file, &opened);
Al Virof15133d2015-05-08 22:53:15 -04003565 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003566 }
3567
Al Viro6ac08702016-04-26 00:02:50 -04003568 if (unlikely(file->f_flags & O_PATH)) {
3569 error = do_o_path(nd, flags, file);
3570 if (!error)
3571 opened |= FILE_OPENED;
3572 goto out2;
3573 }
3574
Al Viroc8a53ee2015-05-12 18:43:07 -04003575 s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04003576 if (IS_ERR(s)) {
3577 put_filp(file);
3578 return ERR_CAST(s);
3579 }
Al Viro3bdba282015-05-08 17:37:07 -04003580 while (!(error = link_path_walk(s, nd)) &&
Al Viro76ae2a52015-05-12 18:44:32 -04003581 (error = do_last(nd, file, op, &opened)) > 0) {
Al Viro73d049a2011-03-11 12:08:24 -05003582 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro3bdba282015-05-08 17:37:07 -04003583 s = trailing_symlink(nd);
3584 if (IS_ERR(s)) {
3585 error = PTR_ERR(s);
Al Viro2675a4e2012-06-22 12:41:10 +04003586 break;
Al Viro3bdba282015-05-08 17:37:07 -04003587 }
Al Viro806b6812009-12-26 07:16:40 -05003588 }
Al Virodeb106c2015-05-08 18:05:21 -04003589 terminate_walk(nd);
Al Virof15133d2015-05-08 22:53:15 -04003590out2:
Al Viro2675a4e2012-06-22 12:41:10 +04003591 if (!(opened & FILE_OPENED)) {
3592 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04003593 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003594 }
Al Viro2675a4e2012-06-22 12:41:10 +04003595 if (unlikely(error)) {
3596 if (error == -EOPENSTALE) {
3597 if (flags & LOOKUP_RCU)
3598 error = -ECHILD;
3599 else
3600 error = -ESTALE;
3601 }
3602 file = ERR_PTR(error);
3603 }
3604 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605}
3606
Jeff Layton669abf42012-10-10 16:43:10 -04003607struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +04003608 const struct open_flags *op)
Al Viro13aab422011-02-23 17:54:08 -05003609{
Al Viro9883d182015-05-13 07:28:08 -04003610 struct nameidata nd;
Al Virof9652e12013-06-11 08:23:01 +04003611 int flags = op->lookup_flags;
Al Viro13aab422011-02-23 17:54:08 -05003612 struct file *filp;
3613
Al Viro9883d182015-05-13 07:28:08 -04003614 set_nameidata(&nd, dfd, pathname);
Al Viroc8a53ee2015-05-12 18:43:07 -04003615 filp = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05003616 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003617 filp = path_openat(&nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05003618 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003619 filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003620 restore_nameidata();
Al Viro13aab422011-02-23 17:54:08 -05003621 return filp;
3622}
3623
Al Viro73d049a2011-03-11 12:08:24 -05003624struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
Al Virof9652e12013-06-11 08:23:01 +04003625 const char *name, const struct open_flags *op)
Al Viro73d049a2011-03-11 12:08:24 -05003626{
Al Viro9883d182015-05-13 07:28:08 -04003627 struct nameidata nd;
Al Viro73d049a2011-03-11 12:08:24 -05003628 struct file *file;
Paul Moore51689102015-01-22 00:00:03 -05003629 struct filename *filename;
Al Virof9652e12013-06-11 08:23:01 +04003630 int flags = op->lookup_flags | LOOKUP_ROOT;
Al Viro73d049a2011-03-11 12:08:24 -05003631
3632 nd.root.mnt = mnt;
3633 nd.root.dentry = dentry;
3634
David Howellsb18825a2013-09-12 19:22:53 +01003635 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05003636 return ERR_PTR(-ELOOP);
3637
Paul Moore51689102015-01-22 00:00:03 -05003638 filename = getname_kernel(name);
Viresh Kumara1c83682015-08-12 15:59:44 +05303639 if (IS_ERR(filename))
Paul Moore51689102015-01-22 00:00:03 -05003640 return ERR_CAST(filename);
3641
Al Viro9883d182015-05-13 07:28:08 -04003642 set_nameidata(&nd, -1, filename);
Al Viroc8a53ee2015-05-12 18:43:07 -04003643 file = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro73d049a2011-03-11 12:08:24 -05003644 if (unlikely(file == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003645 file = path_openat(&nd, op, flags);
Al Viro73d049a2011-03-11 12:08:24 -05003646 if (unlikely(file == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003647 file = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003648 restore_nameidata();
Paul Moore51689102015-01-22 00:00:03 -05003649 putname(filename);
Al Viro73d049a2011-03-11 12:08:24 -05003650 return file;
3651}
3652
Al Virofa14a0b2015-01-22 02:16:49 -05003653static struct dentry *filename_create(int dfd, struct filename *name,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003654 struct path *path, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003656 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viro391172c2015-05-09 11:19:16 -04003657 struct qstr last;
3658 int type;
Jan Karac30dabf2012-06-12 16:20:30 +02003659 int err2;
Jeff Layton1ac12b42012-12-11 12:10:06 -05003660 int error;
3661 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3662
3663 /*
3664 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3665 * other flags passed in are ignored!
3666 */
3667 lookup_flags &= LOOKUP_REVAL;
3668
Al Viro5c31b6c2015-05-12 17:32:54 -04003669 name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
3670 if (IS_ERR(name))
3671 return ERR_CAST(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003673 /*
3674 * Yucky last component or no last component at all?
3675 * (foo/., foo/.., /////)
3676 */
Al Viro5c31b6c2015-05-12 17:32:54 -04003677 if (unlikely(type != LAST_NORM))
Al Viroed75e952011-06-27 16:53:43 -04003678 goto out;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003679
Jan Karac30dabf2012-06-12 16:20:30 +02003680 /* don't fail immediately if it's r/o, at least try to report other errors */
Al Viro391172c2015-05-09 11:19:16 -04003681 err2 = mnt_want_write(path->mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003682 /*
3683 * Do the final lookup.
3684 */
Al Viro391172c2015-05-09 11:19:16 -04003685 lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Al Viro59551022016-01-22 15:40:57 -05003686 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04003687 dentry = __lookup_hash(&last, path->dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003689 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003690
Al Viroa8104a92012-07-20 02:25:00 +04003691 error = -EEXIST;
David Howellsb18825a2013-09-12 19:22:53 +01003692 if (d_is_positive(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003693 goto fail;
David Howellsb18825a2013-09-12 19:22:53 +01003694
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003695 /*
3696 * Special case - lookup gave negative, but... we had foo/bar/
3697 * From the vfs_mknod() POV we just have a negative dentry -
3698 * all is fine. Let's be bastards - you had / on the end, you've
3699 * been asking for (non-existent) directory. -ENOENT for you.
3700 */
Al Viro391172c2015-05-09 11:19:16 -04003701 if (unlikely(!is_dir && last.name[last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003702 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003703 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003704 }
Jan Karac30dabf2012-06-12 16:20:30 +02003705 if (unlikely(err2)) {
3706 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003707 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003708 }
Al Viro181c37b2015-05-12 17:21:25 -04003709 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711fail:
Al Viroa8104a92012-07-20 02:25:00 +04003712 dput(dentry);
3713 dentry = ERR_PTR(error);
3714unlock:
Al Viro59551022016-01-22 15:40:57 -05003715 inode_unlock(path->dentry->d_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02003716 if (!err2)
Al Viro391172c2015-05-09 11:19:16 -04003717 mnt_drop_write(path->mnt);
Al Viroed75e952011-06-27 16:53:43 -04003718out:
Al Viro391172c2015-05-09 11:19:16 -04003719 path_put(path);
Al Viro181c37b2015-05-12 17:21:25 -04003720 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 return dentry;
3722}
Al Virofa14a0b2015-01-22 02:16:49 -05003723
3724struct dentry *kern_path_create(int dfd, const char *pathname,
3725 struct path *path, unsigned int lookup_flags)
3726{
Al Viro181c37b2015-05-12 17:21:25 -04003727 return filename_create(dfd, getname_kernel(pathname),
3728 path, lookup_flags);
Al Virofa14a0b2015-01-22 02:16:49 -05003729}
Al Virodae6ad82011-06-26 11:50:15 -04003730EXPORT_SYMBOL(kern_path_create);
3731
Al Viro921a1652012-07-20 01:15:31 +04003732void done_path_create(struct path *path, struct dentry *dentry)
3733{
3734 dput(dentry);
Al Viro59551022016-01-22 15:40:57 -05003735 inode_unlock(path->dentry->d_inode);
Al Viroa8104a92012-07-20 02:25:00 +04003736 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003737 path_put(path);
3738}
3739EXPORT_SYMBOL(done_path_create);
3740
Al Viro520ae682015-05-13 07:00:28 -04003741inline struct dentry *user_path_create(int dfd, const char __user *pathname,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003742 struct path *path, unsigned int lookup_flags)
Al Virodae6ad82011-06-26 11:50:15 -04003743{
Al Viro181c37b2015-05-12 17:21:25 -04003744 return filename_create(dfd, getname(pathname), path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003745}
3746EXPORT_SYMBOL(user_path_create);
3747
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003748int vfs_mknod2(struct vfsmount *mnt, struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749{
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003750 int error = may_create(mnt, dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
3752 if (error)
3753 return error;
3754
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003755 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 return -EPERM;
3757
Al Viroacfa4382008-12-04 10:06:33 -05003758 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 return -EPERM;
3760
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003761 error = devcgroup_inode_mknod(mode, dev);
3762 if (error)
3763 return error;
3764
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 error = security_inode_mknod(dir, dentry, mode, dev);
3766 if (error)
3767 return error;
3768
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003770 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003771 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 return error;
3773}
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003774EXPORT_SYMBOL(vfs_mknod2);
3775
3776int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
3777{
3778 return vfs_mknod2(NULL, dir, dentry, mode, dev);
3779}
Al Viro4d359502014-03-14 12:20:17 -04003780EXPORT_SYMBOL(vfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781
Al Virof69aac02011-07-26 04:31:40 -04003782static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003783{
3784 switch (mode & S_IFMT) {
3785 case S_IFREG:
3786 case S_IFCHR:
3787 case S_IFBLK:
3788 case S_IFIFO:
3789 case S_IFSOCK:
3790 case 0: /* zero mode translates to S_IFREG */
3791 return 0;
3792 case S_IFDIR:
3793 return -EPERM;
3794 default:
3795 return -EINVAL;
3796 }
3797}
3798
Al Viro8208a222011-07-25 17:32:17 -04003799SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003800 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801{
Al Viro2ad94ae2008-07-21 09:32:51 -04003802 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003803 struct path path;
3804 int error;
Jeff Layton972567f2012-12-20 16:00:10 -05003805 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806
Al Viro8e4bfca2012-07-20 01:17:26 +04003807 error = may_mknod(mode);
3808 if (error)
3809 return error;
Jeff Layton972567f2012-12-20 16:00:10 -05003810retry:
3811 dentry = user_path_create(dfd, filename, &path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003812 if (IS_ERR(dentry))
3813 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003814
Al Virodae6ad82011-06-26 11:50:15 -04003815 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003816 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003817 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003818 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003819 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003820 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821 case 0: case S_IFREG:
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003822 error = vfs_create2(path.mnt, path.dentry->d_inode,dentry,mode,true);
Mimi Zohar05d1a712016-02-29 19:52:05 -05003823 if (!error)
3824 ima_post_path_mknod(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003825 break;
3826 case S_IFCHR: case S_IFBLK:
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003827 error = vfs_mknod2(path.mnt, path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 new_decode_dev(dev));
3829 break;
3830 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003831 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 }
Al Viroa8104a92012-07-20 02:25:00 +04003834out:
Al Viro921a1652012-07-20 01:15:31 +04003835 done_path_create(&path, dentry);
Jeff Layton972567f2012-12-20 16:00:10 -05003836 if (retry_estale(error, lookup_flags)) {
3837 lookup_flags |= LOOKUP_REVAL;
3838 goto retry;
3839 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 return error;
3841}
3842
Al Viro8208a222011-07-25 17:32:17 -04003843SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003844{
3845 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3846}
3847
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003848int vfs_mkdir2(struct vfsmount *mnt, struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849{
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003850 int error = may_create(mnt, dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003851 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852
3853 if (error)
3854 return error;
3855
Al Viroacfa4382008-12-04 10:06:33 -05003856 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 return -EPERM;
3858
3859 mode &= (S_IRWXUGO|S_ISVTX);
3860 error = security_inode_mkdir(dir, dentry, mode);
3861 if (error)
3862 return error;
3863
Al Viro8de52772012-02-06 12:45:27 -05003864 if (max_links && dir->i_nlink >= max_links)
3865 return -EMLINK;
3866
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003868 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003869 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 return error;
3871}
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003872EXPORT_SYMBOL(vfs_mkdir2);
3873
3874int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
3875{
3876 return vfs_mkdir2(NULL, dir, dentry, mode);
3877}
Al Viro4d359502014-03-14 12:20:17 -04003878EXPORT_SYMBOL(vfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879
Al Viroa218d0f2011-11-21 14:59:34 -05003880SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881{
Dave Hansen6902d922006-09-30 23:29:01 -07003882 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003883 struct path path;
3884 int error;
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003885 unsigned int lookup_flags = LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003887retry:
3888 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003889 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003890 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003891
Al Virodae6ad82011-06-26 11:50:15 -04003892 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003893 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003894 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003895 if (!error)
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003896 error = vfs_mkdir2(path.mnt, path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003897 done_path_create(&path, dentry);
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003898 if (retry_estale(error, lookup_flags)) {
3899 lookup_flags |= LOOKUP_REVAL;
3900 goto retry;
3901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 return error;
3903}
3904
Al Viroa218d0f2011-11-21 14:59:34 -05003905SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003906{
3907 return sys_mkdirat(AT_FDCWD, pathname, mode);
3908}
3909
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003910int vfs_rmdir2(struct vfsmount *mnt, struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911{
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003912 int error = may_delete(mnt, dir, dentry, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913
3914 if (error)
3915 return error;
3916
Al Viroacfa4382008-12-04 10:06:33 -05003917 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 return -EPERM;
3919
Al Viro1d2ef592011-09-14 18:55:41 +01003920 dget(dentry);
Al Viro59551022016-01-22 15:40:57 -05003921 inode_lock(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
Sage Weil912dbc12011-05-24 13:06:11 -07003923 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07003924 if (is_local_mountpoint(dentry))
Sage Weil912dbc12011-05-24 13:06:11 -07003925 goto out;
3926
3927 error = security_inode_rmdir(dir, dentry);
3928 if (error)
3929 goto out;
3930
Sage Weil3cebde22011-05-29 21:20:59 -07003931 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003932 error = dir->i_op->rmdir(dir, dentry);
3933 if (error)
3934 goto out;
3935
3936 dentry->d_inode->i_flags |= S_DEAD;
3937 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003938 detach_mounts(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003939
3940out:
Al Viro59551022016-01-22 15:40:57 -05003941 inode_unlock(dentry->d_inode);
Al Viro1d2ef592011-09-14 18:55:41 +01003942 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003943 if (!error)
3944 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 return error;
3946}
Guenter Roeckf1222162017-01-30 12:29:00 -08003947EXPORT_SYMBOL(vfs_rmdir2);
3948
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003949int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3950{
3951 return vfs_rmdir2(NULL, dir, dentry);
3952}
Al Viro4d359502014-03-14 12:20:17 -04003953EXPORT_SYMBOL(vfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003955static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956{
3957 int error = 0;
Jeff Layton91a27b22012-10-10 15:25:28 -04003958 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04003960 struct path path;
3961 struct qstr last;
3962 int type;
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003963 unsigned int lookup_flags = 0;
3964retry:
Al Virof5beed72015-04-30 16:09:11 -04003965 name = user_path_parent(dfd, pathname,
3966 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003967 if (IS_ERR(name))
3968 return PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969
Al Virof5beed72015-04-30 16:09:11 -04003970 switch (type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003971 case LAST_DOTDOT:
3972 error = -ENOTEMPTY;
3973 goto exit1;
3974 case LAST_DOT:
3975 error = -EINVAL;
3976 goto exit1;
3977 case LAST_ROOT:
3978 error = -EBUSY;
3979 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003981
Al Virof5beed72015-04-30 16:09:11 -04003982 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02003983 if (error)
3984 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003985
Al Viro59551022016-01-22 15:40:57 -05003986 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04003987 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003989 if (IS_ERR(dentry))
3990 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003991 if (!dentry->d_inode) {
3992 error = -ENOENT;
3993 goto exit3;
3994 }
Al Virof5beed72015-04-30 16:09:11 -04003995 error = security_path_rmdir(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003996 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003997 goto exit3;
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07003998 error = vfs_rmdir2(path.mnt, path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08003999exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07004000 dput(dentry);
4001exit2:
Al Viro59551022016-01-22 15:40:57 -05004002 inode_unlock(path.dentry->d_inode);
Al Virof5beed72015-04-30 16:09:11 -04004003 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004exit1:
Al Virof5beed72015-04-30 16:09:11 -04004005 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 putname(name);
Jeff Laytonc6ee9202012-12-20 16:28:33 -05004007 if (retry_estale(error, lookup_flags)) {
4008 lookup_flags |= LOOKUP_REVAL;
4009 goto retry;
4010 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 return error;
4012}
4013
Heiko Carstens3cdad422009-01-14 14:14:22 +01004014SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004015{
4016 return do_rmdir(AT_FDCWD, pathname);
4017}
4018
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004019/**
4020 * vfs_unlink - unlink a filesystem object
4021 * @dir: parent directory
4022 * @dentry: victim
4023 * @delegated_inode: returns victim inode, if the inode is delegated.
4024 *
4025 * The caller must hold dir->i_mutex.
4026 *
4027 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
4028 * return a reference to the inode in delegated_inode. The caller
4029 * should then break the delegation on that inode and retry. Because
4030 * breaking a delegation may take a long time, the caller should drop
4031 * dir->i_mutex before doing so.
4032 *
4033 * Alternatively, a caller may pass NULL for delegated_inode. This may
4034 * be appropriate for callers that expect the underlying filesystem not
4035 * to be NFS exported.
4036 */
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004037int vfs_unlink2(struct vfsmount *mnt, struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038{
J. Bruce Fields9accbb92012-08-28 07:03:24 -04004039 struct inode *target = dentry->d_inode;
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004040 int error = may_delete(mnt, dir, dentry, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041
4042 if (error)
4043 return error;
4044
Al Viroacfa4382008-12-04 10:06:33 -05004045 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 return -EPERM;
4047
Al Viro59551022016-01-22 15:40:57 -05004048 inode_lock(target);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004049 if (is_local_mountpoint(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 error = -EBUSY;
4051 else {
4052 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05004053 if (!error) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07004054 error = try_break_deleg(target, delegated_inode);
4055 if (error)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004056 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 error = dir->i_op->unlink(dir, dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004058 if (!error) {
Al Virod83c49f2010-04-30 17:17:09 -04004059 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004060 detach_mounts(dentry);
4061 }
Al Virobec10522010-03-03 14:12:08 -05004062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 }
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004064out:
Al Viro59551022016-01-22 15:40:57 -05004065 inode_unlock(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066
4067 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
4068 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
J. Bruce Fields9accbb92012-08-28 07:03:24 -04004069 fsnotify_link_count(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 }
Robert Love0eeca282005-07-12 17:06:03 -04004072
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 return error;
4074}
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004075EXPORT_SYMBOL(vfs_unlink2);
4076
4077int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
4078{
4079 return vfs_unlink2(NULL, dir, dentry, delegated_inode);
4080}
Al Viro4d359502014-03-14 12:20:17 -04004081EXPORT_SYMBOL(vfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082
4083/*
4084 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004085 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 * writeout happening, and we don't want to prevent access to the directory
4087 * while waiting on the I/O.
4088 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004089static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090{
Al Viro2ad94ae2008-07-21 09:32:51 -04004091 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04004092 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04004094 struct path path;
4095 struct qstr last;
4096 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 struct inode *inode = NULL;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004098 struct inode *delegated_inode = NULL;
Jeff Layton5d18f812012-12-20 16:38:04 -05004099 unsigned int lookup_flags = 0;
4100retry:
Al Virof5beed72015-04-30 16:09:11 -04004101 name = user_path_parent(dfd, pathname,
4102 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004103 if (IS_ERR(name))
4104 return PTR_ERR(name);
Al Viro2ad94ae2008-07-21 09:32:51 -04004105
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 error = -EISDIR;
Al Virof5beed72015-04-30 16:09:11 -04004107 if (type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09004109
Al Virof5beed72015-04-30 16:09:11 -04004110 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004111 if (error)
4112 goto exit1;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004113retry_deleg:
Al Viro59551022016-01-22 15:40:57 -05004114 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04004115 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 error = PTR_ERR(dentry);
4117 if (!IS_ERR(dentry)) {
4118 /* Why not before? Because we want correct error value */
Al Virof5beed72015-04-30 16:09:11 -04004119 if (last.name[last.len])
Török Edwin50338b82011-06-16 00:06:14 +03004120 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 inode = dentry->d_inode;
David Howellsb18825a2013-09-12 19:22:53 +01004122 if (d_is_negative(dentry))
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04004123 goto slashes;
4124 ihold(inode);
Al Virof5beed72015-04-30 16:09:11 -04004125 error = security_path_unlink(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004126 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004127 goto exit2;
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004128 error = vfs_unlink2(path.mnt, path.dentry->d_inode, dentry, &delegated_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02004129exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 dput(dentry);
4131 }
Al Viro59551022016-01-22 15:40:57 -05004132 inode_unlock(path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 if (inode)
4134 iput(inode); /* truncate the inode here */
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004135 inode = NULL;
4136 if (delegated_inode) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07004137 error = break_deleg_wait(&delegated_inode);
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004138 if (!error)
4139 goto retry_deleg;
4140 }
Al Virof5beed72015-04-30 16:09:11 -04004141 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142exit1:
Al Virof5beed72015-04-30 16:09:11 -04004143 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 putname(name);
Jeff Layton5d18f812012-12-20 16:38:04 -05004145 if (retry_estale(error, lookup_flags)) {
4146 lookup_flags |= LOOKUP_REVAL;
4147 inode = NULL;
4148 goto retry;
4149 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 return error;
4151
4152slashes:
David Howellsb18825a2013-09-12 19:22:53 +01004153 if (d_is_negative(dentry))
4154 error = -ENOENT;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02004155 else if (d_is_dir(dentry))
David Howellsb18825a2013-09-12 19:22:53 +01004156 error = -EISDIR;
4157 else
4158 error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 goto exit2;
4160}
4161
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004162SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004163{
4164 if ((flag & ~AT_REMOVEDIR) != 0)
4165 return -EINVAL;
4166
4167 if (flag & AT_REMOVEDIR)
4168 return do_rmdir(dfd, pathname);
4169
4170 return do_unlinkat(dfd, pathname);
4171}
4172
Heiko Carstens3480b252009-01-14 14:14:16 +01004173SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004174{
4175 return do_unlinkat(AT_FDCWD, pathname);
4176}
4177
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004178int vfs_symlink2(struct vfsmount *mnt, struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179{
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004180 int error = may_create(mnt, dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181
4182 if (error)
4183 return error;
4184
Al Viroacfa4382008-12-04 10:06:33 -05004185 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186 return -EPERM;
4187
4188 error = security_inode_symlink(dir, dentry, oldname);
4189 if (error)
4190 return error;
4191
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07004193 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00004194 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 return error;
4196}
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004197EXPORT_SYMBOL(vfs_symlink2);
4198
4199int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
4200{
4201 return vfs_symlink2(NULL, dir, dentry, oldname);
4202}
Al Viro4d359502014-03-14 12:20:17 -04004203EXPORT_SYMBOL(vfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004205SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
4206 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207{
Al Viro2ad94ae2008-07-21 09:32:51 -04004208 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04004209 struct filename *from;
Dave Hansen6902d922006-09-30 23:29:01 -07004210 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004211 struct path path;
Jeff Laytonf46d3562012-12-11 12:10:08 -05004212 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004213
4214 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04004215 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 return PTR_ERR(from);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004217retry:
4218 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07004219 error = PTR_ERR(dentry);
4220 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004221 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07004222
Jeff Layton91a27b22012-10-10 15:25:28 -04004223 error = security_path_symlink(&path, dentry, from->name);
Al Viroa8104a92012-07-20 02:25:00 +04004224 if (!error)
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004225 error = vfs_symlink2(path.mnt, path.dentry->d_inode, dentry, from->name);
Al Viro921a1652012-07-20 01:15:31 +04004226 done_path_create(&path, dentry);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004227 if (retry_estale(error, lookup_flags)) {
4228 lookup_flags |= LOOKUP_REVAL;
4229 goto retry;
4230 }
Dave Hansen6902d922006-09-30 23:29:01 -07004231out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232 putname(from);
4233 return error;
4234}
4235
Heiko Carstens3480b252009-01-14 14:14:16 +01004236SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004237{
4238 return sys_symlinkat(oldname, AT_FDCWD, newname);
4239}
4240
J. Bruce Fields146a8592011-09-20 17:14:31 -04004241/**
4242 * vfs_link - create a new link
4243 * @old_dentry: object to be linked
4244 * @dir: new parent
4245 * @new_dentry: where to create the new link
4246 * @delegated_inode: returns inode needing a delegation break
4247 *
4248 * The caller must hold dir->i_mutex
4249 *
4250 * If vfs_link discovers a delegation on the to-be-linked file in need
4251 * of breaking, it will return -EWOULDBLOCK and return a reference to the
4252 * inode in delegated_inode. The caller should then break the delegation
4253 * and retry. Because breaking a delegation may take a long time, the
4254 * caller should drop the i_mutex before doing so.
4255 *
4256 * Alternatively, a caller may pass NULL for delegated_inode. This may
4257 * be appropriate for callers that expect the underlying filesystem not
4258 * to be NFS exported.
4259 */
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004260int 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 -07004261{
4262 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05004263 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 int error;
4265
4266 if (!inode)
4267 return -ENOENT;
4268
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004269 error = may_create(mnt, dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270 if (error)
4271 return error;
4272
4273 if (dir->i_sb != inode->i_sb)
4274 return -EXDEV;
4275
4276 /*
4277 * A link to an append-only or immutable file cannot be created.
4278 */
4279 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4280 return -EPERM;
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05004281 /*
4282 * Updating the link count will likely cause i_uid and i_gid to
4283 * be writen back improperly if their true value is unknown to
4284 * the vfs.
4285 */
4286 if (HAS_UNMAPPED_ID(inode))
4287 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05004288 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004290 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 return -EPERM;
4292
4293 error = security_inode_link(old_dentry, dir, new_dentry);
4294 if (error)
4295 return error;
4296
Al Viro59551022016-01-22 15:40:57 -05004297 inode_lock(inode);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304298 /* Make sure we don't allow creating hardlink to an unlinked file */
Al Virof4e0c302013-06-11 08:34:36 +04004299 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304300 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05004301 else if (max_links && inode->i_nlink >= max_links)
4302 error = -EMLINK;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004303 else {
4304 error = try_break_deleg(inode, delegated_inode);
4305 if (!error)
4306 error = dir->i_op->link(old_dentry, dir, new_dentry);
4307 }
Al Virof4e0c302013-06-11 08:34:36 +04004308
4309 if (!error && (inode->i_state & I_LINKABLE)) {
4310 spin_lock(&inode->i_lock);
4311 inode->i_state &= ~I_LINKABLE;
4312 spin_unlock(&inode->i_lock);
4313 }
Al Viro59551022016-01-22 15:40:57 -05004314 inode_unlock(inode);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07004315 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004316 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004317 return error;
4318}
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004319EXPORT_SYMBOL(vfs_link2);
4320
4321int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
4322{
4323 return vfs_link2(NULL, old_dentry, dir, new_dentry, delegated_inode);
4324}
Al Viro4d359502014-03-14 12:20:17 -04004325EXPORT_SYMBOL(vfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004326
4327/*
4328 * Hardlinks are often used in delicate situations. We avoid
4329 * security-related surprises by not following symlinks on the
4330 * newname. --KAB
4331 *
4332 * We don't follow them on the oldname either to be compatible
4333 * with linux 2.0, and to avoid hard-linking to directories
4334 * and other special files. --ADM
4335 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004336SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4337 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338{
4339 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004340 struct path old_path, new_path;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004341 struct inode *delegated_inode = NULL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304342 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304345 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004346 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304347 /*
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004348 * To use null names we require CAP_DAC_READ_SEARCH
4349 * This ensures that not everyone will be able to create
4350 * handlink using the passed filedescriptor.
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304351 */
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004352 if (flags & AT_EMPTY_PATH) {
4353 if (!capable(CAP_DAC_READ_SEARCH))
4354 return -ENOENT;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304355 how = LOOKUP_EMPTY;
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004356 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004357
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304358 if (flags & AT_SYMLINK_FOLLOW)
4359 how |= LOOKUP_FOLLOW;
Jeff Layton442e31c2012-12-20 16:15:38 -05004360retry:
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304361 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04004363 return error;
4364
Jeff Layton442e31c2012-12-20 16:15:38 -05004365 new_dentry = user_path_create(newdfd, newname, &new_path,
4366 (how & LOOKUP_REVAL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07004368 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004369 goto out;
4370
4371 error = -EXDEV;
4372 if (old_path.mnt != new_path.mnt)
4373 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07004374 error = may_linkat(&old_path);
4375 if (unlikely(error))
4376 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04004377 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004378 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04004379 goto out_dput;
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004380 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 -08004381out_dput:
Al Viro921a1652012-07-20 01:15:31 +04004382 done_path_create(&new_path, new_dentry);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004383 if (delegated_inode) {
4384 error = break_deleg_wait(&delegated_inode);
Oleg Drokind22e6332014-01-31 15:41:58 -05004385 if (!error) {
4386 path_put(&old_path);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004387 goto retry;
Oleg Drokind22e6332014-01-31 15:41:58 -05004388 }
J. Bruce Fields146a8592011-09-20 17:14:31 -04004389 }
Jeff Layton442e31c2012-12-20 16:15:38 -05004390 if (retry_estale(error, how)) {
Oleg Drokind22e6332014-01-31 15:41:58 -05004391 path_put(&old_path);
Jeff Layton442e31c2012-12-20 16:15:38 -05004392 how |= LOOKUP_REVAL;
4393 goto retry;
4394 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395out:
Al Viro2d8f3032008-07-22 09:59:21 -04004396 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397
4398 return error;
4399}
4400
Heiko Carstens3480b252009-01-14 14:14:16 +01004401SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004402{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004403 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004404}
4405
Miklos Szeredibc270272014-04-01 17:08:42 +02004406/**
4407 * vfs_rename - rename a filesystem object
4408 * @old_dir: parent of source
4409 * @old_dentry: source
4410 * @new_dir: parent of destination
4411 * @new_dentry: destination
4412 * @delegated_inode: returns an inode needing a delegation break
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004413 * @flags: rename flags
Miklos Szeredibc270272014-04-01 17:08:42 +02004414 *
4415 * The caller must hold multiple mutexes--see lock_rename()).
4416 *
4417 * If vfs_rename discovers a delegation in need of breaking at either
4418 * the source or destination, it will return -EWOULDBLOCK and return a
4419 * reference to the inode in delegated_inode. The caller should then
4420 * break the delegation and retry. Because breaking a delegation may
4421 * take a long time, the caller should drop all locks before doing
4422 * so.
4423 *
4424 * Alternatively, a caller may pass NULL for delegated_inode. This may
4425 * be appropriate for callers that expect the underlying filesystem not
4426 * to be NFS exported.
4427 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428 * The worst of all namespace operations - renaming directory. "Perverted"
4429 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4430 * Problems:
J. Bruce Fieldsd03b29a2014-02-17 16:52:33 -05004431 * a) we can get into loop creation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432 * b) race potential - two innocent renames can create a loop together.
4433 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004434 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 * story.
J. Bruce Fields6cedba82012-03-05 11:40:41 -05004436 * c) we have to lock _four_ objects - parents and victim (if it exists),
4437 * and source (if it is not a directory).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004438 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004439 * whether the target exists). Solution: try to be smart with locking
4440 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004441 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 * move will be locked. Thus we can rank directories by the tree
4443 * (ancestors first) and rank all non-directories after them.
4444 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004445 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446 * HOWEVER, it relies on the assumption that any object with ->lookup()
4447 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4448 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07004449 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004450 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05004452 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07004453 * locking].
4454 */
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004455int vfs_rename2(struct vfsmount *mnt,
4456 struct inode *old_dir, struct dentry *old_dentry,
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004457 struct inode *new_dir, struct dentry *new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004458 struct inode **delegated_inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459{
4460 int error;
Miklos Szeredibc270272014-04-01 17:08:42 +02004461 bool is_dir = d_is_dir(old_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004462 struct inode *source = old_dentry->d_inode;
4463 struct inode *target = new_dentry->d_inode;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004464 bool new_is_dir = false;
4465 unsigned max_links = new_dir->i_sb->s_max_links;
Al Viroad25f112017-07-07 14:51:19 -04004466 struct name_snapshot old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467
Miklos Szeredi9409e222016-05-11 01:16:37 +02004468 /*
4469 * Check source == target.
4470 * On overlayfs need to look at underlying inodes.
4471 */
Miklos Szeredi2d902672016-06-30 08:53:27 +02004472 if (d_real_inode(old_dentry) == d_real_inode(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004473 return 0;
4474
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004475 error = may_delete(mnt, old_dir, old_dentry, is_dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004476 if (error)
4477 return error;
4478
Miklos Szeredida1ce062014-04-01 17:08:43 +02004479 if (!target) {
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004480 error = may_create(mnt, new_dir, new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004481 } else {
4482 new_is_dir = d_is_dir(new_dentry);
4483
4484 if (!(flags & RENAME_EXCHANGE))
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004485 error = may_delete(mnt, new_dir, new_dentry, is_dir);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004486 else
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004487 error = may_delete(mnt, new_dir, new_dentry, new_is_dir);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489 if (error)
4490 return error;
4491
Miklos Szeredi2773bf02016-09-27 11:03:58 +02004492 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004493 return -EPERM;
4494
Miklos Szeredibc270272014-04-01 17:08:42 +02004495 /*
4496 * If we are going to change the parent - check write permissions,
4497 * we'll need to flip '..'.
4498 */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004499 if (new_dir != old_dir) {
4500 if (is_dir) {
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004501 error = inode_permission2(mnt, source, MAY_WRITE);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004502 if (error)
4503 return error;
4504 }
4505 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004506 error = inode_permission2(mnt, target, MAY_WRITE);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004507 if (error)
4508 return error;
4509 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004510 }
Robert Love0eeca282005-07-12 17:06:03 -04004511
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004512 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4513 flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004514 if (error)
4515 return error;
4516
Al Viroad25f112017-07-07 14:51:19 -04004517 take_dentry_name_snapshot(&old_name, old_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004518 dget(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004519 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004520 lock_two_nondirectories(source, target);
4521 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004522 inode_lock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004523
4524 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07004525 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004526 goto out;
4527
Miklos Szeredida1ce062014-04-01 17:08:43 +02004528 if (max_links && new_dir != old_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004529 error = -EMLINK;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004530 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
Miklos Szeredibc270272014-04-01 17:08:42 +02004531 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004532 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4533 old_dir->i_nlink >= max_links)
4534 goto out;
4535 }
4536 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4537 shrink_dcache_parent(new_dentry);
4538 if (!is_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004539 error = try_break_deleg(source, delegated_inode);
4540 if (error)
4541 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004542 }
4543 if (target && !new_is_dir) {
4544 error = try_break_deleg(target, delegated_inode);
4545 if (error)
4546 goto out;
Miklos Szeredibc270272014-04-01 17:08:42 +02004547 }
Miklos Szeredi2773bf02016-09-27 11:03:58 +02004548 error = old_dir->i_op->rename(old_dir, old_dentry,
Miklos Szeredi18fc84d2016-09-27 11:03:58 +02004549 new_dir, new_dentry, flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004550 if (error)
4551 goto out;
4552
Miklos Szeredida1ce062014-04-01 17:08:43 +02004553 if (!(flags & RENAME_EXCHANGE) && target) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004554 if (is_dir)
4555 target->i_flags |= S_DEAD;
4556 dont_mount(new_dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004557 detach_mounts(new_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004558 }
Miklos Szeredida1ce062014-04-01 17:08:43 +02004559 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4560 if (!(flags & RENAME_EXCHANGE))
4561 d_move(old_dentry, new_dentry);
4562 else
4563 d_exchange(old_dentry, new_dentry);
4564 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004565out:
Miklos Szeredida1ce062014-04-01 17:08:43 +02004566 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004567 unlock_two_nondirectories(source, target);
4568 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004569 inode_unlock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004570 dput(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004571 if (!error) {
Al Viroad25f112017-07-07 14:51:19 -04004572 fsnotify_move(old_dir, new_dir, old_name.name, is_dir,
Miklos Szeredida1ce062014-04-01 17:08:43 +02004573 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4574 if (flags & RENAME_EXCHANGE) {
4575 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4576 new_is_dir, NULL, new_dentry);
4577 }
4578 }
Al Viroad25f112017-07-07 14:51:19 -04004579 release_dentry_name_snapshot(&old_name);
Robert Love0eeca282005-07-12 17:06:03 -04004580
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581 return error;
4582}
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004583EXPORT_SYMBOL(vfs_rename2);
4584
4585int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
4586 struct inode *new_dir, struct dentry *new_dentry,
4587 struct inode **delegated_inode, unsigned int flags)
4588{
4589 return vfs_rename2(NULL, old_dir, old_dentry, new_dir, new_dentry, delegated_inode, flags);
4590}
Al Viro4d359502014-03-14 12:20:17 -04004591EXPORT_SYMBOL(vfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004593SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4594 int, newdfd, const char __user *, newname, unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004595{
Al Viro2ad94ae2008-07-21 09:32:51 -04004596 struct dentry *old_dentry, *new_dentry;
4597 struct dentry *trap;
Al Virof5beed72015-04-30 16:09:11 -04004598 struct path old_path, new_path;
4599 struct qstr old_last, new_last;
4600 int old_type, new_type;
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004601 struct inode *delegated_inode = NULL;
Jeff Layton91a27b22012-10-10 15:25:28 -04004602 struct filename *from;
4603 struct filename *to;
Al Virof5beed72015-04-30 16:09:11 -04004604 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
Jeff Laytonc6a94282012-12-11 12:10:10 -05004605 bool should_retry = false;
Al Viro2ad94ae2008-07-21 09:32:51 -04004606 int error;
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004607
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004608 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredida1ce062014-04-01 17:08:43 +02004609 return -EINVAL;
4610
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004611 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4612 (flags & RENAME_EXCHANGE))
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004613 return -EINVAL;
4614
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004615 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4616 return -EPERM;
4617
Al Virof5beed72015-04-30 16:09:11 -04004618 if (flags & RENAME_EXCHANGE)
4619 target_flags = 0;
4620
Jeff Laytonc6a94282012-12-11 12:10:10 -05004621retry:
Al Virof5beed72015-04-30 16:09:11 -04004622 from = user_path_parent(olddfd, oldname,
4623 &old_path, &old_last, &old_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004624 if (IS_ERR(from)) {
4625 error = PTR_ERR(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004626 goto exit;
Jeff Layton91a27b22012-10-10 15:25:28 -04004627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004628
Al Virof5beed72015-04-30 16:09:11 -04004629 to = user_path_parent(newdfd, newname,
4630 &new_path, &new_last, &new_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004631 if (IS_ERR(to)) {
4632 error = PTR_ERR(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004633 goto exit1;
Jeff Layton91a27b22012-10-10 15:25:28 -04004634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004635
4636 error = -EXDEV;
Al Virof5beed72015-04-30 16:09:11 -04004637 if (old_path.mnt != new_path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004638 goto exit2;
4639
Linus Torvalds1da177e2005-04-16 15:20:36 -07004640 error = -EBUSY;
Al Virof5beed72015-04-30 16:09:11 -04004641 if (old_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004642 goto exit2;
4643
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004644 if (flags & RENAME_NOREPLACE)
4645 error = -EEXIST;
Al Virof5beed72015-04-30 16:09:11 -04004646 if (new_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004647 goto exit2;
4648
Al Virof5beed72015-04-30 16:09:11 -04004649 error = mnt_want_write(old_path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004650 if (error)
4651 goto exit2;
4652
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004653retry_deleg:
Al Virof5beed72015-04-30 16:09:11 -04004654 trap = lock_rename(new_path.dentry, old_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004655
Al Virof5beed72015-04-30 16:09:11 -04004656 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004657 error = PTR_ERR(old_dentry);
4658 if (IS_ERR(old_dentry))
4659 goto exit3;
4660 /* source must exist */
4661 error = -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01004662 if (d_is_negative(old_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004663 goto exit4;
Al Virof5beed72015-04-30 16:09:11 -04004664 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004665 error = PTR_ERR(new_dentry);
4666 if (IS_ERR(new_dentry))
4667 goto exit4;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004668 error = -EEXIST;
4669 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4670 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004671 if (flags & RENAME_EXCHANGE) {
4672 error = -ENOENT;
4673 if (d_is_negative(new_dentry))
4674 goto exit5;
4675
4676 if (!d_is_dir(new_dentry)) {
4677 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004678 if (new_last.name[new_last.len])
Miklos Szeredida1ce062014-04-01 17:08:43 +02004679 goto exit5;
4680 }
4681 }
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004682 /* unless the source is a directory trailing slashes give -ENOTDIR */
4683 if (!d_is_dir(old_dentry)) {
4684 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004685 if (old_last.name[old_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004686 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004687 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004688 goto exit5;
4689 }
4690 /* source should not be ancestor of target */
4691 error = -EINVAL;
4692 if (old_dentry == trap)
4693 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004694 /* target should not be an ancestor of source */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004695 if (!(flags & RENAME_EXCHANGE))
4696 error = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004697 if (new_dentry == trap)
4698 goto exit5;
4699
Al Virof5beed72015-04-30 16:09:11 -04004700 error = security_path_rename(&old_path, old_dentry,
4701 &new_path, new_dentry, flags);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004702 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004703 goto exit5;
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004704 error = vfs_rename2(old_path.mnt, old_path.dentry->d_inode, old_dentry,
Al Virof5beed72015-04-30 16:09:11 -04004705 new_path.dentry->d_inode, new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004706 &delegated_inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707exit5:
4708 dput(new_dentry);
4709exit4:
4710 dput(old_dentry);
4711exit3:
Al Virof5beed72015-04-30 16:09:11 -04004712 unlock_rename(new_path.dentry, old_path.dentry);
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004713 if (delegated_inode) {
4714 error = break_deleg_wait(&delegated_inode);
4715 if (!error)
4716 goto retry_deleg;
4717 }
Al Virof5beed72015-04-30 16:09:11 -04004718 mnt_drop_write(old_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004719exit2:
Jeff Laytonc6a94282012-12-11 12:10:10 -05004720 if (retry_estale(error, lookup_flags))
4721 should_retry = true;
Al Virof5beed72015-04-30 16:09:11 -04004722 path_put(&new_path);
Al Viro2ad94ae2008-07-21 09:32:51 -04004723 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724exit1:
Al Virof5beed72015-04-30 16:09:11 -04004725 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004726 putname(from);
Jeff Laytonc6a94282012-12-11 12:10:10 -05004727 if (should_retry) {
4728 should_retry = false;
4729 lookup_flags |= LOOKUP_REVAL;
4730 goto retry;
4731 }
Al Viro2ad94ae2008-07-21 09:32:51 -04004732exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733 return error;
4734}
4735
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004736SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4737 int, newdfd, const char __user *, newname)
4738{
4739 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4740}
4741
Heiko Carstensa26eab22009-01-14 14:14:17 +01004742SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004743{
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004744 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004745}
4746
Miklos Szeredi787fb6b2014-10-24 00:14:36 +02004747int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4748{
Daniel Rosenbergbbcd0ff2016-10-26 16:27:45 -07004749 int error = may_create(NULL, dir, dentry);
Miklos Szeredi787fb6b2014-10-24 00:14:36 +02004750 if (error)
4751 return error;
4752
4753 if (!dir->i_op->mknod)
4754 return -EPERM;
4755
4756 return dir->i_op->mknod(dir, dentry,
4757 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4758}
4759EXPORT_SYMBOL(vfs_whiteout);
4760
Al Viro5d826c82014-03-14 13:42:45 -04004761int readlink_copy(char __user *buffer, int buflen, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762{
Al Viro5d826c82014-03-14 13:42:45 -04004763 int len = PTR_ERR(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004764 if (IS_ERR(link))
4765 goto out;
4766
4767 len = strlen(link);
4768 if (len > (unsigned) buflen)
4769 len = buflen;
4770 if (copy_to_user(buffer, link, len))
4771 len = -EFAULT;
4772out:
4773 return len;
4774}
4775
4776/*
4777 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
Al Viro6b255392015-11-17 10:20:54 -05004778 * have ->get_link() not calling nd_jump_link(). Using (or not using) it
4779 * for any given inode is up to filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780 */
4781int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4782{
Al Virofceef392015-12-29 15:58:39 -05004783 DEFINE_DELAYED_CALL(done);
Al Viro5f2c4172015-05-07 11:14:26 -04004784 struct inode *inode = d_inode(dentry);
4785 const char *link = inode->i_link;
Marcin Slusarz694a1762008-06-09 16:40:37 -07004786 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004787
Al Virod4dee482015-04-30 20:08:02 -04004788 if (!link) {
Al Virofceef392015-12-29 15:58:39 -05004789 link = inode->i_op->get_link(dentry, inode, &done);
Al Virod4dee482015-04-30 20:08:02 -04004790 if (IS_ERR(link))
4791 return PTR_ERR(link);
4792 }
Al Viro680baac2015-05-02 13:32:22 -04004793 res = readlink_copy(buffer, buflen, link);
Al Virofceef392015-12-29 15:58:39 -05004794 do_delayed_call(&done);
Marcin Slusarz694a1762008-06-09 16:40:37 -07004795 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004796}
Al Viro4d359502014-03-14 12:20:17 -04004797EXPORT_SYMBOL(generic_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
Miklos Szeredid60874c2016-10-04 14:40:45 +02004799/**
4800 * vfs_get_link - get symlink body
4801 * @dentry: dentry on which to get symbolic link
4802 * @done: caller needs to free returned data with this
4803 *
4804 * Calls security hook and i_op->get_link() on the supplied inode.
4805 *
4806 * It does not touch atime. That's up to the caller if necessary.
4807 *
4808 * Does not work on "special" symlinks like /proc/$$/fd/N
4809 */
4810const char *vfs_get_link(struct dentry *dentry, struct delayed_call *done)
4811{
4812 const char *res = ERR_PTR(-EINVAL);
4813 struct inode *inode = d_inode(dentry);
4814
4815 if (d_is_symlink(dentry)) {
4816 res = ERR_PTR(security_inode_readlink(dentry));
4817 if (!res)
4818 res = inode->i_op->get_link(dentry, inode, done);
4819 }
4820 return res;
4821}
4822EXPORT_SYMBOL(vfs_get_link);
4823
Linus Torvalds1da177e2005-04-16 15:20:36 -07004824/* get the link contents into pagecache */
Al Viro6b255392015-11-17 10:20:54 -05004825const char *page_get_link(struct dentry *dentry, struct inode *inode,
Al Virofceef392015-12-29 15:58:39 -05004826 struct delayed_call *callback)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004827{
Duane Griffinebd09ab2008-12-19 20:47:12 +00004828 char *kaddr;
4829 struct page *page;
Al Viro6b255392015-11-17 10:20:54 -05004830 struct address_space *mapping = inode->i_mapping;
4831
Al Virod3883d42015-11-17 10:41:04 -05004832 if (!dentry) {
4833 page = find_get_page(mapping, 0);
4834 if (!page)
4835 return ERR_PTR(-ECHILD);
4836 if (!PageUptodate(page)) {
4837 put_page(page);
4838 return ERR_PTR(-ECHILD);
4839 }
4840 } else {
4841 page = read_mapping_page(mapping, 0, NULL);
4842 if (IS_ERR(page))
4843 return (char*)page;
4844 }
Al Virofceef392015-12-29 15:58:39 -05004845 set_delayed_call(callback, page_put_link, page);
Al Viro21fc61c2015-11-17 01:07:57 -05004846 BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM);
4847 kaddr = page_address(page);
Al Viro6b255392015-11-17 10:20:54 -05004848 nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1);
Duane Griffinebd09ab2008-12-19 20:47:12 +00004849 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850}
4851
Al Viro6b255392015-11-17 10:20:54 -05004852EXPORT_SYMBOL(page_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853
Al Virofceef392015-12-29 15:58:39 -05004854void page_put_link(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004855{
Al Virofceef392015-12-29 15:58:39 -05004856 put_page(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857}
Al Viro4d359502014-03-14 12:20:17 -04004858EXPORT_SYMBOL(page_put_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004859
Al Viroaa80dea2015-11-16 18:26:34 -05004860int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4861{
Al Virofceef392015-12-29 15:58:39 -05004862 DEFINE_DELAYED_CALL(done);
Al Viro6b255392015-11-17 10:20:54 -05004863 int res = readlink_copy(buffer, buflen,
4864 page_get_link(dentry, d_inode(dentry),
Al Virofceef392015-12-29 15:58:39 -05004865 &done));
4866 do_delayed_call(&done);
Al Viroaa80dea2015-11-16 18:26:34 -05004867 return res;
4868}
4869EXPORT_SYMBOL(page_readlink);
4870
Nick Piggin54566b22009-01-04 12:00:53 -08004871/*
4872 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4873 */
4874int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004875{
4876 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004877 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07004878 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08004879 int err;
Nick Piggin54566b22009-01-04 12:00:53 -08004880 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4881 if (nofs)
4882 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883
NeilBrown7e53cac2006-03-25 03:07:57 -08004884retry:
Nick Pigginafddba42007-10-16 01:25:01 -07004885 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08004886 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07004888 goto fail;
4889
Al Viro21fc61c2015-11-17 01:07:57 -05004890 memcpy(page_address(page), symname, len-1);
Nick Pigginafddba42007-10-16 01:25:01 -07004891
4892 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4893 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894 if (err < 0)
4895 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07004896 if (err < len-1)
4897 goto retry;
4898
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899 mark_inode_dirty(inode);
4900 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004901fail:
4902 return err;
4903}
Al Viro4d359502014-03-14 12:20:17 -04004904EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004906int page_symlink(struct inode *inode, const char *symname, int len)
4907{
4908 return __page_symlink(inode, symname, len,
Michal Hockoc62d2552015-11-06 16:28:49 -08004909 !mapping_gfp_constraint(inode->i_mapping, __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004910}
Al Viro4d359502014-03-14 12:20:17 -04004911EXPORT_SYMBOL(page_symlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004912
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004913const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004914 .readlink = generic_readlink,
Al Viro6b255392015-11-17 10:20:54 -05004915 .get_link = page_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004916};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004917EXPORT_SYMBOL(page_symlink_inode_operations);