blob: d0066e17d45daac9e8f7e9651cd7f4526066b0a8 [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>
18#include <linux/module.h>
19#include <linux/slab.h>
20#include <linux/fs.h>
21#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/pagemap.h>
Robert Love0eeca282005-07-12 17:06:03 -040023#include <linux/fsnotify.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/personality.h>
25#include <linux/security.h>
Mimi Zohar6146f0d2009-02-04 09:06:57 -050026#include <linux/ima.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/syscalls.h>
28#include <linux/mount.h>
29#include <linux/audit.h>
Randy Dunlap16f7e0f2006-01-11 12:17:46 -080030#include <linux/capability.h>
Trond Myklebust834f2a42005-10-18 14:20:16 -070031#include <linux/file.h>
Ulrich Drepper5590ff02006-01-18 17:43:53 -080032#include <linux/fcntl.h>
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -070033#include <linux/device_cgroup.h>
Al Viro5ad4e532009-03-29 19:50:06 -040034#include <linux/fs_struct.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <asm/uaccess.h>
36
Eric Parise81e3f42009-12-04 15:47:36 -050037#include "internal.h"
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/* [Feb-1997 T. Schoebel-Theuer]
40 * Fundamental changes in the pathname lookup mechanisms (namei)
41 * were necessary because of omirr. The reason is that omirr needs
42 * to know the _real_ pathname, not the user-supplied one, in case
43 * of symlinks (and also when transname replacements occur).
44 *
45 * The new code replaces the old recursive symlink resolution with
46 * an iterative one (in case of non-nested symlink chains). It does
47 * this with calls to <fs>_follow_link().
48 * As a side effect, dir_namei(), _namei() and follow_link() are now
49 * replaced with a single function lookup_dentry() that can handle all
50 * the special cases of the former code.
51 *
52 * With the new dcache, the pathname is stored at each inode, at least as
53 * long as the refcount of the inode is positive. As a side effect, the
54 * size of the dcache depends on the inode cache and thus is dynamic.
55 *
56 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
57 * resolution to correspond with current state of the code.
58 *
59 * Note that the symlink resolution is not *completely* iterative.
60 * There is still a significant amount of tail- and mid- recursion in
61 * the algorithm. Also, note that <fs>_readlink() is not used in
62 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
63 * may return different results than <fs>_follow_link(). Many virtual
64 * filesystems (including /proc) exhibit this behavior.
65 */
66
67/* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
68 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
69 * and the name already exists in form of a symlink, try to create the new
70 * name indicated by the symlink. The old code always complained that the
71 * name already exists, due to not following the symlink even if its target
72 * is nonexistent. The new semantics affects also mknod() and link() when
73 * the name is a symlink pointing to a non-existant name.
74 *
75 * I don't know which semantics is the right one, since I have no access
76 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
77 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
78 * "old" one. Personally, I think the new semantics is much more logical.
79 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
80 * file does succeed in both HP-UX and SunOs, but not in Solaris
81 * and in the old Linux semantics.
82 */
83
84/* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
85 * semantics. See the comments in "open_namei" and "do_link" below.
86 *
87 * [10-Sep-98 Alan Modra] Another symlink change.
88 */
89
90/* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
91 * inside the path - always follow.
92 * in the last component in creation/removal/renaming - never follow.
93 * if LOOKUP_FOLLOW passed - follow.
94 * if the pathname has trailing slashes - follow.
95 * otherwise - don't follow.
96 * (applied in that order).
97 *
98 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
99 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
100 * During the 2.4 we need to fix the userland stuff depending on it -
101 * hopefully we will be able to get rid of that wart in 2.5. So far only
102 * XEmacs seems to be relying on it...
103 */
104/*
105 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
Arjan van de Vena11f3a02006-03-23 03:00:33 -0800106 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * any extra contention...
108 */
109
110/* In order to reduce some races, while at the same time doing additional
111 * checking and hopefully speeding things up, we copy filenames to the
112 * kernel data space before using them..
113 *
114 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
115 * PATH_MAX includes the nul terminator --RR.
116 */
Arjan van de Ven858119e2006-01-14 13:20:43 -0800117static int do_getname(const char __user *filename, char *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
119 int retval;
120 unsigned long len = PATH_MAX;
121
122 if (!segment_eq(get_fs(), KERNEL_DS)) {
123 if ((unsigned long) filename >= TASK_SIZE)
124 return -EFAULT;
125 if (TASK_SIZE - (unsigned long) filename < PATH_MAX)
126 len = TASK_SIZE - (unsigned long) filename;
127 }
128
129 retval = strncpy_from_user(page, filename, len);
130 if (retval > 0) {
131 if (retval < len)
132 return 0;
133 return -ENAMETOOLONG;
134 } else if (!retval)
135 retval = -ENOENT;
136 return retval;
137}
138
Al Virof52e0c12011-03-14 18:56:51 -0400139static char *getname_flags(const char __user * filename, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 char *tmp, *result;
142
143 result = ERR_PTR(-ENOMEM);
144 tmp = __getname();
145 if (tmp) {
146 int retval = do_getname(filename, tmp);
147
148 result = tmp;
149 if (retval < 0) {
Al Virof52e0c12011-03-14 18:56:51 -0400150 if (retval != -ENOENT || !(flags & LOOKUP_EMPTY)) {
151 __putname(tmp);
152 result = ERR_PTR(retval);
153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 }
155 }
156 audit_getname(result);
157 return result;
158}
159
Al Virof52e0c12011-03-14 18:56:51 -0400160char *getname(const char __user * filename)
161{
162 return getname_flags(filename, 0);
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165#ifdef CONFIG_AUDITSYSCALL
166void putname(const char *name)
167{
Al Viro5ac3a9c2006-07-16 06:38:45 -0400168 if (unlikely(!audit_dummy_context()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 audit_putname(name);
170 else
171 __putname(name);
172}
173EXPORT_SYMBOL(putname);
174#endif
175
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700176/*
177 * This does basic POSIX ACL permission checking
178 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100179static int acl_permission_check(struct inode *inode, int mask, unsigned int flags,
180 int (*check_acl)(struct inode *inode, int mask, unsigned int flags))
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700181{
182 umode_t mode = inode->i_mode;
183
184 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
185
Serge E. Hallyne795b712011-03-23 16:43:25 -0700186 if (current_user_ns() != inode_userns(inode))
187 goto other_perms;
188
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700189 if (current_fsuid() == inode->i_uid)
190 mode >>= 6;
191 else {
192 if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
Nick Pigginb74c79e2011-01-07 17:49:58 +1100193 int error = check_acl(inode, mask, flags);
194 if (error != -EAGAIN)
195 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700196 }
197
198 if (in_group_p(inode->i_gid))
199 mode >>= 3;
200 }
201
Serge E. Hallyne795b712011-03-23 16:43:25 -0700202other_perms:
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700203 /*
204 * If the DACs are ok we don't need any capability check.
205 */
206 if ((mask & ~mode) == 0)
207 return 0;
208 return -EACCES;
209}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
211/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100212 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 * @inode: inode to check access rights for
214 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
215 * @check_acl: optional callback to check for Posix ACLs
Randy Dunlap39191622011-01-08 19:36:21 -0800216 * @flags: IPERM_FLAG_ flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 *
218 * Used to check for read/write/execute permissions on a file.
219 * We use "fsuid" for this, letting us set arbitrary permissions
220 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100221 * are used for other things.
222 *
223 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
224 * request cannot be satisfied (eg. requires blocking or too much complexity).
225 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100227int generic_permission(struct inode *inode, int mask, unsigned int flags,
228 int (*check_acl)(struct inode *inode, int mask, unsigned int flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700230 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 /*
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700233 * Do the basic POSIX ACL permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100235 ret = acl_permission_check(inode, mask, flags, check_acl);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700236 if (ret != -EACCES)
237 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 /*
240 * Read/write DACs are always overridable.
241 * Executable DACs are overridable if at least one exec bit is set.
242 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200243 if (!(mask & MAY_EXEC) || execute_ok(inode))
Serge E. Hallyne795b712011-03-23 16:43:25 -0700244 if (ns_capable(inode_userns(inode), CAP_DAC_OVERRIDE))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 return 0;
246
247 /*
248 * Searching includes executable on directories, else just read.
249 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600250 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
Serge E. Hallyne795b712011-03-23 16:43:25 -0700252 if (ns_capable(inode_userns(inode), CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 return 0;
254
255 return -EACCES;
256}
257
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200258/**
259 * inode_permission - check for access rights to a given inode
260 * @inode: inode to check permission on
261 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
262 *
263 * Used to check for read/write/execute permissions on an inode.
264 * We use "fsuid" for this, letting us set arbitrary permissions
265 * for filesystem access without changing the "normal" uids which
266 * are used for other things.
267 */
Al Virof419a2e2008-07-22 00:07:17 -0400268int inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269{
Al Viroe6305c42008-07-15 21:03:57 -0400270 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 if (mask & MAY_WRITE) {
Miklos Szeredi22590e42007-10-16 23:27:08 -0700273 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
275 /*
276 * Nobody gets write access to a read-only fs.
277 */
278 if (IS_RDONLY(inode) &&
279 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
280 return -EROFS;
281
282 /*
283 * Nobody gets write access to an immutable file.
284 */
285 if (IS_IMMUTABLE(inode))
286 return -EACCES;
287 }
288
Al Viroacfa4382008-12-04 10:06:33 -0500289 if (inode->i_op->permission)
Nick Pigginb74c79e2011-01-07 17:49:58 +1100290 retval = inode->i_op->permission(inode, mask, 0);
Miklos Szeredif696a362008-07-31 13:41:58 +0200291 else
Nick Pigginb74c79e2011-01-07 17:49:58 +1100292 retval = generic_permission(inode, mask, 0,
293 inode->i_op->check_acl);
Miklos Szeredif696a362008-07-31 13:41:58 +0200294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if (retval)
296 return retval;
297
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700298 retval = devcgroup_inode_permission(inode, mask);
299 if (retval)
300 return retval;
301
Eric Parisd09ca732010-07-23 11:43:57 -0400302 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800305/**
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800306 * file_permission - check for additional access rights to a given file
307 * @file: file to check access rights for
308 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
309 *
310 * Used to check for read/write/execute permissions on an already opened
311 * file.
312 *
313 * Note:
314 * Do not use this function in new code. All access checks should
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200315 * be done using inode_permission().
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800316 */
317int file_permission(struct file *file, int mask)
318{
Al Virof419a2e2008-07-22 00:07:17 -0400319 return inode_permission(file->f_path.dentry->d_inode, mask);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800320}
321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322/*
323 * get_write_access() gets write permission for a file.
324 * put_write_access() releases this write permission.
325 * This is used for regular files.
326 * We cannot support write (and maybe mmap read-write shared) accesses and
327 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
328 * can have the following values:
329 * 0: no writers, no VM_DENYWRITE mappings
330 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
331 * > 0: (i_writecount) users are writing to the file.
332 *
333 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
334 * except for the cases where we don't hold i_writecount yet. Then we need to
335 * use {get,deny}_write_access() - these functions check the sign and refuse
336 * to do the change if sign is wrong. Exclusion between them is provided by
337 * the inode->i_lock spinlock.
338 */
339
340int get_write_access(struct inode * inode)
341{
342 spin_lock(&inode->i_lock);
343 if (atomic_read(&inode->i_writecount) < 0) {
344 spin_unlock(&inode->i_lock);
345 return -ETXTBSY;
346 }
347 atomic_inc(&inode->i_writecount);
348 spin_unlock(&inode->i_lock);
349
350 return 0;
351}
352
353int deny_write_access(struct file * file)
354{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800355 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 spin_lock(&inode->i_lock);
358 if (atomic_read(&inode->i_writecount) > 0) {
359 spin_unlock(&inode->i_lock);
360 return -ETXTBSY;
361 }
362 atomic_dec(&inode->i_writecount);
363 spin_unlock(&inode->i_lock);
364
365 return 0;
366}
367
Jan Blunck1d957f92008-02-14 19:34:35 -0800368/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800369 * path_get - get a reference to a path
370 * @path: path to get the reference to
371 *
372 * Given a path increment the reference count to the dentry and the vfsmount.
373 */
374void path_get(struct path *path)
375{
376 mntget(path->mnt);
377 dget(path->dentry);
378}
379EXPORT_SYMBOL(path_get);
380
381/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800382 * path_put - put a reference to a path
383 * @path: path to put the reference to
384 *
385 * Given a path decrement the reference count to the dentry and the vfsmount.
386 */
387void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Jan Blunck1d957f92008-02-14 19:34:35 -0800389 dput(path->dentry);
390 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
Jan Blunck1d957f92008-02-14 19:34:35 -0800392EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Trond Myklebust834f2a42005-10-18 14:20:16 -0700394/**
Nick Piggin31e6b012011-01-07 17:49:52 +1100395 * nameidata_drop_rcu - drop this nameidata out of rcu-walk
396 * @nd: nameidata pathwalk data to drop
Randy Dunlap39191622011-01-08 19:36:21 -0800397 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100398 *
399 * Path walking has 2 modes, rcu-walk and ref-walk (see
400 * Documentation/filesystems/path-lookup.txt). __drop_rcu* functions attempt
401 * to drop out of rcu-walk mode and take normal reference counts on dentries
402 * and vfsmounts to transition to rcu-walk mode. __drop_rcu* functions take
403 * refcounts at the last known good point before rcu-walk got stuck, so
404 * ref-walk may continue from there. If this is not successful (eg. a seqcount
405 * has changed), then failure is returned and path walk restarts from the
406 * beginning in ref-walk mode.
407 *
408 * nameidata_drop_rcu attempts to drop the current nd->path and nd->root into
409 * ref-walk. Must be called from rcu-walk context.
410 */
411static int nameidata_drop_rcu(struct nameidata *nd)
412{
413 struct fs_struct *fs = current->fs;
414 struct dentry *dentry = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500415 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100416
417 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500418 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
419 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100420 spin_lock(&fs->lock);
421 if (nd->root.mnt != fs->root.mnt ||
422 nd->root.dentry != fs->root.dentry)
423 goto err_root;
424 }
425 spin_lock(&dentry->d_lock);
426 if (!__d_rcu_to_refcount(dentry, nd->seq))
427 goto err;
428 BUG_ON(nd->inode != dentry->d_inode);
429 spin_unlock(&dentry->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500430 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100431 path_get(&nd->root);
432 spin_unlock(&fs->lock);
433 }
434 mntget(nd->path.mnt);
435
436 rcu_read_unlock();
437 br_read_unlock(vfsmount_lock);
438 nd->flags &= ~LOOKUP_RCU;
439 return 0;
440err:
441 spin_unlock(&dentry->d_lock);
442err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500443 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100444 spin_unlock(&fs->lock);
445 return -ECHILD;
446}
447
448/* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing. */
449static inline int nameidata_drop_rcu_maybe(struct nameidata *nd)
450{
451 if (nd->flags & LOOKUP_RCU)
452 return nameidata_drop_rcu(nd);
453 return 0;
454}
455
456/**
457 * nameidata_dentry_drop_rcu - drop nameidata and dentry out of rcu-walk
458 * @nd: nameidata pathwalk data to drop
459 * @dentry: dentry to drop
Randy Dunlap39191622011-01-08 19:36:21 -0800460 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100461 *
462 * nameidata_dentry_drop_rcu attempts to drop the current nd->path and nd->root,
463 * and dentry into ref-walk. @dentry must be a path found by a do_lookup call on
464 * @nd. Must be called from rcu-walk context.
465 */
466static int nameidata_dentry_drop_rcu(struct nameidata *nd, struct dentry *dentry)
467{
468 struct fs_struct *fs = current->fs;
469 struct dentry *parent = nd->path.dentry;
Al Viro5b6ca022011-03-09 23:04:47 -0500470 int want_root = 0;
Nick Piggin31e6b012011-01-07 17:49:52 +1100471
472 BUG_ON(!(nd->flags & LOOKUP_RCU));
Al Viro5b6ca022011-03-09 23:04:47 -0500473 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
474 want_root = 1;
Nick Piggin31e6b012011-01-07 17:49:52 +1100475 spin_lock(&fs->lock);
476 if (nd->root.mnt != fs->root.mnt ||
477 nd->root.dentry != fs->root.dentry)
478 goto err_root;
479 }
480 spin_lock(&parent->d_lock);
481 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
482 if (!__d_rcu_to_refcount(dentry, nd->seq))
483 goto err;
484 /*
485 * If the sequence check on the child dentry passed, then the child has
486 * not been removed from its parent. This means the parent dentry must
487 * be valid and able to take a reference at this point.
488 */
489 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
490 BUG_ON(!parent->d_count);
491 parent->d_count++;
492 spin_unlock(&dentry->d_lock);
493 spin_unlock(&parent->d_lock);
Al Viro5b6ca022011-03-09 23:04:47 -0500494 if (want_root) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100495 path_get(&nd->root);
496 spin_unlock(&fs->lock);
497 }
498 mntget(nd->path.mnt);
499
500 rcu_read_unlock();
501 br_read_unlock(vfsmount_lock);
502 nd->flags &= ~LOOKUP_RCU;
503 return 0;
504err:
505 spin_unlock(&dentry->d_lock);
506 spin_unlock(&parent->d_lock);
507err_root:
Al Viro5b6ca022011-03-09 23:04:47 -0500508 if (want_root)
Nick Piggin31e6b012011-01-07 17:49:52 +1100509 spin_unlock(&fs->lock);
510 return -ECHILD;
511}
512
513/* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing. */
514static inline int nameidata_dentry_drop_rcu_maybe(struct nameidata *nd, struct dentry *dentry)
515{
Al Viroa7472ba2011-03-04 14:39:30 -0500516 if (nd->flags & LOOKUP_RCU) {
517 if (unlikely(nameidata_dentry_drop_rcu(nd, dentry))) {
518 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -0500519 if (!(nd->flags & LOOKUP_ROOT))
520 nd->root.mnt = NULL;
Al Viroa7472ba2011-03-04 14:39:30 -0500521 rcu_read_unlock();
522 br_read_unlock(vfsmount_lock);
523 return -ECHILD;
524 }
525 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100526 return 0;
527}
528
529/**
530 * nameidata_drop_rcu_last - drop nameidata ending path walk out of rcu-walk
531 * @nd: nameidata pathwalk data to drop
Randy Dunlap39191622011-01-08 19:36:21 -0800532 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100533 *
534 * nameidata_drop_rcu_last attempts to drop the current nd->path into ref-walk.
535 * nd->path should be the final element of the lookup, so nd->root is discarded.
536 * Must be called from rcu-walk context.
537 */
538static int nameidata_drop_rcu_last(struct nameidata *nd)
539{
540 struct dentry *dentry = nd->path.dentry;
541
542 BUG_ON(!(nd->flags & LOOKUP_RCU));
543 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -0500544 if (!(nd->flags & LOOKUP_ROOT))
545 nd->root.mnt = NULL;
Nick Piggin31e6b012011-01-07 17:49:52 +1100546 spin_lock(&dentry->d_lock);
547 if (!__d_rcu_to_refcount(dentry, nd->seq))
548 goto err_unlock;
549 BUG_ON(nd->inode != dentry->d_inode);
550 spin_unlock(&dentry->d_lock);
551
552 mntget(nd->path.mnt);
553
554 rcu_read_unlock();
555 br_read_unlock(vfsmount_lock);
556
557 return 0;
558
559err_unlock:
560 spin_unlock(&dentry->d_lock);
561 rcu_read_unlock();
562 br_read_unlock(vfsmount_lock);
563 return -ECHILD;
564}
565
Nick Piggin31e6b012011-01-07 17:49:52 +1100566/**
Trond Myklebust834f2a42005-10-18 14:20:16 -0700567 * release_open_intent - free up open intent resources
568 * @nd: pointer to nameidata
569 */
570void release_open_intent(struct nameidata *nd)
571{
Linus Torvalds2dab5972011-02-11 15:53:38 -0800572 struct file *file = nd->intent.open.file;
573
574 if (file && !IS_ERR(file)) {
575 if (file->f_path.dentry == NULL)
576 put_filp(file);
577 else
578 fput(file);
579 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700580}
581
Al Virof60aef72011-02-15 01:35:28 -0500582static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
Nick Piggin34286d62011-01-07 17:49:57 +1100583{
Al Virof60aef72011-02-15 01:35:28 -0500584 return dentry->d_op->d_revalidate(dentry, nd);
Nick Piggin34286d62011-01-07 17:49:57 +1100585}
586
Al Virof5e1c1c2011-02-15 01:32:55 -0500587static struct dentry *
Ian Kentbcdc5e02006-09-27 01:50:44 -0700588do_revalidate(struct dentry *dentry, struct nameidata *nd)
589{
Al Virof5e1c1c2011-02-15 01:32:55 -0500590 int status = d_revalidate(dentry, nd);
Ian Kentbcdc5e02006-09-27 01:50:44 -0700591 if (unlikely(status <= 0)) {
592 /*
593 * The dentry failed validation.
594 * If d_revalidate returned 0 attempt to invalidate
595 * the dentry otherwise d_revalidate is asking us
596 * to return a fail status.
597 */
Nick Piggin34286d62011-01-07 17:49:57 +1100598 if (status < 0) {
Al Virof5e1c1c2011-02-15 01:32:55 -0500599 dput(dentry);
Nick Piggin34286d62011-01-07 17:49:57 +1100600 dentry = ERR_PTR(status);
Al Virof5e1c1c2011-02-15 01:32:55 -0500601 } else if (!d_invalidate(dentry)) {
602 dput(dentry);
603 dentry = NULL;
Ian Kentbcdc5e02006-09-27 01:50:44 -0700604 }
605 }
606 return dentry;
607}
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609/*
Al Viro16c2cd72011-02-22 15:50:10 -0500610 * handle_reval_path - force revalidation of a dentry
Jeff Layton39159de2009-12-07 12:01:50 -0500611 *
612 * In some situations the path walking code will trust dentries without
613 * revalidating them. This causes problems for filesystems that depend on
614 * d_revalidate to handle file opens (e.g. NFSv4). When FS_REVAL_DOT is set
615 * (which indicates that it's possible for the dentry to go stale), force
616 * a d_revalidate call before proceeding.
617 *
618 * Returns 0 if the revalidation was successful. If the revalidation fails,
619 * either return the error returned by d_revalidate or -ESTALE if the
620 * revalidation it just returned 0. If d_revalidate returns 0, we attempt to
621 * invalidate the dentry. It's up to the caller to handle putting references
622 * to the path if necessary.
623 */
Al Viro16c2cd72011-02-22 15:50:10 -0500624static inline int handle_reval_path(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500625{
Al Viro16c2cd72011-02-22 15:50:10 -0500626 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500627 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500628
Al Viro16c2cd72011-02-22 15:50:10 -0500629 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500630 return 0;
631
Al Viro16c2cd72011-02-22 15:50:10 -0500632 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
633 return 0;
634
635 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
636 return 0;
637
638 /* Note: we do not d_invalidate() */
Nick Piggin34286d62011-01-07 17:49:57 +1100639 status = d_revalidate(dentry, nd);
Jeff Layton39159de2009-12-07 12:01:50 -0500640 if (status > 0)
641 return 0;
642
Al Viro16c2cd72011-02-22 15:50:10 -0500643 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500644 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500645
Jeff Layton39159de2009-12-07 12:01:50 -0500646 return status;
647}
648
649/*
Al Virob75b5082009-12-16 01:01:38 -0500650 * Short-cut version of permission(), for calling on directories
651 * during pathname resolution. Combines parts of permission()
652 * and generic_permission(), and tests ONLY for MAY_EXEC permission.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 *
654 * If appropriate, check DAC only. If not appropriate, or
Al Virob75b5082009-12-16 01:01:38 -0500655 * short-cut DAC fails, then call ->permission() to do more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 * complete permission check.
657 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100658static inline int exec_permission(struct inode *inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700660 int ret;
Serge E. Hallyne795b712011-03-23 16:43:25 -0700661 struct user_namespace *ns = inode_userns(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700663 if (inode->i_op->permission) {
Nick Pigginb74c79e2011-01-07 17:49:58 +1100664 ret = inode->i_op->permission(inode, MAY_EXEC, flags);
665 } else {
666 ret = acl_permission_check(inode, MAY_EXEC, flags,
667 inode->i_op->check_acl);
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700668 }
Nick Pigginb74c79e2011-01-07 17:49:58 +1100669 if (likely(!ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 goto ok;
Nick Pigginb74c79e2011-01-07 17:49:58 +1100671 if (ret == -ECHILD)
Nick Piggin31e6b012011-01-07 17:49:52 +1100672 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Serge E. Hallyne795b712011-03-23 16:43:25 -0700674 if (ns_capable(ns, CAP_DAC_OVERRIDE) ||
675 ns_capable(ns, CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 goto ok;
677
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700678 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679ok:
Nick Pigginb74c79e2011-01-07 17:49:58 +1100680 return security_inode_exec_permission(inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682
Al Viro2a737872009-04-07 11:49:53 -0400683static __always_inline void set_root(struct nameidata *nd)
684{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200685 if (!nd->root.mnt)
686 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400687}
688
Al Viro6de88d72009-08-09 01:41:57 +0400689static int link_path_walk(const char *, struct nameidata *);
690
Nick Piggin31e6b012011-01-07 17:49:52 +1100691static __always_inline void set_root_rcu(struct nameidata *nd)
692{
693 if (!nd->root.mnt) {
694 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100695 unsigned seq;
696
697 do {
698 seq = read_seqcount_begin(&fs->seq);
699 nd->root = fs->root;
700 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100701 }
702}
703
Arjan van de Venf1662352006-01-14 13:21:31 -0800704static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705{
Nick Piggin31e6b012011-01-07 17:49:52 +1100706 int ret;
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (IS_ERR(link))
709 goto fail;
710
711 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400712 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800713 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400714 nd->path = nd->root;
715 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500716 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100718 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100719
Nick Piggin31e6b012011-01-07 17:49:52 +1100720 ret = link_path_walk(link, nd);
721 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800723 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return PTR_ERR(link);
725}
726
Jan Blunck1d957f92008-02-14 19:34:35 -0800727static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700728{
729 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800730 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700731 mntput(path->mnt);
732}
733
Nick Piggin7b9337a2011-01-14 08:42:43 +0000734static inline void path_to_nameidata(const struct path *path,
735 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700736{
Nick Piggin31e6b012011-01-07 17:49:52 +1100737 if (!(nd->flags & LOOKUP_RCU)) {
738 dput(nd->path.dentry);
739 if (nd->path.mnt != path->mnt)
740 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800741 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100742 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800743 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700744}
745
Al Viro574197e2011-03-14 22:20:34 -0400746static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
747{
748 struct inode *inode = link->dentry->d_inode;
749 if (!IS_ERR(cookie) && inode->i_op->put_link)
750 inode->i_op->put_link(link->dentry, nd, cookie);
751 path_put(link);
752}
753
Al Virodef4af32009-12-26 08:37:05 -0500754static __always_inline int
Al Viro574197e2011-03-14 22:20:34 -0400755follow_link(struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800756{
757 int error;
Nick Piggin7b9337a2011-01-14 08:42:43 +0000758 struct dentry *dentry = link->dentry;
Ian Kent051d3812006-03-27 01:14:53 -0800759
Al Viro844a3912011-02-15 00:38:26 -0500760 BUG_ON(nd->flags & LOOKUP_RCU);
761
Al Viro0e794582011-03-16 02:45:02 -0400762 if (link->mnt == nd->path.mnt)
763 mntget(link->mnt);
764
Al Viro574197e2011-03-14 22:20:34 -0400765 if (unlikely(current->total_link_count >= 40)) {
766 *p = ERR_PTR(-ELOOP); /* no ->put_link(), please */
Al Viro574197e2011-03-14 22:20:34 -0400767 path_put(&nd->path);
768 return -ELOOP;
769 }
770 cond_resched();
771 current->total_link_count++;
772
Nick Piggin7b9337a2011-01-14 08:42:43 +0000773 touch_atime(link->mnt, dentry);
Ian Kent051d3812006-03-27 01:14:53 -0800774 nd_set_link(nd, NULL);
775
Al Viro36f3b4f2011-02-22 21:24:38 -0500776 error = security_inode_follow_link(link->dentry, nd);
777 if (error) {
778 *p = ERR_PTR(error); /* no ->put_link(), please */
779 path_put(&nd->path);
780 return error;
781 }
782
Al Viro86acdca12009-12-22 23:45:11 -0500783 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500784 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
785 error = PTR_ERR(*p);
786 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800787 char *s = nd_get_link(nd);
788 error = 0;
789 if (s)
790 error = __vfs_follow_link(nd, s);
Al Virobcda7652011-03-13 16:42:14 -0400791 else if (nd->last_type == LAST_BIND) {
Al Viro16c2cd72011-02-22 15:50:10 -0500792 nd->flags |= LOOKUP_JUMPED;
Al Virob21041d2011-03-14 20:01:51 -0400793 nd->inode = nd->path.dentry->d_inode;
794 if (nd->inode->i_op->follow_link) {
Al Virobcda7652011-03-13 16:42:14 -0400795 /* stepped on a _really_ weird one */
796 path_put(&nd->path);
797 error = -ELOOP;
798 }
799 }
Ian Kent051d3812006-03-27 01:14:53 -0800800 }
Ian Kent051d3812006-03-27 01:14:53 -0800801 return error;
802}
803
Nick Piggin31e6b012011-01-07 17:49:52 +1100804static int follow_up_rcu(struct path *path)
805{
806 struct vfsmount *parent;
807 struct dentry *mountpoint;
808
809 parent = path->mnt->mnt_parent;
810 if (parent == path->mnt)
811 return 0;
812 mountpoint = path->mnt->mnt_mountpoint;
813 path->dentry = mountpoint;
814 path->mnt = parent;
815 return 1;
816}
817
Al Virobab77eb2009-04-18 03:26:48 -0400818int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
820 struct vfsmount *parent;
821 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000822
823 br_read_lock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400824 parent = path->mnt->mnt_parent;
825 if (parent == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000826 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 return 0;
828 }
829 mntget(parent);
Al Virobab77eb2009-04-18 03:26:48 -0400830 mountpoint = dget(path->mnt->mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000831 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400832 dput(path->dentry);
833 path->dentry = mountpoint;
834 mntput(path->mnt);
835 path->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return 1;
837}
838
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100839/*
David Howells9875cf82011-01-14 18:45:21 +0000840 * Perform an automount
841 * - return -EISDIR to tell follow_managed() to stop and return the path we
842 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 */
David Howells9875cf82011-01-14 18:45:21 +0000844static int follow_automount(struct path *path, unsigned flags,
845 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100846{
David Howells9875cf82011-01-14 18:45:21 +0000847 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000848 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100849
David Howells9875cf82011-01-14 18:45:21 +0000850 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
851 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700852
David Howells6f45b652011-01-14 18:45:31 +0000853 /* We don't want to mount if someone supplied AT_NO_AUTOMOUNT
854 * and this is the terminal part of the path.
855 */
856 if ((flags & LOOKUP_NO_AUTOMOUNT) && !(flags & LOOKUP_CONTINUE))
857 return -EISDIR; /* we actually want to stop here */
858
David Howells9875cf82011-01-14 18:45:21 +0000859 /* We want to mount if someone is trying to open/create a file of any
860 * type under the mountpoint, wants to traverse through the mountpoint
861 * or wants to open the mounted directory.
862 *
863 * We don't want to mount if someone's just doing a stat and they've
864 * set AT_SYMLINK_NOFOLLOW - unless they're stat'ing a directory and
865 * appended a '/' to the name.
866 */
867 if (!(flags & LOOKUP_FOLLOW) &&
868 !(flags & (LOOKUP_CONTINUE | LOOKUP_DIRECTORY |
869 LOOKUP_OPEN | LOOKUP_CREATE)))
870 return -EISDIR;
871
872 current->total_link_count++;
873 if (current->total_link_count >= 40)
874 return -ELOOP;
875
876 mnt = path->dentry->d_op->d_automount(path);
877 if (IS_ERR(mnt)) {
878 /*
879 * The filesystem is allowed to return -EISDIR here to indicate
880 * it doesn't want to automount. For instance, autofs would do
881 * this so that its userspace daemon can mount on this dentry.
882 *
883 * However, we can only permit this if it's a terminal point in
884 * the path being looked up; if it wasn't then the remainder of
885 * the path is inaccessible and we should say so.
886 */
887 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_CONTINUE))
888 return -EREMOTE;
889 return PTR_ERR(mnt);
890 }
David Howellsea5b7782011-01-14 19:10:03 +0000891
David Howells9875cf82011-01-14 18:45:21 +0000892 if (!mnt) /* mount collision */
893 return 0;
894
Al Viro19a167a2011-01-17 01:35:23 -0500895 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000896
David Howellsea5b7782011-01-14 19:10:03 +0000897 switch (err) {
898 case -EBUSY:
899 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500900 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000901 case 0:
David Howellsea5b7782011-01-14 19:10:03 +0000902 dput(path->dentry);
903 if (*need_mntput)
904 mntput(path->mnt);
905 path->mnt = mnt;
906 path->dentry = dget(mnt->mnt_root);
907 *need_mntput = true;
908 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500909 default:
910 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000911 }
Al Viro19a167a2011-01-17 01:35:23 -0500912
David Howells9875cf82011-01-14 18:45:21 +0000913}
914
915/*
916 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000917 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000918 * - Flagged as mountpoint
919 * - Flagged as automount point
920 *
921 * This may only be called in refwalk mode.
922 *
923 * Serialization is taken care of in namespace.c
924 */
925static int follow_managed(struct path *path, unsigned flags)
926{
927 unsigned managed;
928 bool need_mntput = false;
929 int ret;
930
931 /* Given that we're not holding a lock here, we retain the value in a
932 * local variable for each dentry as we look at it so that we don't see
933 * the components of that value change under us */
934 while (managed = ACCESS_ONCE(path->dentry->d_flags),
935 managed &= DCACHE_MANAGED_DENTRY,
936 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000937 /* Allow the filesystem to manage the transit without i_mutex
938 * being held. */
939 if (managed & DCACHE_MANAGE_TRANSIT) {
940 BUG_ON(!path->dentry->d_op);
941 BUG_ON(!path->dentry->d_op->d_manage);
Al Viro1aed3e42011-03-18 09:09:02 -0400942 ret = path->dentry->d_op->d_manage(path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +0000943 if (ret < 0)
944 return ret == -EISDIR ? 0 : ret;
945 }
946
David Howells9875cf82011-01-14 18:45:21 +0000947 /* Transit to a mounted filesystem. */
948 if (managed & DCACHE_MOUNTED) {
949 struct vfsmount *mounted = lookup_mnt(path);
950 if (mounted) {
951 dput(path->dentry);
952 if (need_mntput)
953 mntput(path->mnt);
954 path->mnt = mounted;
955 path->dentry = dget(mounted->mnt_root);
956 need_mntput = true;
957 continue;
958 }
959
960 /* Something is mounted on this dentry in another
961 * namespace and/or whatever was mounted there in this
962 * namespace got unmounted before we managed to get the
963 * vfsmount_lock */
964 }
965
966 /* Handle an automount point */
967 if (managed & DCACHE_NEED_AUTOMOUNT) {
968 ret = follow_automount(path, flags, &need_mntput);
969 if (ret < 0)
970 return ret == -EISDIR ? 0 : ret;
971 continue;
972 }
973
974 /* We didn't change the current path point */
975 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
David Howells9875cf82011-01-14 18:45:21 +0000977 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978}
979
David Howellscc53ce52011-01-14 18:45:26 +0000980int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981{
982 struct vfsmount *mounted;
983
Al Viro1c755af2009-04-18 14:06:57 -0400984 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400986 dput(path->dentry);
987 mntput(path->mnt);
988 path->mnt = mounted;
989 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 return 1;
991 }
992 return 0;
993}
994
David Howells9875cf82011-01-14 18:45:21 +0000995/*
996 * Skip to top of mountpoint pile in rcuwalk mode. We abort the rcu-walk if we
David Howellscc53ce52011-01-14 18:45:26 +0000997 * meet a managed dentry and we're not walking to "..". True is returned to
David Howells9875cf82011-01-14 18:45:21 +0000998 * continue, false to abort.
999 */
1000static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
1001 struct inode **inode, bool reverse_transit)
1002{
1003 while (d_mountpoint(path->dentry)) {
1004 struct vfsmount *mounted;
David Howellsab909112011-01-14 18:46:51 +00001005 if (unlikely(path->dentry->d_flags & DCACHE_MANAGE_TRANSIT) &&
1006 !reverse_transit &&
Al Viro1aed3e42011-03-18 09:09:02 -04001007 path->dentry->d_op->d_manage(path->dentry, true) < 0)
David Howellsab909112011-01-14 18:46:51 +00001008 return false;
David Howells9875cf82011-01-14 18:45:21 +00001009 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
1010 if (!mounted)
1011 break;
1012 path->mnt = mounted;
1013 path->dentry = mounted->mnt_root;
1014 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
1015 *inode = path->dentry->d_inode;
1016 }
1017
1018 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1019 return reverse_transit;
1020 return true;
1021}
1022
Nick Piggin31e6b012011-01-07 17:49:52 +11001023static int follow_dotdot_rcu(struct nameidata *nd)
1024{
1025 struct inode *inode = nd->inode;
1026
1027 set_root_rcu(nd);
1028
David Howells9875cf82011-01-14 18:45:21 +00001029 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001030 if (nd->path.dentry == nd->root.dentry &&
1031 nd->path.mnt == nd->root.mnt) {
1032 break;
1033 }
1034 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1035 struct dentry *old = nd->path.dentry;
1036 struct dentry *parent = old->d_parent;
1037 unsigned seq;
1038
1039 seq = read_seqcount_begin(&parent->d_seq);
1040 if (read_seqcount_retry(&old->d_seq, nd->seq))
Al Viroef7562d2011-03-04 14:35:59 -05001041 goto failed;
Nick Piggin31e6b012011-01-07 17:49:52 +11001042 inode = parent->d_inode;
1043 nd->path.dentry = parent;
1044 nd->seq = seq;
1045 break;
1046 }
1047 if (!follow_up_rcu(&nd->path))
1048 break;
1049 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1050 inode = nd->path.dentry->d_inode;
1051 }
David Howells9875cf82011-01-14 18:45:21 +00001052 __follow_mount_rcu(nd, &nd->path, &inode, true);
Nick Piggin31e6b012011-01-07 17:49:52 +11001053 nd->inode = inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001054 return 0;
Al Viroef7562d2011-03-04 14:35:59 -05001055
1056failed:
1057 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001058 if (!(nd->flags & LOOKUP_ROOT))
1059 nd->root.mnt = NULL;
Al Viroef7562d2011-03-04 14:35:59 -05001060 rcu_read_unlock();
1061 br_read_unlock(vfsmount_lock);
1062 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001063}
1064
David Howells9875cf82011-01-14 18:45:21 +00001065/*
David Howellscc53ce52011-01-14 18:45:26 +00001066 * Follow down to the covering mount currently visible to userspace. At each
1067 * point, the filesystem owning that dentry may be queried as to whether the
1068 * caller is permitted to proceed or not.
1069 *
1070 * Care must be taken as namespace_sem may be held (indicated by mounting_here
1071 * being true).
1072 */
Al Viro7cc90cc2011-03-18 09:04:20 -04001073int follow_down(struct path *path)
David Howellscc53ce52011-01-14 18:45:26 +00001074{
1075 unsigned managed;
1076 int ret;
1077
1078 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1079 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1080 /* Allow the filesystem to manage the transit without i_mutex
1081 * being held.
1082 *
1083 * We indicate to the filesystem if someone is trying to mount
1084 * something here. This gives autofs the chance to deny anyone
1085 * other than its daemon the right to mount on its
1086 * superstructure.
1087 *
1088 * The filesystem may sleep at this point.
1089 */
1090 if (managed & DCACHE_MANAGE_TRANSIT) {
1091 BUG_ON(!path->dentry->d_op);
1092 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001093 ret = path->dentry->d_op->d_manage(
Al Viro1aed3e42011-03-18 09:09:02 -04001094 path->dentry, false);
David Howellscc53ce52011-01-14 18:45:26 +00001095 if (ret < 0)
1096 return ret == -EISDIR ? 0 : ret;
1097 }
1098
1099 /* Transit to a mounted filesystem. */
1100 if (managed & DCACHE_MOUNTED) {
1101 struct vfsmount *mounted = lookup_mnt(path);
1102 if (!mounted)
1103 break;
1104 dput(path->dentry);
1105 mntput(path->mnt);
1106 path->mnt = mounted;
1107 path->dentry = dget(mounted->mnt_root);
1108 continue;
1109 }
1110
1111 /* Don't handle automount points here */
1112 break;
1113 }
1114 return 0;
1115}
1116
1117/*
David Howells9875cf82011-01-14 18:45:21 +00001118 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1119 */
1120static void follow_mount(struct path *path)
1121{
1122 while (d_mountpoint(path->dentry)) {
1123 struct vfsmount *mounted = lookup_mnt(path);
1124 if (!mounted)
1125 break;
1126 dput(path->dentry);
1127 mntput(path->mnt);
1128 path->mnt = mounted;
1129 path->dentry = dget(mounted->mnt_root);
1130 }
1131}
1132
Nick Piggin31e6b012011-01-07 17:49:52 +11001133static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134{
Al Viro2a737872009-04-07 11:49:53 -04001135 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001136
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001138 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
Al Viro2a737872009-04-07 11:49:53 -04001140 if (nd->path.dentry == nd->root.dentry &&
1141 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 break;
1143 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001144 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001145 /* rare case of legitimate dget_parent()... */
1146 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 dput(old);
1148 break;
1149 }
Al Viro3088dd72010-01-30 15:47:29 -05001150 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
Al Viro79ed0222009-04-18 13:59:41 -04001153 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001154 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155}
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157/*
Nick Pigginbaa03892010-08-18 04:37:31 +10001158 * Allocate a dentry with name and parent, and perform a parent
1159 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1160 * on error. parent->d_inode->i_mutex must be held. d_lookup must
1161 * have verified that no child exists while under i_mutex.
1162 */
1163static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1164 struct qstr *name, struct nameidata *nd)
1165{
1166 struct inode *inode = parent->d_inode;
1167 struct dentry *dentry;
1168 struct dentry *old;
1169
1170 /* Don't create child dentry for a dead directory. */
1171 if (unlikely(IS_DEADDIR(inode)))
1172 return ERR_PTR(-ENOENT);
1173
1174 dentry = d_alloc(parent, name);
1175 if (unlikely(!dentry))
1176 return ERR_PTR(-ENOMEM);
1177
1178 old = inode->i_op->lookup(inode, dentry, nd);
1179 if (unlikely(old)) {
1180 dput(dentry);
1181 dentry = old;
1182 }
1183 return dentry;
1184}
1185
1186/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 * It's more convoluted than I'd like it to be, but... it's still fairly
1188 * small and for now I'd prefer to have fast path as straight as possible.
1189 * It _is_ time-critical.
1190 */
1191static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +11001192 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193{
Jan Blunck4ac91372008-02-14 19:34:32 -08001194 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001195 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro5a18fff2011-03-11 04:44:53 -05001196 int need_reval = 1;
1197 int status = 1;
David Howells9875cf82011-01-14 18:45:21 +00001198 int err;
1199
Al Viro3cac2602009-08-13 18:27:43 +04001200 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001201 * Rename seqlock is not required here because in the off chance
1202 * of a false negative due to a concurrent rename, we're going to
1203 * do the non-racy lookup, below.
1204 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001205 if (nd->flags & LOOKUP_RCU) {
1206 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001207 *inode = nd->inode;
1208 dentry = __d_lookup_rcu(parent, name, &seq, inode);
Al Viro5a18fff2011-03-11 04:44:53 -05001209 if (!dentry)
1210 goto unlazy;
1211
Nick Piggin31e6b012011-01-07 17:49:52 +11001212 /* Memory barrier in read_seqcount_begin of child is enough */
1213 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1214 return -ECHILD;
Nick Piggin31e6b012011-01-07 17:49:52 +11001215 nd->seq = seq;
Al Viro5a18fff2011-03-11 04:44:53 -05001216
Al Viro24643082011-02-15 01:26:22 -05001217 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Viro5a18fff2011-03-11 04:44:53 -05001218 status = d_revalidate(dentry, nd);
1219 if (unlikely(status <= 0)) {
1220 if (status != -ECHILD)
1221 need_reval = 0;
1222 goto unlazy;
1223 }
Al Viro24643082011-02-15 01:26:22 -05001224 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001225 path->mnt = mnt;
1226 path->dentry = dentry;
David Howells9875cf82011-01-14 18:45:21 +00001227 if (likely(__follow_mount_rcu(nd, path, inode, false)))
1228 return 0;
Al Viro5a18fff2011-03-11 04:44:53 -05001229unlazy:
1230 if (dentry) {
1231 if (nameidata_dentry_drop_rcu(nd, dentry))
1232 return -ECHILD;
1233 } else {
1234 if (nameidata_drop_rcu(nd))
1235 return -ECHILD;
1236 }
1237 } else {
1238 dentry = __d_lookup(parent, name);
Nick Piggin31e6b012011-01-07 17:49:52 +11001239 }
Al Viro5a18fff2011-03-11 04:44:53 -05001240
1241retry:
1242 if (unlikely(!dentry)) {
1243 struct inode *dir = parent->d_inode;
1244 BUG_ON(nd->inode != dir);
1245
1246 mutex_lock(&dir->i_mutex);
1247 dentry = d_lookup(parent, name);
1248 if (likely(!dentry)) {
1249 dentry = d_alloc_and_lookup(parent, name, nd);
1250 if (IS_ERR(dentry)) {
1251 mutex_unlock(&dir->i_mutex);
1252 return PTR_ERR(dentry);
1253 }
1254 /* known good */
1255 need_reval = 0;
1256 status = 1;
1257 }
1258 mutex_unlock(&dir->i_mutex);
Al Viro24643082011-02-15 01:26:22 -05001259 }
Al Viro5a18fff2011-03-11 04:44:53 -05001260 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1261 status = d_revalidate(dentry, nd);
1262 if (unlikely(status <= 0)) {
1263 if (status < 0) {
1264 dput(dentry);
1265 return status;
1266 }
1267 if (!d_invalidate(dentry)) {
1268 dput(dentry);
1269 dentry = NULL;
1270 need_reval = 1;
1271 goto retry;
1272 }
1273 }
1274
David Howells9875cf82011-01-14 18:45:21 +00001275 path->mnt = mnt;
1276 path->dentry = dentry;
1277 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001278 if (unlikely(err < 0)) {
1279 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001280 return err;
Ian Kent89312212011-01-18 12:06:10 +08001281 }
David Howells9875cf82011-01-14 18:45:21 +00001282 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
Al Viro52094c82011-02-21 21:34:47 -05001286static inline int may_lookup(struct nameidata *nd)
1287{
1288 if (nd->flags & LOOKUP_RCU) {
1289 int err = exec_permission(nd->inode, IPERM_FLAG_RCU);
1290 if (err != -ECHILD)
1291 return err;
1292 if (nameidata_drop_rcu(nd))
1293 return -ECHILD;
1294 }
1295 return exec_permission(nd->inode, 0);
1296}
1297
Al Viro9856fa12011-03-04 14:22:06 -05001298static inline int handle_dots(struct nameidata *nd, int type)
1299{
1300 if (type == LAST_DOTDOT) {
1301 if (nd->flags & LOOKUP_RCU) {
1302 if (follow_dotdot_rcu(nd))
1303 return -ECHILD;
1304 } else
1305 follow_dotdot(nd);
1306 }
1307 return 0;
1308}
1309
Al Viro951361f2011-03-04 14:44:37 -05001310static void terminate_walk(struct nameidata *nd)
1311{
1312 if (!(nd->flags & LOOKUP_RCU)) {
1313 path_put(&nd->path);
1314 } else {
1315 nd->flags &= ~LOOKUP_RCU;
Al Viro5b6ca022011-03-09 23:04:47 -05001316 if (!(nd->flags & LOOKUP_ROOT))
1317 nd->root.mnt = NULL;
Al Viro951361f2011-03-04 14:44:37 -05001318 rcu_read_unlock();
1319 br_read_unlock(vfsmount_lock);
1320 }
1321}
1322
Al Viroce57dfc2011-03-13 19:58:58 -04001323static inline int walk_component(struct nameidata *nd, struct path *path,
1324 struct qstr *name, int type, int follow)
1325{
1326 struct inode *inode;
1327 int err;
1328 /*
1329 * "." and ".." are special - ".." especially so because it has
1330 * to be able to know about the current root directory and
1331 * parent relationships.
1332 */
1333 if (unlikely(type != LAST_NORM))
1334 return handle_dots(nd, type);
1335 err = do_lookup(nd, name, path, &inode);
1336 if (unlikely(err)) {
1337 terminate_walk(nd);
1338 return err;
1339 }
1340 if (!inode) {
1341 path_to_nameidata(path, nd);
1342 terminate_walk(nd);
1343 return -ENOENT;
1344 }
1345 if (unlikely(inode->i_op->follow_link) && follow) {
1346 if (nameidata_dentry_drop_rcu_maybe(nd, path->dentry))
1347 return -ECHILD;
1348 BUG_ON(inode != path->dentry->d_inode);
1349 return 1;
1350 }
1351 path_to_nameidata(path, nd);
1352 nd->inode = inode;
1353 return 0;
1354}
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356/*
Al Virob3563792011-03-14 21:54:55 -04001357 * This limits recursive symlink follows to 8, while
1358 * limiting consecutive symlinks to 40.
1359 *
1360 * Without that kind of total limit, nasty chains of consecutive
1361 * symlinks can cause almost arbitrarily long lookups.
1362 */
1363static inline int nested_symlink(struct path *path, struct nameidata *nd)
1364{
1365 int res;
1366
1367 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
1368 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1369 path_put_conditional(path, nd);
1370 path_put(&nd->path);
1371 return -ELOOP;
1372 }
1373
1374 nd->depth++;
1375 current->link_count++;
1376
1377 do {
1378 struct path link = *path;
1379 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04001380
1381 res = follow_link(&link, nd, &cookie);
Al Virob3563792011-03-14 21:54:55 -04001382 if (!res)
1383 res = walk_component(nd, path, &nd->last,
1384 nd->last_type, LOOKUP_FOLLOW);
Al Viro574197e2011-03-14 22:20:34 -04001385 put_link(nd, &link, cookie);
Al Virob3563792011-03-14 21:54:55 -04001386 } while (res > 0);
1387
1388 current->link_count--;
1389 nd->depth--;
1390 return res;
1391}
1392
1393/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001395 * This is the basic name resolution function, turning a pathname into
1396 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001398 * Returns 0 and nd will have valid dentry and mnt on success.
1399 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 */
Al Viro6de88d72009-08-09 01:41:57 +04001401static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
1403 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 int err;
1405 unsigned int lookup_flags = nd->flags;
1406
1407 while (*name=='/')
1408 name++;
1409 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001410 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 /* At this point we know we have a real path component. */
1413 for(;;) {
1414 unsigned long hash;
1415 struct qstr this;
1416 unsigned int c;
Al Virofe479a52011-02-22 15:10:03 -05001417 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418
Trond Myklebustcdce5d62005-10-18 14:20:18 -07001419 nd->flags |= LOOKUP_CONTINUE;
Al Viro52094c82011-02-21 21:34:47 -05001420
1421 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 if (err)
1423 break;
1424
1425 this.name = name;
1426 c = *(const unsigned char *)name;
1427
1428 hash = init_name_hash();
1429 do {
1430 name++;
1431 hash = partial_name_hash(c, hash);
1432 c = *(const unsigned char *)name;
1433 } while (c && (c != '/'));
1434 this.len = name - (const char *) this.name;
1435 this.hash = end_name_hash(hash);
1436
Al Virofe479a52011-02-22 15:10:03 -05001437 type = LAST_NORM;
1438 if (this.name[0] == '.') switch (this.len) {
1439 case 2:
Al Viro16c2cd72011-02-22 15:50:10 -05001440 if (this.name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001441 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001442 nd->flags |= LOOKUP_JUMPED;
1443 }
Al Virofe479a52011-02-22 15:10:03 -05001444 break;
1445 case 1:
1446 type = LAST_DOT;
1447 }
Al Viro5a202bc2011-03-08 14:17:44 -05001448 if (likely(type == LAST_NORM)) {
1449 struct dentry *parent = nd->path.dentry;
Al Viro16c2cd72011-02-22 15:50:10 -05001450 nd->flags &= ~LOOKUP_JUMPED;
Al Viro5a202bc2011-03-08 14:17:44 -05001451 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1452 err = parent->d_op->d_hash(parent, nd->inode,
1453 &this);
1454 if (err < 0)
1455 break;
1456 }
1457 }
Al Virofe479a52011-02-22 15:10:03 -05001458
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 /* remove trailing slashes? */
1460 if (!c)
1461 goto last_component;
1462 while (*++name == '/');
1463 if (!*name)
Al Virob3563792011-03-14 21:54:55 -04001464 goto last_component;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Al Viroce57dfc2011-03-13 19:58:58 -04001466 err = walk_component(nd, &next, &this, type, LOOKUP_FOLLOW);
1467 if (err < 0)
1468 return err;
Al Virofe479a52011-02-22 15:10:03 -05001469
Al Viroce57dfc2011-03-13 19:58:58 -04001470 if (err) {
Al Virob3563792011-03-14 21:54:55 -04001471 err = nested_symlink(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 if (err)
Al Viroa7472ba2011-03-04 14:39:30 -05001473 return err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001476 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 break;
1478 continue;
1479 /* here ends the main loop */
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -08001482 /* Clear LOOKUP_CONTINUE iff it was previously unset */
1483 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Al Virob3563792011-03-14 21:54:55 -04001484 nd->last = this;
1485 nd->last_type = type;
Al Viro086e1832011-02-22 20:56:27 -05001486 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 }
Al Viro951361f2011-03-04 14:44:37 -05001488 terminate_walk(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 return err;
1490}
1491
Al Viro70e9b352011-03-05 21:12:22 -05001492static int path_init(int dfd, const char *name, unsigned int flags,
1493 struct nameidata *nd, struct file **fp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001495 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001496 int fput_needed;
1497 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001500 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 nd->depth = 0;
Al Viro5b6ca022011-03-09 23:04:47 -05001502 if (flags & LOOKUP_ROOT) {
1503 struct inode *inode = nd->root.dentry->d_inode;
Al Viro73d049a2011-03-11 12:08:24 -05001504 if (*name) {
1505 if (!inode->i_op->lookup)
1506 return -ENOTDIR;
1507 retval = inode_permission(inode, MAY_EXEC);
1508 if (retval)
1509 return retval;
1510 }
Al Viro5b6ca022011-03-09 23:04:47 -05001511 nd->path = nd->root;
1512 nd->inode = inode;
1513 if (flags & LOOKUP_RCU) {
1514 br_read_lock(vfsmount_lock);
1515 rcu_read_lock();
1516 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1517 } else {
1518 path_get(&nd->path);
1519 }
1520 return 0;
1521 }
1522
Al Viro2a737872009-04-07 11:49:53 -04001523 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001526 if (flags & LOOKUP_RCU) {
1527 br_read_lock(vfsmount_lock);
1528 rcu_read_lock();
1529 set_root_rcu(nd);
1530 } else {
1531 set_root(nd);
1532 path_get(&nd->root);
1533 }
Al Viro2a737872009-04-07 11:49:53 -04001534 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001535 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001536 if (flags & LOOKUP_RCU) {
1537 struct fs_struct *fs = current->fs;
1538 unsigned seq;
1539
1540 br_read_lock(vfsmount_lock);
1541 rcu_read_lock();
1542
1543 do {
1544 seq = read_seqcount_begin(&fs->seq);
1545 nd->path = fs->pwd;
1546 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1547 } while (read_seqcount_retry(&fs->seq, seq));
1548 } else {
1549 get_fs_pwd(current->fs, &nd->path);
1550 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001551 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001552 struct dentry *dentry;
1553
Al Viro1abf0c72011-03-13 03:51:11 -04001554 file = fget_raw_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001555 retval = -EBADF;
1556 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001557 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001558
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001559 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001560
Al Virof52e0c12011-03-14 18:56:51 -04001561 if (*name) {
1562 retval = -ENOTDIR;
1563 if (!S_ISDIR(dentry->d_inode->i_mode))
1564 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001565
Al Virof52e0c12011-03-14 18:56:51 -04001566 retval = file_permission(file, MAY_EXEC);
1567 if (retval)
1568 goto fput_fail;
1569 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001570
Jan Blunck5dd784d02008-02-14 19:34:38 -08001571 nd->path = file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001572 if (flags & LOOKUP_RCU) {
1573 if (fput_needed)
Al Viro70e9b352011-03-05 21:12:22 -05001574 *fp = file;
Al Viroe41f7d42011-02-22 14:02:58 -05001575 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1576 br_read_lock(vfsmount_lock);
1577 rcu_read_lock();
1578 } else {
1579 path_get(&file->f_path);
1580 fput_light(file, fput_needed);
1581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 }
Al Viroe41f7d42011-02-22 14:02:58 -05001583
Nick Piggin31e6b012011-01-07 17:49:52 +11001584 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001585 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001586
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001587fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001588 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001589out_fail:
1590 return retval;
1591}
1592
Al Virobd92d7f2011-03-14 19:54:59 -04001593static inline int lookup_last(struct nameidata *nd, struct path *path)
1594{
1595 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1596 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1597
1598 nd->flags &= ~LOOKUP_PARENT;
1599 return walk_component(nd, path, &nd->last, nd->last_type,
1600 nd->flags & LOOKUP_FOLLOW);
1601}
1602
Al Viro9b4a9b12009-04-07 11:44:16 -04001603/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001604static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001605 unsigned int flags, struct nameidata *nd)
1606{
Al Viro70e9b352011-03-05 21:12:22 -05001607 struct file *base = NULL;
Al Virobd92d7f2011-03-14 19:54:59 -04001608 struct path path;
1609 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001610
1611 /*
1612 * Path walking is largely split up into 2 different synchronisation
1613 * schemes, rcu-walk and ref-walk (explained in
1614 * Documentation/filesystems/path-lookup.txt). These share much of the
1615 * path walk code, but some things particularly setup, cleanup, and
1616 * following mounts are sufficiently divergent that functions are
1617 * duplicated. Typically there is a function foo(), and its RCU
1618 * analogue, foo_rcu().
1619 *
1620 * -ECHILD is the error number of choice (just to avoid clashes) that
1621 * is returned if some aspect of an rcu-walk fails. Such an error must
1622 * be handled by restarting a traditional ref-walk (which will always
1623 * be able to complete).
1624 */
Al Virobd92d7f2011-03-14 19:54:59 -04001625 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
Al Viroee0827c2011-02-21 23:38:09 -05001626
Al Virobd92d7f2011-03-14 19:54:59 -04001627 if (unlikely(err))
1628 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001629
1630 current->total_link_count = 0;
Al Virobd92d7f2011-03-14 19:54:59 -04001631 err = link_path_walk(name, nd);
1632
1633 if (!err && !(flags & LOOKUP_PARENT)) {
Al Virobd92d7f2011-03-14 19:54:59 -04001634 err = lookup_last(nd, &path);
1635 while (err > 0) {
1636 void *cookie;
1637 struct path link = path;
Al Virobd92d7f2011-03-14 19:54:59 -04001638 nd->flags |= LOOKUP_PARENT;
Al Viro574197e2011-03-14 22:20:34 -04001639 err = follow_link(&link, nd, &cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001640 if (!err)
1641 err = lookup_last(nd, &path);
Al Viro574197e2011-03-14 22:20:34 -04001642 put_link(nd, &link, cookie);
Al Virobd92d7f2011-03-14 19:54:59 -04001643 }
1644 }
Al Viroee0827c2011-02-21 23:38:09 -05001645
1646 if (nd->flags & LOOKUP_RCU) {
Al Viro4455ca62011-03-04 14:28:10 -05001647 /* went all way through without dropping RCU */
Al Virobd92d7f2011-03-14 19:54:59 -04001648 BUG_ON(err);
Al Viro4455ca62011-03-04 14:28:10 -05001649 if (nameidata_drop_rcu_last(nd))
Al Virobd92d7f2011-03-14 19:54:59 -04001650 err = -ECHILD;
Al Viroee0827c2011-02-21 23:38:09 -05001651 }
1652
Al Virobd23a532011-03-23 09:56:30 -04001653 if (!err) {
Al Virobd92d7f2011-03-14 19:54:59 -04001654 err = handle_reval_path(nd);
Al Virobd23a532011-03-23 09:56:30 -04001655 if (err)
1656 path_put(&nd->path);
1657 }
Al Virobd92d7f2011-03-14 19:54:59 -04001658
1659 if (!err && nd->flags & LOOKUP_DIRECTORY) {
1660 if (!nd->inode->i_op->lookup) {
1661 path_put(&nd->path);
Al Virobd23a532011-03-23 09:56:30 -04001662 err = -ENOTDIR;
Al Virobd92d7f2011-03-14 19:54:59 -04001663 }
1664 }
Al Viro16c2cd72011-02-22 15:50:10 -05001665
Al Viro70e9b352011-03-05 21:12:22 -05001666 if (base)
1667 fput(base);
Al Viroee0827c2011-02-21 23:38:09 -05001668
Al Viro5b6ca022011-03-09 23:04:47 -05001669 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
Al Viro2a737872009-04-07 11:49:53 -04001670 path_put(&nd->root);
1671 nd->root.mnt = NULL;
1672 }
Al Virobd92d7f2011-03-14 19:54:59 -04001673 return err;
Al Viroee0827c2011-02-21 23:38:09 -05001674}
Nick Piggin31e6b012011-01-07 17:49:52 +11001675
Al Viroee0827c2011-02-21 23:38:09 -05001676static int do_path_lookup(int dfd, const char *name,
1677 unsigned int flags, struct nameidata *nd)
1678{
1679 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1680 if (unlikely(retval == -ECHILD))
1681 retval = path_lookupat(dfd, name, flags, nd);
1682 if (unlikely(retval == -ESTALE))
1683 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001684
1685 if (likely(!retval)) {
1686 if (unlikely(!audit_dummy_context())) {
1687 if (nd->path.dentry && nd->inode)
1688 audit_inode(name, nd->path.dentry);
1689 }
1690 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001691 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692}
1693
Al Viroc9c6cac2011-02-16 15:15:47 -05001694int kern_path_parent(const char *name, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001695{
Al Viroc9c6cac2011-02-16 15:15:47 -05001696 return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001697}
1698
Al Virod1811462008-08-02 00:49:18 -04001699int kern_path(const char *name, unsigned int flags, struct path *path)
1700{
1701 struct nameidata nd;
1702 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1703 if (!res)
1704 *path = nd.path;
1705 return res;
1706}
1707
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001708/**
1709 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1710 * @dentry: pointer to dentry of the base directory
1711 * @mnt: pointer to vfs mount of the base directory
1712 * @name: pointer to file name
1713 * @flags: lookup flags
1714 * @nd: pointer to nameidata
1715 */
1716int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1717 const char *name, unsigned int flags,
1718 struct nameidata *nd)
1719{
Al Viro5b6ca022011-03-09 23:04:47 -05001720 nd->root.dentry = dentry;
1721 nd->root.mnt = mnt;
1722 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
1723 return do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, nd);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001724}
1725
Christoph Hellwigeead1912007-10-16 23:25:38 -07001726static struct dentry *__lookup_hash(struct qstr *name,
1727 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
Christoph Hellwig81fca442010-10-06 10:47:47 +02001729 struct inode *inode = base->d_inode;
James Morris057f6c02007-04-26 00:12:05 -07001730 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 int err;
1732
Nick Pigginb74c79e2011-01-07 17:49:58 +11001733 err = exec_permission(inode, 0);
Christoph Hellwig81fca442010-10-06 10:47:47 +02001734 if (err)
1735 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736
1737 /*
Nick Pigginb04f7842010-08-18 04:37:34 +10001738 * Don't bother with __d_lookup: callers are for creat as
1739 * well as unlink, so a lot of the time it would cost
1740 * a double lookup.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001741 */
Nick Pigginb04f7842010-08-18 04:37:34 +10001742 dentry = d_lookup(base, name);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001743
Nick Pigginfb045ad2011-01-07 17:49:55 +11001744 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE))
Al Viro6e6b1bd2009-08-13 23:38:37 +04001745 dentry = do_revalidate(dentry, nd);
1746
Nick Pigginbaa03892010-08-18 04:37:31 +10001747 if (!dentry)
1748 dentry = d_alloc_and_lookup(base, name, nd);
Al Viro5a202bc2011-03-08 14:17:44 -05001749
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 return dentry;
1751}
1752
James Morris057f6c02007-04-26 00:12:05 -07001753/*
1754 * Restricted form of lookup. Doesn't follow links, single-component only,
1755 * needs parent already locked. Doesn't follow mounts.
1756 * SMP-safe.
1757 */
Adrian Bunka244e162006-03-31 02:32:11 -08001758static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
Jan Blunck4ac91372008-02-14 19:34:32 -08001760 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761}
1762
Christoph Hellwigeead1912007-10-16 23:25:38 -07001763/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001764 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001765 * @name: pathname component to lookup
1766 * @base: base directory to lookup from
1767 * @len: maximum length @len should be interpreted to
1768 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001769 * Note that this routine is purely a helper for filesystem usage and should
1770 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001771 * nameidata argument is passed to the filesystem methods and a filesystem
1772 * using this helper needs to be prepared for that.
1773 */
James Morris057f6c02007-04-26 00:12:05 -07001774struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1775{
James Morris057f6c02007-04-26 00:12:05 -07001776 struct qstr this;
Al Viro6a96ba52011-03-07 23:49:20 -05001777 unsigned long hash;
1778 unsigned int c;
James Morris057f6c02007-04-26 00:12:05 -07001779
David Woodhouse2f9092e2009-04-20 23:18:37 +01001780 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1781
Al Viro6a96ba52011-03-07 23:49:20 -05001782 this.name = name;
1783 this.len = len;
1784 if (!len)
1785 return ERR_PTR(-EACCES);
1786
1787 hash = init_name_hash();
1788 while (len--) {
1789 c = *(const unsigned char *)name++;
1790 if (c == '/' || c == '\0')
1791 return ERR_PTR(-EACCES);
1792 hash = partial_name_hash(c, hash);
1793 }
1794 this.hash = end_name_hash(hash);
Al Viro5a202bc2011-03-08 14:17:44 -05001795 /*
1796 * See if the low-level filesystem might want
1797 * to use its own hash..
1798 */
1799 if (base->d_flags & DCACHE_OP_HASH) {
1800 int err = base->d_op->d_hash(base, base->d_inode, &this);
1801 if (err < 0)
1802 return ERR_PTR(err);
1803 }
Christoph Hellwigeead1912007-10-16 23:25:38 -07001804
Christoph Hellwig49705b72005-11-08 21:35:06 -08001805 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001806}
1807
Al Viro2d8f3032008-07-22 09:59:21 -04001808int user_path_at(int dfd, const char __user *name, unsigned flags,
1809 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
Al Viro2d8f3032008-07-22 09:59:21 -04001811 struct nameidata nd;
Al Virof52e0c12011-03-14 18:56:51 -04001812 char *tmp = getname_flags(name, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001815
1816 BUG_ON(flags & LOOKUP_PARENT);
1817
1818 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001820 if (!err)
1821 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 }
1823 return err;
1824}
1825
Al Viro2ad94ae2008-07-21 09:32:51 -04001826static int user_path_parent(int dfd, const char __user *path,
1827 struct nameidata *nd, char **name)
1828{
1829 char *s = getname(path);
1830 int error;
1831
1832 if (IS_ERR(s))
1833 return PTR_ERR(s);
1834
1835 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1836 if (error)
1837 putname(s);
1838 else
1839 *name = s;
1840
1841 return error;
1842}
1843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844/*
1845 * It's inline, so penalty for filesystems that don't use sticky bit is
1846 * minimal.
1847 */
1848static inline int check_sticky(struct inode *dir, struct inode *inode)
1849{
David Howellsda9592e2008-11-14 10:39:05 +11001850 uid_t fsuid = current_fsuid();
1851
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 if (!(dir->i_mode & S_ISVTX))
1853 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001854 if (current_user_ns() != inode_userns(inode))
1855 goto other_userns;
David Howellsda9592e2008-11-14 10:39:05 +11001856 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001858 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 return 0;
Serge E. Hallyne795b712011-03-23 16:43:25 -07001860
1861other_userns:
1862 return !ns_capable(inode_userns(inode), CAP_FOWNER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863}
1864
1865/*
1866 * Check whether we can remove a link victim from directory dir, check
1867 * whether the type of victim is right.
1868 * 1. We can't do it if dir is read-only (done in permission())
1869 * 2. We should have write and exec permissions on dir
1870 * 3. We can't remove anything from append-only dir
1871 * 4. We can't do anything with immutable dir (done in permission())
1872 * 5. If the sticky bit on dir is set we should either
1873 * a. be owner of dir, or
1874 * b. be owner of victim, or
1875 * c. have CAP_FOWNER capability
1876 * 6. If the victim is append-only or immutable we can't do antyhing with
1877 * links pointing to it.
1878 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1879 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1880 * 9. We can't remove a root or mountpoint.
1881 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1882 * nfs_async_unlink().
1883 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001884static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885{
1886 int error;
1887
1888 if (!victim->d_inode)
1889 return -ENOENT;
1890
1891 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001892 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893
Al Virof419a2e2008-07-22 00:07:17 -04001894 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 if (error)
1896 return error;
1897 if (IS_APPEND(dir))
1898 return -EPERM;
1899 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001900 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 return -EPERM;
1902 if (isdir) {
1903 if (!S_ISDIR(victim->d_inode->i_mode))
1904 return -ENOTDIR;
1905 if (IS_ROOT(victim))
1906 return -EBUSY;
1907 } else if (S_ISDIR(victim->d_inode->i_mode))
1908 return -EISDIR;
1909 if (IS_DEADDIR(dir))
1910 return -ENOENT;
1911 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1912 return -EBUSY;
1913 return 0;
1914}
1915
1916/* Check whether we can create an object with dentry child in directory
1917 * dir.
1918 * 1. We can't do it if child already exists (open has special treatment for
1919 * this case, but since we are inlined it's OK)
1920 * 2. We can't do it if dir is read-only (done in permission())
1921 * 3. We should have write and exec permissions on dir
1922 * 4. We can't do it if dir is immutable (done in permission())
1923 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001924static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925{
1926 if (child->d_inode)
1927 return -EEXIST;
1928 if (IS_DEADDIR(dir))
1929 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001930 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931}
1932
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933/*
1934 * p1 and p2 should be directories on the same fs.
1935 */
1936struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1937{
1938 struct dentry *p;
1939
1940 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001941 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 return NULL;
1943 }
1944
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001945 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001947 p = d_ancestor(p2, p1);
1948 if (p) {
1949 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1950 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1951 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 }
1953
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001954 p = d_ancestor(p1, p2);
1955 if (p) {
1956 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1957 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1958 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 }
1960
Ingo Molnarf2eace22006-07-03 00:25:05 -07001961 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1962 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 return NULL;
1964}
1965
1966void unlock_rename(struct dentry *p1, struct dentry *p2)
1967{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001968 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001970 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001971 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 }
1973}
1974
1975int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1976 struct nameidata *nd)
1977{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001978 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979
1980 if (error)
1981 return error;
1982
Al Viroacfa4382008-12-04 10:06:33 -05001983 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 return -EACCES; /* shouldn't it be ENOSYS? */
1985 mode &= S_IALLUGO;
1986 mode |= S_IFREG;
1987 error = security_inode_create(dir, dentry, mode);
1988 if (error)
1989 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001991 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001992 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 return error;
1994}
1995
Al Viro73d049a2011-03-11 12:08:24 -05001996static int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001998 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 struct inode *inode = dentry->d_inode;
2000 int error;
2001
Al Virobcda7652011-03-13 16:42:14 -04002002 /* O_PATH? */
2003 if (!acc_mode)
2004 return 0;
2005
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 if (!inode)
2007 return -ENOENT;
2008
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002009 switch (inode->i_mode & S_IFMT) {
2010 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002012 case S_IFDIR:
2013 if (acc_mode & MAY_WRITE)
2014 return -EISDIR;
2015 break;
2016 case S_IFBLK:
2017 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002018 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002020 /*FALLTHRU*/
2021 case S_IFIFO:
2022 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002024 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002025 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002026
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002027 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002028 if (error)
2029 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002030
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031 /*
2032 * An append-only file must be opened in append mode for writing.
2033 */
2034 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002035 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002036 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002038 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 }
2040
2041 /* O_NOATIME can only be set by the owner or superuser */
Serge E. Hallyn2e149672011-03-23 16:43:26 -07002042 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
Al Viro7715b522009-12-16 03:54:00 -05002043 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044
2045 /*
2046 * Ensure there are no outstanding leases on the file.
2047 */
Al Virob65a9cf2009-12-16 06:27:40 -05002048 return break_lease(inode, flag);
Al Viro7715b522009-12-16 03:54:00 -05002049}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050
Jeff Laytone1181ee2010-12-07 16:19:50 -05002051static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002052{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002053 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002054 struct inode *inode = path->dentry->d_inode;
2055 int error = get_write_access(inode);
2056 if (error)
2057 return error;
2058 /*
2059 * Refuse to truncate files with mandatory locks held on them.
2060 */
2061 error = locks_verify_locked(inode);
2062 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002063 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002064 if (!error) {
2065 error = do_truncate(path->dentry, 0,
2066 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002067 filp);
Al Viro7715b522009-12-16 03:54:00 -05002068 }
2069 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002070 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071}
2072
Dave Hansend57999e2008-02-15 14:37:27 -08002073/*
Dave Hansend57999e2008-02-15 14:37:27 -08002074 * Note that while the flag value (low two bits) for sys_open means:
2075 * 00 - read-only
2076 * 01 - write-only
2077 * 10 - read-write
2078 * 11 - special
2079 * it is changed into
2080 * 00 - no permissions needed
2081 * 01 - read-permission
2082 * 10 - write-permission
2083 * 11 - read-write
2084 * for the internal routines (ie open_namei()/follow_link() etc)
2085 * This is more logical, and also allows the 00 "no perm needed"
2086 * to be used for symlinks (where the permissions are checked
2087 * later).
2088 *
2089*/
2090static inline int open_to_namei_flags(int flag)
2091{
2092 if ((flag+1) & O_ACCMODE)
2093 flag++;
2094 return flag;
2095}
2096
Nick Piggin31e6b012011-01-07 17:49:52 +11002097/*
Al Virofe2d35f2011-03-05 22:58:25 -05002098 * Handle the last step of open()
Nick Piggin31e6b012011-01-07 17:49:52 +11002099 */
Al Virofb1cc552009-12-24 01:58:28 -05002100static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viroc3e380b2011-02-23 13:39:45 -05002101 const struct open_flags *op, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002102{
Al Viroa1e28032009-12-24 02:12:06 -05002103 struct dentry *dir = nd->path.dentry;
Al Viro6c0d46c2011-03-09 00:59:59 -05002104 struct dentry *dentry;
Al Viroca344a892011-03-09 00:36:45 -05002105 int open_flag = op->open_flag;
Al Viro6c0d46c2011-03-09 00:59:59 -05002106 int will_truncate = open_flag & O_TRUNC;
Al Viroca344a892011-03-09 00:36:45 -05002107 int want_write = 0;
Al Virobcda7652011-03-13 16:42:14 -04002108 int acc_mode = op->acc_mode;
Al Virofb1cc552009-12-24 01:58:28 -05002109 struct file *filp;
Al Viro16c2cd72011-02-22 15:50:10 -05002110 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002111
Al Viroc3e380b2011-02-23 13:39:45 -05002112 nd->flags &= ~LOOKUP_PARENT;
2113 nd->flags |= op->intent;
2114
Al Viro1f36f772009-12-26 10:56:19 -05002115 switch (nd->last_type) {
2116 case LAST_DOTDOT:
Neil Brown176306f2010-05-24 16:57:56 +10002117 case LAST_DOT:
Al Virofe2d35f2011-03-05 22:58:25 -05002118 error = handle_dots(nd, nd->last_type);
2119 if (error)
2120 return ERR_PTR(error);
Al Viro1f36f772009-12-26 10:56:19 -05002121 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002122 case LAST_ROOT:
Al Virofe2d35f2011-03-05 22:58:25 -05002123 if (nd->flags & LOOKUP_RCU) {
2124 if (nameidata_drop_rcu_last(nd))
2125 return ERR_PTR(-ECHILD);
2126 }
Al Viro16c2cd72011-02-22 15:50:10 -05002127 error = handle_reval_path(nd);
2128 if (error)
2129 goto exit;
Al Virofe2d35f2011-03-05 22:58:25 -05002130 audit_inode(pathname, nd->path.dentry);
Al Viroca344a892011-03-09 00:36:45 -05002131 if (open_flag & O_CREAT) {
Al Virofe2d35f2011-03-05 22:58:25 -05002132 error = -EISDIR;
2133 goto exit;
2134 }
2135 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002136 case LAST_BIND:
Al Virofe2d35f2011-03-05 22:58:25 -05002137 /* can't be RCU mode here */
Al Viro16c2cd72011-02-22 15:50:10 -05002138 error = handle_reval_path(nd);
2139 if (error)
2140 goto exit;
Al Viro1f36f772009-12-26 10:56:19 -05002141 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002142 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002143 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002144
Al Viroca344a892011-03-09 00:36:45 -05002145 if (!(open_flag & O_CREAT)) {
Al Virobcda7652011-03-13 16:42:14 -04002146 int symlink_ok = 0;
Al Virofe2d35f2011-03-05 22:58:25 -05002147 if (nd->last.name[nd->last.len])
2148 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
Al Virobcda7652011-03-13 16:42:14 -04002149 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2150 symlink_ok = 1;
Al Virofe2d35f2011-03-05 22:58:25 -05002151 /* we _can_ be in RCU mode here */
Al Viroce57dfc2011-03-13 19:58:58 -04002152 error = walk_component(nd, path, &nd->last, LAST_NORM,
2153 !symlink_ok);
2154 if (error < 0)
Al Virofe2d35f2011-03-05 22:58:25 -05002155 return ERR_PTR(error);
Al Viroce57dfc2011-03-13 19:58:58 -04002156 if (error) /* symlink */
Al Virofe2d35f2011-03-05 22:58:25 -05002157 return NULL;
Al Virofe2d35f2011-03-05 22:58:25 -05002158 /* sayonara */
2159 if (nd->flags & LOOKUP_RCU) {
2160 if (nameidata_drop_rcu_last(nd))
2161 return ERR_PTR(-ECHILD);
2162 }
2163
2164 error = -ENOTDIR;
2165 if (nd->flags & LOOKUP_DIRECTORY) {
Al Viroce57dfc2011-03-13 19:58:58 -04002166 if (!nd->inode->i_op->lookup)
Al Virofe2d35f2011-03-05 22:58:25 -05002167 goto exit;
2168 }
2169 audit_inode(pathname, nd->path.dentry);
2170 goto ok;
2171 }
2172
2173 /* create side of things */
2174
2175 if (nd->flags & LOOKUP_RCU) {
2176 if (nameidata_drop_rcu_last(nd))
2177 return ERR_PTR(-ECHILD);
2178 }
2179
2180 audit_inode(pathname, dir);
Al Viro16c2cd72011-02-22 15:50:10 -05002181 error = -EISDIR;
Al Viro1f36f772009-12-26 10:56:19 -05002182 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002183 if (nd->last.name[nd->last.len])
2184 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002185
Al Viroa1e28032009-12-24 02:12:06 -05002186 mutex_lock(&dir->d_inode->i_mutex);
2187
Al Viro6c0d46c2011-03-09 00:59:59 -05002188 dentry = lookup_hash(nd);
2189 error = PTR_ERR(dentry);
2190 if (IS_ERR(dentry)) {
Al Virofb1cc552009-12-24 01:58:28 -05002191 mutex_unlock(&dir->d_inode->i_mutex);
2192 goto exit;
2193 }
2194
Al Viro6c0d46c2011-03-09 00:59:59 -05002195 path->dentry = dentry;
2196 path->mnt = nd->path.mnt;
2197
Al Virofb1cc552009-12-24 01:58:28 -05002198 /* Negative dentry, just create the file */
Al Viro6c0d46c2011-03-09 00:59:59 -05002199 if (!dentry->d_inode) {
2200 int mode = op->mode;
2201 if (!IS_POSIXACL(dir->d_inode))
2202 mode &= ~current_umask();
Al Virofb1cc552009-12-24 01:58:28 -05002203 /*
2204 * This write is needed to ensure that a
Al Viro6c0d46c2011-03-09 00:59:59 -05002205 * rw->ro transition does not occur between
Al Virofb1cc552009-12-24 01:58:28 -05002206 * the time when the file is created and when
2207 * a permanent write count is taken through
2208 * the 'struct file' in nameidata_to_filp().
2209 */
2210 error = mnt_want_write(nd->path.mnt);
2211 if (error)
2212 goto exit_mutex_unlock;
Al Viroca344a892011-03-09 00:36:45 -05002213 want_write = 1;
Al Viro9b44f1b2011-03-09 00:17:27 -05002214 /* Don't check for write permission, don't truncate */
Al Viroca344a892011-03-09 00:36:45 -05002215 open_flag &= ~O_TRUNC;
Al Viro6c0d46c2011-03-09 00:59:59 -05002216 will_truncate = 0;
Al Virobcda7652011-03-13 16:42:14 -04002217 acc_mode = MAY_OPEN;
Al Viro6c0d46c2011-03-09 00:59:59 -05002218 error = security_path_mknod(&nd->path, dentry, mode, 0);
2219 if (error)
2220 goto exit_mutex_unlock;
2221 error = vfs_create(dir->d_inode, dentry, mode, nd);
2222 if (error)
2223 goto exit_mutex_unlock;
2224 mutex_unlock(&dir->d_inode->i_mutex);
2225 dput(nd->path.dentry);
2226 nd->path.dentry = dentry;
Al Viroca344a892011-03-09 00:36:45 -05002227 goto common;
Al Virofb1cc552009-12-24 01:58:28 -05002228 }
2229
2230 /*
2231 * It already exists.
2232 */
2233 mutex_unlock(&dir->d_inode->i_mutex);
2234 audit_inode(pathname, path->dentry);
2235
2236 error = -EEXIST;
Al Viroca344a892011-03-09 00:36:45 -05002237 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002238 goto exit_dput;
2239
David Howells9875cf82011-01-14 18:45:21 +00002240 error = follow_managed(path, nd->flags);
2241 if (error < 0)
2242 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002243
2244 error = -ENOENT;
2245 if (!path->dentry->d_inode)
2246 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002247
2248 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002249 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002250
2251 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002252 nd->inode = path->dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05002253 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002254 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002255 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002256ok:
Al Viro6c0d46c2011-03-09 00:59:59 -05002257 if (!S_ISREG(nd->inode->i_mode))
2258 will_truncate = 0;
2259
Al Viro0f9d1a12011-03-09 00:13:14 -05002260 if (will_truncate) {
2261 error = mnt_want_write(nd->path.mnt);
2262 if (error)
2263 goto exit;
Al Viroca344a892011-03-09 00:36:45 -05002264 want_write = 1;
Al Viro0f9d1a12011-03-09 00:13:14 -05002265 }
Al Viroca344a892011-03-09 00:36:45 -05002266common:
Al Virobcda7652011-03-13 16:42:14 -04002267 error = may_open(&nd->path, acc_mode, open_flag);
Al Viroca344a892011-03-09 00:36:45 -05002268 if (error)
Al Viro0f9d1a12011-03-09 00:13:14 -05002269 goto exit;
Al Viro0f9d1a12011-03-09 00:13:14 -05002270 filp = nameidata_to_filp(nd);
2271 if (!IS_ERR(filp)) {
2272 error = ima_file_check(filp, op->acc_mode);
2273 if (error) {
2274 fput(filp);
2275 filp = ERR_PTR(error);
2276 }
2277 }
2278 if (!IS_ERR(filp)) {
2279 if (will_truncate) {
2280 error = handle_truncate(filp);
2281 if (error) {
2282 fput(filp);
2283 filp = ERR_PTR(error);
2284 }
2285 }
2286 }
Al Viroca344a892011-03-09 00:36:45 -05002287out:
2288 if (want_write)
Al Viro0f9d1a12011-03-09 00:13:14 -05002289 mnt_drop_write(nd->path.mnt);
2290 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002291 return filp;
2292
2293exit_mutex_unlock:
2294 mutex_unlock(&dir->d_inode->i_mutex);
2295exit_dput:
2296 path_put_conditional(path, nd);
2297exit:
Al Viroca344a892011-03-09 00:36:45 -05002298 filp = ERR_PTR(error);
2299 goto out;
Al Virofb1cc552009-12-24 01:58:28 -05002300}
2301
Al Viro13aab422011-02-23 17:54:08 -05002302static struct file *path_openat(int dfd, const char *pathname,
Al Viro73d049a2011-03-11 12:08:24 -05002303 struct nameidata *nd, const struct open_flags *op, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
Al Virofe2d35f2011-03-05 22:58:25 -05002305 struct file *base = NULL;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002306 struct file *filp;
Al Viro9850c052010-01-13 15:01:15 -05002307 struct path path;
Al Viro13aab422011-02-23 17:54:08 -05002308 int error;
Nick Piggin31e6b012011-01-07 17:49:52 +11002309
2310 filp = get_empty_filp();
2311 if (!filp)
2312 return ERR_PTR(-ENFILE);
2313
Al Viro47c805d2011-02-23 17:44:09 -05002314 filp->f_flags = op->open_flag;
Al Viro73d049a2011-03-11 12:08:24 -05002315 nd->intent.open.file = filp;
2316 nd->intent.open.flags = open_to_namei_flags(op->open_flag);
2317 nd->intent.open.create_mode = op->mode;
Nick Piggin31e6b012011-01-07 17:49:52 +11002318
Al Viro73d049a2011-03-11 12:08:24 -05002319 error = path_init(dfd, pathname, flags | LOOKUP_PARENT, nd, &base);
Nick Piggin31e6b012011-01-07 17:49:52 +11002320 if (unlikely(error))
Al Viro13aab422011-02-23 17:54:08 -05002321 goto out_filp;
Nick Piggin31e6b012011-01-07 17:49:52 +11002322
Al Virofe2d35f2011-03-05 22:58:25 -05002323 current->total_link_count = 0;
Al Viro73d049a2011-03-11 12:08:24 -05002324 error = link_path_walk(pathname, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002325 if (unlikely(error))
2326 goto out_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Al Viro73d049a2011-03-11 12:08:24 -05002328 filp = do_last(nd, &path, op, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002329 while (unlikely(!filp)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002330 struct path link = path;
Al Virodef4af32009-12-26 08:37:05 -05002331 void *cookie;
Al Viro574197e2011-03-14 22:20:34 -04002332 if (!(nd->flags & LOOKUP_FOLLOW)) {
Al Viro73d049a2011-03-11 12:08:24 -05002333 path_put_conditional(&path, nd);
2334 path_put(&nd->path);
Al Viro40b39132011-03-09 16:22:18 -05002335 filp = ERR_PTR(-ELOOP);
2336 break;
2337 }
Al Viro73d049a2011-03-11 12:08:24 -05002338 nd->flags |= LOOKUP_PARENT;
2339 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
Al Viro574197e2011-03-14 22:20:34 -04002340 error = follow_link(&link, nd, &cookie);
Al Viroc3e380b2011-02-23 13:39:45 -05002341 if (unlikely(error))
Al Virof1afe9e2011-02-22 22:27:28 -05002342 filp = ERR_PTR(error);
Al Viroc3e380b2011-02-23 13:39:45 -05002343 else
Al Viro73d049a2011-03-11 12:08:24 -05002344 filp = do_last(nd, &path, op, pathname);
Al Viro574197e2011-03-14 22:20:34 -04002345 put_link(nd, &link, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002346 }
Al Viro10fa8e62009-12-26 07:09:49 -05002347out:
Al Viro73d049a2011-03-11 12:08:24 -05002348 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
2349 path_put(&nd->root);
Al Virofe2d35f2011-03-05 22:58:25 -05002350 if (base)
2351 fput(base);
Al Viro73d049a2011-03-11 12:08:24 -05002352 release_open_intent(nd);
Al Viro10fa8e62009-12-26 07:09:49 -05002353 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
Nick Piggin31e6b012011-01-07 17:49:52 +11002355out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002356 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002357 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358}
2359
Al Viro13aab422011-02-23 17:54:08 -05002360struct file *do_filp_open(int dfd, const char *pathname,
2361 const struct open_flags *op, int flags)
2362{
Al Viro73d049a2011-03-11 12:08:24 -05002363 struct nameidata nd;
Al Viro13aab422011-02-23 17:54:08 -05002364 struct file *filp;
2365
Al Viro73d049a2011-03-11 12:08:24 -05002366 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
Al Viro13aab422011-02-23 17:54:08 -05002367 if (unlikely(filp == ERR_PTR(-ECHILD)))
Al Viro73d049a2011-03-11 12:08:24 -05002368 filp = path_openat(dfd, pathname, &nd, op, flags);
Al Viro13aab422011-02-23 17:54:08 -05002369 if (unlikely(filp == ERR_PTR(-ESTALE)))
Al Viro73d049a2011-03-11 12:08:24 -05002370 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
Al Viro13aab422011-02-23 17:54:08 -05002371 return filp;
2372}
2373
Al Viro73d049a2011-03-11 12:08:24 -05002374struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
2375 const char *name, const struct open_flags *op, int flags)
2376{
2377 struct nameidata nd;
2378 struct file *file;
2379
2380 nd.root.mnt = mnt;
2381 nd.root.dentry = dentry;
2382
2383 flags |= LOOKUP_ROOT;
2384
Al Virobcda7652011-03-13 16:42:14 -04002385 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
Al Viro73d049a2011-03-11 12:08:24 -05002386 return ERR_PTR(-ELOOP);
2387
2388 file = path_openat(-1, name, &nd, op, flags | LOOKUP_RCU);
2389 if (unlikely(file == ERR_PTR(-ECHILD)))
2390 file = path_openat(-1, name, &nd, op, flags);
2391 if (unlikely(file == ERR_PTR(-ESTALE)))
2392 file = path_openat(-1, name, &nd, op, flags | LOOKUP_REVAL);
2393 return file;
2394}
2395
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396/**
2397 * lookup_create - lookup a dentry, creating it if it doesn't exist
2398 * @nd: nameidata info
2399 * @is_dir: directory flag
2400 *
2401 * Simple function to lookup and return a dentry and create it
2402 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002403 *
Jan Blunck4ac91372008-02-14 19:34:32 -08002404 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 */
2406struct dentry *lookup_create(struct nameidata *nd, int is_dir)
2407{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002408 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Jan Blunck4ac91372008-02-14 19:34:32 -08002410 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002411 /*
2412 * Yucky last component or no last component at all?
2413 * (foo/., foo/.., /////)
2414 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 if (nd->last_type != LAST_NORM)
2416 goto fail;
2417 nd->flags &= ~LOOKUP_PARENT;
Al Viro35165862008-08-05 03:00:49 -04002418 nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
ASANO Masahiroa6349042006-08-22 20:06:02 -04002419 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002420
2421 /*
2422 * Do the final lookup.
2423 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08002424 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 if (IS_ERR(dentry))
2426 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002427
Al Viroe9baf6e2008-05-15 04:49:12 -04002428 if (dentry->d_inode)
2429 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002430 /*
2431 * Special case - lookup gave negative, but... we had foo/bar/
2432 * From the vfs_mknod() POV we just have a negative dentry -
2433 * all is fine. Let's be bastards - you had / on the end, you've
2434 * been asking for (non-existent) directory. -ENOENT for you.
2435 */
Al Viroe9baf6e2008-05-15 04:49:12 -04002436 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
2437 dput(dentry);
2438 dentry = ERR_PTR(-ENOENT);
2439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002441eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002443 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444fail:
2445 return dentry;
2446}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07002447EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
2449int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2450{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002451 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
2453 if (error)
2454 return error;
2455
Serge E. Hallyne795b712011-03-23 16:43:25 -07002456 if ((S_ISCHR(mode) || S_ISBLK(mode)) &&
2457 !ns_capable(inode_userns(dir), CAP_MKNOD))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 return -EPERM;
2459
Al Viroacfa4382008-12-04 10:06:33 -05002460 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 return -EPERM;
2462
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002463 error = devcgroup_inode_mknod(mode, dev);
2464 if (error)
2465 return error;
2466
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 error = security_inode_mknod(dir, dentry, mode, dev);
2468 if (error)
2469 return error;
2470
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002472 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002473 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 return error;
2475}
2476
Dave Hansen463c3192008-02-15 14:37:57 -08002477static int may_mknod(mode_t mode)
2478{
2479 switch (mode & S_IFMT) {
2480 case S_IFREG:
2481 case S_IFCHR:
2482 case S_IFBLK:
2483 case S_IFIFO:
2484 case S_IFSOCK:
2485 case 0: /* zero mode translates to S_IFREG */
2486 return 0;
2487 case S_IFDIR:
2488 return -EPERM;
2489 default:
2490 return -EINVAL;
2491 }
2492}
2493
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002494SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2495 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496{
Al Viro2ad94ae2008-07-21 09:32:51 -04002497 int error;
2498 char *tmp;
2499 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 struct nameidata nd;
2501
2502 if (S_ISDIR(mode))
2503 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
Al Viro2ad94ae2008-07-21 09:32:51 -04002505 error = user_path_parent(dfd, filename, &nd, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002507 return error;
2508
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 dentry = lookup_create(&nd, 0);
Dave Hansen463c3192008-02-15 14:37:57 -08002510 if (IS_ERR(dentry)) {
2511 error = PTR_ERR(dentry);
2512 goto out_unlock;
2513 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002514 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002515 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002516 error = may_mknod(mode);
2517 if (error)
2518 goto out_dput;
2519 error = mnt_want_write(nd.path.mnt);
2520 if (error)
2521 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002522 error = security_path_mknod(&nd.path, dentry, mode, dev);
2523 if (error)
2524 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002525 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08002527 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528 break;
2529 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002530 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 new_decode_dev(dev));
2532 break;
2533 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002534 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002537out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002538 mnt_drop_write(nd.path.mnt);
2539out_dput:
2540 dput(dentry);
2541out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002542 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002543 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 putname(tmp);
2545
2546 return error;
2547}
2548
Heiko Carstens3480b252009-01-14 14:14:16 +01002549SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002550{
2551 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2552}
2553
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2555{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002556 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557
2558 if (error)
2559 return error;
2560
Al Viroacfa4382008-12-04 10:06:33 -05002561 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 return -EPERM;
2563
2564 mode &= (S_IRWXUGO|S_ISVTX);
2565 error = security_inode_mkdir(dir, dentry, mode);
2566 if (error)
2567 return error;
2568
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002570 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002571 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 return error;
2573}
2574
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002575SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576{
2577 int error = 0;
2578 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002579 struct dentry *dentry;
2580 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Al Viro2ad94ae2008-07-21 09:32:51 -04002582 error = user_path_parent(dfd, pathname, &nd, &tmp);
2583 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002584 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585
Dave Hansen6902d922006-09-30 23:29:01 -07002586 dentry = lookup_create(&nd, 1);
2587 error = PTR_ERR(dentry);
2588 if (IS_ERR(dentry))
2589 goto out_unlock;
2590
Jan Blunck4ac91372008-02-14 19:34:32 -08002591 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002592 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002593 error = mnt_want_write(nd.path.mnt);
2594 if (error)
2595 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002596 error = security_path_mkdir(&nd.path, dentry, mode);
2597 if (error)
2598 goto out_drop_write;
Jan Blunck4ac91372008-02-14 19:34:32 -08002599 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002600out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002601 mnt_drop_write(nd.path.mnt);
2602out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002603 dput(dentry);
2604out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002605 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002606 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002607 putname(tmp);
2608out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 return error;
2610}
2611
Heiko Carstens3cdad422009-01-14 14:14:22 +01002612SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002613{
2614 return sys_mkdirat(AT_FDCWD, pathname, mode);
2615}
2616
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617/*
2618 * We try to drop the dentry early: we should have
2619 * a usage count of 2 if we're the only user of this
2620 * dentry, and if that is true (possibly after pruning
2621 * the dcache), then we drop the dentry now.
2622 *
2623 * A low-level filesystem can, if it choses, legally
2624 * do a
2625 *
2626 * if (!d_unhashed(dentry))
2627 * return -EBUSY;
2628 *
2629 * if it cannot handle the case of removing a directory
2630 * that is still in use by something else..
2631 */
2632void dentry_unhash(struct dentry *dentry)
2633{
2634 dget(dentry);
Vasily Averindc168422006-12-06 20:37:07 -08002635 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 spin_lock(&dentry->d_lock);
Nick Pigginb7ab39f2011-01-07 17:49:32 +11002637 if (dentry->d_count == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 __d_drop(dentry);
2639 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640}
2641
2642int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2643{
2644 int error = may_delete(dir, dentry, 1);
2645
2646 if (error)
2647 return error;
2648
Al Viroacfa4382008-12-04 10:06:33 -05002649 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 return -EPERM;
2651
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002652 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 dentry_unhash(dentry);
2654 if (d_mountpoint(dentry))
2655 error = -EBUSY;
2656 else {
2657 error = security_inode_rmdir(dir, dentry);
2658 if (!error) {
2659 error = dir->i_op->rmdir(dir, dentry);
Al Virod83c49f2010-04-30 17:17:09 -04002660 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 dentry->d_inode->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -04002662 dont_mount(dentry);
2663 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 }
2665 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002666 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 d_delete(dentry);
2669 }
2670 dput(dentry);
2671
2672 return error;
2673}
2674
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002675static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676{
2677 int error = 0;
2678 char * name;
2679 struct dentry *dentry;
2680 struct nameidata nd;
2681
Al Viro2ad94ae2008-07-21 09:32:51 -04002682 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002684 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685
2686 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002687 case LAST_DOTDOT:
2688 error = -ENOTEMPTY;
2689 goto exit1;
2690 case LAST_DOT:
2691 error = -EINVAL;
2692 goto exit1;
2693 case LAST_ROOT:
2694 error = -EBUSY;
2695 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002697
2698 nd.flags &= ~LOOKUP_PARENT;
2699
Jan Blunck4ac91372008-02-14 19:34:32 -08002700 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002701 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002703 if (IS_ERR(dentry))
2704 goto exit2;
Dave Hansen06227532008-02-15 14:37:34 -08002705 error = mnt_want_write(nd.path.mnt);
2706 if (error)
2707 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002708 error = security_path_rmdir(&nd.path, dentry);
2709 if (error)
2710 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002711 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002712exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002713 mnt_drop_write(nd.path.mnt);
2714exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002715 dput(dentry);
2716exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002717 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002719 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 putname(name);
2721 return error;
2722}
2723
Heiko Carstens3cdad422009-01-14 14:14:22 +01002724SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002725{
2726 return do_rmdir(AT_FDCWD, pathname);
2727}
2728
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729int vfs_unlink(struct inode *dir, struct dentry *dentry)
2730{
2731 int error = may_delete(dir, dentry, 0);
2732
2733 if (error)
2734 return error;
2735
Al Viroacfa4382008-12-04 10:06:33 -05002736 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 return -EPERM;
2738
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002739 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 if (d_mountpoint(dentry))
2741 error = -EBUSY;
2742 else {
2743 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002744 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002746 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002747 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002750 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
2752 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2753 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002754 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756 }
Robert Love0eeca282005-07-12 17:06:03 -04002757
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 return error;
2759}
2760
2761/*
2762 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002763 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 * writeout happening, and we don't want to prevent access to the directory
2765 * while waiting on the I/O.
2766 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002767static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768{
Al Viro2ad94ae2008-07-21 09:32:51 -04002769 int error;
2770 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 struct dentry *dentry;
2772 struct nameidata nd;
2773 struct inode *inode = NULL;
2774
Al Viro2ad94ae2008-07-21 09:32:51 -04002775 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002777 return error;
2778
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 error = -EISDIR;
2780 if (nd.last_type != LAST_NORM)
2781 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002782
2783 nd.flags &= ~LOOKUP_PARENT;
2784
Jan Blunck4ac91372008-02-14 19:34:32 -08002785 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002786 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 error = PTR_ERR(dentry);
2788 if (!IS_ERR(dentry)) {
2789 /* Why not before? Because we want correct error value */
2790 if (nd.last.name[nd.last.len])
2791 goto slashes;
2792 inode = dentry->d_inode;
2793 if (inode)
Al Viro7de9c6ee2010-10-23 11:11:40 -04002794 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002795 error = mnt_want_write(nd.path.mnt);
2796 if (error)
2797 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002798 error = security_path_unlink(&nd.path, dentry);
2799 if (error)
2800 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002801 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002802exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002803 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 exit2:
2805 dput(dentry);
2806 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002807 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 if (inode)
2809 iput(inode); /* truncate the inode here */
2810exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002811 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 putname(name);
2813 return error;
2814
2815slashes:
2816 error = !dentry->d_inode ? -ENOENT :
2817 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2818 goto exit2;
2819}
2820
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002821SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002822{
2823 if ((flag & ~AT_REMOVEDIR) != 0)
2824 return -EINVAL;
2825
2826 if (flag & AT_REMOVEDIR)
2827 return do_rmdir(dfd, pathname);
2828
2829 return do_unlinkat(dfd, pathname);
2830}
2831
Heiko Carstens3480b252009-01-14 14:14:16 +01002832SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002833{
2834 return do_unlinkat(AT_FDCWD, pathname);
2835}
2836
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002837int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002839 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
2841 if (error)
2842 return error;
2843
Al Viroacfa4382008-12-04 10:06:33 -05002844 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 return -EPERM;
2846
2847 error = security_inode_symlink(dir, dentry, oldname);
2848 if (error)
2849 return error;
2850
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002852 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002853 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 return error;
2855}
2856
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002857SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2858 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859{
Al Viro2ad94ae2008-07-21 09:32:51 -04002860 int error;
2861 char *from;
2862 char *to;
Dave Hansen6902d922006-09-30 23:29:01 -07002863 struct dentry *dentry;
2864 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
2866 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002867 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002869
2870 error = user_path_parent(newdfd, newname, &nd, &to);
2871 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002872 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Dave Hansen6902d922006-09-30 23:29:01 -07002874 dentry = lookup_create(&nd, 0);
2875 error = PTR_ERR(dentry);
2876 if (IS_ERR(dentry))
2877 goto out_unlock;
2878
Dave Hansen75c3f292008-02-15 14:37:45 -08002879 error = mnt_want_write(nd.path.mnt);
2880 if (error)
2881 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002882 error = security_path_symlink(&nd.path, dentry, from);
2883 if (error)
2884 goto out_drop_write;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002885 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002886out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002887 mnt_drop_write(nd.path.mnt);
2888out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002889 dput(dentry);
2890out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002891 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002892 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002893 putname(to);
2894out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 putname(from);
2896 return error;
2897}
2898
Heiko Carstens3480b252009-01-14 14:14:16 +01002899SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002900{
2901 return sys_symlinkat(oldname, AT_FDCWD, newname);
2902}
2903
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2905{
2906 struct inode *inode = old_dentry->d_inode;
2907 int error;
2908
2909 if (!inode)
2910 return -ENOENT;
2911
Miklos Szeredia95164d2008-07-30 15:08:48 +02002912 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 if (error)
2914 return error;
2915
2916 if (dir->i_sb != inode->i_sb)
2917 return -EXDEV;
2918
2919 /*
2920 * A link to an append-only or immutable file cannot be created.
2921 */
2922 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2923 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05002924 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002926 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 return -EPERM;
2928
2929 error = security_inode_link(old_dentry, dir, new_dentry);
2930 if (error)
2931 return error;
2932
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002933 mutex_lock(&inode->i_mutex);
Aneesh Kumar K.Vaae8a972011-01-29 18:43:27 +05302934 /* Make sure we don't allow creating hardlink to an unlinked file */
2935 if (inode->i_nlink == 0)
2936 error = -ENOENT;
2937 else
2938 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002939 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002940 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002941 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 return error;
2943}
2944
2945/*
2946 * Hardlinks are often used in delicate situations. We avoid
2947 * security-related surprises by not following symlinks on the
2948 * newname. --KAB
2949 *
2950 * We don't follow them on the oldname either to be compatible
2951 * with linux 2.0, and to avoid hard-linking to directories
2952 * and other special files. --ADM
2953 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002954SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2955 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956{
2957 struct dentry *new_dentry;
Al Viro2d8f3032008-07-22 09:59:21 -04002958 struct nameidata nd;
2959 struct path old_path;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302960 int how = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 int error;
Al Viro2ad94ae2008-07-21 09:32:51 -04002962 char *to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302964 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002965 return -EINVAL;
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302966 /*
2967 * To use null names we require CAP_DAC_READ_SEARCH
2968 * This ensures that not everyone will be able to create
2969 * handlink using the passed filedescriptor.
2970 */
2971 if (flags & AT_EMPTY_PATH) {
2972 if (!capable(CAP_DAC_READ_SEARCH))
2973 return -ENOENT;
2974 how = LOOKUP_EMPTY;
2975 }
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002976
Aneesh Kumar K.V11a7b372011-01-29 18:43:42 +05302977 if (flags & AT_SYMLINK_FOLLOW)
2978 how |= LOOKUP_FOLLOW;
2979
2980 error = user_path_at(olddfd, oldname, how, &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002982 return error;
2983
2984 error = user_path_parent(newdfd, newname, &nd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 if (error)
2986 goto out;
2987 error = -EXDEV;
Al Viro2d8f3032008-07-22 09:59:21 -04002988 if (old_path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 goto out_release;
2990 new_dentry = lookup_create(&nd, 0);
2991 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002992 if (IS_ERR(new_dentry))
2993 goto out_unlock;
Dave Hansen75c3f292008-02-15 14:37:45 -08002994 error = mnt_want_write(nd.path.mnt);
2995 if (error)
2996 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002997 error = security_path_link(old_path.dentry, &nd.path, new_dentry);
2998 if (error)
2999 goto out_drop_write;
Al Viro2d8f3032008-07-22 09:59:21 -04003000 error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003001out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08003002 mnt_drop_write(nd.path.mnt);
3003out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07003004 dput(new_dentry);
3005out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08003006 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08003008 path_put(&nd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003009 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010out:
Al Viro2d8f3032008-07-22 09:59:21 -04003011 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
3013 return error;
3014}
3015
Heiko Carstens3480b252009-01-14 14:14:16 +01003016SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003017{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003018 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003019}
3020
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021/*
3022 * The worst of all namespace operations - renaming directory. "Perverted"
3023 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3024 * Problems:
3025 * a) we can get into loop creation. Check is done in is_subdir().
3026 * b) race potential - two innocent renames can create a loop together.
3027 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003028 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 * story.
3030 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003031 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 * whether the target exists). Solution: try to be smart with locking
3033 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003034 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 * move will be locked. Thus we can rank directories by the tree
3036 * (ancestors first) and rank all non-directories after them.
3037 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003038 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 * HOWEVER, it relies on the assumption that any object with ->lookup()
3040 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3041 * we'd better make sure that there's no link(2) for them.
3042 * d) some filesystems don't support opened-but-unlinked directories,
3043 * either because of layout or because they are not ready to deal with
3044 * all cases correctly. The latter will be fixed (taking this sort of
3045 * stuff into VFS), but the former is not going away. Solution: the same
3046 * trick as in rmdir().
3047 * e) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003048 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003050 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 * locking].
3052 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07003053static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3054 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055{
3056 int error = 0;
3057 struct inode *target;
3058
3059 /*
3060 * If we are going to change the parent - check write permissions,
3061 * we'll need to flip '..'.
3062 */
3063 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04003064 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 if (error)
3066 return error;
3067 }
3068
3069 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3070 if (error)
3071 return error;
3072
3073 target = new_dentry->d_inode;
Al Virod83c49f2010-04-30 17:17:09 -04003074 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003075 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3077 error = -EBUSY;
Al Virod83c49f2010-04-30 17:17:09 -04003078 else {
3079 if (target)
3080 dentry_unhash(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
Al Virod83c49f2010-04-30 17:17:09 -04003082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 if (target) {
Al Virod83c49f2010-04-30 17:17:09 -04003084 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 target->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -04003086 dont_mount(new_dentry);
3087 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003088 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 if (d_unhashed(new_dentry))
3090 d_rehash(new_dentry);
3091 dput(new_dentry);
3092 }
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003093 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003094 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3095 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 return error;
3097}
3098
Adrian Bunk75c96f82005-05-05 16:16:09 -07003099static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3100 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101{
3102 struct inode *target;
3103 int error;
3104
3105 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3106 if (error)
3107 return error;
3108
3109 dget(new_dentry);
3110 target = new_dentry->d_inode;
3111 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003112 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3114 error = -EBUSY;
3115 else
3116 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3117 if (!error) {
Al Virobec10522010-03-03 14:12:08 -05003118 if (target)
Al Virod83c49f2010-04-30 17:17:09 -04003119 dont_mount(new_dentry);
Mark Fasheh349457c2006-09-08 14:22:21 -07003120 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 d_move(old_dentry, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 }
3123 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003124 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 dput(new_dentry);
3126 return error;
3127}
3128
3129int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3130 struct inode *new_dir, struct dentry *new_dentry)
3131{
3132 int error;
3133 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003134 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135
3136 if (old_dentry->d_inode == new_dentry->d_inode)
3137 return 0;
3138
3139 error = may_delete(old_dir, old_dentry, is_dir);
3140 if (error)
3141 return error;
3142
3143 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003144 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 else
3146 error = may_delete(new_dir, new_dentry, is_dir);
3147 if (error)
3148 return error;
3149
Al Viroacfa4382008-12-04 10:06:33 -05003150 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 return -EPERM;
3152
Robert Love0eeca282005-07-12 17:06:03 -04003153 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3154
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 if (is_dir)
3156 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3157 else
3158 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003159 if (!error)
3160 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003161 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003162 fsnotify_oldname_free(old_name);
3163
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 return error;
3165}
3166
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003167SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3168 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169{
Al Viro2ad94ae2008-07-21 09:32:51 -04003170 struct dentry *old_dir, *new_dir;
3171 struct dentry *old_dentry, *new_dentry;
3172 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003174 char *from;
3175 char *to;
3176 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177
Al Viro2ad94ae2008-07-21 09:32:51 -04003178 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 if (error)
3180 goto exit;
3181
Al Viro2ad94ae2008-07-21 09:32:51 -04003182 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 if (error)
3184 goto exit1;
3185
3186 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003187 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 goto exit2;
3189
Jan Blunck4ac91372008-02-14 19:34:32 -08003190 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 error = -EBUSY;
3192 if (oldnd.last_type != LAST_NORM)
3193 goto exit2;
3194
Jan Blunck4ac91372008-02-14 19:34:32 -08003195 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196 if (newnd.last_type != LAST_NORM)
3197 goto exit2;
3198
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003199 oldnd.flags &= ~LOOKUP_PARENT;
3200 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003201 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003202
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 trap = lock_rename(new_dir, old_dir);
3204
Christoph Hellwig49705b72005-11-08 21:35:06 -08003205 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 error = PTR_ERR(old_dentry);
3207 if (IS_ERR(old_dentry))
3208 goto exit3;
3209 /* source must exist */
3210 error = -ENOENT;
3211 if (!old_dentry->d_inode)
3212 goto exit4;
3213 /* unless the source is a directory trailing slashes give -ENOTDIR */
3214 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3215 error = -ENOTDIR;
3216 if (oldnd.last.name[oldnd.last.len])
3217 goto exit4;
3218 if (newnd.last.name[newnd.last.len])
3219 goto exit4;
3220 }
3221 /* source should not be ancestor of target */
3222 error = -EINVAL;
3223 if (old_dentry == trap)
3224 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003225 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 error = PTR_ERR(new_dentry);
3227 if (IS_ERR(new_dentry))
3228 goto exit4;
3229 /* target should not be an ancestor of source */
3230 error = -ENOTEMPTY;
3231 if (new_dentry == trap)
3232 goto exit5;
3233
Dave Hansen9079b1e2008-02-15 14:37:49 -08003234 error = mnt_want_write(oldnd.path.mnt);
3235 if (error)
3236 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003237 error = security_path_rename(&oldnd.path, old_dentry,
3238 &newnd.path, new_dentry);
3239 if (error)
3240 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 error = vfs_rename(old_dir->d_inode, old_dentry,
3242 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003243exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003244 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245exit5:
3246 dput(new_dentry);
3247exit4:
3248 dput(old_dentry);
3249exit3:
3250 unlock_rename(new_dir, old_dir);
3251exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003252 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003253 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003255 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003257exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 return error;
3259}
3260
Heiko Carstensa26eab22009-01-14 14:14:17 +01003261SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003262{
3263 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3264}
3265
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3267{
3268 int len;
3269
3270 len = PTR_ERR(link);
3271 if (IS_ERR(link))
3272 goto out;
3273
3274 len = strlen(link);
3275 if (len > (unsigned) buflen)
3276 len = buflen;
3277 if (copy_to_user(buffer, link, len))
3278 len = -EFAULT;
3279out:
3280 return len;
3281}
3282
3283/*
3284 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3285 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3286 * using) it for any given inode is up to filesystem.
3287 */
3288int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3289{
3290 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003291 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003292 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003293
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003295 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003296 if (IS_ERR(cookie))
3297 return PTR_ERR(cookie);
3298
3299 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3300 if (dentry->d_inode->i_op->put_link)
3301 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3302 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303}
3304
3305int vfs_follow_link(struct nameidata *nd, const char *link)
3306{
3307 return __vfs_follow_link(nd, link);
3308}
3309
3310/* get the link contents into pagecache */
3311static char *page_getlink(struct dentry * dentry, struct page **ppage)
3312{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003313 char *kaddr;
3314 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003316 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003318 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003320 kaddr = kmap(page);
3321 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3322 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323}
3324
3325int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3326{
3327 struct page *page = NULL;
3328 char *s = page_getlink(dentry, &page);
3329 int res = vfs_readlink(dentry,buffer,buflen,s);
3330 if (page) {
3331 kunmap(page);
3332 page_cache_release(page);
3333 }
3334 return res;
3335}
3336
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003337void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003339 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003341 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342}
3343
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003344void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003346 struct page *page = cookie;
3347
3348 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 kunmap(page);
3350 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 }
3352}
3353
Nick Piggin54566b22009-01-04 12:00:53 -08003354/*
3355 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3356 */
3357int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358{
3359 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003360 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003361 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003362 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003364 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3365 if (nofs)
3366 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367
NeilBrown7e53cac2006-03-25 03:07:57 -08003368retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003369 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003370 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003372 goto fail;
3373
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 kaddr = kmap_atomic(page, KM_USER0);
3375 memcpy(kaddr, symname, len-1);
3376 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07003377
3378 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3379 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 if (err < 0)
3381 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003382 if (err < len-1)
3383 goto retry;
3384
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 mark_inode_dirty(inode);
3386 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387fail:
3388 return err;
3389}
3390
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003391int page_symlink(struct inode *inode, const char *symname, int len)
3392{
3393 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003394 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003395}
3396
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003397const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 .readlink = generic_readlink,
3399 .follow_link = page_follow_link_light,
3400 .put_link = page_put_link,
3401};
3402
Al Viro2d8f3032008-07-22 09:59:21 -04003403EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003404EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003405EXPORT_SYMBOL(follow_down);
3406EXPORT_SYMBOL(follow_up);
3407EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3408EXPORT_SYMBOL(getname);
3409EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410EXPORT_SYMBOL(lookup_one_len);
3411EXPORT_SYMBOL(page_follow_link_light);
3412EXPORT_SYMBOL(page_put_link);
3413EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003414EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415EXPORT_SYMBOL(page_symlink);
3416EXPORT_SYMBOL(page_symlink_inode_operations);
Al Viroc9c6cac2011-02-16 15:15:47 -05003417EXPORT_SYMBOL(kern_path_parent);
Al Virod1811462008-08-02 00:49:18 -04003418EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003419EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003420EXPORT_SYMBOL(inode_permission);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -08003421EXPORT_SYMBOL(file_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422EXPORT_SYMBOL(unlock_rename);
3423EXPORT_SYMBOL(vfs_create);
3424EXPORT_SYMBOL(vfs_follow_link);
3425EXPORT_SYMBOL(vfs_link);
3426EXPORT_SYMBOL(vfs_mkdir);
3427EXPORT_SYMBOL(vfs_mknod);
3428EXPORT_SYMBOL(generic_permission);
3429EXPORT_SYMBOL(vfs_readlink);
3430EXPORT_SYMBOL(vfs_rename);
3431EXPORT_SYMBOL(vfs_rmdir);
3432EXPORT_SYMBOL(vfs_symlink);
3433EXPORT_SYMBOL(vfs_unlink);
3434EXPORT_SYMBOL(dentry_unhash);
3435EXPORT_SYMBOL(generic_readlink);