blob: 2c4b68c12550fb87a03de71c8548ef7c41e8e07b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/namei.c
3 *
4 * Copyright (C) 1991, 1992 Linus Torvalds
5 */
6
7/*
8 * Some corrections by tytso.
9 */
10
11/* [Feb 1997 T. Schoebel-Theuer] Complete rewrite of the pathname
12 * lookup logic.
13 */
14/* [Feb-Apr 2000, AV] Rewrite to the new namespace architecture.
15 */
16
17#include <linux/init.h>
Paul Gortmaker630d9c42011-11-16 23:57:37 -050018#include <linux/export.h>
David S. Miller44696902012-05-23 20:12:50 -070019#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/slab.h>
21#include <linux/fs.h>
22#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <linux/pagemap.h>
Robert Love0eeca282005-07-12 17:06:03 -040024#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/personality.h>
26#include <linux/security.h>
Mimi Zohar6146f0d2009-02-04 09:06:57 -050027#include <linux/ima.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/syscalls.h>
29#include <linux/mount.h>
30#include <linux/audit.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080031#include <linux/capability.h>
Trond Myklebust834f2a42005-10-18 14:20:16 -070032#include <linux/file.h>
Ulrich Drepper5590ff02006-01-18 17:43:53 -080033#include <linux/fcntl.h>
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070034#include <linux/device_cgroup.h>
Al Viro5ad4e532009-03-29 19:50:06 -040035#include <linux/fs_struct.h>
Linus Torvaldse77819e2011-07-22 19:30:19 -070036#include <linux/posix_acl.h>
Linus Torvalds99d263d2014-09-13 11:30:10 -070037#include <linux/hash.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/uaccess.h>
39
Eric Parise81e3f42009-12-04 15:47:36 -050040#include "internal.h"
Al Viroc7105362011-11-24 18:22:03 -050041#include "mount.h"
Eric Parise81e3f42009-12-04 15:47:36 -050042
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/* [Feb-1997 T. Schoebel-Theuer]
44 * Fundamental changes in the pathname lookup mechanisms (namei)
45 * were necessary because of omirr. The reason is that omirr needs
46 * to know the _real_ pathname, not the user-supplied one, in case
47 * of symlinks (and also when transname replacements occur).
48 *
49 * The new code replaces the old recursive symlink resolution with
50 * an iterative one (in case of non-nested symlink chains). It does
51 * this with calls to <fs>_follow_link().
52 * As a side effect, dir_namei(), _namei() and follow_link() are now
53 * replaced with a single function lookup_dentry() that can handle all
54 * the special cases of the former code.
55 *
56 * With the new dcache, the pathname is stored at each inode, at least as
57 * long as the refcount of the inode is positive. As a side effect, the
58 * size of the dcache depends on the inode cache and thus is dynamic.
59 *
60 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
61 * resolution to correspond with current state of the code.
62 *
63 * Note that the symlink resolution is not *completely* iterative.
64 * There is still a significant amount of tail- and mid- recursion in
65 * the algorithm. Also, note that <fs>_readlink() is not used in
66 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
67 * may return different results than <fs>_follow_link(). Many virtual
68 * filesystems (including /proc) exhibit this behavior.
69 */
70
71/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
72 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
73 * and the name already exists in form of a symlink, try to create the new
74 * name indicated by the symlink. The old code always complained that the
75 * name already exists, due to not following the symlink even if its target
76 * is nonexistent. The new semantics affects also mknod() and link() when
Lucas De Marchi25985ed2011-03-30 22:57:33 -030077 * the name is a symlink pointing to a non-existent name.
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 *
79 * I don't know which semantics is the right one, since I have no access
80 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
81 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
82 * "old" one. Personally, I think the new semantics is much more logical.
83 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
84 * file does succeed in both HP-UX and SunOs, but not in Solaris
85 * and in the old Linux semantics.
86 */
87
88/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
89 * semantics. See the comments in "open_namei" and "do_link" below.
90 *
91 * [10-Sep-98 Alan Modra] Another symlink change.
92 */
93
94/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
95 * inside the path - always follow.
96 * in the last component in creation/removal/renaming - never follow.
97 * if LOOKUP_FOLLOW passed - follow.
98 * if the pathname has trailing slashes - follow.
99 * otherwise - don't follow.
100 * (applied in that order).
101 *
102 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
103 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
104 * During the 2.4 we need to fix the userland stuff depending on it -
105 * hopefully we will be able to get rid of that wart in 2.5. So far only
106 * XEmacs seems to be relying on it...
107 */
108/*
109 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800110 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * any extra contention...
112 */
113
114/* In order to reduce some races, while at the same time doing additional
115 * checking and hopefully speeding things up, we copy filenames to the
116 * kernel data space before using them..
117 *
118 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
119 * PATH_MAX includes the nul terminator --RR.
120 */
Jeff Layton91a27b22012-10-10 15:25:28 -0400121
Jeff Layton7950e382012-10-10 16:43:13 -0400122#define EMBEDDED_NAME_MAX (PATH_MAX - sizeof(struct filename))
123
David Drysdale51f39a12014-12-12 16:57:29 -0800124struct filename *
Jeff Layton91a27b22012-10-10 15:25:28 -0400125getname_flags(const char __user *filename, int flags, int *empty)
126{
Al Viro94b5d262015-02-22 19:38:03 -0500127 struct filename *result;
Jeff Layton7950e382012-10-10 16:43:13 -0400128 char *kname;
Al Viro94b5d262015-02-22 19:38:03 -0500129 int len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Jeff Layton7ac86262012-10-10 15:25:28 -0400131 result = audit_reusename(filename);
132 if (result)
133 return result;
134
Jeff Layton7950e382012-10-10 16:43:13 -0400135 result = __getname();
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700136 if (unlikely(!result))
Eric Paris4043cde2012-01-03 14:23:08 -0500137 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Jeff Layton7950e382012-10-10 16:43:13 -0400139 /*
140 * First, try to embed the struct filename inside the names_cache
141 * allocation
142 */
143 kname = (char *)result + sizeof(*result);
Jeff Layton91a27b22012-10-10 15:25:28 -0400144 result->name = kname;
Jeff Layton7950e382012-10-10 16:43:13 -0400145 result->separate = false;
Jeff Layton7950e382012-10-10 16:43:13 -0400146
Al Viro94b5d262015-02-22 19:38:03 -0500147 len = strncpy_from_user(kname, filename, EMBEDDED_NAME_MAX);
Jeff Layton91a27b22012-10-10 15:25:28 -0400148 if (unlikely(len < 0)) {
Al Viro94b5d262015-02-22 19:38:03 -0500149 __putname(result);
150 return ERR_PTR(len);
Jeff Layton91a27b22012-10-10 15:25:28 -0400151 }
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700152
Jeff Layton7950e382012-10-10 16:43:13 -0400153 /*
154 * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
155 * separate struct filename so we can dedicate the entire
156 * names_cache allocation for the pathname, and re-do the copy from
157 * userland.
158 */
Al Viro94b5d262015-02-22 19:38:03 -0500159 if (unlikely(len == EMBEDDED_NAME_MAX)) {
Jeff Layton7950e382012-10-10 16:43:13 -0400160 kname = (char *)result;
161
162 result = kzalloc(sizeof(*result), GFP_KERNEL);
Al Viro94b5d262015-02-22 19:38:03 -0500163 if (unlikely(!result)) {
164 __putname(kname);
165 return ERR_PTR(-ENOMEM);
Jeff Layton7950e382012-10-10 16:43:13 -0400166 }
167 result->name = kname;
168 result->separate = true;
Al Viro94b5d262015-02-22 19:38:03 -0500169 len = strncpy_from_user(kname, filename, PATH_MAX);
170 if (unlikely(len < 0)) {
171 __putname(kname);
172 kfree(result);
173 return ERR_PTR(len);
174 }
175 if (unlikely(len == PATH_MAX)) {
176 __putname(kname);
177 kfree(result);
178 return ERR_PTR(-ENAMETOOLONG);
179 }
Jeff Layton7950e382012-10-10 16:43:13 -0400180 }
181
Al Viro94b5d262015-02-22 19:38:03 -0500182 result->refcnt = 1;
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700183 /* The empty path is special. */
184 if (unlikely(!len)) {
185 if (empty)
Eric Paris4043cde2012-01-03 14:23:08 -0500186 *empty = 1;
Al Viro94b5d262015-02-22 19:38:03 -0500187 if (!(flags & LOOKUP_EMPTY)) {
188 putname(result);
189 return ERR_PTR(-ENOENT);
190 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
Linus Torvalds3f9f0aa2012-04-28 14:38:32 -0700192
Jeff Layton7950e382012-10-10 16:43:13 -0400193 result->uptr = filename;
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800194 result->aname = NULL;
Jeff Layton7950e382012-10-10 16:43:13 -0400195 audit_getname(result);
196 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197}
198
Jeff Layton91a27b22012-10-10 15:25:28 -0400199struct filename *
200getname(const char __user * filename)
Al Virof52e0c12011-03-14 18:56:51 -0400201{
Linus Torvaldsf7493e52012-03-22 16:10:40 -0700202 return getname_flags(filename, 0, NULL);
Al Virof52e0c12011-03-14 18:56:51 -0400203}
204
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800205struct filename *
206getname_kernel(const char * filename)
207{
208 struct filename *result;
Paul Moore08518542015-01-21 23:59:56 -0500209 int len = strlen(filename) + 1;
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800210
211 result = __getname();
212 if (unlikely(!result))
213 return ERR_PTR(-ENOMEM);
214
Paul Moore08518542015-01-21 23:59:56 -0500215 if (len <= EMBEDDED_NAME_MAX) {
216 result->name = (char *)(result) + sizeof(*result);
217 result->separate = false;
218 } else if (len <= PATH_MAX) {
219 struct filename *tmp;
220
221 tmp = kmalloc(sizeof(*tmp), GFP_KERNEL);
222 if (unlikely(!tmp)) {
223 __putname(result);
224 return ERR_PTR(-ENOMEM);
225 }
226 tmp->name = (char *)result;
227 tmp->separate = true;
228 result = tmp;
229 } else {
230 __putname(result);
231 return ERR_PTR(-ENAMETOOLONG);
232 }
233 memcpy((char *)result->name, filename, len);
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800234 result->uptr = NULL;
235 result->aname = NULL;
Paul Moore55422d02015-01-22 00:00:23 -0500236 result->refcnt = 1;
Paul Moorefd3522f2015-01-22 00:00:10 -0500237 audit_getname(result);
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800238
Linus Torvaldsc4ad8f92014-02-05 12:54:53 -0800239 return result;
240}
241
Jeff Layton91a27b22012-10-10 15:25:28 -0400242void putname(struct filename *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
Paul Moore55422d02015-01-22 00:00:23 -0500244 BUG_ON(name->refcnt <= 0);
245
246 if (--name->refcnt > 0)
247 return;
248
249 if (name->separate) {
250 __putname(name->name);
251 kfree(name);
252 } else
253 __putname(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Linus Torvaldse77819e2011-07-22 19:30:19 -0700256static int check_acl(struct inode *inode, int mask)
257{
Linus Torvalds84635d62011-07-25 22:47:03 -0700258#ifdef CONFIG_FS_POSIX_ACL
Linus Torvaldse77819e2011-07-22 19:30:19 -0700259 struct posix_acl *acl;
260
Linus Torvaldse77819e2011-07-22 19:30:19 -0700261 if (mask & MAY_NOT_BLOCK) {
Al Viro35678662011-08-02 21:32:13 -0400262 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
263 if (!acl)
Linus Torvaldse77819e2011-07-22 19:30:19 -0700264 return -EAGAIN;
Al Viro35678662011-08-02 21:32:13 -0400265 /* no ->get_acl() calls in RCU mode... */
266 if (acl == ACL_NOT_CACHED)
267 return -ECHILD;
Ari Savolainen206b1d02011-08-06 19:43:07 +0300268 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
Linus Torvaldse77819e2011-07-22 19:30:19 -0700269 }
270
Christoph Hellwig2982baa2013-12-20 05:16:38 -0800271 acl = get_acl(inode, ACL_TYPE_ACCESS);
272 if (IS_ERR(acl))
273 return PTR_ERR(acl);
Linus Torvaldse77819e2011-07-22 19:30:19 -0700274 if (acl) {
275 int error = posix_acl_permission(inode, acl, mask);
276 posix_acl_release(acl);
277 return error;
278 }
Linus Torvalds84635d62011-07-25 22:47:03 -0700279#endif
Linus Torvaldse77819e2011-07-22 19:30:19 -0700280
281 return -EAGAIN;
282}
283
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700284/*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530285 * This does the basic permission checking
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700286 */
Al Viro7e401452011-06-20 19:12:17 -0400287static int acl_permission_check(struct inode *inode, int mask)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700288{
Linus Torvalds26cf46b2011-05-13 11:51:01 -0700289 unsigned int mode = inode->i_mode;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700290
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -0800291 if (likely(uid_eq(current_fsuid(), inode->i_uid)))
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700292 mode >>= 6;
293 else {
Linus Torvaldse77819e2011-07-22 19:30:19 -0700294 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
Al Viro7e401452011-06-20 19:12:17 -0400295 int error = check_acl(inode, mask);
Nick Pigginb74c79e2011-01-07 17:49:58 +1100296 if (error != -EAGAIN)
297 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700298 }
299
300 if (in_group_p(inode->i_gid))
301 mode >>= 3;
302 }
303
304 /*
305 * If the DACs are ok we don't need any capability check.
306 */
Al Viro9c2c7032011-06-20 19:06:22 -0400307 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700308 return 0;
309 return -EACCES;
310}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100313 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 * @inode: inode to check access rights for
Andreas Gruenbacher8fd90c82011-10-23 23:13:30 +0530315 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 *
317 * Used to check for read/write/execute permissions on a file.
318 * We use "fsuid" for this, letting us set arbitrary permissions
319 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100320 * are used for other things.
321 *
322 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
323 * request cannot be satisfied (eg. requires blocking or too much complexity).
324 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 */
Al Viro2830ba72011-06-20 19:16:29 -0400326int generic_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700328 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330 /*
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530331 * Do the basic permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 */
Al Viro7e401452011-06-20 19:12:17 -0400333 ret = acl_permission_check(inode, mask);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700334 if (ret != -EACCES)
335 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Al Virod594e7e2011-06-20 19:55:42 -0400337 if (S_ISDIR(inode->i_mode)) {
338 /* DACs are overridable for directories */
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700339 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
Al Virod594e7e2011-06-20 19:55:42 -0400340 return 0;
341 if (!(mask & MAY_WRITE))
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700342 if (capable_wrt_inode_uidgid(inode,
343 CAP_DAC_READ_SEARCH))
Al Virod594e7e2011-06-20 19:55:42 -0400344 return 0;
345 return -EACCES;
346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 /*
348 * Read/write DACs are always overridable.
Al Virod594e7e2011-06-20 19:55:42 -0400349 * Executable DACs are overridable when there is
350 * at least one exec bit set.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 */
Al Virod594e7e2011-06-20 19:55:42 -0400352 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700353 if (capable_wrt_inode_uidgid(inode, CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return 0;
355
356 /*
357 * Searching includes executable on directories, else just read.
358 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600359 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Al Virod594e7e2011-06-20 19:55:42 -0400360 if (mask == MAY_READ)
Andy Lutomirski23adbe12014-06-10 12:45:42 -0700361 if (capable_wrt_inode_uidgid(inode, CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 return 0;
363
364 return -EACCES;
365}
Al Viro4d359502014-03-14 12:20:17 -0400366EXPORT_SYMBOL(generic_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700368/*
369 * We _really_ want to just do "generic_permission()" without
370 * even looking at the inode->i_op values. So we keep a cache
371 * flag in inode->i_opflags, that says "this has not special
372 * permission function, use the fast case".
373 */
374static inline int do_inode_permission(struct inode *inode, int mask)
375{
376 if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
377 if (likely(inode->i_op->permission))
378 return inode->i_op->permission(inode, mask);
379
380 /* This gets set once for the inode lifetime */
381 spin_lock(&inode->i_lock);
382 inode->i_opflags |= IOP_FASTPERM;
383 spin_unlock(&inode->i_lock);
384 }
385 return generic_permission(inode, mask);
386}
387
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200388/**
David Howells0bdaea92012-06-25 12:55:46 +0100389 * __inode_permission - Check for access rights to a given inode
390 * @inode: Inode to check permission on
391 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200392 *
David Howells0bdaea92012-06-25 12:55:46 +0100393 * Check for read/write/execute permissions on an inode.
Andreas Gruenbacher948409c2011-10-23 23:13:33 +0530394 *
395 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
David Howells0bdaea92012-06-25 12:55:46 +0100396 *
397 * This does not check for a read-only file system. You probably want
398 * inode_permission().
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200399 */
David Howells0bdaea92012-06-25 12:55:46 +0100400int __inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
Al Viroe6305c42008-07-15 21:03:57 -0400402 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700404 if (unlikely(mask & MAY_WRITE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 /*
406 * Nobody gets write access to an immutable file.
407 */
408 if (IS_IMMUTABLE(inode))
409 return -EACCES;
410 }
411
Linus Torvalds3ddcd052011-08-06 22:45:50 -0700412 retval = do_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (retval)
414 return retval;
415
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700416 retval = devcgroup_inode_permission(inode, mask);
417 if (retval)
418 return retval;
419
Eric Parisd09ca732010-07-23 11:43:57 -0400420 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421}
Miklos Szeredibd5d0852014-10-24 00:14:35 +0200422EXPORT_SYMBOL(__inode_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Al Virof4d6ff82011-06-19 13:14:21 -0400424/**
David Howells0bdaea92012-06-25 12:55:46 +0100425 * sb_permission - Check superblock-level permissions
426 * @sb: Superblock of inode to check permission on
Randy Dunlap55852632012-08-18 17:39:25 -0700427 * @inode: Inode to check permission on
David Howells0bdaea92012-06-25 12:55:46 +0100428 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
429 *
430 * Separate out file-system wide checks from inode-specific permission checks.
431 */
432static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
433{
434 if (unlikely(mask & MAY_WRITE)) {
435 umode_t mode = inode->i_mode;
436
437 /* Nobody gets write access to a read-only fs. */
438 if ((sb->s_flags & MS_RDONLY) &&
439 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
440 return -EROFS;
441 }
442 return 0;
443}
444
445/**
446 * inode_permission - Check for access rights to a given inode
447 * @inode: Inode to check permission on
448 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
449 *
450 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
451 * this, letting us set arbitrary permissions for filesystem access without
452 * changing the "normal" UIDs which are used for other things.
453 *
454 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
455 */
456int inode_permission(struct inode *inode, int mask)
457{
458 int retval;
459
460 retval = sb_permission(inode->i_sb, inode, mask);
461 if (retval)
462 return retval;
463 return __inode_permission(inode, mask);
464}
Al Viro4d359502014-03-14 12:20:17 -0400465EXPORT_SYMBOL(inode_permission);
David Howells0bdaea92012-06-25 12:55:46 +0100466
467/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800468 * path_get - get a reference to a path
469 * @path: path to get the reference to
470 *
471 * Given a path increment the reference count to the dentry and the vfsmount.
472 */
Al Virodcf787f2013-03-01 23:51:07 -0500473void path_get(const struct path *path)
Jan Blunck5dd784d02008-02-14 19:34:38 -0800474{
475 mntget(path->mnt);
476 dget(path->dentry);
477}
478EXPORT_SYMBOL(path_get);
479
480/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800481 * path_put - put a reference to a path
482 * @path: path to put the reference to
483 *
484 * Given a path decrement the reference count to the dentry and the vfsmount.
485 */
Al Virodcf787f2013-03-01 23:51:07 -0500486void path_put(const struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
Jan Blunck1d957f92008-02-14 19:34:35 -0800488 dput(path->dentry);
489 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
Jan Blunck1d957f92008-02-14 19:34:35 -0800491EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Al Viro1f55a6e2014-11-01 19:30:41 -0400493struct nameidata {
494 struct path path;
495 struct qstr last;
496 struct path root;
497 struct inode *inode; /* path.dentry.d_inode */
498 unsigned int flags;
499 unsigned seq, m_seq;
500 int last_type;
501 unsigned depth;
Al Viro5e530842014-11-20 14:14:42 -0500502 struct file *base;
Al Viro1f55a6e2014-11-01 19:30:41 -0400503 char *saved_names[MAX_NESTED_LINKS + 1];
504};
505
Al Viro19660af2011-03-25 10:32:48 -0400506/*
Nick Piggin31e6b012011-01-07 17:49:52 +1100507 * Path walking has 2 modes, rcu-walk and ref-walk (see
Al Viro19660af2011-03-25 10:32:48 -0400508 * Documentation/filesystems/path-lookup.txt). In situations when we can't
509 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
510 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
511 * mode. Refcounts are grabbed at the last known good point before rcu-walk
512 * got stuck, so ref-walk may continue from there. If this is not successful
513 * (eg. a seqcount has changed), then failure is returned and it's up to caller
514 * to restart the path walk from the beginning in ref-walk mode.
Nick Piggin31e6b012011-01-07 17:49:52 +1100515 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100516
517/**
Al Viro19660af2011-03-25 10:32:48 -0400518 * unlazy_walk - try to switch to ref-walk mode.
519 * @nd: nameidata pathwalk data
520 * @dentry: child of nd->path.dentry or NULL
Randy Dunlap39191622011-01-08 19:36:21 -0800521 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100522 *
Al Viro19660af2011-03-25 10:32:48 -0400523 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
524 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
525 * @nd or NULL. Must be called from rcu-walk context.
Nick Piggin31e6b012011-01-07 17:49:52 +1100526 */
Al Viro19660af2011-03-25 10:32:48 -0400527static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
Nick Piggin31e6b012011-01-07 17:49:52 +1100528{
529 struct fs_struct *fs = current->fs;
530 struct dentry *parent = nd->path.dentry;
531
532 BUG_ON(!(nd->flags & LOOKUP_RCU));
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700533
534 /*
Al Viro48a066e2013-09-29 22:06:07 -0400535 * After legitimizing the bastards, terminate_walk()
536 * will do the right thing for non-RCU mode, and all our
537 * subsequent exit cases should rcu_read_unlock()
538 * before returning. Do vfsmount first; if dentry
539 * can't be legitimized, just set nd->path.dentry to NULL
540 * and rely on dput(NULL) being a no-op.
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700541 */
Al Viro48a066e2013-09-29 22:06:07 -0400542 if (!legitimize_mnt(nd->path.mnt, nd->m_seq))
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700543 return -ECHILD;
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700544 nd->flags &= ~LOOKUP_RCU;
Linus Torvalds15570082013-09-02 11:38:06 -0700545
Al Viro48a066e2013-09-29 22:06:07 -0400546 if (!lockref_get_not_dead(&parent->d_lockref)) {
547 nd->path.dentry = NULL;
Al Virod870b4a2013-11-29 01:48:32 -0500548 goto out;
Al Viro48a066e2013-09-29 22:06:07 -0400549 }
550
Linus Torvalds15570082013-09-02 11:38:06 -0700551 /*
552 * For a negative lookup, the lookup sequence point is the parents
553 * sequence point, and it only needs to revalidate the parent dentry.
554 *
555 * For a positive lookup, we need to move both the parent and the
556 * dentry from the RCU domain to be properly refcounted. And the
557 * sequence number in the dentry validates *both* dentry counters,
558 * since we checked the sequence number of the parent after we got
559 * the child sequence number. So we know the parent must still
560 * be valid if the child sequence number is still valid.
561 */
Al Viro19660af2011-03-25 10:32:48 -0400562 if (!dentry) {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700563 if (read_seqcount_retry(&parent->d_seq, nd->seq))
564 goto out;
Al Viro19660af2011-03-25 10:32:48 -0400565 BUG_ON(nd->inode != parent->d_inode);
566 } else {
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700567 if (!lockref_get_not_dead(&dentry->d_lockref))
568 goto out;
569 if (read_seqcount_retry(&dentry->d_seq, nd->seq))
570 goto drop_dentry;
Al Viro19660af2011-03-25 10:32:48 -0400571 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700572
573 /*
574 * Sequence counts matched. Now make sure that the root is
575 * still valid and get it if required.
576 */
577 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
578 spin_lock(&fs->lock);
579 if (nd->root.mnt != fs->root.mnt || nd->root.dentry != fs->root.dentry)
580 goto unlock_and_drop_dentry;
Nick Piggin31e6b012011-01-07 17:49:52 +1100581 path_get(&nd->root);
582 spin_unlock(&fs->lock);
583 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100584
Al Viro8b61e742013-11-08 12:45:01 -0500585 rcu_read_unlock();
Nick Piggin31e6b012011-01-07 17:49:52 +1100586 return 0;
Al Viro19660af2011-03-25 10:32:48 -0400587
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700588unlock_and_drop_dentry:
589 spin_unlock(&fs->lock);
590drop_dentry:
Al Viro8b61e742013-11-08 12:45:01 -0500591 rcu_read_unlock();
Linus Torvalds15570082013-09-02 11:38:06 -0700592 dput(dentry);
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700593 goto drop_root_mnt;
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700594out:
Al Viro8b61e742013-11-08 12:45:01 -0500595 rcu_read_unlock();
Linus Torvaldsd0d27272013-09-10 12:17:49 -0700596drop_root_mnt:
597 if (!(nd->flags & LOOKUP_ROOT))
598 nd->root.mnt = NULL;
Nick Piggin31e6b012011-01-07 17:49:52 +1100599 return -ECHILD;
600}
601
Al Viro4ce16ef32012-06-10 16:10:59 -0400602static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
Nick Piggin34286d62011-01-07 17:49:57 +1100603{
Al Viro4ce16ef32012-06-10 16:10:59 -0400604 return dentry->d_op->d_revalidate(dentry, flags);
Nick Piggin34286d62011-01-07 17:49:57 +1100605}
606
Al Viro9f1fafe2011-03-25 11:00:12 -0400607/**
608 * complete_walk - successful completion of path walk
609 * @nd: pointer nameidata
Jeff Layton39159de2009-12-07 12:01:50 -0500610 *
Al Viro9f1fafe2011-03-25 11:00:12 -0400611 * If we had been in RCU mode, drop out of it and legitimize nd->path.
612 * Revalidate the final result, unless we'd already done that during
613 * the path walk or the filesystem doesn't ask for it. Return 0 on
614 * success, -error on failure. In case of failure caller does not
615 * need to drop nd->path.
Jeff Layton39159de2009-12-07 12:01:50 -0500616 */
Al Viro9f1fafe2011-03-25 11:00:12 -0400617static int complete_walk(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500618{
Al Viro16c2cd72011-02-22 15:50:10 -0500619 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500620 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500621
Al Viro9f1fafe2011-03-25 11:00:12 -0400622 if (nd->flags & LOOKUP_RCU) {
623 nd->flags &= ~LOOKUP_RCU;
624 if (!(nd->flags & LOOKUP_ROOT))
625 nd->root.mnt = NULL;
Linus Torvalds15570082013-09-02 11:38:06 -0700626
Al Viro48a066e2013-09-29 22:06:07 -0400627 if (!legitimize_mnt(nd->path.mnt, nd->m_seq)) {
Al Viro8b61e742013-11-08 12:45:01 -0500628 rcu_read_unlock();
Al Viro48a066e2013-09-29 22:06:07 -0400629 return -ECHILD;
630 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700631 if (unlikely(!lockref_get_not_dead(&dentry->d_lockref))) {
Al Viro8b61e742013-11-08 12:45:01 -0500632 rcu_read_unlock();
Al Viro48a066e2013-09-29 22:06:07 -0400633 mntput(nd->path.mnt);
Al Viro9f1fafe2011-03-25 11:00:12 -0400634 return -ECHILD;
635 }
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700636 if (read_seqcount_retry(&dentry->d_seq, nd->seq)) {
Al Viro8b61e742013-11-08 12:45:01 -0500637 rcu_read_unlock();
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700638 dput(dentry);
Al Viro48a066e2013-09-29 22:06:07 -0400639 mntput(nd->path.mnt);
Linus Torvaldse5c832d2013-09-08 18:13:49 -0700640 return -ECHILD;
641 }
Al Viro8b61e742013-11-08 12:45:01 -0500642 rcu_read_unlock();
Al Viro9f1fafe2011-03-25 11:00:12 -0400643 }
644
Al Viro16c2cd72011-02-22 15:50:10 -0500645 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500646 return 0;
647
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500648 if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
Al Viro16c2cd72011-02-22 15:50:10 -0500649 return 0;
650
Jeff Laytonecf3d1f2013-02-20 11:19:05 -0500651 status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
Jeff Layton39159de2009-12-07 12:01:50 -0500652 if (status > 0)
653 return 0;
654
Al Viro16c2cd72011-02-22 15:50:10 -0500655 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500656 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500657
Al Viro9f1fafe2011-03-25 11:00:12 -0400658 path_put(&nd->path);
Jeff Layton39159de2009-12-07 12:01:50 -0500659 return status;
660}
661
Al Viro2a737872009-04-07 11:49:53 -0400662static __always_inline void set_root(struct nameidata *nd)
663{
Al Viro7bd88372014-09-13 21:55:46 -0400664 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400665}
666
Al Viro6de88d72009-08-09 01:41:57 +0400667static int link_path_walk(const char *, struct nameidata *);
668
Al Viro7bd88372014-09-13 21:55:46 -0400669static __always_inline unsigned set_root_rcu(struct nameidata *nd)
Nick Piggin31e6b012011-01-07 17:49:52 +1100670{
Al Viro7bd88372014-09-13 21:55:46 -0400671 struct fs_struct *fs = current->fs;
672 unsigned seq, res;
Nick Pigginc28cc362011-01-07 17:49:53 +1100673
Al Viro7bd88372014-09-13 21:55:46 -0400674 do {
675 seq = read_seqcount_begin(&fs->seq);
676 nd->root = fs->root;
677 res = __read_seqcount_begin(&nd->root.dentry->d_seq);
678 } while (read_seqcount_retry(&fs->seq, seq));
679 return res;
Nick Piggin31e6b012011-01-07 17:49:52 +1100680}
681
Jan Blunck1d957f92008-02-14 19:34:35 -0800682static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700683{
684 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800685 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700686 mntput(path->mnt);
687}
688
Nick Piggin7b9337a2011-01-14 08:42:43 +0000689static inline void path_to_nameidata(const struct path *path,
690 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700691{
Nick Piggin31e6b012011-01-07 17:49:52 +1100692 if (!(nd->flags & LOOKUP_RCU)) {
693 dput(nd->path.dentry);
694 if (nd->path.mnt != path->mnt)
695 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800696 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100697 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800698 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700699}
700
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400701/*
702 * Helper to directly jump to a known parsed path from ->follow_link,
703 * caller must have taken a reference to path beforehand.
704 */
705void nd_jump_link(struct nameidata *nd, struct path *path)
706{
707 path_put(&nd->path);
708
709 nd->path = *path;
710 nd->inode = nd->path.dentry->d_inode;
711 nd->flags |= LOOKUP_JUMPED;
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400712}
713
Al Viro1f55a6e2014-11-01 19:30:41 -0400714void nd_set_link(struct nameidata *nd, char *path)
715{
716 nd->saved_names[nd->depth] = path;
717}
718EXPORT_SYMBOL(nd_set_link);
719
720char *nd_get_link(struct nameidata *nd)
721{
722 return nd->saved_names[nd->depth];
723}
724EXPORT_SYMBOL(nd_get_link);
725
Al Viro574197e2011-03-14 22:20:34 -0400726static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
727{
728 struct inode *inode = link->dentry->d_inode;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400729 if (inode->i_op->put_link)
Al Viro574197e2011-03-14 22:20:34 -0400730 inode->i_op->put_link(link->dentry, nd, cookie);
731 path_put(link);
732}
733
Linus Torvalds561ec642012-10-26 10:05:07 -0700734int sysctl_protected_symlinks __read_mostly = 0;
735int sysctl_protected_hardlinks __read_mostly = 0;
Kees Cook800179c2012-07-25 17:29:07 -0700736
737/**
738 * may_follow_link - Check symlink following for unsafe situations
739 * @link: The path of the symlink
Randy Dunlap55852632012-08-18 17:39:25 -0700740 * @nd: nameidata pathwalk data
Kees Cook800179c2012-07-25 17:29:07 -0700741 *
742 * In the case of the sysctl_protected_symlinks sysctl being enabled,
743 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
744 * in a sticky world-writable directory. This is to protect privileged
745 * processes from failing races against path names that may change out
746 * from under them by way of other users creating malicious symlinks.
747 * It will permit symlinks to be followed only when outside a sticky
748 * world-writable directory, or when the uid of the symlink and follower
749 * match, or when the directory owner matches the symlink's owner.
750 *
751 * Returns 0 if following the symlink is allowed, -ve on error.
752 */
753static inline int may_follow_link(struct path *link, struct nameidata *nd)
754{
755 const struct inode *inode;
756 const struct inode *parent;
757
758 if (!sysctl_protected_symlinks)
759 return 0;
760
761 /* Allowed if owner and follower match. */
762 inode = link->dentry->d_inode;
Eric W. Biederman81abe272012-08-03 09:38:08 -0700763 if (uid_eq(current_cred()->fsuid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700764 return 0;
765
766 /* Allowed if parent directory not sticky and world-writable. */
767 parent = nd->path.dentry->d_inode;
768 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
769 return 0;
770
771 /* Allowed if parent directory and link owner match. */
Eric W. Biederman81abe272012-08-03 09:38:08 -0700772 if (uid_eq(parent->i_uid, inode->i_uid))
Kees Cook800179c2012-07-25 17:29:07 -0700773 return 0;
774
Sasha Levinffd8d102012-10-04 19:56:40 -0400775 audit_log_link_denied("follow_link", link);
Kees Cook800179c2012-07-25 17:29:07 -0700776 path_put_conditional(link, nd);
777 path_put(&nd->path);
778 return -EACCES;
779}
780
781/**
782 * safe_hardlink_source - Check for safe hardlink conditions
783 * @inode: the source inode to hardlink from
784 *
785 * Return false if at least one of the following conditions:
786 * - inode is not a regular file
787 * - inode is setuid
788 * - inode is setgid and group-exec
789 * - access failure for read and write
790 *
791 * Otherwise returns true.
792 */
793static bool safe_hardlink_source(struct inode *inode)
794{
795 umode_t mode = inode->i_mode;
796
797 /* Special files should not get pinned to the filesystem. */
798 if (!S_ISREG(mode))
799 return false;
800
801 /* Setuid files should not get pinned to the filesystem. */
802 if (mode & S_ISUID)
803 return false;
804
805 /* Executable setgid files should not get pinned to the filesystem. */
806 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
807 return false;
808
809 /* Hardlinking to unreadable or unwritable sources is dangerous. */
810 if (inode_permission(inode, MAY_READ | MAY_WRITE))
811 return false;
812
813 return true;
814}
815
816/**
817 * may_linkat - Check permissions for creating a hardlink
818 * @link: the source to hardlink from
819 *
820 * Block hardlink when all of:
821 * - sysctl_protected_hardlinks enabled
822 * - fsuid does not match inode
823 * - hardlink source is unsafe (see safe_hardlink_source() above)
824 * - not CAP_FOWNER
825 *
826 * Returns 0 if successful, -ve on error.
827 */
828static int may_linkat(struct path *link)
829{
830 const struct cred *cred;
831 struct inode *inode;
832
833 if (!sysctl_protected_hardlinks)
834 return 0;
835
836 cred = current_cred();
837 inode = link->dentry->d_inode;
838
839 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
840 * otherwise, it must be a safe source.
841 */
Eric W. Biederman81abe272012-08-03 09:38:08 -0700842 if (uid_eq(cred->fsuid, inode->i_uid) || safe_hardlink_source(inode) ||
Kees Cook800179c2012-07-25 17:29:07 -0700843 capable(CAP_FOWNER))
844 return 0;
845
Kees Cooka51d9ea2012-07-25 17:29:08 -0700846 audit_log_link_denied("linkat", link);
Kees Cook800179c2012-07-25 17:29:07 -0700847 return -EPERM;
848}
849
Al Virodef4af32009-12-26 08:37:05 -0500850static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400851follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800852{
Nick Piggin7b9337a2011-01-14 08:42:43 +0000853 struct dentry *dentry = link->dentry;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400854 int error;
855 char *s;
Ian Kent051d3812006-03-27 01:14:53 -0800856
Al Viro844a3912011-02-15 00:38:26 -0500857 BUG_ON(nd->flags & LOOKUP_RCU);
858
Al Viro0e794582011-03-16 02:45:02 -0400859 if (link->mnt == nd->path.mnt)
860 mntget(link->mnt);
861
Al Viro6d7b5aa2012-06-10 04:15:17 -0400862 error = -ELOOP;
863 if (unlikely(current->total_link_count >= 40))
864 goto out_put_nd_path;
865
Al Viro574197e2011-03-14 22:20:34 -0400866 cond_resched();
867 current->total_link_count++;
868
Al Viro68ac1232012-03-15 08:21:57 -0400869 touch_atime(link);
Ian Kent051d3812006-03-27 01:14:53 -0800870 nd_set_link(nd, NULL);
871
Al Viro36f3b4f2011-02-22 21:24:38 -0500872 error = security_inode_follow_link(link->dentry, nd);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400873 if (error)
874 goto out_put_nd_path;
Al Viro36f3b4f2011-02-22 21:24:38 -0500875
Al Viro86acdca12009-12-22 23:45:11 -0500876 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500877 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
878 error = PTR_ERR(*p);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400879 if (IS_ERR(*p))
Christoph Hellwig408ef012012-06-18 10:47:03 -0400880 goto out_put_nd_path;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400881
882 error = 0;
883 s = nd_get_link(nd);
884 if (s) {
Al Viro443ed252013-09-10 12:00:43 -0400885 if (unlikely(IS_ERR(s))) {
886 path_put(&nd->path);
887 put_link(nd, link, *p);
888 return PTR_ERR(s);
889 }
890 if (*s == '/') {
Al Viro7bd88372014-09-13 21:55:46 -0400891 if (!nd->root.mnt)
892 set_root(nd);
Al Viro443ed252013-09-10 12:00:43 -0400893 path_put(&nd->path);
894 nd->path = nd->root;
895 path_get(&nd->root);
896 nd->flags |= LOOKUP_JUMPED;
897 }
898 nd->inode = nd->path.dentry->d_inode;
899 error = link_path_walk(s, nd);
Christoph Hellwigb5fb63c12012-06-18 10:47:04 -0400900 if (unlikely(error))
901 put_link(nd, link, *p);
Ian Kent051d3812006-03-27 01:14:53 -0800902 }
Al Viro6d7b5aa2012-06-10 04:15:17 -0400903
904 return error;
905
906out_put_nd_path:
Arnd Bergmann98f6ef62012-10-11 13:20:00 +0000907 *p = NULL;
Al Viro6d7b5aa2012-06-10 04:15:17 -0400908 path_put(&nd->path);
Al Viro6d7b5aa2012-06-10 04:15:17 -0400909 path_put(link);
Ian Kent051d3812006-03-27 01:14:53 -0800910 return error;
911}
912
Nick Piggin31e6b012011-01-07 17:49:52 +1100913static int follow_up_rcu(struct path *path)
914{
Al Viro0714a532011-11-24 22:19:58 -0500915 struct mount *mnt = real_mount(path->mnt);
916 struct mount *parent;
Nick Piggin31e6b012011-01-07 17:49:52 +1100917 struct dentry *mountpoint;
918
Al Viro0714a532011-11-24 22:19:58 -0500919 parent = mnt->mnt_parent;
920 if (&parent->mnt == path->mnt)
Nick Piggin31e6b012011-01-07 17:49:52 +1100921 return 0;
Al Viroa73324d2011-11-24 22:25:07 -0500922 mountpoint = mnt->mnt_mountpoint;
Nick Piggin31e6b012011-01-07 17:49:52 +1100923 path->dentry = mountpoint;
Al Viro0714a532011-11-24 22:19:58 -0500924 path->mnt = &parent->mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +1100925 return 1;
926}
927
David Howellsf015f1262012-06-25 12:55:28 +0100928/*
929 * follow_up - Find the mountpoint of path's vfsmount
930 *
931 * Given a path, find the mountpoint of its source file system.
932 * Replace @path with the path of the mountpoint in the parent mount.
933 * Up is towards /.
934 *
935 * Return 1 if we went up a level and 0 if we were already at the
936 * root.
937 */
Al Virobab77eb2009-04-18 03:26:48 -0400938int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939{
Al Viro0714a532011-11-24 22:19:58 -0500940 struct mount *mnt = real_mount(path->mnt);
941 struct mount *parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000943
Al Viro48a066e2013-09-29 22:06:07 -0400944 read_seqlock_excl(&mount_lock);
Al Viro0714a532011-11-24 22:19:58 -0500945 parent = mnt->mnt_parent;
Al Viro3c0a6162012-07-18 17:32:50 +0400946 if (parent == mnt) {
Al Viro48a066e2013-09-29 22:06:07 -0400947 read_sequnlock_excl(&mount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return 0;
949 }
Al Viro0714a532011-11-24 22:19:58 -0500950 mntget(&parent->mnt);
Al Viroa73324d2011-11-24 22:25:07 -0500951 mountpoint = dget(mnt->mnt_mountpoint);
Al Viro48a066e2013-09-29 22:06:07 -0400952 read_sequnlock_excl(&mount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400953 dput(path->dentry);
954 path->dentry = mountpoint;
955 mntput(path->mnt);
Al Viro0714a532011-11-24 22:19:58 -0500956 path->mnt = &parent->mnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 return 1;
958}
Al Viro4d359502014-03-14 12:20:17 -0400959EXPORT_SYMBOL(follow_up);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100961/*
David Howells9875cf82011-01-14 18:45:21 +0000962 * Perform an automount
963 * - return -EISDIR to tell follow_managed() to stop and return the path we
964 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 */
David Howells9875cf82011-01-14 18:45:21 +0000966static int follow_automount(struct path *path, unsigned flags,
967 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100968{
David Howells9875cf82011-01-14 18:45:21 +0000969 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000970 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100971
David Howells9875cf82011-01-14 18:45:21 +0000972 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
973 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700974
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200975 /* We don't want to mount if someone's just doing a stat -
976 * unless they're stat'ing a directory and appended a '/' to
977 * the name.
978 *
979 * We do, however, want to mount if someone wants to open or
980 * create a file of any type under the mountpoint, wants to
981 * traverse through the mountpoint or wants to open the
982 * mounted directory. Also, autofs may mark negative dentries
983 * as being automount points. These will need the attentions
984 * of the daemon to instantiate them before they can be used.
David Howells9875cf82011-01-14 18:45:21 +0000985 */
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200986 if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
Linus Torvaldsd94c1772011-09-26 17:44:55 -0700987 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
Miklos Szeredi0ec26fd2011-09-05 18:06:26 +0200988 path->dentry->d_inode)
989 return -EISDIR;
990
David Howells9875cf82011-01-14 18:45:21 +0000991 current->total_link_count++;
992 if (current->total_link_count >= 40)
993 return -ELOOP;
994
995 mnt = path->dentry->d_op->d_automount(path);
996 if (IS_ERR(mnt)) {
997 /*
998 * The filesystem is allowed to return -EISDIR here to indicate
999 * it doesn't want to automount. For instance, autofs would do
1000 * this so that its userspace daemon can mount on this dentry.
1001 *
1002 * However, we can only permit this if it's a terminal point in
1003 * the path being looked up; if it wasn't then the remainder of
1004 * the path is inaccessible and we should say so.
1005 */
Al Viro49084c32011-06-25 21:59:52 -04001006 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
David Howells9875cf82011-01-14 18:45:21 +00001007 return -EREMOTE;
1008 return PTR_ERR(mnt);
1009 }
David Howellsea5b7782011-01-14 19:10:03 +00001010
David Howells9875cf82011-01-14 18:45:21 +00001011 if (!mnt) /* mount collision */
1012 return 0;
1013
Al Viro8aef1882011-06-16 15:10:06 +01001014 if (!*need_mntput) {
1015 /* lock_mount() may release path->mnt on error */
1016 mntget(path->mnt);
1017 *need_mntput = true;
1018 }
Al Viro19a167a2011-01-17 01:35:23 -05001019 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +00001020
David Howellsea5b7782011-01-14 19:10:03 +00001021 switch (err) {
1022 case -EBUSY:
1023 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -05001024 return 0;
David Howellsea5b7782011-01-14 19:10:03 +00001025 case 0:
Al Viro8aef1882011-06-16 15:10:06 +01001026 path_put(path);
David Howellsea5b7782011-01-14 19:10:03 +00001027 path->mnt = mnt;
1028 path->dentry = dget(mnt->mnt_root);
David Howellsea5b7782011-01-14 19:10:03 +00001029 return 0;
Al Viro19a167a2011-01-17 01:35:23 -05001030 default:
1031 return err;
David Howellsea5b7782011-01-14 19:10:03 +00001032 }
Al Viro19a167a2011-01-17 01:35:23 -05001033
David Howells9875cf82011-01-14 18:45:21 +00001034}
1035
1036/*
1037 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +00001038 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +00001039 * - Flagged as mountpoint
1040 * - Flagged as automount point
1041 *
1042 * This may only be called in refwalk mode.
1043 *
1044 * Serialization is taken care of in namespace.c
1045 */
1046static int follow_managed(struct path *path, unsigned flags)
1047{
Al Viro8aef1882011-06-16 15:10:06 +01001048 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
David Howells9875cf82011-01-14 18:45:21 +00001049 unsigned managed;
1050 bool need_mntput = false;
Al Viro8aef1882011-06-16 15:10:06 +01001051 int ret = 0;
David Howells9875cf82011-01-14 18:45:21 +00001052
1053 /* Given that we're not holding a lock here, we retain the value in a
1054 * local variable for each dentry as we look at it so that we don't see
1055 * the components of that value change under us */
1056 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1057 managed &= DCACHE_MANAGED_DENTRY,
1058 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +00001059 /* Allow the filesystem to manage the transit without i_mutex
1060 * being held. */
1061 if (managed & DCACHE_MANAGE_TRANSIT) {
1062 BUG_ON(!path->dentry->d_op);
1063 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -04001064 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001065 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001066 break;
David Howellscc53ce52011-01-14 18:45:26 +00001067 }
1068
David Howells9875cf82011-01-14 18:45:21 +00001069 /* Transit to a mounted filesystem. */
1070 if (managed & DCACHE_MOUNTED) {
1071 struct vfsmount *mounted = lookup_mnt(path);
1072 if (mounted) {
1073 dput(path->dentry);
1074 if (need_mntput)
1075 mntput(path->mnt);
1076 path->mnt = mounted;
1077 path->dentry = dget(mounted->mnt_root);
1078 need_mntput = true;
1079 continue;
1080 }
1081
1082 /* Something is mounted on this dentry in another
1083 * namespace and/or whatever was mounted there in this
Al Viro48a066e2013-09-29 22:06:07 -04001084 * namespace got unmounted before lookup_mnt() could
1085 * get it */
David Howells9875cf82011-01-14 18:45:21 +00001086 }
1087
1088 /* Handle an automount point */
1089 if (managed & DCACHE_NEED_AUTOMOUNT) {
1090 ret = follow_automount(path, flags, &need_mntput);
1091 if (ret < 0)
Al Viro8aef1882011-06-16 15:10:06 +01001092 break;
David Howells9875cf82011-01-14 18:45:21 +00001093 continue;
1094 }
1095
1096 /* We didn't change the current path point */
1097 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 }
Al Viro8aef1882011-06-16 15:10:06 +01001099
1100 if (need_mntput && path->mnt == mnt)
1101 mntput(path->mnt);
1102 if (ret == -EISDIR)
1103 ret = 0;
Al Viroa3fbbde2011-11-07 21:21:26 +00001104 return ret < 0 ? ret : need_mntput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105}
1106
David Howellscc53ce52011-01-14 18:45:26 +00001107int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
1109 struct vfsmount *mounted;
1110
Al Viro1c755af2009-04-18 14:06:57 -04001111 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -04001113 dput(path->dentry);
1114 mntput(path->mnt);
1115 path->mnt = mounted;
1116 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 return 1;
1118 }
1119 return 0;
1120}
Al Viro4d359502014-03-14 12:20:17 -04001121EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
NeilBrownb8faf032014-08-04 17:06:29 +10001123static inline int managed_dentry_rcu(struct dentry *dentry)
Ian Kent62a73752011-03-25 01:51:02 +08001124{
NeilBrownb8faf032014-08-04 17:06:29 +10001125 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT) ?
1126 dentry->d_op->d_manage(dentry, true) : 0;
Ian Kent62a73752011-03-25 01:51:02 +08001127}
1128
David Howells9875cf82011-01-14 18:45:21 +00001129/*
Al Viro287548e2011-05-27 06:50:06 -04001130 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1131 * we meet a managed dentry that would need blocking.
David Howells9875cf82011-01-14 18:45:21 +00001132 */
1133static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
Al Viro287548e2011-05-27 06:50:06 -04001134 struct inode **inode)
David Howells9875cf82011-01-14 18:45:21 +00001135{
Ian Kent62a73752011-03-25 01:51:02 +08001136 for (;;) {
Al Viroc7105362011-11-24 18:22:03 -05001137 struct mount *mounted;
Ian Kent62a73752011-03-25 01:51:02 +08001138 /*
1139 * Don't forget we might have a non-mountpoint managed dentry
1140 * that wants to block transit.
1141 */
NeilBrownb8faf032014-08-04 17:06:29 +10001142 switch (managed_dentry_rcu(path->dentry)) {
1143 case -ECHILD:
1144 default:
David Howellsab909112011-01-14 18:46:51 +00001145 return false;
NeilBrownb8faf032014-08-04 17:06:29 +10001146 case -EISDIR:
1147 return true;
1148 case 0:
1149 break;
1150 }
Ian Kent62a73752011-03-25 01:51:02 +08001151
1152 if (!d_mountpoint(path->dentry))
NeilBrownb8faf032014-08-04 17:06:29 +10001153 return !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Ian Kent62a73752011-03-25 01:51:02 +08001154
Al Viro474279d2013-10-01 16:11:26 -04001155 mounted = __lookup_mnt(path->mnt, path->dentry);
David Howells9875cf82011-01-14 18:45:21 +00001156 if (!mounted)
1157 break;
Al Viroc7105362011-11-24 18:22:03 -05001158 path->mnt = &mounted->mnt;
1159 path->dentry = mounted->mnt.mnt_root;
Al Viroa3fbbde2011-11-07 21:21:26 +00001160 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001161 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
Linus Torvalds59430262011-07-18 15:43:29 -07001162 /*
1163 * Update the inode too. We don't need to re-check the
1164 * dentry sequence number here after this d_inode read,
1165 * because a mount-point is always pinned.
1166 */
1167 *inode = path->dentry->d_inode;
David Howells9875cf82011-01-14 18:45:21 +00001168 }
Al Virof5be3e29122014-09-13 21:50:45 -04001169 return !read_seqretry(&mount_lock, nd->m_seq) &&
NeilBrownb8faf032014-08-04 17:06:29 +10001170 !(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT);
Al Viro287548e2011-05-27 06:50:06 -04001171}
1172
Nick Piggin31e6b012011-01-07 17:49:52 +11001173static int follow_dotdot_rcu(struct nameidata *nd)
1174{
Al Viro4023bfc2014-09-13 21:59:43 -04001175 struct inode *inode = nd->inode;
Al Viro7bd88372014-09-13 21:55:46 -04001176 if (!nd->root.mnt)
1177 set_root_rcu(nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001178
David Howells9875cf82011-01-14 18:45:21 +00001179 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001180 if (nd->path.dentry == nd->root.dentry &&
1181 nd->path.mnt == nd->root.mnt) {
1182 break;
1183 }
1184 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1185 struct dentry *old = nd->path.dentry;
1186 struct dentry *parent = old->d_parent;
1187 unsigned seq;
1188
Al Viro4023bfc2014-09-13 21:59:43 -04001189 inode = parent->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001190 seq = read_seqcount_begin(&parent->d_seq);
1191 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -05001192 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +11001193 nd->path.dentry = parent;
1194 nd->seq = seq;
1195 break;
1196 }
1197 if (!follow_up_rcu(&nd->path))
1198 break;
Al Viro4023bfc2014-09-13 21:59:43 -04001199 inode = nd->path.dentry->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001200 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +11001201 }
Al Virob37199e2014-03-20 15:18:22 -04001202 while (d_mountpoint(nd->path.dentry)) {
1203 struct mount *mounted;
1204 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry);
1205 if (!mounted)
1206 break;
1207 nd->path.mnt = &mounted->mnt;
1208 nd->path.dentry = mounted->mnt.mnt_root;
Al Viro4023bfc2014-09-13 21:59:43 -04001209 inode = nd->path.dentry->d_inode;
Al Virob37199e2014-03-20 15:18:22 -04001210 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
Al Virof5be3e29122014-09-13 21:50:45 -04001211 if (read_seqretry(&mount_lock, nd->m_seq))
Al Virob37199e2014-03-20 15:18:22 -04001212 goto failed;
1213 }
Al Viro4023bfc2014-09-13 21:59:43 -04001214 nd->inode = inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001215 return 0;
Al Viroef7562d2011-03-04 14:35:59 -05001216
1217failed:
1218 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001219 if (!(nd->flags & LOOKUP_ROOT))
1220 nd->root.mnt = NULL;
Al Viro8b61e742013-11-08 12:45:01 -05001221 rcu_read_unlock();
Al Viroef7562d2011-03-04 14:35:59 -05001222 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001223}
1224
David Howells9875cf82011-01-14 18:45:21 +00001225/*
David Howellscc53ce52011-01-14 18:45:26 +00001226 * Follow down to the covering mount currently visible to userspace. At each
1227 * point, the filesystem owning that dentry may be queried as to whether the
1228 * caller is permitted to proceed or not.
David Howellscc53ce52011-01-14 18:45:26 +00001229 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001230int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001231{
1232 unsigned managed;
1233 int ret;
1234
1235 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1236 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1237 /* Allow the filesystem to manage the transit without i_mutex
1238 * being held.
1239 *
1240 * We indicate to the filesystem if someone is trying to mount
1241 * something here. This gives autofs the chance to deny anyone
1242 * other than its daemon the right to mount on its
1243 * superstructure.
1244 *
1245 * The filesystem may sleep at this point.
1246 */
1247 if (managed & DCACHE_MANAGE_TRANSIT) {
1248 BUG_ON(!path->dentry->d_op);
1249 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001250 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001251 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001252 if (ret < 0)
1253 return ret == -EISDIR ? 0 : ret;
1254 }
1255
1256 /* Transit to a mounted filesystem. */
1257 if (managed & DCACHE_MOUNTED) {
1258 struct vfsmount *mounted = lookup_mnt(path);
1259 if (!mounted)
1260 break;
1261 dput(path->dentry);
1262 mntput(path->mnt);
1263 path->mnt = mounted;
1264 path->dentry = dget(mounted->mnt_root);
1265 continue;
1266 }
1267
1268 /* Don't handle automount points here */
1269 break;
1270 }
1271 return 0;
1272}
Al Viro4d359502014-03-14 12:20:17 -04001273EXPORT_SYMBOL(follow_down);
David Howellscc53ce52011-01-14 18:45:26 +00001274
1275/*
David Howells9875cf82011-01-14 18:45:21 +00001276 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1277 */
1278static void follow_mount(struct path *path)
1279{
1280 while (d_mountpoint(path->dentry)) {
1281 struct vfsmount *mounted = lookup_mnt(path);
1282 if (!mounted)
1283 break;
1284 dput(path->dentry);
1285 mntput(path->mnt);
1286 path->mnt = mounted;
1287 path->dentry = dget(mounted->mnt_root);
1288 }
1289}
1290
Nick Piggin31e6b012011-01-07 17:49:52 +11001291static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292{
Al Viro7bd88372014-09-13 21:55:46 -04001293 if (!nd->root.mnt)
1294 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001297 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298
Al Viro2a737872009-04-07 11:49:53 -04001299 if (nd->path.dentry == nd->root.dentry &&
1300 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 break;
1302 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001303 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001304 /* rare case of legitimate dget_parent()... */
1305 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 dput(old);
1307 break;
1308 }
Al Viro3088dd72010-01-30 15:47:29 -05001309 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 }
Al Viro79ed0222009-04-18 13:59:41 -04001312 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001313 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314}
1315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316/*
Miklos Szeredibad61182012-03-26 12:54:24 +02001317 * This looks up the name in dcache, possibly revalidates the old dentry and
1318 * allocates a new one if not found or not valid. In the need_lookup argument
1319 * returns whether i_op->lookup is necessary.
1320 *
1321 * dir->d_inode->i_mutex must be held
Nick Pigginbaa03892010-08-18 04:37:31 +10001322 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001323static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
Al Viro201f9562012-06-22 12:42:10 +04001324 unsigned int flags, bool *need_lookup)
Nick Pigginbaa03892010-08-18 04:37:31 +10001325{
Nick Pigginbaa03892010-08-18 04:37:31 +10001326 struct dentry *dentry;
Miklos Szeredibad61182012-03-26 12:54:24 +02001327 int error;
Nick Pigginbaa03892010-08-18 04:37:31 +10001328
Miklos Szeredibad61182012-03-26 12:54:24 +02001329 *need_lookup = false;
1330 dentry = d_lookup(dir, name);
1331 if (dentry) {
Jeff Layton39e3c952012-11-28 11:30:53 -05001332 if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
Al Viro201f9562012-06-22 12:42:10 +04001333 error = d_revalidate(dentry, flags);
Miklos Szeredibad61182012-03-26 12:54:24 +02001334 if (unlikely(error <= 0)) {
1335 if (error < 0) {
1336 dput(dentry);
1337 return ERR_PTR(error);
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001338 } else {
1339 d_invalidate(dentry);
Miklos Szeredibad61182012-03-26 12:54:24 +02001340 dput(dentry);
1341 dentry = NULL;
1342 }
1343 }
1344 }
1345 }
Nick Pigginbaa03892010-08-18 04:37:31 +10001346
Miklos Szeredibad61182012-03-26 12:54:24 +02001347 if (!dentry) {
1348 dentry = d_alloc(dir, name);
1349 if (unlikely(!dentry))
1350 return ERR_PTR(-ENOMEM);
Nick Pigginbaa03892010-08-18 04:37:31 +10001351
Miklos Szeredibad61182012-03-26 12:54:24 +02001352 *need_lookup = true;
Nick Pigginbaa03892010-08-18 04:37:31 +10001353 }
1354 return dentry;
1355}
1356
1357/*
J. Bruce Fields13a2c3b2013-10-23 16:09:16 -04001358 * Call i_op->lookup on the dentry. The dentry must be negative and
1359 * unhashed.
Miklos Szeredibad61182012-03-26 12:54:24 +02001360 *
1361 * dir->d_inode->i_mutex must be held
Josef Bacik44396f42011-05-31 11:58:49 -04001362 */
Miklos Szeredibad61182012-03-26 12:54:24 +02001363static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
Al Viro72bd8662012-06-10 17:17:17 -04001364 unsigned int flags)
Josef Bacik44396f42011-05-31 11:58:49 -04001365{
Josef Bacik44396f42011-05-31 11:58:49 -04001366 struct dentry *old;
1367
1368 /* Don't create child dentry for a dead directory. */
Miklos Szeredibad61182012-03-26 12:54:24 +02001369 if (unlikely(IS_DEADDIR(dir))) {
Miklos Szeredie188dc02012-02-03 14:25:18 +01001370 dput(dentry);
Josef Bacik44396f42011-05-31 11:58:49 -04001371 return ERR_PTR(-ENOENT);
Miklos Szeredie188dc02012-02-03 14:25:18 +01001372 }
Josef Bacik44396f42011-05-31 11:58:49 -04001373
Al Viro72bd8662012-06-10 17:17:17 -04001374 old = dir->i_op->lookup(dir, dentry, flags);
Josef Bacik44396f42011-05-31 11:58:49 -04001375 if (unlikely(old)) {
1376 dput(dentry);
1377 dentry = old;
1378 }
1379 return dentry;
1380}
1381
Al Viroa3255542012-03-30 14:41:51 -04001382static struct dentry *__lookup_hash(struct qstr *name,
Al Viro72bd8662012-06-10 17:17:17 -04001383 struct dentry *base, unsigned int flags)
Al Viroa3255542012-03-30 14:41:51 -04001384{
Miklos Szeredibad61182012-03-26 12:54:24 +02001385 bool need_lookup;
Al Viroa3255542012-03-30 14:41:51 -04001386 struct dentry *dentry;
1387
Al Viro72bd8662012-06-10 17:17:17 -04001388 dentry = lookup_dcache(name, base, flags, &need_lookup);
Miklos Szeredibad61182012-03-26 12:54:24 +02001389 if (!need_lookup)
1390 return dentry;
Al Viroa3255542012-03-30 14:41:51 -04001391
Al Viro72bd8662012-06-10 17:17:17 -04001392 return lookup_real(base->d_inode, dentry, flags);
Al Viroa3255542012-03-30 14:41:51 -04001393}
1394
Josef Bacik44396f42011-05-31 11:58:49 -04001395/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 * It's more convoluted than I'd like it to be, but... it's still fairly
1397 * small and for now I'd prefer to have fast path as straight as possible.
1398 * It _is_ time-critical.
1399 */
Al Viroe97cdc82013-01-24 18:16:00 -05001400static int lookup_fast(struct nameidata *nd,
Miklos Szeredi697f5142012-05-21 17:30:05 +02001401 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
Jan Blunck4ac91372008-02-14 19:34:32 -08001403 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001404 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001405 int need_reval = 1;
1406 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001407 int err;
1408
Al Viro3cac2602009-08-13 18:27:43 +04001409 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001410 * Rename seqlock is not required here because in the off chance
1411 * of a false negative due to a concurrent rename, we're going to
1412 * do the non-racy lookup, below.
1413 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001414 if (nd->flags & LOOKUP_RCU) {
1415 unsigned seq;
Linus Torvaldsda53be12013-05-21 15:22:44 -07001416 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
Al Viro5a18fff2011-03-11 04:44:53 -05001417 if (!dentry)
1418 goto unlazy;
1419
Linus Torvalds12f8ad42012-05-04 14:59:14 -07001420 /*
1421 * This sequence count validates that the inode matches
1422 * the dentry name information from lookup.
1423 */
1424 *inode = dentry->d_inode;
1425 if (read_seqcount_retry(&dentry->d_seq, seq))
1426 return -ECHILD;
1427
1428 /*
1429 * This sequence count validates that the parent had no
1430 * changes while we did the lookup of the dentry above.
1431 *
1432 * The memory barrier in read_seqcount_begin of child is
1433 * enough, we can use __read_seqcount_retry here.
1434 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001435 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1436 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001437 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001438
Al Viro24643082011-02-15 01:26:22 -05001439 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro4ce16ef32012-06-10 16:10:59 -04001440 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001441 if (unlikely(status <= 0)) {
1442 if (status != -ECHILD)
1443 need_reval = 0;
1444 goto unlazy;
1445 }
Al Viro24643082011-02-15 01:26:22 -05001446 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001447 path->mnt = mnt;
1448 path->dentry = dentry;
NeilBrownb8faf032014-08-04 17:06:29 +10001449 if (likely(__follow_mount_rcu(nd, path, inode)))
1450 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001451unlazy:
Al Viro19660af2011-03-25 10:32:48 -04001452 if (unlazy_walk(nd, dentry))
1453 return -ECHILD;
Al Viro5a18fff2011-03-11 04:44:53 -05001454 } else {
Al Viroe97cdc82013-01-24 18:16:00 -05001455 dentry = __d_lookup(parent, &nd->last);
Nick Piggin31e6b012011-01-07 17:49:52 +11001456 }
Al Viro5a18fff2011-03-11 04:44:53 -05001457
Al Viro81e6f522012-03-30 14:48:04 -04001458 if (unlikely(!dentry))
1459 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001460
Al Viro5a18fff2011-03-11 04:44:53 -05001461 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
Al Viro4ce16ef32012-06-10 16:10:59 -04001462 status = d_revalidate(dentry, nd->flags);
Al Viro5a18fff2011-03-11 04:44:53 -05001463 if (unlikely(status <= 0)) {
1464 if (status < 0) {
1465 dput(dentry);
1466 return status;
1467 }
Eric W. Biederman5542aa22014-02-13 09:46:25 -08001468 d_invalidate(dentry);
1469 dput(dentry);
1470 goto need_lookup;
Al Viro5a18fff2011-03-11 04:44:53 -05001471 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001472
David Howells9875cf82011-01-14 18:45:21 +00001473 path->mnt = mnt;
1474 path->dentry = dentry;
1475 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001476 if (unlikely(err < 0)) {
1477 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001478 return err;
Ian Kent89312212011-01-18 12:06:10 +08001479 }
Al Viroa3fbbde2011-11-07 21:21:26 +00001480 if (err)
1481 nd->flags |= LOOKUP_JUMPED;
David Howells9875cf82011-01-14 18:45:21 +00001482 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 return 0;
Al Viro81e6f522012-03-30 14:48:04 -04001484
1485need_lookup:
Miklos Szeredi697f5142012-05-21 17:30:05 +02001486 return 1;
1487}
1488
1489/* Fast lookup failed, do it the slow way */
Al Virocc2a5272013-01-24 18:19:49 -05001490static int lookup_slow(struct nameidata *nd, struct path *path)
Miklos Szeredi697f5142012-05-21 17:30:05 +02001491{
1492 struct dentry *dentry, *parent;
1493 int err;
1494
1495 parent = nd->path.dentry;
Al Viro81e6f522012-03-30 14:48:04 -04001496 BUG_ON(nd->inode != parent->d_inode);
1497
1498 mutex_lock(&parent->d_inode->i_mutex);
Al Virocc2a5272013-01-24 18:19:49 -05001499 dentry = __lookup_hash(&nd->last, parent, nd->flags);
Al Viro81e6f522012-03-30 14:48:04 -04001500 mutex_unlock(&parent->d_inode->i_mutex);
1501 if (IS_ERR(dentry))
1502 return PTR_ERR(dentry);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001503 path->mnt = nd->path.mnt;
1504 path->dentry = dentry;
1505 err = follow_managed(path, nd->flags);
1506 if (unlikely(err < 0)) {
1507 path_put_conditional(path, nd);
1508 return err;
1509 }
1510 if (err)
1511 nd->flags |= LOOKUP_JUMPED;
1512 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513}
1514
Al Viro52094c82011-02-21 21:34:47 -05001515static inline int may_lookup(struct nameidata *nd)
1516{
1517 if (nd->flags & LOOKUP_RCU) {
Al Viro4ad5abb2011-06-20 19:57:03 -04001518 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
Al Viro52094c82011-02-21 21:34:47 -05001519 if (err != -ECHILD)
1520 return err;
Al Viro19660af2011-03-25 10:32:48 -04001521 if (unlazy_walk(nd, NULL))
Al Viro52094c82011-02-21 21:34:47 -05001522 return -ECHILD;
1523 }
Al Viro4ad5abb2011-06-20 19:57:03 -04001524 return inode_permission(nd->inode, MAY_EXEC);
Al Viro52094c82011-02-21 21:34:47 -05001525}
1526
Al Viro9856fa12011-03-04 14:22:06 -05001527static inline int handle_dots(struct nameidata *nd, int type)
1528{
1529 if (type == LAST_DOTDOT) {
1530 if (nd->flags & LOOKUP_RCU) {
1531 if (follow_dotdot_rcu(nd))
1532 return -ECHILD;
1533 } else
1534 follow_dotdot(nd);
1535 }
1536 return 0;
1537}
1538
Al Viro951361f2011-03-04 14:44:37 -05001539static void terminate_walk(struct nameidata *nd)
1540{
1541 if (!(nd->flags & LOOKUP_RCU)) {
1542 path_put(&nd->path);
1543 } else {
1544 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001545 if (!(nd->flags & LOOKUP_ROOT))
1546 nd->root.mnt = NULL;
Al Viro8b61e742013-11-08 12:45:01 -05001547 rcu_read_unlock();
Al Viro951361f2011-03-04 14:44:37 -05001548 }
1549}
1550
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001551/*
1552 * Do we need to follow links? We _really_ want to be able
1553 * to do this check without having to look at inode->i_op,
1554 * so we keep a cache of "no, this doesn't need follow_link"
1555 * for the common case.
1556 */
David Howellsb18825a2013-09-12 19:22:53 +01001557static inline int should_follow_link(struct dentry *dentry, int follow)
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001558{
David Howellsb18825a2013-09-12 19:22:53 +01001559 return unlikely(d_is_symlink(dentry)) ? follow : 0;
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001560}
1561
Al Viroce57dfc2011-03-13 19:58:58 -04001562static inline int walk_component(struct nameidata *nd, struct path *path,
Al Viro21b9b072013-01-24 18:10:25 -05001563 int follow)
Al Viroce57dfc2011-03-13 19:58:58 -04001564{
1565 struct inode *inode;
1566 int err;
1567 /*
1568 * "." and ".." are special - ".." especially so because it has
1569 * to be able to know about the current root directory and
1570 * parent relationships.
1571 */
Al Viro21b9b072013-01-24 18:10:25 -05001572 if (unlikely(nd->last_type != LAST_NORM))
1573 return handle_dots(nd, nd->last_type);
Al Viroe97cdc82013-01-24 18:16:00 -05001574 err = lookup_fast(nd, path, &inode);
Al Viroce57dfc2011-03-13 19:58:58 -04001575 if (unlikely(err)) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001576 if (err < 0)
1577 goto out_err;
1578
Al Virocc2a5272013-01-24 18:19:49 -05001579 err = lookup_slow(nd, path);
Miklos Szeredi697f5142012-05-21 17:30:05 +02001580 if (err < 0)
1581 goto out_err;
1582
1583 inode = path->dentry->d_inode;
Al Viroce57dfc2011-03-13 19:58:58 -04001584 }
Miklos Szeredi697f5142012-05-21 17:30:05 +02001585 err = -ENOENT;
Al Viro22213312014-04-19 12:30:58 -04001586 if (!inode || d_is_negative(path->dentry))
Miklos Szeredi697f5142012-05-21 17:30:05 +02001587 goto out_path_put;
1588
David Howellsb18825a2013-09-12 19:22:53 +01001589 if (should_follow_link(path->dentry, follow)) {
Al Viro19660af2011-03-25 10:32:48 -04001590 if (nd->flags & LOOKUP_RCU) {
1591 if (unlikely(unlazy_walk(nd, path->dentry))) {
Miklos Szeredi697f5142012-05-21 17:30:05 +02001592 err = -ECHILD;
1593 goto out_err;
Al Viro19660af2011-03-25 10:32:48 -04001594 }
1595 }
Al Viroce57dfc2011-03-13 19:58:58 -04001596 BUG_ON(inode != path->dentry->d_inode);
1597 return 1;
1598 }
1599 path_to_nameidata(path, nd);
1600 nd->inode = inode;
1601 return 0;
Miklos Szeredi697f5142012-05-21 17:30:05 +02001602
1603out_path_put:
1604 path_to_nameidata(path, nd);
1605out_err:
1606 terminate_walk(nd);
1607 return err;
Al Viroce57dfc2011-03-13 19:58:58 -04001608}
1609
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610/*
Al Virob3563792011-03-14 21:54:55 -04001611 * This limits recursive symlink follows to 8, while
1612 * limiting consecutive symlinks to 40.
1613 *
1614 * Without that kind of total limit, nasty chains of consecutive
1615 * symlinks can cause almost arbitrarily long lookups.
1616 */
1617static inline int nested_symlink(struct path *path, struct nameidata *nd)
1618{
1619 int res;
1620
Al Virob3563792011-03-14 21:54:55 -04001621 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1622 path_put_conditional(path, nd);
1623 path_put(&nd->path);
1624 return -ELOOP;
1625 }
Erez Zadok1a4022f2011-05-21 01:19:59 -04001626 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
Al Virob3563792011-03-14 21:54:55 -04001627
1628 nd->depth++;
1629 current->link_count++;
1630
1631 do {
1632 struct path link = *path;
1633 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001634
1635 res = follow_link(&link, nd, &cookie);
Al Viro6d7b5aa2012-06-10 04:15:17 -04001636 if (res)
1637 break;
Al Viro21b9b072013-01-24 18:10:25 -05001638 res = walk_component(nd, path, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001639 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001640 } while (res > 0);
1641
1642 current->link_count--;
1643 nd->depth--;
1644 return res;
1645}
1646
1647/*
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001648 * We can do the critical dentry name comparison and hashing
1649 * operations one word at a time, but we are limited to:
1650 *
1651 * - Architectures with fast unaligned word accesses. We could
1652 * do a "get_unaligned()" if this helps and is sufficiently
1653 * fast.
1654 *
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001655 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1656 * do not trap on the (extremely unlikely) case of a page
1657 * crossing operation.
1658 *
1659 * - Furthermore, we need an efficient 64-bit compile for the
1660 * 64-bit case in order to generate the "number of bytes in
1661 * the final mask". Again, that could be replaced with a
1662 * efficient population count instruction or similar.
1663 */
1664#ifdef CONFIG_DCACHE_WORD_ACCESS
1665
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001666#include <asm/word-at-a-time.h>
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001667
Linus Torvaldsf68e5562012-04-06 13:54:56 -07001668#ifdef CONFIG_64BIT
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001669
1670static inline unsigned int fold_hash(unsigned long hash)
1671{
Linus Torvalds99d263d2014-09-13 11:30:10 -07001672 return hash_64(hash, 32);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001673}
1674
1675#else /* 32-bit case */
1676
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001677#define fold_hash(x) (x)
1678
1679#endif
1680
1681unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1682{
1683 unsigned long a, mask;
1684 unsigned long hash = 0;
1685
1686 for (;;) {
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001687 a = load_unaligned_zeropad(name);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001688 if (len < sizeof(unsigned long))
1689 break;
1690 hash += a;
Al Virof132c5b2012-03-22 21:59:52 +00001691 hash *= 9;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001692 name += sizeof(unsigned long);
1693 len -= sizeof(unsigned long);
1694 if (!len)
1695 goto done;
1696 }
Will Deacona5c21dc2013-12-12 17:40:21 +00001697 mask = bytemask_from_count(len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001698 hash += mask & a;
1699done:
1700 return fold_hash(hash);
1701}
1702EXPORT_SYMBOL(full_name_hash);
1703
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001704/*
1705 * Calculate the length and hash of the path component, and
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001706 * return the "hash_len" as the result.
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001707 */
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001708static inline u64 hash_name(const char *name)
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001709{
Linus Torvalds36126f82012-05-26 10:43:17 -07001710 unsigned long a, b, adata, bdata, mask, hash, len;
1711 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001712
1713 hash = a = 0;
1714 len = -sizeof(unsigned long);
1715 do {
1716 hash = (hash + a) * 9;
1717 len += sizeof(unsigned long);
Linus Torvaldse419b4c2012-05-03 10:16:43 -07001718 a = load_unaligned_zeropad(name+len);
Linus Torvalds36126f82012-05-26 10:43:17 -07001719 b = a ^ REPEAT_BYTE('/');
1720 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001721
Linus Torvalds36126f82012-05-26 10:43:17 -07001722 adata = prep_zero_mask(a, adata, &constants);
1723 bdata = prep_zero_mask(b, bdata, &constants);
1724
1725 mask = create_zero_mask(adata | bdata);
1726
1727 hash += a & zero_bytemask(mask);
Linus Torvalds9226b5b2014-09-14 17:28:32 -07001728 len += find_zero(mask);
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001729 return hashlen_create(fold_hash(hash), len);
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001730}
1731
1732#else
1733
Linus Torvalds0145acc2012-03-02 14:32:59 -08001734unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1735{
1736 unsigned long hash = init_name_hash();
1737 while (len--)
1738 hash = partial_name_hash(*name++, hash);
1739 return end_name_hash(hash);
1740}
Linus Torvaldsae942ae2012-03-02 19:40:57 -08001741EXPORT_SYMBOL(full_name_hash);
Linus Torvalds0145acc2012-03-02 14:32:59 -08001742
Linus Torvalds3ddcd052011-08-06 22:45:50 -07001743/*
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001744 * We know there's a real path component here of at least
1745 * one character.
1746 */
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001747static inline u64 hash_name(const char *name)
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001748{
1749 unsigned long hash = init_name_hash();
1750 unsigned long len = 0, c;
1751
1752 c = (unsigned char)*name;
1753 do {
1754 len++;
1755 hash = partial_name_hash(c, hash);
1756 c = (unsigned char)name[len];
1757 } while (c && c != '/');
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001758 return hashlen_create(end_name_hash(hash), len);
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001759}
1760
Linus Torvaldsbfcfaa72012-03-06 11:16:17 -08001761#endif
1762
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001763/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001765 * This is the basic name resolution function, turning a pathname into
1766 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001768 * Returns 0 and nd will have valid dentry and mnt on success.
1769 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 */
Al Viro6de88d72009-08-09 01:41:57 +04001771static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
1773 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
1776 while (*name=='/')
1777 name++;
1778 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001779 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 /* At this point we know we have a real path component. */
1782 for(;;) {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001783 u64 hash_len;
Al Virofe479a52011-02-22 15:10:03 -05001784 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785
Al Viro52094c82011-02-21 21:34:47 -05001786 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 if (err)
1788 break;
1789
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001790 hash_len = hash_name(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791
Al Virofe479a52011-02-22 15:10:03 -05001792 type = LAST_NORM;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001793 if (name[0] == '.') switch (hashlen_len(hash_len)) {
Al Virofe479a52011-02-22 15:10:03 -05001794 case 2:
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001795 if (name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001796 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001797 nd->flags |= LOOKUP_JUMPED;
1798 }
Al Virofe479a52011-02-22 15:10:03 -05001799 break;
1800 case 1:
1801 type = LAST_DOT;
1802 }
Al Viro5a202bc2011-03-08 14:17:44 -05001803 if (likely(type == LAST_NORM)) {
1804 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001805 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001806 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
James Hogana060dc52014-09-16 13:07:35 +01001807 struct qstr this = { { .hash_len = hash_len }, .name = name };
Linus Torvaldsda53be12013-05-21 15:22:44 -07001808 err = parent->d_op->d_hash(parent, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05001809 if (err < 0)
1810 break;
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001811 hash_len = this.hash_len;
1812 name = this.name;
Al Viro5a202bc2011-03-08 14:17:44 -05001813 }
1814 }
Al Virofe479a52011-02-22 15:10:03 -05001815
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001816 nd->last.hash_len = hash_len;
1817 nd->last.name = name;
Al Viro5f4a6a62013-01-24 18:04:22 -05001818 nd->last_type = type;
1819
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001820 name += hashlen_len(hash_len);
1821 if (!*name)
Al Viro5f4a6a62013-01-24 18:04:22 -05001822 return 0;
Linus Torvalds200e9ef2012-03-02 14:49:24 -08001823 /*
1824 * If it wasn't NUL, we know it was '/'. Skip that
1825 * slash, and continue until no more slashes.
1826 */
1827 do {
Linus Torvaldsd6bb3e92014-09-15 10:51:07 -07001828 name++;
1829 } while (unlikely(*name == '/'));
1830 if (!*name)
Al Viro5f4a6a62013-01-24 18:04:22 -05001831 return 0;
1832
Al Viro21b9b072013-01-24 18:10:25 -05001833 err = walk_component(nd, &next, LOOKUP_FOLLOW);
Al Viroce57dfc2011-03-13 19:58:58 -04001834 if (err < 0)
1835 return err;
Al Virofe479a52011-02-22 15:10:03 -05001836
Al Viroce57dfc2011-03-13 19:58:58 -04001837 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001838 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001840 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001841 }
Miklos Szeredi44b1d532014-04-01 17:08:41 +02001842 if (!d_can_lookup(nd->path.dentry)) {
Al Viro5f4a6a62013-01-24 18:04:22 -05001843 err = -ENOTDIR;
1844 break;
1845 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
Al Viro951361f2011-03-04 14:44:37 -05001847 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 return err;
1849}
1850
Al Viro6e8a1f82015-02-22 19:46:04 -05001851static int path_init(int dfd, const struct filename *name, unsigned int flags,
Al Viro5e530842014-11-20 14:14:42 -05001852 struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001854 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
1856 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro980f3ea2014-11-20 14:20:24 -05001857 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 nd->depth = 0;
Al Viro5e530842014-11-20 14:14:42 -05001859 nd->base = NULL;
Al Viro5b6ca022011-03-09 23:04:47 -05001860 if (flags & LOOKUP_ROOT) {
David Howellsb18825a2013-09-12 19:22:53 +01001861 struct dentry *root = nd->root.dentry;
1862 struct inode *inode = root->d_inode;
Al Viro6e8a1f82015-02-22 19:46:04 -05001863 if (name->name[0]) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02001864 if (!d_can_lookup(root))
Al Viro73d049a2011-03-11 12:08:24 -05001865 return -ENOTDIR;
1866 retval = inode_permission(inode, MAY_EXEC);
1867 if (retval)
1868 return retval;
1869 }
Al Viro5b6ca022011-03-09 23:04:47 -05001870 nd->path = nd->root;
1871 nd->inode = inode;
1872 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05001873 rcu_read_lock();
Al Viro5b6ca022011-03-09 23:04:47 -05001874 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro48a066e2013-09-29 22:06:07 -04001875 nd->m_seq = read_seqbegin(&mount_lock);
Al Viro5b6ca022011-03-09 23:04:47 -05001876 } else {
1877 path_get(&nd->path);
1878 }
Al Virod4658872014-11-20 14:23:33 -05001879 goto done;
Al Viro5b6ca022011-03-09 23:04:47 -05001880 }
1881
Al Viro2a737872009-04-07 11:49:53 -04001882 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883
Al Viro48a066e2013-09-29 22:06:07 -04001884 nd->m_seq = read_seqbegin(&mount_lock);
Al Viro6e8a1f82015-02-22 19:46:04 -05001885 if (name->name[0] == '/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001886 if (flags & LOOKUP_RCU) {
Al Viro8b61e742013-11-08 12:45:01 -05001887 rcu_read_lock();
Al Viro7bd88372014-09-13 21:55:46 -04001888 nd->seq = set_root_rcu(nd);
Al Viroe41f7d42011-02-22 14:02:58 -05001889 } else {
1890 set_root(nd);
1891 path_get(&nd->root);
1892 }
Al Viro2a737872009-04-07 11:49:53 -04001893 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001894 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001895 if (flags & LOOKUP_RCU) {
1896 struct fs_struct *fs = current->fs;
1897 unsigned seq;
1898
Al Viro8b61e742013-11-08 12:45:01 -05001899 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05001900
1901 do {
1902 seq = read_seqcount_begin(&fs->seq);
1903 nd->path = fs->pwd;
1904 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1905 } while (read_seqcount_retry(&fs->seq, seq));
1906 } else {
1907 get_fs_pwd(current->fs, &nd->path);
1908 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001909 } else {
Jeff Layton582aa642012-12-11 08:56:16 -05001910 /* Caller must check execute permissions on the starting path component */
Al Viro2903ff02012-08-28 12:52:22 -04001911 struct fd f = fdget_raw(dfd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001912 struct dentry *dentry;
1913
Al Viro2903ff02012-08-28 12:52:22 -04001914 if (!f.file)
1915 return -EBADF;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001916
Al Viro2903ff02012-08-28 12:52:22 -04001917 dentry = f.file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001918
Al Viro6e8a1f82015-02-22 19:46:04 -05001919 if (name->name[0]) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02001920 if (!d_can_lookup(dentry)) {
Al Viro2903ff02012-08-28 12:52:22 -04001921 fdput(f);
1922 return -ENOTDIR;
1923 }
Al Virof52e0c12011-03-14 18:56:51 -04001924 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001925
Al Viro2903ff02012-08-28 12:52:22 -04001926 nd->path = f.file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001927 if (flags & LOOKUP_RCU) {
Linus Torvalds9c225f22014-03-03 09:36:58 -08001928 if (f.flags & FDPUT_FPUT)
Al Viro5e530842014-11-20 14:14:42 -05001929 nd->base = f.file;
Al Viroe41f7d42011-02-22 14:02:58 -05001930 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Al Viro8b61e742013-11-08 12:45:01 -05001931 rcu_read_lock();
Al Viroe41f7d42011-02-22 14:02:58 -05001932 } else {
Al Viro2903ff02012-08-28 12:52:22 -04001933 path_get(&nd->path);
1934 fdput(f);
Al Viroe41f7d42011-02-22 14:02:58 -05001935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 }
Al Viroe41f7d42011-02-22 14:02:58 -05001937
Nick Piggin31e6b012011-01-07 17:49:52 +11001938 nd->inode = nd->path.dentry->d_inode;
Al Viro4023bfc2014-09-13 21:59:43 -04001939 if (!(flags & LOOKUP_RCU))
Al Virod4658872014-11-20 14:23:33 -05001940 goto done;
Al Viro4023bfc2014-09-13 21:59:43 -04001941 if (likely(!read_seqcount_retry(&nd->path.dentry->d_seq, nd->seq)))
Al Virod4658872014-11-20 14:23:33 -05001942 goto done;
Al Viro4023bfc2014-09-13 21:59:43 -04001943 if (!(nd->flags & LOOKUP_ROOT))
1944 nd->root.mnt = NULL;
1945 rcu_read_unlock();
1946 return -ECHILD;
Al Virod4658872014-11-20 14:23:33 -05001947done:
1948 current->total_link_count = 0;
Al Viro6e8a1f82015-02-22 19:46:04 -05001949 return link_path_walk(name->name, nd);
Al Viro9b4a9b12009-04-07 11:44:16 -04001950}
1951
Al Viro893b7772014-11-20 14:18:09 -05001952static void path_cleanup(struct nameidata *nd)
1953{
1954 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
1955 path_put(&nd->root);
1956 nd->root.mnt = NULL;
1957 }
1958 if (unlikely(nd->base))
1959 fput(nd->base);
Al Viro9b4a9b12009-04-07 11:44:16 -04001960}
1961
Al Virobd92d7f2011-03-14 19:54:59 -04001962static inline int lookup_last(struct nameidata *nd, struct path *path)
1963{
1964 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1965 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1966
1967 nd->flags &= ~LOOKUP_PARENT;
Al Viro21b9b072013-01-24 18:10:25 -05001968 return walk_component(nd, path, nd->flags & LOOKUP_FOLLOW);
Al Virobd92d7f2011-03-14 19:54:59 -04001969}
1970
Al Viro9b4a9b12009-04-07 11:44:16 -04001971/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viro5eb6b492015-02-22 19:40:53 -05001972static int path_lookupat(int dfd, const struct filename *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001973 unsigned int flags, struct nameidata *nd)
1974{
Al Virobd92d7f2011-03-14 19:54:59 -04001975 struct path path;
1976 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001977
1978 /*
1979 * Path walking is largely split up into 2 different synchronisation
1980 * schemes, rcu-walk and ref-walk (explained in
1981 * Documentation/filesystems/path-lookup.txt). These share much of the
1982 * path walk code, but some things particularly setup, cleanup, and
1983 * following mounts are sufficiently divergent that functions are
1984 * duplicated. Typically there is a function foo(), and its RCU
1985 * analogue, foo_rcu().
1986 *
1987 * -ECHILD is the error number of choice (just to avoid clashes) that
1988 * is returned if some aspect of an rcu-walk fails. Such an error must
1989 * be handled by restarting a traditional ref-walk (which will always
1990 * be able to complete).
1991 */
Al Viro6e8a1f82015-02-22 19:46:04 -05001992 err = path_init(dfd, name, flags, nd);
Al Virobd92d7f2011-03-14 19:54:59 -04001993 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001994 err = lookup_last(nd, &path);
1995 while (err > 0) {
1996 void *cookie;
1997 struct path link = path;
Kees Cook800179c2012-07-25 17:29:07 -07001998 err = may_follow_link(&link, nd);
1999 if (unlikely(err))
2000 break;
Al Virobd92d7f2011-03-14 19:54:59 -04002001 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04002002 err = follow_link(&link, nd, &cookie);
Al Viro6d7b5aa2012-06-10 04:15:17 -04002003 if (err)
2004 break;
2005 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04002006 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04002007 }
2008 }
Al Viroee0827c2011-02-21 23:38:09 -05002009
Al Viro9f1fafe2011-03-25 11:00:12 -04002010 if (!err)
2011 err = complete_walk(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002012
2013 if (!err && nd->flags & LOOKUP_DIRECTORY) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002014 if (!d_can_lookup(nd->path.dentry)) {
Al Virobd92d7f2011-03-14 19:54:59 -04002015 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04002016 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04002017 }
2018 }
Al Viro16c2cd72011-02-22 15:50:10 -05002019
Al Viro893b7772014-11-20 14:18:09 -05002020 path_cleanup(nd);
Al Virobd92d7f2011-03-14 19:54:59 -04002021 return err;
Al Viroee0827c2011-02-21 23:38:09 -05002022}
Nick Piggin31e6b012011-01-07 17:49:52 +11002023
Jeff Layton873f1ee2012-10-10 15:25:29 -04002024static int filename_lookup(int dfd, struct filename *name,
2025 unsigned int flags, struct nameidata *nd)
2026{
Al Viro5eb6b492015-02-22 19:40:53 -05002027 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002028 if (unlikely(retval == -ECHILD))
Al Viro5eb6b492015-02-22 19:40:53 -05002029 retval = path_lookupat(dfd, name, flags, nd);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002030 if (unlikely(retval == -ESTALE))
Al Viro5eb6b492015-02-22 19:40:53 -05002031 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002032
2033 if (likely(!retval))
Jeff Laytonadb5c242012-10-10 16:43:13 -04002034 audit_inode(name, nd->path.dentry, flags & LOOKUP_PARENT);
Jeff Layton873f1ee2012-10-10 15:25:29 -04002035 return retval;
2036}
2037
Al Viroee0827c2011-02-21 23:38:09 -05002038static int do_path_lookup(int dfd, const char *name,
2039 unsigned int flags, struct nameidata *nd)
2040{
Paul Moore51689102015-01-22 00:00:03 -05002041 struct filename *filename = getname_kernel(name);
2042 int retval = PTR_ERR(filename);
Nick Piggin31e6b012011-01-07 17:49:52 +11002043
Paul Moore51689102015-01-22 00:00:03 -05002044 if (!IS_ERR(filename)) {
2045 retval = filename_lookup(dfd, filename, flags, nd);
2046 putname(filename);
2047 }
2048 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049}
2050
Al Viro79714f72012-06-15 03:01:42 +04002051/* does lookup, returns the object with parent locked */
2052struct dentry *kern_path_locked(const char *name, struct path *path)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002053{
Paul Moore51689102015-01-22 00:00:03 -05002054 struct filename *filename = getname_kernel(name);
Al Viro79714f72012-06-15 03:01:42 +04002055 struct nameidata nd;
2056 struct dentry *d;
Paul Moore51689102015-01-22 00:00:03 -05002057 int err;
2058
2059 if (IS_ERR(filename))
2060 return ERR_CAST(filename);
2061
2062 err = filename_lookup(AT_FDCWD, filename, LOOKUP_PARENT, &nd);
2063 if (err) {
2064 d = ERR_PTR(err);
2065 goto out;
2066 }
Al Viro79714f72012-06-15 03:01:42 +04002067 if (nd.last_type != LAST_NORM) {
2068 path_put(&nd.path);
Paul Moore51689102015-01-22 00:00:03 -05002069 d = ERR_PTR(-EINVAL);
2070 goto out;
Al Viro79714f72012-06-15 03:01:42 +04002071 }
2072 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Al Viro1e0ea002012-07-22 23:46:21 +04002073 d = __lookup_hash(&nd.last, nd.path.dentry, 0);
Al Viro79714f72012-06-15 03:01:42 +04002074 if (IS_ERR(d)) {
2075 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2076 path_put(&nd.path);
Paul Moore51689102015-01-22 00:00:03 -05002077 goto out;
Al Viro79714f72012-06-15 03:01:42 +04002078 }
2079 *path = nd.path;
Paul Moore51689102015-01-22 00:00:03 -05002080out:
2081 putname(filename);
Al Viro79714f72012-06-15 03:01:42 +04002082 return d;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002083}
2084
Al Virod1811462008-08-02 00:49:18 -04002085int kern_path(const char *name, unsigned int flags, struct path *path)
2086{
2087 struct nameidata nd;
2088 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
2089 if (!res)
2090 *path = nd.path;
2091 return res;
2092}
Al Viro4d359502014-03-14 12:20:17 -04002093EXPORT_SYMBOL(kern_path);
Al Virod1811462008-08-02 00:49:18 -04002094
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002095/**
2096 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2097 * @dentry: pointer to dentry of the base directory
2098 * @mnt: pointer to vfs mount of the base directory
2099 * @name: pointer to file name
2100 * @flags: lookup flags
Al Viroe0a01242011-06-27 17:00:37 -04002101 * @path: pointer to struct path to fill
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002102 */
2103int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2104 const char *name, unsigned int flags,
Al Viroe0a01242011-06-27 17:00:37 -04002105 struct path *path)
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002106{
Al Viroe0a01242011-06-27 17:00:37 -04002107 struct nameidata nd;
2108 int err;
2109 nd.root.dentry = dentry;
2110 nd.root.mnt = mnt;
2111 BUG_ON(flags & LOOKUP_PARENT);
Al Viro5b6ca022011-03-09 23:04:47 -05002112 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
Al Viroe0a01242011-06-27 17:00:37 -04002113 err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
2114 if (!err)
2115 *path = nd.path;
2116 return err;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002117}
Al Viro4d359502014-03-14 12:20:17 -04002118EXPORT_SYMBOL(vfs_path_lookup);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07002119
James Morris057f6c02007-04-26 00:12:05 -07002120/*
2121 * Restricted form of lookup. Doesn't follow links, single-component only,
2122 * needs parent already locked. Doesn't follow mounts.
2123 * SMP-safe.
2124 */
Adrian Bunka244e162006-03-31 02:32:11 -08002125static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126{
Al Viro72bd8662012-06-10 17:17:17 -04002127 return __lookup_hash(&nd->last, nd->path.dentry, nd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128}
2129
Christoph Hellwigeead1912007-10-16 23:25:38 -07002130/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07002131 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07002132 * @name: pathname component to lookup
2133 * @base: base directory to lookup from
2134 * @len: maximum length @len should be interpreted to
2135 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07002136 * Note that this routine is purely a helper for filesystem usage and should
2137 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07002138 * nameidata argument is passed to the filesystem methods and a filesystem
2139 * using this helper needs to be prepared for that.
2140 */
James Morris057f6c02007-04-26 00:12:05 -07002141struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2142{
James Morris057f6c02007-04-26 00:12:05 -07002143 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05002144 unsigned int c;
Miklos Szeredicda309d2012-03-26 12:54:21 +02002145 int err;
James Morris057f6c02007-04-26 00:12:05 -07002146
David Woodhouse2f9092e2009-04-20 23:18:37 +01002147 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
2148
Al Viro6a96ba52011-03-07 23:49:20 -05002149 this.name = name;
2150 this.len = len;
Linus Torvalds0145acc2012-03-02 14:32:59 -08002151 this.hash = full_name_hash(name, len);
Al Viro6a96ba52011-03-07 23:49:20 -05002152 if (!len)
2153 return ERR_PTR(-EACCES);
2154
Al Viro21d8a152012-11-29 22:17:21 -05002155 if (unlikely(name[0] == '.')) {
2156 if (len < 2 || (len == 2 && name[1] == '.'))
2157 return ERR_PTR(-EACCES);
2158 }
2159
Al Viro6a96ba52011-03-07 23:49:20 -05002160 while (len--) {
2161 c = *(const unsigned char *)name++;
2162 if (c == '/' || c == '\0')
2163 return ERR_PTR(-EACCES);
Al Viro6a96ba52011-03-07 23:49:20 -05002164 }
Al Viro5a202bc2011-03-08 14:17:44 -05002165 /*
2166 * See if the low-level filesystem might want
2167 * to use its own hash..
2168 */
2169 if (base->d_flags & DCACHE_OP_HASH) {
Linus Torvaldsda53be12013-05-21 15:22:44 -07002170 int err = base->d_op->d_hash(base, &this);
Al Viro5a202bc2011-03-08 14:17:44 -05002171 if (err < 0)
2172 return ERR_PTR(err);
2173 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07002174
Miklos Szeredicda309d2012-03-26 12:54:21 +02002175 err = inode_permission(base->d_inode, MAY_EXEC);
2176 if (err)
2177 return ERR_PTR(err);
2178
Al Viro72bd8662012-06-10 17:17:17 -04002179 return __lookup_hash(&this, base, 0);
James Morris057f6c02007-04-26 00:12:05 -07002180}
Al Viro4d359502014-03-14 12:20:17 -04002181EXPORT_SYMBOL(lookup_one_len);
James Morris057f6c02007-04-26 00:12:05 -07002182
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002183int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2184 struct path *path, int *empty)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185{
Al Viro2d8f3032008-07-22 09:59:21 -04002186 struct nameidata nd;
Jeff Layton91a27b22012-10-10 15:25:28 -04002187 struct filename *tmp = getname_flags(name, flags, empty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04002190
2191 BUG_ON(flags & LOOKUP_PARENT);
2192
Jeff Layton873f1ee2012-10-10 15:25:29 -04002193 err = filename_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04002195 if (!err)
2196 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 }
2198 return err;
2199}
2200
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002201int user_path_at(int dfd, const char __user *name, unsigned flags,
2202 struct path *path)
2203{
Linus Torvaldsf7493e52012-03-22 16:10:40 -07002204 return user_path_at_empty(dfd, name, flags, path, NULL);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002205}
Al Viro4d359502014-03-14 12:20:17 -04002206EXPORT_SYMBOL(user_path_at);
Andy Whitcroft1fa1e7f2011-11-02 09:44:39 +01002207
Jeff Layton873f1ee2012-10-10 15:25:29 -04002208/*
2209 * NB: most callers don't do anything directly with the reference to the
2210 * to struct filename, but the nd->last pointer points into the name string
2211 * allocated by getname. So we must hold the reference to it until all
2212 * path-walking is complete.
2213 */
Jeff Layton91a27b22012-10-10 15:25:28 -04002214static struct filename *
Jeff Layton9e790bd2012-12-11 12:10:09 -05002215user_path_parent(int dfd, const char __user *path, struct nameidata *nd,
2216 unsigned int flags)
Al Viro2ad94ae2008-07-21 09:32:51 -04002217{
Jeff Layton91a27b22012-10-10 15:25:28 -04002218 struct filename *s = getname(path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002219 int error;
2220
Jeff Layton9e790bd2012-12-11 12:10:09 -05002221 /* only LOOKUP_REVAL is allowed in extra flags */
2222 flags &= LOOKUP_REVAL;
2223
Al Viro2ad94ae2008-07-21 09:32:51 -04002224 if (IS_ERR(s))
Jeff Layton91a27b22012-10-10 15:25:28 -04002225 return s;
Al Viro2ad94ae2008-07-21 09:32:51 -04002226
Jeff Layton9e790bd2012-12-11 12:10:09 -05002227 error = filename_lookup(dfd, s, flags | LOOKUP_PARENT, nd);
Jeff Layton91a27b22012-10-10 15:25:28 -04002228 if (error) {
Al Viro2ad94ae2008-07-21 09:32:51 -04002229 putname(s);
Jeff Layton91a27b22012-10-10 15:25:28 -04002230 return ERR_PTR(error);
2231 }
Al Viro2ad94ae2008-07-21 09:32:51 -04002232
Jeff Layton91a27b22012-10-10 15:25:28 -04002233 return s;
Al Viro2ad94ae2008-07-21 09:32:51 -04002234}
2235
Jeff Layton80334262013-07-26 06:23:25 -04002236/**
Al Viro197df042013-09-08 14:03:27 -04002237 * mountpoint_last - look up last component for umount
Jeff Layton80334262013-07-26 06:23:25 -04002238 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2239 * @path: pointer to container for result
2240 *
2241 * This is a special lookup_last function just for umount. In this case, we
2242 * need to resolve the path without doing any revalidation.
2243 *
2244 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2245 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2246 * in almost all cases, this lookup will be served out of the dcache. The only
2247 * cases where it won't are if nd->last refers to a symlink or the path is
2248 * bogus and it doesn't exist.
2249 *
2250 * Returns:
2251 * -error: if there was an error during lookup. This includes -ENOENT if the
2252 * lookup found a negative dentry. The nd->path reference will also be
2253 * put in this case.
2254 *
2255 * 0: if we successfully resolved nd->path and found it to not to be a
2256 * symlink that needs to be followed. "path" will also be populated.
2257 * The nd->path reference will also be put.
2258 *
2259 * 1: if we successfully resolved nd->last and found it to be a symlink
2260 * that needs to be followed. "path" will be populated with the path
2261 * to the link, and nd->path will *not* be put.
2262 */
2263static int
Al Viro197df042013-09-08 14:03:27 -04002264mountpoint_last(struct nameidata *nd, struct path *path)
Jeff Layton80334262013-07-26 06:23:25 -04002265{
2266 int error = 0;
2267 struct dentry *dentry;
2268 struct dentry *dir = nd->path.dentry;
2269
Al Viro35759522013-09-08 13:41:33 -04002270 /* If we're in rcuwalk, drop out of it to handle last component */
2271 if (nd->flags & LOOKUP_RCU) {
2272 if (unlazy_walk(nd, NULL)) {
2273 error = -ECHILD;
2274 goto out;
2275 }
Jeff Layton80334262013-07-26 06:23:25 -04002276 }
2277
2278 nd->flags &= ~LOOKUP_PARENT;
2279
2280 if (unlikely(nd->last_type != LAST_NORM)) {
2281 error = handle_dots(nd, nd->last_type);
Al Viro35759522013-09-08 13:41:33 -04002282 if (error)
2283 goto out;
2284 dentry = dget(nd->path.dentry);
2285 goto done;
Jeff Layton80334262013-07-26 06:23:25 -04002286 }
2287
2288 mutex_lock(&dir->d_inode->i_mutex);
2289 dentry = d_lookup(dir, &nd->last);
2290 if (!dentry) {
2291 /*
2292 * No cached dentry. Mounted dentries are pinned in the cache,
2293 * so that means that this dentry is probably a symlink or the
2294 * path doesn't actually point to a mounted dentry.
2295 */
2296 dentry = d_alloc(dir, &nd->last);
2297 if (!dentry) {
2298 error = -ENOMEM;
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002299 mutex_unlock(&dir->d_inode->i_mutex);
Al Viro35759522013-09-08 13:41:33 -04002300 goto out;
Jeff Layton80334262013-07-26 06:23:25 -04002301 }
Al Viro35759522013-09-08 13:41:33 -04002302 dentry = lookup_real(dir->d_inode, dentry, nd->flags);
2303 error = PTR_ERR(dentry);
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002304 if (IS_ERR(dentry)) {
2305 mutex_unlock(&dir->d_inode->i_mutex);
Al Viro35759522013-09-08 13:41:33 -04002306 goto out;
Dave Jonesbcceeeb2013-09-10 17:04:25 -04002307 }
Jeff Layton80334262013-07-26 06:23:25 -04002308 }
2309 mutex_unlock(&dir->d_inode->i_mutex);
2310
Al Viro35759522013-09-08 13:41:33 -04002311done:
Al Viro22213312014-04-19 12:30:58 -04002312 if (!dentry->d_inode || d_is_negative(dentry)) {
Al Viro35759522013-09-08 13:41:33 -04002313 error = -ENOENT;
2314 dput(dentry);
2315 goto out;
Jeff Layton80334262013-07-26 06:23:25 -04002316 }
Al Viro35759522013-09-08 13:41:33 -04002317 path->dentry = dentry;
Vasily Averin295dc392014-07-21 12:30:23 +04002318 path->mnt = nd->path.mnt;
David Howellsb18825a2013-09-12 19:22:53 +01002319 if (should_follow_link(dentry, nd->flags & LOOKUP_FOLLOW))
Al Viro35759522013-09-08 13:41:33 -04002320 return 1;
Vasily Averin295dc392014-07-21 12:30:23 +04002321 mntget(path->mnt);
Al Viro35759522013-09-08 13:41:33 -04002322 follow_mount(path);
2323 error = 0;
2324out:
Jeff Layton80334262013-07-26 06:23:25 -04002325 terminate_walk(nd);
2326 return error;
2327}
2328
2329/**
Al Viro197df042013-09-08 14:03:27 -04002330 * path_mountpoint - look up a path to be umounted
Jeff Layton80334262013-07-26 06:23:25 -04002331 * @dfd: directory file descriptor to start walk from
2332 * @name: full pathname to walk
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002333 * @path: pointer to container for result
Jeff Layton80334262013-07-26 06:23:25 -04002334 * @flags: lookup flags
Jeff Layton80334262013-07-26 06:23:25 -04002335 *
2336 * Look up the given name, but don't attempt to revalidate the last component.
Randy Dunlap606d6fe2013-10-19 14:56:55 -07002337 * Returns 0 and "path" will be valid on success; Returns error otherwise.
Jeff Layton80334262013-07-26 06:23:25 -04002338 */
2339static int
Al Viro668696d2015-02-22 19:44:00 -05002340path_mountpoint(int dfd, const struct filename *name, struct path *path,
2341 unsigned int flags)
Jeff Layton80334262013-07-26 06:23:25 -04002342{
Jeff Layton80334262013-07-26 06:23:25 -04002343 struct nameidata nd;
2344 int err;
2345
Al Viro6e8a1f82015-02-22 19:46:04 -05002346 err = path_init(dfd, name, flags, &nd);
Jeff Layton80334262013-07-26 06:23:25 -04002347 if (unlikely(err))
Al Viro115cbfd2014-10-11 23:05:52 -04002348 goto out;
Jeff Layton80334262013-07-26 06:23:25 -04002349
Al Viro197df042013-09-08 14:03:27 -04002350 err = mountpoint_last(&nd, path);
Jeff Layton80334262013-07-26 06:23:25 -04002351 while (err > 0) {
2352 void *cookie;
2353 struct path link = *path;
2354 err = may_follow_link(&link, &nd);
2355 if (unlikely(err))
2356 break;
2357 nd.flags |= LOOKUP_PARENT;
2358 err = follow_link(&link, &nd, &cookie);
2359 if (err)
2360 break;
Al Viro197df042013-09-08 14:03:27 -04002361 err = mountpoint_last(&nd, path);
Jeff Layton80334262013-07-26 06:23:25 -04002362 put_link(&nd, &link, cookie);
2363 }
2364out:
Al Viro893b7772014-11-20 14:18:09 -05002365 path_cleanup(&nd);
Jeff Layton80334262013-07-26 06:23:25 -04002366 return err;
2367}
2368
Al Viro2d864652013-09-08 20:18:44 -04002369static int
Al Viro668696d2015-02-22 19:44:00 -05002370filename_mountpoint(int dfd, struct filename *name, struct path *path,
Al Viro2d864652013-09-08 20:18:44 -04002371 unsigned int flags)
2372{
Al Virocbaab2d2015-01-22 02:49:00 -05002373 int error;
Al Viro668696d2015-02-22 19:44:00 -05002374 if (IS_ERR(name))
2375 return PTR_ERR(name);
2376 error = path_mountpoint(dfd, name, path, flags | LOOKUP_RCU);
Al Viro2d864652013-09-08 20:18:44 -04002377 if (unlikely(error == -ECHILD))
Al Viro668696d2015-02-22 19:44:00 -05002378 error = path_mountpoint(dfd, name, path, flags);
Al Viro2d864652013-09-08 20:18:44 -04002379 if (unlikely(error == -ESTALE))
Al Viro668696d2015-02-22 19:44:00 -05002380 error = path_mountpoint(dfd, name, path, flags | LOOKUP_REVAL);
Al Viro2d864652013-09-08 20:18:44 -04002381 if (likely(!error))
Al Viro668696d2015-02-22 19:44:00 -05002382 audit_inode(name, path->dentry, 0);
2383 putname(name);
Al Viro2d864652013-09-08 20:18:44 -04002384 return error;
2385}
2386
Jeff Layton80334262013-07-26 06:23:25 -04002387/**
Al Viro197df042013-09-08 14:03:27 -04002388 * user_path_mountpoint_at - lookup a path from userland in order to umount it
Jeff Layton80334262013-07-26 06:23:25 -04002389 * @dfd: directory file descriptor
2390 * @name: pathname from userland
2391 * @flags: lookup flags
2392 * @path: pointer to container to hold result
2393 *
2394 * A umount is a special case for path walking. We're not actually interested
2395 * in the inode in this situation, and ESTALE errors can be a problem. We
2396 * simply want track down the dentry and vfsmount attached at the mountpoint
2397 * and avoid revalidating the last component.
2398 *
2399 * Returns 0 and populates "path" on success.
2400 */
2401int
Al Viro197df042013-09-08 14:03:27 -04002402user_path_mountpoint_at(int dfd, const char __user *name, unsigned int flags,
Jeff Layton80334262013-07-26 06:23:25 -04002403 struct path *path)
2404{
Al Virocbaab2d2015-01-22 02:49:00 -05002405 return filename_mountpoint(dfd, getname(name), path, flags);
Jeff Layton80334262013-07-26 06:23:25 -04002406}
2407
Al Viro2d864652013-09-08 20:18:44 -04002408int
2409kern_path_mountpoint(int dfd, const char *name, struct path *path,
2410 unsigned int flags)
2411{
Al Virocbaab2d2015-01-22 02:49:00 -05002412 return filename_mountpoint(dfd, getname_kernel(name), path, flags);
Al Viro2d864652013-09-08 20:18:44 -04002413}
2414EXPORT_SYMBOL(kern_path_mountpoint);
2415
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002416int __check_sticky(struct inode *dir, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417{
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002418 kuid_t fsuid = current_fsuid();
David Howellsda9592e2008-11-14 10:39:05 +11002419
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002420 if (uid_eq(inode->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 return 0;
Eric W. Biederman8e96e3b2012-03-03 21:17:15 -08002422 if (uid_eq(dir->i_uid, fsuid))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 return 0;
Andy Lutomirski23adbe12014-06-10 12:45:42 -07002424 return !capable_wrt_inode_uidgid(inode, CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425}
Miklos Szeredicbdf35b2014-10-24 00:14:36 +02002426EXPORT_SYMBOL(__check_sticky);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
2428/*
2429 * Check whether we can remove a link victim from directory dir, check
2430 * whether the type of victim is right.
2431 * 1. We can't do it if dir is read-only (done in permission())
2432 * 2. We should have write and exec permissions on dir
2433 * 3. We can't remove anything from append-only dir
2434 * 4. We can't do anything with immutable dir (done in permission())
2435 * 5. If the sticky bit on dir is set we should either
2436 * a. be owner of dir, or
2437 * b. be owner of victim, or
2438 * c. have CAP_FOWNER capability
2439 * 6. If the victim is append-only or immutable we can't do antyhing with
2440 * links pointing to it.
2441 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2442 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2443 * 9. We can't remove a root or mountpoint.
2444 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2445 * nfs_async_unlink().
2446 */
David Howellsb18825a2013-09-12 19:22:53 +01002447static int may_delete(struct inode *dir, struct dentry *victim, bool isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448{
David Howellsb18825a2013-09-12 19:22:53 +01002449 struct inode *inode = victim->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 int error;
2451
David Howellsb18825a2013-09-12 19:22:53 +01002452 if (d_is_negative(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 return -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01002454 BUG_ON(!inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455
2456 BUG_ON(victim->d_parent->d_inode != dir);
Jeff Layton4fa6b5e2012-10-10 15:25:25 -04002457 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
Al Virof419a2e2008-07-22 00:07:17 -04002459 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 if (error)
2461 return error;
2462 if (IS_APPEND(dir))
2463 return -EPERM;
David Howellsb18825a2013-09-12 19:22:53 +01002464
2465 if (check_sticky(dir, inode) || IS_APPEND(inode) ||
2466 IS_IMMUTABLE(inode) || IS_SWAPFILE(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 return -EPERM;
2468 if (isdir) {
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002469 if (!d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 return -ENOTDIR;
2471 if (IS_ROOT(victim))
2472 return -EBUSY;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02002473 } else if (d_is_dir(victim))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 return -EISDIR;
2475 if (IS_DEADDIR(dir))
2476 return -ENOENT;
2477 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2478 return -EBUSY;
2479 return 0;
2480}
2481
2482/* Check whether we can create an object with dentry child in directory
2483 * dir.
2484 * 1. We can't do it if child already exists (open has special treatment for
2485 * this case, but since we are inlined it's OK)
2486 * 2. We can't do it if dir is read-only (done in permission())
2487 * 3. We should have write and exec permissions on dir
2488 * 4. We can't do it if dir is immutable (done in permission())
2489 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02002490static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491{
Jeff Layton14e972b2013-05-08 10:25:58 -04002492 audit_inode_child(dir, child, AUDIT_TYPE_CHILD_CREATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 if (child->d_inode)
2494 return -EEXIST;
2495 if (IS_DEADDIR(dir))
2496 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04002497 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498}
2499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500/*
2501 * p1 and p2 should be directories on the same fs.
2502 */
2503struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2504{
2505 struct dentry *p;
2506
2507 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07002508 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 return NULL;
2510 }
2511
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002512 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002514 p = d_ancestor(p2, p1);
2515 if (p) {
2516 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2517 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2518 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 }
2520
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09002521 p = d_ancestor(p1, p2);
2522 if (p) {
2523 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2524 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2525 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 }
2527
Ingo Molnarf2eace22006-07-03 00:25:05 -07002528 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Miklos Szeredid1b72cc2014-10-27 15:42:01 +01002529 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 return NULL;
2531}
Al Viro4d359502014-03-14 12:20:17 -04002532EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
2534void unlock_rename(struct dentry *p1, struct dentry *p2)
2535{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002536 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002538 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002539 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 }
2541}
Al Viro4d359502014-03-14 12:20:17 -04002542EXPORT_SYMBOL(unlock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
Al Viro4acdaf22011-07-26 01:42:34 -04002544int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viro312b63f2012-06-10 18:09:36 -04002545 bool want_excl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002547 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 if (error)
2549 return error;
2550
Al Viroacfa4382008-12-04 10:06:33 -05002551 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 return -EACCES; /* shouldn't it be ENOSYS? */
2553 mode &= S_IALLUGO;
2554 mode |= S_IFREG;
2555 error = security_inode_create(dir, dentry, mode);
2556 if (error)
2557 return error;
Al Viro312b63f2012-06-10 18:09:36 -04002558 error = dir->i_op->create(dir, dentry, mode, want_excl);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002559 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002560 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 return error;
2562}
Al Viro4d359502014-03-14 12:20:17 -04002563EXPORT_SYMBOL(vfs_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Al Viro73d049a2011-03-11 12:08:24 -05002565static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002567 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 struct inode *inode = dentry->d_inode;
2569 int error;
2570
Al Virobcda7652011-03-13 16:42:14 -04002571 /* O_PATH? */
2572 if (!acc_mode)
2573 return 0;
2574
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575 if (!inode)
2576 return -ENOENT;
2577
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002578 switch (inode->i_mode & S_IFMT) {
2579 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002581 case S_IFDIR:
2582 if (acc_mode & MAY_WRITE)
2583 return -EISDIR;
2584 break;
2585 case S_IFBLK:
2586 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002587 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002589 /*FALLTHRU*/
2590 case S_IFIFO:
2591 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002593 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002594 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002595
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002596 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002597 if (error)
2598 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002599
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 /*
2601 * An append-only file must be opened in append mode for writing.
2602 */
2603 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002604 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002605 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002607 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 }
2609
2610 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002611 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002612 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
J. Bruce Fieldsf3c7691e2011-09-21 10:58:13 -04002614 return 0;
Al Viro7715b522009-12-16 03:54:00 -05002615}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
Jeff Laytone1181ee2010-12-07 16:19:50 -05002617static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002618{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002619 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002620 struct inode *inode = path->dentry->d_inode;
2621 int error = get_write_access(inode);
2622 if (error)
2623 return error;
2624 /*
2625 * Refuse to truncate files with mandatory locks held on them.
2626 */
Jeff Laytond7a06982014-03-10 09:54:15 -04002627 error = locks_verify_locked(filp);
Al Viro7715b522009-12-16 03:54:00 -05002628 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002629 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002630 if (!error) {
2631 error = do_truncate(path->dentry, 0,
2632 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002633 filp);
Al Viro7715b522009-12-16 03:54:00 -05002634 }
2635 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002636 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637}
2638
Dave Hansend57999e2008-02-15 14:37:27 -08002639static inline int open_to_namei_flags(int flag)
2640{
Al Viro8a5e9292011-06-25 19:15:54 -04002641 if ((flag & O_ACCMODE) == 3)
2642 flag--;
Dave Hansend57999e2008-02-15 14:37:27 -08002643 return flag;
2644}
2645
Miklos Szeredid18e9002012-06-05 15:10:17 +02002646static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2647{
2648 int error = security_path_mknod(dir, dentry, mode, 0);
2649 if (error)
2650 return error;
2651
2652 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2653 if (error)
2654 return error;
2655
2656 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2657}
2658
David Howells1acf0af2012-06-14 16:13:46 +01002659/*
2660 * Attempt to atomically look up, create and open a file from a negative
2661 * dentry.
2662 *
2663 * Returns 0 if successful. The file will have been created and attached to
2664 * @file by the filesystem calling finish_open().
2665 *
2666 * Returns 1 if the file was looked up only or didn't need creating. The
2667 * caller will need to perform the open themselves. @path will have been
2668 * updated to point to the new dentry. This may be negative.
2669 *
2670 * Returns an error code otherwise.
2671 */
Al Viro2675a4e2012-06-22 12:41:10 +04002672static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2673 struct path *path, struct file *file,
2674 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04002675 bool got_write, bool need_lookup,
Al Viro2675a4e2012-06-22 12:41:10 +04002676 int *opened)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002677{
2678 struct inode *dir = nd->path.dentry->d_inode;
2679 unsigned open_flag = open_to_namei_flags(op->open_flag);
2680 umode_t mode;
2681 int error;
2682 int acc_mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002683 int create_error = 0;
2684 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
Miklos Szeredi116cc022013-09-16 14:52:05 +02002685 bool excl;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002686
2687 BUG_ON(dentry->d_inode);
2688
2689 /* Don't create child dentry for a dead directory. */
2690 if (unlikely(IS_DEADDIR(dir))) {
Al Viro2675a4e2012-06-22 12:41:10 +04002691 error = -ENOENT;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002692 goto out;
2693 }
2694
Miklos Szeredi62b259d2012-08-15 13:01:24 +02002695 mode = op->mode;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002696 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2697 mode &= ~current_umask();
2698
Miklos Szeredi116cc022013-09-16 14:52:05 +02002699 excl = (open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT);
2700 if (excl)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002701 open_flag &= ~O_TRUNC;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002702
2703 /*
2704 * Checking write permission is tricky, bacuse we don't know if we are
2705 * going to actually need it: O_CREAT opens should work as long as the
2706 * file exists. But checking existence breaks atomicity. The trick is
2707 * to check access and if not granted clear O_CREAT from the flags.
2708 *
2709 * Another problem is returing the "right" error value (e.g. for an
2710 * O_EXCL open we want to return EEXIST not EROFS).
2711 */
Al Viro64894cf2012-07-31 00:53:35 +04002712 if (((open_flag & (O_CREAT | O_TRUNC)) ||
2713 (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2714 if (!(open_flag & O_CREAT)) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002715 /*
2716 * No O_CREATE -> atomicity not a requirement -> fall
2717 * back to lookup + open
2718 */
2719 goto no_open;
2720 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2721 /* Fall back and fail with the right error */
Al Viro64894cf2012-07-31 00:53:35 +04002722 create_error = -EROFS;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002723 goto no_open;
2724 } else {
2725 /* No side effects, safe to clear O_CREAT */
Al Viro64894cf2012-07-31 00:53:35 +04002726 create_error = -EROFS;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002727 open_flag &= ~O_CREAT;
2728 }
2729 }
2730
2731 if (open_flag & O_CREAT) {
Miklos Szeredi38227f72012-08-15 13:01:24 +02002732 error = may_o_create(&nd->path, dentry, mode);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002733 if (error) {
2734 create_error = error;
2735 if (open_flag & O_EXCL)
2736 goto no_open;
2737 open_flag &= ~O_CREAT;
2738 }
2739 }
2740
2741 if (nd->flags & LOOKUP_DIRECTORY)
2742 open_flag |= O_DIRECTORY;
2743
Al Viro30d90492012-06-22 12:40:19 +04002744 file->f_path.dentry = DENTRY_NOT_SET;
2745 file->f_path.mnt = nd->path.mnt;
2746 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
Al Viro47237682012-06-10 05:01:45 -04002747 opened);
Al Virod9585272012-06-22 12:39:14 +04002748 if (error < 0) {
Al Virod9585272012-06-22 12:39:14 +04002749 if (create_error && error == -ENOENT)
2750 error = create_error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002751 goto out;
2752 }
2753
Al Virod9585272012-06-22 12:39:14 +04002754 if (error) { /* returned 1, that is */
Al Viro30d90492012-06-22 12:40:19 +04002755 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
Al Viro2675a4e2012-06-22 12:41:10 +04002756 error = -EIO;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002757 goto out;
2758 }
Al Viro30d90492012-06-22 12:40:19 +04002759 if (file->f_path.dentry) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002760 dput(dentry);
Al Viro30d90492012-06-22 12:40:19 +04002761 dentry = file->f_path.dentry;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002762 }
Al Viro03da6332013-09-16 19:22:33 -04002763 if (*opened & FILE_CREATED)
2764 fsnotify_create(dir, dentry);
2765 if (!dentry->d_inode) {
2766 WARN_ON(*opened & FILE_CREATED);
2767 if (create_error) {
2768 error = create_error;
2769 goto out;
2770 }
2771 } else {
2772 if (excl && !(*opened & FILE_CREATED)) {
2773 error = -EEXIST;
2774 goto out;
2775 }
Sage Weil62b2ce92012-08-15 13:30:12 -07002776 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02002777 goto looked_up;
2778 }
2779
2780 /*
2781 * We didn't have the inode before the open, so check open permission
2782 * here.
2783 */
Al Viro03da6332013-09-16 19:22:33 -04002784 acc_mode = op->acc_mode;
2785 if (*opened & FILE_CREATED) {
2786 WARN_ON(!(open_flag & O_CREAT));
2787 fsnotify_create(dir, dentry);
2788 acc_mode = MAY_OPEN;
2789 }
Al Viro2675a4e2012-06-22 12:41:10 +04002790 error = may_open(&file->f_path, acc_mode, open_flag);
2791 if (error)
2792 fput(file);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002793
2794out:
2795 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04002796 return error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002797
Miklos Szeredid18e9002012-06-05 15:10:17 +02002798no_open:
2799 if (need_lookup) {
Al Viro72bd8662012-06-10 17:17:17 -04002800 dentry = lookup_real(dir, dentry, nd->flags);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002801 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002802 return PTR_ERR(dentry);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002803
2804 if (create_error) {
2805 int open_flag = op->open_flag;
2806
Al Viro2675a4e2012-06-22 12:41:10 +04002807 error = create_error;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002808 if ((open_flag & O_EXCL)) {
2809 if (!dentry->d_inode)
2810 goto out;
2811 } else if (!dentry->d_inode) {
2812 goto out;
2813 } else if ((open_flag & O_TRUNC) &&
David Howellse36cb0b2015-01-29 12:02:35 +00002814 d_is_reg(dentry)) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02002815 goto out;
2816 }
2817 /* will fail later, go on to get the right error */
2818 }
2819 }
2820looked_up:
2821 path->dentry = dentry;
2822 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04002823 return 1;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002824}
2825
Nick Piggin31e6b012011-01-07 17:49:52 +11002826/*
David Howells1acf0af2012-06-14 16:13:46 +01002827 * Look up and maybe create and open the last component.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002828 *
2829 * Must be called with i_mutex held on parent.
2830 *
David Howells1acf0af2012-06-14 16:13:46 +01002831 * Returns 0 if the file was successfully atomically created (if necessary) and
2832 * opened. In this case the file will be returned attached to @file.
2833 *
2834 * Returns 1 if the file was not completely opened at this time, though lookups
2835 * and creations will have been performed and the dentry returned in @path will
2836 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
2837 * specified then a negative dentry may be returned.
2838 *
2839 * An error code is returned otherwise.
2840 *
2841 * FILE_CREATE will be set in @*opened if the dentry was created and will be
2842 * cleared otherwise prior to returning.
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002843 */
Al Viro2675a4e2012-06-22 12:41:10 +04002844static int lookup_open(struct nameidata *nd, struct path *path,
2845 struct file *file,
2846 const struct open_flags *op,
Al Viro64894cf2012-07-31 00:53:35 +04002847 bool got_write, int *opened)
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002848{
2849 struct dentry *dir = nd->path.dentry;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002850 struct inode *dir_inode = dir->d_inode;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002851 struct dentry *dentry;
2852 int error;
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002853 bool need_lookup;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002854
Al Viro47237682012-06-10 05:01:45 -04002855 *opened &= ~FILE_CREATED;
Al Viro201f9562012-06-22 12:42:10 +04002856 dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002857 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002858 return PTR_ERR(dentry);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002859
Miklos Szeredid18e9002012-06-05 15:10:17 +02002860 /* Cached positive dentry: will open in f_op->open */
2861 if (!need_lookup && dentry->d_inode)
2862 goto out_no_open;
2863
2864 if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
Al Viro64894cf2012-07-31 00:53:35 +04002865 return atomic_open(nd, dentry, path, file, op, got_write,
Al Viro47237682012-06-10 05:01:45 -04002866 need_lookup, opened);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002867 }
2868
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002869 if (need_lookup) {
2870 BUG_ON(dentry->d_inode);
2871
Al Viro72bd8662012-06-10 17:17:17 -04002872 dentry = lookup_real(dir_inode, dentry, nd->flags);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002873 if (IS_ERR(dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04002874 return PTR_ERR(dentry);
Miklos Szeredi54ef4872012-06-05 15:10:16 +02002875 }
2876
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002877 /* Negative dentry, just create the file */
2878 if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
2879 umode_t mode = op->mode;
2880 if (!IS_POSIXACL(dir->d_inode))
2881 mode &= ~current_umask();
2882 /*
2883 * This write is needed to ensure that a
2884 * rw->ro transition does not occur between
2885 * the time when the file is created and when
2886 * a permanent write count is taken through
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02002887 * the 'struct file' in finish_open().
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002888 */
Al Viro64894cf2012-07-31 00:53:35 +04002889 if (!got_write) {
2890 error = -EROFS;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002891 goto out_dput;
Al Viro64894cf2012-07-31 00:53:35 +04002892 }
Al Viro47237682012-06-10 05:01:45 -04002893 *opened |= FILE_CREATED;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002894 error = security_path_mknod(&nd->path, dentry, mode, 0);
2895 if (error)
2896 goto out_dput;
Al Viro312b63f2012-06-10 18:09:36 -04002897 error = vfs_create(dir->d_inode, dentry, mode,
2898 nd->flags & LOOKUP_EXCL);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002899 if (error)
2900 goto out_dput;
2901 }
Miklos Szeredid18e9002012-06-05 15:10:17 +02002902out_no_open:
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002903 path->dentry = dentry;
2904 path->mnt = nd->path.mnt;
Al Viro2675a4e2012-06-22 12:41:10 +04002905 return 1;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002906
2907out_dput:
2908 dput(dentry);
Al Viro2675a4e2012-06-22 12:41:10 +04002909 return error;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002910}
2911
2912/*
Al Virofe2d35f2011-03-05 22:58:25 -05002913 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002914 */
Al Viro2675a4e2012-06-22 12:41:10 +04002915static int do_last(struct nameidata *nd, struct path *path,
2916 struct file *file, const struct open_flags *op,
Jeff Layton669abf42012-10-10 16:43:10 -04002917 int *opened, struct filename *name)
Al Virofb1cc552009-12-24 01:58:28 -05002918{
Al Viroa1e28032009-12-24 02:12:06 -05002919 struct dentry *dir = nd->path.dentry;
Al Viroca344a892011-03-09 00:36:45 -05002920 int open_flag = op->open_flag;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002921 bool will_truncate = (open_flag & O_TRUNC) != 0;
Al Viro64894cf2012-07-31 00:53:35 +04002922 bool got_write = false;
Al Virobcda7652011-03-13 16:42:14 -04002923 int acc_mode = op->acc_mode;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002924 struct inode *inode;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002925 bool symlink_ok = false;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002926 struct path save_parent = { .dentry = NULL, .mnt = NULL };
2927 bool retried = false;
Al Viro16c2cd72011-02-22 15:50:10 -05002928 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002929
Al Viroc3e380b2011-02-23 13:39:45 -05002930 nd->flags &= ~LOOKUP_PARENT;
2931 nd->flags |= op->intent;
2932
Al Virobc77daa2013-06-06 09:12:33 -04002933 if (nd->last_type != LAST_NORM) {
Al Virofe2d35f2011-03-05 22:58:25 -05002934 error = handle_dots(nd, nd->last_type);
2935 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002936 return error;
Miklos Szeredie83db162012-06-05 15:10:29 +02002937 goto finish_open;
Al Viro1f36f772009-12-26 10:56:19 -05002938 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002939
Al Viroca344a892011-03-09 00:36:45 -05002940 if (!(open_flag & O_CREAT)) {
Al Virofe2d35f2011-03-05 22:58:25 -05002941 if (nd->last.name[nd->last.len])
2942 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002943 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002944 symlink_ok = true;
Al Virofe2d35f2011-03-05 22:58:25 -05002945 /* we _can_ be in RCU mode here */
Al Viroe97cdc82013-01-24 18:16:00 -05002946 error = lookup_fast(nd, path, &inode);
Miklos Szeredi71574862012-06-05 15:10:14 +02002947 if (likely(!error))
2948 goto finish_lookup;
Miklos Szeredia1eb3312012-05-21 17:30:07 +02002949
Miklos Szeredi71574862012-06-05 15:10:14 +02002950 if (error < 0)
Al Viro2675a4e2012-06-22 12:41:10 +04002951 goto out;
Miklos Szeredi37d7fff2012-06-05 15:10:12 +02002952
Miklos Szeredi71574862012-06-05 15:10:14 +02002953 BUG_ON(nd->inode != dir->d_inode);
Miklos Szeredib6183df2012-06-05 15:10:13 +02002954 } else {
2955 /* create side of things */
2956 /*
2957 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
2958 * has been cleared when we got to the last component we are
2959 * about to look up
2960 */
2961 error = complete_walk(nd);
2962 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04002963 return error;
Miklos Szeredib6183df2012-06-05 15:10:13 +02002964
Jeff Layton33e22082013-04-12 15:16:32 -04002965 audit_inode(name, dir, LOOKUP_PARENT);
Miklos Szeredib6183df2012-06-05 15:10:13 +02002966 error = -EISDIR;
2967 /* trailing slashes? */
2968 if (nd->last.name[nd->last.len])
Al Viro2675a4e2012-06-22 12:41:10 +04002969 goto out;
Al Virofe2d35f2011-03-05 22:58:25 -05002970 }
2971
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02002972retry_lookup:
Al Viro64894cf2012-07-31 00:53:35 +04002973 if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
2974 error = mnt_want_write(nd->path.mnt);
2975 if (!error)
2976 got_write = true;
2977 /*
2978 * do _not_ fail yet - we might not need that or fail with
2979 * a different error; let lookup_open() decide; we'll be
2980 * dropping this one anyway.
2981 */
2982 }
Al Viroa1e28032009-12-24 02:12:06 -05002983 mutex_lock(&dir->d_inode->i_mutex);
Al Viro64894cf2012-07-31 00:53:35 +04002984 error = lookup_open(nd, path, file, op, got_write, opened);
Miklos Szeredid58ffd32012-06-05 15:10:15 +02002985 mutex_unlock(&dir->d_inode->i_mutex);
Al Viroa1e28032009-12-24 02:12:06 -05002986
Al Viro2675a4e2012-06-22 12:41:10 +04002987 if (error <= 0) {
2988 if (error)
Miklos Szeredid18e9002012-06-05 15:10:17 +02002989 goto out;
2990
Al Viro47237682012-06-10 05:01:45 -04002991 if ((*opened & FILE_CREATED) ||
Al Viro496ad9a2013-01-23 17:07:38 -05002992 !S_ISREG(file_inode(file)->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02002993 will_truncate = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02002994
Jeff Laytonadb5c242012-10-10 16:43:13 -04002995 audit_inode(name, file->f_path.dentry, 0);
Miklos Szeredid18e9002012-06-05 15:10:17 +02002996 goto opened;
2997 }
Al Virofb1cc552009-12-24 01:58:28 -05002998
Al Viro47237682012-06-10 05:01:45 -04002999 if (*opened & FILE_CREATED) {
Al Viro9b44f1b2011-03-09 00:17:27 -05003000 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05003001 open_flag &= ~O_TRUNC;
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003002 will_truncate = false;
Al Virobcda7652011-03-13 16:42:14 -04003003 acc_mode = MAY_OPEN;
Miklos Szeredid58ffd32012-06-05 15:10:15 +02003004 path_to_nameidata(path, nd);
Miklos Szeredie83db162012-06-05 15:10:29 +02003005 goto finish_open_created;
Al Virofb1cc552009-12-24 01:58:28 -05003006 }
3007
3008 /*
Jeff Layton3134f372012-07-25 10:19:47 -04003009 * create/update audit record if it already exists.
Al Virofb1cc552009-12-24 01:58:28 -05003010 */
David Howellsb18825a2013-09-12 19:22:53 +01003011 if (d_is_positive(path->dentry))
Jeff Laytonadb5c242012-10-10 16:43:13 -04003012 audit_inode(name, path->dentry, 0);
Al Virofb1cc552009-12-24 01:58:28 -05003013
Miklos Szeredid18e9002012-06-05 15:10:17 +02003014 /*
3015 * If atomic_open() acquired write access it is dropped now due to
3016 * possible mount and symlink following (this might be optimized away if
3017 * necessary...)
3018 */
Al Viro64894cf2012-07-31 00:53:35 +04003019 if (got_write) {
Miklos Szeredid18e9002012-06-05 15:10:17 +02003020 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003021 got_write = false;
Miklos Szeredid18e9002012-06-05 15:10:17 +02003022 }
3023
Al Virofb1cc552009-12-24 01:58:28 -05003024 error = -EEXIST;
Al Virof8310c52012-07-30 11:50:30 +04003025 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))
Al Virofb1cc552009-12-24 01:58:28 -05003026 goto exit_dput;
3027
David Howells9875cf82011-01-14 18:45:21 +00003028 error = follow_managed(path, nd->flags);
3029 if (error < 0)
3030 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05003031
Al Viroa3fbbde2011-11-07 21:21:26 +00003032 if (error)
3033 nd->flags |= LOOKUP_JUMPED;
3034
Miklos Szeredidecf3402012-05-21 17:30:08 +02003035 BUG_ON(nd->flags & LOOKUP_RCU);
3036 inode = path->dentry->d_inode;
Miklos Szeredi5f5daac2012-05-21 17:30:14 +02003037finish_lookup:
3038 /* we _can_ be in RCU mode here */
Al Virofb1cc552009-12-24 01:58:28 -05003039 error = -ENOENT;
Al Viro22213312014-04-19 12:30:58 -04003040 if (!inode || d_is_negative(path->dentry)) {
Miklos Szeredi54c33e72012-05-21 17:30:10 +02003041 path_to_nameidata(path, nd);
Al Viro2675a4e2012-06-22 12:41:10 +04003042 goto out;
Miklos Szeredi54c33e72012-05-21 17:30:10 +02003043 }
Al Viro9e67f362009-12-26 07:04:50 -05003044
David Howellsb18825a2013-09-12 19:22:53 +01003045 if (should_follow_link(path->dentry, !symlink_ok)) {
Miklos Szeredid45ea862012-05-21 17:30:09 +02003046 if (nd->flags & LOOKUP_RCU) {
3047 if (unlikely(unlazy_walk(nd, path->dentry))) {
3048 error = -ECHILD;
Al Viro2675a4e2012-06-22 12:41:10 +04003049 goto out;
Miklos Szeredid45ea862012-05-21 17:30:09 +02003050 }
3051 }
3052 BUG_ON(inode != path->dentry->d_inode);
Al Viro2675a4e2012-06-22 12:41:10 +04003053 return 1;
Miklos Szeredid45ea862012-05-21 17:30:09 +02003054 }
Al Virofb1cc552009-12-24 01:58:28 -05003055
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003056 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path->mnt) {
3057 path_to_nameidata(path, nd);
3058 } else {
3059 save_parent.dentry = nd->path.dentry;
3060 save_parent.mnt = mntget(path->mnt);
3061 nd->path.dentry = path->dentry;
3062
3063 }
Miklos Szeredidecf3402012-05-21 17:30:08 +02003064 nd->inode = inode;
Al Viroa3fbbde2011-11-07 21:21:26 +00003065 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
Al Virobc77daa2013-06-06 09:12:33 -04003066finish_open:
Al Viroa3fbbde2011-11-07 21:21:26 +00003067 error = complete_walk(nd);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003068 if (error) {
3069 path_put(&save_parent);
Al Viro2675a4e2012-06-22 12:41:10 +04003070 return error;
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003071 }
Al Virobc77daa2013-06-06 09:12:33 -04003072 audit_inode(name, nd->path.dentry, 0);
Al Virofb1cc552009-12-24 01:58:28 -05003073 error = -EISDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003074 if ((open_flag & O_CREAT) && d_is_dir(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003075 goto out;
Miklos Szerediaf2f5542012-05-21 17:30:11 +02003076 error = -ENOTDIR;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003077 if ((nd->flags & LOOKUP_DIRECTORY) && !d_can_lookup(nd->path.dentry))
Al Viro2675a4e2012-06-22 12:41:10 +04003078 goto out;
Al Viro6c0d46c2011-03-09 00:59:59 -05003079 if (!S_ISREG(nd->inode->i_mode))
Miklos Szeredi77d660a2012-06-05 15:10:30 +02003080 will_truncate = false;
Al Viro6c0d46c2011-03-09 00:59:59 -05003081
Al Viro0f9d1a12011-03-09 00:13:14 -05003082 if (will_truncate) {
3083 error = mnt_want_write(nd->path.mnt);
3084 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003085 goto out;
Al Viro64894cf2012-07-31 00:53:35 +04003086 got_write = true;
Al Viro0f9d1a12011-03-09 00:13:14 -05003087 }
Miklos Szeredie83db162012-06-05 15:10:29 +02003088finish_open_created:
Al Virobcda7652011-03-13 16:42:14 -04003089 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05003090 if (error)
Al Viro2675a4e2012-06-22 12:41:10 +04003091 goto out;
Miklos Szeredi4aa7c632014-10-24 00:14:35 +02003092
3093 BUG_ON(*opened & FILE_OPENED); /* once it's opened, it's opened */
3094 error = vfs_open(&nd->path, file, current_cred());
3095 if (!error) {
3096 *opened |= FILE_OPENED;
3097 } else {
Al Viro30d90492012-06-22 12:40:19 +04003098 if (error == -EOPENSTALE)
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003099 goto stale_open;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003100 goto out;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003101 }
Miklos Szeredia8277b92012-06-05 15:10:32 +02003102opened:
Al Viro2675a4e2012-06-22 12:41:10 +04003103 error = open_check_o_direct(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003104 if (error)
3105 goto exit_fput;
Dmitry Kasatkin3034a142014-06-27 18:15:44 +03003106 error = ima_file_check(file, op->acc_mode, *opened);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02003107 if (error)
3108 goto exit_fput;
3109
3110 if (will_truncate) {
Al Viro2675a4e2012-06-22 12:41:10 +04003111 error = handle_truncate(file);
Miklos Szerediaa4caad2012-06-05 15:10:28 +02003112 if (error)
3113 goto exit_fput;
Al Viro0f9d1a12011-03-09 00:13:14 -05003114 }
Al Viroca344a892011-03-09 00:36:45 -05003115out:
Al Viro64894cf2012-07-31 00:53:35 +04003116 if (got_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05003117 mnt_drop_write(nd->path.mnt);
Miklos Szeredi16b1c1c2012-05-21 17:30:19 +02003118 path_put(&save_parent);
Miklos Szeredie276ae62012-05-21 17:30:06 +02003119 terminate_walk(nd);
Al Viro2675a4e2012-06-22 12:41:10 +04003120 return error;
Al Virofb1cc552009-12-24 01:58:28 -05003121
Al Virofb1cc552009-12-24 01:58:28 -05003122exit_dput:
3123 path_put_conditional(path, nd);
Al Viroca344a892011-03-09 00:36:45 -05003124 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003125exit_fput:
Al Viro2675a4e2012-06-22 12:41:10 +04003126 fput(file);
3127 goto out;
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003128
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003129stale_open:
3130 /* If no saved parent or already retried then can't retry */
3131 if (!save_parent.dentry || retried)
3132 goto out;
3133
3134 BUG_ON(save_parent.dentry != dir);
3135 path_put(&nd->path);
3136 nd->path = save_parent;
3137 nd->inode = dir->d_inode;
3138 save_parent.mnt = NULL;
3139 save_parent.dentry = NULL;
Al Viro64894cf2012-07-31 00:53:35 +04003140 if (got_write) {
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003141 mnt_drop_write(nd->path.mnt);
Al Viro64894cf2012-07-31 00:53:35 +04003142 got_write = false;
Miklos Szeredif60dc3d2012-06-05 15:10:31 +02003143 }
3144 retried = true;
3145 goto retry_lookup;
Al Virofb1cc552009-12-24 01:58:28 -05003146}
3147
Al Viro60545d02013-06-07 01:20:27 -04003148static int do_tmpfile(int dfd, struct filename *pathname,
3149 struct nameidata *nd, int flags,
3150 const struct open_flags *op,
3151 struct file *file, int *opened)
3152{
3153 static const struct qstr name = QSTR_INIT("/", 1);
3154 struct dentry *dentry, *child;
3155 struct inode *dir;
Al Viro5eb6b492015-02-22 19:40:53 -05003156 int error = path_lookupat(dfd, pathname,
Al Viro60545d02013-06-07 01:20:27 -04003157 flags | LOOKUP_DIRECTORY, nd);
3158 if (unlikely(error))
3159 return error;
3160 error = mnt_want_write(nd->path.mnt);
3161 if (unlikely(error))
3162 goto out;
3163 /* we want directory to be writable */
3164 error = inode_permission(nd->inode, MAY_WRITE | MAY_EXEC);
3165 if (error)
3166 goto out2;
3167 dentry = nd->path.dentry;
3168 dir = dentry->d_inode;
3169 if (!dir->i_op->tmpfile) {
3170 error = -EOPNOTSUPP;
3171 goto out2;
3172 }
3173 child = d_alloc(dentry, &name);
3174 if (unlikely(!child)) {
3175 error = -ENOMEM;
3176 goto out2;
3177 }
3178 nd->flags &= ~LOOKUP_DIRECTORY;
3179 nd->flags |= op->intent;
3180 dput(nd->path.dentry);
3181 nd->path.dentry = child;
3182 error = dir->i_op->tmpfile(dir, nd->path.dentry, op->mode);
3183 if (error)
3184 goto out2;
3185 audit_inode(pathname, nd->path.dentry, 0);
Eric Rannaud69a91c22014-10-30 01:51:01 -07003186 /* Don't check for other permissions, the inode was just created */
3187 error = may_open(&nd->path, MAY_OPEN, op->open_flag);
Al Viro60545d02013-06-07 01:20:27 -04003188 if (error)
3189 goto out2;
3190 file->f_path.mnt = nd->path.mnt;
3191 error = finish_open(file, nd->path.dentry, NULL, opened);
3192 if (error)
3193 goto out2;
3194 error = open_check_o_direct(file);
Al Virof4e0c302013-06-11 08:34:36 +04003195 if (error) {
Al Viro60545d02013-06-07 01:20:27 -04003196 fput(file);
Al Virof4e0c302013-06-11 08:34:36 +04003197 } else if (!(op->open_flag & O_EXCL)) {
3198 struct inode *inode = file_inode(file);
3199 spin_lock(&inode->i_lock);
3200 inode->i_state |= I_LINKABLE;
3201 spin_unlock(&inode->i_lock);
3202 }
Al Viro60545d02013-06-07 01:20:27 -04003203out2:
3204 mnt_drop_write(nd->path.mnt);
3205out:
3206 path_put(&nd->path);
3207 return error;
3208}
3209
Jeff Layton669abf42012-10-10 16:43:10 -04003210static struct file *path_openat(int dfd, struct filename *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05003211 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212{
Al Viro30d90492012-06-22 12:40:19 +04003213 struct file *file;
Al Viro9850c052010-01-13 15:01:15 -05003214 struct path path;
Al Viro47237682012-06-10 05:01:45 -04003215 int opened = 0;
Al Viro13aab422011-02-23 17:54:08 -05003216 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11003217
Al Viro30d90492012-06-22 12:40:19 +04003218 file = get_empty_filp();
Al Viro1afc99b2013-02-14 20:41:04 -05003219 if (IS_ERR(file))
3220 return file;
Nick Piggin31e6b012011-01-07 17:49:52 +11003221
Al Viro30d90492012-06-22 12:40:19 +04003222 file->f_flags = op->open_flag;
Nick Piggin31e6b012011-01-07 17:49:52 +11003223
Al Virobb458c62013-07-13 13:26:37 +04003224 if (unlikely(file->f_flags & __O_TMPFILE)) {
Al Viro60545d02013-06-07 01:20:27 -04003225 error = do_tmpfile(dfd, pathname, nd, flags, op, file, &opened);
3226 goto out;
3227 }
3228
Al Viro6e8a1f82015-02-22 19:46:04 -05003229 error = path_init(dfd, pathname, flags, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11003230 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003231 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232
Al Viro2675a4e2012-06-22 12:41:10 +04003233 error = do_last(nd, &path, file, op, &opened, pathname);
3234 while (unlikely(error > 0)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00003235 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05003236 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04003237 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05003238 path_put_conditional(&path, nd);
3239 path_put(&nd->path);
Al Viro2675a4e2012-06-22 12:41:10 +04003240 error = -ELOOP;
Al Viro40b39132011-03-09 16:22:18 -05003241 break;
3242 }
Kees Cook800179c2012-07-25 17:29:07 -07003243 error = may_follow_link(&link, nd);
3244 if (unlikely(error))
3245 break;
Al Viro73d049a2011-03-11 12:08:24 -05003246 nd->flags |= LOOKUP_PARENT;
3247 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04003248 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05003249 if (unlikely(error))
Al Viro2675a4e2012-06-22 12:41:10 +04003250 break;
3251 error = do_last(nd, &path, file, op, &opened, pathname);
Al Viro574197e2011-03-14 22:20:34 -04003252 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05003253 }
Al Viro10fa8e62009-12-26 07:09:49 -05003254out:
Al Viro893b7772014-11-20 14:18:09 -05003255 path_cleanup(nd);
Al Viro2675a4e2012-06-22 12:41:10 +04003256 if (!(opened & FILE_OPENED)) {
3257 BUG_ON(!error);
Al Viro30d90492012-06-22 12:40:19 +04003258 put_filp(file);
Miklos Szeredi015c3bb2012-06-05 15:10:27 +02003259 }
Al Viro2675a4e2012-06-22 12:41:10 +04003260 if (unlikely(error)) {
3261 if (error == -EOPENSTALE) {
3262 if (flags & LOOKUP_RCU)
3263 error = -ECHILD;
3264 else
3265 error = -ESTALE;
3266 }
3267 file = ERR_PTR(error);
3268 }
3269 return file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270}
3271
Jeff Layton669abf42012-10-10 16:43:10 -04003272struct file *do_filp_open(int dfd, struct filename *pathname,
Al Virof9652e12013-06-11 08:23:01 +04003273 const struct open_flags *op)
Al Viro13aab422011-02-23 17:54:08 -05003274{
Al Viro73d049a2011-03-11 12:08:24 -05003275 struct nameidata nd;
Al Virof9652e12013-06-11 08:23:01 +04003276 int flags = op->lookup_flags;
Al Viro13aab422011-02-23 17:54:08 -05003277 struct file *filp;
3278
Al Viro73d049a2011-03-11 12:08:24 -05003279 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05003280 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05003281 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05003282 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05003283 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05003284 return filp;
3285}
3286
Al Viro73d049a2011-03-11 12:08:24 -05003287struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
Al Virof9652e12013-06-11 08:23:01 +04003288 const char *name, const struct open_flags *op)
Al Viro73d049a2011-03-11 12:08:24 -05003289{
3290 struct nameidata nd;
3291 struct file *file;
Paul Moore51689102015-01-22 00:00:03 -05003292 struct filename *filename;
Al Virof9652e12013-06-11 08:23:01 +04003293 int flags = op->lookup_flags | LOOKUP_ROOT;
Al Viro73d049a2011-03-11 12:08:24 -05003294
3295 nd.root.mnt = mnt;
3296 nd.root.dentry = dentry;
3297
David Howellsb18825a2013-09-12 19:22:53 +01003298 if (d_is_symlink(dentry) && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05003299 return ERR_PTR(-ELOOP);
3300
Paul Moore51689102015-01-22 00:00:03 -05003301 filename = getname_kernel(name);
3302 if (unlikely(IS_ERR(filename)))
3303 return ERR_CAST(filename);
3304
3305 file = path_openat(-1, filename, &nd, op, flags | LOOKUP_RCU);
Al Viro73d049a2011-03-11 12:08:24 -05003306 if (unlikely(file == ERR_PTR(-ECHILD)))
Paul Moore51689102015-01-22 00:00:03 -05003307 file = path_openat(-1, filename, &nd, op, flags);
Al Viro73d049a2011-03-11 12:08:24 -05003308 if (unlikely(file == ERR_PTR(-ESTALE)))
Paul Moore51689102015-01-22 00:00:03 -05003309 file = path_openat(-1, filename, &nd, op, flags | LOOKUP_REVAL);
3310 putname(filename);
Al Viro73d049a2011-03-11 12:08:24 -05003311 return file;
3312}
3313
Al Virofa14a0b2015-01-22 02:16:49 -05003314static struct dentry *filename_create(int dfd, struct filename *name,
Jeff Layton1ac12b42012-12-11 12:10:06 -05003315 struct path *path, unsigned int lookup_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003317 struct dentry *dentry = ERR_PTR(-EEXIST);
Al Viroed75e952011-06-27 16:53:43 -04003318 struct nameidata nd;
Jan Karac30dabf2012-06-12 16:20:30 +02003319 int err2;
Jeff Layton1ac12b42012-12-11 12:10:06 -05003320 int error;
3321 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3322
3323 /*
3324 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3325 * other flags passed in are ignored!
3326 */
3327 lookup_flags &= LOOKUP_REVAL;
3328
Al Virofa14a0b2015-01-22 02:16:49 -05003329 error = filename_lookup(dfd, name, LOOKUP_PARENT|lookup_flags, &nd);
Al Viroed75e952011-06-27 16:53:43 -04003330 if (error)
3331 return ERR_PTR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003333 /*
3334 * Yucky last component or no last component at all?
3335 * (foo/., foo/.., /////)
3336 */
Al Viroed75e952011-06-27 16:53:43 -04003337 if (nd.last_type != LAST_NORM)
3338 goto out;
3339 nd.flags &= ~LOOKUP_PARENT;
3340 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003341
Jan Karac30dabf2012-06-12 16:20:30 +02003342 /* don't fail immediately if it's r/o, at least try to report other errors */
3343 err2 = mnt_want_write(nd.path.mnt);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003344 /*
3345 * Do the final lookup.
3346 */
Al Viroed75e952011-06-27 16:53:43 -04003347 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3348 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 if (IS_ERR(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003350 goto unlock;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003351
Al Viroa8104a92012-07-20 02:25:00 +04003352 error = -EEXIST;
David Howellsb18825a2013-09-12 19:22:53 +01003353 if (d_is_positive(dentry))
Al Viroa8104a92012-07-20 02:25:00 +04003354 goto fail;
David Howellsb18825a2013-09-12 19:22:53 +01003355
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07003356 /*
3357 * Special case - lookup gave negative, but... we had foo/bar/
3358 * From the vfs_mknod() POV we just have a negative dentry -
3359 * all is fine. Let's be bastards - you had / on the end, you've
3360 * been asking for (non-existent) directory. -ENOENT for you.
3361 */
Al Viroed75e952011-06-27 16:53:43 -04003362 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
Al Viroa8104a92012-07-20 02:25:00 +04003363 error = -ENOENT;
Al Viroed75e952011-06-27 16:53:43 -04003364 goto fail;
Al Viroe9baf6e2008-05-15 04:49:12 -04003365 }
Jan Karac30dabf2012-06-12 16:20:30 +02003366 if (unlikely(err2)) {
3367 error = err2;
Al Viroa8104a92012-07-20 02:25:00 +04003368 goto fail;
Jan Karac30dabf2012-06-12 16:20:30 +02003369 }
Al Viroed75e952011-06-27 16:53:43 -04003370 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 return dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372fail:
Al Viroa8104a92012-07-20 02:25:00 +04003373 dput(dentry);
3374 dentry = ERR_PTR(error);
3375unlock:
Al Viroed75e952011-06-27 16:53:43 -04003376 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Karac30dabf2012-06-12 16:20:30 +02003377 if (!err2)
3378 mnt_drop_write(nd.path.mnt);
Al Viroed75e952011-06-27 16:53:43 -04003379out:
3380 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 return dentry;
3382}
Al Virofa14a0b2015-01-22 02:16:49 -05003383
3384struct dentry *kern_path_create(int dfd, const char *pathname,
3385 struct path *path, unsigned int lookup_flags)
3386{
Paul Moore51689102015-01-22 00:00:03 -05003387 struct filename *filename = getname_kernel(pathname);
3388 struct dentry *res;
3389
3390 if (IS_ERR(filename))
3391 return ERR_CAST(filename);
3392 res = filename_create(dfd, filename, path, lookup_flags);
3393 putname(filename);
3394 return res;
Al Virofa14a0b2015-01-22 02:16:49 -05003395}
Al Virodae6ad82011-06-26 11:50:15 -04003396EXPORT_SYMBOL(kern_path_create);
3397
Al Viro921a1652012-07-20 01:15:31 +04003398void done_path_create(struct path *path, struct dentry *dentry)
3399{
3400 dput(dentry);
3401 mutex_unlock(&path->dentry->d_inode->i_mutex);
Al Viroa8104a92012-07-20 02:25:00 +04003402 mnt_drop_write(path->mnt);
Al Viro921a1652012-07-20 01:15:31 +04003403 path_put(path);
3404}
3405EXPORT_SYMBOL(done_path_create);
3406
Jeff Layton1ac12b42012-12-11 12:10:06 -05003407struct dentry *user_path_create(int dfd, const char __user *pathname,
3408 struct path *path, unsigned int lookup_flags)
Al Virodae6ad82011-06-26 11:50:15 -04003409{
Jeff Layton91a27b22012-10-10 15:25:28 -04003410 struct filename *tmp = getname(pathname);
Al Virodae6ad82011-06-26 11:50:15 -04003411 struct dentry *res;
3412 if (IS_ERR(tmp))
3413 return ERR_CAST(tmp);
Al Virofa14a0b2015-01-22 02:16:49 -05003414 res = filename_create(dfd, tmp, path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003415 putname(tmp);
3416 return res;
3417}
3418EXPORT_SYMBOL(user_path_create);
3419
Al Viro1a67aaf2011-07-26 01:52:52 -04003420int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003422 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423
3424 if (error)
3425 return error;
3426
Eric W. Biederman975d6b32011-11-13 12:16:43 -08003427 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 return -EPERM;
3429
Al Viroacfa4382008-12-04 10:06:33 -05003430 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 return -EPERM;
3432
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07003433 error = devcgroup_inode_mknod(mode, dev);
3434 if (error)
3435 return error;
3436
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 error = security_inode_mknod(dir, dentry, mode, dev);
3438 if (error)
3439 return error;
3440
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003442 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003443 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 return error;
3445}
Al Viro4d359502014-03-14 12:20:17 -04003446EXPORT_SYMBOL(vfs_mknod);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447
Al Virof69aac02011-07-26 04:31:40 -04003448static int may_mknod(umode_t mode)
Dave Hansen463c3192008-02-15 14:37:57 -08003449{
3450 switch (mode & S_IFMT) {
3451 case S_IFREG:
3452 case S_IFCHR:
3453 case S_IFBLK:
3454 case S_IFIFO:
3455 case S_IFSOCK:
3456 case 0: /* zero mode translates to S_IFREG */
3457 return 0;
3458 case S_IFDIR:
3459 return -EPERM;
3460 default:
3461 return -EINVAL;
3462 }
3463}
3464
Al Viro8208a222011-07-25 17:32:17 -04003465SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003466 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467{
Al Viro2ad94ae2008-07-21 09:32:51 -04003468 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003469 struct path path;
3470 int error;
Jeff Layton972567f2012-12-20 16:00:10 -05003471 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Al Viro8e4bfca2012-07-20 01:17:26 +04003473 error = may_mknod(mode);
3474 if (error)
3475 return error;
Jeff Layton972567f2012-12-20 16:00:10 -05003476retry:
3477 dentry = user_path_create(dfd, filename, &path, lookup_flags);
Al Virodae6ad82011-06-26 11:50:15 -04003478 if (IS_ERR(dentry))
3479 return PTR_ERR(dentry);
Al Viro2ad94ae2008-07-21 09:32:51 -04003480
Al Virodae6ad82011-06-26 11:50:15 -04003481 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003482 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003483 error = security_path_mknod(&path, dentry, mode, dev);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003484 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04003485 goto out;
Dave Hansen463c3192008-02-15 14:37:57 -08003486 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 case 0: case S_IFREG:
Al Viro312b63f2012-06-10 18:09:36 -04003488 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 break;
3490 case S_IFCHR: case S_IFBLK:
Al Virodae6ad82011-06-26 11:50:15 -04003491 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 new_decode_dev(dev));
3493 break;
3494 case S_IFIFO: case S_IFSOCK:
Al Virodae6ad82011-06-26 11:50:15 -04003495 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 }
Al Viroa8104a92012-07-20 02:25:00 +04003498out:
Al Viro921a1652012-07-20 01:15:31 +04003499 done_path_create(&path, dentry);
Jeff Layton972567f2012-12-20 16:00:10 -05003500 if (retry_estale(error, lookup_flags)) {
3501 lookup_flags |= LOOKUP_REVAL;
3502 goto retry;
3503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504 return error;
3505}
3506
Al Viro8208a222011-07-25 17:32:17 -04003507SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003508{
3509 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3510}
3511
Al Viro18bb1db2011-07-26 01:41:39 -04003512int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003514 int error = may_create(dir, dentry);
Al Viro8de52772012-02-06 12:45:27 -05003515 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516
3517 if (error)
3518 return error;
3519
Al Viroacfa4382008-12-04 10:06:33 -05003520 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 return -EPERM;
3522
3523 mode &= (S_IRWXUGO|S_ISVTX);
3524 error = security_inode_mkdir(dir, dentry, mode);
3525 if (error)
3526 return error;
3527
Al Viro8de52772012-02-06 12:45:27 -05003528 if (max_links && dir->i_nlink >= max_links)
3529 return -EMLINK;
3530
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003532 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003533 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 return error;
3535}
Al Viro4d359502014-03-14 12:20:17 -04003536EXPORT_SYMBOL(vfs_mkdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Al Viroa218d0f2011-11-21 14:59:34 -05003538SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539{
Dave Hansen6902d922006-09-30 23:29:01 -07003540 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003541 struct path path;
3542 int error;
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003543 unsigned int lookup_flags = LOOKUP_DIRECTORY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003545retry:
3546 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003547 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003548 return PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003549
Al Virodae6ad82011-06-26 11:50:15 -04003550 if (!IS_POSIXACL(path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04003551 mode &= ~current_umask();
Al Virodae6ad82011-06-26 11:50:15 -04003552 error = security_path_mkdir(&path, dentry, mode);
Al Viroa8104a92012-07-20 02:25:00 +04003553 if (!error)
3554 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
Al Viro921a1652012-07-20 01:15:31 +04003555 done_path_create(&path, dentry);
Jeff Laytonb76d8b82012-12-20 16:04:09 -05003556 if (retry_estale(error, lookup_flags)) {
3557 lookup_flags |= LOOKUP_REVAL;
3558 goto retry;
3559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 return error;
3561}
3562
Al Viroa218d0f2011-11-21 14:59:34 -05003563SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003564{
3565 return sys_mkdirat(AT_FDCWD, pathname, mode);
3566}
3567
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568/*
Sage Weila71905f2011-05-24 13:06:08 -07003569 * The dentry_unhash() helper will try to drop the dentry early: we
J. Bruce Fieldsc0d02592012-02-15 11:48:40 -05003570 * should have a usage count of 1 if we're the only user of this
Sage Weila71905f2011-05-24 13:06:08 -07003571 * dentry, and if that is true (possibly after pruning the dcache),
3572 * then we drop the dentry now.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 *
3574 * A low-level filesystem can, if it choses, legally
3575 * do a
3576 *
3577 * if (!d_unhashed(dentry))
3578 * return -EBUSY;
3579 *
3580 * if it cannot handle the case of removing a directory
3581 * that is still in use by something else..
3582 */
3583void dentry_unhash(struct dentry *dentry)
3584{
Vasily Averindc168422006-12-06 20:37:07 -08003585 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 spin_lock(&dentry->d_lock);
Waiman Long98474232013-08-28 18:24:59 -07003587 if (dentry->d_lockref.count == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 __d_drop(dentry);
3589 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590}
Al Viro4d359502014-03-14 12:20:17 -04003591EXPORT_SYMBOL(dentry_unhash);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592
3593int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3594{
3595 int error = may_delete(dir, dentry, 1);
3596
3597 if (error)
3598 return error;
3599
Al Viroacfa4382008-12-04 10:06:33 -05003600 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 return -EPERM;
3602
Al Viro1d2ef592011-09-14 18:55:41 +01003603 dget(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003604 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605
Sage Weil912dbc12011-05-24 13:06:11 -07003606 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07003607 if (is_local_mountpoint(dentry))
Sage Weil912dbc12011-05-24 13:06:11 -07003608 goto out;
3609
3610 error = security_inode_rmdir(dir, dentry);
3611 if (error)
3612 goto out;
3613
Sage Weil3cebde22011-05-29 21:20:59 -07003614 shrink_dcache_parent(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003615 error = dir->i_op->rmdir(dir, dentry);
3616 if (error)
3617 goto out;
3618
3619 dentry->d_inode->i_flags |= S_DEAD;
3620 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003621 detach_mounts(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003622
3623out:
3624 mutex_unlock(&dentry->d_inode->i_mutex);
Al Viro1d2ef592011-09-14 18:55:41 +01003625 dput(dentry);
Sage Weil912dbc12011-05-24 13:06:11 -07003626 if (!error)
3627 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 return error;
3629}
Al Viro4d359502014-03-14 12:20:17 -04003630EXPORT_SYMBOL(vfs_rmdir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003632static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633{
3634 int error = 0;
Jeff Layton91a27b22012-10-10 15:25:28 -04003635 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 struct dentry *dentry;
3637 struct nameidata nd;
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003638 unsigned int lookup_flags = 0;
3639retry:
3640 name = user_path_parent(dfd, pathname, &nd, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003641 if (IS_ERR(name))
3642 return PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643
3644 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003645 case LAST_DOTDOT:
3646 error = -ENOTEMPTY;
3647 goto exit1;
3648 case LAST_DOT:
3649 error = -EINVAL;
3650 goto exit1;
3651 case LAST_ROOT:
3652 error = -EBUSY;
3653 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003655
3656 nd.flags &= ~LOOKUP_PARENT;
Jan Karac30dabf2012-06-12 16:20:30 +02003657 error = mnt_want_write(nd.path.mnt);
3658 if (error)
3659 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003660
Jan Blunck4ac91372008-02-14 19:34:32 -08003661 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08003662 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003664 if (IS_ERR(dentry))
3665 goto exit2;
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003666 if (!dentry->d_inode) {
3667 error = -ENOENT;
3668 goto exit3;
3669 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003670 error = security_path_rmdir(&nd.path, dentry);
3671 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003672 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08003673 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Dave Hansen06227532008-02-15 14:37:34 -08003674exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07003675 dput(dentry);
3676exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08003677 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Karac30dabf2012-06-12 16:20:30 +02003678 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003680 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 putname(name);
Jeff Laytonc6ee9202012-12-20 16:28:33 -05003682 if (retry_estale(error, lookup_flags)) {
3683 lookup_flags |= LOOKUP_REVAL;
3684 goto retry;
3685 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003686 return error;
3687}
3688
Heiko Carstens3cdad422009-01-14 14:14:22 +01003689SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003690{
3691 return do_rmdir(AT_FDCWD, pathname);
3692}
3693
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003694/**
3695 * vfs_unlink - unlink a filesystem object
3696 * @dir: parent directory
3697 * @dentry: victim
3698 * @delegated_inode: returns victim inode, if the inode is delegated.
3699 *
3700 * The caller must hold dir->i_mutex.
3701 *
3702 * If vfs_unlink discovers a delegation, it will return -EWOULDBLOCK and
3703 * return a reference to the inode in delegated_inode. The caller
3704 * should then break the delegation on that inode and retry. Because
3705 * breaking a delegation may take a long time, the caller should drop
3706 * dir->i_mutex before doing so.
3707 *
3708 * Alternatively, a caller may pass NULL for delegated_inode. This may
3709 * be appropriate for callers that expect the underlying filesystem not
3710 * to be NFS exported.
3711 */
3712int vfs_unlink(struct inode *dir, struct dentry *dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713{
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003714 struct inode *target = dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 int error = may_delete(dir, dentry, 0);
3716
3717 if (error)
3718 return error;
3719
Al Viroacfa4382008-12-04 10:06:33 -05003720 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 return -EPERM;
3722
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003723 mutex_lock(&target->i_mutex);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003724 if (is_local_mountpoint(dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 error = -EBUSY;
3726 else {
3727 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05003728 if (!error) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003729 error = try_break_deleg(target, delegated_inode);
3730 if (error)
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003731 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732 error = dir->i_op->unlink(dir, dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003733 if (!error) {
Al Virod83c49f2010-04-30 17:17:09 -04003734 dont_mount(dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07003735 detach_mounts(dentry);
3736 }
Al Virobec10522010-03-03 14:12:08 -05003737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 }
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003739out:
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003740 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741
3742 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3743 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
J. Bruce Fields9accbb92012-08-28 07:03:24 -04003744 fsnotify_link_count(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746 }
Robert Love0eeca282005-07-12 17:06:03 -04003747
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 return error;
3749}
Al Viro4d359502014-03-14 12:20:17 -04003750EXPORT_SYMBOL(vfs_unlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
3752/*
3753 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003754 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755 * writeout happening, and we don't want to prevent access to the directory
3756 * while waiting on the I/O.
3757 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003758static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759{
Al Viro2ad94ae2008-07-21 09:32:51 -04003760 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04003761 struct filename *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 struct dentry *dentry;
3763 struct nameidata nd;
3764 struct inode *inode = NULL;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003765 struct inode *delegated_inode = NULL;
Jeff Layton5d18f812012-12-20 16:38:04 -05003766 unsigned int lookup_flags = 0;
3767retry:
3768 name = user_path_parent(dfd, pathname, &nd, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04003769 if (IS_ERR(name))
3770 return PTR_ERR(name);
Al Viro2ad94ae2008-07-21 09:32:51 -04003771
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 error = -EISDIR;
3773 if (nd.last_type != LAST_NORM)
3774 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003775
3776 nd.flags &= ~LOOKUP_PARENT;
Jan Karac30dabf2012-06-12 16:20:30 +02003777 error = mnt_want_write(nd.path.mnt);
3778 if (error)
3779 goto exit1;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003780retry_deleg:
Jan Blunck4ac91372008-02-14 19:34:32 -08003781 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08003782 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 error = PTR_ERR(dentry);
3784 if (!IS_ERR(dentry)) {
3785 /* Why not before? Because we want correct error value */
Török Edwin50338b82011-06-16 00:06:14 +03003786 if (nd.last.name[nd.last.len])
3787 goto slashes;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 inode = dentry->d_inode;
David Howellsb18825a2013-09-12 19:22:53 +01003789 if (d_is_negative(dentry))
Theodore Ts'oe6bc45d2011-06-06 19:19:40 -04003790 goto slashes;
3791 ihold(inode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003792 error = security_path_unlink(&nd.path, dentry);
3793 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02003794 goto exit2;
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003795 error = vfs_unlink(nd.path.dentry->d_inode, dentry, &delegated_inode);
Jan Karac30dabf2012-06-12 16:20:30 +02003796exit2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 dput(dentry);
3798 }
Jan Blunck4ac91372008-02-14 19:34:32 -08003799 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800 if (inode)
3801 iput(inode); /* truncate the inode here */
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003802 inode = NULL;
3803 if (delegated_inode) {
J. Bruce Fields5a146962012-08-28 07:50:40 -07003804 error = break_deleg_wait(&delegated_inode);
J. Bruce Fieldsb21996e2011-09-20 09:14:34 -04003805 if (!error)
3806 goto retry_deleg;
3807 }
Jan Karac30dabf2012-06-12 16:20:30 +02003808 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003810 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 putname(name);
Jeff Layton5d18f812012-12-20 16:38:04 -05003812 if (retry_estale(error, lookup_flags)) {
3813 lookup_flags |= LOOKUP_REVAL;
3814 inode = NULL;
3815 goto retry;
3816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 return error;
3818
3819slashes:
David Howellsb18825a2013-09-12 19:22:53 +01003820 if (d_is_negative(dentry))
3821 error = -ENOENT;
Miklos Szeredi44b1d532014-04-01 17:08:41 +02003822 else if (d_is_dir(dentry))
David Howellsb18825a2013-09-12 19:22:53 +01003823 error = -EISDIR;
3824 else
3825 error = -ENOTDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 goto exit2;
3827}
3828
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003829SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003830{
3831 if ((flag & ~AT_REMOVEDIR) != 0)
3832 return -EINVAL;
3833
3834 if (flag & AT_REMOVEDIR)
3835 return do_rmdir(dfd, pathname);
3836
3837 return do_unlinkat(dfd, pathname);
3838}
3839
Heiko Carstens3480b252009-01-14 14:14:16 +01003840SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003841{
3842 return do_unlinkat(AT_FDCWD, pathname);
3843}
3844
Miklos Szeredidb2e7472008-06-24 16:50:16 +02003845int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846{
Miklos Szeredia95164d2008-07-30 15:08:48 +02003847 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
3849 if (error)
3850 return error;
3851
Al Viroacfa4382008-12-04 10:06:33 -05003852 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 return -EPERM;
3854
3855 error = security_inode_symlink(dir, dentry, oldname);
3856 if (error)
3857 return error;
3858
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07003860 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00003861 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 return error;
3863}
Al Viro4d359502014-03-14 12:20:17 -04003864EXPORT_SYMBOL(vfs_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003866SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3867 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868{
Al Viro2ad94ae2008-07-21 09:32:51 -04003869 int error;
Jeff Layton91a27b22012-10-10 15:25:28 -04003870 struct filename *from;
Dave Hansen6902d922006-09-30 23:29:01 -07003871 struct dentry *dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003872 struct path path;
Jeff Laytonf46d3562012-12-11 12:10:08 -05003873 unsigned int lookup_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
3875 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04003876 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 return PTR_ERR(from);
Jeff Laytonf46d3562012-12-11 12:10:08 -05003878retry:
3879 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
Dave Hansen6902d922006-09-30 23:29:01 -07003880 error = PTR_ERR(dentry);
3881 if (IS_ERR(dentry))
Al Virodae6ad82011-06-26 11:50:15 -04003882 goto out_putname;
Dave Hansen6902d922006-09-30 23:29:01 -07003883
Jeff Layton91a27b22012-10-10 15:25:28 -04003884 error = security_path_symlink(&path, dentry, from->name);
Al Viroa8104a92012-07-20 02:25:00 +04003885 if (!error)
Jeff Layton91a27b22012-10-10 15:25:28 -04003886 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
Al Viro921a1652012-07-20 01:15:31 +04003887 done_path_create(&path, dentry);
Jeff Laytonf46d3562012-12-11 12:10:08 -05003888 if (retry_estale(error, lookup_flags)) {
3889 lookup_flags |= LOOKUP_REVAL;
3890 goto retry;
3891 }
Dave Hansen6902d922006-09-30 23:29:01 -07003892out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 putname(from);
3894 return error;
3895}
3896
Heiko Carstens3480b252009-01-14 14:14:16 +01003897SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003898{
3899 return sys_symlinkat(oldname, AT_FDCWD, newname);
3900}
3901
J. Bruce Fields146a8592011-09-20 17:14:31 -04003902/**
3903 * vfs_link - create a new link
3904 * @old_dentry: object to be linked
3905 * @dir: new parent
3906 * @new_dentry: where to create the new link
3907 * @delegated_inode: returns inode needing a delegation break
3908 *
3909 * The caller must hold dir->i_mutex
3910 *
3911 * If vfs_link discovers a delegation on the to-be-linked file in need
3912 * of breaking, it will return -EWOULDBLOCK and return a reference to the
3913 * inode in delegated_inode. The caller should then break the delegation
3914 * and retry. Because breaking a delegation may take a long time, the
3915 * caller should drop the i_mutex before doing so.
3916 *
3917 * Alternatively, a caller may pass NULL for delegated_inode. This may
3918 * be appropriate for callers that expect the underlying filesystem not
3919 * to be NFS exported.
3920 */
3921int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry, struct inode **delegated_inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922{
3923 struct inode *inode = old_dentry->d_inode;
Al Viro8de52772012-02-06 12:45:27 -05003924 unsigned max_links = dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 int error;
3926
3927 if (!inode)
3928 return -ENOENT;
3929
Miklos Szeredia95164d2008-07-30 15:08:48 +02003930 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 if (error)
3932 return error;
3933
3934 if (dir->i_sb != inode->i_sb)
3935 return -EXDEV;
3936
3937 /*
3938 * A link to an append-only or immutable file cannot be created.
3939 */
3940 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3941 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05003942 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003944 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 return -EPERM;
3946
3947 error = security_inode_link(old_dentry, dir, new_dentry);
3948 if (error)
3949 return error;
3950
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003951 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303952 /* Make sure we don't allow creating hardlink to an unlinked file */
Al Virof4e0c302013-06-11 08:34:36 +04003953 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05303954 error = -ENOENT;
Al Viro8de52772012-02-06 12:45:27 -05003955 else if (max_links && inode->i_nlink >= max_links)
3956 error = -EMLINK;
J. Bruce Fields146a8592011-09-20 17:14:31 -04003957 else {
3958 error = try_break_deleg(inode, delegated_inode);
3959 if (!error)
3960 error = dir->i_op->link(old_dentry, dir, new_dentry);
3961 }
Al Virof4e0c302013-06-11 08:34:36 +04003962
3963 if (!error && (inode->i_state & I_LINKABLE)) {
3964 spin_lock(&inode->i_lock);
3965 inode->i_state &= ~I_LINKABLE;
3966 spin_unlock(&inode->i_lock);
3967 }
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003968 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003969 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003970 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971 return error;
3972}
Al Viro4d359502014-03-14 12:20:17 -04003973EXPORT_SYMBOL(vfs_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974
3975/*
3976 * Hardlinks are often used in delicate situations. We avoid
3977 * security-related surprises by not following symlinks on the
3978 * newname. --KAB
3979 *
3980 * We don't follow them on the oldname either to be compatible
3981 * with linux 2.0, and to avoid hard-linking to directories
3982 * and other special files. --ADM
3983 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003984SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
3985 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986{
3987 struct dentry *new_dentry;
Al Virodae6ad82011-06-26 11:50:15 -04003988 struct path old_path, new_path;
J. Bruce Fields146a8592011-09-20 17:14:31 -04003989 struct inode *delegated_inode = NULL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303990 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303993 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003994 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303995 /*
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07003996 * To use null names we require CAP_DAC_READ_SEARCH
3997 * This ensures that not everyone will be able to create
3998 * handlink using the passed filedescriptor.
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05303999 */
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004000 if (flags & AT_EMPTY_PATH) {
4001 if (!capable(CAP_DAC_READ_SEARCH))
4002 return -ENOENT;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304003 how = LOOKUP_EMPTY;
Linus Torvaldsf0cc6ff2013-08-28 09:18:05 -07004004 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004005
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304006 if (flags & AT_SYMLINK_FOLLOW)
4007 how |= LOOKUP_FOLLOW;
Jeff Layton442e31c2012-12-20 16:15:38 -05004008retry:
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05304009 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04004011 return error;
4012
Jeff Layton442e31c2012-12-20 16:15:38 -05004013 new_dentry = user_path_create(newdfd, newname, &new_path,
4014 (how & LOOKUP_REVAL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07004016 if (IS_ERR(new_dentry))
Al Virodae6ad82011-06-26 11:50:15 -04004017 goto out;
4018
4019 error = -EXDEV;
4020 if (old_path.mnt != new_path.mnt)
4021 goto out_dput;
Kees Cook800179c2012-07-25 17:29:07 -07004022 error = may_linkat(&old_path);
4023 if (unlikely(error))
4024 goto out_dput;
Al Virodae6ad82011-06-26 11:50:15 -04004025 error = security_path_link(old_path.dentry, &new_path, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004026 if (error)
Al Viroa8104a92012-07-20 02:25:00 +04004027 goto out_dput;
J. Bruce Fields146a8592011-09-20 17:14:31 -04004028 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry, &delegated_inode);
Dave Hansen75c3f292008-02-15 14:37:45 -08004029out_dput:
Al Viro921a1652012-07-20 01:15:31 +04004030 done_path_create(&new_path, new_dentry);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004031 if (delegated_inode) {
4032 error = break_deleg_wait(&delegated_inode);
Oleg Drokind22e6332014-01-31 15:41:58 -05004033 if (!error) {
4034 path_put(&old_path);
J. Bruce Fields146a8592011-09-20 17:14:31 -04004035 goto retry;
Oleg Drokind22e6332014-01-31 15:41:58 -05004036 }
J. Bruce Fields146a8592011-09-20 17:14:31 -04004037 }
Jeff Layton442e31c2012-12-20 16:15:38 -05004038 if (retry_estale(error, how)) {
Oleg Drokind22e6332014-01-31 15:41:58 -05004039 path_put(&old_path);
Jeff Layton442e31c2012-12-20 16:15:38 -05004040 how |= LOOKUP_REVAL;
4041 goto retry;
4042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043out:
Al Viro2d8f3032008-07-22 09:59:21 -04004044 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045
4046 return error;
4047}
4048
Heiko Carstens3480b252009-01-14 14:14:16 +01004049SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004050{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08004051 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004052}
4053
Miklos Szeredibc270272014-04-01 17:08:42 +02004054/**
4055 * vfs_rename - rename a filesystem object
4056 * @old_dir: parent of source
4057 * @old_dentry: source
4058 * @new_dir: parent of destination
4059 * @new_dentry: destination
4060 * @delegated_inode: returns an inode needing a delegation break
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004061 * @flags: rename flags
Miklos Szeredibc270272014-04-01 17:08:42 +02004062 *
4063 * The caller must hold multiple mutexes--see lock_rename()).
4064 *
4065 * If vfs_rename discovers a delegation in need of breaking at either
4066 * the source or destination, it will return -EWOULDBLOCK and return a
4067 * reference to the inode in delegated_inode. The caller should then
4068 * break the delegation and retry. Because breaking a delegation may
4069 * take a long time, the caller should drop all locks before doing
4070 * so.
4071 *
4072 * Alternatively, a caller may pass NULL for delegated_inode. This may
4073 * be appropriate for callers that expect the underlying filesystem not
4074 * to be NFS exported.
4075 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076 * The worst of all namespace operations - renaming directory. "Perverted"
4077 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
4078 * Problems:
J. Bruce Fieldsd03b29a2014-02-17 16:52:33 -05004079 * a) we can get into loop creation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 * b) race potential - two innocent renames can create a loop together.
4081 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004082 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 * story.
J. Bruce Fields6cedba82012-03-05 11:40:41 -05004084 * c) we have to lock _four_ objects - parents and victim (if it exists),
4085 * and source (if it is not a directory).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004086 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 * whether the target exists). Solution: try to be smart with locking
4088 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004089 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090 * move will be locked. Thus we can rank directories by the tree
4091 * (ancestors first) and rank all non-directories after them.
4092 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08004093 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 * HOWEVER, it relies on the assumption that any object with ->lookup()
4095 * has no more than 1 dentry. If "hybrid" objects will ever appear,
4096 * we'd better make sure that there's no link(2) for them.
Sage Weile4eaac02011-05-24 13:06:07 -07004097 * d) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08004098 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05004100 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 * locking].
4102 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004104 struct inode *new_dir, struct dentry *new_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004105 struct inode **delegated_inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106{
4107 int error;
Miklos Szeredibc270272014-04-01 17:08:42 +02004108 bool is_dir = d_is_dir(old_dentry);
Eric Paris59b0df22010-02-08 12:53:52 -05004109 const unsigned char *old_name;
Miklos Szeredibc270272014-04-01 17:08:42 +02004110 struct inode *source = old_dentry->d_inode;
4111 struct inode *target = new_dentry->d_inode;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004112 bool new_is_dir = false;
4113 unsigned max_links = new_dir->i_sb->s_max_links;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114
Miklos Szeredibc270272014-04-01 17:08:42 +02004115 if (source == target)
4116 return 0;
4117
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 error = may_delete(old_dir, old_dentry, is_dir);
4119 if (error)
4120 return error;
4121
Miklos Szeredida1ce062014-04-01 17:08:43 +02004122 if (!target) {
Miklos Szeredia95164d2008-07-30 15:08:48 +02004123 error = may_create(new_dir, new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004124 } else {
4125 new_is_dir = d_is_dir(new_dentry);
4126
4127 if (!(flags & RENAME_EXCHANGE))
4128 error = may_delete(new_dir, new_dentry, is_dir);
4129 else
4130 error = may_delete(new_dir, new_dentry, new_is_dir);
4131 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132 if (error)
4133 return error;
4134
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004135 if (!old_dir->i_op->rename && !old_dir->i_op->rename2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 return -EPERM;
4137
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004138 if (flags && !old_dir->i_op->rename2)
4139 return -EINVAL;
4140
Miklos Szeredibc270272014-04-01 17:08:42 +02004141 /*
4142 * If we are going to change the parent - check write permissions,
4143 * we'll need to flip '..'.
4144 */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004145 if (new_dir != old_dir) {
4146 if (is_dir) {
4147 error = inode_permission(source, MAY_WRITE);
4148 if (error)
4149 return error;
4150 }
4151 if ((flags & RENAME_EXCHANGE) && new_is_dir) {
4152 error = inode_permission(target, MAY_WRITE);
4153 if (error)
4154 return error;
4155 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004156 }
Robert Love0eeca282005-07-12 17:06:03 -04004157
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004158 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry,
4159 flags);
Miklos Szeredibc270272014-04-01 17:08:42 +02004160 if (error)
4161 return error;
4162
4163 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
4164 dget(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004165 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004166 lock_two_nondirectories(source, target);
4167 else if (target)
4168 mutex_lock(&target->i_mutex);
4169
4170 error = -EBUSY;
Eric W. Biederman7af13642013-10-04 19:15:13 -07004171 if (is_local_mountpoint(old_dentry) || is_local_mountpoint(new_dentry))
Miklos Szeredibc270272014-04-01 17:08:42 +02004172 goto out;
4173
Miklos Szeredida1ce062014-04-01 17:08:43 +02004174 if (max_links && new_dir != old_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004175 error = -EMLINK;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004176 if (is_dir && !new_is_dir && new_dir->i_nlink >= max_links)
Miklos Szeredibc270272014-04-01 17:08:42 +02004177 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004178 if ((flags & RENAME_EXCHANGE) && !is_dir && new_is_dir &&
4179 old_dir->i_nlink >= max_links)
4180 goto out;
4181 }
4182 if (is_dir && !(flags & RENAME_EXCHANGE) && target)
4183 shrink_dcache_parent(new_dentry);
4184 if (!is_dir) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004185 error = try_break_deleg(source, delegated_inode);
4186 if (error)
4187 goto out;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004188 }
4189 if (target && !new_is_dir) {
4190 error = try_break_deleg(target, delegated_inode);
4191 if (error)
4192 goto out;
Miklos Szeredibc270272014-04-01 17:08:42 +02004193 }
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004194 if (!old_dir->i_op->rename2) {
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004195 error = old_dir->i_op->rename(old_dir, old_dentry,
4196 new_dir, new_dentry);
4197 } else {
Miklos Szeredi7177a9c2014-07-23 15:15:30 +02004198 WARN_ON(old_dir->i_op->rename != NULL);
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004199 error = old_dir->i_op->rename2(old_dir, old_dentry,
4200 new_dir, new_dentry, flags);
4201 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004202 if (error)
4203 goto out;
4204
Miklos Szeredida1ce062014-04-01 17:08:43 +02004205 if (!(flags & RENAME_EXCHANGE) && target) {
Miklos Szeredibc270272014-04-01 17:08:42 +02004206 if (is_dir)
4207 target->i_flags |= S_DEAD;
4208 dont_mount(new_dentry);
Eric W. Biederman8ed936b2013-10-01 18:33:48 -07004209 detach_mounts(new_dentry);
Miklos Szeredibc270272014-04-01 17:08:42 +02004210 }
Miklos Szeredida1ce062014-04-01 17:08:43 +02004211 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE)) {
4212 if (!(flags & RENAME_EXCHANGE))
4213 d_move(old_dentry, new_dentry);
4214 else
4215 d_exchange(old_dentry, new_dentry);
4216 }
Miklos Szeredibc270272014-04-01 17:08:42 +02004217out:
Miklos Szeredida1ce062014-04-01 17:08:43 +02004218 if (!is_dir || (flags & RENAME_EXCHANGE))
Miklos Szeredibc270272014-04-01 17:08:42 +02004219 unlock_two_nondirectories(source, target);
4220 else if (target)
4221 mutex_unlock(&target->i_mutex);
4222 dput(new_dentry);
Miklos Szeredida1ce062014-04-01 17:08:43 +02004223 if (!error) {
Al Viro123df292009-12-25 04:57:57 -05004224 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Miklos Szeredida1ce062014-04-01 17:08:43 +02004225 !(flags & RENAME_EXCHANGE) ? target : NULL, old_dentry);
4226 if (flags & RENAME_EXCHANGE) {
4227 fsnotify_move(new_dir, old_dir, old_dentry->d_name.name,
4228 new_is_dir, NULL, new_dentry);
4229 }
4230 }
Robert Love0eeca282005-07-12 17:06:03 -04004231 fsnotify_oldname_free(old_name);
4232
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 return error;
4234}
Al Viro4d359502014-03-14 12:20:17 -04004235EXPORT_SYMBOL(vfs_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004237SYSCALL_DEFINE5(renameat2, int, olddfd, const char __user *, oldname,
4238 int, newdfd, const char __user *, newname, unsigned int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239{
Al Viro2ad94ae2008-07-21 09:32:51 -04004240 struct dentry *old_dir, *new_dir;
4241 struct dentry *old_dentry, *new_dentry;
4242 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243 struct nameidata oldnd, newnd;
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004244 struct inode *delegated_inode = NULL;
Jeff Layton91a27b22012-10-10 15:25:28 -04004245 struct filename *from;
4246 struct filename *to;
Jeff Laytonc6a94282012-12-11 12:10:10 -05004247 unsigned int lookup_flags = 0;
4248 bool should_retry = false;
Al Viro2ad94ae2008-07-21 09:32:51 -04004249 int error;
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004250
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004251 if (flags & ~(RENAME_NOREPLACE | RENAME_EXCHANGE | RENAME_WHITEOUT))
Miklos Szeredida1ce062014-04-01 17:08:43 +02004252 return -EINVAL;
4253
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004254 if ((flags & (RENAME_NOREPLACE | RENAME_WHITEOUT)) &&
4255 (flags & RENAME_EXCHANGE))
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004256 return -EINVAL;
4257
Miklos Szeredi0d7a8552014-10-24 00:14:37 +02004258 if ((flags & RENAME_WHITEOUT) && !capable(CAP_MKNOD))
4259 return -EPERM;
4260
Jeff Laytonc6a94282012-12-11 12:10:10 -05004261retry:
4262 from = user_path_parent(olddfd, oldname, &oldnd, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004263 if (IS_ERR(from)) {
4264 error = PTR_ERR(from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 goto exit;
Jeff Layton91a27b22012-10-10 15:25:28 -04004266 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267
Jeff Laytonc6a94282012-12-11 12:10:10 -05004268 to = user_path_parent(newdfd, newname, &newnd, lookup_flags);
Jeff Layton91a27b22012-10-10 15:25:28 -04004269 if (IS_ERR(to)) {
4270 error = PTR_ERR(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271 goto exit1;
Jeff Layton91a27b22012-10-10 15:25:28 -04004272 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273
4274 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08004275 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 goto exit2;
4277
Jan Blunck4ac91372008-02-14 19:34:32 -08004278 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004279 error = -EBUSY;
4280 if (oldnd.last_type != LAST_NORM)
4281 goto exit2;
4282
Jan Blunck4ac91372008-02-14 19:34:32 -08004283 new_dir = newnd.path.dentry;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004284 if (flags & RENAME_NOREPLACE)
4285 error = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286 if (newnd.last_type != LAST_NORM)
4287 goto exit2;
4288
Jan Karac30dabf2012-06-12 16:20:30 +02004289 error = mnt_want_write(oldnd.path.mnt);
4290 if (error)
4291 goto exit2;
4292
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09004293 oldnd.flags &= ~LOOKUP_PARENT;
4294 newnd.flags &= ~LOOKUP_PARENT;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004295 if (!(flags & RENAME_EXCHANGE))
4296 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09004297
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004298retry_deleg:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 trap = lock_rename(new_dir, old_dir);
4300
Christoph Hellwig49705b72005-11-08 21:35:06 -08004301 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302 error = PTR_ERR(old_dentry);
4303 if (IS_ERR(old_dentry))
4304 goto exit3;
4305 /* source must exist */
4306 error = -ENOENT;
David Howellsb18825a2013-09-12 19:22:53 +01004307 if (d_is_negative(old_dentry))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004308 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08004309 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 error = PTR_ERR(new_dentry);
4311 if (IS_ERR(new_dentry))
4312 goto exit4;
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004313 error = -EEXIST;
4314 if ((flags & RENAME_NOREPLACE) && d_is_positive(new_dentry))
4315 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004316 if (flags & RENAME_EXCHANGE) {
4317 error = -ENOENT;
4318 if (d_is_negative(new_dentry))
4319 goto exit5;
4320
4321 if (!d_is_dir(new_dentry)) {
4322 error = -ENOTDIR;
4323 if (newnd.last.name[newnd.last.len])
4324 goto exit5;
4325 }
4326 }
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004327 /* unless the source is a directory trailing slashes give -ENOTDIR */
4328 if (!d_is_dir(old_dentry)) {
4329 error = -ENOTDIR;
4330 if (oldnd.last.name[oldnd.last.len])
4331 goto exit5;
Miklos Szeredida1ce062014-04-01 17:08:43 +02004332 if (!(flags & RENAME_EXCHANGE) && newnd.last.name[newnd.last.len])
Miklos Szeredi0a7c3932014-04-01 17:08:43 +02004333 goto exit5;
4334 }
4335 /* source should not be ancestor of target */
4336 error = -EINVAL;
4337 if (old_dentry == trap)
4338 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339 /* target should not be an ancestor of source */
Miklos Szeredida1ce062014-04-01 17:08:43 +02004340 if (!(flags & RENAME_EXCHANGE))
4341 error = -ENOTEMPTY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342 if (new_dentry == trap)
4343 goto exit5;
4344
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004345 error = security_path_rename(&oldnd.path, old_dentry,
Miklos Szeredi0b3974e2014-04-01 17:08:43 +02004346 &newnd.path, new_dentry, flags);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09004347 if (error)
Jan Karac30dabf2012-06-12 16:20:30 +02004348 goto exit5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 error = vfs_rename(old_dir->d_inode, old_dentry,
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004350 new_dir->d_inode, new_dentry,
4351 &delegated_inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352exit5:
4353 dput(new_dentry);
4354exit4:
4355 dput(old_dentry);
4356exit3:
4357 unlock_rename(new_dir, old_dir);
J. Bruce Fields8e6d7822011-09-20 16:59:58 -04004358 if (delegated_inode) {
4359 error = break_deleg_wait(&delegated_inode);
4360 if (!error)
4361 goto retry_deleg;
4362 }
Jan Karac30dabf2012-06-12 16:20:30 +02004363 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364exit2:
Jeff Laytonc6a94282012-12-11 12:10:10 -05004365 if (retry_estale(error, lookup_flags))
4366 should_retry = true;
Jan Blunck1d957f92008-02-14 19:34:35 -08004367 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04004368 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08004370 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 putname(from);
Jeff Laytonc6a94282012-12-11 12:10:10 -05004372 if (should_retry) {
4373 should_retry = false;
4374 lookup_flags |= LOOKUP_REVAL;
4375 goto retry;
4376 }
Al Viro2ad94ae2008-07-21 09:32:51 -04004377exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004378 return error;
4379}
4380
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004381SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4382 int, newdfd, const char __user *, newname)
4383{
4384 return sys_renameat2(olddfd, oldname, newdfd, newname, 0);
4385}
4386
Heiko Carstensa26eab22009-01-14 14:14:17 +01004387SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004388{
Miklos Szeredi520c8b12014-04-01 17:08:42 +02004389 return sys_renameat2(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08004390}
4391
Miklos Szeredi787fb6b2014-10-24 00:14:36 +02004392int vfs_whiteout(struct inode *dir, struct dentry *dentry)
4393{
4394 int error = may_create(dir, dentry);
4395 if (error)
4396 return error;
4397
4398 if (!dir->i_op->mknod)
4399 return -EPERM;
4400
4401 return dir->i_op->mknod(dir, dentry,
4402 S_IFCHR | WHITEOUT_MODE, WHITEOUT_DEV);
4403}
4404EXPORT_SYMBOL(vfs_whiteout);
4405
Al Viro5d826c82014-03-14 13:42:45 -04004406int readlink_copy(char __user *buffer, int buflen, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407{
Al Viro5d826c82014-03-14 13:42:45 -04004408 int len = PTR_ERR(link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004409 if (IS_ERR(link))
4410 goto out;
4411
4412 len = strlen(link);
4413 if (len > (unsigned) buflen)
4414 len = buflen;
4415 if (copy_to_user(buffer, link, len))
4416 len = -EFAULT;
4417out:
4418 return len;
4419}
Al Viro5d826c82014-03-14 13:42:45 -04004420EXPORT_SYMBOL(readlink_copy);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421
4422/*
4423 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
4424 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
4425 * using) it for any given inode is up to filesystem.
4426 */
4427int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4428{
4429 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004430 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07004431 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004432
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004434 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07004435 if (IS_ERR(cookie))
4436 return PTR_ERR(cookie);
4437
Al Viro5d826c82014-03-14 13:42:45 -04004438 res = readlink_copy(buffer, buflen, nd_get_link(&nd));
Marcin Slusarz694a1762008-06-09 16:40:37 -07004439 if (dentry->d_inode->i_op->put_link)
4440 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
4441 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442}
Al Viro4d359502014-03-14 12:20:17 -04004443EXPORT_SYMBOL(generic_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004444
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445/* get the link contents into pagecache */
4446static char *page_getlink(struct dentry * dentry, struct page **ppage)
4447{
Duane Griffinebd09ab2008-12-19 20:47:12 +00004448 char *kaddr;
4449 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004450 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07004451 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07004453 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004454 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00004455 kaddr = kmap(page);
4456 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
4457 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458}
4459
4460int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4461{
4462 struct page *page = NULL;
Al Viro5d826c82014-03-14 13:42:45 -04004463 int res = readlink_copy(buffer, buflen, page_getlink(dentry, &page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004464 if (page) {
4465 kunmap(page);
4466 page_cache_release(page);
4467 }
4468 return res;
4469}
Al Viro4d359502014-03-14 12:20:17 -04004470EXPORT_SYMBOL(page_readlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004472void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004473{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004474 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004475 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004476 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477}
Al Viro4d359502014-03-14 12:20:17 -04004478EXPORT_SYMBOL(page_follow_link_light);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004479
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004480void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07004482 struct page *page = cookie;
4483
4484 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485 kunmap(page);
4486 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487 }
4488}
Al Viro4d359502014-03-14 12:20:17 -04004489EXPORT_SYMBOL(page_put_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490
Nick Piggin54566b22009-01-04 12:00:53 -08004491/*
4492 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4493 */
4494int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004495{
4496 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004497 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07004498 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08004499 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08004501 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4502 if (nofs)
4503 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504
NeilBrown7e53cac2006-03-25 03:07:57 -08004505retry:
Nick Pigginafddba42007-10-16 01:25:01 -07004506 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08004507 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07004509 goto fail;
4510
Cong Wange8e3c3d2011-11-25 23:14:27 +08004511 kaddr = kmap_atomic(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 memcpy(kaddr, symname, len-1);
Cong Wange8e3c3d2011-11-25 23:14:27 +08004513 kunmap_atomic(kaddr);
Nick Pigginafddba42007-10-16 01:25:01 -07004514
4515 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4516 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004517 if (err < 0)
4518 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07004519 if (err < len-1)
4520 goto retry;
4521
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522 mark_inode_dirty(inode);
4523 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524fail:
4525 return err;
4526}
Al Viro4d359502014-03-14 12:20:17 -04004527EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004529int page_symlink(struct inode *inode, const char *symname, int len)
4530{
4531 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08004532 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004533}
Al Viro4d359502014-03-14 12:20:17 -04004534EXPORT_SYMBOL(page_symlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08004535
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08004536const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537 .readlink = generic_readlink,
4538 .follow_link = page_follow_link_light,
4539 .put_link = page_put_link,
4540};
Linus Torvalds1da177e2005-04-16 15:20:36 -07004541EXPORT_SYMBOL(page_symlink_inode_operations);