blob: 0953281430b15beeb23f947e911427c11cbc49b5 [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 */
379static inline int do_inode_permission(struct inode *inode, int mask)
380{
381 if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
382 if (likely(inode->i_op->permission))
383 return inode->i_op->permission(inode, mask);
384
385 /* This gets set once for the inode lifetime */
386 spin_lock(&inode->i_lock);
387 inode->i_opflags |= IOP_FASTPERM;
388 spin_unlock(&inode->i_lock);
389 }
390 return generic_permission(inode, mask);
391}
392
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200393/**
David Howells0bdaea92012-06-25 12:55:46 +0100394 * __inode_permission - Check for access rights to a given inode
395 * @inode: Inode to check permission on
396 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200397 *
David Howells0bdaea92012-06-25 12:55:46 +0100398 * Check for read/write/execute permissions on an inode.
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530399 *
400 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
David Howells0bdaea92012-06-25 12:55:46 +0100401 *
402 * This does not check for a read-only file system. You probably want
403 * inode_permission().
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200404 */
David Howells0bdaea92012-06-25 12:55:46 +0100405int __inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Al Viroe6305c42008-07-15 21:03:57 -0400407 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700409 if (unlikely(mask & MAY_WRITE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 /*
411 * Nobody gets write access to an immutable file.
412 */
413 if (IS_IMMUTABLE(inode))
Eryu Guan337684a2016-08-02 19:58:28 +0800414 return -EPERM;
Eric W. Biederman0bd23d092016-06-29 14:54:46 -0500415
416 /*
417 * Updating mtime will likely cause i_uid and i_gid to be
418 * written back improperly if their true value is unknown
419 * to the vfs.
420 */
421 if (HAS_UNMAPPED_ID(inode))
422 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
424
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700425 retval = do_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 if (retval)
427 return retval;
428
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700429 retval = devcgroup_inode_permission(inode, mask);
430 if (retval)
431 return retval;
432
Eric Parisd09ca732010-07-23 11:43:57 -0400433 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
Miklos Szeredibd5d0852014-10-24 00:14:35 +0200435EXPORT_SYMBOL(__inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Al Virof4d6ff82011-06-19 13:14:21 -0400437/**
David Howells0bdaea92012-06-25 12:55:46 +0100438 * sb_permission - Check superblock-level permissions
439 * @sb: Superblock of inode to check permission on
Randy Dunlap55852632012-08-18 17:39:25 -0700440 * @inode: Inode to check permission on
David Howells0bdaea92012-06-25 12:55:46 +0100441 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
442 *
443 * Separate out file-system wide checks from inode-specific permission checks.
444 */
445static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
446{
447 if (unlikely(mask & MAY_WRITE)) {
448 umode_t mode = inode->i_mode;
449
450 /* Nobody gets write access to a read-only fs. */
451 if ((sb->s_flags & MS_RDONLY) &&
452 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
453 return -EROFS;
454 }
455 return 0;
456}
457
458/**
459 * inode_permission - Check for access rights to a given inode
460 * @inode: Inode to check permission on
461 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
462 *
463 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
464 * this, letting us set arbitrary permissions for filesystem access without
465 * changing the "normal" UIDs which are used for other things.
466 *
467 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
468 */
469int inode_permission(struct inode *inode, int mask)
470{
471 int retval;
472
473 retval = sb_permission(inode->i_sb, inode, mask);
474 if (retval)
475 return retval;
476 return __inode_permission(inode, mask);
477}
Al Viro4d359502014-03-14 12:20:17 -0400478EXPORT_SYMBOL(inode_permission);
David Howells0bdaea92012-06-25 12:55:46 +0100479
480/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800481 * path_get - get a reference to a path
482 * @path: path to get the reference to
483 *
484 * Given a path increment the reference count to the dentry and the vfsmount.
485 */
Al Virodcf787f2013-03-01 23:51:07 -0500486void path_get(const struct path *path)
Jan Blunck5dd784d02008-02-14 19:34:38 -0800487{
488 mntget(path->mnt);
489 dget(path->dentry);
490}
491EXPORT_SYMBOL(path_get);
492
493/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800494 * path_put - put a reference to a path
495 * @path: path to put the reference to
496 *
497 * Given a path decrement the reference count to the dentry and the vfsmount.
498 */
Al Virodcf787f2013-03-01 23:51:07 -0500499void path_put(const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Jan Blunck1d957f92008-02-14 19:34:35 -0800501 dput(path->dentry);
502 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503}
Jan Blunck1d957f92008-02-14 19:34:35 -0800504EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Al Viro894bc8c2015-05-02 07:16:16 -0400506#define EMBEDDED_LEVELS 2
Al Viro1f55a6e2014-11-01 19:30:41 -0400507struct nameidata {
508 struct path path;
Al Viro1cf26652015-05-06 16:01:56 -0400509 struct qstr last;
Al Viro1f55a6e2014-11-01 19:30:41 -0400510 struct path root;
511 struct inode *inode; /* path.dentry.d_inode */
512 unsigned int flags;
Al Viro9883d182015-05-13 07:28:08 -0400513 unsigned seq, m_seq;
Al Viro1f55a6e2014-11-01 19:30:41 -0400514 int last_type;
515 unsigned depth;
NeilBrown756daf22015-03-23 13:37:38 +1100516 int total_link_count;
Al Viro697fc6c2015-05-02 19:38:35 -0400517 struct saved {
518 struct path link;
Al Virofceef392015-12-29 15:58:39 -0500519 struct delayed_call done;
Al Viro697fc6c2015-05-02 19:38:35 -0400520 const char *name;
Al Viro0450b2d2015-05-08 13:23:53 -0400521 unsigned seq;
Al Viro894bc8c2015-05-02 07:16:16 -0400522 } *stack, internal[EMBEDDED_LEVELS];
Al Viro9883d182015-05-13 07:28:08 -0400523 struct filename *name;
524 struct nameidata *saved;
Al Virofceef392015-12-29 15:58:39 -0500525 struct inode *link_inode;
Al Viro9883d182015-05-13 07:28:08 -0400526 unsigned root_seq;
527 int dfd;
Al Viro1f55a6e2014-11-01 19:30:41 -0400528};
529
Al Viro9883d182015-05-13 07:28:08 -0400530static void set_nameidata(struct nameidata *p, int dfd, struct filename *name)
Al Viro894bc8c2015-05-02 07:16:16 -0400531{
NeilBrown756daf22015-03-23 13:37:38 +1100532 struct nameidata *old = current->nameidata;
533 p->stack = p->internal;
Al Viroc8a53ee2015-05-12 18:43:07 -0400534 p->dfd = dfd;
535 p->name = name;
NeilBrown756daf22015-03-23 13:37:38 +1100536 p->total_link_count = old ? old->total_link_count : 0;
Al Viro9883d182015-05-13 07:28:08 -0400537 p->saved = old;
NeilBrown756daf22015-03-23 13:37:38 +1100538 current->nameidata = p;
Al Viro894bc8c2015-05-02 07:16:16 -0400539}
540
Al Viro9883d182015-05-13 07:28:08 -0400541static void restore_nameidata(void)
Al Viro894bc8c2015-05-02 07:16:16 -0400542{
Al Viro9883d182015-05-13 07:28:08 -0400543 struct nameidata *now = current->nameidata, *old = now->saved;
NeilBrown756daf22015-03-23 13:37:38 +1100544
545 current->nameidata = old;
546 if (old)
547 old->total_link_count = now->total_link_count;
Al Viroe1a63bb2015-12-05 21:06:33 -0500548 if (now->stack != now->internal)
NeilBrown756daf22015-03-23 13:37:38 +1100549 kfree(now->stack);
Al Viro894bc8c2015-05-02 07:16:16 -0400550}
551
552static int __nd_alloc_stack(struct nameidata *nd)
553{
Al Virobc40aee2015-05-09 13:04:24 -0400554 struct saved *p;
555
556 if (nd->flags & LOOKUP_RCU) {
557 p= kmalloc(MAXSYMLINKS * sizeof(struct saved),
558 GFP_ATOMIC);
559 if (unlikely(!p))
560 return -ECHILD;
561 } else {
562 p= kmalloc(MAXSYMLINKS * sizeof(struct saved),
Al Viro894bc8c2015-05-02 07:16:16 -0400563 GFP_KERNEL);
Al Virobc40aee2015-05-09 13:04:24 -0400564 if (unlikely(!p))
565 return -ENOMEM;
566 }
Al Viro894bc8c2015-05-02 07:16:16 -0400567 memcpy(p, nd->internal, sizeof(nd->internal));
568 nd->stack = p;
569 return 0;
570}
571
Eric W. Biederman397d4252015-08-15 20:27:13 -0500572/**
573 * path_connected - Verify that a path->dentry is below path->mnt.mnt_root
574 * @path: nameidate to verify
575 *
576 * Rename can sometimes move a file or directory outside of a bind
577 * mount, path_connected allows those cases to be detected.
578 */
579static bool path_connected(const struct path *path)
580{
581 struct vfsmount *mnt = path->mnt;
Eric W. Biedermaneaa95922018-03-14 18:20:29 -0500582 struct super_block *sb = mnt->mnt_sb;
Eric W. Biederman397d4252015-08-15 20:27:13 -0500583
Eric W. Biedermaneaa95922018-03-14 18:20:29 -0500584 /* Bind mounts and multi-root filesystems can have disconnected paths */
585 if (!(sb->s_iflags & SB_I_MULTIROOT) && (mnt->mnt_root == sb->s_root))
Eric W. Biederman397d4252015-08-15 20:27:13 -0500586 return true;
587
588 return is_subdir(path->dentry, mnt->mnt_root);
589}
590
Al Viro894bc8c2015-05-02 07:16:16 -0400591static inline int nd_alloc_stack(struct nameidata *nd)
592{
Al Viroda4e0be2015-05-03 20:52:15 -0400593 if (likely(nd->depth != EMBEDDED_LEVELS))
Al Viro894bc8c2015-05-02 07:16:16 -0400594 return 0;
595 if (likely(nd->stack != nd->internal))
596 return 0;
597 return __nd_alloc_stack(nd);
598}
599
Al Viro79733872015-05-09 12:55:43 -0400600static void drop_links(struct nameidata *nd)
601{
602 int i = nd->depth;
603 while (i--) {
604 struct saved *last = nd->stack + i;
Al Virofceef392015-12-29 15:58:39 -0500605 do_delayed_call(&last->done);
606 clear_delayed_call(&last->done);
Al Viro79733872015-05-09 12:55:43 -0400607 }
608}
609
610static void terminate_walk(struct nameidata *nd)
611{
612 drop_links(nd);
613 if (!(nd->flags & LOOKUP_RCU)) {
614 int i;
615 path_put(&nd->path);
616 for (i = 0; i < nd->depth; i++)
617 path_put(&nd->stack[i].link);
Al Viro102b8af2015-05-12 17:35:52 -0400618 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
619 path_put(&nd->root);
620 nd->root.mnt = NULL;
621 }
Al Viro79733872015-05-09 12:55:43 -0400622 } else {
623 nd->flags &= ~LOOKUP_RCU;
624 if (!(nd->flags & LOOKUP_ROOT))
625 nd->root.mnt = NULL;
626 rcu_read_unlock();
627 }
628 nd->depth = 0;
629}
630
631/* path_put is needed afterwards regardless of success or failure */
632static bool legitimize_path(struct nameidata *nd,
633 struct path *path, unsigned seq)
634{
635 int res = __legitimize_mnt(path->mnt, nd->m_seq);
636 if (unlikely(res)) {
637 if (res > 0)
638 path->mnt = NULL;
639 path->dentry = NULL;
640 return false;
641 }
642 if (unlikely(!lockref_get_not_dead(&path->dentry->d_lockref))) {
643 path->dentry = NULL;
644 return false;
645 }
646 return !read_seqcount_retry(&path->dentry->d_seq, seq);
647}
648
649static bool legitimize_links(struct nameidata *nd)
650{
651 int i;
652 for (i = 0; i < nd->depth; i++) {
653 struct saved *last = nd->stack + i;
654 if (unlikely(!legitimize_path(nd, &last->link, last->seq))) {
655 drop_links(nd);
656 nd->depth = i + 1;
657 return false;
658 }
659 }
660 return true;
661}
662
Al Viro19660af2011-03-25 10:32:48 -0400663/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100664 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400665 * Documentation/filesystems/path-lookup.txt). In situations when we can't
666 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
Mike Marshall57e37152015-11-30 11:11:59 -0500667 * normal reference counts on dentries and vfsmounts to transition to ref-walk
Al Viro19660af2011-03-25 10:32:48 -0400668 * mode. Refcounts are grabbed at the last known good point before rcu-walk
669 * got stuck, so ref-walk may continue from there. If this is not successful
670 * (eg. a seqcount has changed), then failure is returned and it's up to caller
671 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100672 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100673
674/**
Al Viro19660af2011-03-25 10:32:48 -0400675 * unlazy_walk - try to switch to ref-walk mode.
676 * @nd: nameidata pathwalk data
677 * @dentry: child of nd->path.dentry or NULL
Al Viro6e9918b2015-05-05 09:26:05 -0400678 * @seq: seq number to check dentry against
Randy Dunlap39191622011-01-08 19:36:21 -0800679 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100680 *
Al Viro19660af2011-03-25 10:32:48 -0400681 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
682 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
683 * @nd or NULL. Must be called from rcu-walk context.
Al Viro79733872015-05-09 12:55:43 -0400684 * Nothing should touch nameidata between unlazy_walk() failure and
685 * terminate_walk().
Nick Piggin31e6b012011-01-07 17:49:52 +1100686 */
Al Viro6e9918b2015-05-05 09:26:05 -0400687static int unlazy_walk(struct nameidata *nd, struct dentry *dentry, unsigned seq)
Nick Piggin31e6b012011-01-07 17:49:52 +1100688{
Nick Piggin31e6b012011-01-07 17:49:52 +1100689 struct dentry *parent = nd->path.dentry;
690
691 BUG_ON(!(nd->flags & LOOKUP_RCU));
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700692
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700693 nd->flags &= ~LOOKUP_RCU;
Al Viro79733872015-05-09 12:55:43 -0400694 if (unlikely(!legitimize_links(nd)))
695 goto out2;
696 if (unlikely(!legitimize_mnt(nd->path.mnt, nd->m_seq)))
697 goto out2;
698 if (unlikely(!lockref_get_not_dead(&parent->d_lockref)))
699 goto out1;
Al Viro48a066e2013-09-29 22:06:07 -0400700
Linus Torvalds15570082013-09-02 11:38:06 -0700701 /*
702 * For a negative lookup, the lookup sequence point is the parents
703 * sequence point, and it only needs to revalidate the parent dentry.
704 *
705 * For a positive lookup, we need to move both the parent and the
706 * dentry from the RCU domain to be properly refcounted. And the
707 * sequence number in the dentry validates *both* dentry counters,
708 * since we checked the sequence number of the parent after we got
709 * the child sequence number. So we know the parent must still
710 * be valid if the child sequence number is still valid.
711 */
Al Viro19660af2011-03-25 10:32:48 -0400712 if (!dentry) {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700713 if (read_seqcount_retry(&parent->d_seq, nd->seq))
714 goto out;
Al Viro19660af2011-03-25 10:32:48 -0400715 BUG_ON(nd->inode != parent->d_inode);
716 } else {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700717 if (!lockref_get_not_dead(&dentry->d_lockref))
718 goto out;
Al Viro6e9918b2015-05-05 09:26:05 -0400719 if (read_seqcount_retry(&dentry->d_seq, seq))
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700720 goto drop_dentry;
Al Viro19660af2011-03-25 10:32:48 -0400721 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700722
723 /*
724 * Sequence counts matched. Now make sure that the root is
725 * still valid and get it if required.
726 */
727 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro5a8d87e2015-05-12 00:10:18 -0400728 if (unlikely(!legitimize_path(nd, &nd->root, nd->root_seq))) {
729 rcu_read_unlock();
730 dput(dentry);
731 return -ECHILD;
Al Viro79733872015-05-09 12:55:43 -0400732 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100733 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100734
Al Viro8b61e742013-11-08 12:45:01 -0500735 rcu_read_unlock();
Nick Piggin31e6b012011-01-07 17:49:52 +1100736 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400737
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700738drop_dentry:
Al Viro8b61e742013-11-08 12:45:01 -0500739 rcu_read_unlock();
Linus Torvalds15570082013-09-02 11:38:06 -0700740 dput(dentry);
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700741 goto drop_root_mnt;
Al Viro79733872015-05-09 12:55:43 -0400742out2:
743 nd->path.mnt = NULL;
744out1:
745 nd->path.dentry = NULL;
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700746out:
Al Viro8b61e742013-11-08 12:45:01 -0500747 rcu_read_unlock();
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700748drop_root_mnt:
749 if (!(nd->flags & LOOKUP_ROOT))
750 nd->root.mnt = NULL;
Nick Piggin31e6b012011-01-07 17:49:52 +1100751 return -ECHILD;
752}
753
Al Viro79733872015-05-09 12:55:43 -0400754static int unlazy_link(struct nameidata *nd, struct path *link, unsigned seq)
755{
756 if (unlikely(!legitimize_path(nd, link, seq))) {
757 drop_links(nd);
758 nd->depth = 0;
759 nd->flags &= ~LOOKUP_RCU;
760 nd->path.mnt = NULL;
761 nd->path.dentry = NULL;
762 if (!(nd->flags & LOOKUP_ROOT))
763 nd->root.mnt = NULL;
764 rcu_read_unlock();
765 } else if (likely(unlazy_walk(nd, NULL, 0)) == 0) {
766 return 0;
767 }
768 path_put(link);
769 return -ECHILD;
770}
771
Al Viro4ce16ef32012-06-10 16:10:59 -0400772static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
Nick Piggin34286d62011-01-07 17:49:57 +1100773{
Al Viro4ce16ef32012-06-10 16:10:59 -0400774 return dentry->d_op->d_revalidate(dentry, flags);
Nick Piggin34286d62011-01-07 17:49:57 +1100775}
776
Al Viro9f1fafe2011-03-25 11:00:12 -0400777/**
778 * complete_walk - successful completion of path walk
779 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500780 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400781 * If we had been in RCU mode, drop out of it and legitimize nd->path.
782 * Revalidate the final result, unless we'd already done that during
783 * the path walk or the filesystem doesn't ask for it. Return 0 on
784 * success, -error on failure. In case of failure caller does not
785 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500786 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400787static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500788{
Al Viro16c2cd72011-02-22 15:50:10 -0500789 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500790 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500791
Al Viro9f1fafe2011-03-25 11:00:12 -0400792 if (nd->flags & LOOKUP_RCU) {
Al Viro9f1fafe2011-03-25 11:00:12 -0400793 if (!(nd->flags & LOOKUP_ROOT))
794 nd->root.mnt = NULL;
Al Viro6e9918b2015-05-05 09:26:05 -0400795 if (unlikely(unlazy_walk(nd, NULL, 0)))
Al Viro48a066e2013-09-29 22:06:07 -0400796 return -ECHILD;
Al Viro9f1fafe2011-03-25 11:00:12 -0400797 }
798
Al Viro16c2cd72011-02-22 15:50:10 -0500799 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500800 return 0;
801
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500802 if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
Al Viro16c2cd72011-02-22 15:50:10 -0500803 return 0;
804
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500805 status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
Jeff Layton39159de2009-12-07 12:01:50 -0500806 if (status > 0)
807 return 0;
808
Al Viro16c2cd72011-02-22 15:50:10 -0500809 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500810 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500811
Jeff Layton39159de2009-12-07 12:01:50 -0500812 return status;
813}
814
Al Viro18d8c862015-05-12 16:32:34 -0400815static void set_root(struct nameidata *nd)
Al Viro2a737872009-04-07 11:49:53 -0400816{
Al Viro7bd88372014-09-13 21:55:46 -0400817 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100818
Al Viro9e6697e2015-12-05 20:07:21 -0500819 if (nd->flags & LOOKUP_RCU) {
820 unsigned seq;
821
822 do {
823 seq = read_seqcount_begin(&fs->seq);
824 nd->root = fs->root;
825 nd->root_seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
826 } while (read_seqcount_retry(&fs->seq, seq));
827 } else {
828 get_fs_root(fs, &nd->root);
829 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100830}
831
Jan Blunck1d957f92008-02-14 19:34:35 -0800832static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700833{
834 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800835 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700836 mntput(path->mnt);
837}
838
Nick Piggin7b9337a2011-01-14 08:42:43 +0000839static inline void path_to_nameidata(const struct path *path,
840 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700841{
Nick Piggin31e6b012011-01-07 17:49:52 +1100842 if (!(nd->flags & LOOKUP_RCU)) {
843 dput(nd->path.dentry);
844 if (nd->path.mnt != path->mnt)
845 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800846 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100847 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800848 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700849}
850
Al Viro248fb5b2015-12-05 20:51:58 -0500851static int nd_jump_root(struct nameidata *nd)
852{
853 if (nd->flags & LOOKUP_RCU) {
854 struct dentry *d;
855 nd->path = nd->root;
856 d = nd->path.dentry;
857 nd->inode = d->d_inode;
858 nd->seq = nd->root_seq;
859 if (unlikely(read_seqcount_retry(&d->d_seq, nd->seq)))
860 return -ECHILD;
861 } else {
862 path_put(&nd->path);
863 nd->path = nd->root;
864 path_get(&nd->path);
865 nd->inode = nd->path.dentry->d_inode;
866 }
867 nd->flags |= LOOKUP_JUMPED;
868 return 0;
869}
870
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400871/*
Al Viro6b255392015-11-17 10:20:54 -0500872 * Helper to directly jump to a known parsed path from ->get_link,
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400873 * caller must have taken a reference to path beforehand.
874 */
Al Viro6e771372015-05-02 13:37:52 -0400875void nd_jump_link(struct path *path)
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400876{
Al Viro6e771372015-05-02 13:37:52 -0400877 struct nameidata *nd = current->nameidata;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400878 path_put(&nd->path);
879
880 nd->path = *path;
881 nd->inode = nd->path.dentry->d_inode;
882 nd->flags |= LOOKUP_JUMPED;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400883}
884
Al Virob9ff4422015-05-02 20:19:23 -0400885static inline void put_link(struct nameidata *nd)
Al Viro574197e2011-03-14 22:20:34 -0400886{
Al Viro21c30032015-05-03 21:06:24 -0400887 struct saved *last = nd->stack + --nd->depth;
Al Virofceef392015-12-29 15:58:39 -0500888 do_delayed_call(&last->done);
Al Viro6548fae2015-05-07 20:32:22 -0400889 if (!(nd->flags & LOOKUP_RCU))
890 path_put(&last->link);
Al Viro574197e2011-03-14 22:20:34 -0400891}
892
Linus Torvalds561ec642012-10-26 10:05:07 -0700893int sysctl_protected_symlinks __read_mostly = 0;
894int sysctl_protected_hardlinks __read_mostly = 0;
Salvatore Mesoraca0c41bee2018-08-23 17:00:35 -0700895int sysctl_protected_fifos __read_mostly;
896int sysctl_protected_regular __read_mostly;
Kees Cook800179c2012-07-25 17:29:07 -0700897
898/**
899 * may_follow_link - Check symlink following for unsafe situations
Randy Dunlap55852632012-08-18 17:39:25 -0700900 * @nd: nameidata pathwalk data
Kees Cook800179c2012-07-25 17:29:07 -0700901 *
902 * In the case of the sysctl_protected_symlinks sysctl being enabled,
903 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
904 * in a sticky world-writable directory. This is to protect privileged
905 * processes from failing races against path names that may change out
906 * from under them by way of other users creating malicious symlinks.
907 * It will permit symlinks to be followed only when outside a sticky
908 * world-writable directory, or when the uid of the symlink and follower
909 * match, or when the directory owner matches the symlink's owner.
910 *
911 * Returns 0 if following the symlink is allowed, -ve on error.
912 */
Al Virofec2fa22015-05-06 15:58:18 -0400913static inline int may_follow_link(struct nameidata *nd)
Kees Cook800179c2012-07-25 17:29:07 -0700914{
915 const struct inode *inode;
916 const struct inode *parent;
Seth Forshee2d7f9e22016-04-26 14:36:23 -0500917 kuid_t puid;
Kees Cook800179c2012-07-25 17:29:07 -0700918
919 if (!sysctl_protected_symlinks)
920 return 0;
921
922 /* Allowed if owner and follower match. */
Al Virofceef392015-12-29 15:58:39 -0500923 inode = nd->link_inode;
Eric W. Biederman81abe272012-08-03 09:38:08 -0700924 if (uid_eq(current_cred()->fsuid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700925 return 0;
926
927 /* Allowed if parent directory not sticky and world-writable. */
Al Viroaa65fa32015-08-04 23:23:50 -0400928 parent = nd->inode;
Kees Cook800179c2012-07-25 17:29:07 -0700929 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
930 return 0;
931
932 /* Allowed if parent directory and link owner match. */
Seth Forshee2d7f9e22016-04-26 14:36:23 -0500933 puid = parent->i_uid;
934 if (uid_valid(puid) && uid_eq(puid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700935 return 0;
936
Al Viro319565022015-05-07 20:37:40 -0400937 if (nd->flags & LOOKUP_RCU)
938 return -ECHILD;
939
Al Viro1cf26652015-05-06 16:01:56 -0400940 audit_log_link_denied("follow_link", &nd->stack[0].link);
Kees Cook800179c2012-07-25 17:29:07 -0700941 return -EACCES;
942}
943
944/**
945 * safe_hardlink_source - Check for safe hardlink conditions
946 * @inode: the source inode to hardlink from
947 *
948 * Return false if at least one of the following conditions:
949 * - inode is not a regular file
950 * - inode is setuid
951 * - inode is setgid and group-exec
952 * - access failure for read and write
953 *
954 * Otherwise returns true.
955 */
956static bool safe_hardlink_source(struct inode *inode)
957{
958 umode_t mode = inode->i_mode;
959
960 /* Special files should not get pinned to the filesystem. */
961 if (!S_ISREG(mode))
962 return false;
963
964 /* Setuid files should not get pinned to the filesystem. */
965 if (mode & S_ISUID)
966 return false;
967
968 /* Executable setgid files should not get pinned to the filesystem. */
969 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
970 return false;
971
972 /* Hardlinking to unreadable or unwritable sources is dangerous. */
973 if (inode_permission(inode, MAY_READ | MAY_WRITE))
974 return false;
975
976 return true;
977}
978
979/**
980 * may_linkat - Check permissions for creating a hardlink
981 * @link: the source to hardlink from
982 *
983 * Block hardlink when all of:
984 * - sysctl_protected_hardlinks enabled
985 * - fsuid does not match inode
986 * - hardlink source is unsafe (see safe_hardlink_source() above)
Dirk Steinmetzf2ca3792015-10-20 16:09:19 +0200987 * - not CAP_FOWNER in a namespace with the inode owner uid mapped
Kees Cook800179c2012-07-25 17:29:07 -0700988 *
989 * Returns 0 if successful, -ve on error.
990 */
991static int may_linkat(struct path *link)
992{
Kees Cook800179c2012-07-25 17:29:07 -0700993 struct inode *inode;
994
995 if (!sysctl_protected_hardlinks)
996 return 0;
997
Kees Cook800179c2012-07-25 17:29:07 -0700998 inode = link->dentry->d_inode;
999
1000 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
1001 * otherwise, it must be a safe source.
1002 */
Dirk Steinmetzf2ca3792015-10-20 16:09:19 +02001003 if (inode_owner_or_capable(inode) || safe_hardlink_source(inode))
Kees Cook800179c2012-07-25 17:29:07 -07001004 return 0;
1005
Kees Cooka51d9ea2012-07-25 17:29:08 -07001006 audit_log_link_denied("linkat", link);
Kees Cook800179c2012-07-25 17:29:07 -07001007 return -EPERM;
1008}
1009
Salvatore Mesoraca0c41bee2018-08-23 17:00:35 -07001010/**
1011 * may_create_in_sticky - Check whether an O_CREAT open in a sticky directory
1012 * should be allowed, or not, on files that already
1013 * exist.
Al Viro51772992020-01-26 09:29:34 -05001014 * @dir_mode: mode bits of directory
1015 * @dir_uid: owner of directory
Salvatore Mesoraca0c41bee2018-08-23 17:00:35 -07001016 * @inode: the inode of the file to open
1017 *
1018 * Block an O_CREAT open of a FIFO (or a regular file) when:
1019 * - sysctl_protected_fifos (or sysctl_protected_regular) is enabled
1020 * - the file already exists
1021 * - we are in a sticky directory
1022 * - we don't own the file
1023 * - the owner of the directory doesn't own the file
1024 * - the directory is world writable
1025 * If the sysctl_protected_fifos (or sysctl_protected_regular) is set to 2
1026 * the directory doesn't have to be world writable: being group writable will
1027 * be enough.
1028 *
1029 * Returns 0 if the open is allowed, -ve on error.
1030 */
Al Viro51772992020-01-26 09:29:34 -05001031static int may_create_in_sticky(umode_t dir_mode, kuid_t dir_uid,
Salvatore Mesoraca0c41bee2018-08-23 17:00:35 -07001032 struct inode * const inode)
1033{
1034 if ((!sysctl_protected_fifos && S_ISFIFO(inode->i_mode)) ||
1035 (!sysctl_protected_regular && S_ISREG(inode->i_mode)) ||
Al Viro51772992020-01-26 09:29:34 -05001036 likely(!(dir_mode & S_ISVTX)) ||
1037 uid_eq(inode->i_uid, dir_uid) ||
Salvatore Mesoraca0c41bee2018-08-23 17:00:35 -07001038 uid_eq(current_fsuid(), inode->i_uid))
1039 return 0;
1040
Al Viro51772992020-01-26 09:29:34 -05001041 if (likely(dir_mode & 0002) ||
1042 (dir_mode & 0020 &&
Salvatore Mesoraca0c41bee2018-08-23 17:00:35 -07001043 ((sysctl_protected_fifos >= 2 && S_ISFIFO(inode->i_mode)) ||
1044 (sysctl_protected_regular >= 2 && S_ISREG(inode->i_mode))))) {
1045 return -EACCES;
1046 }
1047 return 0;
1048}
1049
Al Viro3b2e7f72015-04-19 00:53:50 -04001050static __always_inline
1051const char *get_link(struct nameidata *nd)
Ian Kent051d3812006-03-27 01:14:53 -08001052{
Al Viroab104922015-05-10 11:50:01 -04001053 struct saved *last = nd->stack + nd->depth - 1;
Al Viro1cf26652015-05-06 16:01:56 -04001054 struct dentry *dentry = last->link.dentry;
Al Virofceef392015-12-29 15:58:39 -05001055 struct inode *inode = nd->link_inode;
Al Viro6d7b5aa2012-06-10 04:15:17 -04001056 int error;
Al Viro0a959df2015-04-18 18:23:41 -04001057 const char *res;
Ian Kent051d3812006-03-27 01:14:53 -08001058
NeilBrown8fa9dd22015-03-23 13:37:40 +11001059 if (!(nd->flags & LOOKUP_RCU)) {
1060 touch_atime(&last->link);
1061 cond_resched();
Miklos Szeredi598e3c82016-09-16 12:44:20 +02001062 } else if (atime_needs_update_rcu(&last->link, inode)) {
NeilBrown8fa9dd22015-03-23 13:37:40 +11001063 if (unlikely(unlazy_walk(nd, NULL, 0)))
1064 return ERR_PTR(-ECHILD);
1065 touch_atime(&last->link);
1066 }
1067
NeilBrownbda0be72015-03-23 13:37:39 +11001068 error = security_inode_follow_link(dentry, inode,
1069 nd->flags & LOOKUP_RCU);
1070 if (unlikely(error))
Al Viro6920a442015-05-10 10:43:46 -04001071 return ERR_PTR(error);
Al Viro36f3b4f2011-02-22 21:24:38 -05001072
Al Viro86acdca12009-12-22 23:45:11 -05001073 nd->last_type = LAST_BIND;
Al Virod4dee482015-04-30 20:08:02 -04001074 res = inode->i_link;
1075 if (!res) {
Al Virofceef392015-12-29 15:58:39 -05001076 const char * (*get)(struct dentry *, struct inode *,
1077 struct delayed_call *);
1078 get = inode->i_op->get_link;
Al Viro8c1b4562015-05-09 18:15:21 -04001079 if (nd->flags & LOOKUP_RCU) {
Al Virofceef392015-12-29 15:58:39 -05001080 res = get(NULL, inode, &last->done);
Al Viro6b255392015-11-17 10:20:54 -05001081 if (res == ERR_PTR(-ECHILD)) {
1082 if (unlikely(unlazy_walk(nd, NULL, 0)))
1083 return ERR_PTR(-ECHILD);
Al Virofceef392015-12-29 15:58:39 -05001084 res = get(dentry, inode, &last->done);
Al Viro6b255392015-11-17 10:20:54 -05001085 }
1086 } else {
Al Virofceef392015-12-29 15:58:39 -05001087 res = get(dentry, inode, &last->done);
Al Viro8c1b4562015-05-09 18:15:21 -04001088 }
Al Virofceef392015-12-29 15:58:39 -05001089 if (IS_ERR_OR_NULL(res))
Al Virofab51e82015-05-10 11:01:00 -04001090 return res;
Ian Kent051d3812006-03-27 01:14:53 -08001091 }
Al Virofab51e82015-05-10 11:01:00 -04001092 if (*res == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05001093 if (!nd->root.mnt)
1094 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05001095 if (unlikely(nd_jump_root(nd)))
1096 return ERR_PTR(-ECHILD);
Al Virofab51e82015-05-10 11:01:00 -04001097 while (unlikely(*++res == '/'))
1098 ;
1099 }
1100 if (!*res)
1101 res = NULL;
Al Viro0a959df2015-04-18 18:23:41 -04001102 return res;
1103}
Al Viro6d7b5aa2012-06-10 04:15:17 -04001104
David Howellsf015f1262012-06-25 12:55:28 +01001105/*
1106 * follow_up - Find the mountpoint of path's vfsmount
1107 *
1108 * Given a path, find the mountpoint of its source file system.
1109 * Replace @path with the path of the mountpoint in the parent mount.
1110 * Up is towards /.
1111 *
1112 * Return 1 if we went up a level and 0 if we were already at the
1113 * root.
1114 */
Al Virobab77eb2009-04-18 03:26:48 -04001115int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
Al Viro0714a532011-11-24 22:19:58 -05001117 struct mount *mnt = real_mount(path->mnt);
1118 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +10001120
Al Viro48a066e2013-09-29 22:06:07 -04001121 read_seqlock_excl(&mount_lock);
Al Viro0714a532011-11-24 22:19:58 -05001122 parent = mnt->mnt_parent;
Al Viro3c0a6162012-07-18 17:32:50 +04001123 if (parent == mnt) {
Al Viro48a066e2013-09-29 22:06:07 -04001124 read_sequnlock_excl(&mount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 return 0;
1126 }
Al Viro0714a532011-11-24 22:19:58 -05001127 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -05001128 mountpoint = dget(mnt->mnt_mountpoint);
Al Viro48a066e2013-09-29 22:06:07 -04001129 read_sequnlock_excl(&mount_lock);
Al Virobab77eb2009-04-18 03:26:48 -04001130 dput(path->dentry);
1131 path->dentry = mountpoint;
1132 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -05001133 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 return 1;
1135}
Al Viro4d359502014-03-14 12:20:17 -04001136EXPORT_SYMBOL(follow_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Nick Pigginb5c84bf2011-01-07 17:49:38 +11001138/*
David Howells9875cf82011-01-14 18:45:21 +00001139 * Perform an automount
1140 * - return -EISDIR to tell follow_managed() to stop and return the path we
1141 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 */
NeilBrown756daf22015-03-23 13:37:38 +11001143static int follow_automount(struct path *path, struct nameidata *nd,
David Howells9875cf82011-01-14 18:45:21 +00001144 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +11001145{
David Howells9875cf82011-01-14 18:45:21 +00001146 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +00001147 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001148
David Howells9875cf82011-01-14 18:45:21 +00001149 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
1150 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -07001151
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001152 /* We don't want to mount if someone's just doing a stat -
1153 * unless they're stat'ing a directory and appended a '/' to
1154 * the name.
1155 *
1156 * We do, however, want to mount if someone wants to open or
1157 * create a file of any type under the mountpoint, wants to
1158 * traverse through the mountpoint or wants to open the
1159 * mounted directory. Also, autofs may mark negative dentries
1160 * as being automount points. These will need the attentions
1161 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +00001162 */
NeilBrown756daf22015-03-23 13:37:38 +11001163 if (!(nd->flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
1164 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001165 path->dentry->d_inode)
1166 return -EISDIR;
1167
NeilBrown756daf22015-03-23 13:37:38 +11001168 nd->total_link_count++;
1169 if (nd->total_link_count >= 40)
David Howells9875cf82011-01-14 18:45:21 +00001170 return -ELOOP;
1171
1172 mnt = path->dentry->d_op->d_automount(path);
1173 if (IS_ERR(mnt)) {
1174 /*
1175 * The filesystem is allowed to return -EISDIR here to indicate
1176 * it doesn't want to automount. For instance, autofs would do
1177 * this so that its userspace daemon can mount on this dentry.
1178 *
1179 * However, we can only permit this if it's a terminal point in
1180 * the path being looked up; if it wasn't then the remainder of
1181 * the path is inaccessible and we should say so.
1182 */
NeilBrown756daf22015-03-23 13:37:38 +11001183 if (PTR_ERR(mnt) == -EISDIR && (nd->flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +00001184 return -EREMOTE;
1185 return PTR_ERR(mnt);
1186 }
David Howellsea5b7782011-01-14 19:10:03 +00001187
David Howells9875cf82011-01-14 18:45:21 +00001188 if (!mnt) /* mount collision */
1189 return 0;
1190
Al Viro8aef1882011-06-16 15:10:06 +01001191 if (!*need_mntput) {
1192 /* lock_mount() may release path->mnt on error */
1193 mntget(path->mnt);
1194 *need_mntput = true;
1195 }
Al Viro19a167a2011-01-17 01:35:23 -05001196 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +00001197
David Howellsea5b7782011-01-14 19:10:03 +00001198 switch (err) {
1199 case -EBUSY:
1200 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -05001201 return 0;
David Howellsea5b7782011-01-14 19:10:03 +00001202 case 0:
Al Viro8aef1882011-06-16 15:10:06 +01001203 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +00001204 path->mnt = mnt;
1205 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +00001206 return 0;
Al Viro19a167a2011-01-17 01:35:23 -05001207 default:
1208 return err;
David Howellsea5b7782011-01-14 19:10:03 +00001209 }
Al Viro19a167a2011-01-17 01:35:23 -05001210
David Howells9875cf82011-01-14 18:45:21 +00001211}
1212
1213/*
1214 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +00001215 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +00001216 * - Flagged as mountpoint
1217 * - Flagged as automount point
1218 *
1219 * This may only be called in refwalk mode.
1220 *
1221 * Serialization is taken care of in namespace.c
1222 */
NeilBrown756daf22015-03-23 13:37:38 +11001223static int follow_managed(struct path *path, struct nameidata *nd)
David Howells9875cf82011-01-14 18:45:21 +00001224{
Al Viro8aef1882011-06-16 15:10:06 +01001225 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +00001226 unsigned managed;
1227 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +01001228 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +00001229
1230 /* Given that we're not holding a lock here, we retain the value in a
1231 * local variable for each dentry as we look at it so that we don't see
1232 * the components of that value change under us */
1233 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1234 managed &= DCACHE_MANAGED_DENTRY,
1235 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +00001236 /* Allow the filesystem to manage the transit without i_mutex
1237 * being held. */
1238 if (managed & DCACHE_MANAGE_TRANSIT) {
1239 BUG_ON(!path->dentry->d_op);
1240 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -04001241 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001242 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001243 break;
David Howellscc53ce52011-01-14 18:45:26 +00001244 }
1245
David Howells9875cf82011-01-14 18:45:21 +00001246 /* Transit to a mounted filesystem. */
1247 if (managed & DCACHE_MOUNTED) {
1248 struct vfsmount *mounted = lookup_mnt(path);
1249 if (mounted) {
1250 dput(path->dentry);
1251 if (need_mntput)
1252 mntput(path->mnt);
1253 path->mnt = mounted;
1254 path->dentry = dget(mounted->mnt_root);
1255 need_mntput = true;
1256 continue;
1257 }
1258
1259 /* Something is mounted on this dentry in another
1260 * namespace and/or whatever was mounted there in this
Al Viro48a066e2013-09-29 22:06:07 -04001261 * namespace got unmounted before lookup_mnt() could
1262 * get it */
David Howells9875cf82011-01-14 18:45:21 +00001263 }
1264
1265 /* Handle an automount point */
1266 if (managed & DCACHE_NEED_AUTOMOUNT) {
NeilBrown756daf22015-03-23 13:37:38 +11001267 ret = follow_automount(path, nd, &need_mntput);
David Howells9875cf82011-01-14 18:45:21 +00001268 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001269 break;
David Howells9875cf82011-01-14 18:45:21 +00001270 continue;
1271 }
1272
1273 /* We didn't change the current path point */
1274 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 }
Al Viro8aef1882011-06-16 15:10:06 +01001276
1277 if (need_mntput && path->mnt == mnt)
1278 mntput(path->mnt);
Al Viroe9742b52016-03-05 22:04:59 -05001279 if (ret == -EISDIR || !ret)
1280 ret = 1;
Al Viro84027522015-04-22 10:30:08 -04001281 if (need_mntput)
1282 nd->flags |= LOOKUP_JUMPED;
1283 if (unlikely(ret < 0))
1284 path_put_conditional(path, nd);
1285 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286}
1287
David Howellscc53ce52011-01-14 18:45:26 +00001288int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289{
1290 struct vfsmount *mounted;
1291
Al Viro1c755af2009-04-18 14:06:57 -04001292 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -04001294 dput(path->dentry);
1295 mntput(path->mnt);
1296 path->mnt = mounted;
1297 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 return 1;
1299 }
1300 return 0;
1301}
Al Viro4d359502014-03-14 12:20:17 -04001302EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
NeilBrownb8faf032014-08-04 17:06:29 +10001304static inline int managed_dentry_rcu(struct dentry *dentry)
Ian Kent62a73752011-03-25 01:51:02 +08001305{
NeilBrownb8faf032014-08-04 17:06:29 +10001306 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
1307 dentry->d_op->d_manage(dentry, true) : 0;
Ian Kent62a73752011-03-25 01:51:02 +08001308}
1309
David Howells9875cf82011-01-14 18:45:21 +00001310/*
Al Viro287548e2011-05-27 06:50:06 -04001311 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1312 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +00001313 */
1314static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro254cf582015-05-05 09:40:46 -04001315 struct inode **inode, unsigned *seqp)
David Howells9875cf82011-01-14 18:45:21 +00001316{
Ian Kent62a73752011-03-25 01:51:02 +08001317 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -05001318 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +08001319 /*
1320 * Don't forget we might have a non-mountpoint managed dentry
1321 * that wants to block transit.
1322 */
NeilBrownb8faf032014-08-04 17:06:29 +10001323 switch (managed_dentry_rcu(path->dentry)) {
1324 case -ECHILD:
1325 default:
David Howellsab909112011-01-14 18:46:51 +00001326 return false;
NeilBrownb8faf032014-08-04 17:06:29 +10001327 case -EISDIR:
1328 return true;
1329 case 0:
1330 break;
1331 }
Ian Kent62a73752011-03-25 01:51:02 +08001332
1333 if (!d_mountpoint(path->dentry))
NeilBrownb8faf032014-08-04 17:06:29 +10001334 return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Ian Kent62a73752011-03-25 01:51:02 +08001335
Al Viro474279d2013-10-01 16:11:26 -04001336 mounted = __lookup_mnt(path->mnt, path->dentry);
David Howells9875cf82011-01-14 18:45:21 +00001337 if (!mounted)
1338 break;
Al Viroc7105362011-11-24 18:22:03 -05001339 path->mnt = &mounted->mnt;
1340 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +00001341 nd->flags |= LOOKUP_JUMPED;
Al Viro254cf582015-05-05 09:40:46 -04001342 *seqp = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -07001343 /*
1344 * Update the inode too. We don't need to re-check the
1345 * dentry sequence number here after this d_inode read,
1346 * because a mount-point is always pinned.
1347 */
1348 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +00001349 }
Al Virof5be3e29122014-09-13 21:50:45 -04001350 return !read_seqretry(&mount_lock, nd->m_seq) &&
NeilBrownb8faf032014-08-04 17:06:29 +10001351 !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Al Viro287548e2011-05-27 06:50:06 -04001352}
1353
Nick Piggin31e6b012011-01-07 17:49:52 +11001354static int follow_dotdot_rcu(struct nameidata *nd)
1355{
Al Viro4023bfc2014-09-13 21:59:43 -04001356 struct inode *inode = nd->inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001357
David Howells9875cf82011-01-14 18:45:21 +00001358 while (1) {
Al Viroaed434a2015-05-12 12:22:47 -04001359 if (path_equal(&nd->path, &nd->root))
Nick Piggin31e6b012011-01-07 17:49:52 +11001360 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001361 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1362 struct dentry *old = nd->path.dentry;
1363 struct dentry *parent = old->d_parent;
1364 unsigned seq;
1365
Al Viro4023bfc2014-09-13 21:59:43 -04001366 inode = parent->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001367 seq = read_seqcount_begin(&parent->d_seq);
Al Viroaed434a2015-05-12 12:22:47 -04001368 if (unlikely(read_seqcount_retry(&old->d_seq, nd->seq)))
1369 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001370 nd->path.dentry = parent;
1371 nd->seq = seq;
Eric W. Biederman397d4252015-08-15 20:27:13 -05001372 if (unlikely(!path_connected(&nd->path)))
Aleksa Sarai2739e5a2019-12-07 01:13:26 +11001373 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001374 break;
Al Viroaed434a2015-05-12 12:22:47 -04001375 } else {
1376 struct mount *mnt = real_mount(nd->path.mnt);
1377 struct mount *mparent = mnt->mnt_parent;
1378 struct dentry *mountpoint = mnt->mnt_mountpoint;
1379 struct inode *inode2 = mountpoint->d_inode;
1380 unsigned seq = read_seqcount_begin(&mountpoint->d_seq);
1381 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1382 return -ECHILD;
1383 if (&mparent->mnt == nd->path.mnt)
1384 break;
1385 /* we know that mountpoint was pinned */
1386 nd->path.dentry = mountpoint;
1387 nd->path.mnt = &mparent->mnt;
1388 inode = inode2;
1389 nd->seq = seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001390 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001391 }
Al Viroaed434a2015-05-12 12:22:47 -04001392 while (unlikely(d_mountpoint(nd->path.dentry))) {
Al Virob37199e2014-03-20 15:18:22 -04001393 struct mount *mounted;
1394 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
Al Viroaed434a2015-05-12 12:22:47 -04001395 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1396 return -ECHILD;
Al Virob37199e2014-03-20 15:18:22 -04001397 if (!mounted)
1398 break;
1399 nd->path.mnt = &mounted->mnt;
1400 nd->path.dentry = mounted->mnt.mnt_root;
Al Viro4023bfc2014-09-13 21:59:43 -04001401 inode = nd->path.dentry->d_inode;
Al Virob37199e2014-03-20 15:18:22 -04001402 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Virob37199e2014-03-20 15:18:22 -04001403 }
Al Viro4023bfc2014-09-13 21:59:43 -04001404 nd->inode = inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001405 return 0;
1406}
1407
David Howells9875cf82011-01-14 18:45:21 +00001408/*
David Howellscc53ce52011-01-14 18:45:26 +00001409 * Follow down to the covering mount currently visible to userspace. At each
1410 * point, the filesystem owning that dentry may be queried as to whether the
1411 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001412 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001413int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001414{
1415 unsigned managed;
1416 int ret;
1417
1418 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1419 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1420 /* Allow the filesystem to manage the transit without i_mutex
1421 * being held.
1422 *
1423 * We indicate to the filesystem if someone is trying to mount
1424 * something here. This gives autofs the chance to deny anyone
1425 * other than its daemon the right to mount on its
1426 * superstructure.
1427 *
1428 * The filesystem may sleep at this point.
1429 */
1430 if (managed & DCACHE_MANAGE_TRANSIT) {
1431 BUG_ON(!path->dentry->d_op);
1432 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001433 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001434 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001435 if (ret < 0)
1436 return ret == -EISDIR ? 0 : ret;
1437 }
1438
1439 /* Transit to a mounted filesystem. */
1440 if (managed & DCACHE_MOUNTED) {
1441 struct vfsmount *mounted = lookup_mnt(path);
1442 if (!mounted)
1443 break;
1444 dput(path->dentry);
1445 mntput(path->mnt);
1446 path->mnt = mounted;
1447 path->dentry = dget(mounted->mnt_root);
1448 continue;
1449 }
1450
1451 /* Don't handle automount points here */
1452 break;
1453 }
1454 return 0;
1455}
Al Viro4d359502014-03-14 12:20:17 -04001456EXPORT_SYMBOL(follow_down);
David Howellscc53ce52011-01-14 18:45:26 +00001457
1458/*
David Howells9875cf82011-01-14 18:45:21 +00001459 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1460 */
1461static void follow_mount(struct path *path)
1462{
1463 while (d_mountpoint(path->dentry)) {
1464 struct vfsmount *mounted = lookup_mnt(path);
1465 if (!mounted)
1466 break;
1467 dput(path->dentry);
1468 mntput(path->mnt);
1469 path->mnt = mounted;
1470 path->dentry = dget(mounted->mnt_root);
1471 }
1472}
1473
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05001474static int path_parent_directory(struct path *path)
1475{
1476 struct dentry *old = path->dentry;
1477 /* rare case of legitimate dget_parent()... */
1478 path->dentry = dget_parent(path->dentry);
1479 dput(old);
1480 if (unlikely(!path_connected(path)))
1481 return -ENOENT;
1482 return 0;
1483}
1484
Eric W. Biederman397d4252015-08-15 20:27:13 -05001485static int follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486{
1487 while(1) {
Al Viro2a737872009-04-07 11:49:53 -04001488 if (nd->path.dentry == nd->root.dentry &&
1489 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 break;
1491 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001492 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05001493 int ret = path_parent_directory(&nd->path);
1494 if (ret)
1495 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 break;
1497 }
Al Viro3088dd72010-01-30 15:47:29 -05001498 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
Al Viro79ed0222009-04-18 13:59:41 -04001501 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001502 nd->inode = nd->path.dentry->d_inode;
Eric W. Biederman397d4252015-08-15 20:27:13 -05001503 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504}
1505
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506/*
Oleg Drokinf4fdace2016-07-07 22:04:04 -04001507 * This looks up the name in dcache and possibly revalidates the found dentry.
1508 * NULL is returned if the dentry does not exist in the cache.
Nick Pigginbaa03892010-08-18 04:37:31 +10001509 */
Al Viroe3c13922016-03-06 14:03:27 -05001510static struct dentry *lookup_dcache(const struct qstr *name,
1511 struct dentry *dir,
Al Viro6c51e512016-03-05 20:09:32 -05001512 unsigned int flags)
Nick Pigginbaa03892010-08-18 04:37:31 +10001513{
Nick Pigginbaa03892010-08-18 04:37:31 +10001514 struct dentry *dentry;
Miklos Szeredibad61182012-03-26 12:54:24 +02001515 int error;
Nick Pigginbaa03892010-08-18 04:37:31 +10001516
Miklos Szeredibad61182012-03-26 12:54:24 +02001517 dentry = d_lookup(dir, name);
1518 if (dentry) {
Jeff Layton39e3c952012-11-28 11:30:53 -05001519 if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
Al Viro201f9562012-06-22 12:42:10 +04001520 error = d_revalidate(dentry, flags);
Miklos Szeredibad61182012-03-26 12:54:24 +02001521 if (unlikely(error <= 0)) {
Al Viro74ff0ff2016-03-05 22:37:46 -05001522 if (!error)
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001523 d_invalidate(dentry);
Al Viro74ff0ff2016-03-05 22:37:46 -05001524 dput(dentry);
1525 return ERR_PTR(error);
Miklos Szeredibad61182012-03-26 12:54:24 +02001526 }
1527 }
1528 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001529 return dentry;
1530}
1531
1532/*
J. Bruce Fields13a2c3b2013-10-23 16:09:16 -04001533 * Call i_op->lookup on the dentry. The dentry must be negative and
1534 * unhashed.
Miklos Szeredibad61182012-03-26 12:54:24 +02001535 *
1536 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001537 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001538static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
Al Viro72bd8662012-06-10 17:17:17 -04001539 unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001540{
Josef Bacik44396f42011-05-31 11:58:49 -04001541 struct dentry *old;
1542
1543 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001544 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001545 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001546 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001547 }
Josef Bacik44396f42011-05-31 11:58:49 -04001548
Al Viro72bd8662012-06-10 17:17:17 -04001549 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001550 if (unlikely(old)) {
1551 dput(dentry);
1552 dentry = old;
1553 }
1554 return dentry;
1555}
1556
Al Viroe3c13922016-03-06 14:03:27 -05001557static struct dentry *__lookup_hash(const struct qstr *name,
Al Viro72bd8662012-06-10 17:17:17 -04001558 struct dentry *base, unsigned int flags)
Al Viroa3255542012-03-30 14:41:51 -04001559{
Al Viro6c51e512016-03-05 20:09:32 -05001560 struct dentry *dentry = lookup_dcache(name, base, flags);
Al Viroa3255542012-03-30 14:41:51 -04001561
Al Viro6c51e512016-03-05 20:09:32 -05001562 if (dentry)
Miklos Szeredibad61182012-03-26 12:54:24 +02001563 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001564
Al Viro6c51e512016-03-05 20:09:32 -05001565 dentry = d_alloc(base, name);
1566 if (unlikely(!dentry))
1567 return ERR_PTR(-ENOMEM);
1568
Al Viro72bd8662012-06-10 17:17:17 -04001569 return lookup_real(base->d_inode, dentry, flags);
Al Viroa3255542012-03-30 14:41:51 -04001570}
1571
Al Viroe97cdc82013-01-24 18:16:00 -05001572static int lookup_fast(struct nameidata *nd,
Al Viro254cf582015-05-05 09:40:46 -04001573 struct path *path, struct inode **inode,
1574 unsigned *seqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
Jan Blunck4ac91372008-02-14 19:34:32 -08001576 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001577 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001578 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001579 int err;
1580
Al Viro3cac2602009-08-13 18:27:43 +04001581 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001582 * Rename seqlock is not required here because in the off chance
Al Viro5d0f49c2016-03-05 21:32:53 -05001583 * of a false negative due to a concurrent rename, the caller is
1584 * going to fall back to non-racy lookup.
Nick Pigginb04f7842010-08-18 04:37:34 +10001585 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001586 if (nd->flags & LOOKUP_RCU) {
1587 unsigned seq;
Al Viro766c4cb2015-05-07 19:24:57 -04001588 bool negative;
Linus Torvaldsda53be12013-05-21 15:22:44 -07001589 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
Al Viro5d0f49c2016-03-05 21:32:53 -05001590 if (unlikely(!dentry)) {
1591 if (unlazy_walk(nd, NULL, 0))
1592 return -ECHILD;
Al Viroe9742b52016-03-05 22:04:59 -05001593 return 0;
Al Viro5d0f49c2016-03-05 21:32:53 -05001594 }
Al Viro5a18fff2011-03-11 04:44:53 -05001595
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001596 /*
1597 * This sequence count validates that the inode matches
1598 * the dentry name information from lookup.
1599 */
David Howells63afdfc2015-05-06 15:59:00 +01001600 *inode = d_backing_inode(dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04001601 negative = d_is_negative(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001602 if (unlikely(read_seqcount_retry(&dentry->d_seq, seq)))
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001603 return -ECHILD;
1604
1605 /*
1606 * This sequence count validates that the parent had no
1607 * changes while we did the lookup of the dentry above.
1608 *
1609 * The memory barrier in read_seqcount_begin of child is
1610 * enough, we can use __read_seqcount_retry here.
1611 */
Al Viro5d0f49c2016-03-05 21:32:53 -05001612 if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq)))
Nick Piggin31e6b012011-01-07 17:49:52 +11001613 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001614
Al Viro254cf582015-05-05 09:40:46 -04001615 *seqp = seq;
Al Viro5d0f49c2016-03-05 21:32:53 -05001616 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
Al Viro4ce16ef32012-06-10 16:10:59 -04001617 status = d_revalidate(dentry, nd->flags);
Al Viro5d0f49c2016-03-05 21:32:53 -05001618 if (unlikely(status <= 0)) {
1619 if (unlazy_walk(nd, dentry, seq))
1620 return -ECHILD;
1621 if (status == -ECHILD)
1622 status = d_revalidate(dentry, nd->flags);
1623 } else {
1624 /*
1625 * Note: do negative dentry check after revalidation in
1626 * case that drops it.
1627 */
1628 if (unlikely(negative))
1629 return -ENOENT;
1630 path->mnt = mnt;
1631 path->dentry = dentry;
1632 if (likely(__follow_mount_rcu(nd, path, inode, seqp)))
Al Viroe9742b52016-03-05 22:04:59 -05001633 return 1;
Al Viro5d0f49c2016-03-05 21:32:53 -05001634 if (unlazy_walk(nd, dentry, seq))
1635 return -ECHILD;
Al Viro24643082011-02-15 01:26:22 -05001636 }
Al Viro5a18fff2011-03-11 04:44:53 -05001637 } else {
Al Viroe97cdc82013-01-24 18:16:00 -05001638 dentry = __d_lookup(parent, &nd->last);
Al Viro5d0f49c2016-03-05 21:32:53 -05001639 if (unlikely(!dentry))
Al Viroe9742b52016-03-05 22:04:59 -05001640 return 0;
Al Viro5d0f49c2016-03-05 21:32:53 -05001641 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
1642 status = d_revalidate(dentry, nd->flags);
Nick Piggin31e6b012011-01-07 17:49:52 +11001643 }
Al Viro5a18fff2011-03-11 04:44:53 -05001644 if (unlikely(status <= 0)) {
Al Viroe9742b52016-03-05 22:04:59 -05001645 if (!status)
Al Viro5d0f49c2016-03-05 21:32:53 -05001646 d_invalidate(dentry);
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001647 dput(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001648 return status;
Al Viro5a18fff2011-03-11 04:44:53 -05001649 }
Al Viro766c4cb2015-05-07 19:24:57 -04001650 if (unlikely(d_is_negative(dentry))) {
1651 dput(dentry);
1652 return -ENOENT;
1653 }
Al Viro5d0f49c2016-03-05 21:32:53 -05001654
David Howells9875cf82011-01-14 18:45:21 +00001655 path->mnt = mnt;
1656 path->dentry = dentry;
NeilBrown756daf22015-03-23 13:37:38 +11001657 err = follow_managed(path, nd);
Al Viroe9742b52016-03-05 22:04:59 -05001658 if (likely(err > 0))
David Howells63afdfc2015-05-06 15:59:00 +01001659 *inode = d_backing_inode(path->dentry);
Al Viro84027522015-04-22 10:30:08 -04001660 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001661}
1662
1663/* Fast lookup failed, do it the slow way */
Al Viroe3c13922016-03-06 14:03:27 -05001664static struct dentry *lookup_slow(const struct qstr *name,
1665 struct dentry *dir,
1666 unsigned int flags)
Miklos Szeredi697f5142012-05-21 17:30:05 +02001667{
Al Viro94bdd652016-04-15 02:42:04 -04001668 struct dentry *dentry = ERR_PTR(-ENOENT), *old;
Al Viro19363862016-04-14 19:33:34 -04001669 struct inode *inode = dir->d_inode;
Al Virod9171b92016-04-15 03:33:13 -04001670 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Al Viro19363862016-04-14 19:33:34 -04001671
Al Viro9902af72016-04-15 15:08:36 -04001672 inode_lock_shared(inode);
Al Viro19363862016-04-14 19:33:34 -04001673 /* Don't go there if it's already dead */
Al Viro94bdd652016-04-15 02:42:04 -04001674 if (unlikely(IS_DEADDIR(inode)))
1675 goto out;
1676again:
Al Virod9171b92016-04-15 03:33:13 -04001677 dentry = d_alloc_parallel(dir, name, &wq);
Al Viro94bdd652016-04-15 02:42:04 -04001678 if (IS_ERR(dentry))
1679 goto out;
1680 if (unlikely(!d_in_lookup(dentry))) {
Al Viro949a8522016-03-06 14:20:52 -05001681 if ((dentry->d_flags & DCACHE_OP_REVALIDATE) &&
1682 !(flags & LOOKUP_NO_REVAL)) {
1683 int error = d_revalidate(dentry, flags);
1684 if (unlikely(error <= 0)) {
Al Viro94bdd652016-04-15 02:42:04 -04001685 if (!error) {
Al Viro949a8522016-03-06 14:20:52 -05001686 d_invalidate(dentry);
Al Viro94bdd652016-04-15 02:42:04 -04001687 dput(dentry);
1688 goto again;
1689 }
Al Viro949a8522016-03-06 14:20:52 -05001690 dput(dentry);
1691 dentry = ERR_PTR(error);
1692 }
1693 }
Al Viro94bdd652016-04-15 02:42:04 -04001694 } else {
1695 old = inode->i_op->lookup(inode, dentry, flags);
1696 d_lookup_done(dentry);
1697 if (unlikely(old)) {
1698 dput(dentry);
1699 dentry = old;
Al Viro949a8522016-03-06 14:20:52 -05001700 }
1701 }
Al Viro94bdd652016-04-15 02:42:04 -04001702out:
Al Viro9902af72016-04-15 15:08:36 -04001703 inode_unlock_shared(inode);
Al Viroe3c13922016-03-06 14:03:27 -05001704 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705}
1706
Al Viro52094c82011-02-21 21:34:47 -05001707static inline int may_lookup(struct nameidata *nd)
1708{
1709 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001710 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001711 if (err != -ECHILD)
1712 return err;
Al Viro6e9918b2015-05-05 09:26:05 -04001713 if (unlazy_walk(nd, NULL, 0))
Al Viro52094c82011-02-21 21:34:47 -05001714 return -ECHILD;
1715 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001716 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001717}
1718
Al Viro9856fa12011-03-04 14:22:06 -05001719static inline int handle_dots(struct nameidata *nd, int type)
1720{
1721 if (type == LAST_DOTDOT) {
Al Viro9e6697e2015-12-05 20:07:21 -05001722 if (!nd->root.mnt)
1723 set_root(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001724 if (nd->flags & LOOKUP_RCU) {
Al Viro70291ae2015-05-04 07:53:00 -04001725 return follow_dotdot_rcu(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001726 } else
Eric W. Biederman397d4252015-08-15 20:27:13 -05001727 return follow_dotdot(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001728 }
1729 return 0;
1730}
1731
Al Viro181548c2015-05-07 19:54:34 -04001732static int pick_link(struct nameidata *nd, struct path *link,
1733 struct inode *inode, unsigned seq)
Al Virod63ff282015-05-04 18:13:23 -04001734{
Al Viro626de992015-05-04 18:26:59 -04001735 int error;
Al Viro1cf26652015-05-06 16:01:56 -04001736 struct saved *last;
NeilBrown756daf22015-03-23 13:37:38 +11001737 if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) {
Al Viro626de992015-05-04 18:26:59 -04001738 path_to_nameidata(link, nd);
1739 return -ELOOP;
1740 }
Al Virobc40aee2015-05-09 13:04:24 -04001741 if (!(nd->flags & LOOKUP_RCU)) {
Al Viro79733872015-05-09 12:55:43 -04001742 if (link->mnt == nd->path.mnt)
1743 mntget(link->mnt);
Al Virod63ff282015-05-04 18:13:23 -04001744 }
Al Viro626de992015-05-04 18:26:59 -04001745 error = nd_alloc_stack(nd);
1746 if (unlikely(error)) {
Al Virobc40aee2015-05-09 13:04:24 -04001747 if (error == -ECHILD) {
1748 if (unlikely(unlazy_link(nd, link, seq)))
1749 return -ECHILD;
1750 error = nd_alloc_stack(nd);
1751 }
1752 if (error) {
1753 path_put(link);
1754 return error;
1755 }
Al Viro626de992015-05-04 18:26:59 -04001756 }
1757
Al Viroab104922015-05-10 11:50:01 -04001758 last = nd->stack + nd->depth++;
Al Viro1cf26652015-05-06 16:01:56 -04001759 last->link = *link;
Al Virofceef392015-12-29 15:58:39 -05001760 clear_delayed_call(&last->done);
1761 nd->link_inode = inode;
Al Viro0450b2d2015-05-08 13:23:53 -04001762 last->seq = seq;
Al Virod63ff282015-05-04 18:13:23 -04001763 return 1;
1764}
1765
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001766/*
1767 * Do we need to follow links? We _really_ want to be able
1768 * to do this check without having to look at inode->i_op,
1769 * so we keep a cache of "no, this doesn't need follow_link"
1770 * for the common case.
1771 */
Al Viro254cf582015-05-05 09:40:46 -04001772static inline int should_follow_link(struct nameidata *nd, struct path *link,
Al Viro181548c2015-05-07 19:54:34 -04001773 int follow,
1774 struct inode *inode, unsigned seq)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001775{
Al Virod63ff282015-05-04 18:13:23 -04001776 if (likely(!d_is_symlink(link->dentry)))
1777 return 0;
1778 if (!follow)
1779 return 0;
Al Viroa7f77542016-02-27 19:31:01 -05001780 /* make sure that d_is_symlink above matches inode */
1781 if (nd->flags & LOOKUP_RCU) {
1782 if (read_seqcount_retry(&link->dentry->d_seq, seq))
1783 return -ECHILD;
1784 }
Al Viro181548c2015-05-07 19:54:34 -04001785 return pick_link(nd, link, inode, seq);
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001786}
1787
Al Viro4693a542015-05-04 17:47:11 -04001788enum {WALK_GET = 1, WALK_PUT = 2};
1789
1790static int walk_component(struct nameidata *nd, int flags)
Al Viroce57dfc2011-03-13 19:58:58 -04001791{
Al Virocaa85632015-04-22 17:52:47 -04001792 struct path path;
Al Viroce57dfc2011-03-13 19:58:58 -04001793 struct inode *inode;
Al Viro254cf582015-05-05 09:40:46 -04001794 unsigned seq;
Al Viroce57dfc2011-03-13 19:58:58 -04001795 int err;
1796 /*
1797 * "." and ".." are special - ".." especially so because it has
1798 * to be able to know about the current root directory and
1799 * parent relationships.
1800 */
Al Viro4693a542015-05-04 17:47:11 -04001801 if (unlikely(nd->last_type != LAST_NORM)) {
1802 err = handle_dots(nd, nd->last_type);
1803 if (flags & WALK_PUT)
1804 put_link(nd);
1805 return err;
1806 }
Al Viro254cf582015-05-05 09:40:46 -04001807 err = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05001808 if (unlikely(err <= 0)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001809 if (err < 0)
Al Virof0a9ba72015-05-04 07:59:30 -04001810 return err;
Al Viroe3c13922016-03-06 14:03:27 -05001811 path.dentry = lookup_slow(&nd->last, nd->path.dentry,
1812 nd->flags);
1813 if (IS_ERR(path.dentry))
1814 return PTR_ERR(path.dentry);
Al Viro7500c382016-03-31 00:23:05 -04001815
Al Viroe3c13922016-03-06 14:03:27 -05001816 path.mnt = nd->path.mnt;
1817 err = follow_managed(&path, nd);
1818 if (unlikely(err < 0))
Al Virof0a9ba72015-05-04 07:59:30 -04001819 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001820
Al Viro7500c382016-03-31 00:23:05 -04001821 if (unlikely(d_is_negative(path.dentry))) {
1822 path_to_nameidata(&path, nd);
1823 return -ENOENT;
1824 }
1825
Al Viro254cf582015-05-05 09:40:46 -04001826 seq = 0; /* we are already out of RCU mode */
Al Virod4565642016-02-27 19:23:16 -05001827 inode = d_backing_inode(path.dentry);
Al Viroce57dfc2011-03-13 19:58:58 -04001828 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001829
Al Viro4693a542015-05-04 17:47:11 -04001830 if (flags & WALK_PUT)
1831 put_link(nd);
Al Viro181548c2015-05-07 19:54:34 -04001832 err = should_follow_link(nd, &path, flags & WALK_GET, inode, seq);
Al Virod63ff282015-05-04 18:13:23 -04001833 if (unlikely(err))
1834 return err;
Al Virocaa85632015-04-22 17:52:47 -04001835 path_to_nameidata(&path, nd);
Al Viroce57dfc2011-03-13 19:58:58 -04001836 nd->inode = inode;
Al Viro254cf582015-05-05 09:40:46 -04001837 nd->seq = seq;
Al Viroce57dfc2011-03-13 19:58:58 -04001838 return 0;
1839}
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841/*
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001842 * We can do the critical dentry name comparison and hashing
1843 * operations one word at a time, but we are limited to:
1844 *
1845 * - Architectures with fast unaligned word accesses. We could
1846 * do a "get_unaligned()" if this helps and is sufficiently
1847 * fast.
1848 *
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001849 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1850 * do not trap on the (extremely unlikely) case of a page
1851 * crossing operation.
1852 *
1853 * - Furthermore, we need an efficient 64-bit compile for the
1854 * 64-bit case in order to generate the "number of bytes in
1855 * the final mask". Again, that could be replaced with a
1856 * efficient population count instruction or similar.
1857 */
1858#ifdef CONFIG_DCACHE_WORD_ACCESS
1859
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001860#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001861
George Spelvin468a9422016-05-26 22:11:51 -04001862#ifdef HASH_MIX
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001863
George Spelvin468a9422016-05-26 22:11:51 -04001864/* Architecture provides HASH_MIX and fold_hash() in <asm/hash.h> */
1865
1866#elif defined(CONFIG_64BIT)
George Spelvin2a18da7a2016-05-23 07:43:58 -04001867/*
1868 * Register pressure in the mixing function is an issue, particularly
1869 * on 32-bit x86, but almost any function requires one state value and
1870 * one temporary. Instead, use a function designed for two state values
1871 * and no temporaries.
1872 *
1873 * This function cannot create a collision in only two iterations, so
1874 * we have two iterations to achieve avalanche. In those two iterations,
1875 * we have six layers of mixing, which is enough to spread one bit's
1876 * influence out to 2^6 = 64 state bits.
1877 *
1878 * Rotate constants are scored by considering either 64 one-bit input
1879 * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the
1880 * probability of that delta causing a change to each of the 128 output
1881 * bits, using a sample of random initial states.
1882 *
1883 * The Shannon entropy of the computed probabilities is then summed
1884 * to produce a score. Ideally, any input change has a 50% chance of
1885 * toggling any given output bit.
1886 *
1887 * Mixing scores (in bits) for (12,45):
1888 * Input delta: 1-bit 2-bit
1889 * 1 round: 713.3 42542.6
1890 * 2 rounds: 2753.7 140389.8
1891 * 3 rounds: 5954.1 233458.2
1892 * 4 rounds: 7862.6 256672.2
1893 * Perfect: 8192 258048
1894 * (64*128) (64*63/2 * 128)
1895 */
1896#define HASH_MIX(x, y, a) \
1897 ( x ^= (a), \
1898 y ^= x, x = rol64(x,12),\
1899 x += y, y = rol64(y,45),\
1900 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001901
George Spelvin0fed3ac2016-05-02 06:31:01 -04001902/*
George Spelvin2a18da7a2016-05-23 07:43:58 -04001903 * Fold two longs into one 32-bit hash value. This must be fast, but
1904 * latency isn't quite as critical, as there is a fair bit of additional
1905 * work done before the hash value is used.
George Spelvin0fed3ac2016-05-02 06:31:01 -04001906 */
George Spelvin2a18da7a2016-05-23 07:43:58 -04001907static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001908{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001909 y ^= x * GOLDEN_RATIO_64;
1910 y *= GOLDEN_RATIO_64;
1911 return y >> 32;
George Spelvin0fed3ac2016-05-02 06:31:01 -04001912}
1913
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001914#else /* 32-bit case */
1915
George Spelvin2a18da7a2016-05-23 07:43:58 -04001916/*
1917 * Mixing scores (in bits) for (7,20):
1918 * Input delta: 1-bit 2-bit
1919 * 1 round: 330.3 9201.6
1920 * 2 rounds: 1246.4 25475.4
1921 * 3 rounds: 1907.1 31295.1
1922 * 4 rounds: 2042.3 31718.6
1923 * Perfect: 2048 31744
1924 * (32*64) (32*31/2 * 64)
1925 */
1926#define HASH_MIX(x, y, a) \
1927 ( x ^= (a), \
1928 y ^= x, x = rol32(x, 7),\
1929 x += y, y = rol32(y,20),\
1930 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001931
George Spelvin2a18da7a2016-05-23 07:43:58 -04001932static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001933{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001934 /* Use arch-optimized multiply if one exists */
1935 return __hash_32(y ^ __hash_32(x));
George Spelvin0fed3ac2016-05-02 06:31:01 -04001936}
1937
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001938#endif
1939
George Spelvin2a18da7a2016-05-23 07:43:58 -04001940/*
1941 * Return the hash of a string of known length. This is carfully
1942 * designed to match hash_name(), which is the more critical function.
1943 * In particular, we must end by hashing a final word containing 0..7
1944 * payload bytes, to match the way that hash_name() iterates until it
1945 * finds the delimiter after the name.
1946 */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001947unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001948{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001949 unsigned long a, x = 0, y = (unsigned long)salt;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001950
1951 for (;;) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001952 if (!len)
1953 goto done;
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001954 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001955 if (len < sizeof(unsigned long))
1956 break;
George Spelvin2a18da7a2016-05-23 07:43:58 -04001957 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001958 name += sizeof(unsigned long);
1959 len -= sizeof(unsigned long);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001960 }
George Spelvin2a18da7a2016-05-23 07:43:58 -04001961 x ^= a & bytemask_from_count(len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001962done:
George Spelvin2a18da7a2016-05-23 07:43:58 -04001963 return fold_hash(x, y);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001964}
1965EXPORT_SYMBOL(full_name_hash);
1966
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001967/* Return the "hash_len" (hash and length) of a null-terminated string */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001968u64 hashlen_string(const void *salt, const char *name)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001969{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001970 unsigned long a = 0, x = 0, y = (unsigned long)salt;
1971 unsigned long adata, mask, len;
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001972 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1973
Linus Torvalds8387ff22016-06-10 07:51:30 -07001974 len = 0;
1975 goto inside;
1976
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001977 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001978 HASH_MIX(x, y, a);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001979 len += sizeof(unsigned long);
Linus Torvalds8387ff22016-06-10 07:51:30 -07001980inside:
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001981 a = load_unaligned_zeropad(name+len);
1982 } while (!has_zero(a, &adata, &constants));
1983
1984 adata = prep_zero_mask(a, adata, &constants);
1985 mask = create_zero_mask(adata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04001986 x ^= a & zero_bytemask(mask);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001987
George Spelvin2a18da7a2016-05-23 07:43:58 -04001988 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001989}
1990EXPORT_SYMBOL(hashlen_string);
1991
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001992/*
1993 * Calculate the length and hash of the path component, and
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001994 * return the "hash_len" as the result.
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001995 */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001996static inline u64 hash_name(const void *salt, const char *name)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001997{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001998 unsigned long a = 0, b, x = 0, y = (unsigned long)salt;
1999 unsigned long adata, bdata, mask, len;
Linus Torvalds36126f82012-05-26 10:43:17 -07002000 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002001
Linus Torvalds8387ff22016-06-10 07:51:30 -07002002 len = 0;
2003 goto inside;
2004
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002005 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04002006 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002007 len += sizeof(unsigned long);
Linus Torvalds8387ff22016-06-10 07:51:30 -07002008inside:
Linus Torvaldse419b4c2012-05-03 10:16:43 -07002009 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07002010 b = a ^ REPEAT_BYTE('/');
2011 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002012
Linus Torvalds36126f82012-05-26 10:43:17 -07002013 adata = prep_zero_mask(a, adata, &constants);
2014 bdata = prep_zero_mask(b, bdata, &constants);
Linus Torvalds36126f82012-05-26 10:43:17 -07002015 mask = create_zero_mask(adata | bdata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04002016 x ^= a & zero_bytemask(mask);
Linus Torvalds36126f82012-05-26 10:43:17 -07002017
George Spelvin2a18da7a2016-05-23 07:43:58 -04002018 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002019}
2020
George Spelvin2a18da7a2016-05-23 07:43:58 -04002021#else /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002022
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002023/* Return the hash of a string of known length */
Linus Torvalds8387ff22016-06-10 07:51:30 -07002024unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
Linus Torvalds0145acc2012-03-02 14:32:59 -08002025{
Linus Torvalds8387ff22016-06-10 07:51:30 -07002026 unsigned long hash = init_name_hash(salt);
Linus Torvalds0145acc2012-03-02 14:32:59 -08002027 while (len--)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002028 hash = partial_name_hash((unsigned char)*name++, hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08002029 return end_name_hash(hash);
2030}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08002031EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08002032
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002033/* Return the "hash_len" (hash and length) of a null-terminated string */
Linus Torvalds8387ff22016-06-10 07:51:30 -07002034u64 hashlen_string(const void *salt, const char *name)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002035{
Linus Torvalds8387ff22016-06-10 07:51:30 -07002036 unsigned long hash = init_name_hash(salt);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002037 unsigned long len = 0, c;
2038
2039 c = (unsigned char)*name;
George Spelvine0ab7af2016-05-29 08:05:56 -04002040 while (c) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002041 len++;
2042 hash = partial_name_hash(c, hash);
2043 c = (unsigned char)name[len];
George Spelvine0ab7af2016-05-29 08:05:56 -04002044 }
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002045 return hashlen_create(end_name_hash(hash), len);
2046}
George Spelvinf2a031b2016-05-29 01:26:41 -04002047EXPORT_SYMBOL(hashlen_string);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002048
Linus Torvalds3ddcd052011-08-06 22:45:50 -07002049/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002050 * We know there's a real path component here of at least
2051 * one character.
2052 */
Linus Torvalds8387ff22016-06-10 07:51:30 -07002053static inline u64 hash_name(const void *salt, const char *name)
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002054{
Linus Torvalds8387ff22016-06-10 07:51:30 -07002055 unsigned long hash = init_name_hash(salt);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002056 unsigned long len = 0, c;
2057
2058 c = (unsigned char)*name;
2059 do {
2060 len++;
2061 hash = partial_name_hash(c, hash);
2062 c = (unsigned char)name[len];
2063 } while (c && c != '/');
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002064 return hashlen_create(end_name_hash(hash), len);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002065}
2066
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002067#endif
2068
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002069/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01002071 * This is the basic name resolution function, turning a pathname into
2072 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01002074 * Returns 0 and nd will have valid dentry and mnt on success.
2075 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 */
Al Viro6de88d72009-08-09 01:41:57 +04002077static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 int err;
Al Viro32cd7462015-04-18 20:30:49 -04002080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 while (*name=='/')
2082 name++;
2083 if (!*name)
Al Viro9e18f102015-04-18 20:44:34 -04002084 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086 /* At this point we know we have a real path component. */
2087 for(;;) {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002088 u64 hash_len;
Al Virofe479a52011-02-22 15:10:03 -05002089 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090
Al Viro52094c82011-02-21 21:34:47 -05002091 err = may_lookup(nd);
George Spelvin2a18da7a2016-05-23 07:43:58 -04002092 if (err)
Al Viro3595e232015-05-09 16:54:45 -04002093 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094
Linus Torvalds8387ff22016-06-10 07:51:30 -07002095 hash_len = hash_name(nd->path.dentry, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096
Al Virofe479a52011-02-22 15:10:03 -05002097 type = LAST_NORM;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002098 if (name[0] == '.') switch (hashlen_len(hash_len)) {
Al Virofe479a52011-02-22 15:10:03 -05002099 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002100 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05002101 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05002102 nd->flags |= LOOKUP_JUMPED;
2103 }
Al Virofe479a52011-02-22 15:10:03 -05002104 break;
2105 case 1:
2106 type = LAST_DOT;
2107 }
Al Viro5a202bc2011-03-08 14:17:44 -05002108 if (likely(type == LAST_NORM)) {
2109 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05002110 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05002111 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
James Hogana060dc52014-09-16 13:07:35 +01002112 struct qstr this = { { .hash_len = hash_len }, .name = name };
Linus Torvaldsda53be12013-05-21 15:22:44 -07002113 err = parent->d_op->d_hash(parent, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002114 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002115 return err;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002116 hash_len = this.hash_len;
2117 name = this.name;
Al Viro5a202bc2011-03-08 14:17:44 -05002118 }
2119 }
Al Virofe479a52011-02-22 15:10:03 -05002120
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002121 nd->last.hash_len = hash_len;
2122 nd->last.name = name;
Al Viro5f4a6a62013-01-24 18:04:22 -05002123 nd->last_type = type;
2124
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002125 name += hashlen_len(hash_len);
2126 if (!*name)
Al Virobdf6cbf2015-04-18 20:21:40 -04002127 goto OK;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002128 /*
2129 * If it wasn't NUL, we know it was '/'. Skip that
2130 * slash, and continue until no more slashes.
2131 */
2132 do {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002133 name++;
2134 } while (unlikely(*name == '/'));
Al Viro8620c232015-05-04 08:58:35 -04002135 if (unlikely(!*name)) {
2136OK:
Al Viro368ee9b2015-05-08 17:19:59 -04002137 /* pathname body, done */
Al Viro8620c232015-05-04 08:58:35 -04002138 if (!nd->depth)
2139 return 0;
2140 name = nd->stack[nd->depth - 1].name;
Al Viro368ee9b2015-05-08 17:19:59 -04002141 /* trailing symlink, done */
Al Viro8620c232015-05-04 08:58:35 -04002142 if (!name)
2143 return 0;
2144 /* last component of nested symlink */
Al Viro4693a542015-05-04 17:47:11 -04002145 err = walk_component(nd, WALK_GET | WALK_PUT);
Al Viro8620c232015-05-04 08:58:35 -04002146 } else {
Al Viro4693a542015-05-04 17:47:11 -04002147 err = walk_component(nd, WALK_GET);
Al Viro8620c232015-05-04 08:58:35 -04002148 }
Al Viroce57dfc2011-03-13 19:58:58 -04002149 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002150 return err;
Al Virofe479a52011-02-22 15:10:03 -05002151
Al Viroce57dfc2011-03-13 19:58:58 -04002152 if (err) {
Al Viro626de992015-05-04 18:26:59 -04002153 const char *s = get_link(nd);
Al Viro5a460272015-04-17 23:44:45 -04002154
Viresh Kumara1c83682015-08-12 15:59:44 +05302155 if (IS_ERR(s))
Al Viro3595e232015-05-09 16:54:45 -04002156 return PTR_ERR(s);
Al Virod40bcc02015-04-18 20:03:03 -04002157 err = 0;
2158 if (unlikely(!s)) {
2159 /* jumped */
Al Virob9ff4422015-05-02 20:19:23 -04002160 put_link(nd);
Al Virod40bcc02015-04-18 20:03:03 -04002161 } else {
Al Virofab51e82015-05-10 11:01:00 -04002162 nd->stack[nd->depth - 1].name = name;
2163 name = s;
2164 continue;
Al Virod40bcc02015-04-18 20:03:03 -04002165 }
Nick Piggin31e6b012011-01-07 17:49:52 +11002166 }
Al Viro97242f92015-08-01 19:59:28 -04002167 if (unlikely(!d_can_lookup(nd->path.dentry))) {
2168 if (nd->flags & LOOKUP_RCU) {
2169 if (unlazy_walk(nd, NULL, 0))
2170 return -ECHILD;
2171 }
Al Viro3595e232015-05-09 16:54:45 -04002172 return -ENOTDIR;
Al Viro97242f92015-08-01 19:59:28 -04002173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175}
2176
Al Viroc8a53ee2015-05-12 18:43:07 -04002177static const char *path_init(struct nameidata *nd, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178{
Prasanna Medaea3834d2005-04-29 16:00:17 +01002179 int retval = 0;
Al Viroc8a53ee2015-05-12 18:43:07 -04002180 const char *s = nd->name->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181
Linus Torvalds012e79b2017-04-02 17:10:08 -07002182 if (!*s)
2183 flags &= ~LOOKUP_RCU;
2184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro980f3ea2014-11-20 14:20:24 -05002186 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05002188 if (flags & LOOKUP_ROOT) {
David Howellsb18825a2013-09-12 19:22:53 +01002189 struct dentry *root = nd->root.dentry;
2190 struct inode *inode = root->d_inode;
Al Virofd2f7cb2015-02-22 20:07:13 -05002191 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002192 if (!d_can_lookup(root))
Al Viro368ee9b2015-05-08 17:19:59 -04002193 return ERR_PTR(-ENOTDIR);
Al Viro73d049a2011-03-11 12:08:24 -05002194 retval = inode_permission(inode, MAY_EXEC);
2195 if (retval)
Al Viro368ee9b2015-05-08 17:19:59 -04002196 return ERR_PTR(retval);
Al Viro73d049a2011-03-11 12:08:24 -05002197 }
Al Viro5b6ca022011-03-09 23:04:47 -05002198 nd->path = nd->root;
2199 nd->inode = inode;
2200 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002201 rcu_read_lock();
Al Viro5b6ca022011-03-09 23:04:47 -05002202 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro8f47a0162015-05-09 19:02:01 -04002203 nd->root_seq = nd->seq;
Al Viro48a066e2013-09-29 22:06:07 -04002204 nd->m_seq = read_seqbegin(&mount_lock);
Al Viro5b6ca022011-03-09 23:04:47 -05002205 } else {
2206 path_get(&nd->path);
2207 }
Al Viro368ee9b2015-05-08 17:19:59 -04002208 return s;
Al Viro5b6ca022011-03-09 23:04:47 -05002209 }
2210
Al Viro2a737872009-04-07 11:49:53 -04002211 nd->root.mnt = NULL;
Al Viro248fb5b2015-12-05 20:51:58 -05002212 nd->path.mnt = NULL;
2213 nd->path.dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
Al Viro48a066e2013-09-29 22:06:07 -04002215 nd->m_seq = read_seqbegin(&mount_lock);
Al Virofd2f7cb2015-02-22 20:07:13 -05002216 if (*s == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05002217 if (flags & LOOKUP_RCU)
Al Viro8b61e742013-11-08 12:45:01 -05002218 rcu_read_lock();
Al Viro9e6697e2015-12-05 20:07:21 -05002219 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05002220 if (likely(!nd_jump_root(nd)))
Al Viroef55d912015-12-05 20:25:06 -05002221 return s;
Al Viro248fb5b2015-12-05 20:51:58 -05002222 nd->root.mnt = NULL;
Al Viroef55d912015-12-05 20:25:06 -05002223 rcu_read_unlock();
2224 return ERR_PTR(-ECHILD);
Al Viroc8a53ee2015-05-12 18:43:07 -04002225 } else if (nd->dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05002226 if (flags & LOOKUP_RCU) {
2227 struct fs_struct *fs = current->fs;
2228 unsigned seq;
2229
Al Viro8b61e742013-11-08 12:45:01 -05002230 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05002231
2232 do {
2233 seq = read_seqcount_begin(&fs->seq);
2234 nd->path = fs->pwd;
Al Viroef55d912015-12-05 20:25:06 -05002235 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002236 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
2237 } while (read_seqcount_retry(&fs->seq, seq));
2238 } else {
2239 get_fs_pwd(current->fs, &nd->path);
Al Viroef55d912015-12-05 20:25:06 -05002240 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002241 }
Al Viroef55d912015-12-05 20:25:06 -05002242 return s;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002243 } else {
Jeff Layton582aa642012-12-11 08:56:16 -05002244 /* Caller must check execute permissions on the starting path component */
Al Viroc8a53ee2015-05-12 18:43:07 -04002245 struct fd f = fdget_raw(nd->dfd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002246 struct dentry *dentry;
2247
Al Viro2903ff02012-08-28 12:52:22 -04002248 if (!f.file)
Al Viro368ee9b2015-05-08 17:19:59 -04002249 return ERR_PTR(-EBADF);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002250
Al Viro2903ff02012-08-28 12:52:22 -04002251 dentry = f.file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002252
Al Virofd2f7cb2015-02-22 20:07:13 -05002253 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002254 if (!d_can_lookup(dentry)) {
Al Viro2903ff02012-08-28 12:52:22 -04002255 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002256 return ERR_PTR(-ENOTDIR);
Al Viro2903ff02012-08-28 12:52:22 -04002257 }
Al Virof52e0c12011-03-14 18:56:51 -04002258 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002259
Al Viro2903ff02012-08-28 12:52:22 -04002260 nd->path = f.file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05002261 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002262 rcu_read_lock();
Al Viro34a26b92015-05-11 08:05:05 -04002263 nd->inode = nd->path.dentry->d_inode;
2264 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viroe41f7d42011-02-22 14:02:58 -05002265 } else {
Al Viro2903ff02012-08-28 12:52:22 -04002266 path_get(&nd->path);
Al Viro34a26b92015-05-11 08:05:05 -04002267 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002268 }
Al Viro34a26b92015-05-11 08:05:05 -04002269 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002270 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 }
Al Viro9b4a9b12009-04-07 11:44:16 -04002272}
2273
Al Viro3bdba282015-05-08 17:37:07 -04002274static const char *trailing_symlink(struct nameidata *nd)
Al Viro95fa25d2015-04-22 13:46:57 -04002275{
2276 const char *s;
Al Virofec2fa22015-05-06 15:58:18 -04002277 int error = may_follow_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002278 if (unlikely(error))
Al Viro3bdba282015-05-08 17:37:07 -04002279 return ERR_PTR(error);
Al Viro95fa25d2015-04-22 13:46:57 -04002280 nd->flags |= LOOKUP_PARENT;
Al Virofab51e82015-05-10 11:01:00 -04002281 nd->stack[0].name = NULL;
Al Viro3b2e7f72015-04-19 00:53:50 -04002282 s = get_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002283 return s ? s : "";
Al Viro95fa25d2015-04-22 13:46:57 -04002284}
2285
Al Virocaa85632015-04-22 17:52:47 -04002286static inline int lookup_last(struct nameidata *nd)
Al Virobd92d7f2011-03-14 19:54:59 -04002287{
2288 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2289 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2290
2291 nd->flags &= ~LOOKUP_PARENT;
Al Virodeb106c2015-05-08 18:05:21 -04002292 return walk_component(nd,
Al Viro4693a542015-05-04 17:47:11 -04002293 nd->flags & LOOKUP_FOLLOW
2294 ? nd->depth
2295 ? WALK_PUT | WALK_GET
2296 : WALK_GET
2297 : 0);
Al Virobd92d7f2011-03-14 19:54:59 -04002298}
2299
Al Viro9b4a9b12009-04-07 11:44:16 -04002300/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002301static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path)
Al Viro9b4a9b12009-04-07 11:44:16 -04002302{
Al Viroc8a53ee2015-05-12 18:43:07 -04002303 const char *s = path_init(nd, flags);
Al Virobd92d7f2011-03-14 19:54:59 -04002304 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11002305
Al Viro368ee9b2015-05-08 17:19:59 -04002306 if (IS_ERR(s))
2307 return PTR_ERR(s);
Al Viro3bdba282015-05-08 17:37:07 -04002308 while (!(err = link_path_walk(s, nd))
2309 && ((err = lookup_last(nd)) > 0)) {
2310 s = trailing_symlink(nd);
2311 if (IS_ERR(s)) {
2312 err = PTR_ERR(s);
2313 break;
Al Virobd92d7f2011-03-14 19:54:59 -04002314 }
2315 }
Al Viro9f1fafe2011-03-25 11:00:12 -04002316 if (!err)
2317 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002318
Al Virodeb106c2015-05-08 18:05:21 -04002319 if (!err && nd->flags & LOOKUP_DIRECTORY)
2320 if (!d_can_lookup(nd->path.dentry))
Al Virobd23a532011-03-23 09:56:30 -04002321 err = -ENOTDIR;
Al Viro625b6d12015-05-12 16:36:12 -04002322 if (!err) {
2323 *path = nd->path;
2324 nd->path.mnt = NULL;
2325 nd->path.dentry = NULL;
2326 }
2327 terminate_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002328 return err;
Al Viroee0827c2011-02-21 23:38:09 -05002329}
Nick Piggin31e6b012011-01-07 17:49:52 +11002330
Al Viro625b6d12015-05-12 16:36:12 -04002331static int filename_lookup(int dfd, struct filename *name, unsigned flags,
Al Viro9ad1aaa2015-05-12 16:44:39 -04002332 struct path *path, struct path *root)
Jeff Layton873f1ee2012-10-10 15:25:29 -04002333{
Al Viro894bc8c2015-05-02 07:16:16 -04002334 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002335 struct nameidata nd;
Al Viroabc9f5b2015-05-12 16:53:42 -04002336 if (IS_ERR(name))
2337 return PTR_ERR(name);
Al Viro9ad1aaa2015-05-12 16:44:39 -04002338 if (unlikely(root)) {
2339 nd.root = *root;
2340 flags |= LOOKUP_ROOT;
2341 }
Al Viro9883d182015-05-13 07:28:08 -04002342 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002343 retval = path_lookupat(&nd, flags | LOOKUP_RCU, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002344 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002345 retval = path_lookupat(&nd, flags, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002346 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002347 retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002348
2349 if (likely(!retval))
Al Viro625b6d12015-05-12 16:36:12 -04002350 audit_inode(name, path->dentry, flags & LOOKUP_PARENT);
Al Viro9883d182015-05-13 07:28:08 -04002351 restore_nameidata();
Al Viroe4bd1c12015-05-12 16:40:39 -04002352 putname(name);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002353 return retval;
2354}
2355
Al Viro8bcb77f2015-05-08 16:59:20 -04002356/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002357static int path_parentat(struct nameidata *nd, unsigned flags,
Al Viro391172c2015-05-09 11:19:16 -04002358 struct path *parent)
Al Viro8bcb77f2015-05-08 16:59:20 -04002359{
Al Viroc8a53ee2015-05-12 18:43:07 -04002360 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002361 int err;
2362 if (IS_ERR(s))
2363 return PTR_ERR(s);
2364 err = link_path_walk(s, nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002365 if (!err)
2366 err = complete_walk(nd);
Al Viro391172c2015-05-09 11:19:16 -04002367 if (!err) {
2368 *parent = nd->path;
2369 nd->path.mnt = NULL;
2370 nd->path.dentry = NULL;
2371 }
2372 terminate_walk(nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002373 return err;
2374}
2375
Al Viro5c31b6c2015-05-12 17:32:54 -04002376static struct filename *filename_parentat(int dfd, struct filename *name,
Al Viro391172c2015-05-09 11:19:16 -04002377 unsigned int flags, struct path *parent,
2378 struct qstr *last, int *type)
Al Viro8bcb77f2015-05-08 16:59:20 -04002379{
2380 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002381 struct nameidata nd;
Al Viro8bcb77f2015-05-08 16:59:20 -04002382
Al Viro5c31b6c2015-05-12 17:32:54 -04002383 if (IS_ERR(name))
2384 return name;
Al Viro9883d182015-05-13 07:28:08 -04002385 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002386 retval = path_parentat(&nd, flags | LOOKUP_RCU, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002387 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002388 retval = path_parentat(&nd, flags, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002389 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002390 retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent);
Al Viro391172c2015-05-09 11:19:16 -04002391 if (likely(!retval)) {
2392 *last = nd.last;
2393 *type = nd.last_type;
2394 audit_inode(name, parent->dentry, LOOKUP_PARENT);
Al Viro5c31b6c2015-05-12 17:32:54 -04002395 } else {
2396 putname(name);
2397 name = ERR_PTR(retval);
Al Viro391172c2015-05-09 11:19:16 -04002398 }
Al Viro9883d182015-05-13 07:28:08 -04002399 restore_nameidata();
Al Viro5c31b6c2015-05-12 17:32:54 -04002400 return name;
Al Viro8bcb77f2015-05-08 16:59:20 -04002401}
2402
Al Viro79714f72012-06-15 03:01:42 +04002403/* does lookup, returns the object with parent locked */
2404struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002405{
Al Viro5c31b6c2015-05-12 17:32:54 -04002406 struct filename *filename;
2407 struct dentry *d;
Al Viro391172c2015-05-09 11:19:16 -04002408 struct qstr last;
2409 int type;
Paul Moore51689102015-01-22 00:00:03 -05002410
Al Viro5c31b6c2015-05-12 17:32:54 -04002411 filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path,
2412 &last, &type);
Paul Moore51689102015-01-22 00:00:03 -05002413 if (IS_ERR(filename))
2414 return ERR_CAST(filename);
Al Viro5c31b6c2015-05-12 17:32:54 -04002415 if (unlikely(type != LAST_NORM)) {
Al Viro391172c2015-05-09 11:19:16 -04002416 path_put(path);
Al Viro5c31b6c2015-05-12 17:32:54 -04002417 putname(filename);
2418 return ERR_PTR(-EINVAL);
Al Viro79714f72012-06-15 03:01:42 +04002419 }
Al Viro59551022016-01-22 15:40:57 -05002420 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04002421 d = __lookup_hash(&last, path->dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04002422 if (IS_ERR(d)) {
Al Viro59551022016-01-22 15:40:57 -05002423 inode_unlock(path->dentry->d_inode);
Al Viro391172c2015-05-09 11:19:16 -04002424 path_put(path);
Al Viro79714f72012-06-15 03:01:42 +04002425 }
Paul Moore51689102015-01-22 00:00:03 -05002426 putname(filename);
Al Viro79714f72012-06-15 03:01:42 +04002427 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002428}
2429
Al Virod1811462008-08-02 00:49:18 -04002430int kern_path(const char *name, unsigned int flags, struct path *path)
2431{
Al Viroabc9f5b2015-05-12 16:53:42 -04002432 return filename_lookup(AT_FDCWD, getname_kernel(name),
2433 flags, path, NULL);
Al Virod1811462008-08-02 00:49:18 -04002434}
Al Viro4d359502014-03-14 12:20:17 -04002435EXPORT_SYMBOL(kern_path);
Al Virod1811462008-08-02 00:49:18 -04002436
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002437/**
2438 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2439 * @dentry: pointer to dentry of the base directory
2440 * @mnt: pointer to vfs mount of the base directory
2441 * @name: pointer to file name
2442 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002443 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002444 */
2445int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2446 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002447 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002448{
Al Viro9ad1aaa2015-05-12 16:44:39 -04002449 struct path root = {.mnt = mnt, .dentry = dentry};
Al Viro9ad1aaa2015-05-12 16:44:39 -04002450 /* the first argument of filename_lookup() is ignored with root */
Al Viroabc9f5b2015-05-12 16:53:42 -04002451 return filename_lookup(AT_FDCWD, getname_kernel(name),
2452 flags , path, &root);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002453}
Al Viro4d359502014-03-14 12:20:17 -04002454EXPORT_SYMBOL(vfs_path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002455
Christoph Hellwigeead1912007-10-16 23:25:38 -07002456/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002457 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002458 * @name: pathname component to lookup
2459 * @base: base directory to lookup from
2460 * @len: maximum length @len should be interpreted to
2461 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002462 * Note that this routine is purely a helper for filesystem usage and should
Al Viro9e7543e2015-02-23 02:49:48 -05002463 * not be called by generic code.
NeilBrownbbddca82016-01-07 16:08:20 -05002464 *
2465 * The caller must hold base->i_mutex.
Christoph Hellwigeead1912007-10-16 23:25:38 -07002466 */
James Morris057f6c02007-04-26 00:12:05 -07002467struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2468{
James Morris057f6c02007-04-26 00:12:05 -07002469 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05002470 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002471 int err;
James Morris057f6c02007-04-26 00:12:05 -07002472
Al Viro59551022016-01-22 15:40:57 -05002473 WARN_ON_ONCE(!inode_is_locked(base->d_inode));
David Woodhouse2f9092e2009-04-20 23:18:37 +01002474
Al Viro6a96ba52011-03-07 23:49:20 -05002475 this.name = name;
2476 this.len = len;
Linus Torvalds8387ff22016-06-10 07:51:30 -07002477 this.hash = full_name_hash(base, name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05002478 if (!len)
2479 return ERR_PTR(-EACCES);
2480
Al Viro21d8a152012-11-29 22:17:21 -05002481 if (unlikely(name[0] == '.')) {
2482 if (len < 2 || (len == 2 && name[1] == '.'))
2483 return ERR_PTR(-EACCES);
2484 }
2485
Al Viro6a96ba52011-03-07 23:49:20 -05002486 while (len--) {
2487 c = *(const unsigned char *)name++;
2488 if (c == '/' || c == '\0')
2489 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05002490 }
Al Viro5a202bc2011-03-08 14:17:44 -05002491 /*
2492 * See if the low-level filesystem might want
2493 * to use its own hash..
2494 */
2495 if (base->d_flags & DCACHE_OP_HASH) {
Linus Torvaldsda53be12013-05-21 15:22:44 -07002496 int err = base->d_op->d_hash(base, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002497 if (err < 0)
2498 return ERR_PTR(err);
2499 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07002500
Miklos Szeredicda309d2012-03-26 12:54:21 +02002501 err = inode_permission(base->d_inode, MAY_EXEC);
2502 if (err)
2503 return ERR_PTR(err);
2504
Al Viro72bd8662012-06-10 17:17:17 -04002505 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002506}
Al Viro4d359502014-03-14 12:20:17 -04002507EXPORT_SYMBOL(lookup_one_len);
James Morris057f6c02007-04-26 00:12:05 -07002508
NeilBrownbbddca82016-01-07 16:08:20 -05002509/**
2510 * lookup_one_len_unlocked - filesystem helper to lookup single pathname component
2511 * @name: pathname component to lookup
2512 * @base: base directory to lookup from
2513 * @len: maximum length @len should be interpreted to
2514 *
2515 * Note that this routine is purely a helper for filesystem usage and should
2516 * not be called by generic code.
2517 *
2518 * Unlike lookup_one_len, it should be called without the parent
2519 * i_mutex held, and will take the i_mutex itself if necessary.
2520 */
2521struct dentry *lookup_one_len_unlocked(const char *name,
2522 struct dentry *base, int len)
2523{
2524 struct qstr this;
2525 unsigned int c;
2526 int err;
Linus Torvalds20d00ee2016-07-29 12:17:52 -07002527 struct dentry *ret;
NeilBrownbbddca82016-01-07 16:08:20 -05002528
2529 this.name = name;
2530 this.len = len;
Linus Torvalds8387ff22016-06-10 07:51:30 -07002531 this.hash = full_name_hash(base, name, len);
NeilBrownbbddca82016-01-07 16:08:20 -05002532 if (!len)
2533 return ERR_PTR(-EACCES);
2534
2535 if (unlikely(name[0] == '.')) {
2536 if (len < 2 || (len == 2 && name[1] == '.'))
2537 return ERR_PTR(-EACCES);
2538 }
2539
2540 while (len--) {
2541 c = *(const unsigned char *)name++;
2542 if (c == '/' || c == '\0')
2543 return ERR_PTR(-EACCES);
2544 }
2545 /*
2546 * See if the low-level filesystem might want
2547 * to use its own hash..
2548 */
2549 if (base->d_flags & DCACHE_OP_HASH) {
2550 int err = base->d_op->d_hash(base, &this);
2551 if (err < 0)
2552 return ERR_PTR(err);
2553 }
2554
2555 err = inode_permission(base->d_inode, MAY_EXEC);
2556 if (err)
2557 return ERR_PTR(err);
2558
Linus Torvalds20d00ee2016-07-29 12:17:52 -07002559 ret = lookup_dcache(&this, base, 0);
2560 if (!ret)
2561 ret = lookup_slow(&this, base, 0);
2562 return ret;
NeilBrownbbddca82016-01-07 16:08:20 -05002563}
2564EXPORT_SYMBOL(lookup_one_len_unlocked);
2565
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05002566#ifdef CONFIG_UNIX98_PTYS
2567int path_pts(struct path *path)
2568{
2569 /* Find something mounted on "pts" in the same directory as
2570 * the input path.
2571 */
2572 struct dentry *child, *parent;
2573 struct qstr this;
2574 int ret;
2575
2576 ret = path_parent_directory(path);
2577 if (ret)
2578 return ret;
2579
2580 parent = path->dentry;
2581 this.name = "pts";
2582 this.len = 3;
2583 child = d_hash_and_lookup(parent, &this);
2584 if (!child)
2585 return -ENOENT;
2586
2587 path->dentry = child;
2588 dput(parent);
2589 follow_mount(path);
2590 return 0;
2591}
2592#endif
2593
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002594int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2595 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596{
Al Viroabc9f5b2015-05-12 16:53:42 -04002597 return filename_lookup(dfd, getname_flags(name, flags, empty),
2598 flags, path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599}
Al Virob853a162015-05-13 09:12:02 -04002600EXPORT_SYMBOL(user_path_at_empty);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002601
Jeff Layton873f1ee2012-10-10 15:25:29 -04002602/*
2603 * NB: most callers don't do anything directly with the reference to the
2604 * to struct filename, but the nd->last pointer points into the name string
2605 * allocated by getname. So we must hold the reference to it until all
2606 * path-walking is complete.
2607 */
Al Viroa2ec4a22015-05-13 06:57:49 -04002608static inline struct filename *
Al Virof5beed72015-04-30 16:09:11 -04002609user_path_parent(int dfd, const char __user *path,
2610 struct path *parent,
2611 struct qstr *last,
2612 int *type,
Jeff Layton9e790bd2012-12-11 12:10:09 -05002613 unsigned int flags)
Al Viro2ad94ae2008-07-21 09:32:51 -04002614{
Jeff Layton9e790bd2012-12-11 12:10:09 -05002615 /* only LOOKUP_REVAL is allowed in extra flags */
Al Viro5c31b6c2015-05-12 17:32:54 -04002616 return filename_parentat(dfd, getname(path), flags & LOOKUP_REVAL,
2617 parent, last, type);
Al Viro2ad94ae2008-07-21 09:32:51 -04002618}
2619
Jeff Layton80334262013-07-26 06:23:25 -04002620/**
Al Viro197df042013-09-08 14:03:27 -04002621 * mountpoint_last - look up last component for umount
Jeff Layton80334262013-07-26 06:23:25 -04002622 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2623 * @path: pointer to container for result
2624 *
2625 * This is a special lookup_last function just for umount. In this case, we
2626 * need to resolve the path without doing any revalidation.
2627 *
2628 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2629 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2630 * in almost all cases, this lookup will be served out of the dcache. The only
2631 * cases where it won't are if nd->last refers to a symlink or the path is
2632 * bogus and it doesn't exist.
2633 *
2634 * Returns:
2635 * -error: if there was an error during lookup. This includes -ENOENT if the
2636 * lookup found a negative dentry. The nd->path reference will also be
2637 * put in this case.
2638 *
2639 * 0: if we successfully resolved nd->path and found it to not to be a
2640 * symlink that needs to be followed. "path" will also be populated.
2641 * The nd->path reference will also be put.
2642 *
2643 * 1: if we successfully resolved nd->last and found it to be a symlink
2644 * that needs to be followed. "path" will be populated with the path
2645 * to the link, and nd->path will *not* be put.
2646 */
2647static int
Al Viro197df042013-09-08 14:03:27 -04002648mountpoint_last(struct nameidata *nd, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002649{
2650 int error = 0;
2651 struct dentry *dentry;
2652 struct dentry *dir = nd->path.dentry;
2653
Al Viro35759522013-09-08 13:41:33 -04002654 /* If we're in rcuwalk, drop out of it to handle last component */
2655 if (nd->flags & LOOKUP_RCU) {
Al Viro6e9918b2015-05-05 09:26:05 -04002656 if (unlazy_walk(nd, NULL, 0))
Al Virodeb106c2015-05-08 18:05:21 -04002657 return -ECHILD;
Jeff Layton80334262013-07-26 06:23:25 -04002658 }
2659
2660 nd->flags &= ~LOOKUP_PARENT;
2661
2662 if (unlikely(nd->last_type != LAST_NORM)) {
2663 error = handle_dots(nd, nd->last_type);
Al Viro35759522013-09-08 13:41:33 -04002664 if (error)
Al Virodeb106c2015-05-08 18:05:21 -04002665 return error;
Al Viro35759522013-09-08 13:41:33 -04002666 dentry = dget(nd->path.dentry);
Al Viro949a8522016-03-06 14:20:52 -05002667 } else {
2668 dentry = d_lookup(dir, &nd->last);
Jeff Layton80334262013-07-26 06:23:25 -04002669 if (!dentry) {
Al Viro949a8522016-03-06 14:20:52 -05002670 /*
2671 * No cached dentry. Mounted dentries are pinned in the
2672 * cache, so that means that this dentry is probably
2673 * a symlink or the path doesn't actually point
2674 * to a mounted dentry.
2675 */
2676 dentry = lookup_slow(&nd->last, dir,
2677 nd->flags | LOOKUP_NO_REVAL);
2678 if (IS_ERR(dentry))
2679 return PTR_ERR(dentry);
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002680 }
Jeff Layton80334262013-07-26 06:23:25 -04002681 }
David Howells698934d2015-03-17 17:33:52 +00002682 if (d_is_negative(dentry)) {
Al Viro35759522013-09-08 13:41:33 -04002683 dput(dentry);
Al Virodeb106c2015-05-08 18:05:21 -04002684 return -ENOENT;
Jeff Layton80334262013-07-26 06:23:25 -04002685 }
Al Viro191d7f72015-05-04 08:26:45 -04002686 if (nd->depth)
2687 put_link(nd);
Al Viro35759522013-09-08 13:41:33 -04002688 path->dentry = dentry;
Vasily Averin295dc392014-07-21 12:30:23 +04002689 path->mnt = nd->path.mnt;
Al Viro181548c2015-05-07 19:54:34 -04002690 error = should_follow_link(nd, path, nd->flags & LOOKUP_FOLLOW,
2691 d_backing_inode(dentry), 0);
Al Virodeb106c2015-05-08 18:05:21 -04002692 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04002693 return error;
Vasily Averin295dc392014-07-21 12:30:23 +04002694 mntget(path->mnt);
Al Viro35759522013-09-08 13:41:33 -04002695 follow_mount(path);
Al Virodeb106c2015-05-08 18:05:21 -04002696 return 0;
Jeff Layton80334262013-07-26 06:23:25 -04002697}
2698
2699/**
Al Viro197df042013-09-08 14:03:27 -04002700 * path_mountpoint - look up a path to be umounted
Masanari Iida2a78b852015-09-09 15:39:23 -07002701 * @nd: lookup context
Jeff Layton80334262013-07-26 06:23:25 -04002702 * @flags: lookup flags
Al Viroc8a53ee2015-05-12 18:43:07 -04002703 * @path: pointer to container for result
Jeff Layton80334262013-07-26 06:23:25 -04002704 *
2705 * Look up the given name, but don't attempt to revalidate the last component.
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002706 * Returns 0 and "path" will be valid on success; Returns error otherwise.
Jeff Layton80334262013-07-26 06:23:25 -04002707 */
2708static int
Al Viroc8a53ee2015-05-12 18:43:07 -04002709path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002710{
Al Viroc8a53ee2015-05-12 18:43:07 -04002711 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002712 int err;
2713 if (IS_ERR(s))
2714 return PTR_ERR(s);
Al Viro3bdba282015-05-08 17:37:07 -04002715 while (!(err = link_path_walk(s, nd)) &&
2716 (err = mountpoint_last(nd, path)) > 0) {
2717 s = trailing_symlink(nd);
2718 if (IS_ERR(s)) {
2719 err = PTR_ERR(s);
Jeff Layton80334262013-07-26 06:23:25 -04002720 break;
Al Viro3bdba282015-05-08 17:37:07 -04002721 }
Jeff Layton80334262013-07-26 06:23:25 -04002722 }
Al Virodeb106c2015-05-08 18:05:21 -04002723 terminate_walk(nd);
Jeff Layton80334262013-07-26 06:23:25 -04002724 return err;
2725}
2726
Al Viro2d864652013-09-08 20:18:44 -04002727static int
Al Viro668696d2015-02-22 19:44:00 -05002728filename_mountpoint(int dfd, struct filename *name, struct path *path,
Al Viro2d864652013-09-08 20:18:44 -04002729 unsigned int flags)
2730{
Al Viro9883d182015-05-13 07:28:08 -04002731 struct nameidata nd;
Al Virocbaab2d2015-01-22 02:49:00 -05002732 int error;
Al Viro668696d2015-02-22 19:44:00 -05002733 if (IS_ERR(name))
2734 return PTR_ERR(name);
Al Viro9883d182015-05-13 07:28:08 -04002735 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002736 error = path_mountpoint(&nd, flags | LOOKUP_RCU, path);
Al Viro2d864652013-09-08 20:18:44 -04002737 if (unlikely(error == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002738 error = path_mountpoint(&nd, flags, path);
Al Viro2d864652013-09-08 20:18:44 -04002739 if (unlikely(error == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002740 error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path);
Al Viro2d864652013-09-08 20:18:44 -04002741 if (likely(!error))
Al Viro668696d2015-02-22 19:44:00 -05002742 audit_inode(name, path->dentry, 0);
Al Viro9883d182015-05-13 07:28:08 -04002743 restore_nameidata();
Al Viro668696d2015-02-22 19:44:00 -05002744 putname(name);
Al Viro2d864652013-09-08 20:18:44 -04002745 return error;
2746}
2747
Jeff Layton80334262013-07-26 06:23:25 -04002748/**
Al Viro197df042013-09-08 14:03:27 -04002749 * user_path_mountpoint_at - lookup a path from userland in order to umount it
Jeff Layton80334262013-07-26 06:23:25 -04002750 * @dfd: directory file descriptor
2751 * @name: pathname from userland
2752 * @flags: lookup flags
2753 * @path: pointer to container to hold result
2754 *
2755 * A umount is a special case for path walking. We're not actually interested
2756 * in the inode in this situation, and ESTALE errors can be a problem. We
2757 * simply want track down the dentry and vfsmount attached at the mountpoint
2758 * and avoid revalidating the last component.
2759 *
2760 * Returns 0 and populates "path" on success.
2761 */
2762int
Al Viro197df042013-09-08 14:03:27 -04002763user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
Jeff Layton80334262013-07-26 06:23:25 -04002764 struct path *path)
2765{
Al Virocbaab2d2015-01-22 02:49:00 -05002766 return filename_mountpoint(dfd, getname(name), path, flags);
Jeff Layton80334262013-07-26 06:23:25 -04002767}
2768
Al Viro2d864652013-09-08 20:18:44 -04002769int
2770kern_path_mountpoint(int dfd, const char *name, struct path *path,
2771 unsigned int flags)
2772{
Al Virocbaab2d2015-01-22 02:49:00 -05002773 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
Al Viro2d864652013-09-08 20:18:44 -04002774}
2775EXPORT_SYMBOL(kern_path_mountpoint);
2776
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002777int __check_sticky(struct inode *dir, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002779 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002780
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002781 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002783 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 return 0;
Andy Lutomirski23adbe12014-06-10 12:45:42 -07002785 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786}
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002787EXPORT_SYMBOL(__check_sticky);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
2789/*
2790 * Check whether we can remove a link victim from directory dir, check
2791 * whether the type of victim is right.
2792 * 1. We can't do it if dir is read-only (done in permission())
2793 * 2. We should have write and exec permissions on dir
2794 * 3. We can't remove anything from append-only dir
2795 * 4. We can't do anything with immutable dir (done in permission())
2796 * 5. If the sticky bit on dir is set we should either
2797 * a. be owner of dir, or
2798 * b. be owner of victim, or
2799 * c. have CAP_FOWNER capability
2800 * 6. If the victim is append-only or immutable we can't do antyhing with
2801 * links pointing to it.
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05002802 * 7. If the victim has an unknown uid or gid we can't change the inode.
2803 * 8. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2804 * 9. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2805 * 10. We can't remove a root or mountpoint.
2806 * 11. We don't allow removal of NFS sillyrenamed files; it's handled by
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 * nfs_async_unlink().
2808 */
David Howellsb18825a2013-09-12 19:22:53 +01002809static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810{
David Howells63afdfc2015-05-06 15:59:00 +01002811 struct inode *inode = d_backing_inode(victim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 int error;
2813
David Howellsb18825a2013-09-12 19:22:53 +01002814 if (d_is_negative(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 return -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01002816 BUG_ON(!inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
2818 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002819 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
Al Virof419a2e2008-07-22 00:07:17 -04002821 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 if (error)
2823 return error;
2824 if (IS_APPEND(dir))
2825 return -EPERM;
David Howellsb18825a2013-09-12 19:22:53 +01002826
2827 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05002828 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode) || HAS_UNMAPPED_ID(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 return -EPERM;
2830 if (isdir) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002831 if (!d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 return -ENOTDIR;
2833 if (IS_ROOT(victim))
2834 return -EBUSY;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002835 } else if (d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 return -EISDIR;
2837 if (IS_DEADDIR(dir))
2838 return -ENOENT;
2839 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2840 return -EBUSY;
2841 return 0;
2842}
2843
2844/* Check whether we can create an object with dentry child in directory
2845 * dir.
2846 * 1. We can't do it if child already exists (open has special treatment for
2847 * this case, but since we are inlined it's OK)
2848 * 2. We can't do it if dir is read-only (done in permission())
Eric W. Biederman036d5232016-07-01 12:52:06 -05002849 * 3. We can't do it if the fs can't represent the fsuid or fsgid.
2850 * 4. We should have write and exec permissions on dir
2851 * 5. We can't do it if dir is immutable (done in permission())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002853static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854{
Eric W. Biederman036d5232016-07-01 12:52:06 -05002855 struct user_namespace *s_user_ns;
Jeff Layton14e972b2013-05-08 10:25:58 -04002856 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 if (child->d_inode)
2858 return -EEXIST;
2859 if (IS_DEADDIR(dir))
2860 return -ENOENT;
Eric W. Biederman036d5232016-07-01 12:52:06 -05002861 s_user_ns = dir->i_sb->s_user_ns;
2862 if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
2863 !kgid_has_mapping(s_user_ns, current_fsgid()))
2864 return -EOVERFLOW;
Al Virof419a2e2008-07-22 00:07:17 -04002865 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866}
2867
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868/*
2869 * p1 and p2 should be directories on the same fs.
2870 */
2871struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2872{
2873 struct dentry *p;
2874
2875 if (p1 == p2) {
Al Viro59551022016-01-22 15:40:57 -05002876 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 return NULL;
2878 }
2879
Al Virofc640052016-04-10 01:33:30 -04002880 mutex_lock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002882 p = d_ancestor(p2, p1);
2883 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002884 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT);
2885 inode_lock_nested(p1->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002886 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887 }
2888
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002889 p = d_ancestor(p1, p2);
2890 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002891 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2892 inode_lock_nested(p2->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002893 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 }
2895
Al Viro59551022016-01-22 15:40:57 -05002896 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2897 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 return NULL;
2899}
Al Viro4d359502014-03-14 12:20:17 -04002900EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
2902void unlock_rename(struct dentry *p1, struct dentry *p2)
2903{
Al Viro59551022016-01-22 15:40:57 -05002904 inode_unlock(p1->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 if (p1 != p2) {
Al Viro59551022016-01-22 15:40:57 -05002906 inode_unlock(p2->d_inode);
Al Virofc640052016-04-10 01:33:30 -04002907 mutex_unlock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 }
2909}
Al Viro4d359502014-03-14 12:20:17 -04002910EXPORT_SYMBOL(unlock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
Al Viro4acdaf22011-07-26 01:42:34 -04002912int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002913 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002915 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 if (error)
2917 return error;
2918
Al Viroacfa4382008-12-04 10:06:33 -05002919 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 return -EACCES; /* shouldn't it be ENOSYS? */
2921 mode &= S_IALLUGO;
2922 mode |= S_IFREG;
2923 error = security_inode_create(dir, dentry, mode);
2924 if (error)
2925 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002926 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002927 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002928 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 return error;
2930}
Al Viro4d359502014-03-14 12:20:17 -04002931EXPORT_SYMBOL(vfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002933bool may_open_dev(const struct path *path)
2934{
2935 return !(path->mnt->mnt_flags & MNT_NODEV) &&
2936 !(path->mnt->mnt_sb->s_iflags & SB_I_NODEV);
2937}
2938
Al Viro73d049a2011-03-11 12:08:24 -05002939static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002941 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 struct inode *inode = dentry->d_inode;
2943 int error;
2944
2945 if (!inode)
2946 return -ENOENT;
2947
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002948 switch (inode->i_mode & S_IFMT) {
2949 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002951 case S_IFDIR:
2952 if (acc_mode & MAY_WRITE)
2953 return -EISDIR;
2954 break;
2955 case S_IFBLK:
2956 case S_IFCHR:
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002957 if (!may_open_dev(path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002959 /*FALLTHRU*/
2960 case S_IFIFO:
2961 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002963 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002964 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002965
Al Viro62fb4a12015-12-26 22:33:24 -05002966 error = inode_permission(inode, MAY_OPEN | acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002967 if (error)
2968 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002969
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 /*
2971 * An append-only file must be opened in append mode for writing.
2972 */
2973 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002974 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002975 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002977 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 }
2979
2980 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002981 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002982 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002984 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002985}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
Jeff Laytone1181ee2010-12-07 16:19:50 -05002987static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002988{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002989 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002990 struct inode *inode = path->dentry->d_inode;
2991 int error = get_write_access(inode);
2992 if (error)
2993 return error;
2994 /*
2995 * Refuse to truncate files with mandatory locks held on them.
2996 */
Jeff Laytond7a06982014-03-10 09:54:15 -04002997 error = locks_verify_locked(filp);
Al Viro7715b522009-12-16 03:54:00 -05002998 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002999 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05003000 if (!error) {
3001 error = do_truncate(path->dentry, 0,
3002 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05003003 filp);
Al Viro7715b522009-12-16 03:54:00 -05003004 }
3005 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04003006 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007}
3008
Dave Hansend57999e2008-02-15 14:37:27 -08003009static inline int open_to_namei_flags(int flag)
3010{
Al Viro8a5e9292011-06-25 19:15:54 -04003011 if ((flag & O_ACCMODE) == 3)
3012 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08003013 return flag;
3014}
3015
Al Virod3607752016-03-25 15:21:09 -04003016static int may_o_create(const struct path *dir, struct dentry *dentry, umode_t mode)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003017{
Seth Forshee2e727b82017-10-07 22:36:55 +00003018 struct user_namespace *s_user_ns;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003019 int error = security_path_mknod(dir, dentry, mode, 0);
3020 if (error)
3021 return error;
3022
Seth Forshee2e727b82017-10-07 22:36:55 +00003023 s_user_ns = dir->dentry->d_sb->s_user_ns;
3024 if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
3025 !kgid_has_mapping(s_user_ns, current_fsgid()))
3026 return -EOVERFLOW;
3027
Miklos Szeredid18e9002012-06-05 15:10:17 +02003028 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
3029 if (error)
3030 return error;
3031
3032 return security_inode_create(dir->dentry->d_inode, dentry, mode);
3033}
3034
David Howells1acf0af2012-06-14 16:13:46 +01003035/*
3036 * Attempt to atomically look up, create and open a file from a negative
3037 * dentry.
3038 *
3039 * Returns 0 if successful. The file will have been created and attached to
3040 * @file by the filesystem calling finish_open().
3041 *
3042 * Returns 1 if the file was looked up only or didn't need creating. The
3043 * caller will need to perform the open themselves. @path will have been
3044 * updated to point to the new dentry. This may be negative.
3045 *
3046 * Returns an error code otherwise.
3047 */
Al Viro2675a4e2012-06-22 12:41:10 +04003048static int atomic_open(struct nameidata *nd, struct dentry *dentry,
3049 struct path *path, struct file *file,
3050 const struct open_flags *op,
Al Viro1643b432016-04-27 19:14:10 -04003051 int open_flag, umode_t mode,
Al Viro2675a4e2012-06-22 12:41:10 +04003052 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003053{
Miklos Szeredid18e9002012-06-05 15:10:17 +02003054 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003055 struct inode *dir = nd->path.dentry->d_inode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003056 int error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003057
Al Viro384f26e2016-04-28 02:03:55 -04003058 if (!(~open_flag & (O_EXCL | O_CREAT))) /* both O_EXCL and O_CREAT */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003059 open_flag &= ~O_TRUNC;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003060
Miklos Szeredid18e9002012-06-05 15:10:17 +02003061 if (nd->flags & LOOKUP_DIRECTORY)
3062 open_flag |= O_DIRECTORY;
3063
Al Viro30d90492012-06-22 12:40:19 +04003064 file->f_path.dentry = DENTRY_NOT_SET;
3065 file->f_path.mnt = nd->path.mnt;
Al Viro0fb1ea02016-04-27 14:13:10 -04003066 error = dir->i_op->atomic_open(dir, dentry, file,
3067 open_to_namei_flags(open_flag),
3068 mode, opened);
Al Viro6fbd0712016-04-28 11:50:59 -04003069 d_lookup_done(dentry);
Al Viro384f26e2016-04-28 02:03:55 -04003070 if (!error) {
3071 /*
3072 * We didn't have the inode before the open, so check open
3073 * permission here.
3074 */
3075 int acc_mode = op->acc_mode;
3076 if (*opened & FILE_CREATED) {
3077 WARN_ON(!(open_flag & O_CREAT));
3078 fsnotify_create(dir, dentry);
3079 acc_mode = 0;
3080 }
3081 error = may_open(&file->f_path, acc_mode, open_flag);
3082 if (WARN_ON(error > 0))
3083 error = -EINVAL;
3084 } else if (error > 0) {
Al Viro30d90492012-06-22 12:40:19 +04003085 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04003086 error = -EIO;
Al Viro03da6332013-09-16 19:22:33 -04003087 } else {
Al Viro384f26e2016-04-28 02:03:55 -04003088 if (file->f_path.dentry) {
3089 dput(dentry);
3090 dentry = file->f_path.dentry;
Al Viro03da6332013-09-16 19:22:33 -04003091 }
Al Viro384f26e2016-04-28 02:03:55 -04003092 if (*opened & FILE_CREATED)
3093 fsnotify_create(dir, dentry);
Al Viroa01e7182016-06-07 21:53:51 -04003094 if (unlikely(d_is_negative(dentry))) {
3095 error = -ENOENT;
3096 } else {
3097 path->dentry = dentry;
3098 path->mnt = nd->path.mnt;
3099 return 1;
3100 }
Sage Weil62b2ce92012-08-15 13:30:12 -07003101 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003102 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003103 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003104 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003105}
3106
Nick Piggin31e6b012011-01-07 17:49:52 +11003107/*
David Howells1acf0af2012-06-14 16:13:46 +01003108 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003109 *
3110 * Must be called with i_mutex held on parent.
3111 *
David Howells1acf0af2012-06-14 16:13:46 +01003112 * Returns 0 if the file was successfully atomically created (if necessary) and
3113 * opened. In this case the file will be returned attached to @file.
3114 *
3115 * Returns 1 if the file was not completely opened at this time, though lookups
3116 * and creations will have been performed and the dentry returned in @path will
3117 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
3118 * specified then a negative dentry may be returned.
3119 *
3120 * An error code is returned otherwise.
3121 *
3122 * FILE_CREATE will be set in @*opened if the dentry was created and will be
3123 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003124 */
Al Viro2675a4e2012-06-22 12:41:10 +04003125static int lookup_open(struct nameidata *nd, struct path *path,
3126 struct file *file,
3127 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04003128 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003129{
3130 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003131 struct inode *dir_inode = dir->d_inode;
Al Viro1643b432016-04-27 19:14:10 -04003132 int open_flag = op->open_flag;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003133 struct dentry *dentry;
Al Viro1643b432016-04-27 19:14:10 -04003134 int error, create_error = 0;
Al Viro1643b432016-04-27 19:14:10 -04003135 umode_t mode = op->mode;
Al Viro6fbd0712016-04-28 11:50:59 -04003136 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003137
Al Viroce8644f2016-04-26 14:17:56 -04003138 if (unlikely(IS_DEADDIR(dir_inode)))
3139 return -ENOENT;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003140
Al Viro47237682012-06-10 05:01:45 -04003141 *opened &= ~FILE_CREATED;
Al Viro6fbd0712016-04-28 11:50:59 -04003142 dentry = d_lookup(dir, &nd->last);
3143 for (;;) {
3144 if (!dentry) {
3145 dentry = d_alloc_parallel(dir, &nd->last, &wq);
3146 if (IS_ERR(dentry))
3147 return PTR_ERR(dentry);
3148 }
3149 if (d_in_lookup(dentry))
3150 break;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003151
Al Viro6fbd0712016-04-28 11:50:59 -04003152 if (!(dentry->d_flags & DCACHE_OP_REVALIDATE))
3153 break;
3154
3155 error = d_revalidate(dentry, nd->flags);
3156 if (likely(error > 0))
3157 break;
3158 if (error)
3159 goto out_dput;
3160 d_invalidate(dentry);
3161 dput(dentry);
3162 dentry = NULL;
3163 }
3164 if (dentry->d_inode) {
Al Viro6c51e512016-03-05 20:09:32 -05003165 /* Cached positive dentry: will open in f_op->open */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003166 goto out_no_open;
Al Viro6c51e512016-03-05 20:09:32 -05003167 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003168
Al Viro1643b432016-04-27 19:14:10 -04003169 /*
3170 * Checking write permission is tricky, bacuse we don't know if we are
3171 * going to actually need it: O_CREAT opens should work as long as the
3172 * file exists. But checking existence breaks atomicity. The trick is
3173 * to check access and if not granted clear O_CREAT from the flags.
3174 *
3175 * Another problem is returing the "right" error value (e.g. for an
3176 * O_EXCL open we want to return EEXIST not EROFS).
3177 */
3178 if (open_flag & O_CREAT) {
3179 if (!IS_POSIXACL(dir->d_inode))
3180 mode &= ~current_umask();
3181 if (unlikely(!got_write)) {
3182 create_error = -EROFS;
3183 open_flag &= ~O_CREAT;
3184 if (open_flag & (O_EXCL | O_TRUNC))
3185 goto no_open;
3186 /* No side effects, safe to clear O_CREAT */
3187 } else {
3188 create_error = may_o_create(&nd->path, dentry, mode);
3189 if (create_error) {
3190 open_flag &= ~O_CREAT;
3191 if (open_flag & O_EXCL)
3192 goto no_open;
3193 }
3194 }
3195 } else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) &&
3196 unlikely(!got_write)) {
3197 /*
3198 * No O_CREATE -> atomicity not a requirement -> fall
3199 * back to lookup + open
3200 */
3201 goto no_open;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003202 }
3203
Al Viro1643b432016-04-27 19:14:10 -04003204 if (dir_inode->i_op->atomic_open) {
3205 error = atomic_open(nd, dentry, path, file, op, open_flag,
3206 mode, opened);
3207 if (unlikely(error == -ENOENT) && create_error)
3208 error = create_error;
3209 return error;
3210 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003211
Al Viro1643b432016-04-27 19:14:10 -04003212no_open:
Al Viro6fbd0712016-04-28 11:50:59 -04003213 if (d_in_lookup(dentry)) {
Al Viro12fa5e22016-04-28 11:19:43 -04003214 struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry,
3215 nd->flags);
Al Viro6fbd0712016-04-28 11:50:59 -04003216 d_lookup_done(dentry);
Al Viro12fa5e22016-04-28 11:19:43 -04003217 if (unlikely(res)) {
3218 if (IS_ERR(res)) {
3219 error = PTR_ERR(res);
3220 goto out_dput;
3221 }
3222 dput(dentry);
3223 dentry = res;
3224 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003225 }
3226
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003227 /* Negative dentry, just create the file */
Al Viro1643b432016-04-27 19:14:10 -04003228 if (!dentry->d_inode && (open_flag & O_CREAT)) {
Al Viro47237682012-06-10 05:01:45 -04003229 *opened |= FILE_CREATED;
Al Viroce8644f2016-04-26 14:17:56 -04003230 audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE);
Al Viroce8644f2016-04-26 14:17:56 -04003231 if (!dir_inode->i_op->create) {
3232 error = -EACCES;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003233 goto out_dput;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003234 }
Al Viroce8644f2016-04-26 14:17:56 -04003235 error = dir_inode->i_op->create(dir_inode, dentry, mode,
Al Viro1643b432016-04-27 19:14:10 -04003236 open_flag & O_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003237 if (error)
3238 goto out_dput;
Al Viroce8644f2016-04-26 14:17:56 -04003239 fsnotify_create(dir_inode, dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003240 }
Al Viro1643b432016-04-27 19:14:10 -04003241 if (unlikely(create_error) && !dentry->d_inode) {
3242 error = create_error;
3243 goto out_dput;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003244 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003245out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003246 path->dentry = dentry;
3247 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04003248 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003249
3250out_dput:
3251 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003252 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003253}
3254
3255/*
Al Virofe2d35f2011-03-05 22:58:25 -05003256 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11003257 */
Al Viro896475d2015-04-22 18:02:17 -04003258static int do_last(struct nameidata *nd,
Al Viro2675a4e2012-06-22 12:41:10 +04003259 struct file *file, const struct open_flags *op,
Al Viro76ae2a52015-05-12 18:44:32 -04003260 int *opened)
Al Virofb1cc552009-12-24 01:58:28 -05003261{
Al Viroa1e28032009-12-24 02:12:06 -05003262 struct dentry *dir = nd->path.dentry;
Al Virob631f342020-02-01 16:26:45 +00003263 kuid_t dir_uid = nd->inode->i_uid;
3264 umode_t dir_mode = nd->inode->i_mode;
Al Viroca344a892011-03-09 00:36:45 -05003265 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003266 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04003267 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04003268 int acc_mode = op->acc_mode;
Al Viro254cf582015-05-05 09:40:46 -04003269 unsigned seq;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003270 struct inode *inode;
Al Viro896475d2015-04-22 18:02:17 -04003271 struct path path;
Al Viro16c2cd72011-02-22 15:50:10 -05003272 int error;
Al Virofb1cc552009-12-24 01:58:28 -05003273
Al Viroc3e380b2011-02-23 13:39:45 -05003274 nd->flags &= ~LOOKUP_PARENT;
3275 nd->flags |= op->intent;
3276
Al Virobc77daa2013-06-06 09:12:33 -04003277 if (nd->last_type != LAST_NORM) {
Al Virofe2d35f2011-03-05 22:58:25 -05003278 error = handle_dots(nd, nd->last_type);
Al Virodeb106c2015-05-08 18:05:21 -04003279 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003280 return error;
Miklos Szeredie83db162012-06-05 15:10:29 +02003281 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05003282 }
Al Viro67ee3ad2009-12-26 07:01:01 -05003283
Al Viroca344a892011-03-09 00:36:45 -05003284 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05003285 if (nd->last.name[nd->last.len])
3286 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3287 /* we _can_ be in RCU mode here */
Al Viro254cf582015-05-05 09:40:46 -04003288 error = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05003289 if (likely(error > 0))
Miklos Szeredi71574862012-06-05 15:10:14 +02003290 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003291
Miklos Szeredi71574862012-06-05 15:10:14 +02003292 if (error < 0)
Al Virodeb106c2015-05-08 18:05:21 -04003293 return error;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02003294
Miklos Szeredi71574862012-06-05 15:10:14 +02003295 BUG_ON(nd->inode != dir->d_inode);
Al Viro6583fe22016-03-05 18:14:03 -05003296 BUG_ON(nd->flags & LOOKUP_RCU);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003297 } else {
3298 /* create side of things */
3299 /*
3300 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3301 * has been cleared when we got to the last component we are
3302 * about to look up
3303 */
3304 error = complete_walk(nd);
Al Viroe8bb73d2015-05-08 16:28:42 -04003305 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003306 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02003307
Al Viro76ae2a52015-05-12 18:44:32 -04003308 audit_inode(nd->name, dir, LOOKUP_PARENT);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003309 /* trailing slashes? */
Al Virodeb106c2015-05-08 18:05:21 -04003310 if (unlikely(nd->last.name[nd->last.len]))
3311 return -EISDIR;
Al Virofe2d35f2011-03-05 22:58:25 -05003312 }
3313
Al Viro9cf843e2016-04-28 19:35:16 -04003314 if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
Al Viro64894cf2012-07-31 00:53:35 +04003315 error = mnt_want_write(nd->path.mnt);
3316 if (!error)
3317 got_write = true;
3318 /*
3319 * do _not_ fail yet - we might not need that or fail with
3320 * a different error; let lookup_open() decide; we'll be
3321 * dropping this one anyway.
3322 */
3323 }
Al Viro9cf843e2016-04-28 19:35:16 -04003324 if (open_flag & O_CREAT)
3325 inode_lock(dir->d_inode);
3326 else
3327 inode_lock_shared(dir->d_inode);
Al Viro896475d2015-04-22 18:02:17 -04003328 error = lookup_open(nd, &path, file, op, got_write, opened);
Al Viro9cf843e2016-04-28 19:35:16 -04003329 if (open_flag & O_CREAT)
3330 inode_unlock(dir->d_inode);
3331 else
3332 inode_unlock_shared(dir->d_inode);
Al Viroa1e28032009-12-24 02:12:06 -05003333
Al Viro2675a4e2012-06-22 12:41:10 +04003334 if (error <= 0) {
3335 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003336 goto out;
3337
Al Viro47237682012-06-10 05:01:45 -04003338 if ((*opened & FILE_CREATED) ||
Al Viro496ad9a2013-01-23 17:07:38 -05003339 !S_ISREG(file_inode(file)->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003340 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003341
Al Viro76ae2a52015-05-12 18:44:32 -04003342 audit_inode(nd->name, file->f_path.dentry, 0);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003343 goto opened;
3344 }
Al Virofb1cc552009-12-24 01:58:28 -05003345
Al Viro47237682012-06-10 05:01:45 -04003346 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05003347 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05003348 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003349 will_truncate = false;
Al Viro62fb4a12015-12-26 22:33:24 -05003350 acc_mode = 0;
Al Viro896475d2015-04-22 18:02:17 -04003351 path_to_nameidata(&path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02003352 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05003353 }
3354
3355 /*
Miklos Szeredid18e9002012-06-05 15:10:17 +02003356 * If atomic_open() acquired write access it is dropped now due to
3357 * possible mount and symlink following (this might be optimized away if
3358 * necessary...)
3359 */
Al Viro64894cf2012-07-31 00:53:35 +04003360 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02003361 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003362 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003363 }
3364
Al Viroe6ec03a2016-06-05 00:23:09 -04003365 error = follow_managed(&path, nd);
3366 if (unlikely(error < 0))
3367 return error;
3368
Al Viro6583fe22016-03-05 18:14:03 -05003369 if (unlikely(d_is_negative(path.dentry))) {
3370 path_to_nameidata(&path, nd);
3371 return -ENOENT;
3372 }
3373
3374 /*
3375 * create/update audit record if it already exists.
3376 */
3377 audit_inode(nd->name, path.dentry, 0);
3378
Al Virodeb106c2015-05-08 18:05:21 -04003379 if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
3380 path_to_nameidata(&path, nd);
3381 return -EEXIST;
3382 }
Al Virofb1cc552009-12-24 01:58:28 -05003383
Al Viro254cf582015-05-05 09:40:46 -04003384 seq = 0; /* out of RCU mode, so the value doesn't matter */
Al Virod4565642016-02-27 19:23:16 -05003385 inode = d_backing_inode(path.dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04003386finish_lookup:
Al Virod63ff282015-05-04 18:13:23 -04003387 if (nd->depth)
3388 put_link(nd);
Al Viro181548c2015-05-07 19:54:34 -04003389 error = should_follow_link(nd, &path, nd->flags & LOOKUP_FOLLOW,
3390 inode, seq);
Al Virodeb106c2015-05-08 18:05:21 -04003391 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04003392 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003393
Al Virofac7d192016-06-04 11:41:49 -04003394 path_to_nameidata(&path, nd);
Miklos Szeredidecf3402012-05-21 17:30:08 +02003395 nd->inode = inode;
Al Viro254cf582015-05-05 09:40:46 -04003396 nd->seq = seq;
Al Viroa3fbbde2011-11-07 21:21:26 +00003397 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
Al Virobc77daa2013-06-06 09:12:33 -04003398finish_open:
Al Viroa3fbbde2011-11-07 21:21:26 +00003399 error = complete_walk(nd);
Al Virofac7d192016-06-04 11:41:49 -04003400 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003401 return error;
Al Viro76ae2a52015-05-12 18:44:32 -04003402 audit_inode(nd->name, nd->path.dentry, 0);
Salvatore Mesoraca0c41bee2018-08-23 17:00:35 -07003403 if (open_flag & O_CREAT) {
3404 error = -EISDIR;
3405 if (d_is_dir(nd->path.dentry))
3406 goto out;
Al Viro51772992020-01-26 09:29:34 -05003407 error = may_create_in_sticky(dir_mode, dir_uid,
Salvatore Mesoraca0c41bee2018-08-23 17:00:35 -07003408 d_backing_inode(nd->path.dentry));
3409 if (unlikely(error))
3410 goto out;
3411 }
Miklos Szerediaf2f5542012-05-21 17:30:11 +02003412 error = -ENOTDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003413 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003414 goto out;
David Howells4bbcbd32015-03-17 22:16:40 +00003415 if (!d_is_reg(nd->path.dentry))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003416 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05003417
Al Viro0f9d1a12011-03-09 00:13:14 -05003418 if (will_truncate) {
3419 error = mnt_want_write(nd->path.mnt);
3420 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003421 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04003422 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05003423 }
Miklos Szeredie83db162012-06-05 15:10:29 +02003424finish_open_created:
Al Viro6ac08702016-04-26 00:02:50 -04003425 error = may_open(&nd->path, acc_mode, open_flag);
3426 if (error)
3427 goto out;
Miklos Szeredi4aa7c632014-10-24 00:14:35 +02003428 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3429 error = vfs_open(&nd->path, file, current_cred());
Al Virofac7d192016-06-04 11:41:49 -04003430 if (error)
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003431 goto out;
Al Virofac7d192016-06-04 11:41:49 -04003432 *opened |= FILE_OPENED;
Miklos Szeredia8277b92012-06-05 15:10:32 +02003433opened:
Al Viro2675a4e2012-06-22 12:41:10 +04003434 error = open_check_o_direct(file);
Al Virofe9ec822016-04-27 03:14:20 -04003435 if (!error)
3436 error = ima_file_check(file, op->acc_mode, *opened);
3437 if (!error && will_truncate)
Al Viro2675a4e2012-06-22 12:41:10 +04003438 error = handle_truncate(file);
Al Viroca344a892011-03-09 00:36:45 -05003439out:
Al Virofe9ec822016-04-27 03:14:20 -04003440 if (unlikely(error) && (*opened & FILE_OPENED))
3441 fput(file);
Al Viroc80567c2016-02-27 19:17:33 -05003442 if (unlikely(error > 0)) {
3443 WARN_ON(1);
3444 error = -EINVAL;
3445 }
Al Viro64894cf2012-07-31 00:53:35 +04003446 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05003447 mnt_drop_write(nd->path.mnt);
Al Viro2675a4e2012-06-22 12:41:10 +04003448 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003449}
3450
Al Viroc8a53ee2015-05-12 18:43:07 -04003451static int do_tmpfile(struct nameidata *nd, unsigned flags,
Al Viro60545d02013-06-07 01:20:27 -04003452 const struct open_flags *op,
3453 struct file *file, int *opened)
3454{
3455 static const struct qstr name = QSTR_INIT("/", 1);
Al Viro625b6d12015-05-12 16:36:12 -04003456 struct dentry *child;
Al Viro60545d02013-06-07 01:20:27 -04003457 struct inode *dir;
Al Viro625b6d12015-05-12 16:36:12 -04003458 struct path path;
Al Viroc8a53ee2015-05-12 18:43:07 -04003459 int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
Al Viro60545d02013-06-07 01:20:27 -04003460 if (unlikely(error))
3461 return error;
Al Viro625b6d12015-05-12 16:36:12 -04003462 error = mnt_want_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003463 if (unlikely(error))
3464 goto out;
Al Viro625b6d12015-05-12 16:36:12 -04003465 dir = path.dentry->d_inode;
Al Viro60545d02013-06-07 01:20:27 -04003466 /* we want directory to be writable */
Al Viro625b6d12015-05-12 16:36:12 -04003467 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Al Viro60545d02013-06-07 01:20:27 -04003468 if (error)
3469 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003470 if (!dir->i_op->tmpfile) {
3471 error = -EOPNOTSUPP;
3472 goto out2;
3473 }
Al Viro625b6d12015-05-12 16:36:12 -04003474 child = d_alloc(path.dentry, &name);
Al Viro60545d02013-06-07 01:20:27 -04003475 if (unlikely(!child)) {
3476 error = -ENOMEM;
3477 goto out2;
3478 }
Al Viro625b6d12015-05-12 16:36:12 -04003479 dput(path.dentry);
3480 path.dentry = child;
3481 error = dir->i_op->tmpfile(dir, child, op->mode);
Al Viro60545d02013-06-07 01:20:27 -04003482 if (error)
3483 goto out2;
Al Viroc8a53ee2015-05-12 18:43:07 -04003484 audit_inode(nd->name, child, 0);
Eric Rannaud69a91c22014-10-30 01:51:01 -07003485 /* Don't check for other permissions, the inode was just created */
Al Viro62fb4a12015-12-26 22:33:24 -05003486 error = may_open(&path, 0, op->open_flag);
Al Viro60545d02013-06-07 01:20:27 -04003487 if (error)
3488 goto out2;
Al Viro625b6d12015-05-12 16:36:12 -04003489 file->f_path.mnt = path.mnt;
3490 error = finish_open(file, child, NULL, opened);
Al Viro60545d02013-06-07 01:20:27 -04003491 if (error)
3492 goto out2;
3493 error = open_check_o_direct(file);
Al Virof4e0c302013-06-11 08:34:36 +04003494 if (error) {
Al Viro60545d02013-06-07 01:20:27 -04003495 fput(file);
Al Virof4e0c302013-06-11 08:34:36 +04003496 } else if (!(op->open_flag & O_EXCL)) {
3497 struct inode *inode = file_inode(file);
3498 spin_lock(&inode->i_lock);
3499 inode->i_state |= I_LINKABLE;
3500 spin_unlock(&inode->i_lock);
3501 }
Al Viro60545d02013-06-07 01:20:27 -04003502out2:
Al Viro625b6d12015-05-12 16:36:12 -04003503 mnt_drop_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003504out:
Al Viro625b6d12015-05-12 16:36:12 -04003505 path_put(&path);
Al Viro60545d02013-06-07 01:20:27 -04003506 return error;
3507}
3508
Al Viro6ac08702016-04-26 00:02:50 -04003509static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file)
3510{
3511 struct path path;
3512 int error = path_lookupat(nd, flags, &path);
3513 if (!error) {
3514 audit_inode(nd->name, path.dentry, 0);
3515 error = vfs_open(&path, file, current_cred());
3516 path_put(&path);
3517 }
3518 return error;
3519}
3520
Al Viroc8a53ee2015-05-12 18:43:07 -04003521static struct file *path_openat(struct nameidata *nd,
3522 const struct open_flags *op, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523{
Al Viro368ee9b2015-05-08 17:19:59 -04003524 const char *s;
Al Viro30d90492012-06-22 12:40:19 +04003525 struct file *file;
Al Viro47237682012-06-10 05:01:45 -04003526 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05003527 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11003528
Al Viro30d90492012-06-22 12:40:19 +04003529 file = get_empty_filp();
Al Viro1afc99b2013-02-14 20:41:04 -05003530 if (IS_ERR(file))
3531 return file;
Nick Piggin31e6b012011-01-07 17:49:52 +11003532
Al Viro30d90492012-06-22 12:40:19 +04003533 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11003534
Al Virobb458c62013-07-13 13:26:37 +04003535 if (unlikely(file->f_flags & __O_TMPFILE)) {
Al Viroc8a53ee2015-05-12 18:43:07 -04003536 error = do_tmpfile(nd, flags, op, file, &opened);
Al Virof15133d2015-05-08 22:53:15 -04003537 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003538 }
3539
Al Viro6ac08702016-04-26 00:02:50 -04003540 if (unlikely(file->f_flags & O_PATH)) {
3541 error = do_o_path(nd, flags, file);
3542 if (!error)
3543 opened |= FILE_OPENED;
3544 goto out2;
3545 }
3546
Al Viroc8a53ee2015-05-12 18:43:07 -04003547 s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04003548 if (IS_ERR(s)) {
3549 put_filp(file);
3550 return ERR_CAST(s);
3551 }
Al Viro3bdba282015-05-08 17:37:07 -04003552 while (!(error = link_path_walk(s, nd)) &&
Al Viro76ae2a52015-05-12 18:44:32 -04003553 (error = do_last(nd, file, op, &opened)) > 0) {
Al Viro73d049a2011-03-11 12:08:24 -05003554 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro3bdba282015-05-08 17:37:07 -04003555 s = trailing_symlink(nd);
3556 if (IS_ERR(s)) {
3557 error = PTR_ERR(s);
Al Viro2675a4e2012-06-22 12:41:10 +04003558 break;
Al Viro3bdba282015-05-08 17:37:07 -04003559 }
Al Viro806b6812009-12-26 07:16:40 -05003560 }
Al Virodeb106c2015-05-08 18:05:21 -04003561 terminate_walk(nd);
Al Virof15133d2015-05-08 22:53:15 -04003562out2:
Al Viro2675a4e2012-06-22 12:41:10 +04003563 if (!(opened & FILE_OPENED)) {
3564 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04003565 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003566 }
Al Viro2675a4e2012-06-22 12:41:10 +04003567 if (unlikely(error)) {
3568 if (error == -EOPENSTALE) {
3569 if (flags & LOOKUP_RCU)
3570 error = -ECHILD;
3571 else
3572 error = -ESTALE;
3573 }
3574 file = ERR_PTR(error);
3575 }
3576 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577}
3578
Jeff Layton669abf42012-10-10 16:43:10 -04003579struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +04003580 const struct open_flags *op)
Al Viro13aab422011-02-23 17:54:08 -05003581{
Al Viro9883d182015-05-13 07:28:08 -04003582 struct nameidata nd;
Al Virof9652e12013-06-11 08:23:01 +04003583 int flags = op->lookup_flags;
Al Viro13aab422011-02-23 17:54:08 -05003584 struct file *filp;
3585
Al Viro9883d182015-05-13 07:28:08 -04003586 set_nameidata(&nd, dfd, pathname);
Al Viroc8a53ee2015-05-12 18:43:07 -04003587 filp = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05003588 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003589 filp = path_openat(&nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05003590 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003591 filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003592 restore_nameidata();
Al Viro13aab422011-02-23 17:54:08 -05003593 return filp;
3594}
3595
Al Viro73d049a2011-03-11 12:08:24 -05003596struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
Al Virof9652e12013-06-11 08:23:01 +04003597 const char *name, const struct open_flags *op)
Al Viro73d049a2011-03-11 12:08:24 -05003598{
Al Viro9883d182015-05-13 07:28:08 -04003599 struct nameidata nd;
Al Viro73d049a2011-03-11 12:08:24 -05003600 struct file *file;
Paul Moore51689102015-01-22 00:00:03 -05003601 struct filename *filename;
Al Virof9652e12013-06-11 08:23:01 +04003602 int flags = op->lookup_flags | LOOKUP_ROOT;
Al Viro73d049a2011-03-11 12:08:24 -05003603
3604 nd.root.mnt = mnt;
3605 nd.root.dentry = dentry;
3606
David Howellsb18825a2013-09-12 19:22:53 +01003607 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05003608 return ERR_PTR(-ELOOP);
3609
Paul Moore51689102015-01-22 00:00:03 -05003610 filename = getname_kernel(name);
Viresh Kumara1c83682015-08-12 15:59:44 +05303611 if (IS_ERR(filename))
Paul Moore51689102015-01-22 00:00:03 -05003612 return ERR_CAST(filename);
3613
Al Viro9883d182015-05-13 07:28:08 -04003614 set_nameidata(&nd, -1, filename);
Al Viroc8a53ee2015-05-12 18:43:07 -04003615 file = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro73d049a2011-03-11 12:08:24 -05003616 if (unlikely(file == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003617 file = path_openat(&nd, op, flags);
Al Viro73d049a2011-03-11 12:08:24 -05003618 if (unlikely(file == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003619 file = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003620 restore_nameidata();
Paul Moore51689102015-01-22 00:00:03 -05003621 putname(filename);
Al Viro73d049a2011-03-11 12:08:24 -05003622 return file;
3623}
3624
Al Virofa14a0b2015-01-22 02:16:49 -05003625static struct dentry *filename_create(int dfd, struct filename *name,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003626 struct path *path, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003628 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viro391172c2015-05-09 11:19:16 -04003629 struct qstr last;
3630 int type;
Jan Karac30dabf2012-06-12 16:20:30 +02003631 int err2;
Jeff Layton1ac12b42012-12-11 12:10:06 -05003632 int error;
3633 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3634
3635 /*
3636 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3637 * other flags passed in are ignored!
3638 */
3639 lookup_flags &= LOOKUP_REVAL;
3640
Al Viro5c31b6c2015-05-12 17:32:54 -04003641 name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
3642 if (IS_ERR(name))
3643 return ERR_CAST(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003645 /*
3646 * Yucky last component or no last component at all?
3647 * (foo/., foo/.., /////)
3648 */
Al Viro5c31b6c2015-05-12 17:32:54 -04003649 if (unlikely(type != LAST_NORM))
Al Viroed75e952011-06-27 16:53:43 -04003650 goto out;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003651
Jan Karac30dabf2012-06-12 16:20:30 +02003652 /* don't fail immediately if it's r/o, at least try to report other errors */
Al Viro391172c2015-05-09 11:19:16 -04003653 err2 = mnt_want_write(path->mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003654 /*
3655 * Do the final lookup.
3656 */
Al Viro391172c2015-05-09 11:19:16 -04003657 lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Al Viro59551022016-01-22 15:40:57 -05003658 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04003659 dentry = __lookup_hash(&last, path->dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003661 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003662
Al Viroa8104a92012-07-20 02:25:00 +04003663 error = -EEXIST;
David Howellsb18825a2013-09-12 19:22:53 +01003664 if (d_is_positive(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003665 goto fail;
David Howellsb18825a2013-09-12 19:22:53 +01003666
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003667 /*
3668 * Special case - lookup gave negative, but... we had foo/bar/
3669 * From the vfs_mknod() POV we just have a negative dentry -
3670 * all is fine. Let's be bastards - you had / on the end, you've
3671 * been asking for (non-existent) directory. -ENOENT for you.
3672 */
Al Viro391172c2015-05-09 11:19:16 -04003673 if (unlikely(!is_dir && last.name[last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003674 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003675 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003676 }
Jan Karac30dabf2012-06-12 16:20:30 +02003677 if (unlikely(err2)) {
3678 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003679 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003680 }
Al Viro181c37b2015-05-12 17:21:25 -04003681 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683fail:
Al Viroa8104a92012-07-20 02:25:00 +04003684 dput(dentry);
3685 dentry = ERR_PTR(error);
3686unlock:
Al Viro59551022016-01-22 15:40:57 -05003687 inode_unlock(path->dentry->d_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02003688 if (!err2)
Al Viro391172c2015-05-09 11:19:16 -04003689 mnt_drop_write(path->mnt);
Al Viroed75e952011-06-27 16:53:43 -04003690out:
Al Viro391172c2015-05-09 11:19:16 -04003691 path_put(path);
Al Viro181c37b2015-05-12 17:21:25 -04003692 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 return dentry;
3694}
Al Virofa14a0b2015-01-22 02:16:49 -05003695
3696struct dentry *kern_path_create(int dfd, const char *pathname,
3697 struct path *path, unsigned int lookup_flags)
3698{
Al Viro181c37b2015-05-12 17:21:25 -04003699 return filename_create(dfd, getname_kernel(pathname),
3700 path, lookup_flags);
Al Virofa14a0b2015-01-22 02:16:49 -05003701}
Al Virodae6ad82011-06-26 11:50:15 -04003702EXPORT_SYMBOL(kern_path_create);
3703
Al Viro921a1652012-07-20 01:15:31 +04003704void done_path_create(struct path *path, struct dentry *dentry)
3705{
3706 dput(dentry);
Al Viro59551022016-01-22 15:40:57 -05003707 inode_unlock(path->dentry->d_inode);
Al Viroa8104a92012-07-20 02:25:00 +04003708 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003709 path_put(path);
3710}
3711EXPORT_SYMBOL(done_path_create);
3712
Al Viro520ae682015-05-13 07:00:28 -04003713inline struct dentry *user_path_create(int dfd, const char __user *pathname,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003714 struct path *path, unsigned int lookup_flags)
Al Virodae6ad82011-06-26 11:50:15 -04003715{
Al Viro181c37b2015-05-12 17:21:25 -04003716 return filename_create(dfd, getname(pathname), path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003717}
3718EXPORT_SYMBOL(user_path_create);
3719
Al Viro1a67aaf2011-07-26 01:52:52 -04003720int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003722 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
3724 if (error)
3725 return error;
3726
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003727 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 return -EPERM;
3729
Al Viroacfa4382008-12-04 10:06:33 -05003730 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 return -EPERM;
3732
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003733 error = devcgroup_inode_mknod(mode, dev);
3734 if (error)
3735 return error;
3736
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 error = security_inode_mknod(dir, dentry, mode, dev);
3738 if (error)
3739 return error;
3740
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003742 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003743 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 return error;
3745}
Al Viro4d359502014-03-14 12:20:17 -04003746EXPORT_SYMBOL(vfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747
Al Virof69aac02011-07-26 04:31:40 -04003748static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003749{
3750 switch (mode & S_IFMT) {
3751 case S_IFREG:
3752 case S_IFCHR:
3753 case S_IFBLK:
3754 case S_IFIFO:
3755 case S_IFSOCK:
3756 case 0: /* zero mode translates to S_IFREG */
3757 return 0;
3758 case S_IFDIR:
3759 return -EPERM;
3760 default:
3761 return -EINVAL;
3762 }
3763}
3764
Al Viro8208a222011-07-25 17:32:17 -04003765SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003766 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767{
Al Viro2ad94ae2008-07-21 09:32:51 -04003768 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003769 struct path path;
3770 int error;
Jeff Layton972567f2012-12-20 16:00:10 -05003771 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772
Al Viro8e4bfca2012-07-20 01:17:26 +04003773 error = may_mknod(mode);
3774 if (error)
3775 return error;
Jeff Layton972567f2012-12-20 16:00:10 -05003776retry:
3777 dentry = user_path_create(dfd, filename, &path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003778 if (IS_ERR(dentry))
3779 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003780
Al Virodae6ad82011-06-26 11:50:15 -04003781 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003782 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003783 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003784 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003785 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003786 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04003788 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Mimi Zohar05d1a712016-02-29 19:52:05 -05003789 if (!error)
3790 ima_post_path_mknod(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 break;
3792 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04003793 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 new_decode_dev(dev));
3795 break;
3796 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003797 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 }
Al Viroa8104a92012-07-20 02:25:00 +04003800out:
Al Viro921a1652012-07-20 01:15:31 +04003801 done_path_create(&path, dentry);
Jeff Layton972567f2012-12-20 16:00:10 -05003802 if (retry_estale(error, lookup_flags)) {
3803 lookup_flags |= LOOKUP_REVAL;
3804 goto retry;
3805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 return error;
3807}
3808
Al Viro8208a222011-07-25 17:32:17 -04003809SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003810{
3811 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3812}
3813
Al Viro18bb1db2011-07-26 01:41:39 -04003814int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003816 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003817 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818
3819 if (error)
3820 return error;
3821
Al Viroacfa4382008-12-04 10:06:33 -05003822 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823 return -EPERM;
3824
3825 mode &= (S_IRWXUGO|S_ISVTX);
3826 error = security_inode_mkdir(dir, dentry, mode);
3827 if (error)
3828 return error;
3829
Al Viro8de52772012-02-06 12:45:27 -05003830 if (max_links && dir->i_nlink >= max_links)
3831 return -EMLINK;
3832
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003834 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003835 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 return error;
3837}
Al Viro4d359502014-03-14 12:20:17 -04003838EXPORT_SYMBOL(vfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839
Al Viroa218d0f2011-11-21 14:59:34 -05003840SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841{
Dave Hansen6902d922006-09-30 23:29:01 -07003842 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003843 struct path path;
3844 int error;
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003845 unsigned int lookup_flags = LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003847retry:
3848 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003849 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003850 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003851
Al Virodae6ad82011-06-26 11:50:15 -04003852 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003853 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003854 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003855 if (!error)
3856 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003857 done_path_create(&path, dentry);
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003858 if (retry_estale(error, lookup_flags)) {
3859 lookup_flags |= LOOKUP_REVAL;
3860 goto retry;
3861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 return error;
3863}
3864
Al Viroa218d0f2011-11-21 14:59:34 -05003865SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003866{
3867 return sys_mkdirat(AT_FDCWD, pathname, mode);
3868}
3869
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3871{
3872 int error = may_delete(dir, dentry, 1);
3873
3874 if (error)
3875 return error;
3876
Al Viroacfa4382008-12-04 10:06:33 -05003877 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 return -EPERM;
3879
Al Viro1d2ef592011-09-14 18:55:41 +01003880 dget(dentry);
Al Viro59551022016-01-22 15:40:57 -05003881 inode_lock(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882
Sage Weil912dbc12011-05-24 13:06:11 -07003883 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07003884 if (is_local_mountpoint(dentry))
Sage Weil912dbc12011-05-24 13:06:11 -07003885 goto out;
3886
3887 error = security_inode_rmdir(dir, dentry);
3888 if (error)
3889 goto out;
3890
Sage Weil3cebde22011-05-29 21:20:59 -07003891 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003892 error = dir->i_op->rmdir(dir, dentry);
3893 if (error)
3894 goto out;
3895
3896 dentry->d_inode->i_flags |= S_DEAD;
3897 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003898 detach_mounts(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003899
3900out:
Al Viro59551022016-01-22 15:40:57 -05003901 inode_unlock(dentry->d_inode);
Al Viro1d2ef592011-09-14 18:55:41 +01003902 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003903 if (!error)
3904 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 return error;
3906}
Al Viro4d359502014-03-14 12:20:17 -04003907EXPORT_SYMBOL(vfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003909static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910{
3911 int error = 0;
Jeff Layton91a27b22012-10-10 15:25:28 -04003912 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04003914 struct path path;
3915 struct qstr last;
3916 int type;
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003917 unsigned int lookup_flags = 0;
3918retry:
Al Virof5beed72015-04-30 16:09:11 -04003919 name = user_path_parent(dfd, pathname,
3920 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003921 if (IS_ERR(name))
3922 return PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
Al Virof5beed72015-04-30 16:09:11 -04003924 switch (type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003925 case LAST_DOTDOT:
3926 error = -ENOTEMPTY;
3927 goto exit1;
3928 case LAST_DOT:
3929 error = -EINVAL;
3930 goto exit1;
3931 case LAST_ROOT:
3932 error = -EBUSY;
3933 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003935
Al Virof5beed72015-04-30 16:09:11 -04003936 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02003937 if (error)
3938 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003939
Al Viro59551022016-01-22 15:40:57 -05003940 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04003941 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003943 if (IS_ERR(dentry))
3944 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003945 if (!dentry->d_inode) {
3946 error = -ENOENT;
3947 goto exit3;
3948 }
Al Virof5beed72015-04-30 16:09:11 -04003949 error = security_path_rmdir(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003950 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003951 goto exit3;
Al Virof5beed72015-04-30 16:09:11 -04003952 error = vfs_rmdir(path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08003953exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003954 dput(dentry);
3955exit2:
Al Viro59551022016-01-22 15:40:57 -05003956 inode_unlock(path.dentry->d_inode);
Al Virof5beed72015-04-30 16:09:11 -04003957 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958exit1:
Al Virof5beed72015-04-30 16:09:11 -04003959 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 putname(name);
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003961 if (retry_estale(error, lookup_flags)) {
3962 lookup_flags |= LOOKUP_REVAL;
3963 goto retry;
3964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 return error;
3966}
3967
Heiko Carstens3cdad422009-01-14 14:14:22 +01003968SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003969{
3970 return do_rmdir(AT_FDCWD, pathname);
3971}
3972
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003973/**
3974 * vfs_unlink - unlink a filesystem object
3975 * @dir: parent directory
3976 * @dentry: victim
3977 * @delegated_inode: returns victim inode, if the inode is delegated.
3978 *
3979 * The caller must hold dir->i_mutex.
3980 *
3981 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3982 * return a reference to the inode in delegated_inode. The caller
3983 * should then break the delegation on that inode and retry. Because
3984 * breaking a delegation may take a long time, the caller should drop
3985 * dir->i_mutex before doing so.
3986 *
3987 * Alternatively, a caller may pass NULL for delegated_inode. This may
3988 * be appropriate for callers that expect the underlying filesystem not
3989 * to be NFS exported.
3990 */
3991int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992{
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003993 struct inode *target = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 int error = may_delete(dir, dentry, 0);
3995
3996 if (error)
3997 return error;
3998
Al Viroacfa4382008-12-04 10:06:33 -05003999 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 return -EPERM;
4001
Al Viro59551022016-01-22 15:40:57 -05004002 inode_lock(target);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004003 if (is_local_mountpoint(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 error = -EBUSY;
4005 else {
4006 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05004007 if (!error) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07004008 error = try_break_deleg(target, delegated_inode);
4009 if (error)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004010 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 error = dir->i_op->unlink(dir, dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004012 if (!error) {
Al Virod83c49f2010-04-30 17:17:09 -04004013 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004014 detach_mounts(dentry);
4015 }
Al Virobec10522010-03-03 14:12:08 -05004016 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 }
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004018out:
Al Viro59551022016-01-22 15:40:57 -05004019 inode_unlock(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
4021 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
4022 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
J. Bruce Fields9accbb92012-08-28 07:03:24 -04004023 fsnotify_link_count(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 }
Robert Love0eeca282005-07-12 17:06:03 -04004026
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 return error;
4028}
Al Viro4d359502014-03-14 12:20:17 -04004029EXPORT_SYMBOL(vfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030
4031/*
4032 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004033 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 * writeout happening, and we don't want to prevent access to the directory
4035 * while waiting on the I/O.
4036 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004037static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038{
Al Viro2ad94ae2008-07-21 09:32:51 -04004039 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04004040 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04004042 struct path path;
4043 struct qstr last;
4044 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 struct inode *inode = NULL;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004046 struct inode *delegated_inode = NULL;
Jeff Layton5d18f812012-12-20 16:38:04 -05004047 unsigned int lookup_flags = 0;
4048retry:
Al Virof5beed72015-04-30 16:09:11 -04004049 name = user_path_parent(dfd, pathname,
4050 &path, &last, &type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004051 if (IS_ERR(name))
4052 return PTR_ERR(name);
Al Viro2ad94ae2008-07-21 09:32:51 -04004053
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054 error = -EISDIR;
Al Virof5beed72015-04-30 16:09:11 -04004055 if (type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09004057
Al Virof5beed72015-04-30 16:09:11 -04004058 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004059 if (error)
4060 goto exit1;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004061retry_deleg:
Al Viro59551022016-01-22 15:40:57 -05004062 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04004063 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 error = PTR_ERR(dentry);
4065 if (!IS_ERR(dentry)) {
4066 /* Why not before? Because we want correct error value */
Al Virof5beed72015-04-30 16:09:11 -04004067 if (last.name[last.len])
Török Edwin50338b82011-06-16 00:06:14 +03004068 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 inode = dentry->d_inode;
David Howellsb18825a2013-09-12 19:22:53 +01004070 if (d_is_negative(dentry))
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04004071 goto slashes;
4072 ihold(inode);
Al Virof5beed72015-04-30 16:09:11 -04004073 error = security_path_unlink(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004074 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004075 goto exit2;
Al Virof5beed72015-04-30 16:09:11 -04004076 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02004077exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 dput(dentry);
4079 }
Al Viro59551022016-01-22 15:40:57 -05004080 inode_unlock(path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 if (inode)
4082 iput(inode); /* truncate the inode here */
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004083 inode = NULL;
4084 if (delegated_inode) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07004085 error = break_deleg_wait(&delegated_inode);
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004086 if (!error)
4087 goto retry_deleg;
4088 }
Al Virof5beed72015-04-30 16:09:11 -04004089 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090exit1:
Al Virof5beed72015-04-30 16:09:11 -04004091 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 putname(name);
Jeff Layton5d18f812012-12-20 16:38:04 -05004093 if (retry_estale(error, lookup_flags)) {
4094 lookup_flags |= LOOKUP_REVAL;
4095 inode = NULL;
4096 goto retry;
4097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 return error;
4099
4100slashes:
David Howellsb18825a2013-09-12 19:22:53 +01004101 if (d_is_negative(dentry))
4102 error = -ENOENT;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02004103 else if (d_is_dir(dentry))
David Howellsb18825a2013-09-12 19:22:53 +01004104 error = -EISDIR;
4105 else
4106 error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 goto exit2;
4108}
4109
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004110SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004111{
4112 if ((flag & ~AT_REMOVEDIR) != 0)
4113 return -EINVAL;
4114
4115 if (flag & AT_REMOVEDIR)
4116 return do_rmdir(dfd, pathname);
4117
4118 return do_unlinkat(dfd, pathname);
4119}
4120
Heiko Carstens3480b252009-01-14 14:14:16 +01004121SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004122{
4123 return do_unlinkat(AT_FDCWD, pathname);
4124}
4125
Miklos Szeredidb2e7472008-06-24 16:50:16 +02004126int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127{
Miklos Szeredia95164d2008-07-30 15:08:48 +02004128 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129
4130 if (error)
4131 return error;
4132
Al Viroacfa4382008-12-04 10:06:33 -05004133 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134 return -EPERM;
4135
4136 error = security_inode_symlink(dir, dentry, oldname);
4137 if (error)
4138 return error;
4139
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07004141 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00004142 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 return error;
4144}
Al Viro4d359502014-03-14 12:20:17 -04004145EXPORT_SYMBOL(vfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004147SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
4148 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149{
Al Viro2ad94ae2008-07-21 09:32:51 -04004150 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04004151 struct filename *from;
Dave Hansen6902d922006-09-30 23:29:01 -07004152 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004153 struct path path;
Jeff Laytonf46d3562012-12-11 12:10:08 -05004154 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004155
4156 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04004157 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 return PTR_ERR(from);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004159retry:
4160 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07004161 error = PTR_ERR(dentry);
4162 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004163 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07004164
Jeff Layton91a27b22012-10-10 15:25:28 -04004165 error = security_path_symlink(&path, dentry, from->name);
Al Viroa8104a92012-07-20 02:25:00 +04004166 if (!error)
Jeff Layton91a27b22012-10-10 15:25:28 -04004167 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
Al Viro921a1652012-07-20 01:15:31 +04004168 done_path_create(&path, dentry);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004169 if (retry_estale(error, lookup_flags)) {
4170 lookup_flags |= LOOKUP_REVAL;
4171 goto retry;
4172 }
Dave Hansen6902d922006-09-30 23:29:01 -07004173out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174 putname(from);
4175 return error;
4176}
4177
Heiko Carstens3480b252009-01-14 14:14:16 +01004178SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004179{
4180 return sys_symlinkat(oldname, AT_FDCWD, newname);
4181}
4182
J. Bruce Fields146a8592011-09-20 17:14:31 -04004183/**
4184 * vfs_link - create a new link
4185 * @old_dentry: object to be linked
4186 * @dir: new parent
4187 * @new_dentry: where to create the new link
4188 * @delegated_inode: returns inode needing a delegation break
4189 *
4190 * The caller must hold dir->i_mutex
4191 *
4192 * If vfs_link discovers a delegation on the to-be-linked file in need
4193 * of breaking, it will return -EWOULDBLOCK and return a reference to the
4194 * inode in delegated_inode. The caller should then break the delegation
4195 * and retry. Because breaking a delegation may take a long time, the
4196 * caller should drop the i_mutex before doing so.
4197 *
4198 * Alternatively, a caller may pass NULL for delegated_inode. This may
4199 * be appropriate for callers that expect the underlying filesystem not
4200 * to be NFS exported.
4201 */
4202int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203{
4204 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05004205 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 int error;
4207
4208 if (!inode)
4209 return -ENOENT;
4210
Miklos Szeredia95164d2008-07-30 15:08:48 +02004211 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 if (error)
4213 return error;
4214
4215 if (dir->i_sb != inode->i_sb)
4216 return -EXDEV;
4217
4218 /*
4219 * A link to an append-only or immutable file cannot be created.
4220 */
4221 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4222 return -EPERM;
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05004223 /*
4224 * Updating the link count will likely cause i_uid and i_gid to
4225 * be writen back improperly if their true value is unknown to
4226 * the vfs.
4227 */
4228 if (HAS_UNMAPPED_ID(inode))
4229 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05004230 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004232 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 return -EPERM;
4234
4235 error = security_inode_link(old_dentry, dir, new_dentry);
4236 if (error)
4237 return error;
4238
Al Viro59551022016-01-22 15:40:57 -05004239 inode_lock(inode);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304240 /* Make sure we don't allow creating hardlink to an unlinked file */
Al Virof4e0c302013-06-11 08:34:36 +04004241 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304242 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05004243 else if (max_links && inode->i_nlink >= max_links)
4244 error = -EMLINK;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004245 else {
4246 error = try_break_deleg(inode, delegated_inode);
4247 if (!error)
4248 error = dir->i_op->link(old_dentry, dir, new_dentry);
4249 }
Al Virof4e0c302013-06-11 08:34:36 +04004250
4251 if (!error && (inode->i_state & I_LINKABLE)) {
4252 spin_lock(&inode->i_lock);
4253 inode->i_state &= ~I_LINKABLE;
4254 spin_unlock(&inode->i_lock);
4255 }
Al Viro59551022016-01-22 15:40:57 -05004256 inode_unlock(inode);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07004257 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004258 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 return error;
4260}
Al Viro4d359502014-03-14 12:20:17 -04004261EXPORT_SYMBOL(vfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262
4263/*
4264 * Hardlinks are often used in delicate situations. We avoid
4265 * security-related surprises by not following symlinks on the
4266 * newname. --KAB
4267 *
4268 * We don't follow them on the oldname either to be compatible
4269 * with linux 2.0, and to avoid hard-linking to directories
4270 * and other special files. --ADM
4271 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004272SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4273 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274{
4275 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004276 struct path old_path, new_path;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004277 struct inode *delegated_inode = NULL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304278 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304281 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004282 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304283 /*
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004284 * To use null names we require CAP_DAC_READ_SEARCH
4285 * This ensures that not everyone will be able to create
4286 * handlink using the passed filedescriptor.
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304287 */
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004288 if (flags & AT_EMPTY_PATH) {
4289 if (!capable(CAP_DAC_READ_SEARCH))
4290 return -ENOENT;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304291 how = LOOKUP_EMPTY;
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004292 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004293
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304294 if (flags & AT_SYMLINK_FOLLOW)
4295 how |= LOOKUP_FOLLOW;
Jeff Layton442e31c2012-12-20 16:15:38 -05004296retry:
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304297 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04004299 return error;
4300
Jeff Layton442e31c2012-12-20 16:15:38 -05004301 new_dentry = user_path_create(newdfd, newname, &new_path,
4302 (how & LOOKUP_REVAL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07004304 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004305 goto out;
4306
4307 error = -EXDEV;
4308 if (old_path.mnt != new_path.mnt)
4309 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07004310 error = may_linkat(&old_path);
4311 if (unlikely(error))
4312 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04004313 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004314 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04004315 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004316 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
Dave Hansen75c3f292008-02-15 14:37:45 -08004317out_dput:
Al Viro921a1652012-07-20 01:15:31 +04004318 done_path_create(&new_path, new_dentry);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004319 if (delegated_inode) {
4320 error = break_deleg_wait(&delegated_inode);
Oleg Drokind22e6332014-01-31 15:41:58 -05004321 if (!error) {
4322 path_put(&old_path);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004323 goto retry;
Oleg Drokind22e6332014-01-31 15:41:58 -05004324 }
J. Bruce Fields146a8592011-09-20 17:14:31 -04004325 }
Jeff Layton442e31c2012-12-20 16:15:38 -05004326 if (retry_estale(error, how)) {
Oleg Drokind22e6332014-01-31 15:41:58 -05004327 path_put(&old_path);
Jeff Layton442e31c2012-12-20 16:15:38 -05004328 how |= LOOKUP_REVAL;
4329 goto retry;
4330 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331out:
Al Viro2d8f3032008-07-22 09:59:21 -04004332 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333
4334 return error;
4335}
4336
Heiko Carstens3480b252009-01-14 14:14:16 +01004337SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004338{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004339 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004340}
4341
Miklos Szeredibc270272014-04-01 17:08:42 +02004342/**
4343 * vfs_rename - rename a filesystem object
4344 * @old_dir: parent of source
4345 * @old_dentry: source
4346 * @new_dir: parent of destination
4347 * @new_dentry: destination
4348 * @delegated_inode: returns an inode needing a delegation break
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004349 * @flags: rename flags
Miklos Szeredibc270272014-04-01 17:08:42 +02004350 *
4351 * The caller must hold multiple mutexes--see lock_rename()).
4352 *
4353 * If vfs_rename discovers a delegation in need of breaking at either
4354 * the source or destination, it will return -EWOULDBLOCK and return a
4355 * reference to the inode in delegated_inode. The caller should then
4356 * break the delegation and retry. Because breaking a delegation may
4357 * take a long time, the caller should drop all locks before doing
4358 * so.
4359 *
4360 * Alternatively, a caller may pass NULL for delegated_inode. This may
4361 * be appropriate for callers that expect the underlying filesystem not
4362 * to be NFS exported.
4363 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364 * The worst of all namespace operations - renaming directory. "Perverted"
4365 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4366 * Problems:
J. Bruce Fieldsd03b29a2014-02-17 16:52:33 -05004367 * a) we can get into loop creation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368 * b) race potential - two innocent renames can create a loop together.
4369 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004370 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 * story.
J. Bruce Fields6cedba82012-03-05 11:40:41 -05004372 * c) we have to lock _four_ objects - parents and victim (if it exists),
4373 * and source (if it is not a directory).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004374 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 * whether the target exists). Solution: try to be smart with locking
4376 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004377 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378 * move will be locked. Thus we can rank directories by the tree
4379 * (ancestors first) and rank all non-directories after them.
4380 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004381 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 * HOWEVER, it relies on the assumption that any object with ->lookup()
4383 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4384 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07004385 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004386 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05004388 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389 * locking].
4390 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004392 struct inode *new_dir, struct dentry *new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004393 struct inode **delegated_inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394{
4395 int error;
Miklos Szeredibc270272014-04-01 17:08:42 +02004396 bool is_dir = d_is_dir(old_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004397 struct inode *source = old_dentry->d_inode;
4398 struct inode *target = new_dentry->d_inode;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004399 bool new_is_dir = false;
4400 unsigned max_links = new_dir->i_sb->s_max_links;
Al Viroad25f112017-07-07 14:51:19 -04004401 struct name_snapshot old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004402
Miklos Szeredi9409e222016-05-11 01:16:37 +02004403 /*
4404 * Check source == target.
4405 * On overlayfs need to look at underlying inodes.
4406 */
Miklos Szeredi2d902672016-06-30 08:53:27 +02004407 if (d_real_inode(old_dentry) == d_real_inode(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004408 return 0;
4409
Linus Torvalds1da177e2005-04-16 15:20:36 -07004410 error = may_delete(old_dir, old_dentry, is_dir);
4411 if (error)
4412 return error;
4413
Miklos Szeredida1ce062014-04-01 17:08:43 +02004414 if (!target) {
Miklos Szeredia95164d2008-07-30 15:08:48 +02004415 error = may_create(new_dir, new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004416 } else {
4417 new_is_dir = d_is_dir(new_dentry);
4418
4419 if (!(flags & RENAME_EXCHANGE))
4420 error = may_delete(new_dir, new_dentry, is_dir);
4421 else
4422 error = may_delete(new_dir, new_dentry, new_is_dir);
4423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424 if (error)
4425 return error;
4426
Miklos Szeredi2773bf02016-09-27 11:03:58 +02004427 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004428 return -EPERM;
4429
Miklos Szeredibc270272014-04-01 17:08:42 +02004430 /*
4431 * If we are going to change the parent - check write permissions,
4432 * we'll need to flip '..'.
4433 */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004434 if (new_dir != old_dir) {
4435 if (is_dir) {
4436 error = inode_permission(source, MAY_WRITE);
4437 if (error)
4438 return error;
4439 }
4440 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4441 error = inode_permission(target, MAY_WRITE);
4442 if (error)
4443 return error;
4444 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004445 }
Robert Love0eeca282005-07-12 17:06:03 -04004446
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004447 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4448 flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004449 if (error)
4450 return error;
4451
Al Viroad25f112017-07-07 14:51:19 -04004452 take_dentry_name_snapshot(&old_name, old_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004453 dget(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004454 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004455 lock_two_nondirectories(source, target);
4456 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004457 inode_lock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004458
4459 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07004460 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004461 goto out;
4462
Miklos Szeredida1ce062014-04-01 17:08:43 +02004463 if (max_links && new_dir != old_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004464 error = -EMLINK;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004465 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
Miklos Szeredibc270272014-04-01 17:08:42 +02004466 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004467 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4468 old_dir->i_nlink >= max_links)
4469 goto out;
4470 }
4471 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4472 shrink_dcache_parent(new_dentry);
4473 if (!is_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004474 error = try_break_deleg(source, delegated_inode);
4475 if (error)
4476 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004477 }
4478 if (target && !new_is_dir) {
4479 error = try_break_deleg(target, delegated_inode);
4480 if (error)
4481 goto out;
Miklos Szeredibc270272014-04-01 17:08:42 +02004482 }
Miklos Szeredi2773bf02016-09-27 11:03:58 +02004483 error = old_dir->i_op->rename(old_dir, old_dentry,
Miklos Szeredi18fc84d2016-09-27 11:03:58 +02004484 new_dir, new_dentry, flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004485 if (error)
4486 goto out;
4487
Miklos Szeredida1ce062014-04-01 17:08:43 +02004488 if (!(flags & RENAME_EXCHANGE) && target) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004489 if (is_dir)
4490 target->i_flags |= S_DEAD;
4491 dont_mount(new_dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004492 detach_mounts(new_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004493 }
Miklos Szeredida1ce062014-04-01 17:08:43 +02004494 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4495 if (!(flags & RENAME_EXCHANGE))
4496 d_move(old_dentry, new_dentry);
4497 else
4498 d_exchange(old_dentry, new_dentry);
4499 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004500out:
Miklos Szeredida1ce062014-04-01 17:08:43 +02004501 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004502 unlock_two_nondirectories(source, target);
4503 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004504 inode_unlock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004505 dput(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004506 if (!error) {
Al Viroad25f112017-07-07 14:51:19 -04004507 fsnotify_move(old_dir, new_dir, old_name.name, is_dir,
Miklos Szeredida1ce062014-04-01 17:08:43 +02004508 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4509 if (flags & RENAME_EXCHANGE) {
4510 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4511 new_is_dir, NULL, new_dentry);
4512 }
4513 }
Al Viroad25f112017-07-07 14:51:19 -04004514 release_dentry_name_snapshot(&old_name);
Robert Love0eeca282005-07-12 17:06:03 -04004515
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 return error;
4517}
Al Viro4d359502014-03-14 12:20:17 -04004518EXPORT_SYMBOL(vfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004519
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004520SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4521 int, newdfd, const char __user *, newname, unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522{
Al Viro2ad94ae2008-07-21 09:32:51 -04004523 struct dentry *old_dentry, *new_dentry;
4524 struct dentry *trap;
Al Virof5beed72015-04-30 16:09:11 -04004525 struct path old_path, new_path;
4526 struct qstr old_last, new_last;
4527 int old_type, new_type;
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004528 struct inode *delegated_inode = NULL;
Jeff Layton91a27b22012-10-10 15:25:28 -04004529 struct filename *from;
4530 struct filename *to;
Al Virof5beed72015-04-30 16:09:11 -04004531 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
Jeff Laytonc6a94282012-12-11 12:10:10 -05004532 bool should_retry = false;
Al Viro2ad94ae2008-07-21 09:32:51 -04004533 int error;
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004534
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004535 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredida1ce062014-04-01 17:08:43 +02004536 return -EINVAL;
4537
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004538 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4539 (flags & RENAME_EXCHANGE))
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004540 return -EINVAL;
4541
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004542 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4543 return -EPERM;
4544
Al Virof5beed72015-04-30 16:09:11 -04004545 if (flags & RENAME_EXCHANGE)
4546 target_flags = 0;
4547
Jeff Laytonc6a94282012-12-11 12:10:10 -05004548retry:
Al Virof5beed72015-04-30 16:09:11 -04004549 from = user_path_parent(olddfd, oldname,
4550 &old_path, &old_last, &old_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004551 if (IS_ERR(from)) {
4552 error = PTR_ERR(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553 goto exit;
Jeff Layton91a27b22012-10-10 15:25:28 -04004554 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555
Al Virof5beed72015-04-30 16:09:11 -04004556 to = user_path_parent(newdfd, newname,
4557 &new_path, &new_last, &new_type, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004558 if (IS_ERR(to)) {
4559 error = PTR_ERR(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560 goto exit1;
Jeff Layton91a27b22012-10-10 15:25:28 -04004561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562
4563 error = -EXDEV;
Al Virof5beed72015-04-30 16:09:11 -04004564 if (old_path.mnt != new_path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 goto exit2;
4566
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 error = -EBUSY;
Al Virof5beed72015-04-30 16:09:11 -04004568 if (old_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569 goto exit2;
4570
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004571 if (flags & RENAME_NOREPLACE)
4572 error = -EEXIST;
Al Virof5beed72015-04-30 16:09:11 -04004573 if (new_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004574 goto exit2;
4575
Al Virof5beed72015-04-30 16:09:11 -04004576 error = mnt_want_write(old_path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004577 if (error)
4578 goto exit2;
4579
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004580retry_deleg:
Al Virof5beed72015-04-30 16:09:11 -04004581 trap = lock_rename(new_path.dentry, old_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004582
Al Virof5beed72015-04-30 16:09:11 -04004583 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 error = PTR_ERR(old_dentry);
4585 if (IS_ERR(old_dentry))
4586 goto exit3;
4587 /* source must exist */
4588 error = -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01004589 if (d_is_negative(old_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004590 goto exit4;
Al Virof5beed72015-04-30 16:09:11 -04004591 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004592 error = PTR_ERR(new_dentry);
4593 if (IS_ERR(new_dentry))
4594 goto exit4;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004595 error = -EEXIST;
4596 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4597 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004598 if (flags & RENAME_EXCHANGE) {
4599 error = -ENOENT;
4600 if (d_is_negative(new_dentry))
4601 goto exit5;
4602
4603 if (!d_is_dir(new_dentry)) {
4604 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004605 if (new_last.name[new_last.len])
Miklos Szeredida1ce062014-04-01 17:08:43 +02004606 goto exit5;
4607 }
4608 }
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004609 /* unless the source is a directory trailing slashes give -ENOTDIR */
4610 if (!d_is_dir(old_dentry)) {
4611 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004612 if (old_last.name[old_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004613 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004614 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004615 goto exit5;
4616 }
4617 /* source should not be ancestor of target */
4618 error = -EINVAL;
4619 if (old_dentry == trap)
4620 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004621 /* target should not be an ancestor of source */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004622 if (!(flags & RENAME_EXCHANGE))
4623 error = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624 if (new_dentry == trap)
4625 goto exit5;
4626
Al Virof5beed72015-04-30 16:09:11 -04004627 error = security_path_rename(&old_path, old_dentry,
4628 &new_path, new_dentry, flags);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004629 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004630 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004631 error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4632 new_path.dentry->d_inode, new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004633 &delegated_inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634exit5:
4635 dput(new_dentry);
4636exit4:
4637 dput(old_dentry);
4638exit3:
Al Virof5beed72015-04-30 16:09:11 -04004639 unlock_rename(new_path.dentry, old_path.dentry);
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004640 if (delegated_inode) {
4641 error = break_deleg_wait(&delegated_inode);
4642 if (!error)
4643 goto retry_deleg;
4644 }
Al Virof5beed72015-04-30 16:09:11 -04004645 mnt_drop_write(old_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004646exit2:
Jeff Laytonc6a94282012-12-11 12:10:10 -05004647 if (retry_estale(error, lookup_flags))
4648 should_retry = true;
Al Virof5beed72015-04-30 16:09:11 -04004649 path_put(&new_path);
Al Viro2ad94ae2008-07-21 09:32:51 -04004650 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004651exit1:
Al Virof5beed72015-04-30 16:09:11 -04004652 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653 putname(from);
Jeff Laytonc6a94282012-12-11 12:10:10 -05004654 if (should_retry) {
4655 should_retry = false;
4656 lookup_flags |= LOOKUP_REVAL;
4657 goto retry;
4658 }
Al Viro2ad94ae2008-07-21 09:32:51 -04004659exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004660 return error;
4661}
4662
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004663SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4664 int, newdfd, const char __user *, newname)
4665{
4666 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4667}
4668
Heiko Carstensa26eab22009-01-14 14:14:17 +01004669SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004670{
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004671 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004672}
4673
Miklos Szeredi787fb6b2014-10-24 00:14:36 +02004674int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4675{
4676 int error = may_create(dir, dentry);
4677 if (error)
4678 return error;
4679
4680 if (!dir->i_op->mknod)
4681 return -EPERM;
4682
4683 return dir->i_op->mknod(dir, dentry,
4684 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4685}
4686EXPORT_SYMBOL(vfs_whiteout);
4687
Al Viro5d826c82014-03-14 13:42:45 -04004688int readlink_copy(char __user *buffer, int buflen, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004689{
Al Viro5d826c82014-03-14 13:42:45 -04004690 int len = PTR_ERR(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004691 if (IS_ERR(link))
4692 goto out;
4693
4694 len = strlen(link);
4695 if (len > (unsigned) buflen)
4696 len = buflen;
4697 if (copy_to_user(buffer, link, len))
4698 len = -EFAULT;
4699out:
4700 return len;
4701}
4702
4703/*
4704 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
Al Viro6b255392015-11-17 10:20:54 -05004705 * have ->get_link() not calling nd_jump_link(). Using (or not using) it
4706 * for any given inode is up to filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004707 */
4708int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4709{
Al Virofceef392015-12-29 15:58:39 -05004710 DEFINE_DELAYED_CALL(done);
Al Viro5f2c4172015-05-07 11:14:26 -04004711 struct inode *inode = d_inode(dentry);
4712 const char *link = inode->i_link;
Marcin Slusarz694a1762008-06-09 16:40:37 -07004713 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004714
Al Virod4dee482015-04-30 20:08:02 -04004715 if (!link) {
Al Virofceef392015-12-29 15:58:39 -05004716 link = inode->i_op->get_link(dentry, inode, &done);
Al Virod4dee482015-04-30 20:08:02 -04004717 if (IS_ERR(link))
4718 return PTR_ERR(link);
4719 }
Al Viro680baac2015-05-02 13:32:22 -04004720 res = readlink_copy(buffer, buflen, link);
Al Virofceef392015-12-29 15:58:39 -05004721 do_delayed_call(&done);
Marcin Slusarz694a1762008-06-09 16:40:37 -07004722 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723}
Al Viro4d359502014-03-14 12:20:17 -04004724EXPORT_SYMBOL(generic_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725
Miklos Szeredid60874c2016-10-04 14:40:45 +02004726/**
4727 * vfs_get_link - get symlink body
4728 * @dentry: dentry on which to get symbolic link
4729 * @done: caller needs to free returned data with this
4730 *
4731 * Calls security hook and i_op->get_link() on the supplied inode.
4732 *
4733 * It does not touch atime. That's up to the caller if necessary.
4734 *
4735 * Does not work on "special" symlinks like /proc/$$/fd/N
4736 */
4737const char *vfs_get_link(struct dentry *dentry, struct delayed_call *done)
4738{
4739 const char *res = ERR_PTR(-EINVAL);
4740 struct inode *inode = d_inode(dentry);
4741
4742 if (d_is_symlink(dentry)) {
4743 res = ERR_PTR(security_inode_readlink(dentry));
4744 if (!res)
4745 res = inode->i_op->get_link(dentry, inode, done);
4746 }
4747 return res;
4748}
4749EXPORT_SYMBOL(vfs_get_link);
4750
Linus Torvalds1da177e2005-04-16 15:20:36 -07004751/* get the link contents into pagecache */
Al Viro6b255392015-11-17 10:20:54 -05004752const char *page_get_link(struct dentry *dentry, struct inode *inode,
Al Virofceef392015-12-29 15:58:39 -05004753 struct delayed_call *callback)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004754{
Duane Griffinebd09ab2008-12-19 20:47:12 +00004755 char *kaddr;
4756 struct page *page;
Al Viro6b255392015-11-17 10:20:54 -05004757 struct address_space *mapping = inode->i_mapping;
4758
Al Virod3883d42015-11-17 10:41:04 -05004759 if (!dentry) {
4760 page = find_get_page(mapping, 0);
4761 if (!page)
4762 return ERR_PTR(-ECHILD);
4763 if (!PageUptodate(page)) {
4764 put_page(page);
4765 return ERR_PTR(-ECHILD);
4766 }
4767 } else {
4768 page = read_mapping_page(mapping, 0, NULL);
4769 if (IS_ERR(page))
4770 return (char*)page;
4771 }
Al Virofceef392015-12-29 15:58:39 -05004772 set_delayed_call(callback, page_put_link, page);
Al Viro21fc61c2015-11-17 01:07:57 -05004773 BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM);
4774 kaddr = page_address(page);
Al Viro6b255392015-11-17 10:20:54 -05004775 nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1);
Duane Griffinebd09ab2008-12-19 20:47:12 +00004776 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777}
4778
Al Viro6b255392015-11-17 10:20:54 -05004779EXPORT_SYMBOL(page_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004780
Al Virofceef392015-12-29 15:58:39 -05004781void page_put_link(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004782{
Al Virofceef392015-12-29 15:58:39 -05004783 put_page(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004784}
Al Viro4d359502014-03-14 12:20:17 -04004785EXPORT_SYMBOL(page_put_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004786
Al Viroaa80dea2015-11-16 18:26:34 -05004787int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4788{
Al Virofceef392015-12-29 15:58:39 -05004789 DEFINE_DELAYED_CALL(done);
Al Viro6b255392015-11-17 10:20:54 -05004790 int res = readlink_copy(buffer, buflen,
4791 page_get_link(dentry, d_inode(dentry),
Al Virofceef392015-12-29 15:58:39 -05004792 &done));
4793 do_delayed_call(&done);
Al Viroaa80dea2015-11-16 18:26:34 -05004794 return res;
4795}
4796EXPORT_SYMBOL(page_readlink);
4797
Nick Piggin54566b22009-01-04 12:00:53 -08004798/*
4799 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4800 */
4801int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004802{
4803 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004804 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07004805 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08004806 int err;
Nick Piggin54566b22009-01-04 12:00:53 -08004807 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4808 if (nofs)
4809 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810
NeilBrown7e53cac2006-03-25 03:07:57 -08004811retry:
Nick Pigginafddba42007-10-16 01:25:01 -07004812 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08004813 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07004815 goto fail;
4816
Al Viro21fc61c2015-11-17 01:07:57 -05004817 memcpy(page_address(page), symname, len-1);
Nick Pigginafddba42007-10-16 01:25:01 -07004818
4819 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4820 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821 if (err < 0)
4822 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07004823 if (err < len-1)
4824 goto retry;
4825
Linus Torvalds1da177e2005-04-16 15:20:36 -07004826 mark_inode_dirty(inode);
4827 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004828fail:
4829 return err;
4830}
Al Viro4d359502014-03-14 12:20:17 -04004831EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004832
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004833int page_symlink(struct inode *inode, const char *symname, int len)
4834{
4835 return __page_symlink(inode, symname, len,
Michal Hockoc62d2552015-11-06 16:28:49 -08004836 !mapping_gfp_constraint(inode->i_mapping, __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004837}
Al Viro4d359502014-03-14 12:20:17 -04004838EXPORT_SYMBOL(page_symlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004839
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004840const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841 .readlink = generic_readlink,
Al Viro6b255392015-11-17 10:20:54 -05004842 .get_link = page_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004844EXPORT_SYMBOL(page_symlink_inode_operations);