blob: 5f8e8e2732e16503e427243b599fda7e43f844b4 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/namei.c
4 *
5 * Copyright (C) 1991, 1992 Linus Torvalds
6 */
7
8/*
9 * Some corrections by tytso.
10 */
11
12/* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
13 * lookup logic.
14 */
15/* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
16 */
17
18#include <linux/init.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050019#include <linux/export.h>
David S. Miller44696902012-05-23 20:12:50 -070020#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/slab.h>
22#include <linux/fs.h>
23#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/pagemap.h>
Robert Love0eeca282005-07-12 17:06:03 -040025#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/personality.h>
27#include <linux/security.h>
Mimi Zohar6146f0d2009-02-04 09:06:57 -050028#include <linux/ima.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/syscalls.h>
30#include <linux/mount.h>
31#include <linux/audit.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080032#include <linux/capability.h>
Trond Myklebust834f2a42005-10-18 14:20:16 -070033#include <linux/file.h>
Ulrich Drepper5590ff02006-01-18 17:43:53 -080034#include <linux/fcntl.h>
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070035#include <linux/device_cgroup.h>
Al Viro5ad4e532009-03-29 19:50:06 -040036#include <linux/fs_struct.h>
Linus Torvaldse77819e2011-07-22 19:30:19 -070037#include <linux/posix_acl.h>
Linus Torvalds99d263d2014-09-13 11:30:10 -070038#include <linux/hash.h>
George Spelvin2a18da7a2016-05-23 07:43:58 -040039#include <linux/bitops.h>
Eric W. Biedermanaeaa4a72016-07-23 11:20:44 -050040#include <linux/init_task.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080041#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Eric Parise81e3f42009-12-04 15:47:36 -050043#include "internal.h"
Al Viroc7105362011-11-24 18:22:03 -050044#include "mount.h"
Eric Parise81e3f42009-12-04 15:47:36 -050045
Linus Torvalds1da177e2005-04-16 15:20:36 -070046/* [Feb-1997 T. Schoebel-Theuer]
47 * Fundamental changes in the pathname lookup mechanisms (namei)
48 * were necessary because of omirr. The reason is that omirr needs
49 * to know the _real_ pathname, not the user-supplied one, in case
50 * of symlinks (and also when transname replacements occur).
51 *
52 * The new code replaces the old recursive symlink resolution with
53 * an iterative one (in case of non-nested symlink chains). It does
54 * this with calls to <fs>_follow_link().
55 * As a side effect, dir_namei(), _namei() and follow_link() are now
56 * replaced with a single function lookup_dentry() that can handle all
57 * the special cases of the former code.
58 *
59 * With the new dcache, the pathname is stored at each inode, at least as
60 * long as the refcount of the inode is positive. As a side effect, the
61 * size of the dcache depends on the inode cache and thus is dynamic.
62 *
63 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
64 * resolution to correspond with current state of the code.
65 *
66 * Note that the symlink resolution is not *completely* iterative.
67 * There is still a significant amount of tail- and mid- recursion in
68 * the algorithm. Also, note that <fs>_readlink() is not used in
69 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
70 * may return different results than <fs>_follow_link(). Many virtual
71 * filesystems (including /proc) exhibit this behavior.
72 */
73
74/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
75 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
76 * and the name already exists in form of a symlink, try to create the new
77 * name indicated by the symlink. The old code always complained that the
78 * name already exists, due to not following the symlink even if its target
79 * is nonexistent. The new semantics affects also mknod() and link() when
Lucas De Marchi25985ed2011-03-30 22:57:33 -030080 * the name is a symlink pointing to a non-existent name.
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 *
82 * I don't know which semantics is the right one, since I have no access
83 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
84 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
85 * "old" one. Personally, I think the new semantics is much more logical.
86 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
87 * file does succeed in both HP-UX and SunOs, but not in Solaris
88 * and in the old Linux semantics.
89 */
90
91/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
92 * semantics. See the comments in "open_namei" and "do_link" below.
93 *
94 * [10-Sep-98 Alan Modra] Another symlink change.
95 */
96
97/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
98 * inside the path - always follow.
99 * in the last component in creation/removal/renaming - never follow.
100 * if LOOKUP_FOLLOW passed - follow.
101 * if the pathname has trailing slashes - follow.
102 * otherwise - don't follow.
103 * (applied in that order).
104 *
105 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
106 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
107 * During the 2.4 we need to fix the userland stuff depending on it -
108 * hopefully we will be able to get rid of that wart in 2.5. So far only
109 * XEmacs seems to be relying on it...
110 */
111/*
112 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800113 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * any extra contention...
115 */
116
117/* In order to reduce some races, while at the same time doing additional
118 * checking and hopefully speeding things up, we copy filenames to the
119 * kernel data space before using them..
120 *
121 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
122 * PATH_MAX includes the nul terminator --RR.
123 */
Jeff Layton91a27b22012-10-10 15:25:28 -0400124
Al Virofd2f7cb2015-02-22 20:07:13 -0500125#define EMBEDDED_NAME_MAX (PATH_MAX - offsetof(struct filename, iname))
Jeff Layton7950e382012-10-10 16:43:13 -0400126
David Drysdale51f39a12014-12-12 16:57:29 -0800127struct filename *
Jeff Layton91a27b22012-10-10 15:25:28 -0400128getname_flags(const char __user *filename, int flags, int *empty)
129{
Al Viro94b5d262015-02-22 19:38:03 -0500130 struct filename *result;
Jeff Layton7950e382012-10-10 16:43:13 -0400131 char *kname;
Al Viro94b5d262015-02-22 19:38:03 -0500132 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Jeff Layton7ac86262012-10-10 15:25:28 -0400134 result = audit_reusename(filename);
135 if (result)
136 return result;
137
Jeff Layton7950e382012-10-10 16:43:13 -0400138 result = __getname();
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700139 if (unlikely(!result))
Eric Paris4043cde2012-01-03 14:23:08 -0500140 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Jeff Layton7950e382012-10-10 16:43:13 -0400142 /*
143 * First, try to embed the struct filename inside the names_cache
144 * allocation
145 */
Al Virofd2f7cb2015-02-22 20:07:13 -0500146 kname = (char *)result->iname;
Jeff Layton91a27b22012-10-10 15:25:28 -0400147 result->name = kname;
Jeff Layton7950e382012-10-10 16:43:13 -0400148
Al Viro94b5d262015-02-22 19:38:03 -0500149 len = strncpy_from_user(kname, filename, EMBEDDED_NAME_MAX);
Jeff Layton91a27b22012-10-10 15:25:28 -0400150 if (unlikely(len < 0)) {
Al Viro94b5d262015-02-22 19:38:03 -0500151 __putname(result);
152 return ERR_PTR(len);
Jeff Layton91a27b22012-10-10 15:25:28 -0400153 }
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700154
Jeff Layton7950e382012-10-10 16:43:13 -0400155 /*
156 * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
157 * separate struct filename so we can dedicate the entire
158 * names_cache allocation for the pathname, and re-do the copy from
159 * userland.
160 */
Al Viro94b5d262015-02-22 19:38:03 -0500161 if (unlikely(len == EMBEDDED_NAME_MAX)) {
Al Virofd2f7cb2015-02-22 20:07:13 -0500162 const size_t size = offsetof(struct filename, iname[1]);
Jeff Layton7950e382012-10-10 16:43:13 -0400163 kname = (char *)result;
164
Al Virofd2f7cb2015-02-22 20:07:13 -0500165 /*
166 * size is chosen that way we to guarantee that
167 * result->iname[0] is within the same object and that
168 * kname can't be equal to result->iname, no matter what.
169 */
170 result = kzalloc(size, GFP_KERNEL);
Al Viro94b5d262015-02-22 19:38:03 -0500171 if (unlikely(!result)) {
172 __putname(kname);
173 return ERR_PTR(-ENOMEM);
Jeff Layton7950e382012-10-10 16:43:13 -0400174 }
175 result->name = kname;
Al Viro94b5d262015-02-22 19:38:03 -0500176 len = strncpy_from_user(kname, filename, PATH_MAX);
177 if (unlikely(len < 0)) {
178 __putname(kname);
179 kfree(result);
180 return ERR_PTR(len);
181 }
182 if (unlikely(len == PATH_MAX)) {
183 __putname(kname);
184 kfree(result);
185 return ERR_PTR(-ENAMETOOLONG);
186 }
Jeff Layton7950e382012-10-10 16:43:13 -0400187 }
188
Al Viro94b5d262015-02-22 19:38:03 -0500189 result->refcnt = 1;
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700190 /* The empty path is special. */
191 if (unlikely(!len)) {
192 if (empty)
Eric Paris4043cde2012-01-03 14:23:08 -0500193 *empty = 1;
Al Viro94b5d262015-02-22 19:38:03 -0500194 if (!(flags & LOOKUP_EMPTY)) {
195 putname(result);
196 return ERR_PTR(-ENOENT);
197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 }
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700199
Jeff Layton7950e382012-10-10 16:43:13 -0400200 result->uptr = filename;
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800201 result->aname = NULL;
Jeff Layton7950e382012-10-10 16:43:13 -0400202 audit_getname(result);
203 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
Jeff Layton91a27b22012-10-10 15:25:28 -0400206struct filename *
207getname(const char __user * filename)
Al Virof52e0c12011-03-14 18:56:51 -0400208{
Linus Torvaldsf7493e52012-03-22 16:10:40 -0700209 return getname_flags(filename, 0, NULL);
Al Virof52e0c12011-03-14 18:56:51 -0400210}
211
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800212struct filename *
213getname_kernel(const char * filename)
214{
215 struct filename *result;
Paul Moore08518542015-01-21 23:59:56 -0500216 int len = strlen(filename) + 1;
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800217
218 result = __getname();
219 if (unlikely(!result))
220 return ERR_PTR(-ENOMEM);
221
Paul Moore08518542015-01-21 23:59:56 -0500222 if (len <= EMBEDDED_NAME_MAX) {
Al Virofd2f7cb2015-02-22 20:07:13 -0500223 result->name = (char *)result->iname;
Paul Moore08518542015-01-21 23:59:56 -0500224 } else if (len <= PATH_MAX) {
225 struct filename *tmp;
226
227 tmp = kmalloc(sizeof(*tmp), GFP_KERNEL);
228 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 */
Al Virod594e7e2011-06-20 19:55:42 -0400344 if (!(mask & MAY_WRITE))
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700345 if (capable_wrt_inode_uidgid(inode,
346 CAP_DAC_READ_SEARCH))
Al Virod594e7e2011-06-20 19:55:42 -0400347 return 0;
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700348 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 return 0;
Stephen Smalley2a4c2242017-03-10 12:14:18 -0500350 return -EACCES;
351 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 /*
354 * Searching includes executable on directories, else just read.
355 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600356 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Al Virod594e7e2011-06-20 19:55:42 -0400357 if (mask == MAY_READ)
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700358 if (capable_wrt_inode_uidgid(inode, CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return 0;
Stephen Smalley2a4c2242017-03-10 12:14:18 -0500360 /*
361 * Read/write DACs are always overridable.
362 * Executable DACs are overridable when there is
363 * at least one exec bit set.
364 */
365 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
366 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
367 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
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. */
David Howellsbc98a422017-07-17 08:45:34 +0100451 if (sb_rdonly(sb) && (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
David Howells0bdaea92012-06-25 12:55:46 +0100452 return -EROFS;
453 }
454 return 0;
455}
456
457/**
458 * inode_permission - Check for access rights to a given inode
459 * @inode: Inode to check permission on
460 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
461 *
462 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
463 * this, letting us set arbitrary permissions for filesystem access without
464 * changing the "normal" UIDs which are used for other things.
465 *
466 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
467 */
468int inode_permission(struct inode *inode, int mask)
469{
470 int retval;
471
472 retval = sb_permission(inode->i_sb, inode, mask);
473 if (retval)
474 return retval;
475 return __inode_permission(inode, mask);
476}
Al Viro4d359502014-03-14 12:20:17 -0400477EXPORT_SYMBOL(inode_permission);
David Howells0bdaea92012-06-25 12:55:46 +0100478
479/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800480 * path_get - get a reference to a path
481 * @path: path to get the reference to
482 *
483 * Given a path increment the reference count to the dentry and the vfsmount.
484 */
Al Virodcf787f2013-03-01 23:51:07 -0500485void path_get(const struct path *path)
Jan Blunck5dd784d02008-02-14 19:34:38 -0800486{
487 mntget(path->mnt);
488 dget(path->dentry);
489}
490EXPORT_SYMBOL(path_get);
491
492/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800493 * path_put - put a reference to a path
494 * @path: path to put the reference to
495 *
496 * Given a path decrement the reference count to the dentry and the vfsmount.
497 */
Al Virodcf787f2013-03-01 23:51:07 -0500498void path_put(const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
Jan Blunck1d957f92008-02-14 19:34:35 -0800500 dput(path->dentry);
501 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
Jan Blunck1d957f92008-02-14 19:34:35 -0800503EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
Al Viro894bc8c2015-05-02 07:16:16 -0400505#define EMBEDDED_LEVELS 2
Al Viro1f55a6e2014-11-01 19:30:41 -0400506struct nameidata {
507 struct path path;
Al Viro1cf26652015-05-06 16:01:56 -0400508 struct qstr last;
Al Viro1f55a6e2014-11-01 19:30:41 -0400509 struct path root;
510 struct inode *inode; /* path.dentry.d_inode */
511 unsigned int flags;
Al Viro9883d182015-05-13 07:28:08 -0400512 unsigned seq, m_seq;
Al Viro1f55a6e2014-11-01 19:30:41 -0400513 int last_type;
514 unsigned depth;
NeilBrown756daf22015-03-23 13:37:38 +1100515 int total_link_count;
Al Viro697fc6c2015-05-02 19:38:35 -0400516 struct saved {
517 struct path link;
Al Virofceef392015-12-29 15:58:39 -0500518 struct delayed_call done;
Al Viro697fc6c2015-05-02 19:38:35 -0400519 const char *name;
Al Viro0450b2d2015-05-08 13:23:53 -0400520 unsigned seq;
Al Viro894bc8c2015-05-02 07:16:16 -0400521 } *stack, internal[EMBEDDED_LEVELS];
Al Viro9883d182015-05-13 07:28:08 -0400522 struct filename *name;
523 struct nameidata *saved;
Al Virofceef392015-12-29 15:58:39 -0500524 struct inode *link_inode;
Al Viro9883d182015-05-13 07:28:08 -0400525 unsigned root_seq;
526 int dfd;
Kees Cook3859a272016-10-28 01:22:25 -0700527} __randomize_layout;
Al Viro1f55a6e2014-11-01 19:30:41 -0400528
Al Viro9883d182015-05-13 07:28:08 -0400529static void set_nameidata(struct nameidata *p, int dfd, struct filename *name)
Al Viro894bc8c2015-05-02 07:16:16 -0400530{
NeilBrown756daf22015-03-23 13:37:38 +1100531 struct nameidata *old = current->nameidata;
532 p->stack = p->internal;
Al Viroc8a53ee2015-05-12 18:43:07 -0400533 p->dfd = dfd;
534 p->name = name;
NeilBrown756daf22015-03-23 13:37:38 +1100535 p->total_link_count = old ? old->total_link_count : 0;
Al Viro9883d182015-05-13 07:28:08 -0400536 p->saved = old;
NeilBrown756daf22015-03-23 13:37:38 +1100537 current->nameidata = p;
Al Viro894bc8c2015-05-02 07:16:16 -0400538}
539
Al Viro9883d182015-05-13 07:28:08 -0400540static void restore_nameidata(void)
Al Viro894bc8c2015-05-02 07:16:16 -0400541{
Al Viro9883d182015-05-13 07:28:08 -0400542 struct nameidata *now = current->nameidata, *old = now->saved;
NeilBrown756daf22015-03-23 13:37:38 +1100543
544 current->nameidata = old;
545 if (old)
546 old->total_link_count = now->total_link_count;
Al Viroe1a63bb2015-12-05 21:06:33 -0500547 if (now->stack != now->internal)
NeilBrown756daf22015-03-23 13:37:38 +1100548 kfree(now->stack);
Al Viro894bc8c2015-05-02 07:16:16 -0400549}
550
551static int __nd_alloc_stack(struct nameidata *nd)
552{
Al Virobc40aee2015-05-09 13:04:24 -0400553 struct saved *p;
554
555 if (nd->flags & LOOKUP_RCU) {
556 p= kmalloc(MAXSYMLINKS * sizeof(struct saved),
557 GFP_ATOMIC);
558 if (unlikely(!p))
559 return -ECHILD;
560 } else {
561 p= kmalloc(MAXSYMLINKS * sizeof(struct saved),
Al Viro894bc8c2015-05-02 07:16:16 -0400562 GFP_KERNEL);
Al Virobc40aee2015-05-09 13:04:24 -0400563 if (unlikely(!p))
564 return -ENOMEM;
565 }
Al Viro894bc8c2015-05-02 07:16:16 -0400566 memcpy(p, nd->internal, sizeof(nd->internal));
567 nd->stack = p;
568 return 0;
569}
570
Eric W. Biederman397d4252015-08-15 20:27:13 -0500571/**
572 * path_connected - Verify that a path->dentry is below path->mnt.mnt_root
573 * @path: nameidate to verify
574 *
575 * Rename can sometimes move a file or directory outside of a bind
576 * mount, path_connected allows those cases to be detected.
577 */
578static bool path_connected(const struct path *path)
579{
580 struct vfsmount *mnt = path->mnt;
581
582 /* Only bind mounts can have disconnected paths */
583 if (mnt->mnt_root == mnt->mnt_sb->s_root)
584 return true;
585
586 return is_subdir(path->dentry, mnt->mnt_root);
587}
588
Al Viro894bc8c2015-05-02 07:16:16 -0400589static inline int nd_alloc_stack(struct nameidata *nd)
590{
Al Viroda4e0be2015-05-03 20:52:15 -0400591 if (likely(nd->depth != EMBEDDED_LEVELS))
Al Viro894bc8c2015-05-02 07:16:16 -0400592 return 0;
593 if (likely(nd->stack != nd->internal))
594 return 0;
595 return __nd_alloc_stack(nd);
596}
597
Al Viro79733872015-05-09 12:55:43 -0400598static void drop_links(struct nameidata *nd)
599{
600 int i = nd->depth;
601 while (i--) {
602 struct saved *last = nd->stack + i;
Al Virofceef392015-12-29 15:58:39 -0500603 do_delayed_call(&last->done);
604 clear_delayed_call(&last->done);
Al Viro79733872015-05-09 12:55:43 -0400605 }
606}
607
608static void terminate_walk(struct nameidata *nd)
609{
610 drop_links(nd);
611 if (!(nd->flags & LOOKUP_RCU)) {
612 int i;
613 path_put(&nd->path);
614 for (i = 0; i < nd->depth; i++)
615 path_put(&nd->stack[i].link);
Al Viro102b8af2015-05-12 17:35:52 -0400616 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
617 path_put(&nd->root);
618 nd->root.mnt = NULL;
619 }
Al Viro79733872015-05-09 12:55:43 -0400620 } else {
621 nd->flags &= ~LOOKUP_RCU;
622 if (!(nd->flags & LOOKUP_ROOT))
623 nd->root.mnt = NULL;
624 rcu_read_unlock();
625 }
626 nd->depth = 0;
627}
628
629/* path_put is needed afterwards regardless of success or failure */
630static bool legitimize_path(struct nameidata *nd,
631 struct path *path, unsigned seq)
632{
633 int res = __legitimize_mnt(path->mnt, nd->m_seq);
634 if (unlikely(res)) {
635 if (res > 0)
636 path->mnt = NULL;
637 path->dentry = NULL;
638 return false;
639 }
640 if (unlikely(!lockref_get_not_dead(&path->dentry->d_lockref))) {
641 path->dentry = NULL;
642 return false;
643 }
644 return !read_seqcount_retry(&path->dentry->d_seq, seq);
645}
646
647static bool legitimize_links(struct nameidata *nd)
648{
649 int i;
650 for (i = 0; i < nd->depth; i++) {
651 struct saved *last = nd->stack + i;
652 if (unlikely(!legitimize_path(nd, &last->link, last->seq))) {
653 drop_links(nd);
654 nd->depth = i + 1;
655 return false;
656 }
657 }
658 return true;
659}
660
Al Viro19660af2011-03-25 10:32:48 -0400661/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100662 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400663 * Documentation/filesystems/path-lookup.txt). In situations when we can't
664 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
Mike Marshall57e37152015-11-30 11:11:59 -0500665 * normal reference counts on dentries and vfsmounts to transition to ref-walk
Al Viro19660af2011-03-25 10:32:48 -0400666 * mode. Refcounts are grabbed at the last known good point before rcu-walk
667 * got stuck, so ref-walk may continue from there. If this is not successful
668 * (eg. a seqcount has changed), then failure is returned and it's up to caller
669 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100670 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100671
672/**
Al Viro19660af2011-03-25 10:32:48 -0400673 * unlazy_walk - try to switch to ref-walk mode.
674 * @nd: nameidata pathwalk data
Randy Dunlap39191622011-01-08 19:36:21 -0800675 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100676 *
Al Viro4675ac32017-01-09 22:29:15 -0500677 * unlazy_walk attempts to legitimize the current nd->path and nd->root
678 * for ref-walk mode.
679 * Must be called from rcu-walk context.
Al Viro79733872015-05-09 12:55:43 -0400680 * Nothing should touch nameidata between unlazy_walk() failure and
681 * terminate_walk().
Nick Piggin31e6b012011-01-07 17:49:52 +1100682 */
Al Viro4675ac32017-01-09 22:29:15 -0500683static int unlazy_walk(struct nameidata *nd)
Nick Piggin31e6b012011-01-07 17:49:52 +1100684{
Nick Piggin31e6b012011-01-07 17:49:52 +1100685 struct dentry *parent = nd->path.dentry;
686
687 BUG_ON(!(nd->flags & LOOKUP_RCU));
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700688
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700689 nd->flags &= ~LOOKUP_RCU;
Al Viro79733872015-05-09 12:55:43 -0400690 if (unlikely(!legitimize_links(nd)))
691 goto out2;
Al Viro4675ac32017-01-09 22:29:15 -0500692 if (unlikely(!legitimize_path(nd, &nd->path, nd->seq)))
693 goto out1;
694 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
695 if (unlikely(!legitimize_path(nd, &nd->root, nd->root_seq)))
696 goto out;
697 }
698 rcu_read_unlock();
699 BUG_ON(nd->inode != parent->d_inode);
700 return 0;
701
702out2:
703 nd->path.mnt = NULL;
704 nd->path.dentry = NULL;
705out1:
706 if (!(nd->flags & LOOKUP_ROOT))
707 nd->root.mnt = NULL;
708out:
709 rcu_read_unlock();
710 return -ECHILD;
711}
712
713/**
714 * unlazy_child - try to switch to ref-walk mode.
715 * @nd: nameidata pathwalk data
716 * @dentry: child of nd->path.dentry
717 * @seq: seq number to check dentry against
718 * Returns: 0 on success, -ECHILD on failure
719 *
720 * unlazy_child attempts to legitimize the current nd->path, nd->root and dentry
721 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
722 * @nd. Must be called from rcu-walk context.
723 * Nothing should touch nameidata between unlazy_child() failure and
724 * terminate_walk().
725 */
726static int unlazy_child(struct nameidata *nd, struct dentry *dentry, unsigned seq)
727{
728 BUG_ON(!(nd->flags & LOOKUP_RCU));
729
730 nd->flags &= ~LOOKUP_RCU;
731 if (unlikely(!legitimize_links(nd)))
732 goto out2;
Al Viro79733872015-05-09 12:55:43 -0400733 if (unlikely(!legitimize_mnt(nd->path.mnt, nd->m_seq)))
734 goto out2;
Al Viro4675ac32017-01-09 22:29:15 -0500735 if (unlikely(!lockref_get_not_dead(&nd->path.dentry->d_lockref)))
Al Viro79733872015-05-09 12:55:43 -0400736 goto out1;
Al Viro48a066e2013-09-29 22:06:07 -0400737
Linus Torvalds15570082013-09-02 11:38:06 -0700738 /*
Al Viro4675ac32017-01-09 22:29:15 -0500739 * We need to move both the parent and the dentry from the RCU domain
740 * to be properly refcounted. And the sequence number in the dentry
741 * validates *both* dentry counters, since we checked the sequence
742 * number of the parent after we got the child sequence number. So we
743 * know the parent must still be valid if the child sequence number is
Linus Torvalds15570082013-09-02 11:38:06 -0700744 */
Al Viro4675ac32017-01-09 22:29:15 -0500745 if (unlikely(!lockref_get_not_dead(&dentry->d_lockref)))
746 goto out;
747 if (unlikely(read_seqcount_retry(&dentry->d_seq, seq))) {
748 rcu_read_unlock();
749 dput(dentry);
750 goto drop_root_mnt;
Al Viro19660af2011-03-25 10:32:48 -0400751 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700752 /*
753 * Sequence counts matched. Now make sure that the root is
754 * still valid and get it if required.
755 */
756 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro5a8d87e2015-05-12 00:10:18 -0400757 if (unlikely(!legitimize_path(nd, &nd->root, nd->root_seq))) {
758 rcu_read_unlock();
759 dput(dentry);
760 return -ECHILD;
Al Viro79733872015-05-09 12:55:43 -0400761 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100762 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100763
Al Viro8b61e742013-11-08 12:45:01 -0500764 rcu_read_unlock();
Nick Piggin31e6b012011-01-07 17:49:52 +1100765 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400766
Al Viro79733872015-05-09 12:55:43 -0400767out2:
768 nd->path.mnt = NULL;
769out1:
770 nd->path.dentry = NULL;
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700771out:
Al Viro8b61e742013-11-08 12:45:01 -0500772 rcu_read_unlock();
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700773drop_root_mnt:
774 if (!(nd->flags & LOOKUP_ROOT))
775 nd->root.mnt = NULL;
Nick Piggin31e6b012011-01-07 17:49:52 +1100776 return -ECHILD;
777}
778
Al Viro4ce16ef32012-06-10 16:10:59 -0400779static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
Nick Piggin34286d62011-01-07 17:49:57 +1100780{
Al Viroa89f8332017-01-09 22:25:28 -0500781 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
782 return dentry->d_op->d_revalidate(dentry, flags);
783 else
784 return 1;
Nick Piggin34286d62011-01-07 17:49:57 +1100785}
786
Al Viro9f1fafe2011-03-25 11:00:12 -0400787/**
788 * complete_walk - successful completion of path walk
789 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500790 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400791 * If we had been in RCU mode, drop out of it and legitimize nd->path.
792 * Revalidate the final result, unless we'd already done that during
793 * the path walk or the filesystem doesn't ask for it. Return 0 on
794 * success, -error on failure. In case of failure caller does not
795 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500796 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400797static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500798{
Al Viro16c2cd72011-02-22 15:50:10 -0500799 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500800 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500801
Al Viro9f1fafe2011-03-25 11:00:12 -0400802 if (nd->flags & LOOKUP_RCU) {
Al Viro9f1fafe2011-03-25 11:00:12 -0400803 if (!(nd->flags & LOOKUP_ROOT))
804 nd->root.mnt = NULL;
Al Viro4675ac32017-01-09 22:29:15 -0500805 if (unlikely(unlazy_walk(nd)))
Al Viro48a066e2013-09-29 22:06:07 -0400806 return -ECHILD;
Al Viro9f1fafe2011-03-25 11:00:12 -0400807 }
808
Al Viro16c2cd72011-02-22 15:50:10 -0500809 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500810 return 0;
811
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500812 if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
Al Viro16c2cd72011-02-22 15:50:10 -0500813 return 0;
814
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500815 status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
Jeff Layton39159de2009-12-07 12:01:50 -0500816 if (status > 0)
817 return 0;
818
Al Viro16c2cd72011-02-22 15:50:10 -0500819 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500820 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500821
Jeff Layton39159de2009-12-07 12:01:50 -0500822 return status;
823}
824
Al Viro18d8c862015-05-12 16:32:34 -0400825static void set_root(struct nameidata *nd)
Al Viro2a737872009-04-07 11:49:53 -0400826{
Al Viro7bd88372014-09-13 21:55:46 -0400827 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100828
Al Viro9e6697e2015-12-05 20:07:21 -0500829 if (nd->flags & LOOKUP_RCU) {
830 unsigned seq;
831
832 do {
833 seq = read_seqcount_begin(&fs->seq);
834 nd->root = fs->root;
835 nd->root_seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
836 } while (read_seqcount_retry(&fs->seq, seq));
837 } else {
838 get_fs_root(fs, &nd->root);
839 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100840}
841
Jan Blunck1d957f92008-02-14 19:34:35 -0800842static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700843{
844 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800845 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700846 mntput(path->mnt);
847}
848
Nick Piggin7b9337a2011-01-14 08:42:43 +0000849static inline void path_to_nameidata(const struct path *path,
850 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700851{
Nick Piggin31e6b012011-01-07 17:49:52 +1100852 if (!(nd->flags & LOOKUP_RCU)) {
853 dput(nd->path.dentry);
854 if (nd->path.mnt != path->mnt)
855 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800856 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100857 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800858 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700859}
860
Al Viro248fb5b2015-12-05 20:51:58 -0500861static int nd_jump_root(struct nameidata *nd)
862{
863 if (nd->flags & LOOKUP_RCU) {
864 struct dentry *d;
865 nd->path = nd->root;
866 d = nd->path.dentry;
867 nd->inode = d->d_inode;
868 nd->seq = nd->root_seq;
869 if (unlikely(read_seqcount_retry(&d->d_seq, nd->seq)))
870 return -ECHILD;
871 } else {
872 path_put(&nd->path);
873 nd->path = nd->root;
874 path_get(&nd->path);
875 nd->inode = nd->path.dentry->d_inode;
876 }
877 nd->flags |= LOOKUP_JUMPED;
878 return 0;
879}
880
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400881/*
Al Viro6b255392015-11-17 10:20:54 -0500882 * Helper to directly jump to a known parsed path from ->get_link,
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400883 * caller must have taken a reference to path beforehand.
884 */
Al Viro6e77137b2015-05-02 13:37:52 -0400885void nd_jump_link(struct path *path)
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400886{
Al Viro6e77137b2015-05-02 13:37:52 -0400887 struct nameidata *nd = current->nameidata;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400888 path_put(&nd->path);
889
890 nd->path = *path;
891 nd->inode = nd->path.dentry->d_inode;
892 nd->flags |= LOOKUP_JUMPED;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400893}
894
Al Virob9ff4422015-05-02 20:19:23 -0400895static inline void put_link(struct nameidata *nd)
Al Viro574197e2011-03-14 22:20:34 -0400896{
Al Viro21c30032015-05-03 21:06:24 -0400897 struct saved *last = nd->stack + --nd->depth;
Al Virofceef392015-12-29 15:58:39 -0500898 do_delayed_call(&last->done);
Al Viro6548fae2015-05-07 20:32:22 -0400899 if (!(nd->flags & LOOKUP_RCU))
900 path_put(&last->link);
Al Viro574197e2011-03-14 22:20:34 -0400901}
902
Linus Torvalds561ec642012-10-26 10:05:07 -0700903int sysctl_protected_symlinks __read_mostly = 0;
904int sysctl_protected_hardlinks __read_mostly = 0;
Kees Cook800179c2012-07-25 17:29:07 -0700905
906/**
907 * may_follow_link - Check symlink following for unsafe situations
Randy Dunlap55852632012-08-18 17:39:25 -0700908 * @nd: nameidata pathwalk data
Kees Cook800179c2012-07-25 17:29:07 -0700909 *
910 * In the case of the sysctl_protected_symlinks sysctl being enabled,
911 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
912 * in a sticky world-writable directory. This is to protect privileged
913 * processes from failing races against path names that may change out
914 * from under them by way of other users creating malicious symlinks.
915 * It will permit symlinks to be followed only when outside a sticky
916 * world-writable directory, or when the uid of the symlink and follower
917 * match, or when the directory owner matches the symlink's owner.
918 *
919 * Returns 0 if following the symlink is allowed, -ve on error.
920 */
Al Virofec2fa22015-05-06 15:58:18 -0400921static inline int may_follow_link(struct nameidata *nd)
Kees Cook800179c2012-07-25 17:29:07 -0700922{
923 const struct inode *inode;
924 const struct inode *parent;
Seth Forshee2d7f9e22016-04-26 14:36:23 -0500925 kuid_t puid;
Kees Cook800179c2012-07-25 17:29:07 -0700926
927 if (!sysctl_protected_symlinks)
928 return 0;
929
930 /* Allowed if owner and follower match. */
Al Virofceef392015-12-29 15:58:39 -0500931 inode = nd->link_inode;
Eric W. Biederman81abe272012-08-03 09:38:08 -0700932 if (uid_eq(current_cred()->fsuid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700933 return 0;
934
935 /* Allowed if parent directory not sticky and world-writable. */
Al Viroaa65fa32015-08-04 23:23:50 -0400936 parent = nd->inode;
Kees Cook800179c2012-07-25 17:29:07 -0700937 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
938 return 0;
939
940 /* Allowed if parent directory and link owner match. */
Seth Forshee2d7f9e22016-04-26 14:36:23 -0500941 puid = parent->i_uid;
942 if (uid_valid(puid) && uid_eq(puid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700943 return 0;
944
Al Viro319565022015-05-07 20:37:40 -0400945 if (nd->flags & LOOKUP_RCU)
946 return -ECHILD;
947
Richard Guy Briggsea841ba2018-03-21 04:42:21 -0400948 audit_inode(nd->name, nd->stack[0].link.dentry, 0);
Richard Guy Briggs94b9d9b2018-03-21 04:42:20 -0400949 audit_log_link_denied("follow_link");
Kees Cook800179c2012-07-25 17:29:07 -0700950 return -EACCES;
951}
952
953/**
954 * safe_hardlink_source - Check for safe hardlink conditions
955 * @inode: the source inode to hardlink from
956 *
957 * Return false if at least one of the following conditions:
958 * - inode is not a regular file
959 * - inode is setuid
960 * - inode is setgid and group-exec
961 * - access failure for read and write
962 *
963 * Otherwise returns true.
964 */
965static bool safe_hardlink_source(struct inode *inode)
966{
967 umode_t mode = inode->i_mode;
968
969 /* Special files should not get pinned to the filesystem. */
970 if (!S_ISREG(mode))
971 return false;
972
973 /* Setuid files should not get pinned to the filesystem. */
974 if (mode & S_ISUID)
975 return false;
976
977 /* Executable setgid files should not get pinned to the filesystem. */
978 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
979 return false;
980
981 /* Hardlinking to unreadable or unwritable sources is dangerous. */
982 if (inode_permission(inode, MAY_READ | MAY_WRITE))
983 return false;
984
985 return true;
986}
987
988/**
989 * may_linkat - Check permissions for creating a hardlink
990 * @link: the source to hardlink from
991 *
992 * Block hardlink when all of:
993 * - sysctl_protected_hardlinks enabled
994 * - fsuid does not match inode
995 * - hardlink source is unsafe (see safe_hardlink_source() above)
Dirk Steinmetzf2ca3792015-10-20 16:09:19 +0200996 * - not CAP_FOWNER in a namespace with the inode owner uid mapped
Kees Cook800179c2012-07-25 17:29:07 -0700997 *
998 * Returns 0 if successful, -ve on error.
999 */
1000static int may_linkat(struct path *link)
1001{
Kees Cook800179c2012-07-25 17:29:07 -07001002 struct inode *inode;
1003
1004 if (!sysctl_protected_hardlinks)
1005 return 0;
1006
Kees Cook800179c2012-07-25 17:29:07 -07001007 inode = link->dentry->d_inode;
1008
1009 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
1010 * otherwise, it must be a safe source.
1011 */
Kees Cookcc658db2017-06-21 09:53:06 -07001012 if (safe_hardlink_source(inode) || inode_owner_or_capable(inode))
Kees Cook800179c2012-07-25 17:29:07 -07001013 return 0;
1014
Richard Guy Briggs94b9d9b2018-03-21 04:42:20 -04001015 audit_log_link_denied("linkat");
Kees Cook800179c2012-07-25 17:29:07 -07001016 return -EPERM;
1017}
1018
Al Viro3b2e7f72015-04-19 00:53:50 -04001019static __always_inline
1020const char *get_link(struct nameidata *nd)
Ian Kent051d3812006-03-27 01:14:53 -08001021{
Al Viroab104922015-05-10 11:50:01 -04001022 struct saved *last = nd->stack + nd->depth - 1;
Al Viro1cf26652015-05-06 16:01:56 -04001023 struct dentry *dentry = last->link.dentry;
Al Virofceef392015-12-29 15:58:39 -05001024 struct inode *inode = nd->link_inode;
Al Viro6d7b5aa2012-06-10 04:15:17 -04001025 int error;
Al Viro0a959df2015-04-18 18:23:41 -04001026 const char *res;
Ian Kent051d3812006-03-27 01:14:53 -08001027
NeilBrown8fa9dd22015-03-23 13:37:40 +11001028 if (!(nd->flags & LOOKUP_RCU)) {
1029 touch_atime(&last->link);
1030 cond_resched();
Miklos Szeredi598e3c82016-09-16 12:44:20 +02001031 } else if (atime_needs_update_rcu(&last->link, inode)) {
Al Viro4675ac32017-01-09 22:29:15 -05001032 if (unlikely(unlazy_walk(nd)))
NeilBrown8fa9dd22015-03-23 13:37:40 +11001033 return ERR_PTR(-ECHILD);
1034 touch_atime(&last->link);
1035 }
1036
NeilBrownbda0be72015-03-23 13:37:39 +11001037 error = security_inode_follow_link(dentry, inode,
1038 nd->flags & LOOKUP_RCU);
1039 if (unlikely(error))
Al Viro6920a442015-05-10 10:43:46 -04001040 return ERR_PTR(error);
Al Viro36f3b4f2011-02-22 21:24:38 -05001041
Al Viro86acdca12009-12-22 23:45:11 -05001042 nd->last_type = LAST_BIND;
Al Virod4dee482015-04-30 20:08:02 -04001043 res = inode->i_link;
1044 if (!res) {
Al Virofceef392015-12-29 15:58:39 -05001045 const char * (*get)(struct dentry *, struct inode *,
1046 struct delayed_call *);
1047 get = inode->i_op->get_link;
Al Viro8c1b4562015-05-09 18:15:21 -04001048 if (nd->flags & LOOKUP_RCU) {
Al Virofceef392015-12-29 15:58:39 -05001049 res = get(NULL, inode, &last->done);
Al Viro6b255392015-11-17 10:20:54 -05001050 if (res == ERR_PTR(-ECHILD)) {
Al Viro4675ac32017-01-09 22:29:15 -05001051 if (unlikely(unlazy_walk(nd)))
Al Viro6b255392015-11-17 10:20:54 -05001052 return ERR_PTR(-ECHILD);
Al Virofceef392015-12-29 15:58:39 -05001053 res = get(dentry, inode, &last->done);
Al Viro6b255392015-11-17 10:20:54 -05001054 }
1055 } else {
Al Virofceef392015-12-29 15:58:39 -05001056 res = get(dentry, inode, &last->done);
Al Viro8c1b4562015-05-09 18:15:21 -04001057 }
Al Virofceef392015-12-29 15:58:39 -05001058 if (IS_ERR_OR_NULL(res))
Al Virofab51e82015-05-10 11:01:00 -04001059 return res;
Ian Kent051d3812006-03-27 01:14:53 -08001060 }
Al Virofab51e82015-05-10 11:01:00 -04001061 if (*res == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05001062 if (!nd->root.mnt)
1063 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05001064 if (unlikely(nd_jump_root(nd)))
1065 return ERR_PTR(-ECHILD);
Al Virofab51e82015-05-10 11:01:00 -04001066 while (unlikely(*++res == '/'))
1067 ;
1068 }
1069 if (!*res)
1070 res = NULL;
Al Viro0a959df2015-04-18 18:23:41 -04001071 return res;
1072}
Al Viro6d7b5aa2012-06-10 04:15:17 -04001073
David Howellsf015f1262012-06-25 12:55:28 +01001074/*
1075 * follow_up - Find the mountpoint of path's vfsmount
1076 *
1077 * Given a path, find the mountpoint of its source file system.
1078 * Replace @path with the path of the mountpoint in the parent mount.
1079 * Up is towards /.
1080 *
1081 * Return 1 if we went up a level and 0 if we were already at the
1082 * root.
1083 */
Al Virobab77eb2009-04-18 03:26:48 -04001084int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085{
Al Viro0714a532011-11-24 22:19:58 -05001086 struct mount *mnt = real_mount(path->mnt);
1087 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +10001089
Al Viro48a066e2013-09-29 22:06:07 -04001090 read_seqlock_excl(&mount_lock);
Al Viro0714a532011-11-24 22:19:58 -05001091 parent = mnt->mnt_parent;
Al Viro3c0a6162012-07-18 17:32:50 +04001092 if (parent == mnt) {
Al Viro48a066e2013-09-29 22:06:07 -04001093 read_sequnlock_excl(&mount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 return 0;
1095 }
Al Viro0714a532011-11-24 22:19:58 -05001096 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -05001097 mountpoint = dget(mnt->mnt_mountpoint);
Al Viro48a066e2013-09-29 22:06:07 -04001098 read_sequnlock_excl(&mount_lock);
Al Virobab77eb2009-04-18 03:26:48 -04001099 dput(path->dentry);
1100 path->dentry = mountpoint;
1101 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -05001102 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 return 1;
1104}
Al Viro4d359502014-03-14 12:20:17 -04001105EXPORT_SYMBOL(follow_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Nick Pigginb5c84bf2011-01-07 17:49:38 +11001107/*
David Howells9875cf82011-01-14 18:45:21 +00001108 * Perform an automount
1109 * - return -EISDIR to tell follow_managed() to stop and return the path we
1110 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 */
NeilBrown756daf22015-03-23 13:37:38 +11001112static int follow_automount(struct path *path, struct nameidata *nd,
David Howells9875cf82011-01-14 18:45:21 +00001113 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +11001114{
David Howells9875cf82011-01-14 18:45:21 +00001115 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +00001116 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001117
David Howells9875cf82011-01-14 18:45:21 +00001118 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
1119 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -07001120
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001121 /* We don't want to mount if someone's just doing a stat -
1122 * unless they're stat'ing a directory and appended a '/' to
1123 * the name.
1124 *
1125 * We do, however, want to mount if someone wants to open or
1126 * create a file of any type under the mountpoint, wants to
1127 * traverse through the mountpoint or wants to open the
1128 * mounted directory. Also, autofs may mark negative dentries
1129 * as being automount points. These will need the attentions
1130 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +00001131 */
NeilBrown756daf22015-03-23 13:37:38 +11001132 if (!(nd->flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
Ian Kent5d38f042017-11-29 16:11:26 -08001133 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
1134 path->dentry->d_inode)
1135 return -EISDIR;
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001136
Eric W. Biedermanaeaa4a72016-07-23 11:20:44 -05001137 if (path->dentry->d_sb->s_user_ns != &init_user_ns)
1138 return -EACCES;
1139
NeilBrown756daf22015-03-23 13:37:38 +11001140 nd->total_link_count++;
1141 if (nd->total_link_count >= 40)
David Howells9875cf82011-01-14 18:45:21 +00001142 return -ELOOP;
1143
1144 mnt = path->dentry->d_op->d_automount(path);
1145 if (IS_ERR(mnt)) {
1146 /*
1147 * The filesystem is allowed to return -EISDIR here to indicate
1148 * it doesn't want to automount. For instance, autofs would do
1149 * this so that its userspace daemon can mount on this dentry.
1150 *
1151 * However, we can only permit this if it's a terminal point in
1152 * the path being looked up; if it wasn't then the remainder of
1153 * the path is inaccessible and we should say so.
1154 */
NeilBrown756daf22015-03-23 13:37:38 +11001155 if (PTR_ERR(mnt) == -EISDIR && (nd->flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +00001156 return -EREMOTE;
1157 return PTR_ERR(mnt);
1158 }
David Howellsea5b7782011-01-14 19:10:03 +00001159
David Howells9875cf82011-01-14 18:45:21 +00001160 if (!mnt) /* mount collision */
1161 return 0;
1162
Al Viro8aef1882011-06-16 15:10:06 +01001163 if (!*need_mntput) {
1164 /* lock_mount() may release path->mnt on error */
1165 mntget(path->mnt);
1166 *need_mntput = true;
1167 }
Al Viro19a167a2011-01-17 01:35:23 -05001168 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +00001169
David Howellsea5b7782011-01-14 19:10:03 +00001170 switch (err) {
1171 case -EBUSY:
1172 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -05001173 return 0;
David Howellsea5b7782011-01-14 19:10:03 +00001174 case 0:
Al Viro8aef1882011-06-16 15:10:06 +01001175 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +00001176 path->mnt = mnt;
1177 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +00001178 return 0;
Al Viro19a167a2011-01-17 01:35:23 -05001179 default:
1180 return err;
David Howellsea5b7782011-01-14 19:10:03 +00001181 }
Al Viro19a167a2011-01-17 01:35:23 -05001182
David Howells9875cf82011-01-14 18:45:21 +00001183}
1184
1185/*
1186 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +00001187 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +00001188 * - Flagged as mountpoint
1189 * - Flagged as automount point
1190 *
1191 * This may only be called in refwalk mode.
1192 *
1193 * Serialization is taken care of in namespace.c
1194 */
NeilBrown756daf22015-03-23 13:37:38 +11001195static int follow_managed(struct path *path, struct nameidata *nd)
David Howells9875cf82011-01-14 18:45:21 +00001196{
Al Viro8aef1882011-06-16 15:10:06 +01001197 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +00001198 unsigned managed;
1199 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +01001200 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +00001201
1202 /* Given that we're not holding a lock here, we retain the value in a
1203 * local variable for each dentry as we look at it so that we don't see
1204 * the components of that value change under us */
Mark Rutland6aa7de02017-10-23 14:07:29 -07001205 while (managed = READ_ONCE(path->dentry->d_flags),
David Howells9875cf82011-01-14 18:45:21 +00001206 managed &= DCACHE_MANAGED_DENTRY,
1207 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +00001208 /* Allow the filesystem to manage the transit without i_mutex
1209 * being held. */
1210 if (managed & DCACHE_MANAGE_TRANSIT) {
1211 BUG_ON(!path->dentry->d_op);
1212 BUG_ON(!path->dentry->d_op->d_manage);
Ian Kentfb5f51c2016-11-24 08:03:41 +11001213 ret = path->dentry->d_op->d_manage(path, false);
David Howellscc53ce52011-01-14 18:45:26 +00001214 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001215 break;
David Howellscc53ce52011-01-14 18:45:26 +00001216 }
1217
David Howells9875cf82011-01-14 18:45:21 +00001218 /* Transit to a mounted filesystem. */
1219 if (managed & DCACHE_MOUNTED) {
1220 struct vfsmount *mounted = lookup_mnt(path);
1221 if (mounted) {
1222 dput(path->dentry);
1223 if (need_mntput)
1224 mntput(path->mnt);
1225 path->mnt = mounted;
1226 path->dentry = dget(mounted->mnt_root);
1227 need_mntput = true;
1228 continue;
1229 }
1230
1231 /* Something is mounted on this dentry in another
1232 * namespace and/or whatever was mounted there in this
Al Viro48a066e2013-09-29 22:06:07 -04001233 * namespace got unmounted before lookup_mnt() could
1234 * get it */
David Howells9875cf82011-01-14 18:45:21 +00001235 }
1236
1237 /* Handle an automount point */
1238 if (managed & DCACHE_NEED_AUTOMOUNT) {
NeilBrown756daf22015-03-23 13:37:38 +11001239 ret = follow_automount(path, nd, &need_mntput);
David Howells9875cf82011-01-14 18:45:21 +00001240 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001241 break;
David Howells9875cf82011-01-14 18:45:21 +00001242 continue;
1243 }
1244
1245 /* We didn't change the current path point */
1246 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
Al Viro8aef1882011-06-16 15:10:06 +01001248
1249 if (need_mntput && path->mnt == mnt)
1250 mntput(path->mnt);
Al Viroe9742b52016-03-05 22:04:59 -05001251 if (ret == -EISDIR || !ret)
1252 ret = 1;
Al Viro84027522015-04-22 10:30:08 -04001253 if (need_mntput)
1254 nd->flags |= LOOKUP_JUMPED;
1255 if (unlikely(ret < 0))
1256 path_put_conditional(path, nd);
1257 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258}
1259
David Howellscc53ce52011-01-14 18:45:26 +00001260int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261{
1262 struct vfsmount *mounted;
1263
Al Viro1c755af2009-04-18 14:06:57 -04001264 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -04001266 dput(path->dentry);
1267 mntput(path->mnt);
1268 path->mnt = mounted;
1269 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 return 1;
1271 }
1272 return 0;
1273}
Al Viro4d359502014-03-14 12:20:17 -04001274EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Ian Kentfb5f51c2016-11-24 08:03:41 +11001276static inline int managed_dentry_rcu(const struct path *path)
Ian Kent62a73752011-03-25 01:51:02 +08001277{
Ian Kentfb5f51c2016-11-24 08:03:41 +11001278 return (path->dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
1279 path->dentry->d_op->d_manage(path, true) : 0;
Ian Kent62a73752011-03-25 01:51:02 +08001280}
1281
David Howells9875cf82011-01-14 18:45:21 +00001282/*
Al Viro287548e2011-05-27 06:50:06 -04001283 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1284 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +00001285 */
1286static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro254cf582015-05-05 09:40:46 -04001287 struct inode **inode, unsigned *seqp)
David Howells9875cf82011-01-14 18:45:21 +00001288{
Ian Kent62a73752011-03-25 01:51:02 +08001289 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -05001290 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +08001291 /*
1292 * Don't forget we might have a non-mountpoint managed dentry
1293 * that wants to block transit.
1294 */
Ian Kentfb5f51c2016-11-24 08:03:41 +11001295 switch (managed_dentry_rcu(path)) {
NeilBrownb8faf032014-08-04 17:06:29 +10001296 case -ECHILD:
1297 default:
David Howellsab909112011-01-14 18:46:51 +00001298 return false;
NeilBrownb8faf032014-08-04 17:06:29 +10001299 case -EISDIR:
1300 return true;
1301 case 0:
1302 break;
1303 }
Ian Kent62a73752011-03-25 01:51:02 +08001304
1305 if (!d_mountpoint(path->dentry))
NeilBrownb8faf032014-08-04 17:06:29 +10001306 return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Ian Kent62a73752011-03-25 01:51:02 +08001307
Al Viro474279d2013-10-01 16:11:26 -04001308 mounted = __lookup_mnt(path->mnt, path->dentry);
David Howells9875cf82011-01-14 18:45:21 +00001309 if (!mounted)
1310 break;
Al Viroc7105362011-11-24 18:22:03 -05001311 path->mnt = &mounted->mnt;
1312 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +00001313 nd->flags |= LOOKUP_JUMPED;
Al Viro254cf582015-05-05 09:40:46 -04001314 *seqp = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -07001315 /*
1316 * Update the inode too. We don't need to re-check the
1317 * dentry sequence number here after this d_inode read,
1318 * because a mount-point is always pinned.
1319 */
1320 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +00001321 }
Al Virof5be3e29122014-09-13 21:50:45 -04001322 return !read_seqretry(&mount_lock, nd->m_seq) &&
NeilBrownb8faf032014-08-04 17:06:29 +10001323 !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Al Viro287548e2011-05-27 06:50:06 -04001324}
1325
Nick Piggin31e6b012011-01-07 17:49:52 +11001326static int follow_dotdot_rcu(struct nameidata *nd)
1327{
Al Viro4023bfc2014-09-13 21:59:43 -04001328 struct inode *inode = nd->inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001329
David Howells9875cf82011-01-14 18:45:21 +00001330 while (1) {
Al Viroaed434a2015-05-12 12:22:47 -04001331 if (path_equal(&nd->path, &nd->root))
Nick Piggin31e6b012011-01-07 17:49:52 +11001332 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001333 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1334 struct dentry *old = nd->path.dentry;
1335 struct dentry *parent = old->d_parent;
1336 unsigned seq;
1337
Al Viro4023bfc2014-09-13 21:59:43 -04001338 inode = parent->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001339 seq = read_seqcount_begin(&parent->d_seq);
Al Viroaed434a2015-05-12 12:22:47 -04001340 if (unlikely(read_seqcount_retry(&old->d_seq, nd->seq)))
1341 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001342 nd->path.dentry = parent;
1343 nd->seq = seq;
Eric W. Biederman397d4252015-08-15 20:27:13 -05001344 if (unlikely(!path_connected(&nd->path)))
1345 return -ENOENT;
Nick Piggin31e6b012011-01-07 17:49:52 +11001346 break;
Al Viroaed434a2015-05-12 12:22:47 -04001347 } else {
1348 struct mount *mnt = real_mount(nd->path.mnt);
1349 struct mount *mparent = mnt->mnt_parent;
1350 struct dentry *mountpoint = mnt->mnt_mountpoint;
1351 struct inode *inode2 = mountpoint->d_inode;
1352 unsigned seq = read_seqcount_begin(&mountpoint->d_seq);
1353 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1354 return -ECHILD;
1355 if (&mparent->mnt == nd->path.mnt)
1356 break;
1357 /* we know that mountpoint was pinned */
1358 nd->path.dentry = mountpoint;
1359 nd->path.mnt = &mparent->mnt;
1360 inode = inode2;
1361 nd->seq = seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001362 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001363 }
Al Viroaed434a2015-05-12 12:22:47 -04001364 while (unlikely(d_mountpoint(nd->path.dentry))) {
Al Virob37199e2014-03-20 15:18:22 -04001365 struct mount *mounted;
1366 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
Al Viroaed434a2015-05-12 12:22:47 -04001367 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1368 return -ECHILD;
Al Virob37199e2014-03-20 15:18:22 -04001369 if (!mounted)
1370 break;
1371 nd->path.mnt = &mounted->mnt;
1372 nd->path.dentry = mounted->mnt.mnt_root;
Al Viro4023bfc2014-09-13 21:59:43 -04001373 inode = nd->path.dentry->d_inode;
Al Virob37199e2014-03-20 15:18:22 -04001374 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Virob37199e2014-03-20 15:18:22 -04001375 }
Al Viro4023bfc2014-09-13 21:59:43 -04001376 nd->inode = inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001377 return 0;
1378}
1379
David Howells9875cf82011-01-14 18:45:21 +00001380/*
David Howellscc53ce52011-01-14 18:45:26 +00001381 * Follow down to the covering mount currently visible to userspace. At each
1382 * point, the filesystem owning that dentry may be queried as to whether the
1383 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001384 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001385int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001386{
1387 unsigned managed;
1388 int ret;
1389
Mark Rutland6aa7de02017-10-23 14:07:29 -07001390 while (managed = READ_ONCE(path->dentry->d_flags),
David Howellscc53ce52011-01-14 18:45:26 +00001391 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1392 /* Allow the filesystem to manage the transit without i_mutex
1393 * being held.
1394 *
1395 * We indicate to the filesystem if someone is trying to mount
1396 * something here. This gives autofs the chance to deny anyone
1397 * other than its daemon the right to mount on its
1398 * superstructure.
1399 *
1400 * The filesystem may sleep at this point.
1401 */
1402 if (managed & DCACHE_MANAGE_TRANSIT) {
1403 BUG_ON(!path->dentry->d_op);
1404 BUG_ON(!path->dentry->d_op->d_manage);
Ian Kentfb5f51c2016-11-24 08:03:41 +11001405 ret = path->dentry->d_op->d_manage(path, false);
David Howellscc53ce52011-01-14 18:45:26 +00001406 if (ret < 0)
1407 return ret == -EISDIR ? 0 : ret;
1408 }
1409
1410 /* Transit to a mounted filesystem. */
1411 if (managed & DCACHE_MOUNTED) {
1412 struct vfsmount *mounted = lookup_mnt(path);
1413 if (!mounted)
1414 break;
1415 dput(path->dentry);
1416 mntput(path->mnt);
1417 path->mnt = mounted;
1418 path->dentry = dget(mounted->mnt_root);
1419 continue;
1420 }
1421
1422 /* Don't handle automount points here */
1423 break;
1424 }
1425 return 0;
1426}
Al Viro4d359502014-03-14 12:20:17 -04001427EXPORT_SYMBOL(follow_down);
David Howellscc53ce52011-01-14 18:45:26 +00001428
1429/*
David Howells9875cf82011-01-14 18:45:21 +00001430 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1431 */
1432static void follow_mount(struct path *path)
1433{
1434 while (d_mountpoint(path->dentry)) {
1435 struct vfsmount *mounted = lookup_mnt(path);
1436 if (!mounted)
1437 break;
1438 dput(path->dentry);
1439 mntput(path->mnt);
1440 path->mnt = mounted;
1441 path->dentry = dget(mounted->mnt_root);
1442 }
1443}
1444
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05001445static int path_parent_directory(struct path *path)
1446{
1447 struct dentry *old = path->dentry;
1448 /* rare case of legitimate dget_parent()... */
1449 path->dentry = dget_parent(path->dentry);
1450 dput(old);
1451 if (unlikely(!path_connected(path)))
1452 return -ENOENT;
1453 return 0;
1454}
1455
Eric W. Biederman397d4252015-08-15 20:27:13 -05001456static int follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457{
1458 while(1) {
Al Viro2a737872009-04-07 11:49:53 -04001459 if (nd->path.dentry == nd->root.dentry &&
1460 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 break;
1462 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001463 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05001464 int ret = path_parent_directory(&nd->path);
1465 if (ret)
1466 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 break;
1468 }
Al Viro3088dd72010-01-30 15:47:29 -05001469 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 }
Al Viro79ed0222009-04-18 13:59:41 -04001472 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001473 nd->inode = nd->path.dentry->d_inode;
Eric W. Biederman397d4252015-08-15 20:27:13 -05001474 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475}
1476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477/*
Oleg Drokinf4fdace2016-07-07 22:04:04 -04001478 * This looks up the name in dcache and possibly revalidates the found dentry.
1479 * NULL is returned if the dentry does not exist in the cache.
Nick Pigginbaa03892010-08-18 04:37:31 +10001480 */
Al Viroe3c13922016-03-06 14:03:27 -05001481static struct dentry *lookup_dcache(const struct qstr *name,
1482 struct dentry *dir,
Al Viro6c51e512016-03-05 20:09:32 -05001483 unsigned int flags)
Nick Pigginbaa03892010-08-18 04:37:31 +10001484{
Al Viroa89f8332017-01-09 22:25:28 -05001485 struct dentry *dentry = d_lookup(dir, name);
Miklos Szeredibad61182012-03-26 12:54:24 +02001486 if (dentry) {
Al Viroa89f8332017-01-09 22:25:28 -05001487 int error = d_revalidate(dentry, flags);
1488 if (unlikely(error <= 0)) {
1489 if (!error)
1490 d_invalidate(dentry);
1491 dput(dentry);
1492 return ERR_PTR(error);
Miklos Szeredibad61182012-03-26 12:54:24 +02001493 }
1494 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001495 return dentry;
1496}
1497
1498/*
J. Bruce Fields13a2c3b2013-10-23 16:09:16 -04001499 * Call i_op->lookup on the dentry. The dentry must be negative and
1500 * unhashed.
Miklos Szeredibad61182012-03-26 12:54:24 +02001501 *
1502 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001503 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001504static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
Al Viro72bd8662012-06-10 17:17:17 -04001505 unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001506{
Josef Bacik44396f42011-05-31 11:58:49 -04001507 struct dentry *old;
1508
1509 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001510 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001511 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001512 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001513 }
Josef Bacik44396f42011-05-31 11:58:49 -04001514
Al Viro72bd8662012-06-10 17:17:17 -04001515 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001516 if (unlikely(old)) {
1517 dput(dentry);
1518 dentry = old;
1519 }
1520 return dentry;
1521}
1522
Al Viroe3c13922016-03-06 14:03:27 -05001523static struct dentry *__lookup_hash(const struct qstr *name,
Al Viro72bd8662012-06-10 17:17:17 -04001524 struct dentry *base, unsigned int flags)
Al Viroa3255542012-03-30 14:41:51 -04001525{
Al Viro6c51e512016-03-05 20:09:32 -05001526 struct dentry *dentry = lookup_dcache(name, base, flags);
Al Viroa3255542012-03-30 14:41:51 -04001527
Al Viro6c51e512016-03-05 20:09:32 -05001528 if (dentry)
Miklos Szeredibad61182012-03-26 12:54:24 +02001529 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001530
Al Viro6c51e512016-03-05 20:09:32 -05001531 dentry = d_alloc(base, name);
1532 if (unlikely(!dentry))
1533 return ERR_PTR(-ENOMEM);
1534
Al Viro72bd8662012-06-10 17:17:17 -04001535 return lookup_real(base->d_inode, dentry, flags);
Al Viroa3255542012-03-30 14:41:51 -04001536}
1537
Al Viroe97cdc82013-01-24 18:16:00 -05001538static int lookup_fast(struct nameidata *nd,
Al Viro254cf582015-05-05 09:40:46 -04001539 struct path *path, struct inode **inode,
1540 unsigned *seqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
Jan Blunck4ac91372008-02-14 19:34:32 -08001542 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001543 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001544 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001545 int err;
1546
Al Viro3cac2602009-08-13 18:27:43 +04001547 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001548 * Rename seqlock is not required here because in the off chance
Al Viro5d0f49c2016-03-05 21:32:53 -05001549 * of a false negative due to a concurrent rename, the caller is
1550 * going to fall back to non-racy lookup.
Nick Pigginb04f7842010-08-18 04:37:34 +10001551 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001552 if (nd->flags & LOOKUP_RCU) {
1553 unsigned seq;
Al Viro766c4cb2015-05-07 19:24:57 -04001554 bool negative;
Linus Torvaldsda53be12013-05-21 15:22:44 -07001555 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
Al Viro5d0f49c2016-03-05 21:32:53 -05001556 if (unlikely(!dentry)) {
Al Viro4675ac32017-01-09 22:29:15 -05001557 if (unlazy_walk(nd))
Al Viro5d0f49c2016-03-05 21:32:53 -05001558 return -ECHILD;
Al Viroe9742b52016-03-05 22:04:59 -05001559 return 0;
Al Viro5d0f49c2016-03-05 21:32:53 -05001560 }
Al Viro5a18fff2011-03-11 04:44:53 -05001561
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001562 /*
1563 * This sequence count validates that the inode matches
1564 * the dentry name information from lookup.
1565 */
David Howells63afdfc2015-05-06 15:59:00 +01001566 *inode = d_backing_inode(dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04001567 negative = d_is_negative(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001568 if (unlikely(read_seqcount_retry(&dentry->d_seq, seq)))
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001569 return -ECHILD;
1570
1571 /*
1572 * This sequence count validates that the parent had no
1573 * changes while we did the lookup of the dentry above.
1574 *
1575 * The memory barrier in read_seqcount_begin of child is
1576 * enough, we can use __read_seqcount_retry here.
1577 */
Al Viro5d0f49c2016-03-05 21:32:53 -05001578 if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq)))
Nick Piggin31e6b012011-01-07 17:49:52 +11001579 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001580
Al Viro254cf582015-05-05 09:40:46 -04001581 *seqp = seq;
Al Viroa89f8332017-01-09 22:25:28 -05001582 status = d_revalidate(dentry, nd->flags);
Al Viro209a7fb2017-01-09 01:35:39 -05001583 if (likely(status > 0)) {
Al Viro5d0f49c2016-03-05 21:32:53 -05001584 /*
1585 * Note: do negative dentry check after revalidation in
1586 * case that drops it.
1587 */
1588 if (unlikely(negative))
1589 return -ENOENT;
1590 path->mnt = mnt;
1591 path->dentry = dentry;
1592 if (likely(__follow_mount_rcu(nd, path, inode, seqp)))
Al Viroe9742b52016-03-05 22:04:59 -05001593 return 1;
Al Viro24643082011-02-15 01:26:22 -05001594 }
Al Viro4675ac32017-01-09 22:29:15 -05001595 if (unlazy_child(nd, dentry, seq))
Al Viro209a7fb2017-01-09 01:35:39 -05001596 return -ECHILD;
1597 if (unlikely(status == -ECHILD))
1598 /* we'd been told to redo it in non-rcu mode */
1599 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001600 } else {
Al Viroe97cdc82013-01-24 18:16:00 -05001601 dentry = __d_lookup(parent, &nd->last);
Al Viro5d0f49c2016-03-05 21:32:53 -05001602 if (unlikely(!dentry))
Al Viroe9742b52016-03-05 22:04:59 -05001603 return 0;
Al Viroa89f8332017-01-09 22:25:28 -05001604 status = d_revalidate(dentry, nd->flags);
Nick Piggin31e6b012011-01-07 17:49:52 +11001605 }
Al Viro5a18fff2011-03-11 04:44:53 -05001606 if (unlikely(status <= 0)) {
Al Viroe9742b52016-03-05 22:04:59 -05001607 if (!status)
Al Viro5d0f49c2016-03-05 21:32:53 -05001608 d_invalidate(dentry);
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001609 dput(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001610 return status;
Al Viro5a18fff2011-03-11 04:44:53 -05001611 }
Al Viro766c4cb2015-05-07 19:24:57 -04001612 if (unlikely(d_is_negative(dentry))) {
1613 dput(dentry);
1614 return -ENOENT;
1615 }
Al Viro5d0f49c2016-03-05 21:32:53 -05001616
David Howells9875cf82011-01-14 18:45:21 +00001617 path->mnt = mnt;
1618 path->dentry = dentry;
NeilBrown756daf22015-03-23 13:37:38 +11001619 err = follow_managed(path, nd);
Al Viroe9742b52016-03-05 22:04:59 -05001620 if (likely(err > 0))
David Howells63afdfc2015-05-06 15:59:00 +01001621 *inode = d_backing_inode(path->dentry);
Al Viro84027522015-04-22 10:30:08 -04001622 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001623}
1624
1625/* Fast lookup failed, do it the slow way */
Al Viroe3c13922016-03-06 14:03:27 -05001626static struct dentry *lookup_slow(const struct qstr *name,
1627 struct dentry *dir,
1628 unsigned int flags)
Miklos Szeredi697f5142012-05-21 17:30:05 +02001629{
Al Viro94bdd652016-04-15 02:42:04 -04001630 struct dentry *dentry = ERR_PTR(-ENOENT), *old;
Al Viro19363862016-04-14 19:33:34 -04001631 struct inode *inode = dir->d_inode;
Al Virod9171b92016-04-15 03:33:13 -04001632 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Al Viro19363862016-04-14 19:33:34 -04001633
Al Viro9902af72016-04-15 15:08:36 -04001634 inode_lock_shared(inode);
Al Viro19363862016-04-14 19:33:34 -04001635 /* Don't go there if it's already dead */
Al Viro94bdd652016-04-15 02:42:04 -04001636 if (unlikely(IS_DEADDIR(inode)))
1637 goto out;
1638again:
Al Virod9171b92016-04-15 03:33:13 -04001639 dentry = d_alloc_parallel(dir, name, &wq);
Al Viro94bdd652016-04-15 02:42:04 -04001640 if (IS_ERR(dentry))
1641 goto out;
1642 if (unlikely(!d_in_lookup(dentry))) {
Al Viroa89f8332017-01-09 22:25:28 -05001643 if (!(flags & LOOKUP_NO_REVAL)) {
Al Viro949a8522016-03-06 14:20:52 -05001644 int error = d_revalidate(dentry, flags);
1645 if (unlikely(error <= 0)) {
Al Viro94bdd652016-04-15 02:42:04 -04001646 if (!error) {
Al Viro949a8522016-03-06 14:20:52 -05001647 d_invalidate(dentry);
Al Viro94bdd652016-04-15 02:42:04 -04001648 dput(dentry);
1649 goto again;
1650 }
Al Viro949a8522016-03-06 14:20:52 -05001651 dput(dentry);
1652 dentry = ERR_PTR(error);
1653 }
1654 }
Al Viro94bdd652016-04-15 02:42:04 -04001655 } else {
1656 old = inode->i_op->lookup(inode, dentry, flags);
1657 d_lookup_done(dentry);
1658 if (unlikely(old)) {
1659 dput(dentry);
1660 dentry = old;
Al Viro949a8522016-03-06 14:20:52 -05001661 }
1662 }
Al Viro94bdd652016-04-15 02:42:04 -04001663out:
Al Viro9902af72016-04-15 15:08:36 -04001664 inode_unlock_shared(inode);
Al Viroe3c13922016-03-06 14:03:27 -05001665 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666}
1667
Al Viro52094c82011-02-21 21:34:47 -05001668static inline int may_lookup(struct nameidata *nd)
1669{
1670 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001671 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001672 if (err != -ECHILD)
1673 return err;
Al Viro4675ac32017-01-09 22:29:15 -05001674 if (unlazy_walk(nd))
Al Viro52094c82011-02-21 21:34:47 -05001675 return -ECHILD;
1676 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001677 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001678}
1679
Al Viro9856fa12011-03-04 14:22:06 -05001680static inline int handle_dots(struct nameidata *nd, int type)
1681{
1682 if (type == LAST_DOTDOT) {
Al Viro9e6697e2015-12-05 20:07:21 -05001683 if (!nd->root.mnt)
1684 set_root(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001685 if (nd->flags & LOOKUP_RCU) {
Al Viro70291ae2015-05-04 07:53:00 -04001686 return follow_dotdot_rcu(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001687 } else
Eric W. Biederman397d4252015-08-15 20:27:13 -05001688 return follow_dotdot(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001689 }
1690 return 0;
1691}
1692
Al Viro181548c2015-05-07 19:54:34 -04001693static int pick_link(struct nameidata *nd, struct path *link,
1694 struct inode *inode, unsigned seq)
Al Virod63ff282015-05-04 18:13:23 -04001695{
Al Viro626de992015-05-04 18:26:59 -04001696 int error;
Al Viro1cf26652015-05-06 16:01:56 -04001697 struct saved *last;
NeilBrown756daf22015-03-23 13:37:38 +11001698 if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) {
Al Viro626de992015-05-04 18:26:59 -04001699 path_to_nameidata(link, nd);
1700 return -ELOOP;
1701 }
Al Virobc40aee2015-05-09 13:04:24 -04001702 if (!(nd->flags & LOOKUP_RCU)) {
Al Viro79733872015-05-09 12:55:43 -04001703 if (link->mnt == nd->path.mnt)
1704 mntget(link->mnt);
Al Virod63ff282015-05-04 18:13:23 -04001705 }
Al Viro626de992015-05-04 18:26:59 -04001706 error = nd_alloc_stack(nd);
1707 if (unlikely(error)) {
Al Virobc40aee2015-05-09 13:04:24 -04001708 if (error == -ECHILD) {
Al Viroad1633a2017-01-08 22:35:31 -05001709 if (unlikely(!legitimize_path(nd, link, seq))) {
1710 drop_links(nd);
1711 nd->depth = 0;
1712 nd->flags &= ~LOOKUP_RCU;
1713 nd->path.mnt = NULL;
1714 nd->path.dentry = NULL;
1715 if (!(nd->flags & LOOKUP_ROOT))
1716 nd->root.mnt = NULL;
1717 rcu_read_unlock();
Al Viro4675ac32017-01-09 22:29:15 -05001718 } else if (likely(unlazy_walk(nd)) == 0)
Al Viroad1633a2017-01-08 22:35:31 -05001719 error = nd_alloc_stack(nd);
Al Virobc40aee2015-05-09 13:04:24 -04001720 }
1721 if (error) {
1722 path_put(link);
1723 return error;
1724 }
Al Viro626de992015-05-04 18:26:59 -04001725 }
1726
Al Viroab104922015-05-10 11:50:01 -04001727 last = nd->stack + nd->depth++;
Al Viro1cf26652015-05-06 16:01:56 -04001728 last->link = *link;
Al Virofceef392015-12-29 15:58:39 -05001729 clear_delayed_call(&last->done);
1730 nd->link_inode = inode;
Al Viro0450b2d2015-05-08 13:23:53 -04001731 last->seq = seq;
Al Virod63ff282015-05-04 18:13:23 -04001732 return 1;
1733}
1734
Al Viro8f64fb12016-11-14 01:50:26 -05001735enum {WALK_FOLLOW = 1, WALK_MORE = 2};
Al Viro31d66bc2016-11-14 01:43:34 -05001736
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001737/*
1738 * Do we need to follow links? We _really_ want to be able
1739 * to do this check without having to look at inode->i_op,
1740 * so we keep a cache of "no, this doesn't need follow_link"
1741 * for the common case.
1742 */
Al Viro8f64fb12016-11-14 01:50:26 -05001743static inline int step_into(struct nameidata *nd, struct path *path,
1744 int flags, struct inode *inode, unsigned seq)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001745{
Al Viro31d66bc2016-11-14 01:43:34 -05001746 if (!(flags & WALK_MORE) && nd->depth)
1747 put_link(nd);
Al Viro8f64fb12016-11-14 01:50:26 -05001748 if (likely(!d_is_symlink(path->dentry)) ||
1749 !(flags & WALK_FOLLOW || nd->flags & LOOKUP_FOLLOW)) {
1750 /* not a symlink or should not follow */
1751 path_to_nameidata(path, nd);
1752 nd->inode = inode;
1753 nd->seq = seq;
Al Virod63ff282015-05-04 18:13:23 -04001754 return 0;
Al Viro8f64fb12016-11-14 01:50:26 -05001755 }
Al Viroa7f77542016-02-27 19:31:01 -05001756 /* make sure that d_is_symlink above matches inode */
1757 if (nd->flags & LOOKUP_RCU) {
Al Viro8f64fb12016-11-14 01:50:26 -05001758 if (read_seqcount_retry(&path->dentry->d_seq, seq))
Al Viroa7f77542016-02-27 19:31:01 -05001759 return -ECHILD;
1760 }
Al Viro8f64fb12016-11-14 01:50:26 -05001761 return pick_link(nd, path, inode, seq);
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001762}
1763
Al Viro4693a542015-05-04 17:47:11 -04001764static int walk_component(struct nameidata *nd, int flags)
Al Viroce57dfc2011-03-13 19:58:58 -04001765{
Al Virocaa856342015-04-22 17:52:47 -04001766 struct path path;
Al Viroce57dfc2011-03-13 19:58:58 -04001767 struct inode *inode;
Al Viro254cf582015-05-05 09:40:46 -04001768 unsigned seq;
Al Viroce57dfc2011-03-13 19:58:58 -04001769 int err;
1770 /*
1771 * "." and ".." are special - ".." especially so because it has
1772 * to be able to know about the current root directory and
1773 * parent relationships.
1774 */
Al Viro4693a542015-05-04 17:47:11 -04001775 if (unlikely(nd->last_type != LAST_NORM)) {
1776 err = handle_dots(nd, nd->last_type);
Al Viro1c4ff1a2016-11-14 01:39:36 -05001777 if (!(flags & WALK_MORE) && nd->depth)
Al Viro4693a542015-05-04 17:47:11 -04001778 put_link(nd);
1779 return err;
1780 }
Al Viro254cf582015-05-05 09:40:46 -04001781 err = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05001782 if (unlikely(err <= 0)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001783 if (err < 0)
Al Virof0a9ba72015-05-04 07:59:30 -04001784 return err;
Al Viroe3c13922016-03-06 14:03:27 -05001785 path.dentry = lookup_slow(&nd->last, nd->path.dentry,
1786 nd->flags);
1787 if (IS_ERR(path.dentry))
1788 return PTR_ERR(path.dentry);
Al Viro7500c382016-03-31 00:23:05 -04001789
Al Viroe3c13922016-03-06 14:03:27 -05001790 path.mnt = nd->path.mnt;
1791 err = follow_managed(&path, nd);
1792 if (unlikely(err < 0))
Al Virof0a9ba72015-05-04 07:59:30 -04001793 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001794
Al Viro7500c382016-03-31 00:23:05 -04001795 if (unlikely(d_is_negative(path.dentry))) {
1796 path_to_nameidata(&path, nd);
1797 return -ENOENT;
1798 }
1799
Al Viro254cf582015-05-05 09:40:46 -04001800 seq = 0; /* we are already out of RCU mode */
Al Virod4565642016-02-27 19:23:16 -05001801 inode = d_backing_inode(path.dentry);
Al Viroce57dfc2011-03-13 19:58:58 -04001802 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001803
Al Viro8f64fb12016-11-14 01:50:26 -05001804 return step_into(nd, &path, flags, inode, seq);
Al Viroce57dfc2011-03-13 19:58:58 -04001805}
1806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807/*
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001808 * We can do the critical dentry name comparison and hashing
1809 * operations one word at a time, but we are limited to:
1810 *
1811 * - Architectures with fast unaligned word accesses. We could
1812 * do a "get_unaligned()" if this helps and is sufficiently
1813 * fast.
1814 *
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001815 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1816 * do not trap on the (extremely unlikely) case of a page
1817 * crossing operation.
1818 *
1819 * - Furthermore, we need an efficient 64-bit compile for the
1820 * 64-bit case in order to generate the "number of bytes in
1821 * the final mask". Again, that could be replaced with a
1822 * efficient population count instruction or similar.
1823 */
1824#ifdef CONFIG_DCACHE_WORD_ACCESS
1825
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001826#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001827
George Spelvin468a9422016-05-26 22:11:51 -04001828#ifdef HASH_MIX
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001829
George Spelvin468a9422016-05-26 22:11:51 -04001830/* Architecture provides HASH_MIX and fold_hash() in <asm/hash.h> */
1831
1832#elif defined(CONFIG_64BIT)
George Spelvin2a18da7a2016-05-23 07:43:58 -04001833/*
1834 * Register pressure in the mixing function is an issue, particularly
1835 * on 32-bit x86, but almost any function requires one state value and
1836 * one temporary. Instead, use a function designed for two state values
1837 * and no temporaries.
1838 *
1839 * This function cannot create a collision in only two iterations, so
1840 * we have two iterations to achieve avalanche. In those two iterations,
1841 * we have six layers of mixing, which is enough to spread one bit's
1842 * influence out to 2^6 = 64 state bits.
1843 *
1844 * Rotate constants are scored by considering either 64 one-bit input
1845 * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the
1846 * probability of that delta causing a change to each of the 128 output
1847 * bits, using a sample of random initial states.
1848 *
1849 * The Shannon entropy of the computed probabilities is then summed
1850 * to produce a score. Ideally, any input change has a 50% chance of
1851 * toggling any given output bit.
1852 *
1853 * Mixing scores (in bits) for (12,45):
1854 * Input delta: 1-bit 2-bit
1855 * 1 round: 713.3 42542.6
1856 * 2 rounds: 2753.7 140389.8
1857 * 3 rounds: 5954.1 233458.2
1858 * 4 rounds: 7862.6 256672.2
1859 * Perfect: 8192 258048
1860 * (64*128) (64*63/2 * 128)
1861 */
1862#define HASH_MIX(x, y, a) \
1863 ( x ^= (a), \
1864 y ^= x, x = rol64(x,12),\
1865 x += y, y = rol64(y,45),\
1866 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001867
George Spelvin0fed3ac2016-05-02 06:31:01 -04001868/*
George Spelvin2a18da7a2016-05-23 07:43:58 -04001869 * Fold two longs into one 32-bit hash value. This must be fast, but
1870 * latency isn't quite as critical, as there is a fair bit of additional
1871 * work done before the hash value is used.
George Spelvin0fed3ac2016-05-02 06:31:01 -04001872 */
George Spelvin2a18da7a2016-05-23 07:43:58 -04001873static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001874{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001875 y ^= x * GOLDEN_RATIO_64;
1876 y *= GOLDEN_RATIO_64;
1877 return y >> 32;
George Spelvin0fed3ac2016-05-02 06:31:01 -04001878}
1879
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001880#else /* 32-bit case */
1881
George Spelvin2a18da7a2016-05-23 07:43:58 -04001882/*
1883 * Mixing scores (in bits) for (7,20):
1884 * Input delta: 1-bit 2-bit
1885 * 1 round: 330.3 9201.6
1886 * 2 rounds: 1246.4 25475.4
1887 * 3 rounds: 1907.1 31295.1
1888 * 4 rounds: 2042.3 31718.6
1889 * Perfect: 2048 31744
1890 * (32*64) (32*31/2 * 64)
1891 */
1892#define HASH_MIX(x, y, a) \
1893 ( x ^= (a), \
1894 y ^= x, x = rol32(x, 7),\
1895 x += y, y = rol32(y,20),\
1896 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001897
George Spelvin2a18da7a2016-05-23 07:43:58 -04001898static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001899{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001900 /* Use arch-optimized multiply if one exists */
1901 return __hash_32(y ^ __hash_32(x));
George Spelvin0fed3ac2016-05-02 06:31:01 -04001902}
1903
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001904#endif
1905
George Spelvin2a18da7a2016-05-23 07:43:58 -04001906/*
1907 * Return the hash of a string of known length. This is carfully
1908 * designed to match hash_name(), which is the more critical function.
1909 * In particular, we must end by hashing a final word containing 0..7
1910 * payload bytes, to match the way that hash_name() iterates until it
1911 * finds the delimiter after the name.
1912 */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001913unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001914{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001915 unsigned long a, x = 0, y = (unsigned long)salt;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001916
1917 for (;;) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001918 if (!len)
1919 goto done;
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001920 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001921 if (len < sizeof(unsigned long))
1922 break;
George Spelvin2a18da7a2016-05-23 07:43:58 -04001923 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001924 name += sizeof(unsigned long);
1925 len -= sizeof(unsigned long);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001926 }
George Spelvin2a18da7a2016-05-23 07:43:58 -04001927 x ^= a & bytemask_from_count(len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001928done:
George Spelvin2a18da7a2016-05-23 07:43:58 -04001929 return fold_hash(x, y);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001930}
1931EXPORT_SYMBOL(full_name_hash);
1932
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001933/* Return the "hash_len" (hash and length) of a null-terminated string */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001934u64 hashlen_string(const void *salt, const char *name)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001935{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001936 unsigned long a = 0, x = 0, y = (unsigned long)salt;
1937 unsigned long adata, mask, len;
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001938 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1939
Linus Torvalds8387ff22016-06-10 07:51:30 -07001940 len = 0;
1941 goto inside;
1942
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001943 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001944 HASH_MIX(x, y, a);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001945 len += sizeof(unsigned long);
Linus Torvalds8387ff22016-06-10 07:51:30 -07001946inside:
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001947 a = load_unaligned_zeropad(name+len);
1948 } while (!has_zero(a, &adata, &constants));
1949
1950 adata = prep_zero_mask(a, adata, &constants);
1951 mask = create_zero_mask(adata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04001952 x ^= a & zero_bytemask(mask);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001953
George Spelvin2a18da7a2016-05-23 07:43:58 -04001954 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001955}
1956EXPORT_SYMBOL(hashlen_string);
1957
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001958/*
1959 * Calculate the length and hash of the path component, and
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001960 * return the "hash_len" as the result.
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001961 */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001962static inline u64 hash_name(const void *salt, const char *name)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001963{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001964 unsigned long a = 0, b, x = 0, y = (unsigned long)salt;
1965 unsigned long adata, bdata, mask, len;
Linus Torvalds36126f82012-05-26 10:43:17 -07001966 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001967
Linus Torvalds8387ff22016-06-10 07:51:30 -07001968 len = 0;
1969 goto inside;
1970
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001971 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001972 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001973 len += sizeof(unsigned long);
Linus Torvalds8387ff22016-06-10 07:51:30 -07001974inside:
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001975 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07001976 b = a ^ REPEAT_BYTE('/');
1977 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001978
Linus Torvalds36126f82012-05-26 10:43:17 -07001979 adata = prep_zero_mask(a, adata, &constants);
1980 bdata = prep_zero_mask(b, bdata, &constants);
Linus Torvalds36126f82012-05-26 10:43:17 -07001981 mask = create_zero_mask(adata | bdata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04001982 x ^= a & zero_bytemask(mask);
Linus Torvalds36126f82012-05-26 10:43:17 -07001983
George Spelvin2a18da7a2016-05-23 07:43:58 -04001984 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001985}
1986
George Spelvin2a18da7a2016-05-23 07:43:58 -04001987#else /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001988
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001989/* Return the hash of a string of known length */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001990unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
Linus Torvalds0145acc2012-03-02 14:32:59 -08001991{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001992 unsigned long hash = init_name_hash(salt);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001993 while (len--)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001994 hash = partial_name_hash((unsigned char)*name++, hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001995 return end_name_hash(hash);
1996}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001997EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001998
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001999/* Return the "hash_len" (hash and length) of a null-terminated string */
Linus Torvalds8387ff22016-06-10 07:51:30 -07002000u64 hashlen_string(const void *salt, const char *name)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002001{
Linus Torvalds8387ff22016-06-10 07:51:30 -07002002 unsigned long hash = init_name_hash(salt);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002003 unsigned long len = 0, c;
2004
2005 c = (unsigned char)*name;
George Spelvine0ab7af2016-05-29 08:05:56 -04002006 while (c) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002007 len++;
2008 hash = partial_name_hash(c, hash);
2009 c = (unsigned char)name[len];
George Spelvine0ab7af2016-05-29 08:05:56 -04002010 }
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002011 return hashlen_create(end_name_hash(hash), len);
2012}
George Spelvinf2a031b2016-05-29 01:26:41 -04002013EXPORT_SYMBOL(hashlen_string);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04002014
Linus Torvalds3ddcd052011-08-06 22:45:50 -07002015/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002016 * We know there's a real path component here of at least
2017 * one character.
2018 */
Linus Torvalds8387ff22016-06-10 07:51:30 -07002019static inline u64 hash_name(const void *salt, const char *name)
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002020{
Linus Torvalds8387ff22016-06-10 07:51:30 -07002021 unsigned long hash = init_name_hash(salt);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002022 unsigned long len = 0, c;
2023
2024 c = (unsigned char)*name;
2025 do {
2026 len++;
2027 hash = partial_name_hash(c, hash);
2028 c = (unsigned char)name[len];
2029 } while (c && c != '/');
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002030 return hashlen_create(end_name_hash(hash), len);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002031}
2032
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002033#endif
2034
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002035/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01002037 * This is the basic name resolution function, turning a pathname into
2038 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01002040 * Returns 0 and nd will have valid dentry and mnt on success.
2041 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 */
Al Viro6de88d72009-08-09 01:41:57 +04002043static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 int err;
Al Viro32cd7462015-04-18 20:30:49 -04002046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 while (*name=='/')
2048 name++;
2049 if (!*name)
Al Viro9e18f102015-04-18 20:44:34 -04002050 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 /* At this point we know we have a real path component. */
2053 for(;;) {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002054 u64 hash_len;
Al Virofe479a52011-02-22 15:10:03 -05002055 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056
Al Viro52094c82011-02-21 21:34:47 -05002057 err = may_lookup(nd);
George Spelvin2a18da7a2016-05-23 07:43:58 -04002058 if (err)
Al Viro3595e232015-05-09 16:54:45 -04002059 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060
Linus Torvalds8387ff22016-06-10 07:51:30 -07002061 hash_len = hash_name(nd->path.dentry, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062
Al Virofe479a52011-02-22 15:10:03 -05002063 type = LAST_NORM;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002064 if (name[0] == '.') switch (hashlen_len(hash_len)) {
Al Virofe479a52011-02-22 15:10:03 -05002065 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002066 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05002067 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05002068 nd->flags |= LOOKUP_JUMPED;
2069 }
Al Virofe479a52011-02-22 15:10:03 -05002070 break;
2071 case 1:
2072 type = LAST_DOT;
2073 }
Al Viro5a202bc2011-03-08 14:17:44 -05002074 if (likely(type == LAST_NORM)) {
2075 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05002076 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05002077 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
James Hogana060dc52014-09-16 13:07:35 +01002078 struct qstr this = { { .hash_len = hash_len }, .name = name };
Linus Torvaldsda53be12013-05-21 15:22:44 -07002079 err = parent->d_op->d_hash(parent, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002080 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002081 return err;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002082 hash_len = this.hash_len;
2083 name = this.name;
Al Viro5a202bc2011-03-08 14:17:44 -05002084 }
2085 }
Al Virofe479a52011-02-22 15:10:03 -05002086
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002087 nd->last.hash_len = hash_len;
2088 nd->last.name = name;
Al Viro5f4a6a62013-01-24 18:04:22 -05002089 nd->last_type = type;
2090
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002091 name += hashlen_len(hash_len);
2092 if (!*name)
Al Virobdf6cbf2015-04-18 20:21:40 -04002093 goto OK;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002094 /*
2095 * If it wasn't NUL, we know it was '/'. Skip that
2096 * slash, and continue until no more slashes.
2097 */
2098 do {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002099 name++;
2100 } while (unlikely(*name == '/'));
Al Viro8620c232015-05-04 08:58:35 -04002101 if (unlikely(!*name)) {
2102OK:
Al Viro368ee9b2015-05-08 17:19:59 -04002103 /* pathname body, done */
Al Viro8620c232015-05-04 08:58:35 -04002104 if (!nd->depth)
2105 return 0;
2106 name = nd->stack[nd->depth - 1].name;
Al Viro368ee9b2015-05-08 17:19:59 -04002107 /* trailing symlink, done */
Al Viro8620c232015-05-04 08:58:35 -04002108 if (!name)
2109 return 0;
2110 /* last component of nested symlink */
Al Viro8f64fb12016-11-14 01:50:26 -05002111 err = walk_component(nd, WALK_FOLLOW);
Al Viro1c4ff1a2016-11-14 01:39:36 -05002112 } else {
2113 /* not the last component */
Al Viro8f64fb12016-11-14 01:50:26 -05002114 err = walk_component(nd, WALK_FOLLOW | WALK_MORE);
Al Viro8620c232015-05-04 08:58:35 -04002115 }
Al Viroce57dfc2011-03-13 19:58:58 -04002116 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002117 return err;
Al Virofe479a52011-02-22 15:10:03 -05002118
Al Viroce57dfc2011-03-13 19:58:58 -04002119 if (err) {
Al Viro626de992015-05-04 18:26:59 -04002120 const char *s = get_link(nd);
Al Viro5a460272015-04-17 23:44:45 -04002121
Viresh Kumara1c83682015-08-12 15:59:44 +05302122 if (IS_ERR(s))
Al Viro3595e232015-05-09 16:54:45 -04002123 return PTR_ERR(s);
Al Virod40bcc02015-04-18 20:03:03 -04002124 err = 0;
2125 if (unlikely(!s)) {
2126 /* jumped */
Al Virob9ff4422015-05-02 20:19:23 -04002127 put_link(nd);
Al Virod40bcc02015-04-18 20:03:03 -04002128 } else {
Al Virofab51e82015-05-10 11:01:00 -04002129 nd->stack[nd->depth - 1].name = name;
2130 name = s;
2131 continue;
Al Virod40bcc02015-04-18 20:03:03 -04002132 }
Nick Piggin31e6b012011-01-07 17:49:52 +11002133 }
Al Viro97242f92015-08-01 19:59:28 -04002134 if (unlikely(!d_can_lookup(nd->path.dentry))) {
2135 if (nd->flags & LOOKUP_RCU) {
Al Viro4675ac32017-01-09 22:29:15 -05002136 if (unlazy_walk(nd))
Al Viro97242f92015-08-01 19:59:28 -04002137 return -ECHILD;
2138 }
Al Viro3595e232015-05-09 16:54:45 -04002139 return -ENOTDIR;
Al Viro97242f92015-08-01 19:59:28 -04002140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142}
2143
Al Viroc8a53ee2015-05-12 18:43:07 -04002144static const char *path_init(struct nameidata *nd, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145{
Al Viroc8a53ee2015-05-12 18:43:07 -04002146 const char *s = nd->name->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Linus Torvaldsc0eb0272017-04-02 17:10:08 -07002148 if (!*s)
2149 flags &= ~LOOKUP_RCU;
2150
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro980f3ea2014-11-20 14:20:24 -05002152 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05002154 if (flags & LOOKUP_ROOT) {
David Howellsb18825a2013-09-12 19:22:53 +01002155 struct dentry *root = nd->root.dentry;
2156 struct inode *inode = root->d_inode;
Al Viro93893862017-04-15 17:29:14 -04002157 if (*s && unlikely(!d_can_lookup(root)))
2158 return ERR_PTR(-ENOTDIR);
Al Viro5b6ca022011-03-09 23:04:47 -05002159 nd->path = nd->root;
2160 nd->inode = inode;
2161 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002162 rcu_read_lock();
Al Viro5b6ca022011-03-09 23:04:47 -05002163 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro8f47a0162015-05-09 19:02:01 -04002164 nd->root_seq = nd->seq;
Al Viro48a066e2013-09-29 22:06:07 -04002165 nd->m_seq = read_seqbegin(&mount_lock);
Al Viro5b6ca022011-03-09 23:04:47 -05002166 } else {
2167 path_get(&nd->path);
2168 }
Al Viro368ee9b2015-05-08 17:19:59 -04002169 return s;
Al Viro5b6ca022011-03-09 23:04:47 -05002170 }
2171
Al Viro2a737872009-04-07 11:49:53 -04002172 nd->root.mnt = NULL;
Al Viro248fb5b2015-12-05 20:51:58 -05002173 nd->path.mnt = NULL;
2174 nd->path.dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
Al Viro48a066e2013-09-29 22:06:07 -04002176 nd->m_seq = read_seqbegin(&mount_lock);
Al Virofd2f7cb2015-02-22 20:07:13 -05002177 if (*s == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05002178 if (flags & LOOKUP_RCU)
Al Viro8b61e742013-11-08 12:45:01 -05002179 rcu_read_lock();
Al Viro9e6697e2015-12-05 20:07:21 -05002180 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05002181 if (likely(!nd_jump_root(nd)))
Al Viroef55d912015-12-05 20:25:06 -05002182 return s;
Al Viro248fb5b2015-12-05 20:51:58 -05002183 nd->root.mnt = NULL;
Al Viroef55d912015-12-05 20:25:06 -05002184 rcu_read_unlock();
2185 return ERR_PTR(-ECHILD);
Al Viroc8a53ee2015-05-12 18:43:07 -04002186 } else if (nd->dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05002187 if (flags & LOOKUP_RCU) {
2188 struct fs_struct *fs = current->fs;
2189 unsigned seq;
2190
Al Viro8b61e742013-11-08 12:45:01 -05002191 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05002192
2193 do {
2194 seq = read_seqcount_begin(&fs->seq);
2195 nd->path = fs->pwd;
Al Viroef55d912015-12-05 20:25:06 -05002196 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002197 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
2198 } while (read_seqcount_retry(&fs->seq, seq));
2199 } else {
2200 get_fs_pwd(current->fs, &nd->path);
Al Viroef55d912015-12-05 20:25:06 -05002201 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002202 }
Al Viroef55d912015-12-05 20:25:06 -05002203 return s;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002204 } else {
Jeff Layton582aa642012-12-11 08:56:16 -05002205 /* Caller must check execute permissions on the starting path component */
Al Viroc8a53ee2015-05-12 18:43:07 -04002206 struct fd f = fdget_raw(nd->dfd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002207 struct dentry *dentry;
2208
Al Viro2903ff02012-08-28 12:52:22 -04002209 if (!f.file)
Al Viro368ee9b2015-05-08 17:19:59 -04002210 return ERR_PTR(-EBADF);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002211
Al Viro2903ff02012-08-28 12:52:22 -04002212 dentry = f.file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002213
Al Virofd2f7cb2015-02-22 20:07:13 -05002214 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002215 if (!d_can_lookup(dentry)) {
Al Viro2903ff02012-08-28 12:52:22 -04002216 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002217 return ERR_PTR(-ENOTDIR);
Al Viro2903ff02012-08-28 12:52:22 -04002218 }
Al Virof52e0c12011-03-14 18:56:51 -04002219 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002220
Al Viro2903ff02012-08-28 12:52:22 -04002221 nd->path = f.file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05002222 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002223 rcu_read_lock();
Al Viro34a26b92015-05-11 08:05:05 -04002224 nd->inode = nd->path.dentry->d_inode;
2225 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viroe41f7d42011-02-22 14:02:58 -05002226 } else {
Al Viro2903ff02012-08-28 12:52:22 -04002227 path_get(&nd->path);
Al Viro34a26b92015-05-11 08:05:05 -04002228 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002229 }
Al Viro34a26b92015-05-11 08:05:05 -04002230 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002231 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 }
Al Viro9b4a9b12009-04-07 11:44:16 -04002233}
2234
Al Viro3bdba282015-05-08 17:37:07 -04002235static const char *trailing_symlink(struct nameidata *nd)
Al Viro95fa25d2015-04-22 13:46:57 -04002236{
2237 const char *s;
Al Virofec2fa22015-05-06 15:58:18 -04002238 int error = may_follow_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002239 if (unlikely(error))
Al Viro3bdba282015-05-08 17:37:07 -04002240 return ERR_PTR(error);
Al Viro95fa25d2015-04-22 13:46:57 -04002241 nd->flags |= LOOKUP_PARENT;
Al Virofab51e82015-05-10 11:01:00 -04002242 nd->stack[0].name = NULL;
Al Viro3b2e7f72015-04-19 00:53:50 -04002243 s = get_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002244 return s ? s : "";
Al Viro95fa25d2015-04-22 13:46:57 -04002245}
2246
Al Virocaa856342015-04-22 17:52:47 -04002247static inline int lookup_last(struct nameidata *nd)
Al Virobd92d7f2011-03-14 19:54:59 -04002248{
2249 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2250 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2251
2252 nd->flags &= ~LOOKUP_PARENT;
Al Viro1c4ff1a2016-11-14 01:39:36 -05002253 return walk_component(nd, 0);
Al Virobd92d7f2011-03-14 19:54:59 -04002254}
2255
Al Viro4f757f32017-04-15 17:31:22 -04002256static int handle_lookup_down(struct nameidata *nd)
2257{
2258 struct path path = nd->path;
2259 struct inode *inode = nd->inode;
2260 unsigned seq = nd->seq;
2261 int err;
2262
2263 if (nd->flags & LOOKUP_RCU) {
2264 /*
2265 * don't bother with unlazy_walk on failure - we are
2266 * at the very beginning of walk, so we lose nothing
2267 * if we simply redo everything in non-RCU mode
2268 */
2269 if (unlikely(!__follow_mount_rcu(nd, &path, &inode, &seq)))
2270 return -ECHILD;
2271 } else {
2272 dget(path.dentry);
2273 err = follow_managed(&path, nd);
2274 if (unlikely(err < 0))
2275 return err;
2276 inode = d_backing_inode(path.dentry);
2277 seq = 0;
2278 }
2279 path_to_nameidata(&path, nd);
2280 nd->inode = inode;
2281 nd->seq = seq;
2282 return 0;
2283}
2284
Al Viro9b4a9b12009-04-07 11:44:16 -04002285/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002286static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path)
Al Viro9b4a9b12009-04-07 11:44:16 -04002287{
Al Viroc8a53ee2015-05-12 18:43:07 -04002288 const char *s = path_init(nd, flags);
Al Virobd92d7f2011-03-14 19:54:59 -04002289 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11002290
Al Viro368ee9b2015-05-08 17:19:59 -04002291 if (IS_ERR(s))
2292 return PTR_ERR(s);
Al Viro4f757f32017-04-15 17:31:22 -04002293
2294 if (unlikely(flags & LOOKUP_DOWN)) {
2295 err = handle_lookup_down(nd);
2296 if (unlikely(err < 0)) {
2297 terminate_walk(nd);
2298 return err;
2299 }
2300 }
2301
Al Viro3bdba282015-05-08 17:37:07 -04002302 while (!(err = link_path_walk(s, nd))
2303 && ((err = lookup_last(nd)) > 0)) {
2304 s = trailing_symlink(nd);
2305 if (IS_ERR(s)) {
2306 err = PTR_ERR(s);
2307 break;
Al Virobd92d7f2011-03-14 19:54:59 -04002308 }
2309 }
Al Viro9f1fafe2011-03-25 11:00:12 -04002310 if (!err)
2311 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002312
Al Virodeb106c2015-05-08 18:05:21 -04002313 if (!err && nd->flags & LOOKUP_DIRECTORY)
2314 if (!d_can_lookup(nd->path.dentry))
Al Virobd23a532011-03-23 09:56:30 -04002315 err = -ENOTDIR;
Al Viro625b6d12015-05-12 16:36:12 -04002316 if (!err) {
2317 *path = nd->path;
2318 nd->path.mnt = NULL;
2319 nd->path.dentry = NULL;
2320 }
2321 terminate_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002322 return err;
Al Viroee0827c2011-02-21 23:38:09 -05002323}
Nick Piggin31e6b012011-01-07 17:49:52 +11002324
Al Viro625b6d12015-05-12 16:36:12 -04002325static int filename_lookup(int dfd, struct filename *name, unsigned flags,
Al Viro9ad1aaa2015-05-12 16:44:39 -04002326 struct path *path, struct path *root)
Jeff Layton873f1ee2012-10-10 15:25:29 -04002327{
Al Viro894bc8c2015-05-02 07:16:16 -04002328 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002329 struct nameidata nd;
Al Viroabc9f5b2015-05-12 16:53:42 -04002330 if (IS_ERR(name))
2331 return PTR_ERR(name);
Al Viro9ad1aaa2015-05-12 16:44:39 -04002332 if (unlikely(root)) {
2333 nd.root = *root;
2334 flags |= LOOKUP_ROOT;
2335 }
Al Viro9883d182015-05-13 07:28:08 -04002336 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002337 retval = path_lookupat(&nd, flags | LOOKUP_RCU, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002338 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002339 retval = path_lookupat(&nd, flags, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002340 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002341 retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002342
2343 if (likely(!retval))
Al Viro625b6d12015-05-12 16:36:12 -04002344 audit_inode(name, path->dentry, flags & LOOKUP_PARENT);
Al Viro9883d182015-05-13 07:28:08 -04002345 restore_nameidata();
Al Viroe4bd1c12015-05-12 16:40:39 -04002346 putname(name);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002347 return retval;
2348}
2349
Al Viro8bcb77f2015-05-08 16:59:20 -04002350/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002351static int path_parentat(struct nameidata *nd, unsigned flags,
Al Viro391172c2015-05-09 11:19:16 -04002352 struct path *parent)
Al Viro8bcb77f2015-05-08 16:59:20 -04002353{
Al Viroc8a53ee2015-05-12 18:43:07 -04002354 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002355 int err;
2356 if (IS_ERR(s))
2357 return PTR_ERR(s);
2358 err = link_path_walk(s, nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002359 if (!err)
2360 err = complete_walk(nd);
Al Viro391172c2015-05-09 11:19:16 -04002361 if (!err) {
2362 *parent = nd->path;
2363 nd->path.mnt = NULL;
2364 nd->path.dentry = NULL;
2365 }
2366 terminate_walk(nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002367 return err;
2368}
2369
Al Viro5c31b6c2015-05-12 17:32:54 -04002370static struct filename *filename_parentat(int dfd, struct filename *name,
Al Viro391172c2015-05-09 11:19:16 -04002371 unsigned int flags, struct path *parent,
2372 struct qstr *last, int *type)
Al Viro8bcb77f2015-05-08 16:59:20 -04002373{
2374 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002375 struct nameidata nd;
Al Viro8bcb77f2015-05-08 16:59:20 -04002376
Al Viro5c31b6c2015-05-12 17:32:54 -04002377 if (IS_ERR(name))
2378 return name;
Al Viro9883d182015-05-13 07:28:08 -04002379 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002380 retval = path_parentat(&nd, flags | LOOKUP_RCU, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002381 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002382 retval = path_parentat(&nd, flags, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002383 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002384 retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent);
Al Viro391172c2015-05-09 11:19:16 -04002385 if (likely(!retval)) {
2386 *last = nd.last;
2387 *type = nd.last_type;
2388 audit_inode(name, parent->dentry, LOOKUP_PARENT);
Al Viro5c31b6c2015-05-12 17:32:54 -04002389 } else {
2390 putname(name);
2391 name = ERR_PTR(retval);
Al Viro391172c2015-05-09 11:19:16 -04002392 }
Al Viro9883d182015-05-13 07:28:08 -04002393 restore_nameidata();
Al Viro5c31b6c2015-05-12 17:32:54 -04002394 return name;
Al Viro8bcb77f2015-05-08 16:59:20 -04002395}
2396
Al Viro79714f72012-06-15 03:01:42 +04002397/* does lookup, returns the object with parent locked */
2398struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002399{
Al Viro5c31b6c2015-05-12 17:32:54 -04002400 struct filename *filename;
2401 struct dentry *d;
Al Viro391172c2015-05-09 11:19:16 -04002402 struct qstr last;
2403 int type;
Paul Moore51689102015-01-22 00:00:03 -05002404
Al Viro5c31b6c2015-05-12 17:32:54 -04002405 filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path,
2406 &last, &type);
Paul Moore51689102015-01-22 00:00:03 -05002407 if (IS_ERR(filename))
2408 return ERR_CAST(filename);
Al Viro5c31b6c2015-05-12 17:32:54 -04002409 if (unlikely(type != LAST_NORM)) {
Al Viro391172c2015-05-09 11:19:16 -04002410 path_put(path);
Al Viro5c31b6c2015-05-12 17:32:54 -04002411 putname(filename);
2412 return ERR_PTR(-EINVAL);
Al Viro79714f72012-06-15 03:01:42 +04002413 }
Al Viro59551022016-01-22 15:40:57 -05002414 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04002415 d = __lookup_hash(&last, path->dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04002416 if (IS_ERR(d)) {
Al Viro59551022016-01-22 15:40:57 -05002417 inode_unlock(path->dentry->d_inode);
Al Viro391172c2015-05-09 11:19:16 -04002418 path_put(path);
Al Viro79714f72012-06-15 03:01:42 +04002419 }
Paul Moore51689102015-01-22 00:00:03 -05002420 putname(filename);
Al Viro79714f72012-06-15 03:01:42 +04002421 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002422}
2423
Al Virod1811462008-08-02 00:49:18 -04002424int kern_path(const char *name, unsigned int flags, struct path *path)
2425{
Al Viroabc9f5b2015-05-12 16:53:42 -04002426 return filename_lookup(AT_FDCWD, getname_kernel(name),
2427 flags, path, NULL);
Al Virod1811462008-08-02 00:49:18 -04002428}
Al Viro4d359502014-03-14 12:20:17 -04002429EXPORT_SYMBOL(kern_path);
Al Virod1811462008-08-02 00:49:18 -04002430
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002431/**
2432 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2433 * @dentry: pointer to dentry of the base directory
2434 * @mnt: pointer to vfs mount of the base directory
2435 * @name: pointer to file name
2436 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002437 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002438 */
2439int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2440 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002441 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002442{
Al Viro9ad1aaa2015-05-12 16:44:39 -04002443 struct path root = {.mnt = mnt, .dentry = dentry};
Al Viro9ad1aaa2015-05-12 16:44:39 -04002444 /* the first argument of filename_lookup() is ignored with root */
Al Viroabc9f5b2015-05-12 16:53:42 -04002445 return filename_lookup(AT_FDCWD, getname_kernel(name),
2446 flags , path, &root);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002447}
Al Viro4d359502014-03-14 12:20:17 -04002448EXPORT_SYMBOL(vfs_path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002449
Christoph Hellwigeead1912007-10-16 23:25:38 -07002450/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002451 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002452 * @name: pathname component to lookup
2453 * @base: base directory to lookup from
2454 * @len: maximum length @len should be interpreted to
2455 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002456 * Note that this routine is purely a helper for filesystem usage and should
Al Viro9e7543e2015-02-23 02:49:48 -05002457 * not be called by generic code.
NeilBrownbbddca82016-01-07 16:08:20 -05002458 *
2459 * The caller must hold base->i_mutex.
Christoph Hellwigeead1912007-10-16 23:25:38 -07002460 */
James Morris057f6c02007-04-26 00:12:05 -07002461struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2462{
James Morris057f6c02007-04-26 00:12:05 -07002463 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05002464 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002465 int err;
James Morris057f6c02007-04-26 00:12:05 -07002466
Al Viro59551022016-01-22 15:40:57 -05002467 WARN_ON_ONCE(!inode_is_locked(base->d_inode));
David Woodhouse2f9092e2009-04-20 23:18:37 +01002468
Al Viro6a96ba52011-03-07 23:49:20 -05002469 this.name = name;
2470 this.len = len;
Linus Torvalds8387ff22016-06-10 07:51:30 -07002471 this.hash = full_name_hash(base, name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05002472 if (!len)
2473 return ERR_PTR(-EACCES);
2474
Al Viro21d8a152012-11-29 22:17:21 -05002475 if (unlikely(name[0] == '.')) {
2476 if (len < 2 || (len == 2 && name[1] == '.'))
2477 return ERR_PTR(-EACCES);
2478 }
2479
Al Viro6a96ba52011-03-07 23:49:20 -05002480 while (len--) {
2481 c = *(const unsigned char *)name++;
2482 if (c == '/' || c == '\0')
2483 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05002484 }
Al Viro5a202bc2011-03-08 14:17:44 -05002485 /*
2486 * See if the low-level filesystem might want
2487 * to use its own hash..
2488 */
2489 if (base->d_flags & DCACHE_OP_HASH) {
Linus Torvaldsda53be12013-05-21 15:22:44 -07002490 int err = base->d_op->d_hash(base, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002491 if (err < 0)
2492 return ERR_PTR(err);
2493 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07002494
Miklos Szeredicda309d2012-03-26 12:54:21 +02002495 err = inode_permission(base->d_inode, MAY_EXEC);
2496 if (err)
2497 return ERR_PTR(err);
2498
Al Viro72bd8662012-06-10 17:17:17 -04002499 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002500}
Al Viro4d359502014-03-14 12:20:17 -04002501EXPORT_SYMBOL(lookup_one_len);
James Morris057f6c02007-04-26 00:12:05 -07002502
NeilBrownbbddca82016-01-07 16:08:20 -05002503/**
2504 * lookup_one_len_unlocked - filesystem helper to lookup single pathname component
2505 * @name: pathname component to lookup
2506 * @base: base directory to lookup from
2507 * @len: maximum length @len should be interpreted to
2508 *
2509 * Note that this routine is purely a helper for filesystem usage and should
2510 * not be called by generic code.
2511 *
2512 * Unlike lookup_one_len, it should be called without the parent
2513 * i_mutex held, and will take the i_mutex itself if necessary.
2514 */
2515struct dentry *lookup_one_len_unlocked(const char *name,
2516 struct dentry *base, int len)
2517{
2518 struct qstr this;
2519 unsigned int c;
2520 int err;
Linus Torvalds20d00ee2016-07-29 12:17:52 -07002521 struct dentry *ret;
NeilBrownbbddca82016-01-07 16:08:20 -05002522
2523 this.name = name;
2524 this.len = len;
Linus Torvalds8387ff22016-06-10 07:51:30 -07002525 this.hash = full_name_hash(base, name, len);
NeilBrownbbddca82016-01-07 16:08:20 -05002526 if (!len)
2527 return ERR_PTR(-EACCES);
2528
2529 if (unlikely(name[0] == '.')) {
2530 if (len < 2 || (len == 2 && name[1] == '.'))
2531 return ERR_PTR(-EACCES);
2532 }
2533
2534 while (len--) {
2535 c = *(const unsigned char *)name++;
2536 if (c == '/' || c == '\0')
2537 return ERR_PTR(-EACCES);
2538 }
2539 /*
2540 * See if the low-level filesystem might want
2541 * to use its own hash..
2542 */
2543 if (base->d_flags & DCACHE_OP_HASH) {
2544 int err = base->d_op->d_hash(base, &this);
2545 if (err < 0)
2546 return ERR_PTR(err);
2547 }
2548
2549 err = inode_permission(base->d_inode, MAY_EXEC);
2550 if (err)
2551 return ERR_PTR(err);
2552
Linus Torvalds20d00ee2016-07-29 12:17:52 -07002553 ret = lookup_dcache(&this, base, 0);
2554 if (!ret)
2555 ret = lookup_slow(&this, base, 0);
2556 return ret;
NeilBrownbbddca82016-01-07 16:08:20 -05002557}
2558EXPORT_SYMBOL(lookup_one_len_unlocked);
2559
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05002560#ifdef CONFIG_UNIX98_PTYS
2561int path_pts(struct path *path)
2562{
2563 /* Find something mounted on "pts" in the same directory as
2564 * the input path.
2565 */
2566 struct dentry *child, *parent;
2567 struct qstr this;
2568 int ret;
2569
2570 ret = path_parent_directory(path);
2571 if (ret)
2572 return ret;
2573
2574 parent = path->dentry;
2575 this.name = "pts";
2576 this.len = 3;
2577 child = d_hash_and_lookup(parent, &this);
2578 if (!child)
2579 return -ENOENT;
2580
2581 path->dentry = child;
2582 dput(parent);
2583 follow_mount(path);
2584 return 0;
2585}
2586#endif
2587
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002588int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2589 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590{
Al Viroabc9f5b2015-05-12 16:53:42 -04002591 return filename_lookup(dfd, getname_flags(name, flags, empty),
2592 flags, path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593}
Al Virob853a162015-05-13 09:12:02 -04002594EXPORT_SYMBOL(user_path_at_empty);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002595
Jeff Layton80334262013-07-26 06:23:25 -04002596/**
Al Viro197df042013-09-08 14:03:27 -04002597 * mountpoint_last - look up last component for umount
Jeff Layton80334262013-07-26 06:23:25 -04002598 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
Jeff Layton80334262013-07-26 06:23:25 -04002599 *
2600 * This is a special lookup_last function just for umount. In this case, we
2601 * need to resolve the path without doing any revalidation.
2602 *
2603 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2604 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2605 * in almost all cases, this lookup will be served out of the dcache. The only
2606 * cases where it won't are if nd->last refers to a symlink or the path is
2607 * bogus and it doesn't exist.
2608 *
2609 * Returns:
2610 * -error: if there was an error during lookup. This includes -ENOENT if the
Al Viroba8f4612016-11-14 00:40:33 -05002611 * lookup found a negative dentry.
Jeff Layton80334262013-07-26 06:23:25 -04002612 *
Al Viroba8f4612016-11-14 00:40:33 -05002613 * 0: if we successfully resolved nd->last and found it to not to be a
2614 * symlink that needs to be followed.
Jeff Layton80334262013-07-26 06:23:25 -04002615 *
2616 * 1: if we successfully resolved nd->last and found it to be a symlink
Al Viroba8f4612016-11-14 00:40:33 -05002617 * that needs to be followed.
Jeff Layton80334262013-07-26 06:23:25 -04002618 */
2619static int
Al Viroba8f4612016-11-14 00:40:33 -05002620mountpoint_last(struct nameidata *nd)
Jeff Layton80334262013-07-26 06:23:25 -04002621{
2622 int error = 0;
Jeff Layton80334262013-07-26 06:23:25 -04002623 struct dentry *dir = nd->path.dentry;
Al Viroba8f4612016-11-14 00:40:33 -05002624 struct path path;
Jeff Layton80334262013-07-26 06:23:25 -04002625
Al Viro35759522013-09-08 13:41:33 -04002626 /* If we're in rcuwalk, drop out of it to handle last component */
2627 if (nd->flags & LOOKUP_RCU) {
Al Viro4675ac32017-01-09 22:29:15 -05002628 if (unlazy_walk(nd))
Al Virodeb106c2015-05-08 18:05:21 -04002629 return -ECHILD;
Jeff Layton80334262013-07-26 06:23:25 -04002630 }
2631
2632 nd->flags &= ~LOOKUP_PARENT;
2633
2634 if (unlikely(nd->last_type != LAST_NORM)) {
2635 error = handle_dots(nd, nd->last_type);
Al Viro35759522013-09-08 13:41:33 -04002636 if (error)
Al Virodeb106c2015-05-08 18:05:21 -04002637 return error;
Al Viroba8f4612016-11-14 00:40:33 -05002638 path.dentry = dget(nd->path.dentry);
Al Viro949a8522016-03-06 14:20:52 -05002639 } else {
Al Viroba8f4612016-11-14 00:40:33 -05002640 path.dentry = d_lookup(dir, &nd->last);
2641 if (!path.dentry) {
Al Viro949a8522016-03-06 14:20:52 -05002642 /*
2643 * No cached dentry. Mounted dentries are pinned in the
2644 * cache, so that means that this dentry is probably
2645 * a symlink or the path doesn't actually point
2646 * to a mounted dentry.
2647 */
Al Viroba8f4612016-11-14 00:40:33 -05002648 path.dentry = lookup_slow(&nd->last, dir,
Al Viro949a8522016-03-06 14:20:52 -05002649 nd->flags | LOOKUP_NO_REVAL);
Al Viroba8f4612016-11-14 00:40:33 -05002650 if (IS_ERR(path.dentry))
2651 return PTR_ERR(path.dentry);
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002652 }
Jeff Layton80334262013-07-26 06:23:25 -04002653 }
Al Viroba8f4612016-11-14 00:40:33 -05002654 if (d_is_negative(path.dentry)) {
2655 dput(path.dentry);
Al Virodeb106c2015-05-08 18:05:21 -04002656 return -ENOENT;
Jeff Layton80334262013-07-26 06:23:25 -04002657 }
Al Viroba8f4612016-11-14 00:40:33 -05002658 path.mnt = nd->path.mnt;
Al Viro8f64fb12016-11-14 01:50:26 -05002659 return step_into(nd, &path, 0, d_backing_inode(path.dentry), 0);
Jeff Layton80334262013-07-26 06:23:25 -04002660}
2661
2662/**
Al Viro197df042013-09-08 14:03:27 -04002663 * path_mountpoint - look up a path to be umounted
Masanari Iida2a78b8572015-09-09 15:39:23 -07002664 * @nd: lookup context
Jeff Layton80334262013-07-26 06:23:25 -04002665 * @flags: lookup flags
Al Viroc8a53ee2015-05-12 18:43:07 -04002666 * @path: pointer to container for result
Jeff Layton80334262013-07-26 06:23:25 -04002667 *
2668 * Look up the given name, but don't attempt to revalidate the last component.
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002669 * Returns 0 and "path" will be valid on success; Returns error otherwise.
Jeff Layton80334262013-07-26 06:23:25 -04002670 */
2671static int
Al Viroc8a53ee2015-05-12 18:43:07 -04002672path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002673{
Al Viroc8a53ee2015-05-12 18:43:07 -04002674 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002675 int err;
2676 if (IS_ERR(s))
2677 return PTR_ERR(s);
Al Viro3bdba282015-05-08 17:37:07 -04002678 while (!(err = link_path_walk(s, nd)) &&
Al Viroba8f4612016-11-14 00:40:33 -05002679 (err = mountpoint_last(nd)) > 0) {
Al Viro3bdba282015-05-08 17:37:07 -04002680 s = trailing_symlink(nd);
2681 if (IS_ERR(s)) {
2682 err = PTR_ERR(s);
Jeff Layton80334262013-07-26 06:23:25 -04002683 break;
Al Viro3bdba282015-05-08 17:37:07 -04002684 }
Jeff Layton80334262013-07-26 06:23:25 -04002685 }
Al Viroba8f4612016-11-14 00:40:33 -05002686 if (!err) {
2687 *path = nd->path;
2688 nd->path.mnt = NULL;
2689 nd->path.dentry = NULL;
2690 follow_mount(path);
2691 }
Al Virodeb106c2015-05-08 18:05:21 -04002692 terminate_walk(nd);
Jeff Layton80334262013-07-26 06:23:25 -04002693 return err;
2694}
2695
Al Viro2d864652013-09-08 20:18:44 -04002696static int
Al Viro668696d2015-02-22 19:44:00 -05002697filename_mountpoint(int dfd, struct filename *name, struct path *path,
Al Viro2d864652013-09-08 20:18:44 -04002698 unsigned int flags)
2699{
Al Viro9883d182015-05-13 07:28:08 -04002700 struct nameidata nd;
Al Virocbaab2d2015-01-22 02:49:00 -05002701 int error;
Al Viro668696d2015-02-22 19:44:00 -05002702 if (IS_ERR(name))
2703 return PTR_ERR(name);
Al Viro9883d182015-05-13 07:28:08 -04002704 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002705 error = path_mountpoint(&nd, flags | LOOKUP_RCU, path);
Al Viro2d864652013-09-08 20:18:44 -04002706 if (unlikely(error == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002707 error = path_mountpoint(&nd, flags, path);
Al Viro2d864652013-09-08 20:18:44 -04002708 if (unlikely(error == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002709 error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path);
Al Viro2d864652013-09-08 20:18:44 -04002710 if (likely(!error))
Al Viro668696d2015-02-22 19:44:00 -05002711 audit_inode(name, path->dentry, 0);
Al Viro9883d182015-05-13 07:28:08 -04002712 restore_nameidata();
Al Viro668696d2015-02-22 19:44:00 -05002713 putname(name);
Al Viro2d864652013-09-08 20:18:44 -04002714 return error;
2715}
2716
Jeff Layton80334262013-07-26 06:23:25 -04002717/**
Al Viro197df042013-09-08 14:03:27 -04002718 * user_path_mountpoint_at - lookup a path from userland in order to umount it
Jeff Layton80334262013-07-26 06:23:25 -04002719 * @dfd: directory file descriptor
2720 * @name: pathname from userland
2721 * @flags: lookup flags
2722 * @path: pointer to container to hold result
2723 *
2724 * A umount is a special case for path walking. We're not actually interested
2725 * in the inode in this situation, and ESTALE errors can be a problem. We
2726 * simply want track down the dentry and vfsmount attached at the mountpoint
2727 * and avoid revalidating the last component.
2728 *
2729 * Returns 0 and populates "path" on success.
2730 */
2731int
Al Viro197df042013-09-08 14:03:27 -04002732user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
Jeff Layton80334262013-07-26 06:23:25 -04002733 struct path *path)
2734{
Al Virocbaab2d2015-01-22 02:49:00 -05002735 return filename_mountpoint(dfd, getname(name), path, flags);
Jeff Layton80334262013-07-26 06:23:25 -04002736}
2737
Al Viro2d864652013-09-08 20:18:44 -04002738int
2739kern_path_mountpoint(int dfd, const char *name, struct path *path,
2740 unsigned int flags)
2741{
Al Virocbaab2d2015-01-22 02:49:00 -05002742 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
Al Viro2d864652013-09-08 20:18:44 -04002743}
2744EXPORT_SYMBOL(kern_path_mountpoint);
2745
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002746int __check_sticky(struct inode *dir, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002748 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002749
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002750 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002752 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 return 0;
Andy Lutomirski23adbe12014-06-10 12:45:42 -07002754 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755}
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002756EXPORT_SYMBOL(__check_sticky);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
2758/*
2759 * Check whether we can remove a link victim from directory dir, check
2760 * whether the type of victim is right.
2761 * 1. We can't do it if dir is read-only (done in permission())
2762 * 2. We should have write and exec permissions on dir
2763 * 3. We can't remove anything from append-only dir
2764 * 4. We can't do anything with immutable dir (done in permission())
2765 * 5. If the sticky bit on dir is set we should either
2766 * a. be owner of dir, or
2767 * b. be owner of victim, or
2768 * c. have CAP_FOWNER capability
2769 * 6. If the victim is append-only or immutable we can't do antyhing with
2770 * links pointing to it.
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05002771 * 7. If the victim has an unknown uid or gid we can't change the inode.
2772 * 8. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2773 * 9. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2774 * 10. We can't remove a root or mountpoint.
2775 * 11. We don't allow removal of NFS sillyrenamed files; it's handled by
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 * nfs_async_unlink().
2777 */
David Howellsb18825a2013-09-12 19:22:53 +01002778static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779{
David Howells63afdfc2015-05-06 15:59:00 +01002780 struct inode *inode = d_backing_inode(victim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 int error;
2782
David Howellsb18825a2013-09-12 19:22:53 +01002783 if (d_is_negative(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 return -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01002785 BUG_ON(!inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
2787 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002788 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789
Al Virof419a2e2008-07-22 00:07:17 -04002790 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 if (error)
2792 return error;
2793 if (IS_APPEND(dir))
2794 return -EPERM;
David Howellsb18825a2013-09-12 19:22:53 +01002795
2796 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05002797 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode) || HAS_UNMAPPED_ID(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 return -EPERM;
2799 if (isdir) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002800 if (!d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 return -ENOTDIR;
2802 if (IS_ROOT(victim))
2803 return -EBUSY;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002804 } else if (d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 return -EISDIR;
2806 if (IS_DEADDIR(dir))
2807 return -ENOENT;
2808 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2809 return -EBUSY;
2810 return 0;
2811}
2812
2813/* Check whether we can create an object with dentry child in directory
2814 * dir.
2815 * 1. We can't do it if child already exists (open has special treatment for
2816 * this case, but since we are inlined it's OK)
2817 * 2. We can't do it if dir is read-only (done in permission())
Eric W. Biederman036d5232016-07-01 12:52:06 -05002818 * 3. We can't do it if the fs can't represent the fsuid or fsgid.
2819 * 4. We should have write and exec permissions on dir
2820 * 5. We can't do it if dir is immutable (done in permission())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002822static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823{
Eric W. Biederman036d5232016-07-01 12:52:06 -05002824 struct user_namespace *s_user_ns;
Jeff Layton14e972b2013-05-08 10:25:58 -04002825 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 if (child->d_inode)
2827 return -EEXIST;
2828 if (IS_DEADDIR(dir))
2829 return -ENOENT;
Eric W. Biederman036d5232016-07-01 12:52:06 -05002830 s_user_ns = dir->i_sb->s_user_ns;
2831 if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
2832 !kgid_has_mapping(s_user_ns, current_fsgid()))
2833 return -EOVERFLOW;
Al Virof419a2e2008-07-22 00:07:17 -04002834 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835}
2836
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837/*
2838 * p1 and p2 should be directories on the same fs.
2839 */
2840struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2841{
2842 struct dentry *p;
2843
2844 if (p1 == p2) {
Al Viro59551022016-01-22 15:40:57 -05002845 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 return NULL;
2847 }
2848
Al Virofc640052016-04-10 01:33:30 -04002849 mutex_lock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002851 p = d_ancestor(p2, p1);
2852 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002853 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT);
2854 inode_lock_nested(p1->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002855 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 }
2857
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002858 p = d_ancestor(p1, p2);
2859 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002860 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2861 inode_lock_nested(p2->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002862 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 }
2864
Al Viro59551022016-01-22 15:40:57 -05002865 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2866 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 return NULL;
2868}
Al Viro4d359502014-03-14 12:20:17 -04002869EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
2871void unlock_rename(struct dentry *p1, struct dentry *p2)
2872{
Al Viro59551022016-01-22 15:40:57 -05002873 inode_unlock(p1->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 if (p1 != p2) {
Al Viro59551022016-01-22 15:40:57 -05002875 inode_unlock(p2->d_inode);
Al Virofc640052016-04-10 01:33:30 -04002876 mutex_unlock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 }
2878}
Al Viro4d359502014-03-14 12:20:17 -04002879EXPORT_SYMBOL(unlock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880
Al Viro4acdaf22011-07-26 01:42:34 -04002881int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002882 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002884 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 if (error)
2886 return error;
2887
Al Viroacfa4382008-12-04 10:06:33 -05002888 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 return -EACCES; /* shouldn't it be ENOSYS? */
2890 mode &= S_IALLUGO;
2891 mode |= S_IFREG;
2892 error = security_inode_create(dir, dentry, mode);
2893 if (error)
2894 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002895 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002896 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002897 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 return error;
2899}
Al Viro4d359502014-03-14 12:20:17 -04002900EXPORT_SYMBOL(vfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002902bool may_open_dev(const struct path *path)
2903{
2904 return !(path->mnt->mnt_flags & MNT_NODEV) &&
2905 !(path->mnt->mnt_sb->s_iflags & SB_I_NODEV);
2906}
2907
Al Virof0bb5aa2016-11-20 20:27:12 -05002908static int may_open(const struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002910 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 struct inode *inode = dentry->d_inode;
2912 int error;
2913
2914 if (!inode)
2915 return -ENOENT;
2916
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002917 switch (inode->i_mode & S_IFMT) {
2918 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002920 case S_IFDIR:
2921 if (acc_mode & MAY_WRITE)
2922 return -EISDIR;
2923 break;
2924 case S_IFBLK:
2925 case S_IFCHR:
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002926 if (!may_open_dev(path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002928 /*FALLTHRU*/
2929 case S_IFIFO:
2930 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002932 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002933 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002934
Al Viro62fb4a12015-12-26 22:33:24 -05002935 error = inode_permission(inode, MAY_OPEN | acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002936 if (error)
2937 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002938
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 /*
2940 * An append-only file must be opened in append mode for writing.
2941 */
2942 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002943 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002944 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002946 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 }
2948
2949 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002950 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002951 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002953 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002954}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Jeff Laytone1181ee2010-12-07 16:19:50 -05002956static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002957{
Al Virof0bb5aa2016-11-20 20:27:12 -05002958 const struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002959 struct inode *inode = path->dentry->d_inode;
2960 int error = get_write_access(inode);
2961 if (error)
2962 return error;
2963 /*
2964 * Refuse to truncate files with mandatory locks held on them.
2965 */
Jeff Laytond7a06982014-03-10 09:54:15 -04002966 error = locks_verify_locked(filp);
Al Viro7715b522009-12-16 03:54:00 -05002967 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002968 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002969 if (!error) {
2970 error = do_truncate(path->dentry, 0,
2971 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002972 filp);
Al Viro7715b522009-12-16 03:54:00 -05002973 }
2974 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002975 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976}
2977
Dave Hansend57999e2008-02-15 14:37:27 -08002978static inline int open_to_namei_flags(int flag)
2979{
Al Viro8a5e9292011-06-25 19:15:54 -04002980 if ((flag & O_ACCMODE) == 3)
2981 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002982 return flag;
2983}
2984
Al Virod3607752016-03-25 15:21:09 -04002985static int may_o_create(const struct path *dir, struct dentry *dentry, umode_t mode)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002986{
Seth Forshee1328c722017-01-26 14:33:46 -06002987 struct user_namespace *s_user_ns;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002988 int error = security_path_mknod(dir, dentry, mode, 0);
2989 if (error)
2990 return error;
2991
Seth Forshee1328c722017-01-26 14:33:46 -06002992 s_user_ns = dir->dentry->d_sb->s_user_ns;
2993 if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
2994 !kgid_has_mapping(s_user_ns, current_fsgid()))
2995 return -EOVERFLOW;
2996
Miklos Szeredid18e9002012-06-05 15:10:17 +02002997 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2998 if (error)
2999 return error;
3000
3001 return security_inode_create(dir->dentry->d_inode, dentry, mode);
3002}
3003
David Howells1acf0af2012-06-14 16:13:46 +01003004/*
3005 * Attempt to atomically look up, create and open a file from a negative
3006 * dentry.
3007 *
3008 * Returns 0 if successful. The file will have been created and attached to
3009 * @file by the filesystem calling finish_open().
3010 *
3011 * Returns 1 if the file was looked up only or didn't need creating. The
3012 * caller will need to perform the open themselves. @path will have been
3013 * updated to point to the new dentry. This may be negative.
3014 *
3015 * Returns an error code otherwise.
3016 */
Al Viro2675a4e2012-06-22 12:41:10 +04003017static int atomic_open(struct nameidata *nd, struct dentry *dentry,
3018 struct path *path, struct file *file,
3019 const struct open_flags *op,
Al Viro1643b432016-04-27 19:14:10 -04003020 int open_flag, umode_t mode,
Al Viro2675a4e2012-06-22 12:41:10 +04003021 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003022{
Miklos Szeredid18e9002012-06-05 15:10:17 +02003023 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003024 struct inode *dir = nd->path.dentry->d_inode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003025 int error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003026
Al Viro384f26e2016-04-28 02:03:55 -04003027 if (!(~open_flag & (O_EXCL | O_CREAT))) /* both O_EXCL and O_CREAT */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003028 open_flag &= ~O_TRUNC;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003029
Miklos Szeredid18e9002012-06-05 15:10:17 +02003030 if (nd->flags & LOOKUP_DIRECTORY)
3031 open_flag |= O_DIRECTORY;
3032
Al Viro30d90492012-06-22 12:40:19 +04003033 file->f_path.dentry = DENTRY_NOT_SET;
3034 file->f_path.mnt = nd->path.mnt;
Al Viro0fb1ea02016-04-27 14:13:10 -04003035 error = dir->i_op->atomic_open(dir, dentry, file,
3036 open_to_namei_flags(open_flag),
3037 mode, opened);
Al Viro6fbd0712016-04-28 11:50:59 -04003038 d_lookup_done(dentry);
Al Viro384f26e2016-04-28 02:03:55 -04003039 if (!error) {
3040 /*
3041 * We didn't have the inode before the open, so check open
3042 * permission here.
3043 */
3044 int acc_mode = op->acc_mode;
3045 if (*opened & FILE_CREATED) {
3046 WARN_ON(!(open_flag & O_CREAT));
3047 fsnotify_create(dir, dentry);
3048 acc_mode = 0;
3049 }
3050 error = may_open(&file->f_path, acc_mode, open_flag);
3051 if (WARN_ON(error > 0))
3052 error = -EINVAL;
3053 } else if (error > 0) {
Al Viro30d90492012-06-22 12:40:19 +04003054 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04003055 error = -EIO;
Al Viro03da6332013-09-16 19:22:33 -04003056 } else {
Al Viro384f26e2016-04-28 02:03:55 -04003057 if (file->f_path.dentry) {
3058 dput(dentry);
3059 dentry = file->f_path.dentry;
Al Viro03da6332013-09-16 19:22:33 -04003060 }
Al Viro384f26e2016-04-28 02:03:55 -04003061 if (*opened & FILE_CREATED)
3062 fsnotify_create(dir, dentry);
Al Viroa01e7182016-06-07 21:53:51 -04003063 if (unlikely(d_is_negative(dentry))) {
3064 error = -ENOENT;
3065 } else {
3066 path->dentry = dentry;
3067 path->mnt = nd->path.mnt;
3068 return 1;
3069 }
Sage Weil62b2ce92012-08-15 13:30:12 -07003070 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003071 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003072 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003073 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003074}
3075
Nick Piggin31e6b012011-01-07 17:49:52 +11003076/*
David Howells1acf0af2012-06-14 16:13:46 +01003077 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003078 *
3079 * Must be called with i_mutex held on parent.
3080 *
David Howells1acf0af2012-06-14 16:13:46 +01003081 * Returns 0 if the file was successfully atomically created (if necessary) and
3082 * opened. In this case the file will be returned attached to @file.
3083 *
3084 * Returns 1 if the file was not completely opened at this time, though lookups
3085 * and creations will have been performed and the dentry returned in @path will
3086 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
3087 * specified then a negative dentry may be returned.
3088 *
3089 * An error code is returned otherwise.
3090 *
3091 * FILE_CREATE will be set in @*opened if the dentry was created and will be
3092 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003093 */
Al Viro2675a4e2012-06-22 12:41:10 +04003094static int lookup_open(struct nameidata *nd, struct path *path,
3095 struct file *file,
3096 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04003097 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003098{
3099 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003100 struct inode *dir_inode = dir->d_inode;
Al Viro1643b432016-04-27 19:14:10 -04003101 int open_flag = op->open_flag;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003102 struct dentry *dentry;
Al Viro1643b432016-04-27 19:14:10 -04003103 int error, create_error = 0;
Al Viro1643b432016-04-27 19:14:10 -04003104 umode_t mode = op->mode;
Al Viro6fbd0712016-04-28 11:50:59 -04003105 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003106
Al Viroce8644f2016-04-26 14:17:56 -04003107 if (unlikely(IS_DEADDIR(dir_inode)))
3108 return -ENOENT;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003109
Al Viro47237682012-06-10 05:01:45 -04003110 *opened &= ~FILE_CREATED;
Al Viro6fbd0712016-04-28 11:50:59 -04003111 dentry = d_lookup(dir, &nd->last);
3112 for (;;) {
3113 if (!dentry) {
3114 dentry = d_alloc_parallel(dir, &nd->last, &wq);
3115 if (IS_ERR(dentry))
3116 return PTR_ERR(dentry);
3117 }
3118 if (d_in_lookup(dentry))
3119 break;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003120
Al Viro6fbd0712016-04-28 11:50:59 -04003121 error = d_revalidate(dentry, nd->flags);
3122 if (likely(error > 0))
3123 break;
3124 if (error)
3125 goto out_dput;
3126 d_invalidate(dentry);
3127 dput(dentry);
3128 dentry = NULL;
3129 }
3130 if (dentry->d_inode) {
Al Viro6c51e512016-03-05 20:09:32 -05003131 /* Cached positive dentry: will open in f_op->open */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003132 goto out_no_open;
Al Viro6c51e512016-03-05 20:09:32 -05003133 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003134
Al Viro1643b432016-04-27 19:14:10 -04003135 /*
3136 * Checking write permission is tricky, bacuse we don't know if we are
3137 * going to actually need it: O_CREAT opens should work as long as the
3138 * file exists. But checking existence breaks atomicity. The trick is
3139 * to check access and if not granted clear O_CREAT from the flags.
3140 *
3141 * Another problem is returing the "right" error value (e.g. for an
3142 * O_EXCL open we want to return EEXIST not EROFS).
3143 */
3144 if (open_flag & O_CREAT) {
3145 if (!IS_POSIXACL(dir->d_inode))
3146 mode &= ~current_umask();
3147 if (unlikely(!got_write)) {
3148 create_error = -EROFS;
3149 open_flag &= ~O_CREAT;
3150 if (open_flag & (O_EXCL | O_TRUNC))
3151 goto no_open;
3152 /* No side effects, safe to clear O_CREAT */
3153 } else {
3154 create_error = may_o_create(&nd->path, dentry, mode);
3155 if (create_error) {
3156 open_flag &= ~O_CREAT;
3157 if (open_flag & O_EXCL)
3158 goto no_open;
3159 }
3160 }
3161 } else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) &&
3162 unlikely(!got_write)) {
3163 /*
3164 * No O_CREATE -> atomicity not a requirement -> fall
3165 * back to lookup + open
3166 */
3167 goto no_open;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003168 }
3169
Al Viro1643b432016-04-27 19:14:10 -04003170 if (dir_inode->i_op->atomic_open) {
3171 error = atomic_open(nd, dentry, path, file, op, open_flag,
3172 mode, opened);
3173 if (unlikely(error == -ENOENT) && create_error)
3174 error = create_error;
3175 return error;
3176 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003177
Al Viro1643b432016-04-27 19:14:10 -04003178no_open:
Al Viro6fbd0712016-04-28 11:50:59 -04003179 if (d_in_lookup(dentry)) {
Al Viro12fa5e22016-04-28 11:19:43 -04003180 struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry,
3181 nd->flags);
Al Viro6fbd0712016-04-28 11:50:59 -04003182 d_lookup_done(dentry);
Al Viro12fa5e22016-04-28 11:19:43 -04003183 if (unlikely(res)) {
3184 if (IS_ERR(res)) {
3185 error = PTR_ERR(res);
3186 goto out_dput;
3187 }
3188 dput(dentry);
3189 dentry = res;
3190 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003191 }
3192
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003193 /* Negative dentry, just create the file */
Al Viro1643b432016-04-27 19:14:10 -04003194 if (!dentry->d_inode && (open_flag & O_CREAT)) {
Al Viro47237682012-06-10 05:01:45 -04003195 *opened |= FILE_CREATED;
Al Viroce8644f2016-04-26 14:17:56 -04003196 audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE);
Al Viroce8644f2016-04-26 14:17:56 -04003197 if (!dir_inode->i_op->create) {
3198 error = -EACCES;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003199 goto out_dput;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003200 }
Al Viroce8644f2016-04-26 14:17:56 -04003201 error = dir_inode->i_op->create(dir_inode, dentry, mode,
Al Viro1643b432016-04-27 19:14:10 -04003202 open_flag & O_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003203 if (error)
3204 goto out_dput;
Al Viroce8644f2016-04-26 14:17:56 -04003205 fsnotify_create(dir_inode, dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003206 }
Al Viro1643b432016-04-27 19:14:10 -04003207 if (unlikely(create_error) && !dentry->d_inode) {
3208 error = create_error;
3209 goto out_dput;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003210 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003211out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003212 path->dentry = dentry;
3213 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04003214 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003215
3216out_dput:
3217 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003218 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003219}
3220
3221/*
Al Virofe2d35f2011-03-05 22:58:25 -05003222 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11003223 */
Al Viro896475d2015-04-22 18:02:17 -04003224static int do_last(struct nameidata *nd,
Al Viro2675a4e2012-06-22 12:41:10 +04003225 struct file *file, const struct open_flags *op,
Al Viro76ae2a52015-05-12 18:44:32 -04003226 int *opened)
Al Virofb1cc552009-12-24 01:58:28 -05003227{
Al Viroa1e28032009-12-24 02:12:06 -05003228 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05003229 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003230 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04003231 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04003232 int acc_mode = op->acc_mode;
Al Viro254cf582015-05-05 09:40:46 -04003233 unsigned seq;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003234 struct inode *inode;
Al Viro896475d2015-04-22 18:02:17 -04003235 struct path path;
Al Viro16c2cd72011-02-22 15:50:10 -05003236 int error;
Al Virofb1cc552009-12-24 01:58:28 -05003237
Al Viroc3e380b2011-02-23 13:39:45 -05003238 nd->flags &= ~LOOKUP_PARENT;
3239 nd->flags |= op->intent;
3240
Al Virobc77daa2013-06-06 09:12:33 -04003241 if (nd->last_type != LAST_NORM) {
Al Virofe2d35f2011-03-05 22:58:25 -05003242 error = handle_dots(nd, nd->last_type);
Al Virodeb106c2015-05-08 18:05:21 -04003243 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003244 return error;
Miklos Szeredie83db162012-06-05 15:10:29 +02003245 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05003246 }
Al Viro67ee3ad2009-12-26 07:01:01 -05003247
Al Viroca344a892011-03-09 00:36:45 -05003248 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05003249 if (nd->last.name[nd->last.len])
3250 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3251 /* we _can_ be in RCU mode here */
Al Viro254cf582015-05-05 09:40:46 -04003252 error = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05003253 if (likely(error > 0))
Miklos Szeredi71574862012-06-05 15:10:14 +02003254 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003255
Miklos Szeredi71574862012-06-05 15:10:14 +02003256 if (error < 0)
Al Virodeb106c2015-05-08 18:05:21 -04003257 return error;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02003258
Miklos Szeredi71574862012-06-05 15:10:14 +02003259 BUG_ON(nd->inode != dir->d_inode);
Al Viro6583fe22016-03-05 18:14:03 -05003260 BUG_ON(nd->flags & LOOKUP_RCU);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003261 } else {
3262 /* create side of things */
3263 /*
3264 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3265 * has been cleared when we got to the last component we are
3266 * about to look up
3267 */
3268 error = complete_walk(nd);
Al Viroe8bb73d2015-05-08 16:28:42 -04003269 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003270 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02003271
Al Viro76ae2a52015-05-12 18:44:32 -04003272 audit_inode(nd->name, dir, LOOKUP_PARENT);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003273 /* trailing slashes? */
Al Virodeb106c2015-05-08 18:05:21 -04003274 if (unlikely(nd->last.name[nd->last.len]))
3275 return -EISDIR;
Al Virofe2d35f2011-03-05 22:58:25 -05003276 }
3277
Al Viro9cf843e2016-04-28 19:35:16 -04003278 if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
Al Viro64894cf2012-07-31 00:53:35 +04003279 error = mnt_want_write(nd->path.mnt);
3280 if (!error)
3281 got_write = true;
3282 /*
3283 * do _not_ fail yet - we might not need that or fail with
3284 * a different error; let lookup_open() decide; we'll be
3285 * dropping this one anyway.
3286 */
3287 }
Al Viro9cf843e2016-04-28 19:35:16 -04003288 if (open_flag & O_CREAT)
3289 inode_lock(dir->d_inode);
3290 else
3291 inode_lock_shared(dir->d_inode);
Al Viro896475d2015-04-22 18:02:17 -04003292 error = lookup_open(nd, &path, file, op, got_write, opened);
Al Viro9cf843e2016-04-28 19:35:16 -04003293 if (open_flag & O_CREAT)
3294 inode_unlock(dir->d_inode);
3295 else
3296 inode_unlock_shared(dir->d_inode);
Al Viroa1e28032009-12-24 02:12:06 -05003297
Al Viro2675a4e2012-06-22 12:41:10 +04003298 if (error <= 0) {
3299 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003300 goto out;
3301
Al Viro47237682012-06-10 05:01:45 -04003302 if ((*opened & FILE_CREATED) ||
Al Viro496ad9a2013-01-23 17:07:38 -05003303 !S_ISREG(file_inode(file)->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003304 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003305
Al Viro76ae2a52015-05-12 18:44:32 -04003306 audit_inode(nd->name, file->f_path.dentry, 0);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003307 goto opened;
3308 }
Al Virofb1cc552009-12-24 01:58:28 -05003309
Al Viro47237682012-06-10 05:01:45 -04003310 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05003311 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05003312 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003313 will_truncate = false;
Al Viro62fb4a12015-12-26 22:33:24 -05003314 acc_mode = 0;
Al Viro896475d2015-04-22 18:02:17 -04003315 path_to_nameidata(&path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02003316 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05003317 }
3318
3319 /*
Miklos Szeredid18e9002012-06-05 15:10:17 +02003320 * If atomic_open() acquired write access it is dropped now due to
3321 * possible mount and symlink following (this might be optimized away if
3322 * necessary...)
3323 */
Al Viro64894cf2012-07-31 00:53:35 +04003324 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02003325 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003326 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003327 }
3328
Al Viroe6ec03a2016-06-05 00:23:09 -04003329 error = follow_managed(&path, nd);
3330 if (unlikely(error < 0))
3331 return error;
3332
Al Viro6583fe22016-03-05 18:14:03 -05003333 if (unlikely(d_is_negative(path.dentry))) {
3334 path_to_nameidata(&path, nd);
3335 return -ENOENT;
3336 }
3337
3338 /*
3339 * create/update audit record if it already exists.
3340 */
3341 audit_inode(nd->name, path.dentry, 0);
3342
Al Virodeb106c2015-05-08 18:05:21 -04003343 if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
3344 path_to_nameidata(&path, nd);
3345 return -EEXIST;
3346 }
Al Virofb1cc552009-12-24 01:58:28 -05003347
Al Viro254cf582015-05-05 09:40:46 -04003348 seq = 0; /* out of RCU mode, so the value doesn't matter */
Al Virod4565642016-02-27 19:23:16 -05003349 inode = d_backing_inode(path.dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04003350finish_lookup:
Al Viro8f64fb12016-11-14 01:50:26 -05003351 error = step_into(nd, &path, 0, inode, seq);
Al Virodeb106c2015-05-08 18:05:21 -04003352 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04003353 return error;
Al Virobc77daa2013-06-06 09:12:33 -04003354finish_open:
Al Viro8f64fb12016-11-14 01:50:26 -05003355 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
Al Viroa3fbbde2011-11-07 21:21:26 +00003356 error = complete_walk(nd);
Al Virofac7d192016-06-04 11:41:49 -04003357 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003358 return error;
Al Viro76ae2a52015-05-12 18:44:32 -04003359 audit_inode(nd->name, nd->path.dentry, 0);
Al Virofb1cc552009-12-24 01:58:28 -05003360 error = -EISDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003361 if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003362 goto out;
Miklos Szerediaf2f5542012-05-21 17:30:11 +02003363 error = -ENOTDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003364 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003365 goto out;
David Howells4bbcbd3b2015-03-17 22:16:40 +00003366 if (!d_is_reg(nd->path.dentry))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003367 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05003368
Al Viro0f9d1a12011-03-09 00:13:14 -05003369 if (will_truncate) {
3370 error = mnt_want_write(nd->path.mnt);
3371 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003372 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04003373 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05003374 }
Miklos Szeredie83db162012-06-05 15:10:29 +02003375finish_open_created:
Al Viro6ac08702016-04-26 00:02:50 -04003376 error = may_open(&nd->path, acc_mode, open_flag);
3377 if (error)
3378 goto out;
Miklos Szeredi4aa7c632014-10-24 00:14:35 +02003379 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3380 error = vfs_open(&nd->path, file, current_cred());
Al Virofac7d192016-06-04 11:41:49 -04003381 if (error)
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003382 goto out;
Al Virofac7d192016-06-04 11:41:49 -04003383 *opened |= FILE_OPENED;
Miklos Szeredia8277b92012-06-05 15:10:32 +02003384opened:
Al Viro2675a4e2012-06-22 12:41:10 +04003385 error = open_check_o_direct(file);
Al Virofe9ec822016-04-27 03:14:20 -04003386 if (!error)
3387 error = ima_file_check(file, op->acc_mode, *opened);
3388 if (!error && will_truncate)
Al Viro2675a4e2012-06-22 12:41:10 +04003389 error = handle_truncate(file);
Al Viroca344a892011-03-09 00:36:45 -05003390out:
Al Virofe9ec822016-04-27 03:14:20 -04003391 if (unlikely(error) && (*opened & FILE_OPENED))
3392 fput(file);
Al Viroc80567c2016-02-27 19:17:33 -05003393 if (unlikely(error > 0)) {
3394 WARN_ON(1);
3395 error = -EINVAL;
3396 }
Al Viro64894cf2012-07-31 00:53:35 +04003397 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05003398 mnt_drop_write(nd->path.mnt);
Al Viro2675a4e2012-06-22 12:41:10 +04003399 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003400}
3401
Amir Goldsteinaf7bd4d2017-01-17 06:34:52 +02003402struct dentry *vfs_tmpfile(struct dentry *dentry, umode_t mode, int open_flag)
3403{
Amir Goldsteinaf7bd4d2017-01-17 06:34:52 +02003404 struct dentry *child = NULL;
3405 struct inode *dir = dentry->d_inode;
3406 struct inode *inode;
3407 int error;
3408
3409 /* we want directory to be writable */
3410 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
3411 if (error)
3412 goto out_err;
3413 error = -EOPNOTSUPP;
3414 if (!dir->i_op->tmpfile)
3415 goto out_err;
3416 error = -ENOMEM;
David Howellscdf01222017-07-04 17:25:22 +01003417 child = d_alloc(dentry, &slash_name);
Amir Goldsteinaf7bd4d2017-01-17 06:34:52 +02003418 if (unlikely(!child))
3419 goto out_err;
3420 error = dir->i_op->tmpfile(dir, child, mode);
3421 if (error)
3422 goto out_err;
3423 error = -ENOENT;
3424 inode = child->d_inode;
3425 if (unlikely(!inode))
3426 goto out_err;
3427 if (!(open_flag & O_EXCL)) {
3428 spin_lock(&inode->i_lock);
3429 inode->i_state |= I_LINKABLE;
3430 spin_unlock(&inode->i_lock);
3431 }
3432 return child;
3433
3434out_err:
3435 dput(child);
3436 return ERR_PTR(error);
3437}
3438EXPORT_SYMBOL(vfs_tmpfile);
3439
Al Viroc8a53ee2015-05-12 18:43:07 -04003440static int do_tmpfile(struct nameidata *nd, unsigned flags,
Al Viro60545d02013-06-07 01:20:27 -04003441 const struct open_flags *op,
3442 struct file *file, int *opened)
3443{
Al Viro625b6d12015-05-12 16:36:12 -04003444 struct dentry *child;
Al Viro625b6d12015-05-12 16:36:12 -04003445 struct path path;
Al Viroc8a53ee2015-05-12 18:43:07 -04003446 int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
Al Viro60545d02013-06-07 01:20:27 -04003447 if (unlikely(error))
3448 return error;
Al Viro625b6d12015-05-12 16:36:12 -04003449 error = mnt_want_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003450 if (unlikely(error))
3451 goto out;
Amir Goldsteinaf7bd4d2017-01-17 06:34:52 +02003452 child = vfs_tmpfile(path.dentry, op->mode, op->open_flag);
3453 error = PTR_ERR(child);
Hirofumi Nakagawa684e73b2017-09-26 03:21:26 +09003454 if (IS_ERR(child))
Al Viro60545d02013-06-07 01:20:27 -04003455 goto out2;
Al Viro625b6d12015-05-12 16:36:12 -04003456 dput(path.dentry);
3457 path.dentry = child;
Al Viroc8a53ee2015-05-12 18:43:07 -04003458 audit_inode(nd->name, child, 0);
Eric Rannaud69a91c22014-10-30 01:51:01 -07003459 /* Don't check for other permissions, the inode was just created */
Al Viro62fb4a12015-12-26 22:33:24 -05003460 error = may_open(&path, 0, op->open_flag);
Al Viro60545d02013-06-07 01:20:27 -04003461 if (error)
3462 goto out2;
Al Viro625b6d12015-05-12 16:36:12 -04003463 file->f_path.mnt = path.mnt;
3464 error = finish_open(file, child, NULL, opened);
Al Viro60545d02013-06-07 01:20:27 -04003465 if (error)
3466 goto out2;
3467 error = open_check_o_direct(file);
Amir Goldsteinaf7bd4d2017-01-17 06:34:52 +02003468 if (error)
Al Viro60545d02013-06-07 01:20:27 -04003469 fput(file);
3470out2:
Al Viro625b6d12015-05-12 16:36:12 -04003471 mnt_drop_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003472out:
Al Viro625b6d12015-05-12 16:36:12 -04003473 path_put(&path);
Al Viro60545d02013-06-07 01:20:27 -04003474 return error;
3475}
3476
Al Viro6ac08702016-04-26 00:02:50 -04003477static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file)
3478{
3479 struct path path;
3480 int error = path_lookupat(nd, flags, &path);
3481 if (!error) {
3482 audit_inode(nd->name, path.dentry, 0);
3483 error = vfs_open(&path, file, current_cred());
3484 path_put(&path);
3485 }
3486 return error;
3487}
3488
Al Viroc8a53ee2015-05-12 18:43:07 -04003489static struct file *path_openat(struct nameidata *nd,
3490 const struct open_flags *op, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491{
Al Viro368ee9b2015-05-08 17:19:59 -04003492 const char *s;
Al Viro30d90492012-06-22 12:40:19 +04003493 struct file *file;
Al Viro47237682012-06-10 05:01:45 -04003494 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05003495 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11003496
Al Viro30d90492012-06-22 12:40:19 +04003497 file = get_empty_filp();
Al Viro1afc99b2013-02-14 20:41:04 -05003498 if (IS_ERR(file))
3499 return file;
Nick Piggin31e6b012011-01-07 17:49:52 +11003500
Al Viro30d90492012-06-22 12:40:19 +04003501 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11003502
Al Virobb458c62013-07-13 13:26:37 +04003503 if (unlikely(file->f_flags & __O_TMPFILE)) {
Al Viroc8a53ee2015-05-12 18:43:07 -04003504 error = do_tmpfile(nd, flags, op, file, &opened);
Al Virof15133d2015-05-08 22:53:15 -04003505 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003506 }
3507
Al Viro6ac08702016-04-26 00:02:50 -04003508 if (unlikely(file->f_flags & O_PATH)) {
3509 error = do_o_path(nd, flags, file);
3510 if (!error)
3511 opened |= FILE_OPENED;
3512 goto out2;
3513 }
3514
Al Viroc8a53ee2015-05-12 18:43:07 -04003515 s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04003516 if (IS_ERR(s)) {
3517 put_filp(file);
3518 return ERR_CAST(s);
3519 }
Al Viro3bdba282015-05-08 17:37:07 -04003520 while (!(error = link_path_walk(s, nd)) &&
Al Viro76ae2a52015-05-12 18:44:32 -04003521 (error = do_last(nd, file, op, &opened)) > 0) {
Al Viro73d049a2011-03-11 12:08:24 -05003522 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro3bdba282015-05-08 17:37:07 -04003523 s = trailing_symlink(nd);
3524 if (IS_ERR(s)) {
3525 error = PTR_ERR(s);
Al Viro2675a4e2012-06-22 12:41:10 +04003526 break;
Al Viro3bdba282015-05-08 17:37:07 -04003527 }
Al Viro806b6812009-12-26 07:16:40 -05003528 }
Al Virodeb106c2015-05-08 18:05:21 -04003529 terminate_walk(nd);
Al Virof15133d2015-05-08 22:53:15 -04003530out2:
Al Viro2675a4e2012-06-22 12:41:10 +04003531 if (!(opened & FILE_OPENED)) {
3532 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04003533 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003534 }
Al Viro2675a4e2012-06-22 12:41:10 +04003535 if (unlikely(error)) {
3536 if (error == -EOPENSTALE) {
3537 if (flags & LOOKUP_RCU)
3538 error = -ECHILD;
3539 else
3540 error = -ESTALE;
3541 }
3542 file = ERR_PTR(error);
3543 }
3544 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545}
3546
Jeff Layton669abf42012-10-10 16:43:10 -04003547struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +04003548 const struct open_flags *op)
Al Viro13aab422011-02-23 17:54:08 -05003549{
Al Viro9883d182015-05-13 07:28:08 -04003550 struct nameidata nd;
Al Virof9652e12013-06-11 08:23:01 +04003551 int flags = op->lookup_flags;
Al Viro13aab422011-02-23 17:54:08 -05003552 struct file *filp;
3553
Al Viro9883d182015-05-13 07:28:08 -04003554 set_nameidata(&nd, dfd, pathname);
Al Viroc8a53ee2015-05-12 18:43:07 -04003555 filp = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05003556 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003557 filp = path_openat(&nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05003558 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003559 filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003560 restore_nameidata();
Al Viro13aab422011-02-23 17:54:08 -05003561 return filp;
3562}
3563
Al Viro73d049a2011-03-11 12:08:24 -05003564struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
Al Virof9652e12013-06-11 08:23:01 +04003565 const char *name, const struct open_flags *op)
Al Viro73d049a2011-03-11 12:08:24 -05003566{
Al Viro9883d182015-05-13 07:28:08 -04003567 struct nameidata nd;
Al Viro73d049a2011-03-11 12:08:24 -05003568 struct file *file;
Paul Moore51689102015-01-22 00:00:03 -05003569 struct filename *filename;
Al Virof9652e12013-06-11 08:23:01 +04003570 int flags = op->lookup_flags | LOOKUP_ROOT;
Al Viro73d049a2011-03-11 12:08:24 -05003571
3572 nd.root.mnt = mnt;
3573 nd.root.dentry = dentry;
3574
David Howellsb18825a2013-09-12 19:22:53 +01003575 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05003576 return ERR_PTR(-ELOOP);
3577
Paul Moore51689102015-01-22 00:00:03 -05003578 filename = getname_kernel(name);
Viresh Kumara1c83682015-08-12 15:59:44 +05303579 if (IS_ERR(filename))
Paul Moore51689102015-01-22 00:00:03 -05003580 return ERR_CAST(filename);
3581
Al Viro9883d182015-05-13 07:28:08 -04003582 set_nameidata(&nd, -1, filename);
Al Viroc8a53ee2015-05-12 18:43:07 -04003583 file = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro73d049a2011-03-11 12:08:24 -05003584 if (unlikely(file == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003585 file = path_openat(&nd, op, flags);
Al Viro73d049a2011-03-11 12:08:24 -05003586 if (unlikely(file == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003587 file = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003588 restore_nameidata();
Paul Moore51689102015-01-22 00:00:03 -05003589 putname(filename);
Al Viro73d049a2011-03-11 12:08:24 -05003590 return file;
3591}
3592
Al Virofa14a0b2015-01-22 02:16:49 -05003593static struct dentry *filename_create(int dfd, struct filename *name,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003594 struct path *path, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003596 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viro391172c2015-05-09 11:19:16 -04003597 struct qstr last;
3598 int type;
Jan Karac30dabf2012-06-12 16:20:30 +02003599 int err2;
Jeff Layton1ac12b42012-12-11 12:10:06 -05003600 int error;
3601 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3602
3603 /*
3604 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3605 * other flags passed in are ignored!
3606 */
3607 lookup_flags &= LOOKUP_REVAL;
3608
Al Viro5c31b6c2015-05-12 17:32:54 -04003609 name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
3610 if (IS_ERR(name))
3611 return ERR_CAST(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003613 /*
3614 * Yucky last component or no last component at all?
3615 * (foo/., foo/.., /////)
3616 */
Al Viro5c31b6c2015-05-12 17:32:54 -04003617 if (unlikely(type != LAST_NORM))
Al Viroed75e952011-06-27 16:53:43 -04003618 goto out;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003619
Jan Karac30dabf2012-06-12 16:20:30 +02003620 /* don't fail immediately if it's r/o, at least try to report other errors */
Al Viro391172c2015-05-09 11:19:16 -04003621 err2 = mnt_want_write(path->mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003622 /*
3623 * Do the final lookup.
3624 */
Al Viro391172c2015-05-09 11:19:16 -04003625 lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Al Viro59551022016-01-22 15:40:57 -05003626 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04003627 dentry = __lookup_hash(&last, path->dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003629 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003630
Al Viroa8104a92012-07-20 02:25:00 +04003631 error = -EEXIST;
David Howellsb18825a2013-09-12 19:22:53 +01003632 if (d_is_positive(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003633 goto fail;
David Howellsb18825a2013-09-12 19:22:53 +01003634
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003635 /*
3636 * Special case - lookup gave negative, but... we had foo/bar/
3637 * From the vfs_mknod() POV we just have a negative dentry -
3638 * all is fine. Let's be bastards - you had / on the end, you've
3639 * been asking for (non-existent) directory. -ENOENT for you.
3640 */
Al Viro391172c2015-05-09 11:19:16 -04003641 if (unlikely(!is_dir && last.name[last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003642 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003643 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003644 }
Jan Karac30dabf2012-06-12 16:20:30 +02003645 if (unlikely(err2)) {
3646 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003647 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003648 }
Al Viro181c37b2015-05-12 17:21:25 -04003649 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651fail:
Al Viroa8104a92012-07-20 02:25:00 +04003652 dput(dentry);
3653 dentry = ERR_PTR(error);
3654unlock:
Al Viro59551022016-01-22 15:40:57 -05003655 inode_unlock(path->dentry->d_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02003656 if (!err2)
Al Viro391172c2015-05-09 11:19:16 -04003657 mnt_drop_write(path->mnt);
Al Viroed75e952011-06-27 16:53:43 -04003658out:
Al Viro391172c2015-05-09 11:19:16 -04003659 path_put(path);
Al Viro181c37b2015-05-12 17:21:25 -04003660 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 return dentry;
3662}
Al Virofa14a0b2015-01-22 02:16:49 -05003663
3664struct dentry *kern_path_create(int dfd, const char *pathname,
3665 struct path *path, unsigned int lookup_flags)
3666{
Al Viro181c37b2015-05-12 17:21:25 -04003667 return filename_create(dfd, getname_kernel(pathname),
3668 path, lookup_flags);
Al Virofa14a0b2015-01-22 02:16:49 -05003669}
Al Virodae6ad82011-06-26 11:50:15 -04003670EXPORT_SYMBOL(kern_path_create);
3671
Al Viro921a1652012-07-20 01:15:31 +04003672void done_path_create(struct path *path, struct dentry *dentry)
3673{
3674 dput(dentry);
Al Viro59551022016-01-22 15:40:57 -05003675 inode_unlock(path->dentry->d_inode);
Al Viroa8104a92012-07-20 02:25:00 +04003676 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003677 path_put(path);
3678}
3679EXPORT_SYMBOL(done_path_create);
3680
Al Viro520ae682015-05-13 07:00:28 -04003681inline struct dentry *user_path_create(int dfd, const char __user *pathname,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003682 struct path *path, unsigned int lookup_flags)
Al Virodae6ad82011-06-26 11:50:15 -04003683{
Al Viro181c37b2015-05-12 17:21:25 -04003684 return filename_create(dfd, getname(pathname), path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003685}
3686EXPORT_SYMBOL(user_path_create);
3687
Al Viro1a67aaf2011-07-26 01:52:52 -04003688int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003690 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
3692 if (error)
3693 return error;
3694
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003695 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 return -EPERM;
3697
Al Viroacfa4382008-12-04 10:06:33 -05003698 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699 return -EPERM;
3700
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003701 error = devcgroup_inode_mknod(mode, dev);
3702 if (error)
3703 return error;
3704
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 error = security_inode_mknod(dir, dentry, mode, dev);
3706 if (error)
3707 return error;
3708
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003710 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003711 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003712 return error;
3713}
Al Viro4d359502014-03-14 12:20:17 -04003714EXPORT_SYMBOL(vfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715
Al Virof69aac02011-07-26 04:31:40 -04003716static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003717{
3718 switch (mode & S_IFMT) {
3719 case S_IFREG:
3720 case S_IFCHR:
3721 case S_IFBLK:
3722 case S_IFIFO:
3723 case S_IFSOCK:
3724 case 0: /* zero mode translates to S_IFREG */
3725 return 0;
3726 case S_IFDIR:
3727 return -EPERM;
3728 default:
3729 return -EINVAL;
3730 }
3731}
3732
Al Viro8208a222011-07-25 17:32:17 -04003733SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003734 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735{
Al Viro2ad94ae2008-07-21 09:32:51 -04003736 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003737 struct path path;
3738 int error;
Jeff Layton972567f2012-12-20 16:00:10 -05003739 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740
Al Viro8e4bfca2012-07-20 01:17:26 +04003741 error = may_mknod(mode);
3742 if (error)
3743 return error;
Jeff Layton972567f2012-12-20 16:00:10 -05003744retry:
3745 dentry = user_path_create(dfd, filename, &path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003746 if (IS_ERR(dentry))
3747 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003748
Al Virodae6ad82011-06-26 11:50:15 -04003749 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003750 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003751 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003752 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003753 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003754 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04003756 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Mimi Zohar05d1a712016-02-29 19:52:05 -05003757 if (!error)
3758 ima_post_path_mknod(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 break;
3760 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04003761 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 new_decode_dev(dev));
3763 break;
3764 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003765 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 }
Al Viroa8104a92012-07-20 02:25:00 +04003768out:
Al Viro921a1652012-07-20 01:15:31 +04003769 done_path_create(&path, dentry);
Jeff Layton972567f2012-12-20 16:00:10 -05003770 if (retry_estale(error, lookup_flags)) {
3771 lookup_flags |= LOOKUP_REVAL;
3772 goto retry;
3773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 return error;
3775}
3776
Al Viro8208a222011-07-25 17:32:17 -04003777SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003778{
3779 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3780}
3781
Al Viro18bb1db2011-07-26 01:41:39 -04003782int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003784 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003785 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786
3787 if (error)
3788 return error;
3789
Al Viroacfa4382008-12-04 10:06:33 -05003790 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 return -EPERM;
3792
3793 mode &= (S_IRWXUGO|S_ISVTX);
3794 error = security_inode_mkdir(dir, dentry, mode);
3795 if (error)
3796 return error;
3797
Al Viro8de52772012-02-06 12:45:27 -05003798 if (max_links && dir->i_nlink >= max_links)
3799 return -EMLINK;
3800
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003802 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003803 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 return error;
3805}
Al Viro4d359502014-03-14 12:20:17 -04003806EXPORT_SYMBOL(vfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807
Al Viroa218d0f2011-11-21 14:59:34 -05003808SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809{
Dave Hansen6902d922006-09-30 23:29:01 -07003810 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003811 struct path path;
3812 int error;
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003813 unsigned int lookup_flags = LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003815retry:
3816 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003817 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003818 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003819
Al Virodae6ad82011-06-26 11:50:15 -04003820 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003821 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003822 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003823 if (!error)
3824 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003825 done_path_create(&path, dentry);
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003826 if (retry_estale(error, lookup_flags)) {
3827 lookup_flags |= LOOKUP_REVAL;
3828 goto retry;
3829 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 return error;
3831}
3832
Al Viroa218d0f2011-11-21 14:59:34 -05003833SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003834{
3835 return sys_mkdirat(AT_FDCWD, pathname, mode);
3836}
3837
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3839{
3840 int error = may_delete(dir, dentry, 1);
3841
3842 if (error)
3843 return error;
3844
Al Viroacfa4382008-12-04 10:06:33 -05003845 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 return -EPERM;
3847
Al Viro1d2ef592011-09-14 18:55:41 +01003848 dget(dentry);
Al Viro59551022016-01-22 15:40:57 -05003849 inode_lock(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850
Sage Weil912dbc12011-05-24 13:06:11 -07003851 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07003852 if (is_local_mountpoint(dentry))
Sage Weil912dbc12011-05-24 13:06:11 -07003853 goto out;
3854
3855 error = security_inode_rmdir(dir, dentry);
3856 if (error)
3857 goto out;
3858
Sage Weil3cebde22011-05-29 21:20:59 -07003859 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003860 error = dir->i_op->rmdir(dir, dentry);
3861 if (error)
3862 goto out;
3863
3864 dentry->d_inode->i_flags |= S_DEAD;
3865 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003866 detach_mounts(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003867
3868out:
Al Viro59551022016-01-22 15:40:57 -05003869 inode_unlock(dentry->d_inode);
Al Viro1d2ef592011-09-14 18:55:41 +01003870 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003871 if (!error)
3872 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 return error;
3874}
Al Viro4d359502014-03-14 12:20:17 -04003875EXPORT_SYMBOL(vfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003877static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878{
3879 int error = 0;
Jeff Layton91a27b22012-10-10 15:25:28 -04003880 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04003882 struct path path;
3883 struct qstr last;
3884 int type;
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003885 unsigned int lookup_flags = 0;
3886retry:
Al Viroc1d4dd22016-06-05 16:38:18 -04003887 name = filename_parentat(dfd, getname(pathname), lookup_flags,
3888 &path, &last, &type);
Jeff Layton91a27b22012-10-10 15:25:28 -04003889 if (IS_ERR(name))
3890 return PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891
Al Virof5beed72015-04-30 16:09:11 -04003892 switch (type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003893 case LAST_DOTDOT:
3894 error = -ENOTEMPTY;
3895 goto exit1;
3896 case LAST_DOT:
3897 error = -EINVAL;
3898 goto exit1;
3899 case LAST_ROOT:
3900 error = -EBUSY;
3901 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003903
Al Virof5beed72015-04-30 16:09:11 -04003904 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02003905 if (error)
3906 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003907
Al Viro59551022016-01-22 15:40:57 -05003908 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04003909 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003911 if (IS_ERR(dentry))
3912 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003913 if (!dentry->d_inode) {
3914 error = -ENOENT;
3915 goto exit3;
3916 }
Al Virof5beed72015-04-30 16:09:11 -04003917 error = security_path_rmdir(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003918 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003919 goto exit3;
Al Virof5beed72015-04-30 16:09:11 -04003920 error = vfs_rmdir(path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08003921exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003922 dput(dentry);
3923exit2:
Al Viro59551022016-01-22 15:40:57 -05003924 inode_unlock(path.dentry->d_inode);
Al Virof5beed72015-04-30 16:09:11 -04003925 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926exit1:
Al Virof5beed72015-04-30 16:09:11 -04003927 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 putname(name);
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003929 if (retry_estale(error, lookup_flags)) {
3930 lookup_flags |= LOOKUP_REVAL;
3931 goto retry;
3932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 return error;
3934}
3935
Heiko Carstens3cdad422009-01-14 14:14:22 +01003936SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003937{
3938 return do_rmdir(AT_FDCWD, pathname);
3939}
3940
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003941/**
3942 * vfs_unlink - unlink a filesystem object
3943 * @dir: parent directory
3944 * @dentry: victim
3945 * @delegated_inode: returns victim inode, if the inode is delegated.
3946 *
3947 * The caller must hold dir->i_mutex.
3948 *
3949 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3950 * return a reference to the inode in delegated_inode. The caller
3951 * should then break the delegation on that inode and retry. Because
3952 * breaking a delegation may take a long time, the caller should drop
3953 * dir->i_mutex before doing so.
3954 *
3955 * Alternatively, a caller may pass NULL for delegated_inode. This may
3956 * be appropriate for callers that expect the underlying filesystem not
3957 * to be NFS exported.
3958 */
3959int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960{
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003961 struct inode *target = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 int error = may_delete(dir, dentry, 0);
3963
3964 if (error)
3965 return error;
3966
Al Viroacfa4382008-12-04 10:06:33 -05003967 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968 return -EPERM;
3969
Al Viro59551022016-01-22 15:40:57 -05003970 inode_lock(target);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003971 if (is_local_mountpoint(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 error = -EBUSY;
3973 else {
3974 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003975 if (!error) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003976 error = try_break_deleg(target, delegated_inode);
3977 if (error)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003978 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 error = dir->i_op->unlink(dir, dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003980 if (!error) {
Al Virod83c49f2010-04-30 17:17:09 -04003981 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003982 detach_mounts(dentry);
3983 }
Al Virobec10522010-03-03 14:12:08 -05003984 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 }
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003986out:
Al Viro59551022016-01-22 15:40:57 -05003987 inode_unlock(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988
3989 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3990 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003991 fsnotify_link_count(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993 }
Robert Love0eeca282005-07-12 17:06:03 -04003994
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 return error;
3996}
Al Viro4d359502014-03-14 12:20:17 -04003997EXPORT_SYMBOL(vfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998
3999/*
4000 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004001 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002 * writeout happening, and we don't want to prevent access to the directory
4003 * while waiting on the I/O.
4004 */
Christoph Hellwigda2f1362017-11-04 13:44:45 +03004005long do_unlinkat(int dfd, struct filename *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006{
Al Viro2ad94ae2008-07-21 09:32:51 -04004007 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04004009 struct path path;
4010 struct qstr last;
4011 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 struct inode *inode = NULL;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004013 struct inode *delegated_inode = NULL;
Jeff Layton5d18f812012-12-20 16:38:04 -05004014 unsigned int lookup_flags = 0;
4015retry:
Christoph Hellwigda2f1362017-11-04 13:44:45 +03004016 name = filename_parentat(dfd, name, lookup_flags, &path, &last, &type);
Jeff Layton91a27b22012-10-10 15:25:28 -04004017 if (IS_ERR(name))
4018 return PTR_ERR(name);
Al Viro2ad94ae2008-07-21 09:32:51 -04004019
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 error = -EISDIR;
Al Virof5beed72015-04-30 16:09:11 -04004021 if (type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09004023
Al Virof5beed72015-04-30 16:09:11 -04004024 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004025 if (error)
4026 goto exit1;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004027retry_deleg:
Al Viro59551022016-01-22 15:40:57 -05004028 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04004029 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 error = PTR_ERR(dentry);
4031 if (!IS_ERR(dentry)) {
4032 /* Why not before? Because we want correct error value */
Al Virof5beed72015-04-30 16:09:11 -04004033 if (last.name[last.len])
Török Edwin50338b82011-06-16 00:06:14 +03004034 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 inode = dentry->d_inode;
David Howellsb18825a2013-09-12 19:22:53 +01004036 if (d_is_negative(dentry))
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04004037 goto slashes;
4038 ihold(inode);
Al Virof5beed72015-04-30 16:09:11 -04004039 error = security_path_unlink(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004040 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004041 goto exit2;
Al Virof5beed72015-04-30 16:09:11 -04004042 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02004043exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 dput(dentry);
4045 }
Al Viro59551022016-01-22 15:40:57 -05004046 inode_unlock(path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 if (inode)
4048 iput(inode); /* truncate the inode here */
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004049 inode = NULL;
4050 if (delegated_inode) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07004051 error = break_deleg_wait(&delegated_inode);
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004052 if (!error)
4053 goto retry_deleg;
4054 }
Al Virof5beed72015-04-30 16:09:11 -04004055 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056exit1:
Al Virof5beed72015-04-30 16:09:11 -04004057 path_put(&path);
Jeff Layton5d18f812012-12-20 16:38:04 -05004058 if (retry_estale(error, lookup_flags)) {
4059 lookup_flags |= LOOKUP_REVAL;
4060 inode = NULL;
4061 goto retry;
4062 }
Christoph Hellwigda2f1362017-11-04 13:44:45 +03004063 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 return error;
4065
4066slashes:
David Howellsb18825a2013-09-12 19:22:53 +01004067 if (d_is_negative(dentry))
4068 error = -ENOENT;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02004069 else if (d_is_dir(dentry))
David Howellsb18825a2013-09-12 19:22:53 +01004070 error = -EISDIR;
4071 else
4072 error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 goto exit2;
4074}
4075
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004076SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004077{
4078 if ((flag & ~AT_REMOVEDIR) != 0)
4079 return -EINVAL;
4080
4081 if (flag & AT_REMOVEDIR)
4082 return do_rmdir(dfd, pathname);
4083
Christoph Hellwigda2f1362017-11-04 13:44:45 +03004084 return do_unlinkat(dfd, getname(pathname));
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004085}
4086
Heiko Carstens3480b252009-01-14 14:14:16 +01004087SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004088{
Christoph Hellwigda2f1362017-11-04 13:44:45 +03004089 return do_unlinkat(AT_FDCWD, getname(pathname));
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004090}
4091
Miklos Szeredidb2e7472008-06-24 16:50:16 +02004092int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093{
Miklos Szeredia95164d2008-07-30 15:08:48 +02004094 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095
4096 if (error)
4097 return error;
4098
Al Viroacfa4382008-12-04 10:06:33 -05004099 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 return -EPERM;
4101
4102 error = security_inode_symlink(dir, dentry, oldname);
4103 if (error)
4104 return error;
4105
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07004107 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00004108 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 return error;
4110}
Al Viro4d359502014-03-14 12:20:17 -04004111EXPORT_SYMBOL(vfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004113SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
4114 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115{
Al Viro2ad94ae2008-07-21 09:32:51 -04004116 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04004117 struct filename *from;
Dave Hansen6902d922006-09-30 23:29:01 -07004118 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004119 struct path path;
Jeff Laytonf46d3562012-12-11 12:10:08 -05004120 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121
4122 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04004123 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 return PTR_ERR(from);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004125retry:
4126 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07004127 error = PTR_ERR(dentry);
4128 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004129 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07004130
Jeff Layton91a27b22012-10-10 15:25:28 -04004131 error = security_path_symlink(&path, dentry, from->name);
Al Viroa8104a92012-07-20 02:25:00 +04004132 if (!error)
Jeff Layton91a27b22012-10-10 15:25:28 -04004133 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
Al Viro921a1652012-07-20 01:15:31 +04004134 done_path_create(&path, dentry);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004135 if (retry_estale(error, lookup_flags)) {
4136 lookup_flags |= LOOKUP_REVAL;
4137 goto retry;
4138 }
Dave Hansen6902d922006-09-30 23:29:01 -07004139out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 putname(from);
4141 return error;
4142}
4143
Heiko Carstens3480b252009-01-14 14:14:16 +01004144SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004145{
4146 return sys_symlinkat(oldname, AT_FDCWD, newname);
4147}
4148
J. Bruce Fields146a8592011-09-20 17:14:31 -04004149/**
4150 * vfs_link - create a new link
4151 * @old_dentry: object to be linked
4152 * @dir: new parent
4153 * @new_dentry: where to create the new link
4154 * @delegated_inode: returns inode needing a delegation break
4155 *
4156 * The caller must hold dir->i_mutex
4157 *
4158 * If vfs_link discovers a delegation on the to-be-linked file in need
4159 * of breaking, it will return -EWOULDBLOCK and return a reference to the
4160 * inode in delegated_inode. The caller should then break the delegation
4161 * and retry. Because breaking a delegation may take a long time, the
4162 * caller should drop the i_mutex before doing so.
4163 *
4164 * Alternatively, a caller may pass NULL for delegated_inode. This may
4165 * be appropriate for callers that expect the underlying filesystem not
4166 * to be NFS exported.
4167 */
4168int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169{
4170 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05004171 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 int error;
4173
4174 if (!inode)
4175 return -ENOENT;
4176
Miklos Szeredia95164d2008-07-30 15:08:48 +02004177 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178 if (error)
4179 return error;
4180
4181 if (dir->i_sb != inode->i_sb)
4182 return -EXDEV;
4183
4184 /*
4185 * A link to an append-only or immutable file cannot be created.
4186 */
4187 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4188 return -EPERM;
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05004189 /*
4190 * Updating the link count will likely cause i_uid and i_gid to
4191 * be writen back improperly if their true value is unknown to
4192 * the vfs.
4193 */
4194 if (HAS_UNMAPPED_ID(inode))
4195 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05004196 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004198 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 return -EPERM;
4200
4201 error = security_inode_link(old_dentry, dir, new_dentry);
4202 if (error)
4203 return error;
4204
Al Viro59551022016-01-22 15:40:57 -05004205 inode_lock(inode);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304206 /* Make sure we don't allow creating hardlink to an unlinked file */
Al Virof4e0c302013-06-11 08:34:36 +04004207 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304208 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05004209 else if (max_links && inode->i_nlink >= max_links)
4210 error = -EMLINK;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004211 else {
4212 error = try_break_deleg(inode, delegated_inode);
4213 if (!error)
4214 error = dir->i_op->link(old_dentry, dir, new_dentry);
4215 }
Al Virof4e0c302013-06-11 08:34:36 +04004216
4217 if (!error && (inode->i_state & I_LINKABLE)) {
4218 spin_lock(&inode->i_lock);
4219 inode->i_state &= ~I_LINKABLE;
4220 spin_unlock(&inode->i_lock);
4221 }
Al Viro59551022016-01-22 15:40:57 -05004222 inode_unlock(inode);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07004223 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004224 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 return error;
4226}
Al Viro4d359502014-03-14 12:20:17 -04004227EXPORT_SYMBOL(vfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228
4229/*
4230 * Hardlinks are often used in delicate situations. We avoid
4231 * security-related surprises by not following symlinks on the
4232 * newname. --KAB
4233 *
4234 * We don't follow them on the oldname either to be compatible
4235 * with linux 2.0, and to avoid hard-linking to directories
4236 * and other special files. --ADM
4237 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004238SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4239 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240{
4241 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004242 struct path old_path, new_path;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004243 struct inode *delegated_inode = NULL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304244 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304247 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004248 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304249 /*
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004250 * To use null names we require CAP_DAC_READ_SEARCH
4251 * This ensures that not everyone will be able to create
4252 * handlink using the passed filedescriptor.
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304253 */
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004254 if (flags & AT_EMPTY_PATH) {
4255 if (!capable(CAP_DAC_READ_SEARCH))
4256 return -ENOENT;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304257 how = LOOKUP_EMPTY;
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004258 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004259
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304260 if (flags & AT_SYMLINK_FOLLOW)
4261 how |= LOOKUP_FOLLOW;
Jeff Layton442e31c2012-12-20 16:15:38 -05004262retry:
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304263 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04004265 return error;
4266
Jeff Layton442e31c2012-12-20 16:15:38 -05004267 new_dentry = user_path_create(newdfd, newname, &new_path,
4268 (how & LOOKUP_REVAL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07004270 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004271 goto out;
4272
4273 error = -EXDEV;
4274 if (old_path.mnt != new_path.mnt)
4275 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07004276 error = may_linkat(&old_path);
4277 if (unlikely(error))
4278 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04004279 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004280 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04004281 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004282 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
Dave Hansen75c3f292008-02-15 14:37:45 -08004283out_dput:
Al Viro921a1652012-07-20 01:15:31 +04004284 done_path_create(&new_path, new_dentry);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004285 if (delegated_inode) {
4286 error = break_deleg_wait(&delegated_inode);
Oleg Drokind22e6332014-01-31 15:41:58 -05004287 if (!error) {
4288 path_put(&old_path);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004289 goto retry;
Oleg Drokind22e6332014-01-31 15:41:58 -05004290 }
J. Bruce Fields146a8592011-09-20 17:14:31 -04004291 }
Jeff Layton442e31c2012-12-20 16:15:38 -05004292 if (retry_estale(error, how)) {
Oleg Drokind22e6332014-01-31 15:41:58 -05004293 path_put(&old_path);
Jeff Layton442e31c2012-12-20 16:15:38 -05004294 how |= LOOKUP_REVAL;
4295 goto retry;
4296 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297out:
Al Viro2d8f3032008-07-22 09:59:21 -04004298 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299
4300 return error;
4301}
4302
Heiko Carstens3480b252009-01-14 14:14:16 +01004303SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004304{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004305 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004306}
4307
Miklos Szeredibc270272014-04-01 17:08:42 +02004308/**
4309 * vfs_rename - rename a filesystem object
4310 * @old_dir: parent of source
4311 * @old_dentry: source
4312 * @new_dir: parent of destination
4313 * @new_dentry: destination
4314 * @delegated_inode: returns an inode needing a delegation break
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004315 * @flags: rename flags
Miklos Szeredibc270272014-04-01 17:08:42 +02004316 *
4317 * The caller must hold multiple mutexes--see lock_rename()).
4318 *
4319 * If vfs_rename discovers a delegation in need of breaking at either
4320 * the source or destination, it will return -EWOULDBLOCK and return a
4321 * reference to the inode in delegated_inode. The caller should then
4322 * break the delegation and retry. Because breaking a delegation may
4323 * take a long time, the caller should drop all locks before doing
4324 * so.
4325 *
4326 * Alternatively, a caller may pass NULL for delegated_inode. This may
4327 * be appropriate for callers that expect the underlying filesystem not
4328 * to be NFS exported.
4329 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 * The worst of all namespace operations - renaming directory. "Perverted"
4331 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4332 * Problems:
Mauro Carvalho Chehab0117d422017-05-12 07:45:42 -03004333 *
J. Bruce Fieldsd03b29a2014-02-17 16:52:33 -05004334 * a) we can get into loop creation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 * b) race potential - two innocent renames can create a loop together.
4336 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004337 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 * story.
J. Bruce Fields6cedba82012-03-05 11:40:41 -05004339 * c) we have to lock _four_ objects - parents and victim (if it exists),
4340 * and source (if it is not a directory).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004341 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 * whether the target exists). Solution: try to be smart with locking
4343 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004344 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 * move will be locked. Thus we can rank directories by the tree
4346 * (ancestors first) and rank all non-directories after them.
4347 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004348 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 * HOWEVER, it relies on the assumption that any object with ->lookup()
4350 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4351 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07004352 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004353 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05004355 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 * locking].
4357 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004359 struct inode *new_dir, struct dentry *new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004360 struct inode **delegated_inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361{
4362 int error;
Miklos Szeredibc270272014-04-01 17:08:42 +02004363 bool is_dir = d_is_dir(old_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004364 struct inode *source = old_dentry->d_inode;
4365 struct inode *target = new_dentry->d_inode;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004366 bool new_is_dir = false;
4367 unsigned max_links = new_dir->i_sb->s_max_links;
Al Viro49d31c22017-07-07 14:51:19 -04004368 struct name_snapshot old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369
Miklos Szeredi8d3e2932016-12-16 11:02:54 +01004370 if (source == target)
Miklos Szeredibc270272014-04-01 17:08:42 +02004371 return 0;
4372
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373 error = may_delete(old_dir, old_dentry, is_dir);
4374 if (error)
4375 return error;
4376
Miklos Szeredida1ce062014-04-01 17:08:43 +02004377 if (!target) {
Miklos Szeredia95164d2008-07-30 15:08:48 +02004378 error = may_create(new_dir, new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004379 } else {
4380 new_is_dir = d_is_dir(new_dentry);
4381
4382 if (!(flags & RENAME_EXCHANGE))
4383 error = may_delete(new_dir, new_dentry, is_dir);
4384 else
4385 error = may_delete(new_dir, new_dentry, new_is_dir);
4386 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 if (error)
4388 return error;
4389
Miklos Szeredi2773bf02016-09-27 11:03:58 +02004390 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 return -EPERM;
4392
Miklos Szeredibc270272014-04-01 17:08:42 +02004393 /*
4394 * If we are going to change the parent - check write permissions,
4395 * we'll need to flip '..'.
4396 */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004397 if (new_dir != old_dir) {
4398 if (is_dir) {
4399 error = inode_permission(source, MAY_WRITE);
4400 if (error)
4401 return error;
4402 }
4403 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4404 error = inode_permission(target, MAY_WRITE);
4405 if (error)
4406 return error;
4407 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004408 }
Robert Love0eeca282005-07-12 17:06:03 -04004409
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004410 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4411 flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004412 if (error)
4413 return error;
4414
Al Viro49d31c22017-07-07 14:51:19 -04004415 take_dentry_name_snapshot(&old_name, old_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004416 dget(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004417 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004418 lock_two_nondirectories(source, target);
4419 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004420 inode_lock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004421
4422 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07004423 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004424 goto out;
4425
Miklos Szeredida1ce062014-04-01 17:08:43 +02004426 if (max_links && new_dir != old_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004427 error = -EMLINK;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004428 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
Miklos Szeredibc270272014-04-01 17:08:42 +02004429 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004430 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4431 old_dir->i_nlink >= max_links)
4432 goto out;
4433 }
4434 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4435 shrink_dcache_parent(new_dentry);
4436 if (!is_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004437 error = try_break_deleg(source, delegated_inode);
4438 if (error)
4439 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004440 }
4441 if (target && !new_is_dir) {
4442 error = try_break_deleg(target, delegated_inode);
4443 if (error)
4444 goto out;
Miklos Szeredibc270272014-04-01 17:08:42 +02004445 }
Miklos Szeredi2773bf02016-09-27 11:03:58 +02004446 error = old_dir->i_op->rename(old_dir, old_dentry,
Miklos Szeredi18fc84d2016-09-27 11:03:58 +02004447 new_dir, new_dentry, flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004448 if (error)
4449 goto out;
4450
Miklos Szeredida1ce062014-04-01 17:08:43 +02004451 if (!(flags & RENAME_EXCHANGE) && target) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004452 if (is_dir)
4453 target->i_flags |= S_DEAD;
4454 dont_mount(new_dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004455 detach_mounts(new_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004456 }
Miklos Szeredida1ce062014-04-01 17:08:43 +02004457 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4458 if (!(flags & RENAME_EXCHANGE))
4459 d_move(old_dentry, new_dentry);
4460 else
4461 d_exchange(old_dentry, new_dentry);
4462 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004463out:
Miklos Szeredida1ce062014-04-01 17:08:43 +02004464 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004465 unlock_two_nondirectories(source, target);
4466 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004467 inode_unlock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004468 dput(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004469 if (!error) {
Al Viro49d31c22017-07-07 14:51:19 -04004470 fsnotify_move(old_dir, new_dir, old_name.name, is_dir,
Miklos Szeredida1ce062014-04-01 17:08:43 +02004471 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4472 if (flags & RENAME_EXCHANGE) {
4473 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4474 new_is_dir, NULL, new_dentry);
4475 }
4476 }
Al Viro49d31c22017-07-07 14:51:19 -04004477 release_dentry_name_snapshot(&old_name);
Robert Love0eeca282005-07-12 17:06:03 -04004478
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479 return error;
4480}
Al Viro4d359502014-03-14 12:20:17 -04004481EXPORT_SYMBOL(vfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004483SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4484 int, newdfd, const char __user *, newname, unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485{
Al Viro2ad94ae2008-07-21 09:32:51 -04004486 struct dentry *old_dentry, *new_dentry;
4487 struct dentry *trap;
Al Virof5beed72015-04-30 16:09:11 -04004488 struct path old_path, new_path;
4489 struct qstr old_last, new_last;
4490 int old_type, new_type;
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004491 struct inode *delegated_inode = NULL;
Jeff Layton91a27b22012-10-10 15:25:28 -04004492 struct filename *from;
4493 struct filename *to;
Al Virof5beed72015-04-30 16:09:11 -04004494 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
Jeff Laytonc6a94282012-12-11 12:10:10 -05004495 bool should_retry = false;
Al Viro2ad94ae2008-07-21 09:32:51 -04004496 int error;
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004497
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004498 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredida1ce062014-04-01 17:08:43 +02004499 return -EINVAL;
4500
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004501 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4502 (flags & RENAME_EXCHANGE))
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004503 return -EINVAL;
4504
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004505 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4506 return -EPERM;
4507
Al Virof5beed72015-04-30 16:09:11 -04004508 if (flags & RENAME_EXCHANGE)
4509 target_flags = 0;
4510
Jeff Laytonc6a94282012-12-11 12:10:10 -05004511retry:
Al Viroc1d4dd22016-06-05 16:38:18 -04004512 from = filename_parentat(olddfd, getname(oldname), lookup_flags,
4513 &old_path, &old_last, &old_type);
Jeff Layton91a27b22012-10-10 15:25:28 -04004514 if (IS_ERR(from)) {
4515 error = PTR_ERR(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 goto exit;
Jeff Layton91a27b22012-10-10 15:25:28 -04004517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004518
Al Viroc1d4dd22016-06-05 16:38:18 -04004519 to = filename_parentat(newdfd, getname(newname), lookup_flags,
4520 &new_path, &new_last, &new_type);
Jeff Layton91a27b22012-10-10 15:25:28 -04004521 if (IS_ERR(to)) {
4522 error = PTR_ERR(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004523 goto exit1;
Jeff Layton91a27b22012-10-10 15:25:28 -04004524 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525
4526 error = -EXDEV;
Al Virof5beed72015-04-30 16:09:11 -04004527 if (old_path.mnt != new_path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528 goto exit2;
4529
Linus Torvalds1da177e2005-04-16 15:20:36 -07004530 error = -EBUSY;
Al Virof5beed72015-04-30 16:09:11 -04004531 if (old_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532 goto exit2;
4533
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004534 if (flags & RENAME_NOREPLACE)
4535 error = -EEXIST;
Al Virof5beed72015-04-30 16:09:11 -04004536 if (new_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 goto exit2;
4538
Al Virof5beed72015-04-30 16:09:11 -04004539 error = mnt_want_write(old_path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004540 if (error)
4541 goto exit2;
4542
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004543retry_deleg:
Al Virof5beed72015-04-30 16:09:11 -04004544 trap = lock_rename(new_path.dentry, old_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545
Al Virof5beed72015-04-30 16:09:11 -04004546 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004547 error = PTR_ERR(old_dentry);
4548 if (IS_ERR(old_dentry))
4549 goto exit3;
4550 /* source must exist */
4551 error = -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01004552 if (d_is_negative(old_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004553 goto exit4;
Al Virof5beed72015-04-30 16:09:11 -04004554 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004555 error = PTR_ERR(new_dentry);
4556 if (IS_ERR(new_dentry))
4557 goto exit4;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004558 error = -EEXIST;
4559 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4560 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004561 if (flags & RENAME_EXCHANGE) {
4562 error = -ENOENT;
4563 if (d_is_negative(new_dentry))
4564 goto exit5;
4565
4566 if (!d_is_dir(new_dentry)) {
4567 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004568 if (new_last.name[new_last.len])
Miklos Szeredida1ce062014-04-01 17:08:43 +02004569 goto exit5;
4570 }
4571 }
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004572 /* unless the source is a directory trailing slashes give -ENOTDIR */
4573 if (!d_is_dir(old_dentry)) {
4574 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004575 if (old_last.name[old_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004576 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004577 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004578 goto exit5;
4579 }
4580 /* source should not be ancestor of target */
4581 error = -EINVAL;
4582 if (old_dentry == trap)
4583 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004584 /* target should not be an ancestor of source */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004585 if (!(flags & RENAME_EXCHANGE))
4586 error = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004587 if (new_dentry == trap)
4588 goto exit5;
4589
Al Virof5beed72015-04-30 16:09:11 -04004590 error = security_path_rename(&old_path, old_dentry,
4591 &new_path, new_dentry, flags);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004592 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004593 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004594 error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4595 new_path.dentry->d_inode, new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004596 &delegated_inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004597exit5:
4598 dput(new_dentry);
4599exit4:
4600 dput(old_dentry);
4601exit3:
Al Virof5beed72015-04-30 16:09:11 -04004602 unlock_rename(new_path.dentry, old_path.dentry);
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004603 if (delegated_inode) {
4604 error = break_deleg_wait(&delegated_inode);
4605 if (!error)
4606 goto retry_deleg;
4607 }
Al Virof5beed72015-04-30 16:09:11 -04004608 mnt_drop_write(old_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004609exit2:
Jeff Laytonc6a94282012-12-11 12:10:10 -05004610 if (retry_estale(error, lookup_flags))
4611 should_retry = true;
Al Virof5beed72015-04-30 16:09:11 -04004612 path_put(&new_path);
Al Viro2ad94ae2008-07-21 09:32:51 -04004613 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004614exit1:
Al Virof5beed72015-04-30 16:09:11 -04004615 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004616 putname(from);
Jeff Laytonc6a94282012-12-11 12:10:10 -05004617 if (should_retry) {
4618 should_retry = false;
4619 lookup_flags |= LOOKUP_REVAL;
4620 goto retry;
4621 }
Al Viro2ad94ae2008-07-21 09:32:51 -04004622exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623 return error;
4624}
4625
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004626SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4627 int, newdfd, const char __user *, newname)
4628{
4629 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4630}
4631
Heiko Carstensa26eab22009-01-14 14:14:17 +01004632SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004633{
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004634 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004635}
4636
Miklos Szeredi787fb6b2014-10-24 00:14:36 +02004637int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4638{
4639 int error = may_create(dir, dentry);
4640 if (error)
4641 return error;
4642
4643 if (!dir->i_op->mknod)
4644 return -EPERM;
4645
4646 return dir->i_op->mknod(dir, dentry,
4647 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4648}
4649EXPORT_SYMBOL(vfs_whiteout);
4650
Al Viro5d826c82014-03-14 13:42:45 -04004651int readlink_copy(char __user *buffer, int buflen, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004652{
Al Viro5d826c82014-03-14 13:42:45 -04004653 int len = PTR_ERR(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004654 if (IS_ERR(link))
4655 goto out;
4656
4657 len = strlen(link);
4658 if (len > (unsigned) buflen)
4659 len = buflen;
4660 if (copy_to_user(buffer, link, len))
4661 len = -EFAULT;
4662out:
4663 return len;
4664}
4665
4666/*
4667 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
Al Viro6b255392015-11-17 10:20:54 -05004668 * have ->get_link() not calling nd_jump_link(). Using (or not using) it
4669 * for any given inode is up to filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004670 */
Miklos Szeredid16744e2016-12-09 16:45:04 +01004671static int generic_readlink(struct dentry *dentry, char __user *buffer,
4672 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004673{
Al Virofceef392015-12-29 15:58:39 -05004674 DEFINE_DELAYED_CALL(done);
Al Viro5f2c4172015-05-07 11:14:26 -04004675 struct inode *inode = d_inode(dentry);
4676 const char *link = inode->i_link;
Marcin Slusarz694a1762008-06-09 16:40:37 -07004677 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004678
Al Virod4dee482015-04-30 20:08:02 -04004679 if (!link) {
Al Virofceef392015-12-29 15:58:39 -05004680 link = inode->i_op->get_link(dentry, inode, &done);
Al Virod4dee482015-04-30 20:08:02 -04004681 if (IS_ERR(link))
4682 return PTR_ERR(link);
4683 }
Al Viro680baac2015-05-02 13:32:22 -04004684 res = readlink_copy(buffer, buflen, link);
Al Virofceef392015-12-29 15:58:39 -05004685 do_delayed_call(&done);
Marcin Slusarz694a1762008-06-09 16:40:37 -07004686 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004687}
4688
Miklos Szeredid60874c2016-10-04 14:40:45 +02004689/**
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +01004690 * vfs_readlink - copy symlink body into userspace buffer
4691 * @dentry: dentry on which to get symbolic link
4692 * @buffer: user memory pointer
4693 * @buflen: size of buffer
4694 *
4695 * Does not touch atime. That's up to the caller if necessary
4696 *
4697 * Does not call security hook.
4698 */
4699int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4700{
4701 struct inode *inode = d_inode(dentry);
4702
Miklos Szeredi76fca902016-12-09 16:45:04 +01004703 if (unlikely(!(inode->i_opflags & IOP_DEFAULT_READLINK))) {
4704 if (unlikely(inode->i_op->readlink))
4705 return inode->i_op->readlink(dentry, buffer, buflen);
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +01004706
Miklos Szeredi76fca902016-12-09 16:45:04 +01004707 if (!d_is_symlink(dentry))
4708 return -EINVAL;
4709
4710 spin_lock(&inode->i_lock);
4711 inode->i_opflags |= IOP_DEFAULT_READLINK;
4712 spin_unlock(&inode->i_lock);
4713 }
4714
4715 return generic_readlink(dentry, buffer, buflen);
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +01004716}
4717EXPORT_SYMBOL(vfs_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004718
Miklos Szeredid60874c2016-10-04 14:40:45 +02004719/**
4720 * vfs_get_link - get symlink body
4721 * @dentry: dentry on which to get symbolic link
4722 * @done: caller needs to free returned data with this
4723 *
4724 * Calls security hook and i_op->get_link() on the supplied inode.
4725 *
4726 * It does not touch atime. That's up to the caller if necessary.
4727 *
4728 * Does not work on "special" symlinks like /proc/$$/fd/N
4729 */
4730const char *vfs_get_link(struct dentry *dentry, struct delayed_call *done)
4731{
4732 const char *res = ERR_PTR(-EINVAL);
4733 struct inode *inode = d_inode(dentry);
4734
4735 if (d_is_symlink(dentry)) {
4736 res = ERR_PTR(security_inode_readlink(dentry));
4737 if (!res)
4738 res = inode->i_op->get_link(dentry, inode, done);
4739 }
4740 return res;
4741}
4742EXPORT_SYMBOL(vfs_get_link);
4743
Linus Torvalds1da177e2005-04-16 15:20:36 -07004744/* get the link contents into pagecache */
Al Viro6b255392015-11-17 10:20:54 -05004745const char *page_get_link(struct dentry *dentry, struct inode *inode,
Al Virofceef392015-12-29 15:58:39 -05004746 struct delayed_call *callback)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004747{
Duane Griffinebd09ab2008-12-19 20:47:12 +00004748 char *kaddr;
4749 struct page *page;
Al Viro6b255392015-11-17 10:20:54 -05004750 struct address_space *mapping = inode->i_mapping;
4751
Al Virod3883d42015-11-17 10:41:04 -05004752 if (!dentry) {
4753 page = find_get_page(mapping, 0);
4754 if (!page)
4755 return ERR_PTR(-ECHILD);
4756 if (!PageUptodate(page)) {
4757 put_page(page);
4758 return ERR_PTR(-ECHILD);
4759 }
4760 } else {
4761 page = read_mapping_page(mapping, 0, NULL);
4762 if (IS_ERR(page))
4763 return (char*)page;
4764 }
Al Virofceef392015-12-29 15:58:39 -05004765 set_delayed_call(callback, page_put_link, page);
Al Viro21fc61c2015-11-17 01:07:57 -05004766 BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM);
4767 kaddr = page_address(page);
Al Viro6b255392015-11-17 10:20:54 -05004768 nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1);
Duane Griffinebd09ab2008-12-19 20:47:12 +00004769 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004770}
4771
Al Viro6b255392015-11-17 10:20:54 -05004772EXPORT_SYMBOL(page_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004773
Al Virofceef392015-12-29 15:58:39 -05004774void page_put_link(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775{
Al Virofceef392015-12-29 15:58:39 -05004776 put_page(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004777}
Al Viro4d359502014-03-14 12:20:17 -04004778EXPORT_SYMBOL(page_put_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004779
Al Viroaa80dea2015-11-16 18:26:34 -05004780int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4781{
Al Virofceef392015-12-29 15:58:39 -05004782 DEFINE_DELAYED_CALL(done);
Al Viro6b255392015-11-17 10:20:54 -05004783 int res = readlink_copy(buffer, buflen,
4784 page_get_link(dentry, d_inode(dentry),
Al Virofceef392015-12-29 15:58:39 -05004785 &done));
4786 do_delayed_call(&done);
Al Viroaa80dea2015-11-16 18:26:34 -05004787 return res;
4788}
4789EXPORT_SYMBOL(page_readlink);
4790
Nick Piggin54566b22009-01-04 12:00:53 -08004791/*
4792 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4793 */
4794int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795{
4796 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004797 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07004798 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08004799 int err;
Tetsuo Handac718a972017-05-08 15:58:59 -07004800 unsigned int flags = 0;
Nick Piggin54566b22009-01-04 12:00:53 -08004801 if (nofs)
4802 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004803
NeilBrown7e53cac2006-03-25 03:07:57 -08004804retry:
Nick Pigginafddba42007-10-16 01:25:01 -07004805 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08004806 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004807 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07004808 goto fail;
4809
Al Viro21fc61c2015-11-17 01:07:57 -05004810 memcpy(page_address(page), symname, len-1);
Nick Pigginafddba42007-10-16 01:25:01 -07004811
4812 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4813 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004814 if (err < 0)
4815 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07004816 if (err < len-1)
4817 goto retry;
4818
Linus Torvalds1da177e2005-04-16 15:20:36 -07004819 mark_inode_dirty(inode);
4820 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004821fail:
4822 return err;
4823}
Al Viro4d359502014-03-14 12:20:17 -04004824EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004825
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004826int page_symlink(struct inode *inode, const char *symname, int len)
4827{
4828 return __page_symlink(inode, symname, len,
Michal Hockoc62d2552015-11-06 16:28:49 -08004829 !mapping_gfp_constraint(inode->i_mapping, __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004830}
Al Viro4d359502014-03-14 12:20:17 -04004831EXPORT_SYMBOL(page_symlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004832
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004833const struct inode_operations page_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -05004834 .get_link = page_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004835};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836EXPORT_SYMBOL(page_symlink_inode_operations);