blob: 6e0f6eea98960fbaf79357ae56d2425c7e224d15 [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/*
Al Viroa03ece52018-03-08 11:00:45 -05001476 * Parent directory has inode locked exclusive. This is one
1477 * and only case when ->lookup() gets called on non in-lookup
1478 * dentries - as the matter of fact, this only gets called
1479 * when directory is guaranteed to have no in-lookup children
1480 * at all.
Josef Bacik44396f42011-05-31 11:58:49 -04001481 */
Al Viroa03ece52018-03-08 11:00:45 -05001482static struct dentry *__lookup_hash(const struct qstr *name,
1483 struct dentry *base, unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001484{
Al Viroa03ece52018-03-08 11:00:45 -05001485 struct dentry *dentry = lookup_dcache(name, base, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001486 struct dentry *old;
Al Viroa03ece52018-03-08 11:00:45 -05001487 struct inode *dir = base->d_inode;
1488
1489 if (dentry)
1490 return dentry;
Josef Bacik44396f42011-05-31 11:58:49 -04001491
1492 /* Don't create child dentry for a dead directory. */
Al Viroa03ece52018-03-08 11:00:45 -05001493 if (unlikely(IS_DEADDIR(dir)))
Josef Bacik44396f42011-05-31 11:58:49 -04001494 return ERR_PTR(-ENOENT);
Al Viroa03ece52018-03-08 11:00:45 -05001495
1496 dentry = d_alloc(base, name);
1497 if (unlikely(!dentry))
1498 return ERR_PTR(-ENOMEM);
Josef Bacik44396f42011-05-31 11:58:49 -04001499
Al Viro72bd8662012-06-10 17:17:17 -04001500 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001501 if (unlikely(old)) {
1502 dput(dentry);
1503 dentry = old;
1504 }
1505 return dentry;
1506}
1507
Al Viroe97cdc82013-01-24 18:16:00 -05001508static int lookup_fast(struct nameidata *nd,
Al Viro254cf582015-05-05 09:40:46 -04001509 struct path *path, struct inode **inode,
1510 unsigned *seqp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511{
Jan Blunck4ac91372008-02-14 19:34:32 -08001512 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001513 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001514 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001515 int err;
1516
Al Viro3cac2602009-08-13 18:27:43 +04001517 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001518 * Rename seqlock is not required here because in the off chance
Al Viro5d0f49c2016-03-05 21:32:53 -05001519 * of a false negative due to a concurrent rename, the caller is
1520 * going to fall back to non-racy lookup.
Nick Pigginb04f7842010-08-18 04:37:34 +10001521 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001522 if (nd->flags & LOOKUP_RCU) {
1523 unsigned seq;
Al Viro766c4cb2015-05-07 19:24:57 -04001524 bool negative;
Linus Torvaldsda53be12013-05-21 15:22:44 -07001525 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
Al Viro5d0f49c2016-03-05 21:32:53 -05001526 if (unlikely(!dentry)) {
Al Viro4675ac32017-01-09 22:29:15 -05001527 if (unlazy_walk(nd))
Al Viro5d0f49c2016-03-05 21:32:53 -05001528 return -ECHILD;
Al Viroe9742b52016-03-05 22:04:59 -05001529 return 0;
Al Viro5d0f49c2016-03-05 21:32:53 -05001530 }
Al Viro5a18fff2011-03-11 04:44:53 -05001531
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001532 /*
1533 * This sequence count validates that the inode matches
1534 * the dentry name information from lookup.
1535 */
David Howells63afdfc2015-05-06 15:59:00 +01001536 *inode = d_backing_inode(dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04001537 negative = d_is_negative(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001538 if (unlikely(read_seqcount_retry(&dentry->d_seq, seq)))
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001539 return -ECHILD;
1540
1541 /*
1542 * This sequence count validates that the parent had no
1543 * changes while we did the lookup of the dentry above.
1544 *
1545 * The memory barrier in read_seqcount_begin of child is
1546 * enough, we can use __read_seqcount_retry here.
1547 */
Al Viro5d0f49c2016-03-05 21:32:53 -05001548 if (unlikely(__read_seqcount_retry(&parent->d_seq, nd->seq)))
Nick Piggin31e6b012011-01-07 17:49:52 +11001549 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001550
Al Viro254cf582015-05-05 09:40:46 -04001551 *seqp = seq;
Al Viroa89f8332017-01-09 22:25:28 -05001552 status = d_revalidate(dentry, nd->flags);
Al Viro209a7fb2017-01-09 01:35:39 -05001553 if (likely(status > 0)) {
Al Viro5d0f49c2016-03-05 21:32:53 -05001554 /*
1555 * Note: do negative dentry check after revalidation in
1556 * case that drops it.
1557 */
1558 if (unlikely(negative))
1559 return -ENOENT;
1560 path->mnt = mnt;
1561 path->dentry = dentry;
1562 if (likely(__follow_mount_rcu(nd, path, inode, seqp)))
Al Viroe9742b52016-03-05 22:04:59 -05001563 return 1;
Al Viro24643082011-02-15 01:26:22 -05001564 }
Al Viro4675ac32017-01-09 22:29:15 -05001565 if (unlazy_child(nd, dentry, seq))
Al Viro209a7fb2017-01-09 01:35:39 -05001566 return -ECHILD;
1567 if (unlikely(status == -ECHILD))
1568 /* we'd been told to redo it in non-rcu mode */
1569 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001570 } else {
Al Viroe97cdc82013-01-24 18:16:00 -05001571 dentry = __d_lookup(parent, &nd->last);
Al Viro5d0f49c2016-03-05 21:32:53 -05001572 if (unlikely(!dentry))
Al Viroe9742b52016-03-05 22:04:59 -05001573 return 0;
Al Viroa89f8332017-01-09 22:25:28 -05001574 status = d_revalidate(dentry, nd->flags);
Nick Piggin31e6b012011-01-07 17:49:52 +11001575 }
Al Viro5a18fff2011-03-11 04:44:53 -05001576 if (unlikely(status <= 0)) {
Al Viroe9742b52016-03-05 22:04:59 -05001577 if (!status)
Al Viro5d0f49c2016-03-05 21:32:53 -05001578 d_invalidate(dentry);
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001579 dput(dentry);
Al Viro5d0f49c2016-03-05 21:32:53 -05001580 return status;
Al Viro5a18fff2011-03-11 04:44:53 -05001581 }
Al Viro766c4cb2015-05-07 19:24:57 -04001582 if (unlikely(d_is_negative(dentry))) {
1583 dput(dentry);
1584 return -ENOENT;
1585 }
Al Viro5d0f49c2016-03-05 21:32:53 -05001586
David Howells9875cf82011-01-14 18:45:21 +00001587 path->mnt = mnt;
1588 path->dentry = dentry;
NeilBrown756daf22015-03-23 13:37:38 +11001589 err = follow_managed(path, nd);
Al Viroe9742b52016-03-05 22:04:59 -05001590 if (likely(err > 0))
David Howells63afdfc2015-05-06 15:59:00 +01001591 *inode = d_backing_inode(path->dentry);
Al Viro84027522015-04-22 10:30:08 -04001592 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001593}
1594
1595/* Fast lookup failed, do it the slow way */
Al Viro88d83312018-04-06 16:43:47 -04001596static struct dentry *__lookup_slow(const struct qstr *name,
1597 struct dentry *dir,
1598 unsigned int flags)
Miklos Szeredi697f5142012-05-21 17:30:05 +02001599{
Al Viro88d83312018-04-06 16:43:47 -04001600 struct dentry *dentry, *old;
Al Viro19363862016-04-14 19:33:34 -04001601 struct inode *inode = dir->d_inode;
Al Virod9171b92016-04-15 03:33:13 -04001602 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Al Viro19363862016-04-14 19:33:34 -04001603
Al Viro19363862016-04-14 19:33:34 -04001604 /* Don't go there if it's already dead */
Al Viro94bdd652016-04-15 02:42:04 -04001605 if (unlikely(IS_DEADDIR(inode)))
Al Viro88d83312018-04-06 16:43:47 -04001606 return ERR_PTR(-ENOENT);
Al Viro94bdd652016-04-15 02:42:04 -04001607again:
Al Virod9171b92016-04-15 03:33:13 -04001608 dentry = d_alloc_parallel(dir, name, &wq);
Al Viro94bdd652016-04-15 02:42:04 -04001609 if (IS_ERR(dentry))
Al Viro88d83312018-04-06 16:43:47 -04001610 return dentry;
Al Viro94bdd652016-04-15 02:42:04 -04001611 if (unlikely(!d_in_lookup(dentry))) {
Al Viroa89f8332017-01-09 22:25:28 -05001612 if (!(flags & LOOKUP_NO_REVAL)) {
Al Viro949a8522016-03-06 14:20:52 -05001613 int error = d_revalidate(dentry, flags);
1614 if (unlikely(error <= 0)) {
Al Viro94bdd652016-04-15 02:42:04 -04001615 if (!error) {
Al Viro949a8522016-03-06 14:20:52 -05001616 d_invalidate(dentry);
Al Viro94bdd652016-04-15 02:42:04 -04001617 dput(dentry);
1618 goto again;
1619 }
Al Viro949a8522016-03-06 14:20:52 -05001620 dput(dentry);
1621 dentry = ERR_PTR(error);
1622 }
1623 }
Al Viro94bdd652016-04-15 02:42:04 -04001624 } else {
1625 old = inode->i_op->lookup(inode, dentry, flags);
1626 d_lookup_done(dentry);
1627 if (unlikely(old)) {
1628 dput(dentry);
1629 dentry = old;
Al Viro949a8522016-03-06 14:20:52 -05001630 }
1631 }
Al Viroe3c13922016-03-06 14:03:27 -05001632 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}
1634
Al Viro88d83312018-04-06 16:43:47 -04001635static struct dentry *lookup_slow(const struct qstr *name,
1636 struct dentry *dir,
1637 unsigned int flags)
1638{
1639 struct inode *inode = dir->d_inode;
1640 struct dentry *res;
1641 inode_lock_shared(inode);
1642 res = __lookup_slow(name, dir, flags);
1643 inode_unlock_shared(inode);
1644 return res;
1645}
1646
Al Viro52094c82011-02-21 21:34:47 -05001647static inline int may_lookup(struct nameidata *nd)
1648{
1649 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001650 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001651 if (err != -ECHILD)
1652 return err;
Al Viro4675ac32017-01-09 22:29:15 -05001653 if (unlazy_walk(nd))
Al Viro52094c82011-02-21 21:34:47 -05001654 return -ECHILD;
1655 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001656 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001657}
1658
Al Viro9856fa12011-03-04 14:22:06 -05001659static inline int handle_dots(struct nameidata *nd, int type)
1660{
1661 if (type == LAST_DOTDOT) {
Al Viro9e6697e2015-12-05 20:07:21 -05001662 if (!nd->root.mnt)
1663 set_root(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001664 if (nd->flags & LOOKUP_RCU) {
Al Viro70291ae2015-05-04 07:53:00 -04001665 return follow_dotdot_rcu(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001666 } else
Eric W. Biederman397d4252015-08-15 20:27:13 -05001667 return follow_dotdot(nd);
Al Viro9856fa12011-03-04 14:22:06 -05001668 }
1669 return 0;
1670}
1671
Al Viro181548c2015-05-07 19:54:34 -04001672static int pick_link(struct nameidata *nd, struct path *link,
1673 struct inode *inode, unsigned seq)
Al Virod63ff282015-05-04 18:13:23 -04001674{
Al Viro626de992015-05-04 18:26:59 -04001675 int error;
Al Viro1cf26652015-05-06 16:01:56 -04001676 struct saved *last;
NeilBrown756daf22015-03-23 13:37:38 +11001677 if (unlikely(nd->total_link_count++ >= MAXSYMLINKS)) {
Al Viro626de992015-05-04 18:26:59 -04001678 path_to_nameidata(link, nd);
1679 return -ELOOP;
1680 }
Al Virobc40aee2015-05-09 13:04:24 -04001681 if (!(nd->flags & LOOKUP_RCU)) {
Al Viro79733872015-05-09 12:55:43 -04001682 if (link->mnt == nd->path.mnt)
1683 mntget(link->mnt);
Al Virod63ff282015-05-04 18:13:23 -04001684 }
Al Viro626de992015-05-04 18:26:59 -04001685 error = nd_alloc_stack(nd);
1686 if (unlikely(error)) {
Al Virobc40aee2015-05-09 13:04:24 -04001687 if (error == -ECHILD) {
Al Viroad1633a2017-01-08 22:35:31 -05001688 if (unlikely(!legitimize_path(nd, link, seq))) {
1689 drop_links(nd);
1690 nd->depth = 0;
1691 nd->flags &= ~LOOKUP_RCU;
1692 nd->path.mnt = NULL;
1693 nd->path.dentry = NULL;
1694 if (!(nd->flags & LOOKUP_ROOT))
1695 nd->root.mnt = NULL;
1696 rcu_read_unlock();
Al Viro4675ac32017-01-09 22:29:15 -05001697 } else if (likely(unlazy_walk(nd)) == 0)
Al Viroad1633a2017-01-08 22:35:31 -05001698 error = nd_alloc_stack(nd);
Al Virobc40aee2015-05-09 13:04:24 -04001699 }
1700 if (error) {
1701 path_put(link);
1702 return error;
1703 }
Al Viro626de992015-05-04 18:26:59 -04001704 }
1705
Al Viroab104922015-05-10 11:50:01 -04001706 last = nd->stack + nd->depth++;
Al Viro1cf26652015-05-06 16:01:56 -04001707 last->link = *link;
Al Virofceef392015-12-29 15:58:39 -05001708 clear_delayed_call(&last->done);
1709 nd->link_inode = inode;
Al Viro0450b2d2015-05-08 13:23:53 -04001710 last->seq = seq;
Al Virod63ff282015-05-04 18:13:23 -04001711 return 1;
1712}
1713
Al Viro8f64fb12016-11-14 01:50:26 -05001714enum {WALK_FOLLOW = 1, WALK_MORE = 2};
Al Viro31d66bc2016-11-14 01:43:34 -05001715
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001716/*
1717 * Do we need to follow links? We _really_ want to be able
1718 * to do this check without having to look at inode->i_op,
1719 * so we keep a cache of "no, this doesn't need follow_link"
1720 * for the common case.
1721 */
Al Viro8f64fb12016-11-14 01:50:26 -05001722static inline int step_into(struct nameidata *nd, struct path *path,
1723 int flags, struct inode *inode, unsigned seq)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001724{
Al Viro31d66bc2016-11-14 01:43:34 -05001725 if (!(flags & WALK_MORE) && nd->depth)
1726 put_link(nd);
Al Viro8f64fb12016-11-14 01:50:26 -05001727 if (likely(!d_is_symlink(path->dentry)) ||
1728 !(flags & WALK_FOLLOW || nd->flags & LOOKUP_FOLLOW)) {
1729 /* not a symlink or should not follow */
1730 path_to_nameidata(path, nd);
1731 nd->inode = inode;
1732 nd->seq = seq;
Al Virod63ff282015-05-04 18:13:23 -04001733 return 0;
Al Viro8f64fb12016-11-14 01:50:26 -05001734 }
Al Viroa7f77542016-02-27 19:31:01 -05001735 /* make sure that d_is_symlink above matches inode */
1736 if (nd->flags & LOOKUP_RCU) {
Al Viro8f64fb12016-11-14 01:50:26 -05001737 if (read_seqcount_retry(&path->dentry->d_seq, seq))
Al Viroa7f77542016-02-27 19:31:01 -05001738 return -ECHILD;
1739 }
Al Viro8f64fb12016-11-14 01:50:26 -05001740 return pick_link(nd, path, inode, seq);
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001741}
1742
Al Viro4693a542015-05-04 17:47:11 -04001743static int walk_component(struct nameidata *nd, int flags)
Al Viroce57dfc2011-03-13 19:58:58 -04001744{
Al Virocaa856342015-04-22 17:52:47 -04001745 struct path path;
Al Viroce57dfc2011-03-13 19:58:58 -04001746 struct inode *inode;
Al Viro254cf582015-05-05 09:40:46 -04001747 unsigned seq;
Al Viroce57dfc2011-03-13 19:58:58 -04001748 int err;
1749 /*
1750 * "." and ".." are special - ".." especially so because it has
1751 * to be able to know about the current root directory and
1752 * parent relationships.
1753 */
Al Viro4693a542015-05-04 17:47:11 -04001754 if (unlikely(nd->last_type != LAST_NORM)) {
1755 err = handle_dots(nd, nd->last_type);
Al Viro1c4ff1a2016-11-14 01:39:36 -05001756 if (!(flags & WALK_MORE) && nd->depth)
Al Viro4693a542015-05-04 17:47:11 -04001757 put_link(nd);
1758 return err;
1759 }
Al Viro254cf582015-05-05 09:40:46 -04001760 err = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05001761 if (unlikely(err <= 0)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001762 if (err < 0)
Al Virof0a9ba72015-05-04 07:59:30 -04001763 return err;
Al Viroe3c13922016-03-06 14:03:27 -05001764 path.dentry = lookup_slow(&nd->last, nd->path.dentry,
1765 nd->flags);
1766 if (IS_ERR(path.dentry))
1767 return PTR_ERR(path.dentry);
Al Viro7500c382016-03-31 00:23:05 -04001768
Al Viroe3c13922016-03-06 14:03:27 -05001769 path.mnt = nd->path.mnt;
1770 err = follow_managed(&path, nd);
1771 if (unlikely(err < 0))
Al Virof0a9ba72015-05-04 07:59:30 -04001772 return err;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001773
Al Viro7500c382016-03-31 00:23:05 -04001774 if (unlikely(d_is_negative(path.dentry))) {
1775 path_to_nameidata(&path, nd);
1776 return -ENOENT;
1777 }
1778
Al Viro254cf582015-05-05 09:40:46 -04001779 seq = 0; /* we are already out of RCU mode */
Al Virod4565642016-02-27 19:23:16 -05001780 inode = d_backing_inode(path.dentry);
Al Viroce57dfc2011-03-13 19:58:58 -04001781 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001782
Al Viro8f64fb12016-11-14 01:50:26 -05001783 return step_into(nd, &path, flags, inode, seq);
Al Viroce57dfc2011-03-13 19:58:58 -04001784}
1785
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786/*
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001787 * We can do the critical dentry name comparison and hashing
1788 * operations one word at a time, but we are limited to:
1789 *
1790 * - Architectures with fast unaligned word accesses. We could
1791 * do a "get_unaligned()" if this helps and is sufficiently
1792 * fast.
1793 *
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001794 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1795 * do not trap on the (extremely unlikely) case of a page
1796 * crossing operation.
1797 *
1798 * - Furthermore, we need an efficient 64-bit compile for the
1799 * 64-bit case in order to generate the "number of bytes in
1800 * the final mask". Again, that could be replaced with a
1801 * efficient population count instruction or similar.
1802 */
1803#ifdef CONFIG_DCACHE_WORD_ACCESS
1804
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001805#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001806
George Spelvin468a9422016-05-26 22:11:51 -04001807#ifdef HASH_MIX
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001808
George Spelvin468a9422016-05-26 22:11:51 -04001809/* Architecture provides HASH_MIX and fold_hash() in <asm/hash.h> */
1810
1811#elif defined(CONFIG_64BIT)
George Spelvin2a18da7a2016-05-23 07:43:58 -04001812/*
1813 * Register pressure in the mixing function is an issue, particularly
1814 * on 32-bit x86, but almost any function requires one state value and
1815 * one temporary. Instead, use a function designed for two state values
1816 * and no temporaries.
1817 *
1818 * This function cannot create a collision in only two iterations, so
1819 * we have two iterations to achieve avalanche. In those two iterations,
1820 * we have six layers of mixing, which is enough to spread one bit's
1821 * influence out to 2^6 = 64 state bits.
1822 *
1823 * Rotate constants are scored by considering either 64 one-bit input
1824 * deltas or 64*63/2 = 2016 two-bit input deltas, and finding the
1825 * probability of that delta causing a change to each of the 128 output
1826 * bits, using a sample of random initial states.
1827 *
1828 * The Shannon entropy of the computed probabilities is then summed
1829 * to produce a score. Ideally, any input change has a 50% chance of
1830 * toggling any given output bit.
1831 *
1832 * Mixing scores (in bits) for (12,45):
1833 * Input delta: 1-bit 2-bit
1834 * 1 round: 713.3 42542.6
1835 * 2 rounds: 2753.7 140389.8
1836 * 3 rounds: 5954.1 233458.2
1837 * 4 rounds: 7862.6 256672.2
1838 * Perfect: 8192 258048
1839 * (64*128) (64*63/2 * 128)
1840 */
1841#define HASH_MIX(x, y, a) \
1842 ( x ^= (a), \
1843 y ^= x, x = rol64(x,12),\
1844 x += y, y = rol64(y,45),\
1845 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001846
George Spelvin0fed3ac2016-05-02 06:31:01 -04001847/*
George Spelvin2a18da7a2016-05-23 07:43:58 -04001848 * Fold two longs into one 32-bit hash value. This must be fast, but
1849 * latency isn't quite as critical, as there is a fair bit of additional
1850 * work done before the hash value is used.
George Spelvin0fed3ac2016-05-02 06:31:01 -04001851 */
George Spelvin2a18da7a2016-05-23 07:43:58 -04001852static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001853{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001854 y ^= x * GOLDEN_RATIO_64;
1855 y *= GOLDEN_RATIO_64;
1856 return y >> 32;
George Spelvin0fed3ac2016-05-02 06:31:01 -04001857}
1858
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001859#else /* 32-bit case */
1860
George Spelvin2a18da7a2016-05-23 07:43:58 -04001861/*
1862 * Mixing scores (in bits) for (7,20):
1863 * Input delta: 1-bit 2-bit
1864 * 1 round: 330.3 9201.6
1865 * 2 rounds: 1246.4 25475.4
1866 * 3 rounds: 1907.1 31295.1
1867 * 4 rounds: 2042.3 31718.6
1868 * Perfect: 2048 31744
1869 * (32*64) (32*31/2 * 64)
1870 */
1871#define HASH_MIX(x, y, a) \
1872 ( x ^= (a), \
1873 y ^= x, x = rol32(x, 7),\
1874 x += y, y = rol32(y,20),\
1875 y *= 9 )
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001876
George Spelvin2a18da7a2016-05-23 07:43:58 -04001877static inline unsigned int fold_hash(unsigned long x, unsigned long y)
George Spelvin0fed3ac2016-05-02 06:31:01 -04001878{
George Spelvin2a18da7a2016-05-23 07:43:58 -04001879 /* Use arch-optimized multiply if one exists */
1880 return __hash_32(y ^ __hash_32(x));
George Spelvin0fed3ac2016-05-02 06:31:01 -04001881}
1882
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001883#endif
1884
George Spelvin2a18da7a2016-05-23 07:43:58 -04001885/*
1886 * Return the hash of a string of known length. This is carfully
1887 * designed to match hash_name(), which is the more critical function.
1888 * In particular, we must end by hashing a final word containing 0..7
1889 * payload bytes, to match the way that hash_name() iterates until it
1890 * finds the delimiter after the name.
1891 */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001892unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001893{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001894 unsigned long a, x = 0, y = (unsigned long)salt;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001895
1896 for (;;) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001897 if (!len)
1898 goto done;
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001899 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001900 if (len < sizeof(unsigned long))
1901 break;
George Spelvin2a18da7a2016-05-23 07:43:58 -04001902 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001903 name += sizeof(unsigned long);
1904 len -= sizeof(unsigned long);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001905 }
George Spelvin2a18da7a2016-05-23 07:43:58 -04001906 x ^= a & bytemask_from_count(len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001907done:
George Spelvin2a18da7a2016-05-23 07:43:58 -04001908 return fold_hash(x, y);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001909}
1910EXPORT_SYMBOL(full_name_hash);
1911
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001912/* Return the "hash_len" (hash and length) of a null-terminated string */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001913u64 hashlen_string(const void *salt, const char *name)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001914{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001915 unsigned long a = 0, x = 0, y = (unsigned long)salt;
1916 unsigned long adata, mask, len;
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001917 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1918
Linus Torvalds8387ff22016-06-10 07:51:30 -07001919 len = 0;
1920 goto inside;
1921
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001922 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001923 HASH_MIX(x, y, a);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001924 len += sizeof(unsigned long);
Linus Torvalds8387ff22016-06-10 07:51:30 -07001925inside:
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001926 a = load_unaligned_zeropad(name+len);
1927 } while (!has_zero(a, &adata, &constants));
1928
1929 adata = prep_zero_mask(a, adata, &constants);
1930 mask = create_zero_mask(adata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04001931 x ^= a & zero_bytemask(mask);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001932
George Spelvin2a18da7a2016-05-23 07:43:58 -04001933 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001934}
1935EXPORT_SYMBOL(hashlen_string);
1936
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001937/*
1938 * Calculate the length and hash of the path component, and
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001939 * return the "hash_len" as the result.
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001940 */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001941static inline u64 hash_name(const void *salt, const char *name)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001942{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001943 unsigned long a = 0, b, x = 0, y = (unsigned long)salt;
1944 unsigned long adata, bdata, mask, len;
Linus Torvalds36126f82012-05-26 10:43:17 -07001945 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001946
Linus Torvalds8387ff22016-06-10 07:51:30 -07001947 len = 0;
1948 goto inside;
1949
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001950 do {
George Spelvin2a18da7a2016-05-23 07:43:58 -04001951 HASH_MIX(x, y, a);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001952 len += sizeof(unsigned long);
Linus Torvalds8387ff22016-06-10 07:51:30 -07001953inside:
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001954 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07001955 b = a ^ REPEAT_BYTE('/');
1956 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001957
Linus Torvalds36126f82012-05-26 10:43:17 -07001958 adata = prep_zero_mask(a, adata, &constants);
1959 bdata = prep_zero_mask(b, bdata, &constants);
Linus Torvalds36126f82012-05-26 10:43:17 -07001960 mask = create_zero_mask(adata | bdata);
George Spelvin2a18da7a2016-05-23 07:43:58 -04001961 x ^= a & zero_bytemask(mask);
Linus Torvalds36126f82012-05-26 10:43:17 -07001962
George Spelvin2a18da7a2016-05-23 07:43:58 -04001963 return hashlen_create(fold_hash(x, y), len + find_zero(mask));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001964}
1965
George Spelvin2a18da7a2016-05-23 07:43:58 -04001966#else /* !CONFIG_DCACHE_WORD_ACCESS: Slow, byte-at-a-time version */
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001967
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001968/* Return the hash of a string of known length */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001969unsigned int full_name_hash(const void *salt, const char *name, unsigned int len)
Linus Torvalds0145acc2012-03-02 14:32:59 -08001970{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001971 unsigned long hash = init_name_hash(salt);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001972 while (len--)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001973 hash = partial_name_hash((unsigned char)*name++, hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001974 return end_name_hash(hash);
1975}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001976EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001977
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001978/* Return the "hash_len" (hash and length) of a null-terminated string */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001979u64 hashlen_string(const void *salt, const char *name)
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001980{
Linus Torvalds8387ff22016-06-10 07:51:30 -07001981 unsigned long hash = init_name_hash(salt);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001982 unsigned long len = 0, c;
1983
1984 c = (unsigned char)*name;
George Spelvine0ab7af2016-05-29 08:05:56 -04001985 while (c) {
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001986 len++;
1987 hash = partial_name_hash(c, hash);
1988 c = (unsigned char)name[len];
George Spelvine0ab7af2016-05-29 08:05:56 -04001989 }
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001990 return hashlen_create(end_name_hash(hash), len);
1991}
George Spelvinf2a031b2016-05-29 01:26:41 -04001992EXPORT_SYMBOL(hashlen_string);
George Spelvinfcfd2fb2016-05-20 08:41:37 -04001993
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001994/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001995 * We know there's a real path component here of at least
1996 * one character.
1997 */
Linus Torvalds8387ff22016-06-10 07:51:30 -07001998static inline u64 hash_name(const void *salt, const char *name)
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001999{
Linus Torvalds8387ff22016-06-10 07:51:30 -07002000 unsigned long hash = init_name_hash(salt);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002001 unsigned long len = 0, c;
2002
2003 c = (unsigned char)*name;
2004 do {
2005 len++;
2006 hash = partial_name_hash(c, hash);
2007 c = (unsigned char)name[len];
2008 } while (c && c != '/');
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002009 return hashlen_create(end_name_hash(hash), len);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002010}
2011
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08002012#endif
2013
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002014/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01002016 * This is the basic name resolution function, turning a pathname into
2017 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01002019 * Returns 0 and nd will have valid dentry and mnt on success.
2020 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 */
Al Viro6de88d72009-08-09 01:41:57 +04002022static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 int err;
Al Viro32cd7462015-04-18 20:30:49 -04002025
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 while (*name=='/')
2027 name++;
2028 if (!*name)
Al Viro9e18f102015-04-18 20:44:34 -04002029 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 /* At this point we know we have a real path component. */
2032 for(;;) {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002033 u64 hash_len;
Al Virofe479a52011-02-22 15:10:03 -05002034 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035
Al Viro52094c82011-02-21 21:34:47 -05002036 err = may_lookup(nd);
George Spelvin2a18da7a2016-05-23 07:43:58 -04002037 if (err)
Al Viro3595e232015-05-09 16:54:45 -04002038 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039
Linus Torvalds8387ff22016-06-10 07:51:30 -07002040 hash_len = hash_name(nd->path.dentry, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Al Virofe479a52011-02-22 15:10:03 -05002042 type = LAST_NORM;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002043 if (name[0] == '.') switch (hashlen_len(hash_len)) {
Al Virofe479a52011-02-22 15:10:03 -05002044 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002045 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05002046 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05002047 nd->flags |= LOOKUP_JUMPED;
2048 }
Al Virofe479a52011-02-22 15:10:03 -05002049 break;
2050 case 1:
2051 type = LAST_DOT;
2052 }
Al Viro5a202bc2011-03-08 14:17:44 -05002053 if (likely(type == LAST_NORM)) {
2054 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05002055 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05002056 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
James Hogana060dc52014-09-16 13:07:35 +01002057 struct qstr this = { { .hash_len = hash_len }, .name = name };
Linus Torvaldsda53be12013-05-21 15:22:44 -07002058 err = parent->d_op->d_hash(parent, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002059 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002060 return err;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002061 hash_len = this.hash_len;
2062 name = this.name;
Al Viro5a202bc2011-03-08 14:17:44 -05002063 }
2064 }
Al Virofe479a52011-02-22 15:10:03 -05002065
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002066 nd->last.hash_len = hash_len;
2067 nd->last.name = name;
Al Viro5f4a6a62013-01-24 18:04:22 -05002068 nd->last_type = type;
2069
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002070 name += hashlen_len(hash_len);
2071 if (!*name)
Al Virobdf6cbf2015-04-18 20:21:40 -04002072 goto OK;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08002073 /*
2074 * If it wasn't NUL, we know it was '/'. Skip that
2075 * slash, and continue until no more slashes.
2076 */
2077 do {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07002078 name++;
2079 } while (unlikely(*name == '/'));
Al Viro8620c232015-05-04 08:58:35 -04002080 if (unlikely(!*name)) {
2081OK:
Al Viro368ee9b2015-05-08 17:19:59 -04002082 /* pathname body, done */
Al Viro8620c232015-05-04 08:58:35 -04002083 if (!nd->depth)
2084 return 0;
2085 name = nd->stack[nd->depth - 1].name;
Al Viro368ee9b2015-05-08 17:19:59 -04002086 /* trailing symlink, done */
Al Viro8620c232015-05-04 08:58:35 -04002087 if (!name)
2088 return 0;
2089 /* last component of nested symlink */
Al Viro8f64fb12016-11-14 01:50:26 -05002090 err = walk_component(nd, WALK_FOLLOW);
Al Viro1c4ff1a2016-11-14 01:39:36 -05002091 } else {
2092 /* not the last component */
Al Viro8f64fb12016-11-14 01:50:26 -05002093 err = walk_component(nd, WALK_FOLLOW | WALK_MORE);
Al Viro8620c232015-05-04 08:58:35 -04002094 }
Al Viroce57dfc2011-03-13 19:58:58 -04002095 if (err < 0)
Al Viro3595e232015-05-09 16:54:45 -04002096 return err;
Al Virofe479a52011-02-22 15:10:03 -05002097
Al Viroce57dfc2011-03-13 19:58:58 -04002098 if (err) {
Al Viro626de992015-05-04 18:26:59 -04002099 const char *s = get_link(nd);
Al Viro5a460272015-04-17 23:44:45 -04002100
Viresh Kumara1c83682015-08-12 15:59:44 +05302101 if (IS_ERR(s))
Al Viro3595e232015-05-09 16:54:45 -04002102 return PTR_ERR(s);
Al Virod40bcc02015-04-18 20:03:03 -04002103 err = 0;
2104 if (unlikely(!s)) {
2105 /* jumped */
Al Virob9ff4422015-05-02 20:19:23 -04002106 put_link(nd);
Al Virod40bcc02015-04-18 20:03:03 -04002107 } else {
Al Virofab51e82015-05-10 11:01:00 -04002108 nd->stack[nd->depth - 1].name = name;
2109 name = s;
2110 continue;
Al Virod40bcc02015-04-18 20:03:03 -04002111 }
Nick Piggin31e6b012011-01-07 17:49:52 +11002112 }
Al Viro97242f92015-08-01 19:59:28 -04002113 if (unlikely(!d_can_lookup(nd->path.dentry))) {
2114 if (nd->flags & LOOKUP_RCU) {
Al Viro4675ac32017-01-09 22:29:15 -05002115 if (unlazy_walk(nd))
Al Viro97242f92015-08-01 19:59:28 -04002116 return -ECHILD;
2117 }
Al Viro3595e232015-05-09 16:54:45 -04002118 return -ENOTDIR;
Al Viro97242f92015-08-01 19:59:28 -04002119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121}
2122
Al Viroc8a53ee2015-05-12 18:43:07 -04002123static const char *path_init(struct nameidata *nd, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124{
Al Viroc8a53ee2015-05-12 18:43:07 -04002125 const char *s = nd->name->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Linus Torvaldsc0eb0272017-04-02 17:10:08 -07002127 if (!*s)
2128 flags &= ~LOOKUP_RCU;
2129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro980f3ea2014-11-20 14:20:24 -05002131 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05002133 if (flags & LOOKUP_ROOT) {
David Howellsb18825a2013-09-12 19:22:53 +01002134 struct dentry *root = nd->root.dentry;
2135 struct inode *inode = root->d_inode;
Al Viro93893862017-04-15 17:29:14 -04002136 if (*s && unlikely(!d_can_lookup(root)))
2137 return ERR_PTR(-ENOTDIR);
Al Viro5b6ca022011-03-09 23:04:47 -05002138 nd->path = nd->root;
2139 nd->inode = inode;
2140 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002141 rcu_read_lock();
Al Viro5b6ca022011-03-09 23:04:47 -05002142 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro8f47a0162015-05-09 19:02:01 -04002143 nd->root_seq = nd->seq;
Al Viro48a066e2013-09-29 22:06:07 -04002144 nd->m_seq = read_seqbegin(&mount_lock);
Al Viro5b6ca022011-03-09 23:04:47 -05002145 } else {
2146 path_get(&nd->path);
2147 }
Al Viro368ee9b2015-05-08 17:19:59 -04002148 return s;
Al Viro5b6ca022011-03-09 23:04:47 -05002149 }
2150
Al Viro2a737872009-04-07 11:49:53 -04002151 nd->root.mnt = NULL;
Al Viro248fb5b2015-12-05 20:51:58 -05002152 nd->path.mnt = NULL;
2153 nd->path.dentry = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Al Viro48a066e2013-09-29 22:06:07 -04002155 nd->m_seq = read_seqbegin(&mount_lock);
Al Virofd2f7cb2015-02-22 20:07:13 -05002156 if (*s == '/') {
Al Viro9e6697e2015-12-05 20:07:21 -05002157 if (flags & LOOKUP_RCU)
Al Viro8b61e742013-11-08 12:45:01 -05002158 rcu_read_lock();
Al Viro9e6697e2015-12-05 20:07:21 -05002159 set_root(nd);
Al Viro248fb5b2015-12-05 20:51:58 -05002160 if (likely(!nd_jump_root(nd)))
Al Viroef55d912015-12-05 20:25:06 -05002161 return s;
Al Viro248fb5b2015-12-05 20:51:58 -05002162 nd->root.mnt = NULL;
Al Viroef55d912015-12-05 20:25:06 -05002163 rcu_read_unlock();
2164 return ERR_PTR(-ECHILD);
Al Viroc8a53ee2015-05-12 18:43:07 -04002165 } else if (nd->dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05002166 if (flags & LOOKUP_RCU) {
2167 struct fs_struct *fs = current->fs;
2168 unsigned seq;
2169
Al Viro8b61e742013-11-08 12:45:01 -05002170 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05002171
2172 do {
2173 seq = read_seqcount_begin(&fs->seq);
2174 nd->path = fs->pwd;
Al Viroef55d912015-12-05 20:25:06 -05002175 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002176 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
2177 } while (read_seqcount_retry(&fs->seq, seq));
2178 } else {
2179 get_fs_pwd(current->fs, &nd->path);
Al Viroef55d912015-12-05 20:25:06 -05002180 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002181 }
Al Viroef55d912015-12-05 20:25:06 -05002182 return s;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002183 } else {
Jeff Layton582aa642012-12-11 08:56:16 -05002184 /* Caller must check execute permissions on the starting path component */
Al Viroc8a53ee2015-05-12 18:43:07 -04002185 struct fd f = fdget_raw(nd->dfd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002186 struct dentry *dentry;
2187
Al Viro2903ff02012-08-28 12:52:22 -04002188 if (!f.file)
Al Viro368ee9b2015-05-08 17:19:59 -04002189 return ERR_PTR(-EBADF);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002190
Al Viro2903ff02012-08-28 12:52:22 -04002191 dentry = f.file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002192
Al Virofd2f7cb2015-02-22 20:07:13 -05002193 if (*s) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002194 if (!d_can_lookup(dentry)) {
Al Viro2903ff02012-08-28 12:52:22 -04002195 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002196 return ERR_PTR(-ENOTDIR);
Al Viro2903ff02012-08-28 12:52:22 -04002197 }
Al Virof52e0c12011-03-14 18:56:51 -04002198 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002199
Al Viro2903ff02012-08-28 12:52:22 -04002200 nd->path = f.file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05002201 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05002202 rcu_read_lock();
Al Viro34a26b92015-05-11 08:05:05 -04002203 nd->inode = nd->path.dentry->d_inode;
2204 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viroe41f7d42011-02-22 14:02:58 -05002205 } else {
Al Viro2903ff02012-08-28 12:52:22 -04002206 path_get(&nd->path);
Al Viro34a26b92015-05-11 08:05:05 -04002207 nd->inode = nd->path.dentry->d_inode;
Al Viroe41f7d42011-02-22 14:02:58 -05002208 }
Al Viro34a26b92015-05-11 08:05:05 -04002209 fdput(f);
Al Viro368ee9b2015-05-08 17:19:59 -04002210 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 }
Al Viro9b4a9b12009-04-07 11:44:16 -04002212}
2213
Al Viro3bdba282015-05-08 17:37:07 -04002214static const char *trailing_symlink(struct nameidata *nd)
Al Viro95fa25d2015-04-22 13:46:57 -04002215{
2216 const char *s;
Al Virofec2fa22015-05-06 15:58:18 -04002217 int error = may_follow_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002218 if (unlikely(error))
Al Viro3bdba282015-05-08 17:37:07 -04002219 return ERR_PTR(error);
Al Viro95fa25d2015-04-22 13:46:57 -04002220 nd->flags |= LOOKUP_PARENT;
Al Virofab51e82015-05-10 11:01:00 -04002221 nd->stack[0].name = NULL;
Al Viro3b2e7f72015-04-19 00:53:50 -04002222 s = get_link(nd);
Al Virodeb106c2015-05-08 18:05:21 -04002223 return s ? s : "";
Al Viro95fa25d2015-04-22 13:46:57 -04002224}
2225
Al Virocaa856342015-04-22 17:52:47 -04002226static inline int lookup_last(struct nameidata *nd)
Al Virobd92d7f2011-03-14 19:54:59 -04002227{
2228 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
2229 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2230
2231 nd->flags &= ~LOOKUP_PARENT;
Al Viro1c4ff1a2016-11-14 01:39:36 -05002232 return walk_component(nd, 0);
Al Virobd92d7f2011-03-14 19:54:59 -04002233}
2234
Al Viro4f757f32017-04-15 17:31:22 -04002235static int handle_lookup_down(struct nameidata *nd)
2236{
2237 struct path path = nd->path;
2238 struct inode *inode = nd->inode;
2239 unsigned seq = nd->seq;
2240 int err;
2241
2242 if (nd->flags & LOOKUP_RCU) {
2243 /*
2244 * don't bother with unlazy_walk on failure - we are
2245 * at the very beginning of walk, so we lose nothing
2246 * if we simply redo everything in non-RCU mode
2247 */
2248 if (unlikely(!__follow_mount_rcu(nd, &path, &inode, &seq)))
2249 return -ECHILD;
2250 } else {
2251 dget(path.dentry);
2252 err = follow_managed(&path, nd);
2253 if (unlikely(err < 0))
2254 return err;
2255 inode = d_backing_inode(path.dentry);
2256 seq = 0;
2257 }
2258 path_to_nameidata(&path, nd);
2259 nd->inode = inode;
2260 nd->seq = seq;
2261 return 0;
2262}
2263
Al Viro9b4a9b12009-04-07 11:44:16 -04002264/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002265static int path_lookupat(struct nameidata *nd, unsigned flags, struct path *path)
Al Viro9b4a9b12009-04-07 11:44:16 -04002266{
Al Viroc8a53ee2015-05-12 18:43:07 -04002267 const char *s = path_init(nd, flags);
Al Virobd92d7f2011-03-14 19:54:59 -04002268 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11002269
Al Viro368ee9b2015-05-08 17:19:59 -04002270 if (IS_ERR(s))
2271 return PTR_ERR(s);
Al Viro4f757f32017-04-15 17:31:22 -04002272
2273 if (unlikely(flags & LOOKUP_DOWN)) {
2274 err = handle_lookup_down(nd);
2275 if (unlikely(err < 0)) {
2276 terminate_walk(nd);
2277 return err;
2278 }
2279 }
2280
Al Viro3bdba282015-05-08 17:37:07 -04002281 while (!(err = link_path_walk(s, nd))
2282 && ((err = lookup_last(nd)) > 0)) {
2283 s = trailing_symlink(nd);
2284 if (IS_ERR(s)) {
2285 err = PTR_ERR(s);
2286 break;
Al Virobd92d7f2011-03-14 19:54:59 -04002287 }
2288 }
Al Viro9f1fafe2011-03-25 11:00:12 -04002289 if (!err)
2290 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002291
Al Virodeb106c2015-05-08 18:05:21 -04002292 if (!err && nd->flags & LOOKUP_DIRECTORY)
2293 if (!d_can_lookup(nd->path.dentry))
Al Virobd23a532011-03-23 09:56:30 -04002294 err = -ENOTDIR;
Al Viro625b6d12015-05-12 16:36:12 -04002295 if (!err) {
2296 *path = nd->path;
2297 nd->path.mnt = NULL;
2298 nd->path.dentry = NULL;
2299 }
2300 terminate_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002301 return err;
Al Viroee0827c2011-02-21 23:38:09 -05002302}
Nick Piggin31e6b012011-01-07 17:49:52 +11002303
Al Viro625b6d12015-05-12 16:36:12 -04002304static int filename_lookup(int dfd, struct filename *name, unsigned flags,
Al Viro9ad1aaa2015-05-12 16:44:39 -04002305 struct path *path, struct path *root)
Jeff Layton873f1ee2012-10-10 15:25:29 -04002306{
Al Viro894bc8c2015-05-02 07:16:16 -04002307 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002308 struct nameidata nd;
Al Viroabc9f5b2015-05-12 16:53:42 -04002309 if (IS_ERR(name))
2310 return PTR_ERR(name);
Al Viro9ad1aaa2015-05-12 16:44:39 -04002311 if (unlikely(root)) {
2312 nd.root = *root;
2313 flags |= LOOKUP_ROOT;
2314 }
Al Viro9883d182015-05-13 07:28:08 -04002315 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002316 retval = path_lookupat(&nd, flags | LOOKUP_RCU, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002317 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002318 retval = path_lookupat(&nd, flags, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002319 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002320 retval = path_lookupat(&nd, flags | LOOKUP_REVAL, path);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002321
2322 if (likely(!retval))
Al Viro625b6d12015-05-12 16:36:12 -04002323 audit_inode(name, path->dentry, flags & LOOKUP_PARENT);
Al Viro9883d182015-05-13 07:28:08 -04002324 restore_nameidata();
Al Viroe4bd1c12015-05-12 16:40:39 -04002325 putname(name);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002326 return retval;
2327}
2328
Al Viro8bcb77f2015-05-08 16:59:20 -04002329/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroc8a53ee2015-05-12 18:43:07 -04002330static int path_parentat(struct nameidata *nd, unsigned flags,
Al Viro391172c2015-05-09 11:19:16 -04002331 struct path *parent)
Al Viro8bcb77f2015-05-08 16:59:20 -04002332{
Al Viroc8a53ee2015-05-12 18:43:07 -04002333 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002334 int err;
2335 if (IS_ERR(s))
2336 return PTR_ERR(s);
2337 err = link_path_walk(s, nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002338 if (!err)
2339 err = complete_walk(nd);
Al Viro391172c2015-05-09 11:19:16 -04002340 if (!err) {
2341 *parent = nd->path;
2342 nd->path.mnt = NULL;
2343 nd->path.dentry = NULL;
2344 }
2345 terminate_walk(nd);
Al Viro8bcb77f2015-05-08 16:59:20 -04002346 return err;
2347}
2348
Al Viro5c31b6c2015-05-12 17:32:54 -04002349static struct filename *filename_parentat(int dfd, struct filename *name,
Al Viro391172c2015-05-09 11:19:16 -04002350 unsigned int flags, struct path *parent,
2351 struct qstr *last, int *type)
Al Viro8bcb77f2015-05-08 16:59:20 -04002352{
2353 int retval;
Al Viro9883d182015-05-13 07:28:08 -04002354 struct nameidata nd;
Al Viro8bcb77f2015-05-08 16:59:20 -04002355
Al Viro5c31b6c2015-05-12 17:32:54 -04002356 if (IS_ERR(name))
2357 return name;
Al Viro9883d182015-05-13 07:28:08 -04002358 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002359 retval = path_parentat(&nd, flags | LOOKUP_RCU, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002360 if (unlikely(retval == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002361 retval = path_parentat(&nd, flags, parent);
Al Viro8bcb77f2015-05-08 16:59:20 -04002362 if (unlikely(retval == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002363 retval = path_parentat(&nd, flags | LOOKUP_REVAL, parent);
Al Viro391172c2015-05-09 11:19:16 -04002364 if (likely(!retval)) {
2365 *last = nd.last;
2366 *type = nd.last_type;
2367 audit_inode(name, parent->dentry, LOOKUP_PARENT);
Al Viro5c31b6c2015-05-12 17:32:54 -04002368 } else {
2369 putname(name);
2370 name = ERR_PTR(retval);
Al Viro391172c2015-05-09 11:19:16 -04002371 }
Al Viro9883d182015-05-13 07:28:08 -04002372 restore_nameidata();
Al Viro5c31b6c2015-05-12 17:32:54 -04002373 return name;
Al Viro8bcb77f2015-05-08 16:59:20 -04002374}
2375
Al Viro79714f72012-06-15 03:01:42 +04002376/* does lookup, returns the object with parent locked */
2377struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002378{
Al Viro5c31b6c2015-05-12 17:32:54 -04002379 struct filename *filename;
2380 struct dentry *d;
Al Viro391172c2015-05-09 11:19:16 -04002381 struct qstr last;
2382 int type;
Paul Moore51689102015-01-22 00:00:03 -05002383
Al Viro5c31b6c2015-05-12 17:32:54 -04002384 filename = filename_parentat(AT_FDCWD, getname_kernel(name), 0, path,
2385 &last, &type);
Paul Moore51689102015-01-22 00:00:03 -05002386 if (IS_ERR(filename))
2387 return ERR_CAST(filename);
Al Viro5c31b6c2015-05-12 17:32:54 -04002388 if (unlikely(type != LAST_NORM)) {
Al Viro391172c2015-05-09 11:19:16 -04002389 path_put(path);
Al Viro5c31b6c2015-05-12 17:32:54 -04002390 putname(filename);
2391 return ERR_PTR(-EINVAL);
Al Viro79714f72012-06-15 03:01:42 +04002392 }
Al Viro59551022016-01-22 15:40:57 -05002393 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04002394 d = __lookup_hash(&last, path->dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04002395 if (IS_ERR(d)) {
Al Viro59551022016-01-22 15:40:57 -05002396 inode_unlock(path->dentry->d_inode);
Al Viro391172c2015-05-09 11:19:16 -04002397 path_put(path);
Al Viro79714f72012-06-15 03:01:42 +04002398 }
Paul Moore51689102015-01-22 00:00:03 -05002399 putname(filename);
Al Viro79714f72012-06-15 03:01:42 +04002400 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002401}
2402
Al Virod1811462008-08-02 00:49:18 -04002403int kern_path(const char *name, unsigned int flags, struct path *path)
2404{
Al Viroabc9f5b2015-05-12 16:53:42 -04002405 return filename_lookup(AT_FDCWD, getname_kernel(name),
2406 flags, path, NULL);
Al Virod1811462008-08-02 00:49:18 -04002407}
Al Viro4d359502014-03-14 12:20:17 -04002408EXPORT_SYMBOL(kern_path);
Al Virod1811462008-08-02 00:49:18 -04002409
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002410/**
2411 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2412 * @dentry: pointer to dentry of the base directory
2413 * @mnt: pointer to vfs mount of the base directory
2414 * @name: pointer to file name
2415 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002416 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002417 */
2418int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2419 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002420 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002421{
Al Viro9ad1aaa2015-05-12 16:44:39 -04002422 struct path root = {.mnt = mnt, .dentry = dentry};
Al Viro9ad1aaa2015-05-12 16:44:39 -04002423 /* the first argument of filename_lookup() is ignored with root */
Al Viroabc9f5b2015-05-12 16:53:42 -04002424 return filename_lookup(AT_FDCWD, getname_kernel(name),
2425 flags , path, &root);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002426}
Al Viro4d359502014-03-14 12:20:17 -04002427EXPORT_SYMBOL(vfs_path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002428
Al Viro3c95f0d2018-04-06 16:32:38 -04002429static int lookup_one_len_common(const char *name, struct dentry *base,
2430 int len, struct qstr *this)
2431{
2432 this->name = name;
2433 this->len = len;
2434 this->hash = full_name_hash(base, name, len);
2435 if (!len)
2436 return -EACCES;
2437
2438 if (unlikely(name[0] == '.')) {
2439 if (len < 2 || (len == 2 && name[1] == '.'))
2440 return -EACCES;
2441 }
2442
2443 while (len--) {
2444 unsigned int c = *(const unsigned char *)name++;
2445 if (c == '/' || c == '\0')
2446 return -EACCES;
2447 }
2448 /*
2449 * See if the low-level filesystem might want
2450 * to use its own hash..
2451 */
2452 if (base->d_flags & DCACHE_OP_HASH) {
2453 int err = base->d_op->d_hash(base, this);
2454 if (err < 0)
2455 return err;
2456 }
2457
2458 return inode_permission(base->d_inode, MAY_EXEC);
2459}
2460
Christoph Hellwigeead1912007-10-16 23:25:38 -07002461/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002462 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002463 * @name: pathname component to lookup
2464 * @base: base directory to lookup from
2465 * @len: maximum length @len should be interpreted to
2466 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002467 * Note that this routine is purely a helper for filesystem usage and should
Al Viro9e7543e2015-02-23 02:49:48 -05002468 * not be called by generic code.
NeilBrownbbddca82016-01-07 16:08:20 -05002469 *
2470 * The caller must hold base->i_mutex.
Christoph Hellwigeead1912007-10-16 23:25:38 -07002471 */
James Morris057f6c02007-04-26 00:12:05 -07002472struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2473{
Al Viro8613a202018-04-06 16:45:33 -04002474 struct dentry *dentry;
James Morris057f6c02007-04-26 00:12:05 -07002475 struct qstr this;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002476 int err;
James Morris057f6c02007-04-26 00:12:05 -07002477
Al Viro59551022016-01-22 15:40:57 -05002478 WARN_ON_ONCE(!inode_is_locked(base->d_inode));
David Woodhouse2f9092e2009-04-20 23:18:37 +01002479
Al Viro3c95f0d2018-04-06 16:32:38 -04002480 err = lookup_one_len_common(name, base, len, &this);
Miklos Szeredicda309d2012-03-26 12:54:21 +02002481 if (err)
2482 return ERR_PTR(err);
2483
Al Viro8613a202018-04-06 16:45:33 -04002484 dentry = lookup_dcache(&this, base, 0);
2485 return dentry ? dentry : __lookup_slow(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002486}
Al Viro4d359502014-03-14 12:20:17 -04002487EXPORT_SYMBOL(lookup_one_len);
James Morris057f6c02007-04-26 00:12:05 -07002488
NeilBrownbbddca82016-01-07 16:08:20 -05002489/**
2490 * lookup_one_len_unlocked - filesystem helper to lookup single pathname component
2491 * @name: pathname component to lookup
2492 * @base: base directory to lookup from
2493 * @len: maximum length @len should be interpreted to
2494 *
2495 * Note that this routine is purely a helper for filesystem usage and should
2496 * not be called by generic code.
2497 *
2498 * Unlike lookup_one_len, it should be called without the parent
2499 * i_mutex held, and will take the i_mutex itself if necessary.
2500 */
2501struct dentry *lookup_one_len_unlocked(const char *name,
2502 struct dentry *base, int len)
2503{
2504 struct qstr this;
NeilBrownbbddca82016-01-07 16:08:20 -05002505 int err;
Linus Torvalds20d00ee2016-07-29 12:17:52 -07002506 struct dentry *ret;
NeilBrownbbddca82016-01-07 16:08:20 -05002507
Al Viro3c95f0d2018-04-06 16:32:38 -04002508 err = lookup_one_len_common(name, base, len, &this);
NeilBrownbbddca82016-01-07 16:08:20 -05002509 if (err)
2510 return ERR_PTR(err);
2511
Linus Torvalds20d00ee2016-07-29 12:17:52 -07002512 ret = lookup_dcache(&this, base, 0);
2513 if (!ret)
2514 ret = lookup_slow(&this, base, 0);
2515 return ret;
NeilBrownbbddca82016-01-07 16:08:20 -05002516}
2517EXPORT_SYMBOL(lookup_one_len_unlocked);
2518
Eric W. Biedermaneedf2652016-06-02 10:29:47 -05002519#ifdef CONFIG_UNIX98_PTYS
2520int path_pts(struct path *path)
2521{
2522 /* Find something mounted on "pts" in the same directory as
2523 * the input path.
2524 */
2525 struct dentry *child, *parent;
2526 struct qstr this;
2527 int ret;
2528
2529 ret = path_parent_directory(path);
2530 if (ret)
2531 return ret;
2532
2533 parent = path->dentry;
2534 this.name = "pts";
2535 this.len = 3;
2536 child = d_hash_and_lookup(parent, &this);
2537 if (!child)
2538 return -ENOENT;
2539
2540 path->dentry = child;
2541 dput(parent);
2542 follow_mount(path);
2543 return 0;
2544}
2545#endif
2546
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002547int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2548 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549{
Al Viroabc9f5b2015-05-12 16:53:42 -04002550 return filename_lookup(dfd, getname_flags(name, flags, empty),
2551 flags, path, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552}
Al Virob853a162015-05-13 09:12:02 -04002553EXPORT_SYMBOL(user_path_at_empty);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002554
Jeff Layton80334262013-07-26 06:23:25 -04002555/**
Al Viro197df042013-09-08 14:03:27 -04002556 * mountpoint_last - look up last component for umount
Jeff Layton80334262013-07-26 06:23:25 -04002557 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
Jeff Layton80334262013-07-26 06:23:25 -04002558 *
2559 * This is a special lookup_last function just for umount. In this case, we
2560 * need to resolve the path without doing any revalidation.
2561 *
2562 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2563 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2564 * in almost all cases, this lookup will be served out of the dcache. The only
2565 * cases where it won't are if nd->last refers to a symlink or the path is
2566 * bogus and it doesn't exist.
2567 *
2568 * Returns:
2569 * -error: if there was an error during lookup. This includes -ENOENT if the
Al Viroba8f4612016-11-14 00:40:33 -05002570 * lookup found a negative dentry.
Jeff Layton80334262013-07-26 06:23:25 -04002571 *
Al Viroba8f4612016-11-14 00:40:33 -05002572 * 0: if we successfully resolved nd->last and found it to not to be a
2573 * symlink that needs to be followed.
Jeff Layton80334262013-07-26 06:23:25 -04002574 *
2575 * 1: if we successfully resolved nd->last and found it to be a symlink
Al Viroba8f4612016-11-14 00:40:33 -05002576 * that needs to be followed.
Jeff Layton80334262013-07-26 06:23:25 -04002577 */
2578static int
Al Viroba8f4612016-11-14 00:40:33 -05002579mountpoint_last(struct nameidata *nd)
Jeff Layton80334262013-07-26 06:23:25 -04002580{
2581 int error = 0;
Jeff Layton80334262013-07-26 06:23:25 -04002582 struct dentry *dir = nd->path.dentry;
Al Viroba8f4612016-11-14 00:40:33 -05002583 struct path path;
Jeff Layton80334262013-07-26 06:23:25 -04002584
Al Viro35759522013-09-08 13:41:33 -04002585 /* If we're in rcuwalk, drop out of it to handle last component */
2586 if (nd->flags & LOOKUP_RCU) {
Al Viro4675ac32017-01-09 22:29:15 -05002587 if (unlazy_walk(nd))
Al Virodeb106c2015-05-08 18:05:21 -04002588 return -ECHILD;
Jeff Layton80334262013-07-26 06:23:25 -04002589 }
2590
2591 nd->flags &= ~LOOKUP_PARENT;
2592
2593 if (unlikely(nd->last_type != LAST_NORM)) {
2594 error = handle_dots(nd, nd->last_type);
Al Viro35759522013-09-08 13:41:33 -04002595 if (error)
Al Virodeb106c2015-05-08 18:05:21 -04002596 return error;
Al Viroba8f4612016-11-14 00:40:33 -05002597 path.dentry = dget(nd->path.dentry);
Al Viro949a8522016-03-06 14:20:52 -05002598 } else {
Al Viroba8f4612016-11-14 00:40:33 -05002599 path.dentry = d_lookup(dir, &nd->last);
2600 if (!path.dentry) {
Al Viro949a8522016-03-06 14:20:52 -05002601 /*
2602 * No cached dentry. Mounted dentries are pinned in the
2603 * cache, so that means that this dentry is probably
2604 * a symlink or the path doesn't actually point
2605 * to a mounted dentry.
2606 */
Al Viroba8f4612016-11-14 00:40:33 -05002607 path.dentry = lookup_slow(&nd->last, dir,
Al Viro949a8522016-03-06 14:20:52 -05002608 nd->flags | LOOKUP_NO_REVAL);
Al Viroba8f4612016-11-14 00:40:33 -05002609 if (IS_ERR(path.dentry))
2610 return PTR_ERR(path.dentry);
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002611 }
Jeff Layton80334262013-07-26 06:23:25 -04002612 }
Al Viroba8f4612016-11-14 00:40:33 -05002613 if (d_is_negative(path.dentry)) {
2614 dput(path.dentry);
Al Virodeb106c2015-05-08 18:05:21 -04002615 return -ENOENT;
Jeff Layton80334262013-07-26 06:23:25 -04002616 }
Al Viroba8f4612016-11-14 00:40:33 -05002617 path.mnt = nd->path.mnt;
Al Viro8f64fb12016-11-14 01:50:26 -05002618 return step_into(nd, &path, 0, d_backing_inode(path.dentry), 0);
Jeff Layton80334262013-07-26 06:23:25 -04002619}
2620
2621/**
Al Viro197df042013-09-08 14:03:27 -04002622 * path_mountpoint - look up a path to be umounted
Masanari Iida2a78b8572015-09-09 15:39:23 -07002623 * @nd: lookup context
Jeff Layton80334262013-07-26 06:23:25 -04002624 * @flags: lookup flags
Al Viroc8a53ee2015-05-12 18:43:07 -04002625 * @path: pointer to container for result
Jeff Layton80334262013-07-26 06:23:25 -04002626 *
2627 * Look up the given name, but don't attempt to revalidate the last component.
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002628 * Returns 0 and "path" will be valid on success; Returns error otherwise.
Jeff Layton80334262013-07-26 06:23:25 -04002629 */
2630static int
Al Viroc8a53ee2015-05-12 18:43:07 -04002631path_mountpoint(struct nameidata *nd, unsigned flags, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002632{
Al Viroc8a53ee2015-05-12 18:43:07 -04002633 const char *s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04002634 int err;
2635 if (IS_ERR(s))
2636 return PTR_ERR(s);
Al Viro3bdba282015-05-08 17:37:07 -04002637 while (!(err = link_path_walk(s, nd)) &&
Al Viroba8f4612016-11-14 00:40:33 -05002638 (err = mountpoint_last(nd)) > 0) {
Al Viro3bdba282015-05-08 17:37:07 -04002639 s = trailing_symlink(nd);
2640 if (IS_ERR(s)) {
2641 err = PTR_ERR(s);
Jeff Layton80334262013-07-26 06:23:25 -04002642 break;
Al Viro3bdba282015-05-08 17:37:07 -04002643 }
Jeff Layton80334262013-07-26 06:23:25 -04002644 }
Al Viroba8f4612016-11-14 00:40:33 -05002645 if (!err) {
2646 *path = nd->path;
2647 nd->path.mnt = NULL;
2648 nd->path.dentry = NULL;
2649 follow_mount(path);
2650 }
Al Virodeb106c2015-05-08 18:05:21 -04002651 terminate_walk(nd);
Jeff Layton80334262013-07-26 06:23:25 -04002652 return err;
2653}
2654
Al Viro2d864652013-09-08 20:18:44 -04002655static int
Al Viro668696d2015-02-22 19:44:00 -05002656filename_mountpoint(int dfd, struct filename *name, struct path *path,
Al Viro2d864652013-09-08 20:18:44 -04002657 unsigned int flags)
2658{
Al Viro9883d182015-05-13 07:28:08 -04002659 struct nameidata nd;
Al Virocbaab2d2015-01-22 02:49:00 -05002660 int error;
Al Viro668696d2015-02-22 19:44:00 -05002661 if (IS_ERR(name))
2662 return PTR_ERR(name);
Al Viro9883d182015-05-13 07:28:08 -04002663 set_nameidata(&nd, dfd, name);
Al Viroc8a53ee2015-05-12 18:43:07 -04002664 error = path_mountpoint(&nd, flags | LOOKUP_RCU, path);
Al Viro2d864652013-09-08 20:18:44 -04002665 if (unlikely(error == -ECHILD))
Al Viroc8a53ee2015-05-12 18:43:07 -04002666 error = path_mountpoint(&nd, flags, path);
Al Viro2d864652013-09-08 20:18:44 -04002667 if (unlikely(error == -ESTALE))
Al Viroc8a53ee2015-05-12 18:43:07 -04002668 error = path_mountpoint(&nd, flags | LOOKUP_REVAL, path);
Al Viro2d864652013-09-08 20:18:44 -04002669 if (likely(!error))
Al Viro668696d2015-02-22 19:44:00 -05002670 audit_inode(name, path->dentry, 0);
Al Viro9883d182015-05-13 07:28:08 -04002671 restore_nameidata();
Al Viro668696d2015-02-22 19:44:00 -05002672 putname(name);
Al Viro2d864652013-09-08 20:18:44 -04002673 return error;
2674}
2675
Jeff Layton80334262013-07-26 06:23:25 -04002676/**
Al Viro197df042013-09-08 14:03:27 -04002677 * user_path_mountpoint_at - lookup a path from userland in order to umount it
Jeff Layton80334262013-07-26 06:23:25 -04002678 * @dfd: directory file descriptor
2679 * @name: pathname from userland
2680 * @flags: lookup flags
2681 * @path: pointer to container to hold result
2682 *
2683 * A umount is a special case for path walking. We're not actually interested
2684 * in the inode in this situation, and ESTALE errors can be a problem. We
2685 * simply want track down the dentry and vfsmount attached at the mountpoint
2686 * and avoid revalidating the last component.
2687 *
2688 * Returns 0 and populates "path" on success.
2689 */
2690int
Al Viro197df042013-09-08 14:03:27 -04002691user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
Jeff Layton80334262013-07-26 06:23:25 -04002692 struct path *path)
2693{
Al Virocbaab2d2015-01-22 02:49:00 -05002694 return filename_mountpoint(dfd, getname(name), path, flags);
Jeff Layton80334262013-07-26 06:23:25 -04002695}
2696
Al Viro2d864652013-09-08 20:18:44 -04002697int
2698kern_path_mountpoint(int dfd, const char *name, struct path *path,
2699 unsigned int flags)
2700{
Al Virocbaab2d2015-01-22 02:49:00 -05002701 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
Al Viro2d864652013-09-08 20:18:44 -04002702}
2703EXPORT_SYMBOL(kern_path_mountpoint);
2704
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002705int __check_sticky(struct inode *dir, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002707 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002708
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002709 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002711 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 return 0;
Andy Lutomirski23adbe12014-06-10 12:45:42 -07002713 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714}
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002715EXPORT_SYMBOL(__check_sticky);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
2717/*
2718 * Check whether we can remove a link victim from directory dir, check
2719 * whether the type of victim is right.
2720 * 1. We can't do it if dir is read-only (done in permission())
2721 * 2. We should have write and exec permissions on dir
2722 * 3. We can't remove anything from append-only dir
2723 * 4. We can't do anything with immutable dir (done in permission())
2724 * 5. If the sticky bit on dir is set we should either
2725 * a. be owner of dir, or
2726 * b. be owner of victim, or
2727 * c. have CAP_FOWNER capability
2728 * 6. If the victim is append-only or immutable we can't do antyhing with
2729 * links pointing to it.
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05002730 * 7. If the victim has an unknown uid or gid we can't change the inode.
2731 * 8. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2732 * 9. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2733 * 10. We can't remove a root or mountpoint.
2734 * 11. We don't allow removal of NFS sillyrenamed files; it's handled by
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 * nfs_async_unlink().
2736 */
David Howellsb18825a2013-09-12 19:22:53 +01002737static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738{
David Howells63afdfc2015-05-06 15:59:00 +01002739 struct inode *inode = d_backing_inode(victim);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 int error;
2741
David Howellsb18825a2013-09-12 19:22:53 +01002742 if (d_is_negative(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 return -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01002744 BUG_ON(!inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
2746 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002747 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748
Al Virof419a2e2008-07-22 00:07:17 -04002749 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 if (error)
2751 return error;
2752 if (IS_APPEND(dir))
2753 return -EPERM;
David Howellsb18825a2013-09-12 19:22:53 +01002754
2755 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05002756 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode) || HAS_UNMAPPED_ID(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 return -EPERM;
2758 if (isdir) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002759 if (!d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 return -ENOTDIR;
2761 if (IS_ROOT(victim))
2762 return -EBUSY;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002763 } else if (d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 return -EISDIR;
2765 if (IS_DEADDIR(dir))
2766 return -ENOENT;
2767 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2768 return -EBUSY;
2769 return 0;
2770}
2771
2772/* Check whether we can create an object with dentry child in directory
2773 * dir.
2774 * 1. We can't do it if child already exists (open has special treatment for
2775 * this case, but since we are inlined it's OK)
2776 * 2. We can't do it if dir is read-only (done in permission())
Eric W. Biederman036d5232016-07-01 12:52:06 -05002777 * 3. We can't do it if the fs can't represent the fsuid or fsgid.
2778 * 4. We should have write and exec permissions on dir
2779 * 5. We can't do it if dir is immutable (done in permission())
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002781static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782{
Eric W. Biederman036d5232016-07-01 12:52:06 -05002783 struct user_namespace *s_user_ns;
Jeff Layton14e972b2013-05-08 10:25:58 -04002784 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 if (child->d_inode)
2786 return -EEXIST;
2787 if (IS_DEADDIR(dir))
2788 return -ENOENT;
Eric W. Biederman036d5232016-07-01 12:52:06 -05002789 s_user_ns = dir->i_sb->s_user_ns;
2790 if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
2791 !kgid_has_mapping(s_user_ns, current_fsgid()))
2792 return -EOVERFLOW;
Al Virof419a2e2008-07-22 00:07:17 -04002793 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794}
2795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796/*
2797 * p1 and p2 should be directories on the same fs.
2798 */
2799struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2800{
2801 struct dentry *p;
2802
2803 if (p1 == p2) {
Al Viro59551022016-01-22 15:40:57 -05002804 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 return NULL;
2806 }
2807
Al Virofc640052016-04-10 01:33:30 -04002808 mutex_lock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002810 p = d_ancestor(p2, p1);
2811 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002812 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT);
2813 inode_lock_nested(p1->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002814 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 }
2816
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002817 p = d_ancestor(p1, p2);
2818 if (p) {
Al Viro59551022016-01-22 15:40:57 -05002819 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2820 inode_lock_nested(p2->d_inode, I_MUTEX_CHILD);
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002821 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 }
2823
Al Viro59551022016-01-22 15:40:57 -05002824 inode_lock_nested(p1->d_inode, I_MUTEX_PARENT);
2825 inode_lock_nested(p2->d_inode, I_MUTEX_PARENT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 return NULL;
2827}
Al Viro4d359502014-03-14 12:20:17 -04002828EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829
2830void unlock_rename(struct dentry *p1, struct dentry *p2)
2831{
Al Viro59551022016-01-22 15:40:57 -05002832 inode_unlock(p1->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 if (p1 != p2) {
Al Viro59551022016-01-22 15:40:57 -05002834 inode_unlock(p2->d_inode);
Al Virofc640052016-04-10 01:33:30 -04002835 mutex_unlock(&p1->d_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 }
2837}
Al Viro4d359502014-03-14 12:20:17 -04002838EXPORT_SYMBOL(unlock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
Al Viro4acdaf22011-07-26 01:42:34 -04002840int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002841 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002843 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 if (error)
2845 return error;
2846
Al Viroacfa4382008-12-04 10:06:33 -05002847 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 return -EACCES; /* shouldn't it be ENOSYS? */
2849 mode &= S_IALLUGO;
2850 mode |= S_IFREG;
2851 error = security_inode_create(dir, dentry, mode);
2852 if (error)
2853 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002854 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002855 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002856 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 return error;
2858}
Al Viro4d359502014-03-14 12:20:17 -04002859EXPORT_SYMBOL(vfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
Al Viro8e6c8482017-12-01 17:12:45 -05002861int vfs_mkobj(struct dentry *dentry, umode_t mode,
2862 int (*f)(struct dentry *, umode_t, void *),
2863 void *arg)
2864{
2865 struct inode *dir = dentry->d_parent->d_inode;
2866 int error = may_create(dir, dentry);
2867 if (error)
2868 return error;
2869
2870 mode &= S_IALLUGO;
2871 mode |= S_IFREG;
2872 error = security_inode_create(dir, dentry, mode);
2873 if (error)
2874 return error;
2875 error = f(dentry, mode, arg);
2876 if (!error)
2877 fsnotify_create(dir, dentry);
2878 return error;
2879}
2880EXPORT_SYMBOL(vfs_mkobj);
2881
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002882bool may_open_dev(const struct path *path)
2883{
2884 return !(path->mnt->mnt_flags & MNT_NODEV) &&
2885 !(path->mnt->mnt_sb->s_iflags & SB_I_NODEV);
2886}
2887
Al Virof0bb5aa2016-11-20 20:27:12 -05002888static int may_open(const struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002890 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 struct inode *inode = dentry->d_inode;
2892 int error;
2893
2894 if (!inode)
2895 return -ENOENT;
2896
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002897 switch (inode->i_mode & S_IFMT) {
2898 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002900 case S_IFDIR:
2901 if (acc_mode & MAY_WRITE)
2902 return -EISDIR;
2903 break;
2904 case S_IFBLK:
2905 case S_IFCHR:
Eric W. Biedermana2982cc2016-06-09 15:34:02 -05002906 if (!may_open_dev(path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002908 /*FALLTHRU*/
2909 case S_IFIFO:
2910 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002912 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002913 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002914
Al Viro62fb4a12015-12-26 22:33:24 -05002915 error = inode_permission(inode, MAY_OPEN | acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002916 if (error)
2917 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002918
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 /*
2920 * An append-only file must be opened in append mode for writing.
2921 */
2922 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002923 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002924 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002926 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 }
2928
2929 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002930 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002931 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002933 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002934}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Jeff Laytone1181ee2010-12-07 16:19:50 -05002936static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002937{
Al Virof0bb5aa2016-11-20 20:27:12 -05002938 const struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002939 struct inode *inode = path->dentry->d_inode;
2940 int error = get_write_access(inode);
2941 if (error)
2942 return error;
2943 /*
2944 * Refuse to truncate files with mandatory locks held on them.
2945 */
Jeff Laytond7a06982014-03-10 09:54:15 -04002946 error = locks_verify_locked(filp);
Al Viro7715b522009-12-16 03:54:00 -05002947 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002948 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002949 if (!error) {
2950 error = do_truncate(path->dentry, 0,
2951 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002952 filp);
Al Viro7715b522009-12-16 03:54:00 -05002953 }
2954 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002955 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956}
2957
Dave Hansend57999e2008-02-15 14:37:27 -08002958static inline int open_to_namei_flags(int flag)
2959{
Al Viro8a5e9292011-06-25 19:15:54 -04002960 if ((flag & O_ACCMODE) == 3)
2961 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002962 return flag;
2963}
2964
Al Virod3607752016-03-25 15:21:09 -04002965static int may_o_create(const struct path *dir, struct dentry *dentry, umode_t mode)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002966{
Seth Forshee1328c722017-01-26 14:33:46 -06002967 struct user_namespace *s_user_ns;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002968 int error = security_path_mknod(dir, dentry, mode, 0);
2969 if (error)
2970 return error;
2971
Seth Forshee1328c722017-01-26 14:33:46 -06002972 s_user_ns = dir->dentry->d_sb->s_user_ns;
2973 if (!kuid_has_mapping(s_user_ns, current_fsuid()) ||
2974 !kgid_has_mapping(s_user_ns, current_fsgid()))
2975 return -EOVERFLOW;
2976
Miklos Szeredid18e9002012-06-05 15:10:17 +02002977 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2978 if (error)
2979 return error;
2980
2981 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2982}
2983
David Howells1acf0af2012-06-14 16:13:46 +01002984/*
2985 * Attempt to atomically look up, create and open a file from a negative
2986 * dentry.
2987 *
2988 * Returns 0 if successful. The file will have been created and attached to
2989 * @file by the filesystem calling finish_open().
2990 *
2991 * Returns 1 if the file was looked up only or didn't need creating. The
2992 * caller will need to perform the open themselves. @path will have been
2993 * updated to point to the new dentry. This may be negative.
2994 *
2995 * Returns an error code otherwise.
2996 */
Al Viro2675a4e2012-06-22 12:41:10 +04002997static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2998 struct path *path, struct file *file,
2999 const struct open_flags *op,
Al Viro1643b432016-04-27 19:14:10 -04003000 int open_flag, umode_t mode,
Al Viro2675a4e2012-06-22 12:41:10 +04003001 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003002{
Miklos Szeredid18e9002012-06-05 15:10:17 +02003003 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003004 struct inode *dir = nd->path.dentry->d_inode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003005 int error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003006
Al Viro384f26e2016-04-28 02:03:55 -04003007 if (!(~open_flag & (O_EXCL | O_CREAT))) /* both O_EXCL and O_CREAT */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003008 open_flag &= ~O_TRUNC;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003009
Miklos Szeredid18e9002012-06-05 15:10:17 +02003010 if (nd->flags & LOOKUP_DIRECTORY)
3011 open_flag |= O_DIRECTORY;
3012
Al Viro30d90492012-06-22 12:40:19 +04003013 file->f_path.dentry = DENTRY_NOT_SET;
3014 file->f_path.mnt = nd->path.mnt;
Al Viro0fb1ea02016-04-27 14:13:10 -04003015 error = dir->i_op->atomic_open(dir, dentry, file,
3016 open_to_namei_flags(open_flag),
3017 mode, opened);
Al Viro6fbd0712016-04-28 11:50:59 -04003018 d_lookup_done(dentry);
Al Viro384f26e2016-04-28 02:03:55 -04003019 if (!error) {
3020 /*
3021 * We didn't have the inode before the open, so check open
3022 * permission here.
3023 */
3024 int acc_mode = op->acc_mode;
3025 if (*opened & FILE_CREATED) {
3026 WARN_ON(!(open_flag & O_CREAT));
3027 fsnotify_create(dir, dentry);
3028 acc_mode = 0;
3029 }
3030 error = may_open(&file->f_path, acc_mode, open_flag);
3031 if (WARN_ON(error > 0))
3032 error = -EINVAL;
3033 } else if (error > 0) {
Al Viro30d90492012-06-22 12:40:19 +04003034 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04003035 error = -EIO;
Al Viro03da6332013-09-16 19:22:33 -04003036 } else {
Al Viro384f26e2016-04-28 02:03:55 -04003037 if (file->f_path.dentry) {
3038 dput(dentry);
3039 dentry = file->f_path.dentry;
Al Viro03da6332013-09-16 19:22:33 -04003040 }
Al Viro384f26e2016-04-28 02:03:55 -04003041 if (*opened & FILE_CREATED)
3042 fsnotify_create(dir, dentry);
Al Viroa01e7182016-06-07 21:53:51 -04003043 if (unlikely(d_is_negative(dentry))) {
3044 error = -ENOENT;
3045 } else {
3046 path->dentry = dentry;
3047 path->mnt = nd->path.mnt;
3048 return 1;
3049 }
Sage Weil62b2ce92012-08-15 13:30:12 -07003050 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003051 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003052 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003053 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003054}
3055
Nick Piggin31e6b012011-01-07 17:49:52 +11003056/*
David Howells1acf0af2012-06-14 16:13:46 +01003057 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003058 *
3059 * Must be called with i_mutex held on parent.
3060 *
David Howells1acf0af2012-06-14 16:13:46 +01003061 * Returns 0 if the file was successfully atomically created (if necessary) and
3062 * opened. In this case the file will be returned attached to @file.
3063 *
3064 * Returns 1 if the file was not completely opened at this time, though lookups
3065 * and creations will have been performed and the dentry returned in @path will
3066 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
3067 * specified then a negative dentry may be returned.
3068 *
3069 * An error code is returned otherwise.
3070 *
3071 * FILE_CREATE will be set in @*opened if the dentry was created and will be
3072 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003073 */
Al Viro2675a4e2012-06-22 12:41:10 +04003074static int lookup_open(struct nameidata *nd, struct path *path,
3075 struct file *file,
3076 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04003077 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003078{
3079 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003080 struct inode *dir_inode = dir->d_inode;
Al Viro1643b432016-04-27 19:14:10 -04003081 int open_flag = op->open_flag;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003082 struct dentry *dentry;
Al Viro1643b432016-04-27 19:14:10 -04003083 int error, create_error = 0;
Al Viro1643b432016-04-27 19:14:10 -04003084 umode_t mode = op->mode;
Al Viro6fbd0712016-04-28 11:50:59 -04003085 DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003086
Al Viroce8644f2016-04-26 14:17:56 -04003087 if (unlikely(IS_DEADDIR(dir_inode)))
3088 return -ENOENT;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003089
Al Viro47237682012-06-10 05:01:45 -04003090 *opened &= ~FILE_CREATED;
Al Viro6fbd0712016-04-28 11:50:59 -04003091 dentry = d_lookup(dir, &nd->last);
3092 for (;;) {
3093 if (!dentry) {
3094 dentry = d_alloc_parallel(dir, &nd->last, &wq);
3095 if (IS_ERR(dentry))
3096 return PTR_ERR(dentry);
3097 }
3098 if (d_in_lookup(dentry))
3099 break;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003100
Al Viro6fbd0712016-04-28 11:50:59 -04003101 error = d_revalidate(dentry, nd->flags);
3102 if (likely(error > 0))
3103 break;
3104 if (error)
3105 goto out_dput;
3106 d_invalidate(dentry);
3107 dput(dentry);
3108 dentry = NULL;
3109 }
3110 if (dentry->d_inode) {
Al Viro6c51e512016-03-05 20:09:32 -05003111 /* Cached positive dentry: will open in f_op->open */
Miklos Szeredid18e9002012-06-05 15:10:17 +02003112 goto out_no_open;
Al Viro6c51e512016-03-05 20:09:32 -05003113 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003114
Al Viro1643b432016-04-27 19:14:10 -04003115 /*
3116 * Checking write permission is tricky, bacuse we don't know if we are
3117 * going to actually need it: O_CREAT opens should work as long as the
3118 * file exists. But checking existence breaks atomicity. The trick is
3119 * to check access and if not granted clear O_CREAT from the flags.
3120 *
3121 * Another problem is returing the "right" error value (e.g. for an
3122 * O_EXCL open we want to return EEXIST not EROFS).
3123 */
3124 if (open_flag & O_CREAT) {
3125 if (!IS_POSIXACL(dir->d_inode))
3126 mode &= ~current_umask();
3127 if (unlikely(!got_write)) {
3128 create_error = -EROFS;
3129 open_flag &= ~O_CREAT;
3130 if (open_flag & (O_EXCL | O_TRUNC))
3131 goto no_open;
3132 /* No side effects, safe to clear O_CREAT */
3133 } else {
3134 create_error = may_o_create(&nd->path, dentry, mode);
3135 if (create_error) {
3136 open_flag &= ~O_CREAT;
3137 if (open_flag & O_EXCL)
3138 goto no_open;
3139 }
3140 }
3141 } else if ((open_flag & (O_TRUNC|O_WRONLY|O_RDWR)) &&
3142 unlikely(!got_write)) {
3143 /*
3144 * No O_CREATE -> atomicity not a requirement -> fall
3145 * back to lookup + open
3146 */
3147 goto no_open;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003148 }
3149
Al Viro1643b432016-04-27 19:14:10 -04003150 if (dir_inode->i_op->atomic_open) {
3151 error = atomic_open(nd, dentry, path, file, op, open_flag,
3152 mode, opened);
3153 if (unlikely(error == -ENOENT) && create_error)
3154 error = create_error;
3155 return error;
3156 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003157
Al Viro1643b432016-04-27 19:14:10 -04003158no_open:
Al Viro6fbd0712016-04-28 11:50:59 -04003159 if (d_in_lookup(dentry)) {
Al Viro12fa5e22016-04-28 11:19:43 -04003160 struct dentry *res = dir_inode->i_op->lookup(dir_inode, dentry,
3161 nd->flags);
Al Viro6fbd0712016-04-28 11:50:59 -04003162 d_lookup_done(dentry);
Al Viro12fa5e22016-04-28 11:19:43 -04003163 if (unlikely(res)) {
3164 if (IS_ERR(res)) {
3165 error = PTR_ERR(res);
3166 goto out_dput;
3167 }
3168 dput(dentry);
3169 dentry = res;
3170 }
Miklos Szeredi54ef4872012-06-05 15:10:16 +02003171 }
3172
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003173 /* Negative dentry, just create the file */
Al Viro1643b432016-04-27 19:14:10 -04003174 if (!dentry->d_inode && (open_flag & O_CREAT)) {
Al Viro47237682012-06-10 05:01:45 -04003175 *opened |= FILE_CREATED;
Al Viroce8644f2016-04-26 14:17:56 -04003176 audit_inode_child(dir_inode, dentry, AUDIT_TYPE_CHILD_CREATE);
Al Viroce8644f2016-04-26 14:17:56 -04003177 if (!dir_inode->i_op->create) {
3178 error = -EACCES;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003179 goto out_dput;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003180 }
Al Viroce8644f2016-04-26 14:17:56 -04003181 error = dir_inode->i_op->create(dir_inode, dentry, mode,
Al Viro1643b432016-04-27 19:14:10 -04003182 open_flag & O_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003183 if (error)
3184 goto out_dput;
Al Viroce8644f2016-04-26 14:17:56 -04003185 fsnotify_create(dir_inode, dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003186 }
Al Viro1643b432016-04-27 19:14:10 -04003187 if (unlikely(create_error) && !dentry->d_inode) {
3188 error = create_error;
3189 goto out_dput;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003190 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02003191out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003192 path->dentry = dentry;
3193 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04003194 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003195
3196out_dput:
3197 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04003198 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003199}
3200
3201/*
Al Virofe2d35f2011-03-05 22:58:25 -05003202 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11003203 */
Al Viro896475d2015-04-22 18:02:17 -04003204static int do_last(struct nameidata *nd,
Al Viro2675a4e2012-06-22 12:41:10 +04003205 struct file *file, const struct open_flags *op,
Al Viro76ae2a52015-05-12 18:44:32 -04003206 int *opened)
Al Virofb1cc552009-12-24 01:58:28 -05003207{
Al Viroa1e28032009-12-24 02:12:06 -05003208 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05003209 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003210 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04003211 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04003212 int acc_mode = op->acc_mode;
Al Viro254cf582015-05-05 09:40:46 -04003213 unsigned seq;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003214 struct inode *inode;
Al Viro896475d2015-04-22 18:02:17 -04003215 struct path path;
Al Viro16c2cd72011-02-22 15:50:10 -05003216 int error;
Al Virofb1cc552009-12-24 01:58:28 -05003217
Al Viroc3e380b2011-02-23 13:39:45 -05003218 nd->flags &= ~LOOKUP_PARENT;
3219 nd->flags |= op->intent;
3220
Al Virobc77daa2013-06-06 09:12:33 -04003221 if (nd->last_type != LAST_NORM) {
Al Virofe2d35f2011-03-05 22:58:25 -05003222 error = handle_dots(nd, nd->last_type);
Al Virodeb106c2015-05-08 18:05:21 -04003223 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003224 return error;
Miklos Szeredie83db162012-06-05 15:10:29 +02003225 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05003226 }
Al Viro67ee3ad2009-12-26 07:01:01 -05003227
Al Viroca344a892011-03-09 00:36:45 -05003228 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05003229 if (nd->last.name[nd->last.len])
3230 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
3231 /* we _can_ be in RCU mode here */
Al Viro254cf582015-05-05 09:40:46 -04003232 error = lookup_fast(nd, &path, &inode, &seq);
Al Viroe9742b52016-03-05 22:04:59 -05003233 if (likely(error > 0))
Miklos Szeredi71574862012-06-05 15:10:14 +02003234 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02003235
Miklos Szeredi71574862012-06-05 15:10:14 +02003236 if (error < 0)
Al Virodeb106c2015-05-08 18:05:21 -04003237 return error;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02003238
Miklos Szeredi71574862012-06-05 15:10:14 +02003239 BUG_ON(nd->inode != dir->d_inode);
Al Viro6583fe22016-03-05 18:14:03 -05003240 BUG_ON(nd->flags & LOOKUP_RCU);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003241 } else {
3242 /* create side of things */
3243 /*
3244 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
3245 * has been cleared when we got to the last component we are
3246 * about to look up
3247 */
3248 error = complete_walk(nd);
Al Viroe8bb73d2015-05-08 16:28:42 -04003249 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003250 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02003251
Al Viro76ae2a52015-05-12 18:44:32 -04003252 audit_inode(nd->name, dir, LOOKUP_PARENT);
Miklos Szeredib6183df2012-06-05 15:10:13 +02003253 /* trailing slashes? */
Al Virodeb106c2015-05-08 18:05:21 -04003254 if (unlikely(nd->last.name[nd->last.len]))
3255 return -EISDIR;
Al Virofe2d35f2011-03-05 22:58:25 -05003256 }
3257
Al Viro9cf843e2016-04-28 19:35:16 -04003258 if (open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
Al Viro64894cf2012-07-31 00:53:35 +04003259 error = mnt_want_write(nd->path.mnt);
3260 if (!error)
3261 got_write = true;
3262 /*
3263 * do _not_ fail yet - we might not need that or fail with
3264 * a different error; let lookup_open() decide; we'll be
3265 * dropping this one anyway.
3266 */
3267 }
Al Viro9cf843e2016-04-28 19:35:16 -04003268 if (open_flag & O_CREAT)
3269 inode_lock(dir->d_inode);
3270 else
3271 inode_lock_shared(dir->d_inode);
Al Viro896475d2015-04-22 18:02:17 -04003272 error = lookup_open(nd, &path, file, op, got_write, opened);
Al Viro9cf843e2016-04-28 19:35:16 -04003273 if (open_flag & O_CREAT)
3274 inode_unlock(dir->d_inode);
3275 else
3276 inode_unlock_shared(dir->d_inode);
Al Viroa1e28032009-12-24 02:12:06 -05003277
Al Viro2675a4e2012-06-22 12:41:10 +04003278 if (error <= 0) {
3279 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02003280 goto out;
3281
Al Viro47237682012-06-10 05:01:45 -04003282 if ((*opened & FILE_CREATED) ||
Al Viro496ad9a2013-01-23 17:07:38 -05003283 !S_ISREG(file_inode(file)->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003284 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003285
Al Viro76ae2a52015-05-12 18:44:32 -04003286 audit_inode(nd->name, file->f_path.dentry, 0);
Miklos Szeredid18e9002012-06-05 15:10:17 +02003287 goto opened;
3288 }
Al Virofb1cc552009-12-24 01:58:28 -05003289
Al Viro47237682012-06-10 05:01:45 -04003290 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05003291 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05003292 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003293 will_truncate = false;
Al Viro62fb4a12015-12-26 22:33:24 -05003294 acc_mode = 0;
Al Viro896475d2015-04-22 18:02:17 -04003295 path_to_nameidata(&path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02003296 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05003297 }
3298
3299 /*
Miklos Szeredid18e9002012-06-05 15:10:17 +02003300 * If atomic_open() acquired write access it is dropped now due to
3301 * possible mount and symlink following (this might be optimized away if
3302 * necessary...)
3303 */
Al Viro64894cf2012-07-31 00:53:35 +04003304 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02003305 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003306 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003307 }
3308
Al Viroe6ec03a2016-06-05 00:23:09 -04003309 error = follow_managed(&path, nd);
3310 if (unlikely(error < 0))
3311 return error;
3312
Al Viro6583fe22016-03-05 18:14:03 -05003313 if (unlikely(d_is_negative(path.dentry))) {
3314 path_to_nameidata(&path, nd);
3315 return -ENOENT;
3316 }
3317
3318 /*
3319 * create/update audit record if it already exists.
3320 */
3321 audit_inode(nd->name, path.dentry, 0);
3322
Al Virodeb106c2015-05-08 18:05:21 -04003323 if (unlikely((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))) {
3324 path_to_nameidata(&path, nd);
3325 return -EEXIST;
3326 }
Al Virofb1cc552009-12-24 01:58:28 -05003327
Al Viro254cf582015-05-05 09:40:46 -04003328 seq = 0; /* out of RCU mode, so the value doesn't matter */
Al Virod4565642016-02-27 19:23:16 -05003329 inode = d_backing_inode(path.dentry);
Al Viro766c4cb2015-05-07 19:24:57 -04003330finish_lookup:
Al Viro8f64fb12016-11-14 01:50:26 -05003331 error = step_into(nd, &path, 0, inode, seq);
Al Virodeb106c2015-05-08 18:05:21 -04003332 if (unlikely(error))
Al Virod63ff282015-05-04 18:13:23 -04003333 return error;
Al Virobc77daa2013-06-06 09:12:33 -04003334finish_open:
Al Viro8f64fb12016-11-14 01:50:26 -05003335 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
Al Viroa3fbbde2011-11-07 21:21:26 +00003336 error = complete_walk(nd);
Al Virofac7d192016-06-04 11:41:49 -04003337 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003338 return error;
Al Viro76ae2a52015-05-12 18:44:32 -04003339 audit_inode(nd->name, nd->path.dentry, 0);
Al Virofb1cc552009-12-24 01:58:28 -05003340 error = -EISDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003341 if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003342 goto out;
Miklos Szerediaf2f5542012-05-21 17:30:11 +02003343 error = -ENOTDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003344 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003345 goto out;
David Howells4bbcbd3b2015-03-17 22:16:40 +00003346 if (!d_is_reg(nd->path.dentry))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003347 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05003348
Al Viro0f9d1a12011-03-09 00:13:14 -05003349 if (will_truncate) {
3350 error = mnt_want_write(nd->path.mnt);
3351 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003352 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04003353 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05003354 }
Miklos Szeredie83db162012-06-05 15:10:29 +02003355finish_open_created:
Al Viro6ac08702016-04-26 00:02:50 -04003356 error = may_open(&nd->path, acc_mode, open_flag);
3357 if (error)
3358 goto out;
Miklos Szeredi4aa7c632014-10-24 00:14:35 +02003359 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3360 error = vfs_open(&nd->path, file, current_cred());
Al Virofac7d192016-06-04 11:41:49 -04003361 if (error)
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003362 goto out;
Al Virofac7d192016-06-04 11:41:49 -04003363 *opened |= FILE_OPENED;
Miklos Szeredia8277b92012-06-05 15:10:32 +02003364opened:
Al Viro2675a4e2012-06-22 12:41:10 +04003365 error = open_check_o_direct(file);
Al Virofe9ec822016-04-27 03:14:20 -04003366 if (!error)
3367 error = ima_file_check(file, op->acc_mode, *opened);
3368 if (!error && will_truncate)
Al Viro2675a4e2012-06-22 12:41:10 +04003369 error = handle_truncate(file);
Al Viroca344a892011-03-09 00:36:45 -05003370out:
Al Virofe9ec822016-04-27 03:14:20 -04003371 if (unlikely(error) && (*opened & FILE_OPENED))
3372 fput(file);
Al Viroc80567c2016-02-27 19:17:33 -05003373 if (unlikely(error > 0)) {
3374 WARN_ON(1);
3375 error = -EINVAL;
3376 }
Al Viro64894cf2012-07-31 00:53:35 +04003377 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05003378 mnt_drop_write(nd->path.mnt);
Al Viro2675a4e2012-06-22 12:41:10 +04003379 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003380}
3381
Amir Goldsteinaf7bd4d2017-01-17 06:34:52 +02003382struct dentry *vfs_tmpfile(struct dentry *dentry, umode_t mode, int open_flag)
3383{
Amir Goldsteinaf7bd4d2017-01-17 06:34:52 +02003384 struct dentry *child = NULL;
3385 struct inode *dir = dentry->d_inode;
3386 struct inode *inode;
3387 int error;
3388
3389 /* we want directory to be writable */
3390 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
3391 if (error)
3392 goto out_err;
3393 error = -EOPNOTSUPP;
3394 if (!dir->i_op->tmpfile)
3395 goto out_err;
3396 error = -ENOMEM;
David Howellscdf01222017-07-04 17:25:22 +01003397 child = d_alloc(dentry, &slash_name);
Amir Goldsteinaf7bd4d2017-01-17 06:34:52 +02003398 if (unlikely(!child))
3399 goto out_err;
3400 error = dir->i_op->tmpfile(dir, child, mode);
3401 if (error)
3402 goto out_err;
3403 error = -ENOENT;
3404 inode = child->d_inode;
3405 if (unlikely(!inode))
3406 goto out_err;
3407 if (!(open_flag & O_EXCL)) {
3408 spin_lock(&inode->i_lock);
3409 inode->i_state |= I_LINKABLE;
3410 spin_unlock(&inode->i_lock);
3411 }
3412 return child;
3413
3414out_err:
3415 dput(child);
3416 return ERR_PTR(error);
3417}
3418EXPORT_SYMBOL(vfs_tmpfile);
3419
Al Viroc8a53ee2015-05-12 18:43:07 -04003420static int do_tmpfile(struct nameidata *nd, unsigned flags,
Al Viro60545d02013-06-07 01:20:27 -04003421 const struct open_flags *op,
3422 struct file *file, int *opened)
3423{
Al Viro625b6d12015-05-12 16:36:12 -04003424 struct dentry *child;
Al Viro625b6d12015-05-12 16:36:12 -04003425 struct path path;
Al Viroc8a53ee2015-05-12 18:43:07 -04003426 int error = path_lookupat(nd, flags | LOOKUP_DIRECTORY, &path);
Al Viro60545d02013-06-07 01:20:27 -04003427 if (unlikely(error))
3428 return error;
Al Viro625b6d12015-05-12 16:36:12 -04003429 error = mnt_want_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003430 if (unlikely(error))
3431 goto out;
Amir Goldsteinaf7bd4d2017-01-17 06:34:52 +02003432 child = vfs_tmpfile(path.dentry, op->mode, op->open_flag);
3433 error = PTR_ERR(child);
Hirofumi Nakagawa684e73b2017-09-26 03:21:26 +09003434 if (IS_ERR(child))
Al Viro60545d02013-06-07 01:20:27 -04003435 goto out2;
Al Viro625b6d12015-05-12 16:36:12 -04003436 dput(path.dentry);
3437 path.dentry = child;
Al Viroc8a53ee2015-05-12 18:43:07 -04003438 audit_inode(nd->name, child, 0);
Eric Rannaud69a91c22014-10-30 01:51:01 -07003439 /* Don't check for other permissions, the inode was just created */
Al Viro62fb4a12015-12-26 22:33:24 -05003440 error = may_open(&path, 0, op->open_flag);
Al Viro60545d02013-06-07 01:20:27 -04003441 if (error)
3442 goto out2;
Al Viro625b6d12015-05-12 16:36:12 -04003443 file->f_path.mnt = path.mnt;
3444 error = finish_open(file, child, NULL, opened);
Al Viro60545d02013-06-07 01:20:27 -04003445 if (error)
3446 goto out2;
3447 error = open_check_o_direct(file);
Amir Goldsteinaf7bd4d2017-01-17 06:34:52 +02003448 if (error)
Al Viro60545d02013-06-07 01:20:27 -04003449 fput(file);
3450out2:
Al Viro625b6d12015-05-12 16:36:12 -04003451 mnt_drop_write(path.mnt);
Al Viro60545d02013-06-07 01:20:27 -04003452out:
Al Viro625b6d12015-05-12 16:36:12 -04003453 path_put(&path);
Al Viro60545d02013-06-07 01:20:27 -04003454 return error;
3455}
3456
Al Viro6ac08702016-04-26 00:02:50 -04003457static int do_o_path(struct nameidata *nd, unsigned flags, struct file *file)
3458{
3459 struct path path;
3460 int error = path_lookupat(nd, flags, &path);
3461 if (!error) {
3462 audit_inode(nd->name, path.dentry, 0);
3463 error = vfs_open(&path, file, current_cred());
3464 path_put(&path);
3465 }
3466 return error;
3467}
3468
Al Viroc8a53ee2015-05-12 18:43:07 -04003469static struct file *path_openat(struct nameidata *nd,
3470 const struct open_flags *op, unsigned flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471{
Al Viro368ee9b2015-05-08 17:19:59 -04003472 const char *s;
Al Viro30d90492012-06-22 12:40:19 +04003473 struct file *file;
Al Viro47237682012-06-10 05:01:45 -04003474 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05003475 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11003476
Al Viro30d90492012-06-22 12:40:19 +04003477 file = get_empty_filp();
Al Viro1afc99b2013-02-14 20:41:04 -05003478 if (IS_ERR(file))
3479 return file;
Nick Piggin31e6b012011-01-07 17:49:52 +11003480
Al Viro30d90492012-06-22 12:40:19 +04003481 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11003482
Al Virobb458c62013-07-13 13:26:37 +04003483 if (unlikely(file->f_flags & __O_TMPFILE)) {
Al Viroc8a53ee2015-05-12 18:43:07 -04003484 error = do_tmpfile(nd, flags, op, file, &opened);
Al Virof15133d2015-05-08 22:53:15 -04003485 goto out2;
Al Viro60545d02013-06-07 01:20:27 -04003486 }
3487
Al Viro6ac08702016-04-26 00:02:50 -04003488 if (unlikely(file->f_flags & O_PATH)) {
3489 error = do_o_path(nd, flags, file);
3490 if (!error)
3491 opened |= FILE_OPENED;
3492 goto out2;
3493 }
3494
Al Viroc8a53ee2015-05-12 18:43:07 -04003495 s = path_init(nd, flags);
Al Viro368ee9b2015-05-08 17:19:59 -04003496 if (IS_ERR(s)) {
3497 put_filp(file);
3498 return ERR_CAST(s);
3499 }
Al Viro3bdba282015-05-08 17:37:07 -04003500 while (!(error = link_path_walk(s, nd)) &&
Al Viro76ae2a52015-05-12 18:44:32 -04003501 (error = do_last(nd, file, op, &opened)) > 0) {
Al Viro73d049a2011-03-11 12:08:24 -05003502 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro3bdba282015-05-08 17:37:07 -04003503 s = trailing_symlink(nd);
3504 if (IS_ERR(s)) {
3505 error = PTR_ERR(s);
Al Viro2675a4e2012-06-22 12:41:10 +04003506 break;
Al Viro3bdba282015-05-08 17:37:07 -04003507 }
Al Viro806b6812009-12-26 07:16:40 -05003508 }
Al Virodeb106c2015-05-08 18:05:21 -04003509 terminate_walk(nd);
Al Virof15133d2015-05-08 22:53:15 -04003510out2:
Al Viro2675a4e2012-06-22 12:41:10 +04003511 if (!(opened & FILE_OPENED)) {
3512 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04003513 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003514 }
Al Viro2675a4e2012-06-22 12:41:10 +04003515 if (unlikely(error)) {
3516 if (error == -EOPENSTALE) {
3517 if (flags & LOOKUP_RCU)
3518 error = -ECHILD;
3519 else
3520 error = -ESTALE;
3521 }
3522 file = ERR_PTR(error);
3523 }
3524 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525}
3526
Jeff Layton669abf42012-10-10 16:43:10 -04003527struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +04003528 const struct open_flags *op)
Al Viro13aab422011-02-23 17:54:08 -05003529{
Al Viro9883d182015-05-13 07:28:08 -04003530 struct nameidata nd;
Al Virof9652e12013-06-11 08:23:01 +04003531 int flags = op->lookup_flags;
Al Viro13aab422011-02-23 17:54:08 -05003532 struct file *filp;
3533
Al Viro9883d182015-05-13 07:28:08 -04003534 set_nameidata(&nd, dfd, pathname);
Al Viroc8a53ee2015-05-12 18:43:07 -04003535 filp = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05003536 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003537 filp = path_openat(&nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05003538 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003539 filp = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003540 restore_nameidata();
Al Viro13aab422011-02-23 17:54:08 -05003541 return filp;
3542}
3543
Al Viro73d049a2011-03-11 12:08:24 -05003544struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
Al Virof9652e12013-06-11 08:23:01 +04003545 const char *name, const struct open_flags *op)
Al Viro73d049a2011-03-11 12:08:24 -05003546{
Al Viro9883d182015-05-13 07:28:08 -04003547 struct nameidata nd;
Al Viro73d049a2011-03-11 12:08:24 -05003548 struct file *file;
Paul Moore51689102015-01-22 00:00:03 -05003549 struct filename *filename;
Al Virof9652e12013-06-11 08:23:01 +04003550 int flags = op->lookup_flags | LOOKUP_ROOT;
Al Viro73d049a2011-03-11 12:08:24 -05003551
3552 nd.root.mnt = mnt;
3553 nd.root.dentry = dentry;
3554
David Howellsb18825a2013-09-12 19:22:53 +01003555 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05003556 return ERR_PTR(-ELOOP);
3557
Paul Moore51689102015-01-22 00:00:03 -05003558 filename = getname_kernel(name);
Viresh Kumara1c83682015-08-12 15:59:44 +05303559 if (IS_ERR(filename))
Paul Moore51689102015-01-22 00:00:03 -05003560 return ERR_CAST(filename);
3561
Al Viro9883d182015-05-13 07:28:08 -04003562 set_nameidata(&nd, -1, filename);
Al Viroc8a53ee2015-05-12 18:43:07 -04003563 file = path_openat(&nd, op, flags | LOOKUP_RCU);
Al Viro73d049a2011-03-11 12:08:24 -05003564 if (unlikely(file == ERR_PTR(-ECHILD)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003565 file = path_openat(&nd, op, flags);
Al Viro73d049a2011-03-11 12:08:24 -05003566 if (unlikely(file == ERR_PTR(-ESTALE)))
Al Viroc8a53ee2015-05-12 18:43:07 -04003567 file = path_openat(&nd, op, flags | LOOKUP_REVAL);
Al Viro9883d182015-05-13 07:28:08 -04003568 restore_nameidata();
Paul Moore51689102015-01-22 00:00:03 -05003569 putname(filename);
Al Viro73d049a2011-03-11 12:08:24 -05003570 return file;
3571}
3572
Al Virofa14a0b2015-01-22 02:16:49 -05003573static struct dentry *filename_create(int dfd, struct filename *name,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003574 struct path *path, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003576 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viro391172c2015-05-09 11:19:16 -04003577 struct qstr last;
3578 int type;
Jan Karac30dabf2012-06-12 16:20:30 +02003579 int err2;
Jeff Layton1ac12b42012-12-11 12:10:06 -05003580 int error;
3581 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3582
3583 /*
3584 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3585 * other flags passed in are ignored!
3586 */
3587 lookup_flags &= LOOKUP_REVAL;
3588
Al Viro5c31b6c2015-05-12 17:32:54 -04003589 name = filename_parentat(dfd, name, lookup_flags, path, &last, &type);
3590 if (IS_ERR(name))
3591 return ERR_CAST(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003593 /*
3594 * Yucky last component or no last component at all?
3595 * (foo/., foo/.., /////)
3596 */
Al Viro5c31b6c2015-05-12 17:32:54 -04003597 if (unlikely(type != LAST_NORM))
Al Viroed75e952011-06-27 16:53:43 -04003598 goto out;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003599
Jan Karac30dabf2012-06-12 16:20:30 +02003600 /* don't fail immediately if it's r/o, at least try to report other errors */
Al Viro391172c2015-05-09 11:19:16 -04003601 err2 = mnt_want_write(path->mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003602 /*
3603 * Do the final lookup.
3604 */
Al Viro391172c2015-05-09 11:19:16 -04003605 lookup_flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Al Viro59551022016-01-22 15:40:57 -05003606 inode_lock_nested(path->dentry->d_inode, I_MUTEX_PARENT);
Al Viro391172c2015-05-09 11:19:16 -04003607 dentry = __lookup_hash(&last, path->dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003609 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003610
Al Viroa8104a92012-07-20 02:25:00 +04003611 error = -EEXIST;
David Howellsb18825a2013-09-12 19:22:53 +01003612 if (d_is_positive(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003613 goto fail;
David Howellsb18825a2013-09-12 19:22:53 +01003614
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003615 /*
3616 * Special case - lookup gave negative, but... we had foo/bar/
3617 * From the vfs_mknod() POV we just have a negative dentry -
3618 * all is fine. Let's be bastards - you had / on the end, you've
3619 * been asking for (non-existent) directory. -ENOENT for you.
3620 */
Al Viro391172c2015-05-09 11:19:16 -04003621 if (unlikely(!is_dir && last.name[last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003622 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003623 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003624 }
Jan Karac30dabf2012-06-12 16:20:30 +02003625 if (unlikely(err2)) {
3626 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003627 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003628 }
Al Viro181c37b2015-05-12 17:21:25 -04003629 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631fail:
Al Viroa8104a92012-07-20 02:25:00 +04003632 dput(dentry);
3633 dentry = ERR_PTR(error);
3634unlock:
Al Viro59551022016-01-22 15:40:57 -05003635 inode_unlock(path->dentry->d_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02003636 if (!err2)
Al Viro391172c2015-05-09 11:19:16 -04003637 mnt_drop_write(path->mnt);
Al Viroed75e952011-06-27 16:53:43 -04003638out:
Al Viro391172c2015-05-09 11:19:16 -04003639 path_put(path);
Al Viro181c37b2015-05-12 17:21:25 -04003640 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641 return dentry;
3642}
Al Virofa14a0b2015-01-22 02:16:49 -05003643
3644struct dentry *kern_path_create(int dfd, const char *pathname,
3645 struct path *path, unsigned int lookup_flags)
3646{
Al Viro181c37b2015-05-12 17:21:25 -04003647 return filename_create(dfd, getname_kernel(pathname),
3648 path, lookup_flags);
Al Virofa14a0b2015-01-22 02:16:49 -05003649}
Al Virodae6ad82011-06-26 11:50:15 -04003650EXPORT_SYMBOL(kern_path_create);
3651
Al Viro921a1652012-07-20 01:15:31 +04003652void done_path_create(struct path *path, struct dentry *dentry)
3653{
3654 dput(dentry);
Al Viro59551022016-01-22 15:40:57 -05003655 inode_unlock(path->dentry->d_inode);
Al Viroa8104a92012-07-20 02:25:00 +04003656 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003657 path_put(path);
3658}
3659EXPORT_SYMBOL(done_path_create);
3660
Al Viro520ae682015-05-13 07:00:28 -04003661inline struct dentry *user_path_create(int dfd, const char __user *pathname,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003662 struct path *path, unsigned int lookup_flags)
Al Virodae6ad82011-06-26 11:50:15 -04003663{
Al Viro181c37b2015-05-12 17:21:25 -04003664 return filename_create(dfd, getname(pathname), path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003665}
3666EXPORT_SYMBOL(user_path_create);
3667
Al Viro1a67aaf2011-07-26 01:52:52 -04003668int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003670 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
3672 if (error)
3673 return error;
3674
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003675 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 return -EPERM;
3677
Al Viroacfa4382008-12-04 10:06:33 -05003678 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 return -EPERM;
3680
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003681 error = devcgroup_inode_mknod(mode, dev);
3682 if (error)
3683 return error;
3684
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 error = security_inode_mknod(dir, dentry, mode, dev);
3686 if (error)
3687 return error;
3688
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003690 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003691 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 return error;
3693}
Al Viro4d359502014-03-14 12:20:17 -04003694EXPORT_SYMBOL(vfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695
Al Virof69aac02011-07-26 04:31:40 -04003696static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003697{
3698 switch (mode & S_IFMT) {
3699 case S_IFREG:
3700 case S_IFCHR:
3701 case S_IFBLK:
3702 case S_IFIFO:
3703 case S_IFSOCK:
3704 case 0: /* zero mode translates to S_IFREG */
3705 return 0;
3706 case S_IFDIR:
3707 return -EPERM;
3708 default:
3709 return -EINVAL;
3710 }
3711}
3712
Al Viro8208a222011-07-25 17:32:17 -04003713SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003714 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715{
Al Viro2ad94ae2008-07-21 09:32:51 -04003716 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003717 struct path path;
3718 int error;
Jeff Layton972567f2012-12-20 16:00:10 -05003719 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720
Al Viro8e4bfca2012-07-20 01:17:26 +04003721 error = may_mknod(mode);
3722 if (error)
3723 return error;
Jeff Layton972567f2012-12-20 16:00:10 -05003724retry:
3725 dentry = user_path_create(dfd, filename, &path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003726 if (IS_ERR(dentry))
3727 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003728
Al Virodae6ad82011-06-26 11:50:15 -04003729 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003730 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003731 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003732 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003733 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003734 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04003736 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Mimi Zohar05d1a712016-02-29 19:52:05 -05003737 if (!error)
3738 ima_post_path_mknod(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 break;
3740 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04003741 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 new_decode_dev(dev));
3743 break;
3744 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003745 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 }
Al Viroa8104a92012-07-20 02:25:00 +04003748out:
Al Viro921a1652012-07-20 01:15:31 +04003749 done_path_create(&path, dentry);
Jeff Layton972567f2012-12-20 16:00:10 -05003750 if (retry_estale(error, lookup_flags)) {
3751 lookup_flags |= LOOKUP_REVAL;
3752 goto retry;
3753 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 return error;
3755}
3756
Al Viro8208a222011-07-25 17:32:17 -04003757SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003758{
3759 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3760}
3761
Al Viro18bb1db2011-07-26 01:41:39 -04003762int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003764 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003765 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766
3767 if (error)
3768 return error;
3769
Al Viroacfa4382008-12-04 10:06:33 -05003770 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003771 return -EPERM;
3772
3773 mode &= (S_IRWXUGO|S_ISVTX);
3774 error = security_inode_mkdir(dir, dentry, mode);
3775 if (error)
3776 return error;
3777
Al Viro8de52772012-02-06 12:45:27 -05003778 if (max_links && dir->i_nlink >= max_links)
3779 return -EMLINK;
3780
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003782 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003783 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784 return error;
3785}
Al Viro4d359502014-03-14 12:20:17 -04003786EXPORT_SYMBOL(vfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787
Al Viroa218d0f2011-11-21 14:59:34 -05003788SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789{
Dave Hansen6902d922006-09-30 23:29:01 -07003790 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003791 struct path path;
3792 int error;
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003793 unsigned int lookup_flags = LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003795retry:
3796 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003797 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003798 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003799
Al Virodae6ad82011-06-26 11:50:15 -04003800 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003801 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003802 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003803 if (!error)
3804 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003805 done_path_create(&path, dentry);
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003806 if (retry_estale(error, lookup_flags)) {
3807 lookup_flags |= LOOKUP_REVAL;
3808 goto retry;
3809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 return error;
3811}
3812
Al Viroa218d0f2011-11-21 14:59:34 -05003813SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003814{
3815 return sys_mkdirat(AT_FDCWD, pathname, mode);
3816}
3817
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3819{
3820 int error = may_delete(dir, dentry, 1);
3821
3822 if (error)
3823 return error;
3824
Al Viroacfa4382008-12-04 10:06:33 -05003825 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 return -EPERM;
3827
Al Viro1d2ef592011-09-14 18:55:41 +01003828 dget(dentry);
Al Viro59551022016-01-22 15:40:57 -05003829 inode_lock(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
Sage Weil912dbc12011-05-24 13:06:11 -07003831 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07003832 if (is_local_mountpoint(dentry))
Sage Weil912dbc12011-05-24 13:06:11 -07003833 goto out;
3834
3835 error = security_inode_rmdir(dir, dentry);
3836 if (error)
3837 goto out;
3838
Sage Weil3cebde22011-05-29 21:20:59 -07003839 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003840 error = dir->i_op->rmdir(dir, dentry);
3841 if (error)
3842 goto out;
3843
3844 dentry->d_inode->i_flags |= S_DEAD;
3845 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003846 detach_mounts(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003847
3848out:
Al Viro59551022016-01-22 15:40:57 -05003849 inode_unlock(dentry->d_inode);
Al Viro1d2ef592011-09-14 18:55:41 +01003850 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003851 if (!error)
3852 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 return error;
3854}
Al Viro4d359502014-03-14 12:20:17 -04003855EXPORT_SYMBOL(vfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003857static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858{
3859 int error = 0;
Jeff Layton91a27b22012-10-10 15:25:28 -04003860 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04003862 struct path path;
3863 struct qstr last;
3864 int type;
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003865 unsigned int lookup_flags = 0;
3866retry:
Al Viroc1d4dd22016-06-05 16:38:18 -04003867 name = filename_parentat(dfd, getname(pathname), lookup_flags,
3868 &path, &last, &type);
Jeff Layton91a27b22012-10-10 15:25:28 -04003869 if (IS_ERR(name))
3870 return PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871
Al Virof5beed72015-04-30 16:09:11 -04003872 switch (type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003873 case LAST_DOTDOT:
3874 error = -ENOTEMPTY;
3875 goto exit1;
3876 case LAST_DOT:
3877 error = -EINVAL;
3878 goto exit1;
3879 case LAST_ROOT:
3880 error = -EBUSY;
3881 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003883
Al Virof5beed72015-04-30 16:09:11 -04003884 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02003885 if (error)
3886 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003887
Al Viro59551022016-01-22 15:40:57 -05003888 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04003889 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003891 if (IS_ERR(dentry))
3892 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003893 if (!dentry->d_inode) {
3894 error = -ENOENT;
3895 goto exit3;
3896 }
Al Virof5beed72015-04-30 16:09:11 -04003897 error = security_path_rmdir(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003898 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003899 goto exit3;
Al Virof5beed72015-04-30 16:09:11 -04003900 error = vfs_rmdir(path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08003901exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003902 dput(dentry);
3903exit2:
Al Viro59551022016-01-22 15:40:57 -05003904 inode_unlock(path.dentry->d_inode);
Al Virof5beed72015-04-30 16:09:11 -04003905 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906exit1:
Al Virof5beed72015-04-30 16:09:11 -04003907 path_put(&path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 putname(name);
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003909 if (retry_estale(error, lookup_flags)) {
3910 lookup_flags |= LOOKUP_REVAL;
3911 goto retry;
3912 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 return error;
3914}
3915
Heiko Carstens3cdad422009-01-14 14:14:22 +01003916SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003917{
3918 return do_rmdir(AT_FDCWD, pathname);
3919}
3920
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003921/**
3922 * vfs_unlink - unlink a filesystem object
3923 * @dir: parent directory
3924 * @dentry: victim
3925 * @delegated_inode: returns victim inode, if the inode is delegated.
3926 *
3927 * The caller must hold dir->i_mutex.
3928 *
3929 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3930 * return a reference to the inode in delegated_inode. The caller
3931 * should then break the delegation on that inode and retry. Because
3932 * breaking a delegation may take a long time, the caller should drop
3933 * dir->i_mutex before doing so.
3934 *
3935 * Alternatively, a caller may pass NULL for delegated_inode. This may
3936 * be appropriate for callers that expect the underlying filesystem not
3937 * to be NFS exported.
3938 */
3939int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940{
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003941 struct inode *target = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 int error = may_delete(dir, dentry, 0);
3943
3944 if (error)
3945 return error;
3946
Al Viroacfa4382008-12-04 10:06:33 -05003947 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 return -EPERM;
3949
Al Viro59551022016-01-22 15:40:57 -05003950 inode_lock(target);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003951 if (is_local_mountpoint(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 error = -EBUSY;
3953 else {
3954 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003955 if (!error) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003956 error = try_break_deleg(target, delegated_inode);
3957 if (error)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003958 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 error = dir->i_op->unlink(dir, dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003960 if (!error) {
Al Virod83c49f2010-04-30 17:17:09 -04003961 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003962 detach_mounts(dentry);
3963 }
Al Virobec10522010-03-03 14:12:08 -05003964 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 }
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003966out:
Al Viro59551022016-01-22 15:40:57 -05003967 inode_unlock(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968
3969 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3970 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003971 fsnotify_link_count(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 }
Robert Love0eeca282005-07-12 17:06:03 -04003974
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 return error;
3976}
Al Viro4d359502014-03-14 12:20:17 -04003977EXPORT_SYMBOL(vfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978
3979/*
3980 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003981 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 * writeout happening, and we don't want to prevent access to the directory
3983 * while waiting on the I/O.
3984 */
Christoph Hellwigda2f1362017-11-04 13:44:45 +03003985long do_unlinkat(int dfd, struct filename *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986{
Al Viro2ad94ae2008-07-21 09:32:51 -04003987 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 struct dentry *dentry;
Al Virof5beed72015-04-30 16:09:11 -04003989 struct path path;
3990 struct qstr last;
3991 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 struct inode *inode = NULL;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003993 struct inode *delegated_inode = NULL;
Jeff Layton5d18f812012-12-20 16:38:04 -05003994 unsigned int lookup_flags = 0;
3995retry:
Christoph Hellwigda2f1362017-11-04 13:44:45 +03003996 name = filename_parentat(dfd, name, lookup_flags, &path, &last, &type);
Jeff Layton91a27b22012-10-10 15:25:28 -04003997 if (IS_ERR(name))
3998 return PTR_ERR(name);
Al Viro2ad94ae2008-07-21 09:32:51 -04003999
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 error = -EISDIR;
Al Virof5beed72015-04-30 16:09:11 -04004001 if (type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09004003
Al Virof5beed72015-04-30 16:09:11 -04004004 error = mnt_want_write(path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004005 if (error)
4006 goto exit1;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004007retry_deleg:
Al Viro59551022016-01-22 15:40:57 -05004008 inode_lock_nested(path.dentry->d_inode, I_MUTEX_PARENT);
Al Virof5beed72015-04-30 16:09:11 -04004009 dentry = __lookup_hash(&last, path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 error = PTR_ERR(dentry);
4011 if (!IS_ERR(dentry)) {
4012 /* Why not before? Because we want correct error value */
Al Virof5beed72015-04-30 16:09:11 -04004013 if (last.name[last.len])
Török Edwin50338b82011-06-16 00:06:14 +03004014 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 inode = dentry->d_inode;
David Howellsb18825a2013-09-12 19:22:53 +01004016 if (d_is_negative(dentry))
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04004017 goto slashes;
4018 ihold(inode);
Al Virof5beed72015-04-30 16:09:11 -04004019 error = security_path_unlink(&path, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004020 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004021 goto exit2;
Al Virof5beed72015-04-30 16:09:11 -04004022 error = vfs_unlink(path.dentry->d_inode, dentry, &delegated_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02004023exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 dput(dentry);
4025 }
Al Viro59551022016-01-22 15:40:57 -05004026 inode_unlock(path.dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 if (inode)
4028 iput(inode); /* truncate the inode here */
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004029 inode = NULL;
4030 if (delegated_inode) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07004031 error = break_deleg_wait(&delegated_inode);
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04004032 if (!error)
4033 goto retry_deleg;
4034 }
Al Virof5beed72015-04-30 16:09:11 -04004035 mnt_drop_write(path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036exit1:
Al Virof5beed72015-04-30 16:09:11 -04004037 path_put(&path);
Jeff Layton5d18f812012-12-20 16:38:04 -05004038 if (retry_estale(error, lookup_flags)) {
4039 lookup_flags |= LOOKUP_REVAL;
4040 inode = NULL;
4041 goto retry;
4042 }
Christoph Hellwigda2f1362017-11-04 13:44:45 +03004043 putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 return error;
4045
4046slashes:
David Howellsb18825a2013-09-12 19:22:53 +01004047 if (d_is_negative(dentry))
4048 error = -ENOENT;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02004049 else if (d_is_dir(dentry))
David Howellsb18825a2013-09-12 19:22:53 +01004050 error = -EISDIR;
4051 else
4052 error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 goto exit2;
4054}
4055
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004056SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004057{
4058 if ((flag & ~AT_REMOVEDIR) != 0)
4059 return -EINVAL;
4060
4061 if (flag & AT_REMOVEDIR)
4062 return do_rmdir(dfd, pathname);
4063
Christoph Hellwigda2f1362017-11-04 13:44:45 +03004064 return do_unlinkat(dfd, getname(pathname));
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004065}
4066
Heiko Carstens3480b252009-01-14 14:14:16 +01004067SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004068{
Christoph Hellwigda2f1362017-11-04 13:44:45 +03004069 return do_unlinkat(AT_FDCWD, getname(pathname));
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004070}
4071
Miklos Szeredidb2e7472008-06-24 16:50:16 +02004072int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073{
Miklos Szeredia95164d2008-07-30 15:08:48 +02004074 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075
4076 if (error)
4077 return error;
4078
Al Viroacfa4382008-12-04 10:06:33 -05004079 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 return -EPERM;
4081
4082 error = security_inode_symlink(dir, dentry, oldname);
4083 if (error)
4084 return error;
4085
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07004087 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00004088 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 return error;
4090}
Al Viro4d359502014-03-14 12:20:17 -04004091EXPORT_SYMBOL(vfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004093SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
4094 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095{
Al Viro2ad94ae2008-07-21 09:32:51 -04004096 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04004097 struct filename *from;
Dave Hansen6902d922006-09-30 23:29:01 -07004098 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004099 struct path path;
Jeff Laytonf46d3562012-12-11 12:10:08 -05004100 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101
4102 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04004103 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104 return PTR_ERR(from);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004105retry:
4106 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07004107 error = PTR_ERR(dentry);
4108 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004109 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07004110
Jeff Layton91a27b22012-10-10 15:25:28 -04004111 error = security_path_symlink(&path, dentry, from->name);
Al Viroa8104a92012-07-20 02:25:00 +04004112 if (!error)
Jeff Layton91a27b22012-10-10 15:25:28 -04004113 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
Al Viro921a1652012-07-20 01:15:31 +04004114 done_path_create(&path, dentry);
Jeff Laytonf46d3562012-12-11 12:10:08 -05004115 if (retry_estale(error, lookup_flags)) {
4116 lookup_flags |= LOOKUP_REVAL;
4117 goto retry;
4118 }
Dave Hansen6902d922006-09-30 23:29:01 -07004119out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 putname(from);
4121 return error;
4122}
4123
Heiko Carstens3480b252009-01-14 14:14:16 +01004124SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004125{
4126 return sys_symlinkat(oldname, AT_FDCWD, newname);
4127}
4128
J. Bruce Fields146a8592011-09-20 17:14:31 -04004129/**
4130 * vfs_link - create a new link
4131 * @old_dentry: object to be linked
4132 * @dir: new parent
4133 * @new_dentry: where to create the new link
4134 * @delegated_inode: returns inode needing a delegation break
4135 *
4136 * The caller must hold dir->i_mutex
4137 *
4138 * If vfs_link discovers a delegation on the to-be-linked file in need
4139 * of breaking, it will return -EWOULDBLOCK and return a reference to the
4140 * inode in delegated_inode. The caller should then break the delegation
4141 * and retry. Because breaking a delegation may take a long time, the
4142 * caller should drop the i_mutex before doing so.
4143 *
4144 * Alternatively, a caller may pass NULL for delegated_inode. This may
4145 * be appropriate for callers that expect the underlying filesystem not
4146 * to be NFS exported.
4147 */
4148int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149{
4150 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05004151 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152 int error;
4153
4154 if (!inode)
4155 return -ENOENT;
4156
Miklos Szeredia95164d2008-07-30 15:08:48 +02004157 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 if (error)
4159 return error;
4160
4161 if (dir->i_sb != inode->i_sb)
4162 return -EXDEV;
4163
4164 /*
4165 * A link to an append-only or immutable file cannot be created.
4166 */
4167 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
4168 return -EPERM;
Eric W. Biederman0bd23d092016-06-29 14:54:46 -05004169 /*
4170 * Updating the link count will likely cause i_uid and i_gid to
4171 * be writen back improperly if their true value is unknown to
4172 * the vfs.
4173 */
4174 if (HAS_UNMAPPED_ID(inode))
4175 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05004176 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004178 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 return -EPERM;
4180
4181 error = security_inode_link(old_dentry, dir, new_dentry);
4182 if (error)
4183 return error;
4184
Al Viro59551022016-01-22 15:40:57 -05004185 inode_lock(inode);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304186 /* Make sure we don't allow creating hardlink to an unlinked file */
Al Virof4e0c302013-06-11 08:34:36 +04004187 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05304188 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05004189 else if (max_links && inode->i_nlink >= max_links)
4190 error = -EMLINK;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004191 else {
4192 error = try_break_deleg(inode, delegated_inode);
4193 if (!error)
4194 error = dir->i_op->link(old_dentry, dir, new_dentry);
4195 }
Al Virof4e0c302013-06-11 08:34:36 +04004196
4197 if (!error && (inode->i_state & I_LINKABLE)) {
4198 spin_lock(&inode->i_lock);
4199 inode->i_state &= ~I_LINKABLE;
4200 spin_unlock(&inode->i_lock);
4201 }
Al Viro59551022016-01-22 15:40:57 -05004202 inode_unlock(inode);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07004203 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02004204 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205 return error;
4206}
Al Viro4d359502014-03-14 12:20:17 -04004207EXPORT_SYMBOL(vfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208
4209/*
4210 * Hardlinks are often used in delicate situations. We avoid
4211 * security-related surprises by not following symlinks on the
4212 * newname. --KAB
4213 *
4214 * We don't follow them on the oldname either to be compatible
4215 * with linux 2.0, and to avoid hard-linking to directories
4216 * and other special files. --ADM
4217 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01004218SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
4219 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220{
4221 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04004222 struct path old_path, new_path;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004223 struct inode *delegated_inode = NULL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304224 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304227 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004228 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304229 /*
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004230 * To use null names we require CAP_DAC_READ_SEARCH
4231 * This ensures that not everyone will be able to create
4232 * handlink using the passed filedescriptor.
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304233 */
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004234 if (flags & AT_EMPTY_PATH) {
4235 if (!capable(CAP_DAC_READ_SEARCH))
4236 return -ENOENT;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304237 how = LOOKUP_EMPTY;
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004238 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004239
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304240 if (flags & AT_SYMLINK_FOLLOW)
4241 how |= LOOKUP_FOLLOW;
Jeff Layton442e31c2012-12-20 16:15:38 -05004242retry:
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304243 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04004245 return error;
4246
Jeff Layton442e31c2012-12-20 16:15:38 -05004247 new_dentry = user_path_create(newdfd, newname, &new_path,
4248 (how & LOOKUP_REVAL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07004250 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004251 goto out;
4252
4253 error = -EXDEV;
4254 if (old_path.mnt != new_path.mnt)
4255 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07004256 error = may_linkat(&old_path);
4257 if (unlikely(error))
4258 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04004259 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004260 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04004261 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004262 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
Dave Hansen75c3f292008-02-15 14:37:45 -08004263out_dput:
Al Viro921a1652012-07-20 01:15:31 +04004264 done_path_create(&new_path, new_dentry);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004265 if (delegated_inode) {
4266 error = break_deleg_wait(&delegated_inode);
Oleg Drokind22e6332014-01-31 15:41:58 -05004267 if (!error) {
4268 path_put(&old_path);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004269 goto retry;
Oleg Drokind22e6332014-01-31 15:41:58 -05004270 }
J. Bruce Fields146a8592011-09-20 17:14:31 -04004271 }
Jeff Layton442e31c2012-12-20 16:15:38 -05004272 if (retry_estale(error, how)) {
Oleg Drokind22e6332014-01-31 15:41:58 -05004273 path_put(&old_path);
Jeff Layton442e31c2012-12-20 16:15:38 -05004274 how |= LOOKUP_REVAL;
4275 goto retry;
4276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277out:
Al Viro2d8f3032008-07-22 09:59:21 -04004278 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279
4280 return error;
4281}
4282
Heiko Carstens3480b252009-01-14 14:14:16 +01004283SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004284{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004285 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004286}
4287
Miklos Szeredibc270272014-04-01 17:08:42 +02004288/**
4289 * vfs_rename - rename a filesystem object
4290 * @old_dir: parent of source
4291 * @old_dentry: source
4292 * @new_dir: parent of destination
4293 * @new_dentry: destination
4294 * @delegated_inode: returns an inode needing a delegation break
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004295 * @flags: rename flags
Miklos Szeredibc270272014-04-01 17:08:42 +02004296 *
4297 * The caller must hold multiple mutexes--see lock_rename()).
4298 *
4299 * If vfs_rename discovers a delegation in need of breaking at either
4300 * the source or destination, it will return -EWOULDBLOCK and return a
4301 * reference to the inode in delegated_inode. The caller should then
4302 * break the delegation and retry. Because breaking a delegation may
4303 * take a long time, the caller should drop all locks before doing
4304 * so.
4305 *
4306 * Alternatively, a caller may pass NULL for delegated_inode. This may
4307 * be appropriate for callers that expect the underlying filesystem not
4308 * to be NFS exported.
4309 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 * The worst of all namespace operations - renaming directory. "Perverted"
4311 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4312 * Problems:
Mauro Carvalho Chehab0117d422017-05-12 07:45:42 -03004313 *
J. Bruce Fieldsd03b29a2014-02-17 16:52:33 -05004314 * a) we can get into loop creation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 * b) race potential - two innocent renames can create a loop together.
4316 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004317 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 * story.
J. Bruce Fields6cedba82012-03-05 11:40:41 -05004319 * c) we have to lock _four_ objects - parents and victim (if it exists),
4320 * and source (if it is not a directory).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004321 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 * whether the target exists). Solution: try to be smart with locking
4323 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004324 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 * move will be locked. Thus we can rank directories by the tree
4326 * (ancestors first) and rank all non-directories after them.
4327 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004328 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 * HOWEVER, it relies on the assumption that any object with ->lookup()
4330 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4331 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07004332 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004333 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05004335 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336 * locking].
4337 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004339 struct inode *new_dir, struct dentry *new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004340 struct inode **delegated_inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341{
4342 int error;
Miklos Szeredibc270272014-04-01 17:08:42 +02004343 bool is_dir = d_is_dir(old_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004344 struct inode *source = old_dentry->d_inode;
4345 struct inode *target = new_dentry->d_inode;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004346 bool new_is_dir = false;
4347 unsigned max_links = new_dir->i_sb->s_max_links;
Al Viro49d31c22017-07-07 14:51:19 -04004348 struct name_snapshot old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349
Miklos Szeredi8d3e2932016-12-16 11:02:54 +01004350 if (source == target)
Miklos Szeredibc270272014-04-01 17:08:42 +02004351 return 0;
4352
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353 error = may_delete(old_dir, old_dentry, is_dir);
4354 if (error)
4355 return error;
4356
Miklos Szeredida1ce062014-04-01 17:08:43 +02004357 if (!target) {
Miklos Szeredia95164d2008-07-30 15:08:48 +02004358 error = may_create(new_dir, new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004359 } else {
4360 new_is_dir = d_is_dir(new_dentry);
4361
4362 if (!(flags & RENAME_EXCHANGE))
4363 error = may_delete(new_dir, new_dentry, is_dir);
4364 else
4365 error = may_delete(new_dir, new_dentry, new_is_dir);
4366 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 if (error)
4368 return error;
4369
Miklos Szeredi2773bf02016-09-27 11:03:58 +02004370 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 return -EPERM;
4372
Miklos Szeredibc270272014-04-01 17:08:42 +02004373 /*
4374 * If we are going to change the parent - check write permissions,
4375 * we'll need to flip '..'.
4376 */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004377 if (new_dir != old_dir) {
4378 if (is_dir) {
4379 error = inode_permission(source, MAY_WRITE);
4380 if (error)
4381 return error;
4382 }
4383 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4384 error = inode_permission(target, MAY_WRITE);
4385 if (error)
4386 return error;
4387 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004388 }
Robert Love0eeca282005-07-12 17:06:03 -04004389
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004390 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4391 flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004392 if (error)
4393 return error;
4394
Al Viro49d31c22017-07-07 14:51:19 -04004395 take_dentry_name_snapshot(&old_name, old_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004396 dget(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004397 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004398 lock_two_nondirectories(source, target);
4399 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004400 inode_lock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004401
4402 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07004403 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004404 goto out;
4405
Miklos Szeredida1ce062014-04-01 17:08:43 +02004406 if (max_links && new_dir != old_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004407 error = -EMLINK;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004408 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
Miklos Szeredibc270272014-04-01 17:08:42 +02004409 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004410 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4411 old_dir->i_nlink >= max_links)
4412 goto out;
4413 }
4414 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4415 shrink_dcache_parent(new_dentry);
4416 if (!is_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004417 error = try_break_deleg(source, delegated_inode);
4418 if (error)
4419 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004420 }
4421 if (target && !new_is_dir) {
4422 error = try_break_deleg(target, delegated_inode);
4423 if (error)
4424 goto out;
Miklos Szeredibc270272014-04-01 17:08:42 +02004425 }
Miklos Szeredi2773bf02016-09-27 11:03:58 +02004426 error = old_dir->i_op->rename(old_dir, old_dentry,
Miklos Szeredi18fc84d2016-09-27 11:03:58 +02004427 new_dir, new_dentry, flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004428 if (error)
4429 goto out;
4430
Miklos Szeredida1ce062014-04-01 17:08:43 +02004431 if (!(flags & RENAME_EXCHANGE) && target) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004432 if (is_dir)
4433 target->i_flags |= S_DEAD;
4434 dont_mount(new_dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004435 detach_mounts(new_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004436 }
Miklos Szeredida1ce062014-04-01 17:08:43 +02004437 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4438 if (!(flags & RENAME_EXCHANGE))
4439 d_move(old_dentry, new_dentry);
4440 else
4441 d_exchange(old_dentry, new_dentry);
4442 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004443out:
Miklos Szeredida1ce062014-04-01 17:08:43 +02004444 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004445 unlock_two_nondirectories(source, target);
4446 else if (target)
Al Viro59551022016-01-22 15:40:57 -05004447 inode_unlock(target);
Miklos Szeredibc270272014-04-01 17:08:42 +02004448 dput(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004449 if (!error) {
Al Viro49d31c22017-07-07 14:51:19 -04004450 fsnotify_move(old_dir, new_dir, old_name.name, is_dir,
Miklos Szeredida1ce062014-04-01 17:08:43 +02004451 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4452 if (flags & RENAME_EXCHANGE) {
4453 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4454 new_is_dir, NULL, new_dentry);
4455 }
4456 }
Al Viro49d31c22017-07-07 14:51:19 -04004457 release_dentry_name_snapshot(&old_name);
Robert Love0eeca282005-07-12 17:06:03 -04004458
Linus Torvalds1da177e2005-04-16 15:20:36 -07004459 return error;
4460}
Al Viro4d359502014-03-14 12:20:17 -04004461EXPORT_SYMBOL(vfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004462
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004463SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4464 int, newdfd, const char __user *, newname, unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004465{
Al Viro2ad94ae2008-07-21 09:32:51 -04004466 struct dentry *old_dentry, *new_dentry;
4467 struct dentry *trap;
Al Virof5beed72015-04-30 16:09:11 -04004468 struct path old_path, new_path;
4469 struct qstr old_last, new_last;
4470 int old_type, new_type;
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004471 struct inode *delegated_inode = NULL;
Jeff Layton91a27b22012-10-10 15:25:28 -04004472 struct filename *from;
4473 struct filename *to;
Al Virof5beed72015-04-30 16:09:11 -04004474 unsigned int lookup_flags = 0, target_flags = LOOKUP_RENAME_TARGET;
Jeff Laytonc6a94282012-12-11 12:10:10 -05004475 bool should_retry = false;
Al Viro2ad94ae2008-07-21 09:32:51 -04004476 int error;
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004477
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004478 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredida1ce062014-04-01 17:08:43 +02004479 return -EINVAL;
4480
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004481 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4482 (flags & RENAME_EXCHANGE))
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004483 return -EINVAL;
4484
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004485 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4486 return -EPERM;
4487
Al Virof5beed72015-04-30 16:09:11 -04004488 if (flags & RENAME_EXCHANGE)
4489 target_flags = 0;
4490
Jeff Laytonc6a94282012-12-11 12:10:10 -05004491retry:
Al Viroc1d4dd22016-06-05 16:38:18 -04004492 from = filename_parentat(olddfd, getname(oldname), lookup_flags,
4493 &old_path, &old_last, &old_type);
Jeff Layton91a27b22012-10-10 15:25:28 -04004494 if (IS_ERR(from)) {
4495 error = PTR_ERR(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004496 goto exit;
Jeff Layton91a27b22012-10-10 15:25:28 -04004497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498
Al Viroc1d4dd22016-06-05 16:38:18 -04004499 to = filename_parentat(newdfd, getname(newname), lookup_flags,
4500 &new_path, &new_last, &new_type);
Jeff Layton91a27b22012-10-10 15:25:28 -04004501 if (IS_ERR(to)) {
4502 error = PTR_ERR(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503 goto exit1;
Jeff Layton91a27b22012-10-10 15:25:28 -04004504 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004505
4506 error = -EXDEV;
Al Virof5beed72015-04-30 16:09:11 -04004507 if (old_path.mnt != new_path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 goto exit2;
4509
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 error = -EBUSY;
Al Virof5beed72015-04-30 16:09:11 -04004511 if (old_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 goto exit2;
4513
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004514 if (flags & RENAME_NOREPLACE)
4515 error = -EEXIST;
Al Virof5beed72015-04-30 16:09:11 -04004516 if (new_type != LAST_NORM)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 goto exit2;
4518
Al Virof5beed72015-04-30 16:09:11 -04004519 error = mnt_want_write(old_path.mnt);
Jan Karac30dabf2012-06-12 16:20:30 +02004520 if (error)
4521 goto exit2;
4522
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004523retry_deleg:
Al Virof5beed72015-04-30 16:09:11 -04004524 trap = lock_rename(new_path.dentry, old_path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525
Al Virof5beed72015-04-30 16:09:11 -04004526 old_dentry = __lookup_hash(&old_last, old_path.dentry, lookup_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527 error = PTR_ERR(old_dentry);
4528 if (IS_ERR(old_dentry))
4529 goto exit3;
4530 /* source must exist */
4531 error = -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01004532 if (d_is_negative(old_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004533 goto exit4;
Al Virof5beed72015-04-30 16:09:11 -04004534 new_dentry = __lookup_hash(&new_last, new_path.dentry, lookup_flags | target_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004535 error = PTR_ERR(new_dentry);
4536 if (IS_ERR(new_dentry))
4537 goto exit4;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004538 error = -EEXIST;
4539 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4540 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004541 if (flags & RENAME_EXCHANGE) {
4542 error = -ENOENT;
4543 if (d_is_negative(new_dentry))
4544 goto exit5;
4545
4546 if (!d_is_dir(new_dentry)) {
4547 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004548 if (new_last.name[new_last.len])
Miklos Szeredida1ce062014-04-01 17:08:43 +02004549 goto exit5;
4550 }
4551 }
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004552 /* unless the source is a directory trailing slashes give -ENOTDIR */
4553 if (!d_is_dir(old_dentry)) {
4554 error = -ENOTDIR;
Al Virof5beed72015-04-30 16:09:11 -04004555 if (old_last.name[old_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004556 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004557 if (!(flags & RENAME_EXCHANGE) && new_last.name[new_last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004558 goto exit5;
4559 }
4560 /* source should not be ancestor of target */
4561 error = -EINVAL;
4562 if (old_dentry == trap)
4563 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564 /* target should not be an ancestor of source */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004565 if (!(flags & RENAME_EXCHANGE))
4566 error = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567 if (new_dentry == trap)
4568 goto exit5;
4569
Al Virof5beed72015-04-30 16:09:11 -04004570 error = security_path_rename(&old_path, old_dentry,
4571 &new_path, new_dentry, flags);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004572 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004573 goto exit5;
Al Virof5beed72015-04-30 16:09:11 -04004574 error = vfs_rename(old_path.dentry->d_inode, old_dentry,
4575 new_path.dentry->d_inode, new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004576 &delegated_inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577exit5:
4578 dput(new_dentry);
4579exit4:
4580 dput(old_dentry);
4581exit3:
Al Virof5beed72015-04-30 16:09:11 -04004582 unlock_rename(new_path.dentry, old_path.dentry);
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004583 if (delegated_inode) {
4584 error = break_deleg_wait(&delegated_inode);
4585 if (!error)
4586 goto retry_deleg;
4587 }
Al Virof5beed72015-04-30 16:09:11 -04004588 mnt_drop_write(old_path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004589exit2:
Jeff Laytonc6a94282012-12-11 12:10:10 -05004590 if (retry_estale(error, lookup_flags))
4591 should_retry = true;
Al Virof5beed72015-04-30 16:09:11 -04004592 path_put(&new_path);
Al Viro2ad94ae2008-07-21 09:32:51 -04004593 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004594exit1:
Al Virof5beed72015-04-30 16:09:11 -04004595 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596 putname(from);
Jeff Laytonc6a94282012-12-11 12:10:10 -05004597 if (should_retry) {
4598 should_retry = false;
4599 lookup_flags |= LOOKUP_REVAL;
4600 goto retry;
4601 }
Al Viro2ad94ae2008-07-21 09:32:51 -04004602exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603 return error;
4604}
4605
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004606SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4607 int, newdfd, const char __user *, newname)
4608{
4609 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4610}
4611
Heiko Carstensa26eab22009-01-14 14:14:17 +01004612SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004613{
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004614 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004615}
4616
Miklos Szeredi787fb6b2014-10-24 00:14:36 +02004617int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4618{
4619 int error = may_create(dir, dentry);
4620 if (error)
4621 return error;
4622
4623 if (!dir->i_op->mknod)
4624 return -EPERM;
4625
4626 return dir->i_op->mknod(dir, dentry,
4627 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4628}
4629EXPORT_SYMBOL(vfs_whiteout);
4630
Al Viro5d826c82014-03-14 13:42:45 -04004631int readlink_copy(char __user *buffer, int buflen, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004632{
Al Viro5d826c82014-03-14 13:42:45 -04004633 int len = PTR_ERR(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004634 if (IS_ERR(link))
4635 goto out;
4636
4637 len = strlen(link);
4638 if (len > (unsigned) buflen)
4639 len = buflen;
4640 if (copy_to_user(buffer, link, len))
4641 len = -EFAULT;
4642out:
4643 return len;
4644}
4645
4646/*
4647 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
Al Viro6b255392015-11-17 10:20:54 -05004648 * have ->get_link() not calling nd_jump_link(). Using (or not using) it
4649 * for any given inode is up to filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650 */
Miklos Szeredid16744e2016-12-09 16:45:04 +01004651static int generic_readlink(struct dentry *dentry, char __user *buffer,
4652 int buflen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004653{
Al Virofceef392015-12-29 15:58:39 -05004654 DEFINE_DELAYED_CALL(done);
Al Viro5f2c4172015-05-07 11:14:26 -04004655 struct inode *inode = d_inode(dentry);
4656 const char *link = inode->i_link;
Marcin Slusarz694a1762008-06-09 16:40:37 -07004657 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004658
Al Virod4dee482015-04-30 20:08:02 -04004659 if (!link) {
Al Virofceef392015-12-29 15:58:39 -05004660 link = inode->i_op->get_link(dentry, inode, &done);
Al Virod4dee482015-04-30 20:08:02 -04004661 if (IS_ERR(link))
4662 return PTR_ERR(link);
4663 }
Al Viro680baac2015-05-02 13:32:22 -04004664 res = readlink_copy(buffer, buflen, link);
Al Virofceef392015-12-29 15:58:39 -05004665 do_delayed_call(&done);
Marcin Slusarz694a1762008-06-09 16:40:37 -07004666 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004667}
4668
Miklos Szeredid60874c2016-10-04 14:40:45 +02004669/**
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +01004670 * vfs_readlink - copy symlink body into userspace buffer
4671 * @dentry: dentry on which to get symbolic link
4672 * @buffer: user memory pointer
4673 * @buflen: size of buffer
4674 *
4675 * Does not touch atime. That's up to the caller if necessary
4676 *
4677 * Does not call security hook.
4678 */
4679int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4680{
4681 struct inode *inode = d_inode(dentry);
4682
Miklos Szeredi76fca902016-12-09 16:45:04 +01004683 if (unlikely(!(inode->i_opflags & IOP_DEFAULT_READLINK))) {
4684 if (unlikely(inode->i_op->readlink))
4685 return inode->i_op->readlink(dentry, buffer, buflen);
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +01004686
Miklos Szeredi76fca902016-12-09 16:45:04 +01004687 if (!d_is_symlink(dentry))
4688 return -EINVAL;
4689
4690 spin_lock(&inode->i_lock);
4691 inode->i_opflags |= IOP_DEFAULT_READLINK;
4692 spin_unlock(&inode->i_lock);
4693 }
4694
4695 return generic_readlink(dentry, buffer, buflen);
Miklos Szeredifd4a0edf2016-12-09 16:45:04 +01004696}
4697EXPORT_SYMBOL(vfs_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004698
Miklos Szeredid60874c2016-10-04 14:40:45 +02004699/**
4700 * vfs_get_link - get symlink body
4701 * @dentry: dentry on which to get symbolic link
4702 * @done: caller needs to free returned data with this
4703 *
4704 * Calls security hook and i_op->get_link() on the supplied inode.
4705 *
4706 * It does not touch atime. That's up to the caller if necessary.
4707 *
4708 * Does not work on "special" symlinks like /proc/$$/fd/N
4709 */
4710const char *vfs_get_link(struct dentry *dentry, struct delayed_call *done)
4711{
4712 const char *res = ERR_PTR(-EINVAL);
4713 struct inode *inode = d_inode(dentry);
4714
4715 if (d_is_symlink(dentry)) {
4716 res = ERR_PTR(security_inode_readlink(dentry));
4717 if (!res)
4718 res = inode->i_op->get_link(dentry, inode, done);
4719 }
4720 return res;
4721}
4722EXPORT_SYMBOL(vfs_get_link);
4723
Linus Torvalds1da177e2005-04-16 15:20:36 -07004724/* get the link contents into pagecache */
Al Viro6b255392015-11-17 10:20:54 -05004725const char *page_get_link(struct dentry *dentry, struct inode *inode,
Al Virofceef392015-12-29 15:58:39 -05004726 struct delayed_call *callback)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727{
Duane Griffinebd09ab2008-12-19 20:47:12 +00004728 char *kaddr;
4729 struct page *page;
Al Viro6b255392015-11-17 10:20:54 -05004730 struct address_space *mapping = inode->i_mapping;
4731
Al Virod3883d42015-11-17 10:41:04 -05004732 if (!dentry) {
4733 page = find_get_page(mapping, 0);
4734 if (!page)
4735 return ERR_PTR(-ECHILD);
4736 if (!PageUptodate(page)) {
4737 put_page(page);
4738 return ERR_PTR(-ECHILD);
4739 }
4740 } else {
4741 page = read_mapping_page(mapping, 0, NULL);
4742 if (IS_ERR(page))
4743 return (char*)page;
4744 }
Al Virofceef392015-12-29 15:58:39 -05004745 set_delayed_call(callback, page_put_link, page);
Al Viro21fc61c2015-11-17 01:07:57 -05004746 BUG_ON(mapping_gfp_mask(mapping) & __GFP_HIGHMEM);
4747 kaddr = page_address(page);
Al Viro6b255392015-11-17 10:20:54 -05004748 nd_terminate_link(kaddr, inode->i_size, PAGE_SIZE - 1);
Duane Griffinebd09ab2008-12-19 20:47:12 +00004749 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004750}
4751
Al Viro6b255392015-11-17 10:20:54 -05004752EXPORT_SYMBOL(page_get_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004753
Al Virofceef392015-12-29 15:58:39 -05004754void page_put_link(void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004755{
Al Virofceef392015-12-29 15:58:39 -05004756 put_page(arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757}
Al Viro4d359502014-03-14 12:20:17 -04004758EXPORT_SYMBOL(page_put_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004759
Al Viroaa80dea2015-11-16 18:26:34 -05004760int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4761{
Al Virofceef392015-12-29 15:58:39 -05004762 DEFINE_DELAYED_CALL(done);
Al Viro6b255392015-11-17 10:20:54 -05004763 int res = readlink_copy(buffer, buflen,
4764 page_get_link(dentry, d_inode(dentry),
Al Virofceef392015-12-29 15:58:39 -05004765 &done));
4766 do_delayed_call(&done);
Al Viroaa80dea2015-11-16 18:26:34 -05004767 return res;
4768}
4769EXPORT_SYMBOL(page_readlink);
4770
Nick Piggin54566b22009-01-04 12:00:53 -08004771/*
4772 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4773 */
4774int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004775{
4776 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004777 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07004778 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08004779 int err;
Tetsuo Handac718a972017-05-08 15:58:59 -07004780 unsigned int flags = 0;
Nick Piggin54566b22009-01-04 12:00:53 -08004781 if (nofs)
4782 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004783
NeilBrown7e53cac2006-03-25 03:07:57 -08004784retry:
Nick Pigginafddba42007-10-16 01:25:01 -07004785 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08004786 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07004788 goto fail;
4789
Al Viro21fc61c2015-11-17 01:07:57 -05004790 memcpy(page_address(page), symname, len-1);
Nick Pigginafddba42007-10-16 01:25:01 -07004791
4792 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4793 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004794 if (err < 0)
4795 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07004796 if (err < len-1)
4797 goto retry;
4798
Linus Torvalds1da177e2005-04-16 15:20:36 -07004799 mark_inode_dirty(inode);
4800 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801fail:
4802 return err;
4803}
Al Viro4d359502014-03-14 12:20:17 -04004804EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004805
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004806int page_symlink(struct inode *inode, const char *symname, int len)
4807{
4808 return __page_symlink(inode, symname, len,
Michal Hockoc62d2552015-11-06 16:28:49 -08004809 !mapping_gfp_constraint(inode->i_mapping, __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004810}
Al Viro4d359502014-03-14 12:20:17 -04004811EXPORT_SYMBOL(page_symlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004812
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004813const struct inode_operations page_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -05004814 .get_link = page_get_link,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004815};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004816EXPORT_SYMBOL(page_symlink_inode_operations);