blob: e15da92209d5bf293fb875e95c4b8a0ed58e33b2 [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 * sb_permission - Check superblock-level permissions
395 * @sb: Superblock of inode to check permission on
Randy Dunlap55852632012-08-18 17:39:25 -0700396 * @inode: Inode to check permission on
David Howells0bdaea92012-06-25 12:55:46 +0100397 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
398 *
399 * Separate out file-system wide checks from inode-specific permission checks.
400 */
401static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
402{
403 if (unlikely(mask & MAY_WRITE)) {
404 umode_t mode = inode->i_mode;
405
406 /* Nobody gets write access to a read-only fs. */
David Howellsbc98a422017-07-17 08:45:34 +0100407 if (sb_rdonly(sb) && (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
David Howells0bdaea92012-06-25 12:55:46 +0100408 return -EROFS;
409 }
410 return 0;
411}
412
413/**
414 * inode_permission - Check for access rights to a given inode
415 * @inode: Inode to check permission on
416 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
417 *
418 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
419 * this, letting us set arbitrary permissions for filesystem access without
420 * changing the "normal" UIDs which are used for other things.
421 *
422 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
423 */
424int inode_permission(struct inode *inode, int mask)
425{
426 int retval;
427
428 retval = sb_permission(inode->i_sb, inode, mask);
429 if (retval)
430 return retval;
Eric Biggers4bfd0542018-01-16 21:44:24 -0800431
432 if (unlikely(mask & MAY_WRITE)) {
433 /*
434 * Nobody gets write access to an immutable file.
435 */
436 if (IS_IMMUTABLE(inode))
437 return -EPERM;
438
439 /*
440 * Updating mtime will likely cause i_uid and i_gid to be
441 * written back improperly if their true value is unknown
442 * to the vfs.
443 */
444 if (HAS_UNMAPPED_ID(inode))
445 return -EACCES;
446 }
447
448 retval = do_inode_permission(inode, mask);
449 if (retval)
450 return retval;
451
452 retval = devcgroup_inode_permission(inode, mask);
453 if (retval)
454 return retval;
455
456 return security_inode_permission(inode, mask);
David Howells0bdaea92012-06-25 12:55:46 +0100457}
Al Viro4d359502014-03-14 12:20:17 -0400458EXPORT_SYMBOL(inode_permission);
David Howells0bdaea92012-06-25 12:55:46 +0100459
460/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800461 * path_get - get a reference to a path
462 * @path: path to get the reference to
463 *
464 * Given a path increment the reference count to the dentry and the vfsmount.
465 */
Al Virodcf787f2013-03-01 23:51:07 -0500466void path_get(const struct path *path)
Jan Blunck5dd784d02008-02-14 19:34:38 -0800467{
468 mntget(path->mnt);
469 dget(path->dentry);
470}
471EXPORT_SYMBOL(path_get);
472
473/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800474 * path_put - put a reference to a path
475 * @path: path to put the reference to
476 *
477 * Given a path decrement the reference count to the dentry and the vfsmount.
478 */
Al Virodcf787f2013-03-01 23:51:07 -0500479void path_put(const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Jan Blunck1d957f92008-02-14 19:34:35 -0800481 dput(path->dentry);
482 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
Jan Blunck1d957f92008-02-14 19:34:35 -0800484EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Al Viro894bc8c2015-05-02 07:16:16 -0400486#define EMBEDDED_LEVELS 2
Al Viro1f55a6e2014-11-01 19:30:41 -0400487struct nameidata {
488 struct path path;
Al Viro1cf26652015-05-06 16:01:56 -0400489 struct qstr last;
Al Viro1f55a6e2014-11-01 19:30:41 -0400490 struct path root;
491 struct inode *inode; /* path.dentry.d_inode */
492 unsigned int flags;
Al Viro9883d182015-05-13 07:28:08 -0400493 unsigned seq, m_seq;
Al Viro1f55a6e2014-11-01 19:30:41 -0400494 int last_type;
495 unsigned depth;
NeilBrown756daf22015-03-23 13:37:38 +1100496 int total_link_count;
Al Viro697fc6c2015-05-02 19:38:35 -0400497 struct saved {
498 struct path link;
Al Virofceef392015-12-29 15:58:39 -0500499 struct delayed_call done;
Al Viro697fc6c2015-05-02 19:38:35 -0400500 const char *name;
Al Viro0450b2d2015-05-08 13:23:53 -0400501 unsigned seq;
Al Viro894bc8c2015-05-02 07:16:16 -0400502 } *stack, internal[EMBEDDED_LEVELS];
Al Viro9883d182015-05-13 07:28:08 -0400503 struct filename *name;
504 struct nameidata *saved;
Al Virofceef392015-12-29 15:58:39 -0500505 struct inode *link_inode;
Al Viro9883d182015-05-13 07:28:08 -0400506 unsigned root_seq;
507 int dfd;
Kees Cook3859a272016-10-28 01:22:25 -0700508} __randomize_layout;
Al Viro1f55a6e2014-11-01 19:30:41 -0400509
Al Viro9883d182015-05-13 07:28:08 -0400510static void set_nameidata(struct nameidata *p, int dfd, struct filename *name)
Al Viro894bc8c2015-05-02 07:16:16 -0400511{
NeilBrown756daf22015-03-23 13:37:38 +1100512 struct nameidata *old = current->nameidata;
513 p->stack = p->internal;
Al Viroc8a53ee2015-05-12 18:43:07 -0400514 p->dfd = dfd;
515 p->name = name;
NeilBrown756daf22015-03-23 13:37:38 +1100516 p->total_link_count = old ? old->total_link_count : 0;
Al Viro9883d182015-05-13 07:28:08 -0400517 p->saved = old;
NeilBrown756daf22015-03-23 13:37:38 +1100518 current->nameidata = p;
Al Viro894bc8c2015-05-02 07:16:16 -0400519}
520
Al Viro9883d182015-05-13 07:28:08 -0400521static void restore_nameidata(void)
Al Viro894bc8c2015-05-02 07:16:16 -0400522{
Al Viro9883d182015-05-13 07:28:08 -0400523 struct nameidata *now = current->nameidata, *old = now->saved;
NeilBrown756daf22015-03-23 13:37:38 +1100524
525 current->nameidata = old;
526 if (old)
527 old->total_link_count = now->total_link_count;
Al Viroe1a63bb2015-12-05 21:06:33 -0500528 if (now->stack != now->internal)
NeilBrown756daf22015-03-23 13:37:38 +1100529 kfree(now->stack);
Al Viro894bc8c2015-05-02 07:16:16 -0400530}
531
532static int __nd_alloc_stack(struct nameidata *nd)
533{
Al Virobc40aee2015-05-09 13:04:24 -0400534 struct saved *p;
535
536 if (nd->flags & LOOKUP_RCU) {
537 p= kmalloc(MAXSYMLINKS * sizeof(struct saved),
538 GFP_ATOMIC);
539 if (unlikely(!p))
540 return -ECHILD;
541 } else {
542 p= kmalloc(MAXSYMLINKS * sizeof(struct saved),
Al Viro894bc8c2015-05-02 07:16:16 -0400543 GFP_KERNEL);
Al Virobc40aee2015-05-09 13:04:24 -0400544 if (unlikely(!p))
545 return -ENOMEM;
546 }
Al Viro894bc8c2015-05-02 07:16:16 -0400547 memcpy(p, nd->internal, sizeof(nd->internal));
548 nd->stack = p;
549 return 0;
550}
551
Eric W. Biederman397d4252015-08-15 20:27:13 -0500552/**
553 * path_connected - Verify that a path->dentry is below path->mnt.mnt_root
554 * @path: nameidate to verify
555 *
556 * Rename can sometimes move a file or directory outside of a bind
557 * mount, path_connected allows those cases to be detected.
558 */
559static bool path_connected(const struct path *path)
560{
561 struct vfsmount *mnt = path->mnt;
562
563 /* Only bind mounts can have disconnected paths */
564 if (mnt->mnt_root == mnt->mnt_sb->s_root)
565 return true;
566
567 return is_subdir(path->dentry, mnt->mnt_root);
568}
569
Al Viro894bc8c2015-05-02 07:16:16 -0400570static inline int nd_alloc_stack(struct nameidata *nd)
571{
Al Viroda4e0be2015-05-03 20:52:15 -0400572 if (likely(nd->depth != EMBEDDED_LEVELS))
Al Viro894bc8c2015-05-02 07:16:16 -0400573 return 0;
574 if (likely(nd->stack != nd->internal))
575 return 0;
576 return __nd_alloc_stack(nd);
577}
578
Al Viro79733872015-05-09 12:55:43 -0400579static void drop_links(struct nameidata *nd)
580{
581 int i = nd->depth;
582 while (i--) {
583 struct saved *last = nd->stack + i;
Al Virofceef392015-12-29 15:58:39 -0500584 do_delayed_call(&last->done);
585 clear_delayed_call(&last->done);
Al Viro79733872015-05-09 12:55:43 -0400586 }
587}
588
589static void terminate_walk(struct nameidata *nd)
590{
591 drop_links(nd);
592 if (!(nd->flags & LOOKUP_RCU)) {
593 int i;
594 path_put(&nd->path);
595 for (i = 0; i < nd->depth; i++)
596 path_put(&nd->stack[i].link);
Al Viro102b8af2015-05-12 17:35:52 -0400597 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
598 path_put(&nd->root);
599 nd->root.mnt = NULL;
600 }
Al Viro79733872015-05-09 12:55:43 -0400601 } else {
602 nd->flags &= ~LOOKUP_RCU;
603 if (!(nd->flags & LOOKUP_ROOT))
604 nd->root.mnt = NULL;
605 rcu_read_unlock();
606 }
607 nd->depth = 0;
608}
609
610/* path_put is needed afterwards regardless of success or failure */
611static bool legitimize_path(struct nameidata *nd,
612 struct path *path, unsigned seq)
613{
614 int res = __legitimize_mnt(path->mnt, nd->m_seq);
615 if (unlikely(res)) {
616 if (res > 0)
617 path->mnt = NULL;
618 path->dentry = NULL;
619 return false;
620 }
621 if (unlikely(!lockref_get_not_dead(&path->dentry->d_lockref))) {
622 path->dentry = NULL;
623 return false;
624 }
625 return !read_seqcount_retry(&path->dentry->d_seq, seq);
626}
627
628static bool legitimize_links(struct nameidata *nd)
629{
630 int i;
631 for (i = 0; i < nd->depth; i++) {
632 struct saved *last = nd->stack + i;
633 if (unlikely(!legitimize_path(nd, &last->link, last->seq))) {
634 drop_links(nd);
635 nd->depth = i + 1;
636 return false;
637 }
638 }
639 return true;
640}
641
Al Viro19660af2011-03-25 10:32:48 -0400642/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100643 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400644 * Documentation/filesystems/path-lookup.txt). In situations when we can't
645 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
Mike Marshall57e37152015-11-30 11:11:59 -0500646 * normal reference counts on dentries and vfsmounts to transition to ref-walk
Al Viro19660af2011-03-25 10:32:48 -0400647 * mode. Refcounts are grabbed at the last known good point before rcu-walk
648 * got stuck, so ref-walk may continue from there. If this is not successful
649 * (eg. a seqcount has changed), then failure is returned and it's up to caller
650 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100651 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100652
653/**
Al Viro19660af2011-03-25 10:32:48 -0400654 * unlazy_walk - try to switch to ref-walk mode.
655 * @nd: nameidata pathwalk data
Randy Dunlap39191622011-01-08 19:36:21 -0800656 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100657 *
Al Viro4675ac32017-01-09 22:29:15 -0500658 * unlazy_walk attempts to legitimize the current nd->path and nd->root
659 * for ref-walk mode.
660 * Must be called from rcu-walk context.
Al Viro79733872015-05-09 12:55:43 -0400661 * Nothing should touch nameidata between unlazy_walk() failure and
662 * terminate_walk().
Nick Piggin31e6b012011-01-07 17:49:52 +1100663 */
Al Viro4675ac32017-01-09 22:29:15 -0500664static int unlazy_walk(struct nameidata *nd)
Nick Piggin31e6b012011-01-07 17:49:52 +1100665{
Nick Piggin31e6b012011-01-07 17:49:52 +1100666 struct dentry *parent = nd->path.dentry;
667
668 BUG_ON(!(nd->flags & LOOKUP_RCU));
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700669
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700670 nd->flags &= ~LOOKUP_RCU;
Al Viro79733872015-05-09 12:55:43 -0400671 if (unlikely(!legitimize_links(nd)))
672 goto out2;
Al Viro4675ac32017-01-09 22:29:15 -0500673 if (unlikely(!legitimize_path(nd, &nd->path, nd->seq)))
674 goto out1;
675 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
676 if (unlikely(!legitimize_path(nd, &nd->root, nd->root_seq)))
677 goto out;
678 }
679 rcu_read_unlock();
680 BUG_ON(nd->inode != parent->d_inode);
681 return 0;
682
683out2:
684 nd->path.mnt = NULL;
685 nd->path.dentry = NULL;
686out1:
687 if (!(nd->flags & LOOKUP_ROOT))
688 nd->root.mnt = NULL;
689out:
690 rcu_read_unlock();
691 return -ECHILD;
692}
693
694/**
695 * unlazy_child - try to switch to ref-walk mode.
696 * @nd: nameidata pathwalk data
697 * @dentry: child of nd->path.dentry
698 * @seq: seq number to check dentry against
699 * Returns: 0 on success, -ECHILD on failure
700 *
701 * unlazy_child attempts to legitimize the current nd->path, nd->root and dentry
702 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
703 * @nd. Must be called from rcu-walk context.
704 * Nothing should touch nameidata between unlazy_child() failure and
705 * terminate_walk().
706 */
707static int unlazy_child(struct nameidata *nd, struct dentry *dentry, unsigned seq)
708{
709 BUG_ON(!(nd->flags & LOOKUP_RCU));
710
711 nd->flags &= ~LOOKUP_RCU;
712 if (unlikely(!legitimize_links(nd)))
713 goto out2;
Al Viro79733872015-05-09 12:55:43 -0400714 if (unlikely(!legitimize_mnt(nd->path.mnt, nd->m_seq)))
715 goto out2;
Al Viro4675ac32017-01-09 22:29:15 -0500716 if (unlikely(!lockref_get_not_dead(&nd->path.dentry->d_lockref)))
Al Viro79733872015-05-09 12:55:43 -0400717 goto out1;
Al Viro48a066e2013-09-29 22:06:07 -0400718
Linus Torvalds15570082013-09-02 11:38:06 -0700719 /*
Al Viro4675ac32017-01-09 22:29:15 -0500720 * We need to move both the parent and the dentry from the RCU domain
721 * to be properly refcounted. And the sequence number in the dentry
722 * validates *both* dentry counters, since we checked the sequence
723 * number of the parent after we got the child sequence number. So we
724 * know the parent must still be valid if the child sequence number is
Linus Torvalds15570082013-09-02 11:38:06 -0700725 */
Al Viro4675ac32017-01-09 22:29:15 -0500726 if (unlikely(!lockref_get_not_dead(&dentry->d_lockref)))
727 goto out;
728 if (unlikely(read_seqcount_retry(&dentry->d_seq, seq))) {
729 rcu_read_unlock();
730 dput(dentry);
731 goto drop_root_mnt;
Al Viro19660af2011-03-25 10:32:48 -0400732 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700733 /*
734 * Sequence counts matched. Now make sure that the root is
735 * still valid and get it if required.
736 */
737 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro5a8d87e2015-05-12 00:10:18 -0400738 if (unlikely(!legitimize_path(nd, &nd->root, nd->root_seq))) {
739 rcu_read_unlock();
740 dput(dentry);
741 return -ECHILD;
Al Viro79733872015-05-09 12:55:43 -0400742 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100743 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100744
Al Viro8b61e742013-11-08 12:45:01 -0500745 rcu_read_unlock();
Nick Piggin31e6b012011-01-07 17:49:52 +1100746 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400747
Al Viro79733872015-05-09 12:55:43 -0400748out2:
749 nd->path.mnt = NULL;
750out1:
751 nd->path.dentry = NULL;
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700752out:
Al Viro8b61e742013-11-08 12:45:01 -0500753 rcu_read_unlock();
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700754drop_root_mnt:
755 if (!(nd->flags & LOOKUP_ROOT))
756 nd->root.mnt = NULL;
Nick Piggin31e6b012011-01-07 17:49:52 +1100757 return -ECHILD;
758}
759
Al Viro4ce16ef32012-06-10 16:10:59 -0400760static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
Nick Piggin34286d62011-01-07 17:49:57 +1100761{
Al Viroa89f8332017-01-09 22:25:28 -0500762 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE))
763 return dentry->d_op->d_revalidate(dentry, flags);
764 else
765 return 1;
Nick Piggin34286d62011-01-07 17:49:57 +1100766}
767
Al Viro9f1fafe2011-03-25 11:00:12 -0400768/**
769 * complete_walk - successful completion of path walk
770 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500771 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400772 * If we had been in RCU mode, drop out of it and legitimize nd->path.
773 * Revalidate the final result, unless we'd already done that during
774 * the path walk or the filesystem doesn't ask for it. Return 0 on
775 * success, -error on failure. In case of failure caller does not
776 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500777 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400778static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500779{
Al Viro16c2cd72011-02-22 15:50:10 -0500780 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500781 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500782
Al Viro9f1fafe2011-03-25 11:00:12 -0400783 if (nd->flags & LOOKUP_RCU) {
Al Viro9f1fafe2011-03-25 11:00:12 -0400784 if (!(nd->flags & LOOKUP_ROOT))
785 nd->root.mnt = NULL;
Al Viro4675ac32017-01-09 22:29:15 -0500786 if (unlikely(unlazy_walk(nd)))
Al Viro48a066e2013-09-29 22:06:07 -0400787 return -ECHILD;
Al Viro9f1fafe2011-03-25 11:00:12 -0400788 }
789
Al Viro16c2cd72011-02-22 15:50:10 -0500790 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500791 return 0;
792
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500793 if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
Al Viro16c2cd72011-02-22 15:50:10 -0500794 return 0;
795
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500796 status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
Jeff Layton39159de2009-12-07 12:01:50 -0500797 if (status > 0)
798 return 0;
799
Al Viro16c2cd72011-02-22 15:50:10 -0500800 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500801 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500802
Jeff Layton39159de2009-12-07 12:01:50 -0500803 return status;
804}
805
Al Viro18d8c862015-05-12 16:32:34 -0400806static void set_root(struct nameidata *nd)
Al Viro2a737872009-04-07 11:49:53 -0400807{
Al Viro7bd88372014-09-13 21:55:46 -0400808 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100809
Al Viro9e6697e2015-12-05 20:07:21 -0500810 if (nd->flags & LOOKUP_RCU) {
811 unsigned seq;
812
813 do {
814 seq = read_seqcount_begin(&fs->seq);
815 nd->root = fs->root;
816 nd->root_seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
817 } while (read_seqcount_retry(&fs->seq, seq));
818 } else {
819 get_fs_root(fs, &nd->root);
820 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100821}
822
Jan Blunck1d957f92008-02-14 19:34:35 -0800823static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700824{
825 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800826 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700827 mntput(path->mnt);
828}
829
Nick Piggin7b9337a2011-01-14 08:42:43 +0000830static inline void path_to_nameidata(const struct path *path,
831 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700832{
Nick Piggin31e6b012011-01-07 17:49:52 +1100833 if (!(nd->flags & LOOKUP_RCU)) {
834 dput(nd->path.dentry);
835 if (nd->path.mnt != path->mnt)
836 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800837 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100838 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800839 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700840}
841
Al Viro248fb5b2015-12-05 20:51:58 -0500842static int nd_jump_root(struct nameidata *nd)
843{
844 if (nd->flags & LOOKUP_RCU) {
845 struct dentry *d;
846 nd->path = nd->root;
847 d = nd->path.dentry;
848 nd->inode = d->d_inode;
849 nd->seq = nd->root_seq;
850 if (unlikely(read_seqcount_retry(&d->d_seq, nd->seq)))
851 return -ECHILD;
852 } else {
853 path_put(&nd->path);
854 nd->path = nd->root;
855 path_get(&nd->path);
856 nd->inode = nd->path.dentry->d_inode;
857 }
858 nd->flags |= LOOKUP_JUMPED;
859 return 0;
860}
861
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400862/*
Al Viro6b255392015-11-17 10:20:54 -0500863 * Helper to directly jump to a known parsed path from ->get_link,
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400864 * caller must have taken a reference to path beforehand.
865 */
Al Viro6e77137b2015-05-02 13:37:52 -0400866void nd_jump_link(struct path *path)
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400867{
Al Viro6e77137b2015-05-02 13:37:52 -0400868 struct nameidata *nd = current->nameidata;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400869 path_put(&nd->path);
870
871 nd->path = *path;
872 nd->inode = nd->path.dentry->d_inode;
873 nd->flags |= LOOKUP_JUMPED;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400874}
875
Al Virob9ff4422015-05-02 20:19:23 -0400876static inline void put_link(struct nameidata *nd)
Al Viro574197e2011-03-14 22:20:34 -0400877{
Al Viro21c30032015-05-03 21:06:24 -0400878 struct saved *last = nd->stack + --nd->depth;
Al Virofceef392015-12-29 15:58:39 -0500879 do_delayed_call(&last->done);
Al Viro6548fae2015-05-07 20:32:22 -0400880 if (!(nd->flags & LOOKUP_RCU))
881 path_put(&last->link);
Al Viro574197e2011-03-14 22:20:34 -0400882}
883
Linus Torvalds561ec642012-10-26 10:05:07 -0700884int sysctl_protected_symlinks __read_mostly = 0;
885int sysctl_protected_hardlinks __read_mostly = 0;
Kees Cook800179c2012-07-25 17:29:07 -0700886
887/**
888 * may_follow_link - Check symlink following for unsafe situations
Randy Dunlap55852632012-08-18 17:39:25 -0700889 * @nd: nameidata pathwalk data
Kees Cook800179c2012-07-25 17:29:07 -0700890 *
891 * In the case of the sysctl_protected_symlinks sysctl being enabled,
892 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
893 * in a sticky world-writable directory. This is to protect privileged
894 * processes from failing races against path names that may change out
895 * from under them by way of other users creating malicious symlinks.
896 * It will permit symlinks to be followed only when outside a sticky
897 * world-writable directory, or when the uid of the symlink and follower
898 * match, or when the directory owner matches the symlink's owner.
899 *
900 * Returns 0 if following the symlink is allowed, -ve on error.
901 */
Al Virofec2fa22015-05-06 15:58:18 -0400902static inline int may_follow_link(struct nameidata *nd)
Kees Cook800179c2012-07-25 17:29:07 -0700903{
904 const struct inode *inode;
905 const struct inode *parent;
Seth Forshee2d7f9e22016-04-26 14:36:23 -0500906 kuid_t puid;
Kees Cook800179c2012-07-25 17:29:07 -0700907
908 if (!sysctl_protected_symlinks)
909 return 0;
910
911 /* Allowed if owner and follower match. */
Al Virofceef392015-12-29 15:58:39 -0500912 inode = nd->link_inode;
Eric W. Biederman81abe272012-08-03 09:38:08 -0700913 if (uid_eq(current_cred()->fsuid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700914 return 0;
915
916 /* Allowed if parent directory not sticky and world-writable. */
Al Viroaa65fa32015-08-04 23:23:50 -0400917 parent = nd->inode;
Kees Cook800179c2012-07-25 17:29:07 -0700918 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
919 return 0;
920
921 /* Allowed if parent directory and link owner match. */
Seth Forshee2d7f9e22016-04-26 14:36:23 -0500922 puid = parent->i_uid;
923 if (uid_valid(puid) && uid_eq(puid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700924 return 0;
925
Al Viro319565022015-05-07 20:37:40 -0400926 if (nd->flags & LOOKUP_RCU)
927 return -ECHILD;
928
Al Viro1cf26652015-05-06 16:01:56 -0400929 audit_log_link_denied("follow_link", &nd->stack[0].link);
Kees Cook800179c2012-07-25 17:29:07 -0700930 return -EACCES;
931}
932
933/**
934 * safe_hardlink_source - Check for safe hardlink conditions
935 * @inode: the source inode to hardlink from
936 *
937 * Return false if at least one of the following conditions:
938 * - inode is not a regular file
939 * - inode is setuid
940 * - inode is setgid and group-exec
941 * - access failure for read and write
942 *
943 * Otherwise returns true.
944 */
945static bool safe_hardlink_source(struct inode *inode)
946{
947 umode_t mode = inode->i_mode;
948
949 /* Special files should not get pinned to the filesystem. */
950 if (!S_ISREG(mode))
951 return false;
952
953 /* Setuid files should not get pinned to the filesystem. */
954 if (mode & S_ISUID)
955 return false;
956
957 /* Executable setgid files should not get pinned to the filesystem. */
958 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
959 return false;
960
961 /* Hardlinking to unreadable or unwritable sources is dangerous. */
962 if (inode_permission(inode, MAY_READ | MAY_WRITE))
963 return false;
964
965 return true;
966}
967
968/**
969 * may_linkat - Check permissions for creating a hardlink
970 * @link: the source to hardlink from
971 *
972 * Block hardlink when all of:
973 * - sysctl_protected_hardlinks enabled
974 * - fsuid does not match inode
975 * - hardlink source is unsafe (see safe_hardlink_source() above)
Dirk Steinmetzf2ca3792015-10-20 16:09:19 +0200976 * - not CAP_FOWNER in a namespace with the inode owner uid mapped
Kees Cook800179c2012-07-25 17:29:07 -0700977 *
978 * Returns 0 if successful, -ve on error.
979 */
980static int may_linkat(struct path *link)
981{
Kees Cook800179c2012-07-25 17:29:07 -0700982 struct inode *inode;
983
984 if (!sysctl_protected_hardlinks)
985 return 0;
986
Kees Cook800179c2012-07-25 17:29:07 -0700987 inode = link->dentry->d_inode;
988
989 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
990 * otherwise, it must be a safe source.
991 */
Kees Cookcc658db2017-06-21 09:53:06 -0700992 if (safe_hardlink_source(inode) || inode_owner_or_capable(inode))
Kees Cook800179c2012-07-25 17:29:07 -0700993 return 0;
994
Kees Cooka51d9ea2012-07-25 17:29:08 -0700995 audit_log_link_denied("linkat", link);
Kees Cook800179c2012-07-25 17:29:07 -0700996 return -EPERM;
997}
998
Al Viro3b2e7f72015-04-19 00:53:50 -0400999static __always_inline
1000const char *get_link(struct nameidata *nd)
Ian Kent051d3812006-03-27 01:14:53 -08001001{
Al Viroab104922015-05-10 11:50:01 -04001002 struct saved *last = nd->stack + nd->depth - 1;
Al Viro1cf26652015-05-06 16:01:56 -04001003 struct dentry *dentry = last->link.dentry;
Al Virofceef392015-12-29 15:58:39 -05001004 struct inode *inode = nd->link_inode;
Al Viro6d7b5aa2012-06-10 04:15:17 -04001005 int error;
Al Viro0a959df2015-04-18 18:23:41 -04001006 const char *res;
Ian Kent051d3812006-03-27 01:14:53 -08001007
NeilBrown8fa9dd22015-03-23 13:37:40 +11001008 if (!(nd->flags & LOOKUP_RCU)) {
1009 touch_atime(&last->link);
1010 cond_resched();
Miklos Szeredi598e3c82016-09-16 12:44:20 +02001011 } else if (atime_needs_update_rcu(&last->link, inode)) {
Al Viro4675ac32017-01-09 22:29:15 -05001012 if (unlikely(unlazy_walk(nd)))
NeilBrown8fa9dd22015-03-23 13:37:40 +11001013 return ERR_PTR(-ECHILD);
1014 touch_atime(&last->link);
1015 }
1016
NeilBrownbda0be72015-03-23 13:37:39 +11001017 error = security_inode_follow_link(dentry, inode,
1018 nd->flags & LOOKUP_RCU);
1019 if (unlikely(error))
Al Viro6920a442015-05-10 10:43:46 -04001020 return ERR_PTR(error);
Al Viro36f3b4f2011-02-22 21:24:38 -05001021
Al Viro86acdca12009-12-22 23:45:11 -05001022 nd->last_type = LAST_BIND;
Al Virod4dee482015-04-30 20:08:02 -04001023 res = inode->i_link;
1024 if (!res) {
Al Virofceef392015-12-29 15:58:39 -05001025 const char * (*get)(struct dentry *, struct inode *,
1026 struct delayed_call *);
1027 get = inode->i_op->get_link;
Al Viro8c1b4562015-05-09 18:15:21 -04001028 if (nd->flags & LOOKUP_RCU) {
Al Virofceef392015-12-29 15:58:39 -05001029 res = get(NULL, inode, &last->done);
Al Viro6b255392015-11-17 10:20:54 -05001030 if (res == ERR_PTR(-ECHILD)) {
Al Viro4675ac32017-01-09 22:29:15 -05001031 if (unlikely(unlazy_walk(nd)))
Al Viro6b255392015-11-17 10:20:54 -05001032 return ERR_PTR(-ECHILD);
Al Virofceef392015-12-29 15:58:39 -05001033 res = get(dentry, inode, &last->done);
Al Viro6b255392015-11-17 10:20:54 -05001034 }
1035 } else {
Al Virofceef392015-12-29 15:58:39 -05001036 res = get(dentry, inode, &last->done);
Al Viro8c1b4562015-05-09 18:15:21 -04001037 }
Al Virofceef392015-12-29 15:58:39 -05001038 if (IS_ERR_OR_NULL(res))
Al Virofab51e82015-05-10 11:01:00 -04001039 return res;
Ian Kent051d3812006-03-27 01:14:53 -08001040 }
Al Virofab51e82015-05-10 11:01:00 -04001041 if (*res == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05001042 if (!nd->root.mnt)
1043 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05001044 if (unlikely(nd_jump_root(nd)))
1045 return ERR_PTR(-ECHILD);
Al Virofab51e82015-05-10 11:01:00 -04001046 while (unlikely(*++res == '/'))
1047 ;
1048 }
1049 if (!*res)
1050 res = NULL;
Al Viro0a959df2015-04-18 18:23:41 -04001051 return res;
1052}
Al Viro6d7b5aa2012-06-10 04:15:17 -04001053
David Howellsf015f1262012-06-25 12:55:28 +01001054/*
1055 * follow_up - Find the mountpoint of path's vfsmount
1056 *
1057 * Given a path, find the mountpoint of its source file system.
1058 * Replace @path with the path of the mountpoint in the parent mount.
1059 * Up is towards /.
1060 *
1061 * Return 1 if we went up a level and 0 if we were already at the
1062 * root.
1063 */
Al Virobab77eb2009-04-18 03:26:48 -04001064int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065{
Al Viro0714a532011-11-24 22:19:58 -05001066 struct mount *mnt = real_mount(path->mnt);
1067 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +10001069
Al Viro48a066e2013-09-29 22:06:07 -04001070 read_seqlock_excl(&mount_lock);
Al Viro0714a532011-11-24 22:19:58 -05001071 parent = mnt->mnt_parent;
Al Viro3c0a6162012-07-18 17:32:50 +04001072 if (parent == mnt) {
Al Viro48a066e2013-09-29 22:06:07 -04001073 read_sequnlock_excl(&mount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return 0;
1075 }
Al Viro0714a532011-11-24 22:19:58 -05001076 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -05001077 mountpoint = dget(mnt->mnt_mountpoint);
Al Viro48a066e2013-09-29 22:06:07 -04001078 read_sequnlock_excl(&mount_lock);
Al Virobab77eb2009-04-18 03:26:48 -04001079 dput(path->dentry);
1080 path->dentry = mountpoint;
1081 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -05001082 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 return 1;
1084}
Al Viro4d359502014-03-14 12:20:17 -04001085EXPORT_SYMBOL(follow_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086
Nick Pigginb5c84bf2011-01-07 17:49:38 +11001087/*
David Howells9875cf82011-01-14 18:45:21 +00001088 * Perform an automount
1089 * - return -EISDIR to tell follow_managed() to stop and return the path we
1090 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 */
NeilBrown756daf22015-03-23 13:37:38 +11001092static int follow_automount(struct path *path, struct nameidata *nd,
David Howells9875cf82011-01-14 18:45:21 +00001093 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +11001094{
David Howells9875cf82011-01-14 18:45:21 +00001095 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +00001096 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001097
David Howells9875cf82011-01-14 18:45:21 +00001098 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
1099 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -07001100
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001101 /* We don't want to mount if someone's just doing a stat -
1102 * unless they're stat'ing a directory and appended a '/' to
1103 * the name.
1104 *
1105 * We do, however, want to mount if someone wants to open or
1106 * create a file of any type under the mountpoint, wants to
1107 * traverse through the mountpoint or wants to open the
1108 * mounted directory. Also, autofs may mark negative dentries
1109 * as being automount points. These will need the attentions
1110 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +00001111 */
NeilBrown756daf22015-03-23 13:37:38 +11001112 if (!(nd->flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
Ian Kent5d38f042017-11-29 16:11:26 -08001113 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
1114 path->dentry->d_inode)
1115 return -EISDIR;
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +02001116
NeilBrown756daf22015-03-23 13:37:38 +11001117 nd->total_link_count++;
1118 if (nd->total_link_count >= 40)
David Howells9875cf82011-01-14 18:45:21 +00001119 return -ELOOP;
1120
1121 mnt = path->dentry->d_op->d_automount(path);
1122 if (IS_ERR(mnt)) {
1123 /*
1124 * The filesystem is allowed to return -EISDIR here to indicate
1125 * it doesn't want to automount. For instance, autofs would do
1126 * this so that its userspace daemon can mount on this dentry.
1127 *
1128 * However, we can only permit this if it's a terminal point in
1129 * the path being looked up; if it wasn't then the remainder of
1130 * the path is inaccessible and we should say so.
1131 */
NeilBrown756daf22015-03-23 13:37:38 +11001132 if (PTR_ERR(mnt) == -EISDIR && (nd->flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +00001133 return -EREMOTE;
1134 return PTR_ERR(mnt);
1135 }
David Howellsea5b7782011-01-14 19:10:03 +00001136
David Howells9875cf82011-01-14 18:45:21 +00001137 if (!mnt) /* mount collision */
1138 return 0;
1139
Al Viro8aef1882011-06-16 15:10:06 +01001140 if (!*need_mntput) {
1141 /* lock_mount() may release path->mnt on error */
1142 mntget(path->mnt);
1143 *need_mntput = true;
1144 }
Al Viro19a167a2011-01-17 01:35:23 -05001145 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +00001146
David Howellsea5b7782011-01-14 19:10:03 +00001147 switch (err) {
1148 case -EBUSY:
1149 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -05001150 return 0;
David Howellsea5b7782011-01-14 19:10:03 +00001151 case 0:
Al Viro8aef1882011-06-16 15:10:06 +01001152 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +00001153 path->mnt = mnt;
1154 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +00001155 return 0;
Al Viro19a167a2011-01-17 01:35:23 -05001156 default:
1157 return err;
David Howellsea5b7782011-01-14 19:10:03 +00001158 }
Al Viro19a167a2011-01-17 01:35:23 -05001159
David Howells9875cf82011-01-14 18:45:21 +00001160}
1161
1162/*
1163 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +00001164 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +00001165 * - Flagged as mountpoint
1166 * - Flagged as automount point
1167 *
1168 * This may only be called in refwalk mode.
1169 *
1170 * Serialization is taken care of in namespace.c
1171 */
NeilBrown756daf22015-03-23 13:37:38 +11001172static int follow_managed(struct path *path, struct nameidata *nd)
David Howells9875cf82011-01-14 18:45:21 +00001173{
Al Viro8aef1882011-06-16 15:10:06 +01001174 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +00001175 unsigned managed;
1176 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +01001177 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +00001178
1179 /* Given that we're not holding a lock here, we retain the value in a
1180 * local variable for each dentry as we look at it so that we don't see
1181 * the components of that value change under us */
Mark Rutland6aa7de02017-10-23 14:07:29 -07001182 while (managed = READ_ONCE(path->dentry->d_flags),
David Howells9875cf82011-01-14 18:45:21 +00001183 managed &= DCACHE_MANAGED_DENTRY,
1184 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +00001185 /* Allow the filesystem to manage the transit without i_mutex
1186 * being held. */
1187 if (managed & DCACHE_MANAGE_TRANSIT) {
1188 BUG_ON(!path->dentry->d_op);
1189 BUG_ON(!path->dentry->d_op->d_manage);
Ian Kentfb5f51c2016-11-24 08:03:41 +11001190 ret = path->dentry->d_op->d_manage(path, false);
David Howellscc53ce52011-01-14 18:45:26 +00001191 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001192 break;
David Howellscc53ce52011-01-14 18:45:26 +00001193 }
1194
David Howells9875cf82011-01-14 18:45:21 +00001195 /* Transit to a mounted filesystem. */
1196 if (managed & DCACHE_MOUNTED) {
1197 struct vfsmount *mounted = lookup_mnt(path);
1198 if (mounted) {
1199 dput(path->dentry);
1200 if (need_mntput)
1201 mntput(path->mnt);
1202 path->mnt = mounted;
1203 path->dentry = dget(mounted->mnt_root);
1204 need_mntput = true;
1205 continue;
1206 }
1207
1208 /* Something is mounted on this dentry in another
1209 * namespace and/or whatever was mounted there in this
Al Viro48a066e2013-09-29 22:06:07 -04001210 * namespace got unmounted before lookup_mnt() could
1211 * get it */
David Howells9875cf82011-01-14 18:45:21 +00001212 }
1213
1214 /* Handle an automount point */
1215 if (managed & DCACHE_NEED_AUTOMOUNT) {
NeilBrown756daf22015-03-23 13:37:38 +11001216 ret = follow_automount(path, nd, &need_mntput);
David Howells9875cf82011-01-14 18:45:21 +00001217 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001218 break;
David Howells9875cf82011-01-14 18:45:21 +00001219 continue;
1220 }
1221
1222 /* We didn't change the current path point */
1223 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 }
Al Viro8aef1882011-06-16 15:10:06 +01001225
1226 if (need_mntput && path->mnt == mnt)
1227 mntput(path->mnt);
Al Viroe9742b52016-03-05 22:04:59 -05001228 if (ret == -EISDIR || !ret)
1229 ret = 1;
Al Viro84027522015-04-22 10:30:08 -04001230 if (need_mntput)
1231 nd->flags |= LOOKUP_JUMPED;
1232 if (unlikely(ret < 0))
1233 path_put_conditional(path, nd);
1234 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235}
1236
David Howellscc53ce52011-01-14 18:45:26 +00001237int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238{
1239 struct vfsmount *mounted;
1240
Al Viro1c755af2009-04-18 14:06:57 -04001241 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -04001243 dput(path->dentry);
1244 mntput(path->mnt);
1245 path->mnt = mounted;
1246 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 return 1;
1248 }
1249 return 0;
1250}
Al Viro4d359502014-03-14 12:20:17 -04001251EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Ian Kentfb5f51c2016-11-24 08:03:41 +11001253static inline int managed_dentry_rcu(const struct path *path)
Ian Kent62a73752011-03-25 01:51:02 +08001254{
Ian Kentfb5f51c2016-11-24 08:03:41 +11001255 return (path->dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
1256 path->dentry->d_op->d_manage(path, true) : 0;
Ian Kent62a73752011-03-25 01:51:02 +08001257}
1258
David Howells9875cf82011-01-14 18:45:21 +00001259/*
Al Viro287548e2011-05-27 06:50:06 -04001260 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1261 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +00001262 */
1263static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro254cf582015-05-05 09:40:46 -04001264 struct inode **inode, unsigned *seqp)
David Howells9875cf82011-01-14 18:45:21 +00001265{
Ian Kent62a73752011-03-25 01:51:02 +08001266 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -05001267 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +08001268 /*
1269 * Don't forget we might have a non-mountpoint managed dentry
1270 * that wants to block transit.
1271 */
Ian Kentfb5f51c2016-11-24 08:03:41 +11001272 switch (managed_dentry_rcu(path)) {
NeilBrownb8faf032014-08-04 17:06:29 +10001273 case -ECHILD:
1274 default:
David Howellsab909112011-01-14 18:46:51 +00001275 return false;
NeilBrownb8faf032014-08-04 17:06:29 +10001276 case -EISDIR:
1277 return true;
1278 case 0:
1279 break;
1280 }
Ian Kent62a73752011-03-25 01:51:02 +08001281
1282 if (!d_mountpoint(path->dentry))
NeilBrownb8faf032014-08-04 17:06:29 +10001283 return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Ian Kent62a73752011-03-25 01:51:02 +08001284
Al Viro474279d2013-10-01 16:11:26 -04001285 mounted = __lookup_mnt(path->mnt, path->dentry);
David Howells9875cf82011-01-14 18:45:21 +00001286 if (!mounted)
1287 break;
Al Viroc7105362011-11-24 18:22:03 -05001288 path->mnt = &mounted->mnt;
1289 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +00001290 nd->flags |= LOOKUP_JUMPED;
Al Viro254cf582015-05-05 09:40:46 -04001291 *seqp = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -07001292 /*
1293 * Update the inode too. We don't need to re-check the
1294 * dentry sequence number here after this d_inode read,
1295 * because a mount-point is always pinned.
1296 */
1297 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +00001298 }
Al Virof5be3e29122014-09-13 21:50:45 -04001299 return !read_seqretry(&mount_lock, nd->m_seq) &&
NeilBrownb8faf032014-08-04 17:06:29 +10001300 !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Al Viro287548e2011-05-27 06:50:06 -04001301}
1302
Nick Piggin31e6b012011-01-07 17:49:52 +11001303static int follow_dotdot_rcu(struct nameidata *nd)
1304{
Al Viro4023bfc2014-09-13 21:59:43 -04001305 struct inode *inode = nd->inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001306
David Howells9875cf82011-01-14 18:45:21 +00001307 while (1) {
Al Viroaed434a2015-05-12 12:22:47 -04001308 if (path_equal(&nd->path, &nd->root))
Nick Piggin31e6b012011-01-07 17:49:52 +11001309 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001310 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1311 struct dentry *old = nd->path.dentry;
1312 struct dentry *parent = old->d_parent;
1313 unsigned seq;
1314
Al Viro4023bfc2014-09-13 21:59:43 -04001315 inode = parent->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001316 seq = read_seqcount_begin(&parent->d_seq);
Al Viroaed434a2015-05-12 12:22:47 -04001317 if (unlikely(read_seqcount_retry(&old->d_seq, nd->seq)))
1318 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001319 nd->path.dentry = parent;
1320 nd->seq = seq;
Eric W. Biederman397d4252015-08-15 20:27:13 -05001321 if (unlikely(!path_connected(&nd->path)))
1322 return -ENOENT;
Nick Piggin31e6b012011-01-07 17:49:52 +11001323 break;
Al Viroaed434a2015-05-12 12:22:47 -04001324 } else {
1325 struct mount *mnt = real_mount(nd->path.mnt);
1326 struct mount *mparent = mnt->mnt_parent;
1327 struct dentry *mountpoint = mnt->mnt_mountpoint;
1328 struct inode *inode2 = mountpoint->d_inode;
1329 unsigned seq = read_seqcount_begin(&mountpoint->d_seq);
1330 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1331 return -ECHILD;
1332 if (&mparent->mnt == nd->path.mnt)
1333 break;
1334 /* we know that mountpoint was pinned */
1335 nd->path.dentry = mountpoint;
1336 nd->path.mnt = &mparent->mnt;
1337 inode = inode2;
1338 nd->seq = seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001339 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001340 }
Al Viroaed434a2015-05-12 12:22:47 -04001341 while (unlikely(d_mountpoint(nd->path.dentry))) {
Al Virob37199e2014-03-20 15:18:22 -04001342 struct mount *mounted;
1343 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
Al Viroaed434a2015-05-12 12:22:47 -04001344 if (unlikely(read_seqretry(&mount_lock, nd->m_seq)))
1345 return -ECHILD;
Al Virob37199e2014-03-20 15:18:22 -04001346 if (!mounted)
1347 break;
1348 nd->path.mnt = &mounted->mnt;
1349 nd->path.dentry = mounted->mnt.mnt_root;
Al Viro4023bfc2014-09-13 21:59:43 -04001350 inode = nd->path.dentry->d_inode;
Al Virob37199e2014-03-20 15:18:22 -04001351 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Virob37199e2014-03-20 15:18:22 -04001352 }
Al Viro4023bfc2014-09-13 21:59:43 -04001353 nd->inode = inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001354 return 0;
1355}
1356
David Howells9875cf82011-01-14 18:45:21 +00001357/*
David Howellscc53ce52011-01-14 18:45:26 +00001358 * Follow down to the covering mount currently visible to userspace. At each
1359 * point, the filesystem owning that dentry may be queried as to whether the
1360 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001361 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001362int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001363{
1364 unsigned managed;
1365 int ret;
1366
Mark Rutland6aa7de02017-10-23 14:07:29 -07001367 while (managed = READ_ONCE(path->dentry->d_flags),
David Howellscc53ce52011-01-14 18:45:26 +00001368 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1369 /* Allow the filesystem to manage the transit without i_mutex
1370 * being held.
1371 *
1372 * We indicate to the filesystem if someone is trying to mount
1373 * something here. This gives autofs the chance to deny anyone
1374 * other than its daemon the right to mount on its
1375 * superstructure.
1376 *
1377 * The filesystem may sleep at this point.
1378 */
1379 if (managed & DCACHE_MANAGE_TRANSIT) {
1380 BUG_ON(!path->dentry->d_op);
1381 BUG_ON(!path->dentry->d_op->d_manage);
Ian Kentfb5f51c2016-11-24 08:03:41 +11001382 ret = path->dentry->d_op->d_manage(path, false);
David Howellscc53ce52011-01-14 18:45:26 +00001383 if (ret < 0)
1384 return ret == -EISDIR ? 0 : ret;
1385 }
1386
1387 /* Transit to a mounted filesystem. */
1388 if (managed & DCACHE_MOUNTED) {
1389 struct vfsmount *mounted = lookup_mnt(path);
1390 if (!mounted)
1391 break;
1392 dput(path->dentry);
1393 mntput(path->mnt);
1394 path->mnt = mounted;
1395 path->dentry = dget(mounted->mnt_root);
1396 continue;
1397 }
1398
1399 /* Don't handle automount points here */
1400 break;
1401 }
1402 return 0;
1403}
Al Viro4d359502014-03-14 12:20:17 -04001404EXPORT_SYMBOL(follow_down);
David Howellscc53ce52011-01-14 18:45:26 +00001405
1406/*
David Howells9875cf82011-01-14 18:45:21 +00001407 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1408 */
1409static void follow_mount(struct path *path)
1410{
1411 while (d_mountpoint(path->dentry)) {
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 }
1420}
1421
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05001422static int path_parent_directory(struct path *path)
1423{
1424 struct dentry *old = path->dentry;
1425 /* rare case of legitimate dget_parent()... */
1426 path->dentry = dget_parent(path->dentry);
1427 dput(old);
1428 if (unlikely(!path_connected(path)))
1429 return -ENOENT;
1430 return 0;
1431}
1432
Eric W. Biederman397d4252015-08-15 20:27:13 -05001433static int follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434{
1435 while(1) {
Al Viro2a737872009-04-07 11:49:53 -04001436 if (nd->path.dentry == nd->root.dentry &&
1437 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 break;
1439 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001440 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05001441 int ret = path_parent_directory(&nd->path);
1442 if (ret)
1443 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 break;
1445 }
Al Viro3088dd72010-01-30 15:47:29 -05001446 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
Al Viro79ed0222009-04-18 13:59:41 -04001449 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001450 nd->inode = nd->path.dentry->d_inode;
Eric W. Biederman397d4252015-08-15 20:27:13 -05001451 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452}
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454/*
Oleg Drokinf4fdace2016-07-07 22:04:04 -04001455 * This looks up the name in dcache and possibly revalidates the found dentry.
1456 * NULL is returned if the dentry does not exist in the cache.
Nick Pigginbaa03892010-08-18 04:37:31 +10001457 */
Al Viroe3c13922016-03-06 14:03:27 -05001458static struct dentry *lookup_dcache(const struct qstr *name,
1459 struct dentry *dir,
Al Viro6c51e512016-03-05 20:09:32 -05001460 unsigned int flags)
Nick Pigginbaa03892010-08-18 04:37:31 +10001461{
Al Viroa89f8332017-01-09 22:25:28 -05001462 struct dentry *dentry = d_lookup(dir, name);
Miklos Szeredibad61182012-03-26 12:54:24 +02001463 if (dentry) {
Al Viroa89f8332017-01-09 22:25:28 -05001464 int error = d_revalidate(dentry, flags);
1465 if (unlikely(error <= 0)) {
1466 if (!error)
1467 d_invalidate(dentry);
1468 dput(dentry);
1469 return ERR_PTR(error);
Miklos Szeredibad61182012-03-26 12:54:24 +02001470 }
1471 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001472 return dentry;
1473}
1474
1475/*
J. Bruce Fields13a2c3b2013-10-23 16:09:16 -04001476 * Call i_op->lookup on the dentry. The dentry must be negative and
1477 * unhashed.
Miklos Szeredibad61182012-03-26 12:54:24 +02001478 *
1479 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001480 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001481static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
Al Viro72bd8662012-06-10 17:17:17 -04001482 unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001483{
Josef Bacik44396f42011-05-31 11:58:49 -04001484 struct dentry *old;
1485
1486 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001487 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001488 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001489 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001490 }
Josef Bacik44396f42011-05-31 11:58:49 -04001491
Al Viro72bd8662012-06-10 17:17:17 -04001492 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001493 if (unlikely(old)) {
1494 dput(dentry);
1495 dentry = old;
1496 }
1497 return dentry;
1498}
1499
Al Viroe3c13922016-03-06 14:03:27 -05001500static struct dentry *__lookup_hash(const struct qstr *name,
Al Viro72bd8662012-06-10 17:17:17 -04001501 struct dentry *base, unsigned int flags)
Al Viroa3255542012-03-30 14:41:51 -04001502{
Al Viro6c51e512016-03-05 20:09:32 -05001503 struct dentry *dentry = lookup_dcache(name, base, flags);
Al Viroa3255542012-03-30 14:41:51 -04001504
Al Viro6c51e512016-03-05 20:09:32 -05001505 if (dentry)
Miklos Szeredibad61182012-03-26 12:54:24 +02001506 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001507
Al Viro6c51e512016-03-05 20:09:32 -05001508 dentry = d_alloc(base, name);
1509 if (unlikely(!dentry))
1510 return ERR_PTR(-ENOMEM);
1511
Al Viro72bd8662012-06-10 17:17:17 -04001512 return lookup_real(base->d_inode, dentry, flags);
Al Viroa3255542012-03-30 14:41:51 -04001513}
1514
Al Viroe97cdc82013-01-24 18:16:00 -05001515static int lookup_fast(struct nameidata *nd,
Al Viro254cf582015-05-05 09:40:46 -04001516 struct path *path, struct inode **inode,
1517 unsigned *seqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
Jan Blunck4ac91372008-02-14 19:34:32 -08001519 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001520 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001521 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001522 int err;
1523
Al Viro3cac2602009-08-13 18:27:43 +04001524 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001525 * Rename seqlock is not required here because in the off chance
Al Viro5d0f49c2016-03-05 21:32:53 -05001526 * of a false negative due to a concurrent rename, the caller is
1527 * going to fall back to non-racy lookup.
Nick Pigginb04f7842010-08-18 04:37:34 +10001528 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001529 if (nd->flags & LOOKUP_RCU) {
1530 unsigned seq;
Al Viro766c4cb2015-05-07 19:24:57 -04001531 bool negative;
Linus Torvaldsda53be12013-05-21 15:22:44 -07001532 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
Al Viro5d0f49c2016-03-05 21:32:53 -05001533 if (unlikely(!dentry)) {
Al Viro4675ac32017-01-09 22:29:15 -05001534 if (unlazy_walk(nd))
Al Viro5d0f49c2016-03-05 21:32:53 -05001535 return -ECHILD;
Al Viroe9742b52016-03-05 22:04:59 -05001536 return 0;
Al Viro5d0f49c2016-03-05 21:32:53 -05001537 }
Al Viro5a18fff2011-03-11 04:44:53 -05001538
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001539 /*
1540 * This sequence count validates that the inode matches
1541 * the dentry name information from lookup.
1542 */
David Howells63afdfc2015-05-06 15:59:00 +01001543 *inode = d_backing_inode(dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04001544 negative = d_is_negative(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001545 if (unlikely(read_seqcount_retry(&dentry->d_seq, seq)))
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001546 return -ECHILD;
1547
1548 /*
1549 * This sequence count validates that the parent had no
1550 * changes while we did the lookup of the dentry above.
1551 *
1552 * The memory barrier in read_seqcount_begin of child is
1553 * enough, we can use __read_seqcount_retry here.
1554 */
Al Viro5d0f49c2016-03-05 21:32:53 -05001555 if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq)))
Nick Piggin31e6b012011-01-07 17:49:52 +11001556 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001557
Al Viro254cf582015-05-05 09:40:46 -04001558 *seqp = seq;
Al Viroa89f8332017-01-09 22:25:28 -05001559 status = d_revalidate(dentry, nd->flags);
Al Viro209a7fb2017-01-09 01:35:39 -05001560 if (likely(status > 0)) {
Al Viro5d0f49c2016-03-05 21:32:53 -05001561 /*
1562 * Note: do negative dentry check after revalidation in
1563 * case that drops it.
1564 */
1565 if (unlikely(negative))
1566 return -ENOENT;
1567 path->mnt = mnt;
1568 path->dentry = dentry;
1569 if (likely(__follow_mount_rcu(nd, path, inode, seqp)))
Al Viroe9742b52016-03-05 22:04:59 -05001570 return 1;
Al Viro24643082011-02-15 01:26:22 -05001571 }
Al Viro4675ac32017-01-09 22:29:15 -05001572 if (unlazy_child(nd, dentry, seq))
Al Viro209a7fb2017-01-09 01:35:39 -05001573 return -ECHILD;
1574 if (unlikely(status == -ECHILD))
1575 /* we'd been told to redo it in non-rcu mode */
1576 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001577 } else {
Al Viroe97cdc82013-01-24 18:16:00 -05001578 dentry = __d_lookup(parent, &nd->last);
Al Viro5d0f49c2016-03-05 21:32:53 -05001579 if (unlikely(!dentry))
Al Viroe9742b52016-03-05 22:04:59 -05001580 return 0;
Al Viroa89f8332017-01-09 22:25:28 -05001581 status = d_revalidate(dentry, nd->flags);
Nick Piggin31e6b012011-01-07 17:49:52 +11001582 }
Al Viro5a18fff2011-03-11 04:44:53 -05001583 if (unlikely(status <= 0)) {
Al Viroe9742b52016-03-05 22:04:59 -05001584 if (!status)
Al Viro5d0f49c2016-03-05 21:32:53 -05001585 d_invalidate(dentry);
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001586 dput(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001587 return status;
Al Viro5a18fff2011-03-11 04:44:53 -05001588 }
Al Viro766c4cb2015-05-07 19:24:57 -04001589 if (unlikely(d_is_negative(dentry))) {
1590 dput(dentry);
1591 return -ENOENT;
1592 }
Al Viro5d0f49c2016-03-05 21:32:53 -05001593
David Howells9875cf82011-01-14 18:45:21 +00001594 path->mnt = mnt;
1595 path->dentry = dentry;
NeilBrown756daf22015-03-23 13:37:38 +11001596 err = follow_managed(path, nd);
Al Viroe9742b52016-03-05 22:04:59 -05001597 if (likely(err > 0))
David Howells63afdfc2015-05-06 15:59:00 +01001598 *inode = d_backing_inode(path->dentry);
Al Viro84027522015-04-22 10:30:08 -04001599 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001600}
1601
1602/* Fast lookup failed, do it the slow way */
Al Viroe3c13922016-03-06 14:03:27 -05001603static struct dentry *lookup_slow(const struct qstr *name,
1604 struct dentry *dir,
1605 unsigned int flags)
Miklos Szeredi697f5142012-05-21 17:30:05 +02001606{
Al Viro94bdd652016-04-15 02:42:04 -04001607 struct dentry *dentry = ERR_PTR(-ENOENT), *old;
Al Viro19363862016-04-14 19:33:34 -04001608 struct inode *inode = dir->d_inode;
Al Virod9171b92016-04-15 03:33:13 -04001609 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Al Viro19363862016-04-14 19:33:34 -04001610
Al Viro9902af72016-04-15 15:08:36 -04001611 inode_lock_shared(inode);
Al Viro19363862016-04-14 19:33:34 -04001612 /* Don't go there if it's already dead */
Al Viro94bdd652016-04-15 02:42:04 -04001613 if (unlikely(IS_DEADDIR(inode)))
1614 goto out;
1615again:
Al Virod9171b92016-04-15 03:33:13 -04001616 dentry = d_alloc_parallel(dir, name, &wq);
Al Viro94bdd652016-04-15 02:42:04 -04001617 if (IS_ERR(dentry))
1618 goto out;
1619 if (unlikely(!d_in_lookup(dentry))) {
Al Viroa89f8332017-01-09 22:25:28 -05001620 if (!(flags & LOOKUP_NO_REVAL)) {
Al Viro949a8522016-03-06 14:20:52 -05001621 int error = d_revalidate(dentry, flags);
1622 if (unlikely(error <= 0)) {
Al Viro94bdd652016-04-15 02:42:04 -04001623 if (!error) {
Al Viro949a8522016-03-06 14:20:52 -05001624 d_invalidate(dentry);
Al Viro94bdd652016-04-15 02:42:04 -04001625 dput(dentry);
1626 goto again;
1627 }
Al Viro949a8522016-03-06 14:20:52 -05001628 dput(dentry);
1629 dentry = ERR_PTR(error);
1630 }
1631 }
Al Viro94bdd652016-04-15 02:42:04 -04001632 } else {
1633 old = inode->i_op->lookup(inode, dentry, flags);
1634 d_lookup_done(dentry);
1635 if (unlikely(old)) {
1636 dput(dentry);
1637 dentry = old;
Al Viro949a8522016-03-06 14:20:52 -05001638 }
1639 }
Al Viro94bdd652016-04-15 02:42:04 -04001640out:
Al Viro9902af72016-04-15 15:08:36 -04001641 inode_unlock_shared(inode);
Al Viroe3c13922016-03-06 14:03:27 -05001642 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643}
1644
Al Viro52094c82011-02-21 21:34:47 -05001645static inline int may_lookup(struct nameidata *nd)
1646{
1647 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001648 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001649 if (err != -ECHILD)
1650 return err;
Al Viro4675ac32017-01-09 22:29:15 -05001651 if (unlazy_walk(nd))
Al Viro52094c82011-02-21 21:34:47 -05001652 return -ECHILD;
1653 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001654 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001655}
1656
Al Viro9856fa12011-03-04 14:22:06 -05001657static inline int handle_dots(struct nameidata *nd, int type)
1658{
1659 if (type == LAST_DOTDOT) {
Al Viro9e6697e2015-12-05 20:07:21 -05001660 if (!nd->root.mnt)
1661 set_root(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001662 if (nd->flags & LOOKUP_RCU) {
Al Viro70291ae2015-05-04 07:53:00 -04001663 return follow_dotdot_rcu(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001664 } else
Eric W. Biederman397d4252015-08-15 20:27:13 -05001665 return follow_dotdot(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001666 }
1667 return 0;
1668}
1669
Al Viro181548c2015-05-07 19:54:34 -04001670static int pick_link(struct nameidata *nd, struct path *link,
1671 struct inode *inode, unsigned seq)
Al Virod63ff282015-05-04 18:13:23 -04001672{
Al Viro626de992015-05-04 18:26:59 -04001673 int error;
Al Viro1cf26652015-05-06 16:01:56 -04001674 struct saved *last;
NeilBrown756daf22015-03-23 13:37:38 +11001675 if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) {
Al Viro626de992015-05-04 18:26:59 -04001676 path_to_nameidata(link, nd);
1677 return -ELOOP;
1678 }
Al Virobc40aee2015-05-09 13:04:24 -04001679 if (!(nd->flags & LOOKUP_RCU)) {
Al Viro79733872015-05-09 12:55:43 -04001680 if (link->mnt == nd->path.mnt)
1681 mntget(link->mnt);
Al Virod63ff282015-05-04 18:13:23 -04001682 }
Al Viro626de992015-05-04 18:26:59 -04001683 error = nd_alloc_stack(nd);
1684 if (unlikely(error)) {
Al Virobc40aee2015-05-09 13:04:24 -04001685 if (error == -ECHILD) {
Al Viroad1633a2017-01-08 22:35:31 -05001686 if (unlikely(!legitimize_path(nd, link, seq))) {
1687 drop_links(nd);
1688 nd->depth = 0;
1689 nd->flags &= ~LOOKUP_RCU;
1690 nd->path.mnt = NULL;
1691 nd->path.dentry = NULL;
1692 if (!(nd->flags & LOOKUP_ROOT))
1693 nd->root.mnt = NULL;
1694 rcu_read_unlock();
Al Viro4675ac32017-01-09 22:29:15 -05001695 } else if (likely(unlazy_walk(nd)) == 0)
Al Viroad1633a2017-01-08 22:35:31 -05001696 error = nd_alloc_stack(nd);
Al Virobc40aee2015-05-09 13:04:24 -04001697 }
1698 if (error) {
1699 path_put(link);
1700 return error;
1701 }
Al Viro626de992015-05-04 18:26:59 -04001702 }
1703
Al Viroab104922015-05-10 11:50:01 -04001704 last = nd->stack + nd->depth++;
Al Viro1cf26652015-05-06 16:01:56 -04001705 last->link = *link;
Al Virofceef392015-12-29 15:58:39 -05001706 clear_delayed_call(&last->done);
1707 nd->link_inode = inode;
Al Viro0450b2d2015-05-08 13:23:53 -04001708 last->seq = seq;
Al Virod63ff282015-05-04 18:13:23 -04001709 return 1;
1710}
1711
Al Viro8f64fb12016-11-14 01:50:26 -05001712enum {WALK_FOLLOW = 1, WALK_MORE = 2};
Al Viro31d66bc2016-11-14 01:43:34 -05001713
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001714/*
1715 * Do we need to follow links? We _really_ want to be able
1716 * to do this check without having to look at inode->i_op,
1717 * so we keep a cache of "no, this doesn't need follow_link"
1718 * for the common case.
1719 */
Al Viro8f64fb12016-11-14 01:50:26 -05001720static inline int step_into(struct nameidata *nd, struct path *path,
1721 int flags, struct inode *inode, unsigned seq)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001722{
Al Viro31d66bc2016-11-14 01:43:34 -05001723 if (!(flags & WALK_MORE) && nd->depth)
1724 put_link(nd);
Al Viro8f64fb12016-11-14 01:50:26 -05001725 if (likely(!d_is_symlink(path->dentry)) ||
1726 !(flags & WALK_FOLLOW || nd->flags & LOOKUP_FOLLOW)) {
1727 /* not a symlink or should not follow */
1728 path_to_nameidata(path, nd);
1729 nd->inode = inode;
1730 nd->seq = seq;
Al Virod63ff282015-05-04 18:13:23 -04001731 return 0;
Al Viro8f64fb12016-11-14 01:50:26 -05001732 }
Al Viroa7f77542016-02-27 19:31:01 -05001733 /* make sure that d_is_symlink above matches inode */
1734 if (nd->flags & LOOKUP_RCU) {
Al Viro8f64fb12016-11-14 01:50:26 -05001735 if (read_seqcount_retry(&path->dentry->d_seq, seq))
Al Viroa7f77542016-02-27 19:31:01 -05001736 return -ECHILD;
1737 }
Al Viro8f64fb12016-11-14 01:50:26 -05001738 return pick_link(nd, path, inode, seq);
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001739}
1740
Al Viro4693a542015-05-04 17:47:11 -04001741static int walk_component(struct nameidata *nd, int flags)
Al Viroce57dfc2011-03-13 19:58:58 -04001742{
Al Virocaa856342015-04-22 17:52:47 -04001743 struct path path;
Al Viroce57dfc2011-03-13 19:58:58 -04001744 struct inode *inode;
Al Viro254cf582015-05-05 09:40:46 -04001745 unsigned seq;
Al Viroce57dfc2011-03-13 19:58:58 -04001746 int err;
1747 /*
1748 * "." and ".." are special - ".." especially so because it has
1749 * to be able to know about the current root directory and
1750 * parent relationships.
1751 */
Al Viro4693a542015-05-04 17:47:11 -04001752 if (unlikely(nd->last_type != LAST_NORM)) {
1753 err = handle_dots(nd, nd->last_type);
Al Viro1c4ff1a2016-11-14 01:39:36 -05001754 if (!(flags & WALK_MORE) && nd->depth)
Al Viro4693a542015-05-04 17:47:11 -04001755 put_link(nd);
1756 return err;
1757 }
Al Viro254cf582015-05-05 09:40:46 -04001758 err = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05001759 if (unlikely(err <= 0)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001760 if (err < 0)
Al Virof0a9ba72015-05-04 07:59:30 -04001761 return err;
Al Viroe3c13922016-03-06 14:03:27 -05001762 path.dentry = lookup_slow(&nd->last, nd->path.dentry,
1763 nd->flags);
1764 if (IS_ERR(path.dentry))
1765 return PTR_ERR(path.dentry);
Al Viro7500c382016-03-31 00:23:05 -04001766
Al Viroe3c13922016-03-06 14:03:27 -05001767 path.mnt = nd->path.mnt;
1768 err = follow_managed(&path, nd);
1769 if (unlikely(err < 0))
Al Virof0a9ba72015-05-04 07:59:30 -04001770 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001771
Al Viro7500c382016-03-31 00:23:05 -04001772 if (unlikely(d_is_negative(path.dentry))) {
1773 path_to_nameidata(&path, nd);
1774 return -ENOENT;
1775 }
1776
Al Viro254cf582015-05-05 09:40:46 -04001777 seq = 0; /* we are already out of RCU mode */
Al Virod4565642016-02-27 19:23:16 -05001778 inode = d_backing_inode(path.dentry);
Al Viroce57dfc2011-03-13 19:58:58 -04001779 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001780
Al Viro8f64fb12016-11-14 01:50:26 -05001781 return step_into(nd, &path, flags, inode, seq);
Al Viroce57dfc2011-03-13 19:58:58 -04001782}
1783
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784/*
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001785 * We can do the critical dentry name comparison and hashing
1786 * operations one word at a time, but we are limited to:
1787 *
1788 * - Architectures with fast unaligned word accesses. We could
1789 * do a "get_unaligned()" if this helps and is sufficiently
1790 * fast.
1791 *
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001792 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1793 * do not trap on the (extremely unlikely) case of a page
1794 * crossing operation.
1795 *
1796 * - Furthermore, we need an efficient 64-bit compile for the
1797 * 64-bit case in order to generate the "number of bytes in
1798 * the final mask". Again, that could be replaced with a
1799 * efficient population count instruction or similar.
1800 */
1801#ifdef CONFIG_DCACHE_WORD_ACCESS
1802
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001803#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001804
George Spelvin468a9422016-05-26 22:11:51 -04001805#ifdef HASH_MIX
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001806
George Spelvin468a9422016-05-26 22:11:51 -04001807/* Architecture provides HASH_MIX and fold_hash() in <asm/hash.h> */
1808
1809#elif defined(CONFIG_64BIT)
George Spelvin2a18da7a2016-05-23 07:43:58 -04001810/*
1811 * Register pressure in the mixing function is an issue, particularly
1812 * on 32-bit x86, but almost any function requires one state value and
1813 * one temporary. Instead, use a function designed for two state values
1814 * and no temporaries.
1815 *
1816 * This function cannot create a collision in only two iterations, so
1817 * we have two iterations to achieve avalanche. In those two iterations,
1818 * we have six layers of mixing, which is enough to spread one bit's
1819 * influence out to 2^6 = 64 state bits.
1820 *
1821 * Rotate constants are scored by considering either 64 one-bit input
1822 * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the
1823 * probability of that delta causing a change to each of the 128 output
1824 * bits, using a sample of random initial states.
1825 *
1826 * The Shannon entropy of the computed probabilities is then summed
1827 * to produce a score. Ideally, any input change has a 50% chance of
1828 * toggling any given output bit.
1829 *
1830 * Mixing scores (in bits) for (12,45):
1831 * Input delta: 1-bit 2-bit
1832 * 1 round: 713.3 42542.6
1833 * 2 rounds: 2753.7 140389.8
1834 * 3 rounds: 5954.1 233458.2
1835 * 4 rounds: 7862.6 256672.2
1836 * Perfect: 8192 258048
1837 * (64*128) (64*63/2 * 128)
1838 */
1839#define HASH_MIX(x, y, a) \
1840 ( x ^= (a), \
1841 y ^= x, x = rol64(x,12),\
1842 x += y, y = rol64(y,45),\
1843 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001844
George Spelvin0fed3ac2016-05-02 06:31:01 -04001845/*
George Spelvin2a18da7a2016-05-23 07:43:58 -04001846 * Fold two longs into one 32-bit hash value. This must be fast, but
1847 * latency isn't quite as critical, as there is a fair bit of additional
1848 * work done before the hash value is used.
George Spelvin0fed3ac2016-05-02 06:31:01 -04001849 */
George Spelvin2a18da7a2016-05-23 07:43:58 -04001850static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001851{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001852 y ^= x * GOLDEN_RATIO_64;
1853 y *= GOLDEN_RATIO_64;
1854 return y >> 32;
George Spelvin0fed3ac2016-05-02 06:31:01 -04001855}
1856
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001857#else /* 32-bit case */
1858
George Spelvin2a18da7a2016-05-23 07:43:58 -04001859/*
1860 * Mixing scores (in bits) for (7,20):
1861 * Input delta: 1-bit 2-bit
1862 * 1 round: 330.3 9201.6
1863 * 2 rounds: 1246.4 25475.4
1864 * 3 rounds: 1907.1 31295.1
1865 * 4 rounds: 2042.3 31718.6
1866 * Perfect: 2048 31744
1867 * (32*64) (32*31/2 * 64)
1868 */
1869#define HASH_MIX(x, y, a) \
1870 ( x ^= (a), \
1871 y ^= x, x = rol32(x, 7),\
1872 x += y, y = rol32(y,20),\
1873 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001874
George Spelvin2a18da7a2016-05-23 07:43:58 -04001875static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001876{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001877 /* Use arch-optimized multiply if one exists */
1878 return __hash_32(y ^ __hash_32(x));
George Spelvin0fed3ac2016-05-02 06:31:01 -04001879}
1880
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001881#endif
1882
George Spelvin2a18da7a2016-05-23 07:43:58 -04001883/*
1884 * Return the hash of a string of known length. This is carfully
1885 * designed to match hash_name(), which is the more critical function.
1886 * In particular, we must end by hashing a final word containing 0..7
1887 * payload bytes, to match the way that hash_name() iterates until it
1888 * finds the delimiter after the name.
1889 */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001890unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001891{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001892 unsigned long a, x = 0, y = (unsigned long)salt;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001893
1894 for (;;) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001895 if (!len)
1896 goto done;
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001897 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001898 if (len < sizeof(unsigned long))
1899 break;
George Spelvin2a18da7a2016-05-23 07:43:58 -04001900 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001901 name += sizeof(unsigned long);
1902 len -= sizeof(unsigned long);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001903 }
George Spelvin2a18da7a2016-05-23 07:43:58 -04001904 x ^= a & bytemask_from_count(len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001905done:
George Spelvin2a18da7a2016-05-23 07:43:58 -04001906 return fold_hash(x, y);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001907}
1908EXPORT_SYMBOL(full_name_hash);
1909
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001910/* Return the "hash_len" (hash and length) of a null-terminated string */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001911u64 hashlen_string(const void *salt, const char *name)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001912{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001913 unsigned long a = 0, x = 0, y = (unsigned long)salt;
1914 unsigned long adata, mask, len;
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001915 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1916
Linus Torvalds8387ff22016-06-10 07:51:30 -07001917 len = 0;
1918 goto inside;
1919
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001920 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001921 HASH_MIX(x, y, a);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001922 len += sizeof(unsigned long);
Linus Torvalds8387ff22016-06-10 07:51:30 -07001923inside:
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001924 a = load_unaligned_zeropad(name+len);
1925 } while (!has_zero(a, &adata, &constants));
1926
1927 adata = prep_zero_mask(a, adata, &constants);
1928 mask = create_zero_mask(adata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04001929 x ^= a & zero_bytemask(mask);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001930
George Spelvin2a18da7a2016-05-23 07:43:58 -04001931 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001932}
1933EXPORT_SYMBOL(hashlen_string);
1934
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001935/*
1936 * Calculate the length and hash of the path component, and
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001937 * return the "hash_len" as the result.
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001938 */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001939static inline u64 hash_name(const void *salt, const char *name)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001940{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001941 unsigned long a = 0, b, x = 0, y = (unsigned long)salt;
1942 unsigned long adata, bdata, mask, len;
Linus Torvalds36126f82012-05-26 10:43:17 -07001943 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001944
Linus Torvalds8387ff22016-06-10 07:51:30 -07001945 len = 0;
1946 goto inside;
1947
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001948 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001949 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001950 len += sizeof(unsigned long);
Linus Torvalds8387ff22016-06-10 07:51:30 -07001951inside:
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001952 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07001953 b = a ^ REPEAT_BYTE('/');
1954 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001955
Linus Torvalds36126f82012-05-26 10:43:17 -07001956 adata = prep_zero_mask(a, adata, &constants);
1957 bdata = prep_zero_mask(b, bdata, &constants);
Linus Torvalds36126f82012-05-26 10:43:17 -07001958 mask = create_zero_mask(adata | bdata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04001959 x ^= a & zero_bytemask(mask);
Linus Torvalds36126f82012-05-26 10:43:17 -07001960
George Spelvin2a18da7a2016-05-23 07:43:58 -04001961 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001962}
1963
George Spelvin2a18da7a2016-05-23 07:43:58 -04001964#else /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001965
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001966/* Return the hash of a string of known length */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001967unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
Linus Torvalds0145acc2012-03-02 14:32:59 -08001968{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001969 unsigned long hash = init_name_hash(salt);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001970 while (len--)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001971 hash = partial_name_hash((unsigned char)*name++, hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001972 return end_name_hash(hash);
1973}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001974EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001975
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001976/* Return the "hash_len" (hash and length) of a null-terminated string */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001977u64 hashlen_string(const void *salt, const char *name)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001978{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001979 unsigned long hash = init_name_hash(salt);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001980 unsigned long len = 0, c;
1981
1982 c = (unsigned char)*name;
George Spelvine0ab7af2016-05-29 08:05:56 -04001983 while (c) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001984 len++;
1985 hash = partial_name_hash(c, hash);
1986 c = (unsigned char)name[len];
George Spelvine0ab7af2016-05-29 08:05:56 -04001987 }
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001988 return hashlen_create(end_name_hash(hash), len);
1989}
George Spelvinf2a031b2016-05-29 01:26:41 -04001990EXPORT_SYMBOL(hashlen_string);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001991
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001992/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001993 * We know there's a real path component here of at least
1994 * one character.
1995 */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001996static inline u64 hash_name(const void *salt, const char *name)
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001997{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001998 unsigned long hash = init_name_hash(salt);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001999 unsigned long len = 0, c;
2000
2001 c = (unsigned char)*name;
2002 do {
2003 len++;
2004 hash = partial_name_hash(c, hash);
2005 c = (unsigned char)name[len];
2006 } while (c && c != '/');
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002007 return hashlen_create(end_name_hash(hash), len);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002008}
2009
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002010#endif
2011
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002012/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01002014 * This is the basic name resolution function, turning a pathname into
2015 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01002017 * Returns 0 and nd will have valid dentry and mnt on success.
2018 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 */
Al Viro6de88d72009-08-09 01:41:57 +04002020static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 int err;
Al Viro32cd7462015-04-18 20:30:49 -04002023
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 while (*name=='/')
2025 name++;
2026 if (!*name)
Al Viro9e18f102015-04-18 20:44:34 -04002027 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 /* At this point we know we have a real path component. */
2030 for(;;) {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002031 u64 hash_len;
Al Virofe479a52011-02-22 15:10:03 -05002032 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Al Viro52094c82011-02-21 21:34:47 -05002034 err = may_lookup(nd);
George Spelvin2a18da7a2016-05-23 07:43:58 -04002035 if (err)
Al Viro3595e232015-05-09 16:54:45 -04002036 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037
Linus Torvalds8387ff22016-06-10 07:51:30 -07002038 hash_len = hash_name(nd->path.dentry, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Al Virofe479a52011-02-22 15:10:03 -05002040 type = LAST_NORM;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002041 if (name[0] == '.') switch (hashlen_len(hash_len)) {
Al Virofe479a52011-02-22 15:10:03 -05002042 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002043 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05002044 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05002045 nd->flags |= LOOKUP_JUMPED;
2046 }
Al Virofe479a52011-02-22 15:10:03 -05002047 break;
2048 case 1:
2049 type = LAST_DOT;
2050 }
Al Viro5a202bc2011-03-08 14:17:44 -05002051 if (likely(type == LAST_NORM)) {
2052 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05002053 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05002054 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
James Hogana060dc52014-09-16 13:07:35 +01002055 struct qstr this = { { .hash_len = hash_len }, .name = name };
Linus Torvaldsda53be12013-05-21 15:22:44 -07002056 err = parent->d_op->d_hash(parent, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002057 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002058 return err;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002059 hash_len = this.hash_len;
2060 name = this.name;
Al Viro5a202bc2011-03-08 14:17:44 -05002061 }
2062 }
Al Virofe479a52011-02-22 15:10:03 -05002063
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002064 nd->last.hash_len = hash_len;
2065 nd->last.name = name;
Al Viro5f4a6a62013-01-24 18:04:22 -05002066 nd->last_type = type;
2067
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002068 name += hashlen_len(hash_len);
2069 if (!*name)
Al Virobdf6cbf2015-04-18 20:21:40 -04002070 goto OK;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002071 /*
2072 * If it wasn't NUL, we know it was '/'. Skip that
2073 * slash, and continue until no more slashes.
2074 */
2075 do {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002076 name++;
2077 } while (unlikely(*name == '/'));
Al Viro8620c232015-05-04 08:58:35 -04002078 if (unlikely(!*name)) {
2079OK:
Al Viro368ee9b2015-05-08 17:19:59 -04002080 /* pathname body, done */
Al Viro8620c232015-05-04 08:58:35 -04002081 if (!nd->depth)
2082 return 0;
2083 name = nd->stack[nd->depth - 1].name;
Al Viro368ee9b2015-05-08 17:19:59 -04002084 /* trailing symlink, done */
Al Viro8620c232015-05-04 08:58:35 -04002085 if (!name)
2086 return 0;
2087 /* last component of nested symlink */
Al Viro8f64fb12016-11-14 01:50:26 -05002088 err = walk_component(nd, WALK_FOLLOW);
Al Viro1c4ff1a2016-11-14 01:39:36 -05002089 } else {
2090 /* not the last component */
Al Viro8f64fb12016-11-14 01:50:26 -05002091 err = walk_component(nd, WALK_FOLLOW | WALK_MORE);
Al Viro8620c232015-05-04 08:58:35 -04002092 }
Al Viroce57dfc2011-03-13 19:58:58 -04002093 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002094 return err;
Al Virofe479a52011-02-22 15:10:03 -05002095
Al Viroce57dfc2011-03-13 19:58:58 -04002096 if (err) {
Al Viro626de992015-05-04 18:26:59 -04002097 const char *s = get_link(nd);
Al Viro5a460272015-04-17 23:44:45 -04002098
Viresh Kumara1c83682015-08-12 15:59:44 +05302099 if (IS_ERR(s))
Al Viro3595e232015-05-09 16:54:45 -04002100 return PTR_ERR(s);
Al Virod40bcc02015-04-18 20:03:03 -04002101 err = 0;
2102 if (unlikely(!s)) {
2103 /* jumped */
Al Virob9ff4422015-05-02 20:19:23 -04002104 put_link(nd);
Al Virod40bcc02015-04-18 20:03:03 -04002105 } else {
Al Virofab51e82015-05-10 11:01:00 -04002106 nd->stack[nd->depth - 1].name = name;
2107 name = s;
2108 continue;
Al Virod40bcc02015-04-18 20:03:03 -04002109 }
Nick Piggin31e6b012011-01-07 17:49:52 +11002110 }
Al Viro97242f92015-08-01 19:59:28 -04002111 if (unlikely(!d_can_lookup(nd->path.dentry))) {
2112 if (nd->flags & LOOKUP_RCU) {
Al Viro4675ac32017-01-09 22:29:15 -05002113 if (unlazy_walk(nd))
Al Viro97242f92015-08-01 19:59:28 -04002114 return -ECHILD;
2115 }
Al Viro3595e232015-05-09 16:54:45 -04002116 return -ENOTDIR;
Al Viro97242f92015-08-01 19:59:28 -04002117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119}
2120
Al Viroc8a53ee2015-05-12 18:43:07 -04002121static const char *path_init(struct nameidata *nd, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122{
Al Viroc8a53ee2015-05-12 18:43:07 -04002123 const char *s = nd->name->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Linus Torvaldsc0eb0272017-04-02 17:10:08 -07002125 if (!*s)
2126 flags &= ~LOOKUP_RCU;
2127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro980f3ea2014-11-20 14:20:24 -05002129 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05002131 if (flags & LOOKUP_ROOT) {
David Howellsb18825a2013-09-12 19:22:53 +01002132 struct dentry *root = nd->root.dentry;
2133 struct inode *inode = root->d_inode;
Al Viro93893862017-04-15 17:29:14 -04002134 if (*s && unlikely(!d_can_lookup(root)))
2135 return ERR_PTR(-ENOTDIR);
Al Viro5b6ca022011-03-09 23:04:47 -05002136 nd->path = nd->root;
2137 nd->inode = inode;
2138 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002139 rcu_read_lock();
Al Viro5b6ca022011-03-09 23:04:47 -05002140 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro8f47a0162015-05-09 19:02:01 -04002141 nd->root_seq = nd->seq;
Al Viro48a066e2013-09-29 22:06:07 -04002142 nd->m_seq = read_seqbegin(&mount_lock);
Al Viro5b6ca022011-03-09 23:04:47 -05002143 } else {
2144 path_get(&nd->path);
2145 }
Al Viro368ee9b2015-05-08 17:19:59 -04002146 return s;
Al Viro5b6ca022011-03-09 23:04:47 -05002147 }
2148
Al Viro2a737872009-04-07 11:49:53 -04002149 nd->root.mnt = NULL;
Al Viro248fb5b2015-12-05 20:51:58 -05002150 nd->path.mnt = NULL;
2151 nd->path.dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152
Al Viro48a066e2013-09-29 22:06:07 -04002153 nd->m_seq = read_seqbegin(&mount_lock);
Al Virofd2f7cb2015-02-22 20:07:13 -05002154 if (*s == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05002155 if (flags & LOOKUP_RCU)
Al Viro8b61e742013-11-08 12:45:01 -05002156 rcu_read_lock();
Al Viro9e6697e2015-12-05 20:07:21 -05002157 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05002158 if (likely(!nd_jump_root(nd)))
Al Viroef55d912015-12-05 20:25:06 -05002159 return s;
Al Viro248fb5b2015-12-05 20:51:58 -05002160 nd->root.mnt = NULL;
Al Viroef55d912015-12-05 20:25:06 -05002161 rcu_read_unlock();
2162 return ERR_PTR(-ECHILD);
Al Viroc8a53ee2015-05-12 18:43:07 -04002163 } else if (nd->dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05002164 if (flags & LOOKUP_RCU) {
2165 struct fs_struct *fs = current->fs;
2166 unsigned seq;
2167
Al Viro8b61e742013-11-08 12:45:01 -05002168 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05002169
2170 do {
2171 seq = read_seqcount_begin(&fs->seq);
2172 nd->path = fs->pwd;
Al Viroef55d912015-12-05 20:25:06 -05002173 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002174 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
2175 } while (read_seqcount_retry(&fs->seq, seq));
2176 } else {
2177 get_fs_pwd(current->fs, &nd->path);
Al Viroef55d912015-12-05 20:25:06 -05002178 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002179 }
Al Viroef55d912015-12-05 20:25:06 -05002180 return s;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002181 } else {
Jeff Layton582aa642012-12-11 08:56:16 -05002182 /* Caller must check execute permissions on the starting path component */
Al Viroc8a53ee2015-05-12 18:43:07 -04002183 struct fd f = fdget_raw(nd->dfd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002184 struct dentry *dentry;
2185
Al Viro2903ff02012-08-28 12:52:22 -04002186 if (!f.file)
Al Viro368ee9b2015-05-08 17:19:59 -04002187 return ERR_PTR(-EBADF);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002188
Al Viro2903ff02012-08-28 12:52:22 -04002189 dentry = f.file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002190
Al Virofd2f7cb2015-02-22 20:07:13 -05002191 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002192 if (!d_can_lookup(dentry)) {
Al Viro2903ff02012-08-28 12:52:22 -04002193 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002194 return ERR_PTR(-ENOTDIR);
Al Viro2903ff02012-08-28 12:52:22 -04002195 }
Al Virof52e0c12011-03-14 18:56:51 -04002196 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002197
Al Viro2903ff02012-08-28 12:52:22 -04002198 nd->path = f.file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05002199 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002200 rcu_read_lock();
Al Viro34a26b92015-05-11 08:05:05 -04002201 nd->inode = nd->path.dentry->d_inode;
2202 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viroe41f7d42011-02-22 14:02:58 -05002203 } else {
Al Viro2903ff02012-08-28 12:52:22 -04002204 path_get(&nd->path);
Al Viro34a26b92015-05-11 08:05:05 -04002205 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002206 }
Al Viro34a26b92015-05-11 08:05:05 -04002207 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002208 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 }
Al Viro9b4a9b12009-04-07 11:44:16 -04002210}
2211
Al Viro3bdba282015-05-08 17:37:07 -04002212static const char *trailing_symlink(struct nameidata *nd)
Al Viro95fa25d2015-04-22 13:46:57 -04002213{
2214 const char *s;
Al Virofec2fa22015-05-06 15:58:18 -04002215 int error = may_follow_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002216 if (unlikely(error))
Al Viro3bdba282015-05-08 17:37:07 -04002217 return ERR_PTR(error);
Al Viro95fa25d2015-04-22 13:46:57 -04002218 nd->flags |= LOOKUP_PARENT;
Al Virofab51e82015-05-10 11:01:00 -04002219 nd->stack[0].name = NULL;
Al Viro3b2e7f72015-04-19 00:53:50 -04002220 s = get_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002221 return s ? s : "";
Al Viro95fa25d2015-04-22 13:46:57 -04002222}
2223
Al Virocaa856342015-04-22 17:52:47 -04002224static inline int lookup_last(struct nameidata *nd)
Al Virobd92d7f2011-03-14 19:54:59 -04002225{
2226 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2227 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2228
2229 nd->flags &= ~LOOKUP_PARENT;
Al Viro1c4ff1a2016-11-14 01:39:36 -05002230 return walk_component(nd, 0);
Al Virobd92d7f2011-03-14 19:54:59 -04002231}
2232
Al Viro4f757f32017-04-15 17:31:22 -04002233static int handle_lookup_down(struct nameidata *nd)
2234{
2235 struct path path = nd->path;
2236 struct inode *inode = nd->inode;
2237 unsigned seq = nd->seq;
2238 int err;
2239
2240 if (nd->flags & LOOKUP_RCU) {
2241 /*
2242 * don't bother with unlazy_walk on failure - we are
2243 * at the very beginning of walk, so we lose nothing
2244 * if we simply redo everything in non-RCU mode
2245 */
2246 if (unlikely(!__follow_mount_rcu(nd, &path, &inode, &seq)))
2247 return -ECHILD;
2248 } else {
2249 dget(path.dentry);
2250 err = follow_managed(&path, nd);
2251 if (unlikely(err < 0))
2252 return err;
2253 inode = d_backing_inode(path.dentry);
2254 seq = 0;
2255 }
2256 path_to_nameidata(&path, nd);
2257 nd->inode = inode;
2258 nd->seq = seq;
2259 return 0;
2260}
2261
Al Viro9b4a9b12009-04-07 11:44:16 -04002262/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002263static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path)
Al Viro9b4a9b12009-04-07 11:44:16 -04002264{
Al Viroc8a53ee2015-05-12 18:43:07 -04002265 const char *s = path_init(nd, flags);
Al Virobd92d7f2011-03-14 19:54:59 -04002266 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11002267
Al Viro368ee9b2015-05-08 17:19:59 -04002268 if (IS_ERR(s))
2269 return PTR_ERR(s);
Al Viro4f757f32017-04-15 17:31:22 -04002270
2271 if (unlikely(flags & LOOKUP_DOWN)) {
2272 err = handle_lookup_down(nd);
2273 if (unlikely(err < 0)) {
2274 terminate_walk(nd);
2275 return err;
2276 }
2277 }
2278
Al Viro3bdba282015-05-08 17:37:07 -04002279 while (!(err = link_path_walk(s, nd))
2280 && ((err = lookup_last(nd)) > 0)) {
2281 s = trailing_symlink(nd);
2282 if (IS_ERR(s)) {
2283 err = PTR_ERR(s);
2284 break;
Al Virobd92d7f2011-03-14 19:54:59 -04002285 }
2286 }
Al Viro9f1fafe2011-03-25 11:00:12 -04002287 if (!err)
2288 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002289
Al Virodeb106c2015-05-08 18:05:21 -04002290 if (!err && nd->flags & LOOKUP_DIRECTORY)
2291 if (!d_can_lookup(nd->path.dentry))
Al Virobd23a532011-03-23 09:56:30 -04002292 err = -ENOTDIR;
Al Viro625b6d12015-05-12 16:36:12 -04002293 if (!err) {
2294 *path = nd->path;
2295 nd->path.mnt = NULL;
2296 nd->path.dentry = NULL;
2297 }
2298 terminate_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002299 return err;
Al Viroee0827c2011-02-21 23:38:09 -05002300}
Nick Piggin31e6b012011-01-07 17:49:52 +11002301
Al Viro625b6d12015-05-12 16:36:12 -04002302static int filename_lookup(int dfd, struct filename *name, unsigned flags,
Al Viro9ad1aaa2015-05-12 16:44:39 -04002303 struct path *path, struct path *root)
Jeff Layton873f1ee2012-10-10 15:25:29 -04002304{
Al Viro894bc8c2015-05-02 07:16:16 -04002305 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002306 struct nameidata nd;
Al Viroabc9f5b2015-05-12 16:53:42 -04002307 if (IS_ERR(name))
2308 return PTR_ERR(name);
Al Viro9ad1aaa2015-05-12 16:44:39 -04002309 if (unlikely(root)) {
2310 nd.root = *root;
2311 flags |= LOOKUP_ROOT;
2312 }
Al Viro9883d182015-05-13 07:28:08 -04002313 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002314 retval = path_lookupat(&nd, flags | LOOKUP_RCU, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002315 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002316 retval = path_lookupat(&nd, flags, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002317 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002318 retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002319
2320 if (likely(!retval))
Al Viro625b6d12015-05-12 16:36:12 -04002321 audit_inode(name, path->dentry, flags & LOOKUP_PARENT);
Al Viro9883d182015-05-13 07:28:08 -04002322 restore_nameidata();
Al Viroe4bd1c12015-05-12 16:40:39 -04002323 putname(name);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002324 return retval;
2325}
2326
Al Viro8bcb77f2015-05-08 16:59:20 -04002327/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002328static int path_parentat(struct nameidata *nd, unsigned flags,
Al Viro391172c2015-05-09 11:19:16 -04002329 struct path *parent)
Al Viro8bcb77f2015-05-08 16:59:20 -04002330{
Al Viroc8a53ee2015-05-12 18:43:07 -04002331 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002332 int err;
2333 if (IS_ERR(s))
2334 return PTR_ERR(s);
2335 err = link_path_walk(s, nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002336 if (!err)
2337 err = complete_walk(nd);
Al Viro391172c2015-05-09 11:19:16 -04002338 if (!err) {
2339 *parent = nd->path;
2340 nd->path.mnt = NULL;
2341 nd->path.dentry = NULL;
2342 }
2343 terminate_walk(nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002344 return err;
2345}
2346
Al Viro5c31b6c2015-05-12 17:32:54 -04002347static struct filename *filename_parentat(int dfd, struct filename *name,
Al Viro391172c2015-05-09 11:19:16 -04002348 unsigned int flags, struct path *parent,
2349 struct qstr *last, int *type)
Al Viro8bcb77f2015-05-08 16:59:20 -04002350{
2351 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002352 struct nameidata nd;
Al Viro8bcb77f2015-05-08 16:59:20 -04002353
Al Viro5c31b6c2015-05-12 17:32:54 -04002354 if (IS_ERR(name))
2355 return name;
Al Viro9883d182015-05-13 07:28:08 -04002356 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002357 retval = path_parentat(&nd, flags | LOOKUP_RCU, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002358 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002359 retval = path_parentat(&nd, flags, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002360 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002361 retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent);
Al Viro391172c2015-05-09 11:19:16 -04002362 if (likely(!retval)) {
2363 *last = nd.last;
2364 *type = nd.last_type;
2365 audit_inode(name, parent->dentry, LOOKUP_PARENT);
Al Viro5c31b6c2015-05-12 17:32:54 -04002366 } else {
2367 putname(name);
2368 name = ERR_PTR(retval);
Al Viro391172c2015-05-09 11:19:16 -04002369 }
Al Viro9883d182015-05-13 07:28:08 -04002370 restore_nameidata();
Al Viro5c31b6c2015-05-12 17:32:54 -04002371 return name;
Al Viro8bcb77f2015-05-08 16:59:20 -04002372}
2373
Al Viro79714f72012-06-15 03:01:42 +04002374/* does lookup, returns the object with parent locked */
2375struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002376{
Al Viro5c31b6c2015-05-12 17:32:54 -04002377 struct filename *filename;
2378 struct dentry *d;
Al Viro391172c2015-05-09 11:19:16 -04002379 struct qstr last;
2380 int type;
Paul Moore51689102015-01-22 00:00:03 -05002381
Al Viro5c31b6c2015-05-12 17:32:54 -04002382 filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path,
2383 &last, &type);
Paul Moore51689102015-01-22 00:00:03 -05002384 if (IS_ERR(filename))
2385 return ERR_CAST(filename);
Al Viro5c31b6c2015-05-12 17:32:54 -04002386 if (unlikely(type != LAST_NORM)) {
Al Viro391172c2015-05-09 11:19:16 -04002387 path_put(path);
Al Viro5c31b6c2015-05-12 17:32:54 -04002388 putname(filename);
2389 return ERR_PTR(-EINVAL);
Al Viro79714f72012-06-15 03:01:42 +04002390 }
Al Viro59551022016-01-22 15:40:57 -05002391 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04002392 d = __lookup_hash(&last, path->dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04002393 if (IS_ERR(d)) {
Al Viro59551022016-01-22 15:40:57 -05002394 inode_unlock(path->dentry->d_inode);
Al Viro391172c2015-05-09 11:19:16 -04002395 path_put(path);
Al Viro79714f72012-06-15 03:01:42 +04002396 }
Paul Moore51689102015-01-22 00:00:03 -05002397 putname(filename);
Al Viro79714f72012-06-15 03:01:42 +04002398 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002399}
2400
Al Virod1811462008-08-02 00:49:18 -04002401int kern_path(const char *name, unsigned int flags, struct path *path)
2402{
Al Viroabc9f5b2015-05-12 16:53:42 -04002403 return filename_lookup(AT_FDCWD, getname_kernel(name),
2404 flags, path, NULL);
Al Virod1811462008-08-02 00:49:18 -04002405}
Al Viro4d359502014-03-14 12:20:17 -04002406EXPORT_SYMBOL(kern_path);
Al Virod1811462008-08-02 00:49:18 -04002407
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002408/**
2409 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2410 * @dentry: pointer to dentry of the base directory
2411 * @mnt: pointer to vfs mount of the base directory
2412 * @name: pointer to file name
2413 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002414 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002415 */
2416int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2417 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002418 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002419{
Al Viro9ad1aaa2015-05-12 16:44:39 -04002420 struct path root = {.mnt = mnt, .dentry = dentry};
Al Viro9ad1aaa2015-05-12 16:44:39 -04002421 /* the first argument of filename_lookup() is ignored with root */
Al Viroabc9f5b2015-05-12 16:53:42 -04002422 return filename_lookup(AT_FDCWD, getname_kernel(name),
2423 flags , path, &root);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002424}
Al Viro4d359502014-03-14 12:20:17 -04002425EXPORT_SYMBOL(vfs_path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002426
Christoph Hellwigeead1912007-10-16 23:25:38 -07002427/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002428 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002429 * @name: pathname component to lookup
2430 * @base: base directory to lookup from
2431 * @len: maximum length @len should be interpreted to
2432 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002433 * Note that this routine is purely a helper for filesystem usage and should
Al Viro9e7543e2015-02-23 02:49:48 -05002434 * not be called by generic code.
NeilBrownbbddca82016-01-07 16:08:20 -05002435 *
2436 * The caller must hold base->i_mutex.
Christoph Hellwigeead1912007-10-16 23:25:38 -07002437 */
James Morris057f6c02007-04-26 00:12:05 -07002438struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2439{
James Morris057f6c02007-04-26 00:12:05 -07002440 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05002441 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002442 int err;
James Morris057f6c02007-04-26 00:12:05 -07002443
Al Viro59551022016-01-22 15:40:57 -05002444 WARN_ON_ONCE(!inode_is_locked(base->d_inode));
David Woodhouse2f9092e2009-04-20 23:18:37 +01002445
Al Viro6a96ba52011-03-07 23:49:20 -05002446 this.name = name;
2447 this.len = len;
Linus Torvalds8387ff22016-06-10 07:51:30 -07002448 this.hash = full_name_hash(base, name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05002449 if (!len)
2450 return ERR_PTR(-EACCES);
2451
Al Viro21d8a152012-11-29 22:17:21 -05002452 if (unlikely(name[0] == '.')) {
2453 if (len < 2 || (len == 2 && name[1] == '.'))
2454 return ERR_PTR(-EACCES);
2455 }
2456
Al Viro6a96ba52011-03-07 23:49:20 -05002457 while (len--) {
2458 c = *(const unsigned char *)name++;
2459 if (c == '/' || c == '\0')
2460 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05002461 }
Al Viro5a202bc2011-03-08 14:17:44 -05002462 /*
2463 * See if the low-level filesystem might want
2464 * to use its own hash..
2465 */
2466 if (base->d_flags & DCACHE_OP_HASH) {
Linus Torvaldsda53be12013-05-21 15:22:44 -07002467 int err = base->d_op->d_hash(base, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002468 if (err < 0)
2469 return ERR_PTR(err);
2470 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07002471
Miklos Szeredicda309d2012-03-26 12:54:21 +02002472 err = inode_permission(base->d_inode, MAY_EXEC);
2473 if (err)
2474 return ERR_PTR(err);
2475
Al Viro72bd8662012-06-10 17:17:17 -04002476 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002477}
Al Viro4d359502014-03-14 12:20:17 -04002478EXPORT_SYMBOL(lookup_one_len);
James Morris057f6c02007-04-26 00:12:05 -07002479
NeilBrownbbddca82016-01-07 16:08:20 -05002480/**
2481 * lookup_one_len_unlocked - filesystem helper to lookup single pathname component
2482 * @name: pathname component to lookup
2483 * @base: base directory to lookup from
2484 * @len: maximum length @len should be interpreted to
2485 *
2486 * Note that this routine is purely a helper for filesystem usage and should
2487 * not be called by generic code.
2488 *
2489 * Unlike lookup_one_len, it should be called without the parent
2490 * i_mutex held, and will take the i_mutex itself if necessary.
2491 */
2492struct dentry *lookup_one_len_unlocked(const char *name,
2493 struct dentry *base, int len)
2494{
2495 struct qstr this;
2496 unsigned int c;
2497 int err;
Linus Torvalds20d00ee2016-07-29 12:17:52 -07002498 struct dentry *ret;
NeilBrownbbddca82016-01-07 16:08:20 -05002499
2500 this.name = name;
2501 this.len = len;
Linus Torvalds8387ff22016-06-10 07:51:30 -07002502 this.hash = full_name_hash(base, name, len);
NeilBrownbbddca82016-01-07 16:08:20 -05002503 if (!len)
2504 return ERR_PTR(-EACCES);
2505
2506 if (unlikely(name[0] == '.')) {
2507 if (len < 2 || (len == 2 && name[1] == '.'))
2508 return ERR_PTR(-EACCES);
2509 }
2510
2511 while (len--) {
2512 c = *(const unsigned char *)name++;
2513 if (c == '/' || c == '\0')
2514 return ERR_PTR(-EACCES);
2515 }
2516 /*
2517 * See if the low-level filesystem might want
2518 * to use its own hash..
2519 */
2520 if (base->d_flags & DCACHE_OP_HASH) {
2521 int err = base->d_op->d_hash(base, &this);
2522 if (err < 0)
2523 return ERR_PTR(err);
2524 }
2525
2526 err = inode_permission(base->d_inode, MAY_EXEC);
2527 if (err)
2528 return ERR_PTR(err);
2529
Linus Torvalds20d00ee2016-07-29 12:17:52 -07002530 ret = lookup_dcache(&this, base, 0);
2531 if (!ret)
2532 ret = lookup_slow(&this, base, 0);
2533 return ret;
NeilBrownbbddca82016-01-07 16:08:20 -05002534}
2535EXPORT_SYMBOL(lookup_one_len_unlocked);
2536
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05002537#ifdef CONFIG_UNIX98_PTYS
2538int path_pts(struct path *path)
2539{
2540 /* Find something mounted on "pts" in the same directory as
2541 * the input path.
2542 */
2543 struct dentry *child, *parent;
2544 struct qstr this;
2545 int ret;
2546
2547 ret = path_parent_directory(path);
2548 if (ret)
2549 return ret;
2550
2551 parent = path->dentry;
2552 this.name = "pts";
2553 this.len = 3;
2554 child = d_hash_and_lookup(parent, &this);
2555 if (!child)
2556 return -ENOENT;
2557
2558 path->dentry = child;
2559 dput(parent);
2560 follow_mount(path);
2561 return 0;
2562}
2563#endif
2564
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002565int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2566 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567{
Al Viroabc9f5b2015-05-12 16:53:42 -04002568 return filename_lookup(dfd, getname_flags(name, flags, empty),
2569 flags, path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570}
Al Virob853a162015-05-13 09:12:02 -04002571EXPORT_SYMBOL(user_path_at_empty);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002572
Jeff Layton80334262013-07-26 06:23:25 -04002573/**
Al Viro197df042013-09-08 14:03:27 -04002574 * mountpoint_last - look up last component for umount
Jeff Layton80334262013-07-26 06:23:25 -04002575 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
Jeff Layton80334262013-07-26 06:23:25 -04002576 *
2577 * This is a special lookup_last function just for umount. In this case, we
2578 * need to resolve the path without doing any revalidation.
2579 *
2580 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2581 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2582 * in almost all cases, this lookup will be served out of the dcache. The only
2583 * cases where it won't are if nd->last refers to a symlink or the path is
2584 * bogus and it doesn't exist.
2585 *
2586 * Returns:
2587 * -error: if there was an error during lookup. This includes -ENOENT if the
Al Viroba8f4612016-11-14 00:40:33 -05002588 * lookup found a negative dentry.
Jeff Layton80334262013-07-26 06:23:25 -04002589 *
Al Viroba8f4612016-11-14 00:40:33 -05002590 * 0: if we successfully resolved nd->last and found it to not to be a
2591 * symlink that needs to be followed.
Jeff Layton80334262013-07-26 06:23:25 -04002592 *
2593 * 1: if we successfully resolved nd->last and found it to be a symlink
Al Viroba8f4612016-11-14 00:40:33 -05002594 * that needs to be followed.
Jeff Layton80334262013-07-26 06:23:25 -04002595 */
2596static int
Al Viroba8f4612016-11-14 00:40:33 -05002597mountpoint_last(struct nameidata *nd)
Jeff Layton80334262013-07-26 06:23:25 -04002598{
2599 int error = 0;
Jeff Layton80334262013-07-26 06:23:25 -04002600 struct dentry *dir = nd->path.dentry;
Al Viroba8f4612016-11-14 00:40:33 -05002601 struct path path;
Jeff Layton80334262013-07-26 06:23:25 -04002602
Al Viro35759522013-09-08 13:41:33 -04002603 /* If we're in rcuwalk, drop out of it to handle last component */
2604 if (nd->flags & LOOKUP_RCU) {
Al Viro4675ac32017-01-09 22:29:15 -05002605 if (unlazy_walk(nd))
Al Virodeb106c2015-05-08 18:05:21 -04002606 return -ECHILD;
Jeff Layton80334262013-07-26 06:23:25 -04002607 }
2608
2609 nd->flags &= ~LOOKUP_PARENT;
2610
2611 if (unlikely(nd->last_type != LAST_NORM)) {
2612 error = handle_dots(nd, nd->last_type);
Al Viro35759522013-09-08 13:41:33 -04002613 if (error)
Al Virodeb106c2015-05-08 18:05:21 -04002614 return error;
Al Viroba8f4612016-11-14 00:40:33 -05002615 path.dentry = dget(nd->path.dentry);
Al Viro949a8522016-03-06 14:20:52 -05002616 } else {
Al Viroba8f4612016-11-14 00:40:33 -05002617 path.dentry = d_lookup(dir, &nd->last);
2618 if (!path.dentry) {
Al Viro949a8522016-03-06 14:20:52 -05002619 /*
2620 * No cached dentry. Mounted dentries are pinned in the
2621 * cache, so that means that this dentry is probably
2622 * a symlink or the path doesn't actually point
2623 * to a mounted dentry.
2624 */
Al Viroba8f4612016-11-14 00:40:33 -05002625 path.dentry = lookup_slow(&nd->last, dir,
Al Viro949a8522016-03-06 14:20:52 -05002626 nd->flags | LOOKUP_NO_REVAL);
Al Viroba8f4612016-11-14 00:40:33 -05002627 if (IS_ERR(path.dentry))
2628 return PTR_ERR(path.dentry);
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002629 }
Jeff Layton80334262013-07-26 06:23:25 -04002630 }
Al Viroba8f4612016-11-14 00:40:33 -05002631 if (d_is_negative(path.dentry)) {
2632 dput(path.dentry);
Al Virodeb106c2015-05-08 18:05:21 -04002633 return -ENOENT;
Jeff Layton80334262013-07-26 06:23:25 -04002634 }
Al Viroba8f4612016-11-14 00:40:33 -05002635 path.mnt = nd->path.mnt;
Al Viro8f64fb12016-11-14 01:50:26 -05002636 return step_into(nd, &path, 0, d_backing_inode(path.dentry), 0);
Jeff Layton80334262013-07-26 06:23:25 -04002637}
2638
2639/**
Al Viro197df042013-09-08 14:03:27 -04002640 * path_mountpoint - look up a path to be umounted
Masanari Iida2a78b8572015-09-09 15:39:23 -07002641 * @nd: lookup context
Jeff Layton80334262013-07-26 06:23:25 -04002642 * @flags: lookup flags
Al Viroc8a53ee2015-05-12 18:43:07 -04002643 * @path: pointer to container for result
Jeff Layton80334262013-07-26 06:23:25 -04002644 *
2645 * Look up the given name, but don't attempt to revalidate the last component.
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002646 * Returns 0 and "path" will be valid on success; Returns error otherwise.
Jeff Layton80334262013-07-26 06:23:25 -04002647 */
2648static int
Al Viroc8a53ee2015-05-12 18:43:07 -04002649path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002650{
Al Viroc8a53ee2015-05-12 18:43:07 -04002651 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002652 int err;
2653 if (IS_ERR(s))
2654 return PTR_ERR(s);
Al Viro3bdba282015-05-08 17:37:07 -04002655 while (!(err = link_path_walk(s, nd)) &&
Al Viroba8f4612016-11-14 00:40:33 -05002656 (err = mountpoint_last(nd)) > 0) {
Al Viro3bdba282015-05-08 17:37:07 -04002657 s = trailing_symlink(nd);
2658 if (IS_ERR(s)) {
2659 err = PTR_ERR(s);
Jeff Layton80334262013-07-26 06:23:25 -04002660 break;
Al Viro3bdba282015-05-08 17:37:07 -04002661 }
Jeff Layton80334262013-07-26 06:23:25 -04002662 }
Al Viroba8f4612016-11-14 00:40:33 -05002663 if (!err) {
2664 *path = nd->path;
2665 nd->path.mnt = NULL;
2666 nd->path.dentry = NULL;
2667 follow_mount(path);
2668 }
Al Virodeb106c2015-05-08 18:05:21 -04002669 terminate_walk(nd);
Jeff Layton80334262013-07-26 06:23:25 -04002670 return err;
2671}
2672
Al Viro2d864652013-09-08 20:18:44 -04002673static int
Al Viro668696d2015-02-22 19:44:00 -05002674filename_mountpoint(int dfd, struct filename *name, struct path *path,
Al Viro2d864652013-09-08 20:18:44 -04002675 unsigned int flags)
2676{
Al Viro9883d182015-05-13 07:28:08 -04002677 struct nameidata nd;
Al Virocbaab2d2015-01-22 02:49:00 -05002678 int error;
Al Viro668696d2015-02-22 19:44:00 -05002679 if (IS_ERR(name))
2680 return PTR_ERR(name);
Al Viro9883d182015-05-13 07:28:08 -04002681 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002682 error = path_mountpoint(&nd, flags | LOOKUP_RCU, path);
Al Viro2d864652013-09-08 20:18:44 -04002683 if (unlikely(error == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002684 error = path_mountpoint(&nd, flags, path);
Al Viro2d864652013-09-08 20:18:44 -04002685 if (unlikely(error == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002686 error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path);
Al Viro2d864652013-09-08 20:18:44 -04002687 if (likely(!error))
Al Viro668696d2015-02-22 19:44:00 -05002688 audit_inode(name, path->dentry, 0);
Al Viro9883d182015-05-13 07:28:08 -04002689 restore_nameidata();
Al Viro668696d2015-02-22 19:44:00 -05002690 putname(name);
Al Viro2d864652013-09-08 20:18:44 -04002691 return error;
2692}
2693
Jeff Layton80334262013-07-26 06:23:25 -04002694/**
Al Viro197df042013-09-08 14:03:27 -04002695 * user_path_mountpoint_at - lookup a path from userland in order to umount it
Jeff Layton80334262013-07-26 06:23:25 -04002696 * @dfd: directory file descriptor
2697 * @name: pathname from userland
2698 * @flags: lookup flags
2699 * @path: pointer to container to hold result
2700 *
2701 * A umount is a special case for path walking. We're not actually interested
2702 * in the inode in this situation, and ESTALE errors can be a problem. We
2703 * simply want track down the dentry and vfsmount attached at the mountpoint
2704 * and avoid revalidating the last component.
2705 *
2706 * Returns 0 and populates "path" on success.
2707 */
2708int
Al Viro197df042013-09-08 14:03:27 -04002709user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
Jeff Layton80334262013-07-26 06:23:25 -04002710 struct path *path)
2711{
Al Virocbaab2d2015-01-22 02:49:00 -05002712 return filename_mountpoint(dfd, getname(name), path, flags);
Jeff Layton80334262013-07-26 06:23:25 -04002713}
2714
Al Viro2d864652013-09-08 20:18:44 -04002715int
2716kern_path_mountpoint(int dfd, const char *name, struct path *path,
2717 unsigned int flags)
2718{
Al Virocbaab2d2015-01-22 02:49:00 -05002719 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
Al Viro2d864652013-09-08 20:18:44 -04002720}
2721EXPORT_SYMBOL(kern_path_mountpoint);
2722
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002723int __check_sticky(struct inode *dir, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002725 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002726
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002727 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002729 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 return 0;
Andy Lutomirski23adbe12014-06-10 12:45:42 -07002731 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732}
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002733EXPORT_SYMBOL(__check_sticky);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734
2735/*
2736 * Check whether we can remove a link victim from directory dir, check
2737 * whether the type of victim is right.
2738 * 1. We can't do it if dir is read-only (done in permission())
2739 * 2. We should have write and exec permissions on dir
2740 * 3. We can't remove anything from append-only dir
2741 * 4. We can't do anything with immutable dir (done in permission())
2742 * 5. If the sticky bit on dir is set we should either
2743 * a. be owner of dir, or
2744 * b. be owner of victim, or
2745 * c. have CAP_FOWNER capability
2746 * 6. If the victim is append-only or immutable we can't do antyhing with
2747 * links pointing to it.
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05002748 * 7. If the victim has an unknown uid or gid we can't change the inode.
2749 * 8. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2750 * 9. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2751 * 10. We can't remove a root or mountpoint.
2752 * 11. We don't allow removal of NFS sillyrenamed files; it's handled by
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 * nfs_async_unlink().
2754 */
David Howellsb18825a2013-09-12 19:22:53 +01002755static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756{
David Howells63afdfc2015-05-06 15:59:00 +01002757 struct inode *inode = d_backing_inode(victim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 int error;
2759
David Howellsb18825a2013-09-12 19:22:53 +01002760 if (d_is_negative(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 return -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01002762 BUG_ON(!inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763
2764 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002765 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
Al Virof419a2e2008-07-22 00:07:17 -04002767 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 if (error)
2769 return error;
2770 if (IS_APPEND(dir))
2771 return -EPERM;
David Howellsb18825a2013-09-12 19:22:53 +01002772
2773 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05002774 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode) || HAS_UNMAPPED_ID(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 return -EPERM;
2776 if (isdir) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002777 if (!d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 return -ENOTDIR;
2779 if (IS_ROOT(victim))
2780 return -EBUSY;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002781 } else if (d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 return -EISDIR;
2783 if (IS_DEADDIR(dir))
2784 return -ENOENT;
2785 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2786 return -EBUSY;
2787 return 0;
2788}
2789
2790/* Check whether we can create an object with dentry child in directory
2791 * dir.
2792 * 1. We can't do it if child already exists (open has special treatment for
2793 * this case, but since we are inlined it's OK)
2794 * 2. We can't do it if dir is read-only (done in permission())
Eric W. Biederman036d5232016-07-01 12:52:06 -05002795 * 3. We can't do it if the fs can't represent the fsuid or fsgid.
2796 * 4. We should have write and exec permissions on dir
2797 * 5. We can't do it if dir is immutable (done in permission())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002799static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800{
Eric W. Biederman036d5232016-07-01 12:52:06 -05002801 struct user_namespace *s_user_ns;
Jeff Layton14e972b2013-05-08 10:25:58 -04002802 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 if (child->d_inode)
2804 return -EEXIST;
2805 if (IS_DEADDIR(dir))
2806 return -ENOENT;
Eric W. Biederman036d5232016-07-01 12:52:06 -05002807 s_user_ns = dir->i_sb->s_user_ns;
2808 if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
2809 !kgid_has_mapping(s_user_ns, current_fsgid()))
2810 return -EOVERFLOW;
Al Virof419a2e2008-07-22 00:07:17 -04002811 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812}
2813
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814/*
2815 * p1 and p2 should be directories on the same fs.
2816 */
2817struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2818{
2819 struct dentry *p;
2820
2821 if (p1 == p2) {
Al Viro59551022016-01-22 15:40:57 -05002822 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 return NULL;
2824 }
2825
Al Virofc640052016-04-10 01:33:30 -04002826 mutex_lock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002828 p = d_ancestor(p2, p1);
2829 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002830 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT);
2831 inode_lock_nested(p1->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002832 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 }
2834
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002835 p = d_ancestor(p1, p2);
2836 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002837 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2838 inode_lock_nested(p2->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002839 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 }
2841
Al Viro59551022016-01-22 15:40:57 -05002842 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2843 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 return NULL;
2845}
Al Viro4d359502014-03-14 12:20:17 -04002846EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
2848void unlock_rename(struct dentry *p1, struct dentry *p2)
2849{
Al Viro59551022016-01-22 15:40:57 -05002850 inode_unlock(p1->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 if (p1 != p2) {
Al Viro59551022016-01-22 15:40:57 -05002852 inode_unlock(p2->d_inode);
Al Virofc640052016-04-10 01:33:30 -04002853 mutex_unlock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 }
2855}
Al Viro4d359502014-03-14 12:20:17 -04002856EXPORT_SYMBOL(unlock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
Al Viro4acdaf22011-07-26 01:42:34 -04002858int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002859 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002861 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 if (error)
2863 return error;
2864
Al Viroacfa4382008-12-04 10:06:33 -05002865 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 return -EACCES; /* shouldn't it be ENOSYS? */
2867 mode &= S_IALLUGO;
2868 mode |= S_IFREG;
2869 error = security_inode_create(dir, dentry, mode);
2870 if (error)
2871 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002872 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002873 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002874 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 return error;
2876}
Al Viro4d359502014-03-14 12:20:17 -04002877EXPORT_SYMBOL(vfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878
Al Viro8e6c8482017-12-01 17:12:45 -05002879int vfs_mkobj(struct dentry *dentry, umode_t mode,
2880 int (*f)(struct dentry *, umode_t, void *),
2881 void *arg)
2882{
2883 struct inode *dir = dentry->d_parent->d_inode;
2884 int error = may_create(dir, dentry);
2885 if (error)
2886 return error;
2887
2888 mode &= S_IALLUGO;
2889 mode |= S_IFREG;
2890 error = security_inode_create(dir, dentry, mode);
2891 if (error)
2892 return error;
2893 error = f(dentry, mode, arg);
2894 if (!error)
2895 fsnotify_create(dir, dentry);
2896 return error;
2897}
2898EXPORT_SYMBOL(vfs_mkobj);
2899
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002900bool may_open_dev(const struct path *path)
2901{
2902 return !(path->mnt->mnt_flags & MNT_NODEV) &&
2903 !(path->mnt->mnt_sb->s_iflags & SB_I_NODEV);
2904}
2905
Al Virof0bb5aa2016-11-20 20:27:12 -05002906static int may_open(const struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002908 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 struct inode *inode = dentry->d_inode;
2910 int error;
2911
2912 if (!inode)
2913 return -ENOENT;
2914
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002915 switch (inode->i_mode & S_IFMT) {
2916 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002918 case S_IFDIR:
2919 if (acc_mode & MAY_WRITE)
2920 return -EISDIR;
2921 break;
2922 case S_IFBLK:
2923 case S_IFCHR:
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002924 if (!may_open_dev(path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002926 /*FALLTHRU*/
2927 case S_IFIFO:
2928 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002930 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002931 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002932
Al Viro62fb4a12015-12-26 22:33:24 -05002933 error = inode_permission(inode, MAY_OPEN | acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002934 if (error)
2935 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002936
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 /*
2938 * An append-only file must be opened in append mode for writing.
2939 */
2940 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002941 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002942 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002944 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 }
2946
2947 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002948 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002949 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002951 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002952}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953
Jeff Laytone1181ee2010-12-07 16:19:50 -05002954static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002955{
Al Virof0bb5aa2016-11-20 20:27:12 -05002956 const struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002957 struct inode *inode = path->dentry->d_inode;
2958 int error = get_write_access(inode);
2959 if (error)
2960 return error;
2961 /*
2962 * Refuse to truncate files with mandatory locks held on them.
2963 */
Jeff Laytond7a06982014-03-10 09:54:15 -04002964 error = locks_verify_locked(filp);
Al Viro7715b522009-12-16 03:54:00 -05002965 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002966 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002967 if (!error) {
2968 error = do_truncate(path->dentry, 0,
2969 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002970 filp);
Al Viro7715b522009-12-16 03:54:00 -05002971 }
2972 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002973 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974}
2975
Dave Hansend57999e2008-02-15 14:37:27 -08002976static inline int open_to_namei_flags(int flag)
2977{
Al Viro8a5e9292011-06-25 19:15:54 -04002978 if ((flag & O_ACCMODE) == 3)
2979 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002980 return flag;
2981}
2982
Al Virod3607752016-03-25 15:21:09 -04002983static int may_o_create(const struct path *dir, struct dentry *dentry, umode_t mode)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002984{
Seth Forshee1328c722017-01-26 14:33:46 -06002985 struct user_namespace *s_user_ns;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002986 int error = security_path_mknod(dir, dentry, mode, 0);
2987 if (error)
2988 return error;
2989
Seth Forshee1328c722017-01-26 14:33:46 -06002990 s_user_ns = dir->dentry->d_sb->s_user_ns;
2991 if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
2992 !kgid_has_mapping(s_user_ns, current_fsgid()))
2993 return -EOVERFLOW;
2994
Miklos Szeredid18e9002012-06-05 15:10:17 +02002995 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2996 if (error)
2997 return error;
2998
2999 return security_inode_create(dir->dentry->d_inode, dentry, mode);
3000}
3001
David Howells1acf0af2012-06-14 16:13:46 +01003002/*
3003 * Attempt to atomically look up, create and open a file from a negative
3004 * dentry.
3005 *
3006 * Returns 0 if successful. The file will have been created and attached to
3007 * @file by the filesystem calling finish_open().
3008 *
3009 * Returns 1 if the file was looked up only or didn't need creating. The
3010 * caller will need to perform the open themselves. @path will have been
3011 * updated to point to the new dentry. This may be negative.
3012 *
3013 * Returns an error code otherwise.
3014 */
Al Viro2675a4e2012-06-22 12:41:10 +04003015static int atomic_open(struct nameidata *nd, struct dentry *dentry,
3016 struct path *path, struct file *file,
3017 const struct open_flags *op,
Al Viro1643b432016-04-27 19:14:10 -04003018 int open_flag, umode_t mode,
Al Viro2675a4e2012-06-22 12:41:10 +04003019 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003020{
Miklos Szeredid18e9002012-06-05 15:10:17 +02003021 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003022 struct inode *dir = nd->path.dentry->d_inode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003023 int error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003024
Al Viro384f26e2016-04-28 02:03:55 -04003025 if (!(~open_flag & (O_EXCL | O_CREAT))) /* both O_EXCL and O_CREAT */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003026 open_flag &= ~O_TRUNC;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003027
Miklos Szeredid18e9002012-06-05 15:10:17 +02003028 if (nd->flags & LOOKUP_DIRECTORY)
3029 open_flag |= O_DIRECTORY;
3030
Al Viro30d90492012-06-22 12:40:19 +04003031 file->f_path.dentry = DENTRY_NOT_SET;
3032 file->f_path.mnt = nd->path.mnt;
Al Viro0fb1ea02016-04-27 14:13:10 -04003033 error = dir->i_op->atomic_open(dir, dentry, file,
3034 open_to_namei_flags(open_flag),
3035 mode, opened);
Al Viro6fbd0712016-04-28 11:50:59 -04003036 d_lookup_done(dentry);
Al Viro384f26e2016-04-28 02:03:55 -04003037 if (!error) {
3038 /*
3039 * We didn't have the inode before the open, so check open
3040 * permission here.
3041 */
3042 int acc_mode = op->acc_mode;
3043 if (*opened & FILE_CREATED) {
3044 WARN_ON(!(open_flag & O_CREAT));
3045 fsnotify_create(dir, dentry);
3046 acc_mode = 0;
3047 }
3048 error = may_open(&file->f_path, acc_mode, open_flag);
3049 if (WARN_ON(error > 0))
3050 error = -EINVAL;
3051 } else if (error > 0) {
Al Viro30d90492012-06-22 12:40:19 +04003052 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04003053 error = -EIO;
Al Viro03da6332013-09-16 19:22:33 -04003054 } else {
Al Viro384f26e2016-04-28 02:03:55 -04003055 if (file->f_path.dentry) {
3056 dput(dentry);
3057 dentry = file->f_path.dentry;
Al Viro03da6332013-09-16 19:22:33 -04003058 }
Al Viro384f26e2016-04-28 02:03:55 -04003059 if (*opened & FILE_CREATED)
3060 fsnotify_create(dir, dentry);
Al Viroa01e7182016-06-07 21:53:51 -04003061 if (unlikely(d_is_negative(dentry))) {
3062 error = -ENOENT;
3063 } else {
3064 path->dentry = dentry;
3065 path->mnt = nd->path.mnt;
3066 return 1;
3067 }
Sage Weil62b2ce92012-08-15 13:30:12 -07003068 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003069 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003070 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003071 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003072}
3073
Nick Piggin31e6b012011-01-07 17:49:52 +11003074/*
David Howells1acf0af2012-06-14 16:13:46 +01003075 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003076 *
3077 * Must be called with i_mutex held on parent.
3078 *
David Howells1acf0af2012-06-14 16:13:46 +01003079 * Returns 0 if the file was successfully atomically created (if necessary) and
3080 * opened. In this case the file will be returned attached to @file.
3081 *
3082 * Returns 1 if the file was not completely opened at this time, though lookups
3083 * and creations will have been performed and the dentry returned in @path will
3084 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
3085 * specified then a negative dentry may be returned.
3086 *
3087 * An error code is returned otherwise.
3088 *
3089 * FILE_CREATE will be set in @*opened if the dentry was created and will be
3090 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003091 */
Al Viro2675a4e2012-06-22 12:41:10 +04003092static int lookup_open(struct nameidata *nd, struct path *path,
3093 struct file *file,
3094 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04003095 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003096{
3097 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003098 struct inode *dir_inode = dir->d_inode;
Al Viro1643b432016-04-27 19:14:10 -04003099 int open_flag = op->open_flag;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003100 struct dentry *dentry;
Al Viro1643b432016-04-27 19:14:10 -04003101 int error, create_error = 0;
Al Viro1643b432016-04-27 19:14:10 -04003102 umode_t mode = op->mode;
Al Viro6fbd0712016-04-28 11:50:59 -04003103 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003104
Al Viroce8644f2016-04-26 14:17:56 -04003105 if (unlikely(IS_DEADDIR(dir_inode)))
3106 return -ENOENT;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003107
Al Viro47237682012-06-10 05:01:45 -04003108 *opened &= ~FILE_CREATED;
Al Viro6fbd0712016-04-28 11:50:59 -04003109 dentry = d_lookup(dir, &nd->last);
3110 for (;;) {
3111 if (!dentry) {
3112 dentry = d_alloc_parallel(dir, &nd->last, &wq);
3113 if (IS_ERR(dentry))
3114 return PTR_ERR(dentry);
3115 }
3116 if (d_in_lookup(dentry))
3117 break;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003118
Al Viro6fbd0712016-04-28 11:50:59 -04003119 error = d_revalidate(dentry, nd->flags);
3120 if (likely(error > 0))
3121 break;
3122 if (error)
3123 goto out_dput;
3124 d_invalidate(dentry);
3125 dput(dentry);
3126 dentry = NULL;
3127 }
3128 if (dentry->d_inode) {
Al Viro6c51e512016-03-05 20:09:32 -05003129 /* Cached positive dentry: will open in f_op->open */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003130 goto out_no_open;
Al Viro6c51e512016-03-05 20:09:32 -05003131 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003132
Al Viro1643b432016-04-27 19:14:10 -04003133 /*
3134 * Checking write permission is tricky, bacuse we don't know if we are
3135 * going to actually need it: O_CREAT opens should work as long as the
3136 * file exists. But checking existence breaks atomicity. The trick is
3137 * to check access and if not granted clear O_CREAT from the flags.
3138 *
3139 * Another problem is returing the "right" error value (e.g. for an
3140 * O_EXCL open we want to return EEXIST not EROFS).
3141 */
3142 if (open_flag & O_CREAT) {
3143 if (!IS_POSIXACL(dir->d_inode))
3144 mode &= ~current_umask();
3145 if (unlikely(!got_write)) {
3146 create_error = -EROFS;
3147 open_flag &= ~O_CREAT;
3148 if (open_flag & (O_EXCL | O_TRUNC))
3149 goto no_open;
3150 /* No side effects, safe to clear O_CREAT */
3151 } else {
3152 create_error = may_o_create(&nd->path, dentry, mode);
3153 if (create_error) {
3154 open_flag &= ~O_CREAT;
3155 if (open_flag & O_EXCL)
3156 goto no_open;
3157 }
3158 }
3159 } else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) &&
3160 unlikely(!got_write)) {
3161 /*
3162 * No O_CREATE -> atomicity not a requirement -> fall
3163 * back to lookup + open
3164 */
3165 goto no_open;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003166 }
3167
Al Viro1643b432016-04-27 19:14:10 -04003168 if (dir_inode->i_op->atomic_open) {
3169 error = atomic_open(nd, dentry, path, file, op, open_flag,
3170 mode, opened);
3171 if (unlikely(error == -ENOENT) && create_error)
3172 error = create_error;
3173 return error;
3174 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003175
Al Viro1643b432016-04-27 19:14:10 -04003176no_open:
Al Viro6fbd0712016-04-28 11:50:59 -04003177 if (d_in_lookup(dentry)) {
Al Viro12fa5e22016-04-28 11:19:43 -04003178 struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry,
3179 nd->flags);
Al Viro6fbd0712016-04-28 11:50:59 -04003180 d_lookup_done(dentry);
Al Viro12fa5e22016-04-28 11:19:43 -04003181 if (unlikely(res)) {
3182 if (IS_ERR(res)) {
3183 error = PTR_ERR(res);
3184 goto out_dput;
3185 }
3186 dput(dentry);
3187 dentry = res;
3188 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003189 }
3190
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003191 /* Negative dentry, just create the file */
Al Viro1643b432016-04-27 19:14:10 -04003192 if (!dentry->d_inode && (open_flag & O_CREAT)) {
Al Viro47237682012-06-10 05:01:45 -04003193 *opened |= FILE_CREATED;
Al Viroce8644f2016-04-26 14:17:56 -04003194 audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE);
Al Viroce8644f2016-04-26 14:17:56 -04003195 if (!dir_inode->i_op->create) {
3196 error = -EACCES;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003197 goto out_dput;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003198 }
Al Viroce8644f2016-04-26 14:17:56 -04003199 error = dir_inode->i_op->create(dir_inode, dentry, mode,
Al Viro1643b432016-04-27 19:14:10 -04003200 open_flag & O_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003201 if (error)
3202 goto out_dput;
Al Viroce8644f2016-04-26 14:17:56 -04003203 fsnotify_create(dir_inode, dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003204 }
Al Viro1643b432016-04-27 19:14:10 -04003205 if (unlikely(create_error) && !dentry->d_inode) {
3206 error = create_error;
3207 goto out_dput;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003208 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003209out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003210 path->dentry = dentry;
3211 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04003212 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003213
3214out_dput:
3215 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003216 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003217}
3218
3219/*
Al Virofe2d35f2011-03-05 22:58:25 -05003220 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11003221 */
Al Viro896475d2015-04-22 18:02:17 -04003222static int do_last(struct nameidata *nd,
Al Viro2675a4e2012-06-22 12:41:10 +04003223 struct file *file, const struct open_flags *op,
Al Viro76ae2a52015-05-12 18:44:32 -04003224 int *opened)
Al Virofb1cc552009-12-24 01:58:28 -05003225{
Al Viroa1e28032009-12-24 02:12:06 -05003226 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05003227 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003228 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04003229 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04003230 int acc_mode = op->acc_mode;
Al Viro254cf582015-05-05 09:40:46 -04003231 unsigned seq;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003232 struct inode *inode;
Al Viro896475d2015-04-22 18:02:17 -04003233 struct path path;
Al Viro16c2cd72011-02-22 15:50:10 -05003234 int error;
Al Virofb1cc552009-12-24 01:58:28 -05003235
Al Viroc3e380b2011-02-23 13:39:45 -05003236 nd->flags &= ~LOOKUP_PARENT;
3237 nd->flags |= op->intent;
3238
Al Virobc77daa2013-06-06 09:12:33 -04003239 if (nd->last_type != LAST_NORM) {
Al Virofe2d35f2011-03-05 22:58:25 -05003240 error = handle_dots(nd, nd->last_type);
Al Virodeb106c2015-05-08 18:05:21 -04003241 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003242 return error;
Miklos Szeredie83db162012-06-05 15:10:29 +02003243 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05003244 }
Al Viro67ee3ad2009-12-26 07:01:01 -05003245
Al Viroca344a892011-03-09 00:36:45 -05003246 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05003247 if (nd->last.name[nd->last.len])
3248 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3249 /* we _can_ be in RCU mode here */
Al Viro254cf582015-05-05 09:40:46 -04003250 error = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05003251 if (likely(error > 0))
Miklos Szeredi71574862012-06-05 15:10:14 +02003252 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003253
Miklos Szeredi71574862012-06-05 15:10:14 +02003254 if (error < 0)
Al Virodeb106c2015-05-08 18:05:21 -04003255 return error;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02003256
Miklos Szeredi71574862012-06-05 15:10:14 +02003257 BUG_ON(nd->inode != dir->d_inode);
Al Viro6583fe22016-03-05 18:14:03 -05003258 BUG_ON(nd->flags & LOOKUP_RCU);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003259 } else {
3260 /* create side of things */
3261 /*
3262 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3263 * has been cleared when we got to the last component we are
3264 * about to look up
3265 */
3266 error = complete_walk(nd);
Al Viroe8bb73d2015-05-08 16:28:42 -04003267 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003268 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02003269
Al Viro76ae2a52015-05-12 18:44:32 -04003270 audit_inode(nd->name, dir, LOOKUP_PARENT);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003271 /* trailing slashes? */
Al Virodeb106c2015-05-08 18:05:21 -04003272 if (unlikely(nd->last.name[nd->last.len]))
3273 return -EISDIR;
Al Virofe2d35f2011-03-05 22:58:25 -05003274 }
3275
Al Viro9cf843e2016-04-28 19:35:16 -04003276 if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
Al Viro64894cf2012-07-31 00:53:35 +04003277 error = mnt_want_write(nd->path.mnt);
3278 if (!error)
3279 got_write = true;
3280 /*
3281 * do _not_ fail yet - we might not need that or fail with
3282 * a different error; let lookup_open() decide; we'll be
3283 * dropping this one anyway.
3284 */
3285 }
Al Viro9cf843e2016-04-28 19:35:16 -04003286 if (open_flag & O_CREAT)
3287 inode_lock(dir->d_inode);
3288 else
3289 inode_lock_shared(dir->d_inode);
Al Viro896475d2015-04-22 18:02:17 -04003290 error = lookup_open(nd, &path, file, op, got_write, opened);
Al Viro9cf843e2016-04-28 19:35:16 -04003291 if (open_flag & O_CREAT)
3292 inode_unlock(dir->d_inode);
3293 else
3294 inode_unlock_shared(dir->d_inode);
Al Viroa1e28032009-12-24 02:12:06 -05003295
Al Viro2675a4e2012-06-22 12:41:10 +04003296 if (error <= 0) {
3297 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003298 goto out;
3299
Al Viro47237682012-06-10 05:01:45 -04003300 if ((*opened & FILE_CREATED) ||
Al Viro496ad9a2013-01-23 17:07:38 -05003301 !S_ISREG(file_inode(file)->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003302 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003303
Al Viro76ae2a52015-05-12 18:44:32 -04003304 audit_inode(nd->name, file->f_path.dentry, 0);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003305 goto opened;
3306 }
Al Virofb1cc552009-12-24 01:58:28 -05003307
Al Viro47237682012-06-10 05:01:45 -04003308 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05003309 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05003310 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003311 will_truncate = false;
Al Viro62fb4a12015-12-26 22:33:24 -05003312 acc_mode = 0;
Al Viro896475d2015-04-22 18:02:17 -04003313 path_to_nameidata(&path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02003314 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05003315 }
3316
3317 /*
Miklos Szeredid18e9002012-06-05 15:10:17 +02003318 * If atomic_open() acquired write access it is dropped now due to
3319 * possible mount and symlink following (this might be optimized away if
3320 * necessary...)
3321 */
Al Viro64894cf2012-07-31 00:53:35 +04003322 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02003323 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003324 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003325 }
3326
Al Viroe6ec03a2016-06-05 00:23:09 -04003327 error = follow_managed(&path, nd);
3328 if (unlikely(error < 0))
3329 return error;
3330
Al Viro6583fe22016-03-05 18:14:03 -05003331 if (unlikely(d_is_negative(path.dentry))) {
3332 path_to_nameidata(&path, nd);
3333 return -ENOENT;
3334 }
3335
3336 /*
3337 * create/update audit record if it already exists.
3338 */
3339 audit_inode(nd->name, path.dentry, 0);
3340
Al Virodeb106c2015-05-08 18:05:21 -04003341 if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
3342 path_to_nameidata(&path, nd);
3343 return -EEXIST;
3344 }
Al Virofb1cc552009-12-24 01:58:28 -05003345
Al Viro254cf582015-05-05 09:40:46 -04003346 seq = 0; /* out of RCU mode, so the value doesn't matter */
Al Virod4565642016-02-27 19:23:16 -05003347 inode = d_backing_inode(path.dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04003348finish_lookup:
Al Viro8f64fb12016-11-14 01:50:26 -05003349 error = step_into(nd, &path, 0, inode, seq);
Al Virodeb106c2015-05-08 18:05:21 -04003350 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04003351 return error;
Al Virobc77daa2013-06-06 09:12:33 -04003352finish_open:
Al Viro8f64fb12016-11-14 01:50:26 -05003353 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
Al Viroa3fbbde2011-11-07 21:21:26 +00003354 error = complete_walk(nd);
Al Virofac7d192016-06-04 11:41:49 -04003355 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003356 return error;
Al Viro76ae2a52015-05-12 18:44:32 -04003357 audit_inode(nd->name, nd->path.dentry, 0);
Al Virofb1cc552009-12-24 01:58:28 -05003358 error = -EISDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003359 if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003360 goto out;
Miklos Szerediaf2f5542012-05-21 17:30:11 +02003361 error = -ENOTDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003362 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003363 goto out;
David Howells4bbcbd3b2015-03-17 22:16:40 +00003364 if (!d_is_reg(nd->path.dentry))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003365 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05003366
Al Viro0f9d1a12011-03-09 00:13:14 -05003367 if (will_truncate) {
3368 error = mnt_want_write(nd->path.mnt);
3369 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003370 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04003371 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05003372 }
Miklos Szeredie83db162012-06-05 15:10:29 +02003373finish_open_created:
Al Viro6ac08702016-04-26 00:02:50 -04003374 error = may_open(&nd->path, acc_mode, open_flag);
3375 if (error)
3376 goto out;
Miklos Szeredi4aa7c632014-10-24 00:14:35 +02003377 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3378 error = vfs_open(&nd->path, file, current_cred());
Al Virofac7d192016-06-04 11:41:49 -04003379 if (error)
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003380 goto out;
Al Virofac7d192016-06-04 11:41:49 -04003381 *opened |= FILE_OPENED;
Miklos Szeredia8277b92012-06-05 15:10:32 +02003382opened:
Al Viro2675a4e2012-06-22 12:41:10 +04003383 error = open_check_o_direct(file);
Al Virofe9ec822016-04-27 03:14:20 -04003384 if (!error)
3385 error = ima_file_check(file, op->acc_mode, *opened);
3386 if (!error && will_truncate)
Al Viro2675a4e2012-06-22 12:41:10 +04003387 error = handle_truncate(file);
Al Viroca344a892011-03-09 00:36:45 -05003388out:
Al Virofe9ec822016-04-27 03:14:20 -04003389 if (unlikely(error) && (*opened & FILE_OPENED))
3390 fput(file);
Al Viroc80567c2016-02-27 19:17:33 -05003391 if (unlikely(error > 0)) {
3392 WARN_ON(1);
3393 error = -EINVAL;
3394 }
Al Viro64894cf2012-07-31 00:53:35 +04003395 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05003396 mnt_drop_write(nd->path.mnt);
Al Viro2675a4e2012-06-22 12:41:10 +04003397 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003398}
3399
Amir Goldsteinaf7bd4d2017-01-17 06:34:52 +02003400struct dentry *vfs_tmpfile(struct dentry *dentry, umode_t mode, int open_flag)
3401{
Amir Goldsteinaf7bd4d2017-01-17 06:34:52 +02003402 struct dentry *child = NULL;
3403 struct inode *dir = dentry->d_inode;
3404 struct inode *inode;
3405 int error;
3406
3407 /* we want directory to be writable */
3408 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
3409 if (error)
3410 goto out_err;
3411 error = -EOPNOTSUPP;
3412 if (!dir->i_op->tmpfile)
3413 goto out_err;
3414 error = -ENOMEM;
David Howellscdf01222017-07-04 17:25:22 +01003415 child = d_alloc(dentry, &slash_name);
Amir Goldsteinaf7bd4d2017-01-17 06:34:52 +02003416 if (unlikely(!child))
3417 goto out_err;
3418 error = dir->i_op->tmpfile(dir, child, mode);
3419 if (error)
3420 goto out_err;
3421 error = -ENOENT;
3422 inode = child->d_inode;
3423 if (unlikely(!inode))
3424 goto out_err;
3425 if (!(open_flag & O_EXCL)) {
3426 spin_lock(&inode->i_lock);
3427 inode->i_state |= I_LINKABLE;
3428 spin_unlock(&inode->i_lock);
3429 }
3430 return child;
3431
3432out_err:
3433 dput(child);
3434 return ERR_PTR(error);
3435}
3436EXPORT_SYMBOL(vfs_tmpfile);
3437
Al Viroc8a53ee2015-05-12 18:43:07 -04003438static int do_tmpfile(struct nameidata *nd, unsigned flags,
Al Viro60545d02013-06-07 01:20:27 -04003439 const struct open_flags *op,
3440 struct file *file, int *opened)
3441{
Al Viro625b6d12015-05-12 16:36:12 -04003442 struct dentry *child;
Al Viro625b6d12015-05-12 16:36:12 -04003443 struct path path;
Al Viroc8a53ee2015-05-12 18:43:07 -04003444 int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
Al Viro60545d02013-06-07 01:20:27 -04003445 if (unlikely(error))
3446 return error;
Al Viro625b6d12015-05-12 16:36:12 -04003447 error = mnt_want_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003448 if (unlikely(error))
3449 goto out;
Amir Goldsteinaf7bd4d2017-01-17 06:34:52 +02003450 child = vfs_tmpfile(path.dentry, op->mode, op->open_flag);
3451 error = PTR_ERR(child);
Hirofumi Nakagawa684e73b2017-09-26 03:21:26 +09003452 if (IS_ERR(child))
Al Viro60545d02013-06-07 01:20:27 -04003453 goto out2;
Al Viro625b6d12015-05-12 16:36:12 -04003454 dput(path.dentry);
3455 path.dentry = child;
Al Viroc8a53ee2015-05-12 18:43:07 -04003456 audit_inode(nd->name, child, 0);
Eric Rannaud69a91c22014-10-30 01:51:01 -07003457 /* Don't check for other permissions, the inode was just created */
Al Viro62fb4a12015-12-26 22:33:24 -05003458 error = may_open(&path, 0, op->open_flag);
Al Viro60545d02013-06-07 01:20:27 -04003459 if (error)
3460 goto out2;
Al Viro625b6d12015-05-12 16:36:12 -04003461 file->f_path.mnt = path.mnt;
3462 error = finish_open(file, child, NULL, opened);
Al Viro60545d02013-06-07 01:20:27 -04003463 if (error)
3464 goto out2;
3465 error = open_check_o_direct(file);
Amir Goldsteinaf7bd4d2017-01-17 06:34:52 +02003466 if (error)
Al Viro60545d02013-06-07 01:20:27 -04003467 fput(file);
3468out2:
Al Viro625b6d12015-05-12 16:36:12 -04003469 mnt_drop_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003470out:
Al Viro625b6d12015-05-12 16:36:12 -04003471 path_put(&path);
Al Viro60545d02013-06-07 01:20:27 -04003472 return error;
3473}
3474
Al Viro6ac08702016-04-26 00:02:50 -04003475static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file)
3476{
3477 struct path path;
3478 int error = path_lookupat(nd, flags, &path);
3479 if (!error) {
3480 audit_inode(nd->name, path.dentry, 0);
3481 error = vfs_open(&path, file, current_cred());
3482 path_put(&path);
3483 }
3484 return error;
3485}
3486
Al Viroc8a53ee2015-05-12 18:43:07 -04003487static struct file *path_openat(struct nameidata *nd,
3488 const struct open_flags *op, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489{
Al Viro368ee9b2015-05-08 17:19:59 -04003490 const char *s;
Al Viro30d90492012-06-22 12:40:19 +04003491 struct file *file;
Al Viro47237682012-06-10 05:01:45 -04003492 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05003493 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11003494
Al Viro30d90492012-06-22 12:40:19 +04003495 file = get_empty_filp();
Al Viro1afc99b2013-02-14 20:41:04 -05003496 if (IS_ERR(file))
3497 return file;
Nick Piggin31e6b012011-01-07 17:49:52 +11003498
Al Viro30d90492012-06-22 12:40:19 +04003499 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11003500
Al Virobb458c62013-07-13 13:26:37 +04003501 if (unlikely(file->f_flags & __O_TMPFILE)) {
Al Viroc8a53ee2015-05-12 18:43:07 -04003502 error = do_tmpfile(nd, flags, op, file, &opened);
Al Virof15133d2015-05-08 22:53:15 -04003503 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003504 }
3505
Al Viro6ac08702016-04-26 00:02:50 -04003506 if (unlikely(file->f_flags & O_PATH)) {
3507 error = do_o_path(nd, flags, file);
3508 if (!error)
3509 opened |= FILE_OPENED;
3510 goto out2;
3511 }
3512
Al Viroc8a53ee2015-05-12 18:43:07 -04003513 s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04003514 if (IS_ERR(s)) {
3515 put_filp(file);
3516 return ERR_CAST(s);
3517 }
Al Viro3bdba282015-05-08 17:37:07 -04003518 while (!(error = link_path_walk(s, nd)) &&
Al Viro76ae2a52015-05-12 18:44:32 -04003519 (error = do_last(nd, file, op, &opened)) > 0) {
Al Viro73d049a2011-03-11 12:08:24 -05003520 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro3bdba282015-05-08 17:37:07 -04003521 s = trailing_symlink(nd);
3522 if (IS_ERR(s)) {
3523 error = PTR_ERR(s);
Al Viro2675a4e2012-06-22 12:41:10 +04003524 break;
Al Viro3bdba282015-05-08 17:37:07 -04003525 }
Al Viro806b6812009-12-26 07:16:40 -05003526 }
Al Virodeb106c2015-05-08 18:05:21 -04003527 terminate_walk(nd);
Al Virof15133d2015-05-08 22:53:15 -04003528out2:
Al Viro2675a4e2012-06-22 12:41:10 +04003529 if (!(opened & FILE_OPENED)) {
3530 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04003531 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003532 }
Al Viro2675a4e2012-06-22 12:41:10 +04003533 if (unlikely(error)) {
3534 if (error == -EOPENSTALE) {
3535 if (flags & LOOKUP_RCU)
3536 error = -ECHILD;
3537 else
3538 error = -ESTALE;
3539 }
3540 file = ERR_PTR(error);
3541 }
3542 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543}
3544
Jeff Layton669abf42012-10-10 16:43:10 -04003545struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +04003546 const struct open_flags *op)
Al Viro13aab422011-02-23 17:54:08 -05003547{
Al Viro9883d182015-05-13 07:28:08 -04003548 struct nameidata nd;
Al Virof9652e12013-06-11 08:23:01 +04003549 int flags = op->lookup_flags;
Al Viro13aab422011-02-23 17:54:08 -05003550 struct file *filp;
3551
Al Viro9883d182015-05-13 07:28:08 -04003552 set_nameidata(&nd, dfd, pathname);
Al Viroc8a53ee2015-05-12 18:43:07 -04003553 filp = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05003554 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003555 filp = path_openat(&nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05003556 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003557 filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003558 restore_nameidata();
Al Viro13aab422011-02-23 17:54:08 -05003559 return filp;
3560}
3561
Al Viro73d049a2011-03-11 12:08:24 -05003562struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
Al Virof9652e12013-06-11 08:23:01 +04003563 const char *name, const struct open_flags *op)
Al Viro73d049a2011-03-11 12:08:24 -05003564{
Al Viro9883d182015-05-13 07:28:08 -04003565 struct nameidata nd;
Al Viro73d049a2011-03-11 12:08:24 -05003566 struct file *file;
Paul Moore51689102015-01-22 00:00:03 -05003567 struct filename *filename;
Al Virof9652e12013-06-11 08:23:01 +04003568 int flags = op->lookup_flags | LOOKUP_ROOT;
Al Viro73d049a2011-03-11 12:08:24 -05003569
3570 nd.root.mnt = mnt;
3571 nd.root.dentry = dentry;
3572
David Howellsb18825a2013-09-12 19:22:53 +01003573 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05003574 return ERR_PTR(-ELOOP);
3575
Paul Moore51689102015-01-22 00:00:03 -05003576 filename = getname_kernel(name);
Viresh Kumara1c83682015-08-12 15:59:44 +05303577 if (IS_ERR(filename))
Paul Moore51689102015-01-22 00:00:03 -05003578 return ERR_CAST(filename);
3579
Al Viro9883d182015-05-13 07:28:08 -04003580 set_nameidata(&nd, -1, filename);
Al Viroc8a53ee2015-05-12 18:43:07 -04003581 file = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro73d049a2011-03-11 12:08:24 -05003582 if (unlikely(file == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003583 file = path_openat(&nd, op, flags);
Al Viro73d049a2011-03-11 12:08:24 -05003584 if (unlikely(file == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003585 file = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003586 restore_nameidata();
Paul Moore51689102015-01-22 00:00:03 -05003587 putname(filename);
Al Viro73d049a2011-03-11 12:08:24 -05003588 return file;
3589}
3590
Al Virofa14a0b2015-01-22 02:16:49 -05003591static struct dentry *filename_create(int dfd, struct filename *name,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003592 struct path *path, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003594 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viro391172c2015-05-09 11:19:16 -04003595 struct qstr last;
3596 int type;
Jan Karac30dabf2012-06-12 16:20:30 +02003597 int err2;
Jeff Layton1ac12b42012-12-11 12:10:06 -05003598 int error;
3599 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3600
3601 /*
3602 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3603 * other flags passed in are ignored!
3604 */
3605 lookup_flags &= LOOKUP_REVAL;
3606
Al Viro5c31b6c2015-05-12 17:32:54 -04003607 name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
3608 if (IS_ERR(name))
3609 return ERR_CAST(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003611 /*
3612 * Yucky last component or no last component at all?
3613 * (foo/., foo/.., /////)
3614 */
Al Viro5c31b6c2015-05-12 17:32:54 -04003615 if (unlikely(type != LAST_NORM))
Al Viroed75e952011-06-27 16:53:43 -04003616 goto out;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003617
Jan Karac30dabf2012-06-12 16:20:30 +02003618 /* don't fail immediately if it's r/o, at least try to report other errors */
Al Viro391172c2015-05-09 11:19:16 -04003619 err2 = mnt_want_write(path->mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003620 /*
3621 * Do the final lookup.
3622 */
Al Viro391172c2015-05-09 11:19:16 -04003623 lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Al Viro59551022016-01-22 15:40:57 -05003624 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04003625 dentry = __lookup_hash(&last, path->dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003627 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003628
Al Viroa8104a92012-07-20 02:25:00 +04003629 error = -EEXIST;
David Howellsb18825a2013-09-12 19:22:53 +01003630 if (d_is_positive(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003631 goto fail;
David Howellsb18825a2013-09-12 19:22:53 +01003632
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003633 /*
3634 * Special case - lookup gave negative, but... we had foo/bar/
3635 * From the vfs_mknod() POV we just have a negative dentry -
3636 * all is fine. Let's be bastards - you had / on the end, you've
3637 * been asking for (non-existent) directory. -ENOENT for you.
3638 */
Al Viro391172c2015-05-09 11:19:16 -04003639 if (unlikely(!is_dir && last.name[last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003640 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003641 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003642 }
Jan Karac30dabf2012-06-12 16:20:30 +02003643 if (unlikely(err2)) {
3644 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003645 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003646 }
Al Viro181c37b2015-05-12 17:21:25 -04003647 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649fail:
Al Viroa8104a92012-07-20 02:25:00 +04003650 dput(dentry);
3651 dentry = ERR_PTR(error);
3652unlock:
Al Viro59551022016-01-22 15:40:57 -05003653 inode_unlock(path->dentry->d_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02003654 if (!err2)
Al Viro391172c2015-05-09 11:19:16 -04003655 mnt_drop_write(path->mnt);
Al Viroed75e952011-06-27 16:53:43 -04003656out:
Al Viro391172c2015-05-09 11:19:16 -04003657 path_put(path);
Al Viro181c37b2015-05-12 17:21:25 -04003658 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 return dentry;
3660}
Al Virofa14a0b2015-01-22 02:16:49 -05003661
3662struct dentry *kern_path_create(int dfd, const char *pathname,
3663 struct path *path, unsigned int lookup_flags)
3664{
Al Viro181c37b2015-05-12 17:21:25 -04003665 return filename_create(dfd, getname_kernel(pathname),
3666 path, lookup_flags);
Al Virofa14a0b2015-01-22 02:16:49 -05003667}
Al Virodae6ad82011-06-26 11:50:15 -04003668EXPORT_SYMBOL(kern_path_create);
3669
Al Viro921a1652012-07-20 01:15:31 +04003670void done_path_create(struct path *path, struct dentry *dentry)
3671{
3672 dput(dentry);
Al Viro59551022016-01-22 15:40:57 -05003673 inode_unlock(path->dentry->d_inode);
Al Viroa8104a92012-07-20 02:25:00 +04003674 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003675 path_put(path);
3676}
3677EXPORT_SYMBOL(done_path_create);
3678
Al Viro520ae682015-05-13 07:00:28 -04003679inline struct dentry *user_path_create(int dfd, const char __user *pathname,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003680 struct path *path, unsigned int lookup_flags)
Al Virodae6ad82011-06-26 11:50:15 -04003681{
Al Viro181c37b2015-05-12 17:21:25 -04003682 return filename_create(dfd, getname(pathname), path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003683}
3684EXPORT_SYMBOL(user_path_create);
3685
Al Viro1a67aaf2011-07-26 01:52:52 -04003686int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003688 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689
3690 if (error)
3691 return error;
3692
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003693 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 return -EPERM;
3695
Al Viroacfa4382008-12-04 10:06:33 -05003696 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 return -EPERM;
3698
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003699 error = devcgroup_inode_mknod(mode, dev);
3700 if (error)
3701 return error;
3702
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 error = security_inode_mknod(dir, dentry, mode, dev);
3704 if (error)
3705 return error;
3706
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003708 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003709 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 return error;
3711}
Al Viro4d359502014-03-14 12:20:17 -04003712EXPORT_SYMBOL(vfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713
Al Virof69aac02011-07-26 04:31:40 -04003714static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003715{
3716 switch (mode & S_IFMT) {
3717 case S_IFREG:
3718 case S_IFCHR:
3719 case S_IFBLK:
3720 case S_IFIFO:
3721 case S_IFSOCK:
3722 case 0: /* zero mode translates to S_IFREG */
3723 return 0;
3724 case S_IFDIR:
3725 return -EPERM;
3726 default:
3727 return -EINVAL;
3728 }
3729}
3730
Al Viro8208a222011-07-25 17:32:17 -04003731SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003732 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733{
Al Viro2ad94ae2008-07-21 09:32:51 -04003734 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003735 struct path path;
3736 int error;
Jeff Layton972567f2012-12-20 16:00:10 -05003737 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738
Al Viro8e4bfca2012-07-20 01:17:26 +04003739 error = may_mknod(mode);
3740 if (error)
3741 return error;
Jeff Layton972567f2012-12-20 16:00:10 -05003742retry:
3743 dentry = user_path_create(dfd, filename, &path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003744 if (IS_ERR(dentry))
3745 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003746
Al Virodae6ad82011-06-26 11:50:15 -04003747 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003748 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003749 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003750 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003751 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003752 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04003754 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Mimi Zohar05d1a712016-02-29 19:52:05 -05003755 if (!error)
3756 ima_post_path_mknod(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 break;
3758 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04003759 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 new_decode_dev(dev));
3761 break;
3762 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003763 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 }
Al Viroa8104a92012-07-20 02:25:00 +04003766out:
Al Viro921a1652012-07-20 01:15:31 +04003767 done_path_create(&path, dentry);
Jeff Layton972567f2012-12-20 16:00:10 -05003768 if (retry_estale(error, lookup_flags)) {
3769 lookup_flags |= LOOKUP_REVAL;
3770 goto retry;
3771 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 return error;
3773}
3774
Al Viro8208a222011-07-25 17:32:17 -04003775SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003776{
3777 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3778}
3779
Al Viro18bb1db2011-07-26 01:41:39 -04003780int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003782 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003783 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
3785 if (error)
3786 return error;
3787
Al Viroacfa4382008-12-04 10:06:33 -05003788 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 return -EPERM;
3790
3791 mode &= (S_IRWXUGO|S_ISVTX);
3792 error = security_inode_mkdir(dir, dentry, mode);
3793 if (error)
3794 return error;
3795
Al Viro8de52772012-02-06 12:45:27 -05003796 if (max_links && dir->i_nlink >= max_links)
3797 return -EMLINK;
3798
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003800 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003801 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 return error;
3803}
Al Viro4d359502014-03-14 12:20:17 -04003804EXPORT_SYMBOL(vfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805
Dominik Brodowski0101db72018-03-11 11:34:49 +01003806long do_mkdirat(int dfd, const char __user *pathname, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807{
Dave Hansen6902d922006-09-30 23:29:01 -07003808 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003809 struct path path;
3810 int error;
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003811 unsigned int lookup_flags = LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003813retry:
3814 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003815 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003816 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003817
Al Virodae6ad82011-06-26 11:50:15 -04003818 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003819 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003820 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003821 if (!error)
3822 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003823 done_path_create(&path, dentry);
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003824 if (retry_estale(error, lookup_flags)) {
3825 lookup_flags |= LOOKUP_REVAL;
3826 goto retry;
3827 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003828 return error;
3829}
3830
Dominik Brodowski0101db72018-03-11 11:34:49 +01003831SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
3832{
3833 return do_mkdirat(dfd, pathname, mode);
3834}
3835
Al Viroa218d0f2011-11-21 14:59:34 -05003836SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003837{
Dominik Brodowski0101db72018-03-11 11:34:49 +01003838 return do_mkdirat(AT_FDCWD, pathname, mode);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003839}
3840
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3842{
3843 int error = may_delete(dir, dentry, 1);
3844
3845 if (error)
3846 return error;
3847
Al Viroacfa4382008-12-04 10:06:33 -05003848 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 return -EPERM;
3850
Al Viro1d2ef592011-09-14 18:55:41 +01003851 dget(dentry);
Al Viro59551022016-01-22 15:40:57 -05003852 inode_lock(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853
Sage Weil912dbc12011-05-24 13:06:11 -07003854 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07003855 if (is_local_mountpoint(dentry))
Sage Weil912dbc12011-05-24 13:06:11 -07003856 goto out;
3857
3858 error = security_inode_rmdir(dir, dentry);
3859 if (error)
3860 goto out;
3861
Sage Weil3cebde22011-05-29 21:20:59 -07003862 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003863 error = dir->i_op->rmdir(dir, dentry);
3864 if (error)
3865 goto out;
3866
3867 dentry->d_inode->i_flags |= S_DEAD;
3868 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003869 detach_mounts(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003870
3871out:
Al Viro59551022016-01-22 15:40:57 -05003872 inode_unlock(dentry->d_inode);
Al Viro1d2ef592011-09-14 18:55:41 +01003873 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003874 if (!error)
3875 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876 return error;
3877}
Al Viro4d359502014-03-14 12:20:17 -04003878EXPORT_SYMBOL(vfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003879
Dominik Brodowskif459dffa2018-03-11 11:34:48 +01003880long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881{
3882 int error = 0;
Jeff Layton91a27b22012-10-10 15:25:28 -04003883 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04003885 struct path path;
3886 struct qstr last;
3887 int type;
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003888 unsigned int lookup_flags = 0;
3889retry:
Al Viroc1d4dd22016-06-05 16:38:18 -04003890 name = filename_parentat(dfd, getname(pathname), lookup_flags,
3891 &path, &last, &type);
Jeff Layton91a27b22012-10-10 15:25:28 -04003892 if (IS_ERR(name))
3893 return PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894
Al Virof5beed72015-04-30 16:09:11 -04003895 switch (type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003896 case LAST_DOTDOT:
3897 error = -ENOTEMPTY;
3898 goto exit1;
3899 case LAST_DOT:
3900 error = -EINVAL;
3901 goto exit1;
3902 case LAST_ROOT:
3903 error = -EBUSY;
3904 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003906
Al Virof5beed72015-04-30 16:09:11 -04003907 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02003908 if (error)
3909 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003910
Al Viro59551022016-01-22 15:40:57 -05003911 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04003912 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003914 if (IS_ERR(dentry))
3915 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003916 if (!dentry->d_inode) {
3917 error = -ENOENT;
3918 goto exit3;
3919 }
Al Virof5beed72015-04-30 16:09:11 -04003920 error = security_path_rmdir(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003921 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003922 goto exit3;
Al Virof5beed72015-04-30 16:09:11 -04003923 error = vfs_rmdir(path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08003924exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003925 dput(dentry);
3926exit2:
Al Viro59551022016-01-22 15:40:57 -05003927 inode_unlock(path.dentry->d_inode);
Al Virof5beed72015-04-30 16:09:11 -04003928 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929exit1:
Al Virof5beed72015-04-30 16:09:11 -04003930 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 putname(name);
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003932 if (retry_estale(error, lookup_flags)) {
3933 lookup_flags |= LOOKUP_REVAL;
3934 goto retry;
3935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 return error;
3937}
3938
Heiko Carstens3cdad422009-01-14 14:14:22 +01003939SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003940{
3941 return do_rmdir(AT_FDCWD, pathname);
3942}
3943
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003944/**
3945 * vfs_unlink - unlink a filesystem object
3946 * @dir: parent directory
3947 * @dentry: victim
3948 * @delegated_inode: returns victim inode, if the inode is delegated.
3949 *
3950 * The caller must hold dir->i_mutex.
3951 *
3952 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3953 * return a reference to the inode in delegated_inode. The caller
3954 * should then break the delegation on that inode and retry. Because
3955 * breaking a delegation may take a long time, the caller should drop
3956 * dir->i_mutex before doing so.
3957 *
3958 * Alternatively, a caller may pass NULL for delegated_inode. This may
3959 * be appropriate for callers that expect the underlying filesystem not
3960 * to be NFS exported.
3961 */
3962int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963{
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003964 struct inode *target = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 int error = may_delete(dir, dentry, 0);
3966
3967 if (error)
3968 return error;
3969
Al Viroacfa4382008-12-04 10:06:33 -05003970 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971 return -EPERM;
3972
Al Viro59551022016-01-22 15:40:57 -05003973 inode_lock(target);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003974 if (is_local_mountpoint(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 error = -EBUSY;
3976 else {
3977 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003978 if (!error) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003979 error = try_break_deleg(target, delegated_inode);
3980 if (error)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003981 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 error = dir->i_op->unlink(dir, dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003983 if (!error) {
Al Virod83c49f2010-04-30 17:17:09 -04003984 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003985 detach_mounts(dentry);
3986 }
Al Virobec10522010-03-03 14:12:08 -05003987 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 }
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003989out:
Al Viro59551022016-01-22 15:40:57 -05003990 inode_unlock(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991
3992 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3993 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003994 fsnotify_link_count(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 }
Robert Love0eeca282005-07-12 17:06:03 -04003997
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998 return error;
3999}
Al Viro4d359502014-03-14 12:20:17 -04004000EXPORT_SYMBOL(vfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001
4002/*
4003 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004004 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 * writeout happening, and we don't want to prevent access to the directory
4006 * while waiting on the I/O.
4007 */
Christoph Hellwigda2f1362017-11-04 13:44:45 +03004008long do_unlinkat(int dfd, struct filename *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009{
Al Viro2ad94ae2008-07-21 09:32:51 -04004010 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04004012 struct path path;
4013 struct qstr last;
4014 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 struct inode *inode = NULL;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004016 struct inode *delegated_inode = NULL;
Jeff Layton5d18f812012-12-20 16:38:04 -05004017 unsigned int lookup_flags = 0;
4018retry:
Christoph Hellwigda2f1362017-11-04 13:44:45 +03004019 name = filename_parentat(dfd, name, lookup_flags, &path, &last, &type);
Jeff Layton91a27b22012-10-10 15:25:28 -04004020 if (IS_ERR(name))
4021 return PTR_ERR(name);
Al Viro2ad94ae2008-07-21 09:32:51 -04004022
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 error = -EISDIR;
Al Virof5beed72015-04-30 16:09:11 -04004024 if (type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09004026
Al Virof5beed72015-04-30 16:09:11 -04004027 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004028 if (error)
4029 goto exit1;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004030retry_deleg:
Al Viro59551022016-01-22 15:40:57 -05004031 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04004032 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 error = PTR_ERR(dentry);
4034 if (!IS_ERR(dentry)) {
4035 /* Why not before? Because we want correct error value */
Al Virof5beed72015-04-30 16:09:11 -04004036 if (last.name[last.len])
Török Edwin50338b82011-06-16 00:06:14 +03004037 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 inode = dentry->d_inode;
David Howellsb18825a2013-09-12 19:22:53 +01004039 if (d_is_negative(dentry))
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04004040 goto slashes;
4041 ihold(inode);
Al Virof5beed72015-04-30 16:09:11 -04004042 error = security_path_unlink(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004043 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004044 goto exit2;
Al Virof5beed72015-04-30 16:09:11 -04004045 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02004046exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047 dput(dentry);
4048 }
Al Viro59551022016-01-22 15:40:57 -05004049 inode_unlock(path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050 if (inode)
4051 iput(inode); /* truncate the inode here */
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004052 inode = NULL;
4053 if (delegated_inode) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07004054 error = break_deleg_wait(&delegated_inode);
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004055 if (!error)
4056 goto retry_deleg;
4057 }
Al Virof5beed72015-04-30 16:09:11 -04004058 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059exit1:
Al Virof5beed72015-04-30 16:09:11 -04004060 path_put(&path);
Jeff Layton5d18f812012-12-20 16:38:04 -05004061 if (retry_estale(error, lookup_flags)) {
4062 lookup_flags |= LOOKUP_REVAL;
4063 inode = NULL;
4064 goto retry;
4065 }
Christoph Hellwigda2f1362017-11-04 13:44:45 +03004066 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 return error;
4068
4069slashes:
David Howellsb18825a2013-09-12 19:22:53 +01004070 if (d_is_negative(dentry))
4071 error = -ENOENT;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02004072 else if (d_is_dir(dentry))
David Howellsb18825a2013-09-12 19:22:53 +01004073 error = -EISDIR;
4074 else
4075 error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076 goto exit2;
4077}
4078
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004079SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004080{
4081 if ((flag & ~AT_REMOVEDIR) != 0)
4082 return -EINVAL;
4083
4084 if (flag & AT_REMOVEDIR)
4085 return do_rmdir(dfd, pathname);
4086
Christoph Hellwigda2f1362017-11-04 13:44:45 +03004087 return do_unlinkat(dfd, getname(pathname));
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004088}
4089
Heiko Carstens3480b252009-01-14 14:14:16 +01004090SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004091{
Christoph Hellwigda2f1362017-11-04 13:44:45 +03004092 return do_unlinkat(AT_FDCWD, getname(pathname));
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004093}
4094
Miklos Szeredidb2e7472008-06-24 16:50:16 +02004095int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096{
Miklos Szeredia95164d2008-07-30 15:08:48 +02004097 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098
4099 if (error)
4100 return error;
4101
Al Viroacfa4382008-12-04 10:06:33 -05004102 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 return -EPERM;
4104
4105 error = security_inode_symlink(dir, dentry, oldname);
4106 if (error)
4107 return error;
4108
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07004110 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00004111 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 return error;
4113}
Al Viro4d359502014-03-14 12:20:17 -04004114EXPORT_SYMBOL(vfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115
Dominik Brodowskib724e842018-03-11 11:34:49 +01004116long do_symlinkat(const char __user *oldname, int newdfd,
4117 const char __user *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118{
Al Viro2ad94ae2008-07-21 09:32:51 -04004119 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04004120 struct filename *from;
Dave Hansen6902d922006-09-30 23:29:01 -07004121 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004122 struct path path;
Jeff Laytonf46d3562012-12-11 12:10:08 -05004123 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124
4125 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04004126 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 return PTR_ERR(from);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004128retry:
4129 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07004130 error = PTR_ERR(dentry);
4131 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004132 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07004133
Jeff Layton91a27b22012-10-10 15:25:28 -04004134 error = security_path_symlink(&path, dentry, from->name);
Al Viroa8104a92012-07-20 02:25:00 +04004135 if (!error)
Jeff Layton91a27b22012-10-10 15:25:28 -04004136 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
Al Viro921a1652012-07-20 01:15:31 +04004137 done_path_create(&path, dentry);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004138 if (retry_estale(error, lookup_flags)) {
4139 lookup_flags |= LOOKUP_REVAL;
4140 goto retry;
4141 }
Dave Hansen6902d922006-09-30 23:29:01 -07004142out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 putname(from);
4144 return error;
4145}
4146
Dominik Brodowskib724e842018-03-11 11:34:49 +01004147SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
4148 int, newdfd, const char __user *, newname)
4149{
4150 return do_symlinkat(oldname, newdfd, newname);
4151}
4152
Heiko Carstens3480b252009-01-14 14:14:16 +01004153SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004154{
Dominik Brodowskib724e842018-03-11 11:34:49 +01004155 return do_symlinkat(oldname, AT_FDCWD, newname);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004156}
4157
J. Bruce Fields146a8592011-09-20 17:14:31 -04004158/**
4159 * vfs_link - create a new link
4160 * @old_dentry: object to be linked
4161 * @dir: new parent
4162 * @new_dentry: where to create the new link
4163 * @delegated_inode: returns inode needing a delegation break
4164 *
4165 * The caller must hold dir->i_mutex
4166 *
4167 * If vfs_link discovers a delegation on the to-be-linked file in need
4168 * of breaking, it will return -EWOULDBLOCK and return a reference to the
4169 * inode in delegated_inode. The caller should then break the delegation
4170 * and retry. Because breaking a delegation may take a long time, the
4171 * caller should drop the i_mutex before doing so.
4172 *
4173 * Alternatively, a caller may pass NULL for delegated_inode. This may
4174 * be appropriate for callers that expect the underlying filesystem not
4175 * to be NFS exported.
4176 */
4177int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178{
4179 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05004180 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 int error;
4182
4183 if (!inode)
4184 return -ENOENT;
4185
Miklos Szeredia95164d2008-07-30 15:08:48 +02004186 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187 if (error)
4188 return error;
4189
4190 if (dir->i_sb != inode->i_sb)
4191 return -EXDEV;
4192
4193 /*
4194 * A link to an append-only or immutable file cannot be created.
4195 */
4196 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4197 return -EPERM;
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05004198 /*
4199 * Updating the link count will likely cause i_uid and i_gid to
4200 * be writen back improperly if their true value is unknown to
4201 * the vfs.
4202 */
4203 if (HAS_UNMAPPED_ID(inode))
4204 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05004205 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004207 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208 return -EPERM;
4209
4210 error = security_inode_link(old_dentry, dir, new_dentry);
4211 if (error)
4212 return error;
4213
Al Viro59551022016-01-22 15:40:57 -05004214 inode_lock(inode);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304215 /* Make sure we don't allow creating hardlink to an unlinked file */
Al Virof4e0c302013-06-11 08:34:36 +04004216 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304217 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05004218 else if (max_links && inode->i_nlink >= max_links)
4219 error = -EMLINK;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004220 else {
4221 error = try_break_deleg(inode, delegated_inode);
4222 if (!error)
4223 error = dir->i_op->link(old_dentry, dir, new_dentry);
4224 }
Al Virof4e0c302013-06-11 08:34:36 +04004225
4226 if (!error && (inode->i_state & I_LINKABLE)) {
4227 spin_lock(&inode->i_lock);
4228 inode->i_state &= ~I_LINKABLE;
4229 spin_unlock(&inode->i_lock);
4230 }
Al Viro59551022016-01-22 15:40:57 -05004231 inode_unlock(inode);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07004232 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004233 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234 return error;
4235}
Al Viro4d359502014-03-14 12:20:17 -04004236EXPORT_SYMBOL(vfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237
4238/*
4239 * Hardlinks are often used in delicate situations. We avoid
4240 * security-related surprises by not following symlinks on the
4241 * newname. --KAB
4242 *
4243 * We don't follow them on the oldname either to be compatible
4244 * with linux 2.0, and to avoid hard-linking to directories
4245 * and other special files. --ADM
4246 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004247SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4248 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249{
4250 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004251 struct path old_path, new_path;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004252 struct inode *delegated_inode = NULL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304253 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304256 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004257 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304258 /*
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004259 * To use null names we require CAP_DAC_READ_SEARCH
4260 * This ensures that not everyone will be able to create
4261 * handlink using the passed filedescriptor.
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304262 */
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004263 if (flags & AT_EMPTY_PATH) {
4264 if (!capable(CAP_DAC_READ_SEARCH))
4265 return -ENOENT;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304266 how = LOOKUP_EMPTY;
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004267 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004268
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304269 if (flags & AT_SYMLINK_FOLLOW)
4270 how |= LOOKUP_FOLLOW;
Jeff Layton442e31c2012-12-20 16:15:38 -05004271retry:
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304272 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04004274 return error;
4275
Jeff Layton442e31c2012-12-20 16:15:38 -05004276 new_dentry = user_path_create(newdfd, newname, &new_path,
4277 (how & LOOKUP_REVAL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07004279 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004280 goto out;
4281
4282 error = -EXDEV;
4283 if (old_path.mnt != new_path.mnt)
4284 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07004285 error = may_linkat(&old_path);
4286 if (unlikely(error))
4287 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04004288 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004289 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04004290 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004291 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
Dave Hansen75c3f292008-02-15 14:37:45 -08004292out_dput:
Al Viro921a1652012-07-20 01:15:31 +04004293 done_path_create(&new_path, new_dentry);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004294 if (delegated_inode) {
4295 error = break_deleg_wait(&delegated_inode);
Oleg Drokind22e6332014-01-31 15:41:58 -05004296 if (!error) {
4297 path_put(&old_path);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004298 goto retry;
Oleg Drokind22e6332014-01-31 15:41:58 -05004299 }
J. Bruce Fields146a8592011-09-20 17:14:31 -04004300 }
Jeff Layton442e31c2012-12-20 16:15:38 -05004301 if (retry_estale(error, how)) {
Oleg Drokind22e6332014-01-31 15:41:58 -05004302 path_put(&old_path);
Jeff Layton442e31c2012-12-20 16:15:38 -05004303 how |= LOOKUP_REVAL;
4304 goto retry;
4305 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306out:
Al Viro2d8f3032008-07-22 09:59:21 -04004307 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308
4309 return error;
4310}
4311
Heiko Carstens3480b252009-01-14 14:14:16 +01004312SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004313{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004314 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004315}
4316
Miklos Szeredibc270272014-04-01 17:08:42 +02004317/**
4318 * vfs_rename - rename a filesystem object
4319 * @old_dir: parent of source
4320 * @old_dentry: source
4321 * @new_dir: parent of destination
4322 * @new_dentry: destination
4323 * @delegated_inode: returns an inode needing a delegation break
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004324 * @flags: rename flags
Miklos Szeredibc270272014-04-01 17:08:42 +02004325 *
4326 * The caller must hold multiple mutexes--see lock_rename()).
4327 *
4328 * If vfs_rename discovers a delegation in need of breaking at either
4329 * the source or destination, it will return -EWOULDBLOCK and return a
4330 * reference to the inode in delegated_inode. The caller should then
4331 * break the delegation and retry. Because breaking a delegation may
4332 * take a long time, the caller should drop all locks before doing
4333 * so.
4334 *
4335 * Alternatively, a caller may pass NULL for delegated_inode. This may
4336 * be appropriate for callers that expect the underlying filesystem not
4337 * to be NFS exported.
4338 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 * The worst of all namespace operations - renaming directory. "Perverted"
4340 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4341 * Problems:
Mauro Carvalho Chehab0117d422017-05-12 07:45:42 -03004342 *
J. Bruce Fieldsd03b29a2014-02-17 16:52:33 -05004343 * a) we can get into loop creation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 * b) race potential - two innocent renames can create a loop together.
4345 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004346 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07004347 * story.
J. Bruce Fields6cedba82012-03-05 11:40:41 -05004348 * c) we have to lock _four_ objects - parents and victim (if it exists),
4349 * and source (if it is not a directory).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004350 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004351 * whether the target exists). Solution: try to be smart with locking
4352 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004353 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354 * move will be locked. Thus we can rank directories by the tree
4355 * (ancestors first) and rank all non-directories after them.
4356 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004357 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358 * HOWEVER, it relies on the assumption that any object with ->lookup()
4359 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4360 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07004361 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004362 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07004363 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05004364 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07004365 * locking].
4366 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004368 struct inode *new_dir, struct dentry *new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004369 struct inode **delegated_inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370{
4371 int error;
Miklos Szeredibc270272014-04-01 17:08:42 +02004372 bool is_dir = d_is_dir(old_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004373 struct inode *source = old_dentry->d_inode;
4374 struct inode *target = new_dentry->d_inode;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004375 bool new_is_dir = false;
4376 unsigned max_links = new_dir->i_sb->s_max_links;
Al Viro49d31c22017-07-07 14:51:19 -04004377 struct name_snapshot old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378
Miklos Szeredi8d3e2932016-12-16 11:02:54 +01004379 if (source == target)
Miklos Szeredibc270272014-04-01 17:08:42 +02004380 return 0;
4381
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 error = may_delete(old_dir, old_dentry, is_dir);
4383 if (error)
4384 return error;
4385
Miklos Szeredida1ce062014-04-01 17:08:43 +02004386 if (!target) {
Miklos Szeredia95164d2008-07-30 15:08:48 +02004387 error = may_create(new_dir, new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004388 } else {
4389 new_is_dir = d_is_dir(new_dentry);
4390
4391 if (!(flags & RENAME_EXCHANGE))
4392 error = may_delete(new_dir, new_dentry, is_dir);
4393 else
4394 error = may_delete(new_dir, new_dentry, new_is_dir);
4395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396 if (error)
4397 return error;
4398
Miklos Szeredi2773bf02016-09-27 11:03:58 +02004399 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400 return -EPERM;
4401
Miklos Szeredibc270272014-04-01 17:08:42 +02004402 /*
4403 * If we are going to change the parent - check write permissions,
4404 * we'll need to flip '..'.
4405 */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004406 if (new_dir != old_dir) {
4407 if (is_dir) {
4408 error = inode_permission(source, MAY_WRITE);
4409 if (error)
4410 return error;
4411 }
4412 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4413 error = inode_permission(target, MAY_WRITE);
4414 if (error)
4415 return error;
4416 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004417 }
Robert Love0eeca282005-07-12 17:06:03 -04004418
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004419 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4420 flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004421 if (error)
4422 return error;
4423
Al Viro49d31c22017-07-07 14:51:19 -04004424 take_dentry_name_snapshot(&old_name, old_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004425 dget(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004426 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004427 lock_two_nondirectories(source, target);
4428 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004429 inode_lock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004430
4431 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07004432 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004433 goto out;
4434
Miklos Szeredida1ce062014-04-01 17:08:43 +02004435 if (max_links && new_dir != old_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004436 error = -EMLINK;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004437 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
Miklos Szeredibc270272014-04-01 17:08:42 +02004438 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004439 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4440 old_dir->i_nlink >= max_links)
4441 goto out;
4442 }
4443 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4444 shrink_dcache_parent(new_dentry);
4445 if (!is_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004446 error = try_break_deleg(source, delegated_inode);
4447 if (error)
4448 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004449 }
4450 if (target && !new_is_dir) {
4451 error = try_break_deleg(target, delegated_inode);
4452 if (error)
4453 goto out;
Miklos Szeredibc270272014-04-01 17:08:42 +02004454 }
Miklos Szeredi2773bf02016-09-27 11:03:58 +02004455 error = old_dir->i_op->rename(old_dir, old_dentry,
Miklos Szeredi18fc84d2016-09-27 11:03:58 +02004456 new_dir, new_dentry, flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004457 if (error)
4458 goto out;
4459
Miklos Szeredida1ce062014-04-01 17:08:43 +02004460 if (!(flags & RENAME_EXCHANGE) && target) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004461 if (is_dir)
4462 target->i_flags |= S_DEAD;
4463 dont_mount(new_dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004464 detach_mounts(new_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004465 }
Miklos Szeredida1ce062014-04-01 17:08:43 +02004466 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4467 if (!(flags & RENAME_EXCHANGE))
4468 d_move(old_dentry, new_dentry);
4469 else
4470 d_exchange(old_dentry, new_dentry);
4471 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004472out:
Miklos Szeredida1ce062014-04-01 17:08:43 +02004473 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004474 unlock_two_nondirectories(source, target);
4475 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004476 inode_unlock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004477 dput(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004478 if (!error) {
Al Viro49d31c22017-07-07 14:51:19 -04004479 fsnotify_move(old_dir, new_dir, old_name.name, is_dir,
Miklos Szeredida1ce062014-04-01 17:08:43 +02004480 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4481 if (flags & RENAME_EXCHANGE) {
4482 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4483 new_is_dir, NULL, new_dentry);
4484 }
4485 }
Al Viro49d31c22017-07-07 14:51:19 -04004486 release_dentry_name_snapshot(&old_name);
Robert Love0eeca282005-07-12 17:06:03 -04004487
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488 return error;
4489}
Al Viro4d359502014-03-14 12:20:17 -04004490EXPORT_SYMBOL(vfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491
Dominik Brodowskiee81feb2018-03-11 11:34:28 +01004492static int do_renameat2(int olddfd, const char __user *oldname, int newdfd,
4493 const char __user *newname, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494{
Al Viro2ad94ae2008-07-21 09:32:51 -04004495 struct dentry *old_dentry, *new_dentry;
4496 struct dentry *trap;
Al Virof5beed72015-04-30 16:09:11 -04004497 struct path old_path, new_path;
4498 struct qstr old_last, new_last;
4499 int old_type, new_type;
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004500 struct inode *delegated_inode = NULL;
Jeff Layton91a27b22012-10-10 15:25:28 -04004501 struct filename *from;
4502 struct filename *to;
Al Virof5beed72015-04-30 16:09:11 -04004503 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
Jeff Laytonc6a94282012-12-11 12:10:10 -05004504 bool should_retry = false;
Al Viro2ad94ae2008-07-21 09:32:51 -04004505 int error;
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004506
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004507 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredida1ce062014-04-01 17:08:43 +02004508 return -EINVAL;
4509
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004510 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4511 (flags & RENAME_EXCHANGE))
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004512 return -EINVAL;
4513
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004514 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4515 return -EPERM;
4516
Al Virof5beed72015-04-30 16:09:11 -04004517 if (flags & RENAME_EXCHANGE)
4518 target_flags = 0;
4519
Jeff Laytonc6a94282012-12-11 12:10:10 -05004520retry:
Al Viroc1d4dd22016-06-05 16:38:18 -04004521 from = filename_parentat(olddfd, getname(oldname), lookup_flags,
4522 &old_path, &old_last, &old_type);
Jeff Layton91a27b22012-10-10 15:25:28 -04004523 if (IS_ERR(from)) {
4524 error = PTR_ERR(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 goto exit;
Jeff Layton91a27b22012-10-10 15:25:28 -04004526 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527
Al Viroc1d4dd22016-06-05 16:38:18 -04004528 to = filename_parentat(newdfd, getname(newname), lookup_flags,
4529 &new_path, &new_last, &new_type);
Jeff Layton91a27b22012-10-10 15:25:28 -04004530 if (IS_ERR(to)) {
4531 error = PTR_ERR(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004532 goto exit1;
Jeff Layton91a27b22012-10-10 15:25:28 -04004533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004534
4535 error = -EXDEV;
Al Virof5beed72015-04-30 16:09:11 -04004536 if (old_path.mnt != new_path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 goto exit2;
4538
Linus Torvalds1da177e2005-04-16 15:20:36 -07004539 error = -EBUSY;
Al Virof5beed72015-04-30 16:09:11 -04004540 if (old_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541 goto exit2;
4542
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004543 if (flags & RENAME_NOREPLACE)
4544 error = -EEXIST;
Al Virof5beed72015-04-30 16:09:11 -04004545 if (new_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004546 goto exit2;
4547
Al Virof5beed72015-04-30 16:09:11 -04004548 error = mnt_want_write(old_path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004549 if (error)
4550 goto exit2;
4551
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004552retry_deleg:
Al Virof5beed72015-04-30 16:09:11 -04004553 trap = lock_rename(new_path.dentry, old_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004554
Al Virof5beed72015-04-30 16:09:11 -04004555 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556 error = PTR_ERR(old_dentry);
4557 if (IS_ERR(old_dentry))
4558 goto exit3;
4559 /* source must exist */
4560 error = -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01004561 if (d_is_negative(old_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562 goto exit4;
Al Virof5beed72015-04-30 16:09:11 -04004563 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564 error = PTR_ERR(new_dentry);
4565 if (IS_ERR(new_dentry))
4566 goto exit4;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004567 error = -EEXIST;
4568 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4569 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004570 if (flags & RENAME_EXCHANGE) {
4571 error = -ENOENT;
4572 if (d_is_negative(new_dentry))
4573 goto exit5;
4574
4575 if (!d_is_dir(new_dentry)) {
4576 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004577 if (new_last.name[new_last.len])
Miklos Szeredida1ce062014-04-01 17:08:43 +02004578 goto exit5;
4579 }
4580 }
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004581 /* unless the source is a directory trailing slashes give -ENOTDIR */
4582 if (!d_is_dir(old_dentry)) {
4583 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004584 if (old_last.name[old_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004585 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004586 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004587 goto exit5;
4588 }
4589 /* source should not be ancestor of target */
4590 error = -EINVAL;
4591 if (old_dentry == trap)
4592 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004593 /* target should not be an ancestor of source */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004594 if (!(flags & RENAME_EXCHANGE))
4595 error = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 if (new_dentry == trap)
4597 goto exit5;
4598
Al Virof5beed72015-04-30 16:09:11 -04004599 error = security_path_rename(&old_path, old_dentry,
4600 &new_path, new_dentry, flags);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004601 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004602 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004603 error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4604 new_path.dentry->d_inode, new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004605 &delegated_inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004606exit5:
4607 dput(new_dentry);
4608exit4:
4609 dput(old_dentry);
4610exit3:
Al Virof5beed72015-04-30 16:09:11 -04004611 unlock_rename(new_path.dentry, old_path.dentry);
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004612 if (delegated_inode) {
4613 error = break_deleg_wait(&delegated_inode);
4614 if (!error)
4615 goto retry_deleg;
4616 }
Al Virof5beed72015-04-30 16:09:11 -04004617 mnt_drop_write(old_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618exit2:
Jeff Laytonc6a94282012-12-11 12:10:10 -05004619 if (retry_estale(error, lookup_flags))
4620 should_retry = true;
Al Virof5beed72015-04-30 16:09:11 -04004621 path_put(&new_path);
Al Viro2ad94ae2008-07-21 09:32:51 -04004622 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004623exit1:
Al Virof5beed72015-04-30 16:09:11 -04004624 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004625 putname(from);
Jeff Laytonc6a94282012-12-11 12:10:10 -05004626 if (should_retry) {
4627 should_retry = false;
4628 lookup_flags |= LOOKUP_REVAL;
4629 goto retry;
4630 }
Al Viro2ad94ae2008-07-21 09:32:51 -04004631exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632 return error;
4633}
4634
Dominik Brodowskiee81feb2018-03-11 11:34:28 +01004635SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4636 int, newdfd, const char __user *, newname, unsigned int, flags)
4637{
4638 return do_renameat2(olddfd, oldname, newdfd, newname, flags);
4639}
4640
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004641SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4642 int, newdfd, const char __user *, newname)
4643{
Dominik Brodowskiee81feb2018-03-11 11:34:28 +01004644 return do_renameat2(olddfd, oldname, newdfd, newname, 0);
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004645}
4646
Heiko Carstensa26eab22009-01-14 14:14:17 +01004647SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004648{
Dominik Brodowskiee81feb2018-03-11 11:34:28 +01004649 return do_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004650}
4651
Miklos Szeredi787fb6b2014-10-24 00:14:36 +02004652int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4653{
4654 int error = may_create(dir, dentry);
4655 if (error)
4656 return error;
4657
4658 if (!dir->i_op->mknod)
4659 return -EPERM;
4660
4661 return dir->i_op->mknod(dir, dentry,
4662 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4663}
4664EXPORT_SYMBOL(vfs_whiteout);
4665
Al Viro5d826c82014-03-14 13:42:45 -04004666int readlink_copy(char __user *buffer, int buflen, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667{
Al Viro5d826c82014-03-14 13:42:45 -04004668 int len = PTR_ERR(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004669 if (IS_ERR(link))
4670 goto out;
4671
4672 len = strlen(link);
4673 if (len > (unsigned) buflen)
4674 len = buflen;
4675 if (copy_to_user(buffer, link, len))
4676 len = -EFAULT;
4677out:
4678 return len;
4679}
4680
4681/*
4682 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
Al Viro6b255392015-11-17 10:20:54 -05004683 * have ->get_link() not calling nd_jump_link(). Using (or not using) it
4684 * for any given inode is up to filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004685 */
Miklos Szeredid16744e2016-12-09 16:45:04 +01004686static int generic_readlink(struct dentry *dentry, char __user *buffer,
4687 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004688{
Al Virofceef392015-12-29 15:58:39 -05004689 DEFINE_DELAYED_CALL(done);
Al Viro5f2c4172015-05-07 11:14:26 -04004690 struct inode *inode = d_inode(dentry);
4691 const char *link = inode->i_link;
Marcin Slusarz694a1762008-06-09 16:40:37 -07004692 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004693
Al Virod4dee482015-04-30 20:08:02 -04004694 if (!link) {
Al Virofceef392015-12-29 15:58:39 -05004695 link = inode->i_op->get_link(dentry, inode, &done);
Al Virod4dee482015-04-30 20:08:02 -04004696 if (IS_ERR(link))
4697 return PTR_ERR(link);
4698 }
Al Viro680baac2015-05-02 13:32:22 -04004699 res = readlink_copy(buffer, buflen, link);
Al Virofceef392015-12-29 15:58:39 -05004700 do_delayed_call(&done);
Marcin Slusarz694a1762008-06-09 16:40:37 -07004701 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004702}
4703
Miklos Szeredid60874c2016-10-04 14:40:45 +02004704/**
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +01004705 * vfs_readlink - copy symlink body into userspace buffer
4706 * @dentry: dentry on which to get symbolic link
4707 * @buffer: user memory pointer
4708 * @buflen: size of buffer
4709 *
4710 * Does not touch atime. That's up to the caller if necessary
4711 *
4712 * Does not call security hook.
4713 */
4714int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4715{
4716 struct inode *inode = d_inode(dentry);
4717
Miklos Szeredi76fca902016-12-09 16:45:04 +01004718 if (unlikely(!(inode->i_opflags & IOP_DEFAULT_READLINK))) {
4719 if (unlikely(inode->i_op->readlink))
4720 return inode->i_op->readlink(dentry, buffer, buflen);
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +01004721
Miklos Szeredi76fca902016-12-09 16:45:04 +01004722 if (!d_is_symlink(dentry))
4723 return -EINVAL;
4724
4725 spin_lock(&inode->i_lock);
4726 inode->i_opflags |= IOP_DEFAULT_READLINK;
4727 spin_unlock(&inode->i_lock);
4728 }
4729
4730 return generic_readlink(dentry, buffer, buflen);
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +01004731}
4732EXPORT_SYMBOL(vfs_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733
Miklos Szeredid60874c2016-10-04 14:40:45 +02004734/**
4735 * vfs_get_link - get symlink body
4736 * @dentry: dentry on which to get symbolic link
4737 * @done: caller needs to free returned data with this
4738 *
4739 * Calls security hook and i_op->get_link() on the supplied inode.
4740 *
4741 * It does not touch atime. That's up to the caller if necessary.
4742 *
4743 * Does not work on "special" symlinks like /proc/$$/fd/N
4744 */
4745const char *vfs_get_link(struct dentry *dentry, struct delayed_call *done)
4746{
4747 const char *res = ERR_PTR(-EINVAL);
4748 struct inode *inode = d_inode(dentry);
4749
4750 if (d_is_symlink(dentry)) {
4751 res = ERR_PTR(security_inode_readlink(dentry));
4752 if (!res)
4753 res = inode->i_op->get_link(dentry, inode, done);
4754 }
4755 return res;
4756}
4757EXPORT_SYMBOL(vfs_get_link);
4758
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759/* get the link contents into pagecache */
Al Viro6b255392015-11-17 10:20:54 -05004760const char *page_get_link(struct dentry *dentry, struct inode *inode,
Al Virofceef392015-12-29 15:58:39 -05004761 struct delayed_call *callback)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762{
Duane Griffinebd09ab2008-12-19 20:47:12 +00004763 char *kaddr;
4764 struct page *page;
Al Viro6b255392015-11-17 10:20:54 -05004765 struct address_space *mapping = inode->i_mapping;
4766
Al Virod3883d42015-11-17 10:41:04 -05004767 if (!dentry) {
4768 page = find_get_page(mapping, 0);
4769 if (!page)
4770 return ERR_PTR(-ECHILD);
4771 if (!PageUptodate(page)) {
4772 put_page(page);
4773 return ERR_PTR(-ECHILD);
4774 }
4775 } else {
4776 page = read_mapping_page(mapping, 0, NULL);
4777 if (IS_ERR(page))
4778 return (char*)page;
4779 }
Al Virofceef392015-12-29 15:58:39 -05004780 set_delayed_call(callback, page_put_link, page);
Al Viro21fc61c2015-11-17 01:07:57 -05004781 BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM);
4782 kaddr = page_address(page);
Al Viro6b255392015-11-17 10:20:54 -05004783 nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1);
Duane Griffinebd09ab2008-12-19 20:47:12 +00004784 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004785}
4786
Al Viro6b255392015-11-17 10:20:54 -05004787EXPORT_SYMBOL(page_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004788
Al Virofceef392015-12-29 15:58:39 -05004789void page_put_link(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004790{
Al Virofceef392015-12-29 15:58:39 -05004791 put_page(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004792}
Al Viro4d359502014-03-14 12:20:17 -04004793EXPORT_SYMBOL(page_put_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794
Al Viroaa80dea2015-11-16 18:26:34 -05004795int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4796{
Al Virofceef392015-12-29 15:58:39 -05004797 DEFINE_DELAYED_CALL(done);
Al Viro6b255392015-11-17 10:20:54 -05004798 int res = readlink_copy(buffer, buflen,
4799 page_get_link(dentry, d_inode(dentry),
Al Virofceef392015-12-29 15:58:39 -05004800 &done));
4801 do_delayed_call(&done);
Al Viroaa80dea2015-11-16 18:26:34 -05004802 return res;
4803}
4804EXPORT_SYMBOL(page_readlink);
4805
Nick Piggin54566b22009-01-04 12:00:53 -08004806/*
4807 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4808 */
4809int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004810{
4811 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004812 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07004813 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08004814 int err;
Tetsuo Handac718a972017-05-08 15:58:59 -07004815 unsigned int flags = 0;
Nick Piggin54566b22009-01-04 12:00:53 -08004816 if (nofs)
4817 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004818
NeilBrown7e53cac2006-03-25 03:07:57 -08004819retry:
Nick Pigginafddba42007-10-16 01:25:01 -07004820 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08004821 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004822 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07004823 goto fail;
4824
Al Viro21fc61c2015-11-17 01:07:57 -05004825 memcpy(page_address(page), symname, len-1);
Nick Pigginafddba42007-10-16 01:25:01 -07004826
4827 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4828 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004829 if (err < 0)
4830 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07004831 if (err < len-1)
4832 goto retry;
4833
Linus Torvalds1da177e2005-04-16 15:20:36 -07004834 mark_inode_dirty(inode);
4835 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004836fail:
4837 return err;
4838}
Al Viro4d359502014-03-14 12:20:17 -04004839EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004840
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004841int page_symlink(struct inode *inode, const char *symname, int len)
4842{
4843 return __page_symlink(inode, symname, len,
Michal Hockoc62d2552015-11-06 16:28:49 -08004844 !mapping_gfp_constraint(inode->i_mapping, __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004845}
Al Viro4d359502014-03-14 12:20:17 -04004846EXPORT_SYMBOL(page_symlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004847
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004848const struct inode_operations page_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -05004849 .get_link = page_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004850};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004851EXPORT_SYMBOL(page_symlink_inode_operations);