blob: 8f10a9ff9f6b8a37a77d21f94b64b43435501055 [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
139char * getname(const char __user * filename)
140{
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) {
150 __putname(tmp);
151 result = ERR_PTR(retval);
152 }
153 }
154 audit_getname(result);
155 return result;
156}
157
158#ifdef CONFIG_AUDITSYSCALL
159void putname(const char *name)
160{
Al Viro5ac3a9c2006-07-16 06:38:45 -0400161 if (unlikely(!audit_dummy_context()))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 audit_putname(name);
163 else
164 __putname(name);
165}
166EXPORT_SYMBOL(putname);
167#endif
168
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700169/*
170 * This does basic POSIX ACL permission checking
171 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100172static int acl_permission_check(struct inode *inode, int mask, unsigned int flags,
173 int (*check_acl)(struct inode *inode, int mask, unsigned int flags))
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700174{
175 umode_t mode = inode->i_mode;
176
177 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
178
179 if (current_fsuid() == inode->i_uid)
180 mode >>= 6;
181 else {
182 if (IS_POSIXACL(inode) && (mode & S_IRWXG) && check_acl) {
Nick Pigginb74c79e2011-01-07 17:49:58 +1100183 int error = check_acl(inode, mask, flags);
184 if (error != -EAGAIN)
185 return error;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700186 }
187
188 if (in_group_p(inode->i_gid))
189 mode >>= 3;
190 }
191
192 /*
193 * If the DACs are ok we don't need any capability check.
194 */
195 if ((mask & ~mode) == 0)
196 return 0;
197 return -EACCES;
198}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200/**
Nick Pigginb74c79e2011-01-07 17:49:58 +1100201 * generic_permission - check for access rights on a Posix-like filesystem
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 * @inode: inode to check access rights for
203 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
204 * @check_acl: optional callback to check for Posix ACLs
Randy Dunlap39191622011-01-08 19:36:21 -0800205 * @flags: IPERM_FLAG_ flags.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 *
207 * Used to check for read/write/execute permissions on a file.
208 * We use "fsuid" for this, letting us set arbitrary permissions
209 * for filesystem access without changing the "normal" uids which
Nick Pigginb74c79e2011-01-07 17:49:58 +1100210 * are used for other things.
211 *
212 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
213 * request cannot be satisfied (eg. requires blocking or too much complexity).
214 * It would then be called again in ref-walk mode.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100216int generic_permission(struct inode *inode, int mask, unsigned int flags,
217 int (*check_acl)(struct inode *inode, int mask, unsigned int flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700219 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221 /*
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700222 * Do the basic POSIX ACL permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100224 ret = acl_permission_check(inode, mask, flags, check_acl);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700225 if (ret != -EACCES)
226 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 /*
229 * Read/write DACs are always overridable.
230 * Executable DACs are overridable if at least one exec bit is set.
231 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200232 if (!(mask & MAY_EXEC) || execute_ok(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (capable(CAP_DAC_OVERRIDE))
234 return 0;
235
236 /*
237 * Searching includes executable on directories, else just read.
238 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600239 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
241 if (capable(CAP_DAC_READ_SEARCH))
242 return 0;
243
244 return -EACCES;
245}
246
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200247/**
248 * inode_permission - check for access rights to a given inode
249 * @inode: inode to check permission on
250 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
251 *
252 * Used to check for read/write/execute permissions on an inode.
253 * We use "fsuid" for this, letting us set arbitrary permissions
254 * for filesystem access without changing the "normal" uids which
255 * are used for other things.
256 */
Al Virof419a2e2008-07-22 00:07:17 -0400257int inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
Al Viroe6305c42008-07-15 21:03:57 -0400259 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 if (mask & MAY_WRITE) {
Miklos Szeredi22590e42007-10-16 23:27:08 -0700262 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 /*
265 * Nobody gets write access to a read-only fs.
266 */
267 if (IS_RDONLY(inode) &&
268 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
269 return -EROFS;
270
271 /*
272 * Nobody gets write access to an immutable file.
273 */
274 if (IS_IMMUTABLE(inode))
275 return -EACCES;
276 }
277
Al Viroacfa4382008-12-04 10:06:33 -0500278 if (inode->i_op->permission)
Nick Pigginb74c79e2011-01-07 17:49:58 +1100279 retval = inode->i_op->permission(inode, mask, 0);
Miklos Szeredif696a362008-07-31 13:41:58 +0200280 else
Nick Pigginb74c79e2011-01-07 17:49:58 +1100281 retval = generic_permission(inode, mask, 0,
282 inode->i_op->check_acl);
Miklos Szeredif696a362008-07-31 13:41:58 +0200283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 if (retval)
285 return retval;
286
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700287 retval = devcgroup_inode_permission(inode, mask);
288 if (retval)
289 return retval;
290
Eric Parisd09ca732010-07-23 11:43:57 -0400291 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800294/**
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800295 * file_permission - check for additional access rights to a given file
296 * @file: file to check access rights for
297 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
298 *
299 * Used to check for read/write/execute permissions on an already opened
300 * file.
301 *
302 * Note:
303 * Do not use this function in new code. All access checks should
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200304 * be done using inode_permission().
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800305 */
306int file_permission(struct file *file, int mask)
307{
Al Virof419a2e2008-07-22 00:07:17 -0400308 return inode_permission(file->f_path.dentry->d_inode, mask);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800309}
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311/*
312 * get_write_access() gets write permission for a file.
313 * put_write_access() releases this write permission.
314 * This is used for regular files.
315 * We cannot support write (and maybe mmap read-write shared) accesses and
316 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
317 * can have the following values:
318 * 0: no writers, no VM_DENYWRITE mappings
319 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
320 * > 0: (i_writecount) users are writing to the file.
321 *
322 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
323 * except for the cases where we don't hold i_writecount yet. Then we need to
324 * use {get,deny}_write_access() - these functions check the sign and refuse
325 * to do the change if sign is wrong. Exclusion between them is provided by
326 * the inode->i_lock spinlock.
327 */
328
329int get_write_access(struct inode * inode)
330{
331 spin_lock(&inode->i_lock);
332 if (atomic_read(&inode->i_writecount) < 0) {
333 spin_unlock(&inode->i_lock);
334 return -ETXTBSY;
335 }
336 atomic_inc(&inode->i_writecount);
337 spin_unlock(&inode->i_lock);
338
339 return 0;
340}
341
342int deny_write_access(struct file * file)
343{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800344 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346 spin_lock(&inode->i_lock);
347 if (atomic_read(&inode->i_writecount) > 0) {
348 spin_unlock(&inode->i_lock);
349 return -ETXTBSY;
350 }
351 atomic_dec(&inode->i_writecount);
352 spin_unlock(&inode->i_lock);
353
354 return 0;
355}
356
Jan Blunck1d957f92008-02-14 19:34:35 -0800357/**
Jan Blunck5dd784d02008-02-14 19:34:38 -0800358 * path_get - get a reference to a path
359 * @path: path to get the reference to
360 *
361 * Given a path increment the reference count to the dentry and the vfsmount.
362 */
363void path_get(struct path *path)
364{
365 mntget(path->mnt);
366 dget(path->dentry);
367}
368EXPORT_SYMBOL(path_get);
369
370/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800371 * path_put - put a reference to a path
372 * @path: path to put the reference to
373 *
374 * Given a path decrement the reference count to the dentry and the vfsmount.
375 */
376void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Jan Blunck1d957f92008-02-14 19:34:35 -0800378 dput(path->dentry);
379 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380}
Jan Blunck1d957f92008-02-14 19:34:35 -0800381EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
Trond Myklebust834f2a42005-10-18 14:20:16 -0700383/**
Nick Piggin31e6b012011-01-07 17:49:52 +1100384 * nameidata_drop_rcu - drop this nameidata out of rcu-walk
385 * @nd: nameidata pathwalk data to drop
Randy Dunlap39191622011-01-08 19:36:21 -0800386 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100387 *
388 * Path walking has 2 modes, rcu-walk and ref-walk (see
389 * Documentation/filesystems/path-lookup.txt). __drop_rcu* functions attempt
390 * to drop out of rcu-walk mode and take normal reference counts on dentries
391 * and vfsmounts to transition to rcu-walk mode. __drop_rcu* functions take
392 * refcounts at the last known good point before rcu-walk got stuck, so
393 * ref-walk may continue from there. If this is not successful (eg. a seqcount
394 * has changed), then failure is returned and path walk restarts from the
395 * beginning in ref-walk mode.
396 *
397 * nameidata_drop_rcu attempts to drop the current nd->path and nd->root into
398 * ref-walk. Must be called from rcu-walk context.
399 */
400static int nameidata_drop_rcu(struct nameidata *nd)
401{
402 struct fs_struct *fs = current->fs;
403 struct dentry *dentry = nd->path.dentry;
404
405 BUG_ON(!(nd->flags & LOOKUP_RCU));
406 if (nd->root.mnt) {
407 spin_lock(&fs->lock);
408 if (nd->root.mnt != fs->root.mnt ||
409 nd->root.dentry != fs->root.dentry)
410 goto err_root;
411 }
412 spin_lock(&dentry->d_lock);
413 if (!__d_rcu_to_refcount(dentry, nd->seq))
414 goto err;
415 BUG_ON(nd->inode != dentry->d_inode);
416 spin_unlock(&dentry->d_lock);
417 if (nd->root.mnt) {
418 path_get(&nd->root);
419 spin_unlock(&fs->lock);
420 }
421 mntget(nd->path.mnt);
422
423 rcu_read_unlock();
424 br_read_unlock(vfsmount_lock);
425 nd->flags &= ~LOOKUP_RCU;
426 return 0;
427err:
428 spin_unlock(&dentry->d_lock);
429err_root:
430 if (nd->root.mnt)
431 spin_unlock(&fs->lock);
432 return -ECHILD;
433}
434
435/* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing. */
436static inline int nameidata_drop_rcu_maybe(struct nameidata *nd)
437{
438 if (nd->flags & LOOKUP_RCU)
439 return nameidata_drop_rcu(nd);
440 return 0;
441}
442
443/**
444 * nameidata_dentry_drop_rcu - drop nameidata and dentry out of rcu-walk
445 * @nd: nameidata pathwalk data to drop
446 * @dentry: dentry to drop
Randy Dunlap39191622011-01-08 19:36:21 -0800447 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100448 *
449 * nameidata_dentry_drop_rcu attempts to drop the current nd->path and nd->root,
450 * and dentry into ref-walk. @dentry must be a path found by a do_lookup call on
451 * @nd. Must be called from rcu-walk context.
452 */
453static int nameidata_dentry_drop_rcu(struct nameidata *nd, struct dentry *dentry)
454{
455 struct fs_struct *fs = current->fs;
456 struct dentry *parent = nd->path.dentry;
457
458 BUG_ON(!(nd->flags & LOOKUP_RCU));
459 if (nd->root.mnt) {
460 spin_lock(&fs->lock);
461 if (nd->root.mnt != fs->root.mnt ||
462 nd->root.dentry != fs->root.dentry)
463 goto err_root;
464 }
465 spin_lock(&parent->d_lock);
466 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
467 if (!__d_rcu_to_refcount(dentry, nd->seq))
468 goto err;
469 /*
470 * If the sequence check on the child dentry passed, then the child has
471 * not been removed from its parent. This means the parent dentry must
472 * be valid and able to take a reference at this point.
473 */
474 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
475 BUG_ON(!parent->d_count);
476 parent->d_count++;
477 spin_unlock(&dentry->d_lock);
478 spin_unlock(&parent->d_lock);
479 if (nd->root.mnt) {
480 path_get(&nd->root);
481 spin_unlock(&fs->lock);
482 }
483 mntget(nd->path.mnt);
484
485 rcu_read_unlock();
486 br_read_unlock(vfsmount_lock);
487 nd->flags &= ~LOOKUP_RCU;
488 return 0;
489err:
490 spin_unlock(&dentry->d_lock);
491 spin_unlock(&parent->d_lock);
492err_root:
493 if (nd->root.mnt)
494 spin_unlock(&fs->lock);
495 return -ECHILD;
496}
497
498/* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing. */
499static inline int nameidata_dentry_drop_rcu_maybe(struct nameidata *nd, struct dentry *dentry)
500{
501 if (nd->flags & LOOKUP_RCU)
502 return nameidata_dentry_drop_rcu(nd, dentry);
503 return 0;
504}
505
506/**
507 * nameidata_drop_rcu_last - drop nameidata ending path walk out of rcu-walk
508 * @nd: nameidata pathwalk data to drop
Randy Dunlap39191622011-01-08 19:36:21 -0800509 * Returns: 0 on success, -ECHILD on failure
Nick Piggin31e6b012011-01-07 17:49:52 +1100510 *
511 * nameidata_drop_rcu_last attempts to drop the current nd->path into ref-walk.
512 * nd->path should be the final element of the lookup, so nd->root is discarded.
513 * Must be called from rcu-walk context.
514 */
515static int nameidata_drop_rcu_last(struct nameidata *nd)
516{
517 struct dentry *dentry = nd->path.dentry;
518
519 BUG_ON(!(nd->flags & LOOKUP_RCU));
520 nd->flags &= ~LOOKUP_RCU;
521 nd->root.mnt = NULL;
522 spin_lock(&dentry->d_lock);
523 if (!__d_rcu_to_refcount(dentry, nd->seq))
524 goto err_unlock;
525 BUG_ON(nd->inode != dentry->d_inode);
526 spin_unlock(&dentry->d_lock);
527
528 mntget(nd->path.mnt);
529
530 rcu_read_unlock();
531 br_read_unlock(vfsmount_lock);
532
533 return 0;
534
535err_unlock:
536 spin_unlock(&dentry->d_lock);
537 rcu_read_unlock();
538 br_read_unlock(vfsmount_lock);
539 return -ECHILD;
540}
541
Nick Piggin31e6b012011-01-07 17:49:52 +1100542/**
Trond Myklebust834f2a42005-10-18 14:20:16 -0700543 * release_open_intent - free up open intent resources
544 * @nd: pointer to nameidata
545 */
546void release_open_intent(struct nameidata *nd)
547{
Linus Torvalds2dab5972011-02-11 15:53:38 -0800548 struct file *file = nd->intent.open.file;
549
550 if (file && !IS_ERR(file)) {
551 if (file->f_path.dentry == NULL)
552 put_filp(file);
553 else
554 fput(file);
555 }
Trond Myklebust834f2a42005-10-18 14:20:16 -0700556}
557
Al Virof60aef72011-02-15 01:35:28 -0500558static inline int d_revalidate(struct dentry *dentry, struct nameidata *nd)
Nick Piggin34286d62011-01-07 17:49:57 +1100559{
Al Virof60aef72011-02-15 01:35:28 -0500560 return dentry->d_op->d_revalidate(dentry, nd);
Nick Piggin34286d62011-01-07 17:49:57 +1100561}
562
Al Virof5e1c1c2011-02-15 01:32:55 -0500563static struct dentry *
Ian Kentbcdc5e02006-09-27 01:50:44 -0700564do_revalidate(struct dentry *dentry, struct nameidata *nd)
565{
Al Virof5e1c1c2011-02-15 01:32:55 -0500566 int status = d_revalidate(dentry, nd);
Ian Kentbcdc5e02006-09-27 01:50:44 -0700567 if (unlikely(status <= 0)) {
568 /*
569 * The dentry failed validation.
570 * If d_revalidate returned 0 attempt to invalidate
571 * the dentry otherwise d_revalidate is asking us
572 * to return a fail status.
573 */
Nick Piggin34286d62011-01-07 17:49:57 +1100574 if (status < 0) {
Al Virof5e1c1c2011-02-15 01:32:55 -0500575 dput(dentry);
Nick Piggin34286d62011-01-07 17:49:57 +1100576 dentry = ERR_PTR(status);
Al Virof5e1c1c2011-02-15 01:32:55 -0500577 } else if (!d_invalidate(dentry)) {
578 dput(dentry);
579 dentry = NULL;
Ian Kentbcdc5e02006-09-27 01:50:44 -0700580 }
581 }
582 return dentry;
583}
584
Al Virof5e1c1c2011-02-15 01:32:55 -0500585static inline struct dentry *
586do_revalidate_rcu(struct dentry *dentry, struct nameidata *nd)
587{
Al Virof60aef72011-02-15 01:35:28 -0500588 int status = d_revalidate(dentry, nd);
Al Virof5e1c1c2011-02-15 01:32:55 -0500589 if (likely(status > 0))
590 return dentry;
591 if (status == -ECHILD) {
592 if (nameidata_dentry_drop_rcu(nd, dentry))
593 return ERR_PTR(-ECHILD);
594 return do_revalidate(dentry, nd);
595 }
596 if (status < 0)
597 return ERR_PTR(status);
598 /* Don't d_invalidate in rcu-walk mode */
599 if (nameidata_dentry_drop_rcu(nd, dentry))
600 return ERR_PTR(-ECHILD);
601 if (!d_invalidate(dentry)) {
602 dput(dentry);
603 dentry = NULL;
604 }
605 return dentry;
606}
607
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608/*
Al Viro16c2cd72011-02-22 15:50:10 -0500609 * handle_reval_path - force revalidation of a dentry
Jeff Layton39159de2009-12-07 12:01:50 -0500610 *
611 * In some situations the path walking code will trust dentries without
612 * revalidating them. This causes problems for filesystems that depend on
613 * d_revalidate to handle file opens (e.g. NFSv4). When FS_REVAL_DOT is set
614 * (which indicates that it's possible for the dentry to go stale), force
615 * a d_revalidate call before proceeding.
616 *
617 * Returns 0 if the revalidation was successful. If the revalidation fails,
618 * either return the error returned by d_revalidate or -ESTALE if the
619 * revalidation it just returned 0. If d_revalidate returns 0, we attempt to
620 * invalidate the dentry. It's up to the caller to handle putting references
621 * to the path if necessary.
622 */
Al Viro16c2cd72011-02-22 15:50:10 -0500623static inline int handle_reval_path(struct nameidata *nd)
Jeff Layton39159de2009-12-07 12:01:50 -0500624{
Al Viro16c2cd72011-02-22 15:50:10 -0500625 struct dentry *dentry = nd->path.dentry;
Jeff Layton39159de2009-12-07 12:01:50 -0500626 int status;
Jeff Layton39159de2009-12-07 12:01:50 -0500627
Al Viro16c2cd72011-02-22 15:50:10 -0500628 if (likely(!(nd->flags & LOOKUP_JUMPED)))
Jeff Layton39159de2009-12-07 12:01:50 -0500629 return 0;
630
Al Viro16c2cd72011-02-22 15:50:10 -0500631 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
632 return 0;
633
634 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
635 return 0;
636
637 /* Note: we do not d_invalidate() */
Nick Piggin34286d62011-01-07 17:49:57 +1100638 status = d_revalidate(dentry, nd);
Jeff Layton39159de2009-12-07 12:01:50 -0500639 if (status > 0)
640 return 0;
641
Al Viro16c2cd72011-02-22 15:50:10 -0500642 if (!status)
Jeff Layton39159de2009-12-07 12:01:50 -0500643 status = -ESTALE;
Al Viro16c2cd72011-02-22 15:50:10 -0500644
Jeff Layton39159de2009-12-07 12:01:50 -0500645 return status;
646}
647
648/*
Al Virob75b5082009-12-16 01:01:38 -0500649 * Short-cut version of permission(), for calling on directories
650 * during pathname resolution. Combines parts of permission()
651 * and generic_permission(), and tests ONLY for MAY_EXEC permission.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 *
653 * If appropriate, check DAC only. If not appropriate, or
Al Virob75b5082009-12-16 01:01:38 -0500654 * short-cut DAC fails, then call ->permission() to do more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 * complete permission check.
656 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100657static inline int exec_permission(struct inode *inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700659 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700661 if (inode->i_op->permission) {
Nick Pigginb74c79e2011-01-07 17:49:58 +1100662 ret = inode->i_op->permission(inode, MAY_EXEC, flags);
663 } else {
664 ret = acl_permission_check(inode, MAY_EXEC, flags,
665 inode->i_op->check_acl);
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700666 }
Nick Pigginb74c79e2011-01-07 17:49:58 +1100667 if (likely(!ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 goto ok;
Nick Pigginb74c79e2011-01-07 17:49:58 +1100669 if (ret == -ECHILD)
Nick Piggin31e6b012011-01-07 17:49:52 +1100670 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Linus Torvaldsf1ac9f62009-08-28 10:53:56 -0700672 if (capable(CAP_DAC_OVERRIDE) || capable(CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 goto ok;
674
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700675 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676ok:
Nick Pigginb74c79e2011-01-07 17:49:58 +1100677 return security_inode_exec_permission(inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
Al Viro2a737872009-04-07 11:49:53 -0400680static __always_inline void set_root(struct nameidata *nd)
681{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200682 if (!nd->root.mnt)
683 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400684}
685
Al Viro6de88d72009-08-09 01:41:57 +0400686static int link_path_walk(const char *, struct nameidata *);
687
Nick Piggin31e6b012011-01-07 17:49:52 +1100688static __always_inline void set_root_rcu(struct nameidata *nd)
689{
690 if (!nd->root.mnt) {
691 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100692 unsigned seq;
693
694 do {
695 seq = read_seqcount_begin(&fs->seq);
696 nd->root = fs->root;
697 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100698 }
699}
700
Arjan van de Venf1662352006-01-14 13:21:31 -0800701static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702{
Nick Piggin31e6b012011-01-07 17:49:52 +1100703 int ret;
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 if (IS_ERR(link))
706 goto fail;
707
708 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400709 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800710 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400711 nd->path = nd->root;
712 path_get(&nd->root);
Al Viro16c2cd72011-02-22 15:50:10 -0500713 nd->flags |= LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100715 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100716
Nick Piggin31e6b012011-01-07 17:49:52 +1100717 ret = link_path_walk(link, nd);
718 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800720 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return PTR_ERR(link);
722}
723
Jan Blunck1d957f92008-02-14 19:34:35 -0800724static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700725{
726 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800727 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700728 mntput(path->mnt);
729}
730
Nick Piggin7b9337a2011-01-14 08:42:43 +0000731static inline void path_to_nameidata(const struct path *path,
732 struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700733{
Nick Piggin31e6b012011-01-07 17:49:52 +1100734 if (!(nd->flags & LOOKUP_RCU)) {
735 dput(nd->path.dentry);
736 if (nd->path.mnt != path->mnt)
737 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800738 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100739 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800740 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700741}
742
Al Virodef4af32009-12-26 08:37:05 -0500743static __always_inline int
Nick Piggin7b9337a2011-01-14 08:42:43 +0000744__do_follow_link(const struct path *link, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800745{
746 int error;
Nick Piggin7b9337a2011-01-14 08:42:43 +0000747 struct dentry *dentry = link->dentry;
Ian Kent051d3812006-03-27 01:14:53 -0800748
Al Viro844a3912011-02-15 00:38:26 -0500749 BUG_ON(nd->flags & LOOKUP_RCU);
750
Nick Piggin7b9337a2011-01-14 08:42:43 +0000751 touch_atime(link->mnt, dentry);
Ian Kent051d3812006-03-27 01:14:53 -0800752 nd_set_link(nd, NULL);
753
David Howells87556ef2011-01-14 18:46:46 +0000754 if (link->mnt == nd->path.mnt)
755 mntget(link->mnt);
Nick Piggin31e6b012011-01-07 17:49:52 +1100756
Al Viro86acdca12009-12-22 23:45:11 -0500757 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500758 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
759 error = PTR_ERR(*p);
760 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800761 char *s = nd_get_link(nd);
762 error = 0;
763 if (s)
764 error = __vfs_follow_link(nd, s);
Al Viro16c2cd72011-02-22 15:50:10 -0500765 else if (nd->last_type == LAST_BIND)
766 nd->flags |= LOOKUP_JUMPED;
Ian Kent051d3812006-03-27 01:14:53 -0800767 }
Ian Kent051d3812006-03-27 01:14:53 -0800768 return error;
769}
770
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771/*
772 * This limits recursive symlink follows to 8, while
773 * limiting consecutive symlinks to 40.
774 *
775 * Without that kind of total limit, nasty chains of consecutive
776 * symlinks can cause almost arbitrarily long lookups.
777 */
Linus Torvalds3abb17e2011-02-16 08:56:55 -0800778static inline int do_follow_link(struct inode *inode, struct path *path, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Al Virodef4af32009-12-26 08:37:05 -0500780 void *cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 int err = -ELOOP;
Al Viro844a3912011-02-15 00:38:26 -0500782
783 /* We drop rcu-walk here */
784 if (nameidata_dentry_drop_rcu_maybe(nd, path->dentry))
785 return -ECHILD;
Linus Torvalds3abb17e2011-02-16 08:56:55 -0800786 BUG_ON(inode != path->dentry->d_inode);
Al Viro844a3912011-02-15 00:38:26 -0500787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 if (current->link_count >= MAX_NESTED_LINKS)
789 goto loop;
790 if (current->total_link_count >= 40)
791 goto loop;
792 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
793 cond_resched();
Al Viro90ebe562005-06-06 13:35:58 -0700794 err = security_inode_follow_link(path->dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if (err)
796 goto loop;
797 current->link_count++;
798 current->total_link_count++;
799 nd->depth++;
Al Virodef4af32009-12-26 08:37:05 -0500800 err = __do_follow_link(path, nd, &cookie);
801 if (!IS_ERR(cookie) && path->dentry->d_inode->i_op->put_link)
802 path->dentry->d_inode->i_op->put_link(path->dentry, nd, cookie);
Al Viro258fa992009-08-09 01:32:02 +0400803 path_put(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 current->link_count--;
805 nd->depth--;
806 return err;
807loop:
Jan Blunck1d957f92008-02-14 19:34:35 -0800808 path_put_conditional(path, nd);
809 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return err;
811}
812
Nick Piggin31e6b012011-01-07 17:49:52 +1100813static int follow_up_rcu(struct path *path)
814{
815 struct vfsmount *parent;
816 struct dentry *mountpoint;
817
818 parent = path->mnt->mnt_parent;
819 if (parent == path->mnt)
820 return 0;
821 mountpoint = path->mnt->mnt_mountpoint;
822 path->dentry = mountpoint;
823 path->mnt = parent;
824 return 1;
825}
826
Al Virobab77eb2009-04-18 03:26:48 -0400827int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
829 struct vfsmount *parent;
830 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000831
832 br_read_lock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400833 parent = path->mnt->mnt_parent;
834 if (parent == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000835 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return 0;
837 }
838 mntget(parent);
Al Virobab77eb2009-04-18 03:26:48 -0400839 mountpoint = dget(path->mnt->mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000840 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400841 dput(path->dentry);
842 path->dentry = mountpoint;
843 mntput(path->mnt);
844 path->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 return 1;
846}
847
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100848/*
David Howells9875cf82011-01-14 18:45:21 +0000849 * Perform an automount
850 * - return -EISDIR to tell follow_managed() to stop and return the path we
851 * were called with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 */
David Howells9875cf82011-01-14 18:45:21 +0000853static int follow_automount(struct path *path, unsigned flags,
854 bool *need_mntput)
Nick Piggin31e6b012011-01-07 17:49:52 +1100855{
David Howells9875cf82011-01-14 18:45:21 +0000856 struct vfsmount *mnt;
David Howellsea5b7782011-01-14 19:10:03 +0000857 int err;
Nick Piggin31e6b012011-01-07 17:49:52 +1100858
David Howells9875cf82011-01-14 18:45:21 +0000859 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
860 return -EREMOTE;
Al Viro463ffb22005-06-06 13:36:05 -0700861
David Howells6f45b652011-01-14 18:45:31 +0000862 /* We don't want to mount if someone supplied AT_NO_AUTOMOUNT
863 * and this is the terminal part of the path.
864 */
865 if ((flags & LOOKUP_NO_AUTOMOUNT) && !(flags & LOOKUP_CONTINUE))
866 return -EISDIR; /* we actually want to stop here */
867
David Howells9875cf82011-01-14 18:45:21 +0000868 /* We want to mount if someone is trying to open/create a file of any
869 * type under the mountpoint, wants to traverse through the mountpoint
870 * or wants to open the mounted directory.
871 *
872 * We don't want to mount if someone's just doing a stat and they've
873 * set AT_SYMLINK_NOFOLLOW - unless they're stat'ing a directory and
874 * appended a '/' to the name.
875 */
876 if (!(flags & LOOKUP_FOLLOW) &&
877 !(flags & (LOOKUP_CONTINUE | LOOKUP_DIRECTORY |
878 LOOKUP_OPEN | LOOKUP_CREATE)))
879 return -EISDIR;
880
881 current->total_link_count++;
882 if (current->total_link_count >= 40)
883 return -ELOOP;
884
885 mnt = path->dentry->d_op->d_automount(path);
886 if (IS_ERR(mnt)) {
887 /*
888 * The filesystem is allowed to return -EISDIR here to indicate
889 * it doesn't want to automount. For instance, autofs would do
890 * this so that its userspace daemon can mount on this dentry.
891 *
892 * However, we can only permit this if it's a terminal point in
893 * the path being looked up; if it wasn't then the remainder of
894 * the path is inaccessible and we should say so.
895 */
896 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_CONTINUE))
897 return -EREMOTE;
898 return PTR_ERR(mnt);
899 }
David Howellsea5b7782011-01-14 19:10:03 +0000900
David Howells9875cf82011-01-14 18:45:21 +0000901 if (!mnt) /* mount collision */
902 return 0;
903
Al Viro19a167a2011-01-17 01:35:23 -0500904 err = finish_automount(mnt, path);
David Howellsea5b7782011-01-14 19:10:03 +0000905
David Howellsea5b7782011-01-14 19:10:03 +0000906 switch (err) {
907 case -EBUSY:
908 /* Someone else made a mount here whilst we were busy */
Al Viro19a167a2011-01-17 01:35:23 -0500909 return 0;
David Howellsea5b7782011-01-14 19:10:03 +0000910 case 0:
David Howellsea5b7782011-01-14 19:10:03 +0000911 dput(path->dentry);
912 if (*need_mntput)
913 mntput(path->mnt);
914 path->mnt = mnt;
915 path->dentry = dget(mnt->mnt_root);
916 *need_mntput = true;
917 return 0;
Al Viro19a167a2011-01-17 01:35:23 -0500918 default:
919 return err;
David Howellsea5b7782011-01-14 19:10:03 +0000920 }
Al Viro19a167a2011-01-17 01:35:23 -0500921
David Howells9875cf82011-01-14 18:45:21 +0000922}
923
924/*
925 * Handle a dentry that is managed in some way.
David Howellscc53ce52011-01-14 18:45:26 +0000926 * - Flagged for transit management (autofs)
David Howells9875cf82011-01-14 18:45:21 +0000927 * - Flagged as mountpoint
928 * - Flagged as automount point
929 *
930 * This may only be called in refwalk mode.
931 *
932 * Serialization is taken care of in namespace.c
933 */
934static int follow_managed(struct path *path, unsigned flags)
935{
936 unsigned managed;
937 bool need_mntput = false;
938 int ret;
939
940 /* Given that we're not holding a lock here, we retain the value in a
941 * local variable for each dentry as we look at it so that we don't see
942 * the components of that value change under us */
943 while (managed = ACCESS_ONCE(path->dentry->d_flags),
944 managed &= DCACHE_MANAGED_DENTRY,
945 unlikely(managed != 0)) {
David Howellscc53ce52011-01-14 18:45:26 +0000946 /* Allow the filesystem to manage the transit without i_mutex
947 * being held. */
948 if (managed & DCACHE_MANAGE_TRANSIT) {
949 BUG_ON(!path->dentry->d_op);
950 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +0000951 ret = path->dentry->d_op->d_manage(path->dentry,
952 false, false);
David Howellscc53ce52011-01-14 18:45:26 +0000953 if (ret < 0)
954 return ret == -EISDIR ? 0 : ret;
955 }
956
David Howells9875cf82011-01-14 18:45:21 +0000957 /* Transit to a mounted filesystem. */
958 if (managed & DCACHE_MOUNTED) {
959 struct vfsmount *mounted = lookup_mnt(path);
960 if (mounted) {
961 dput(path->dentry);
962 if (need_mntput)
963 mntput(path->mnt);
964 path->mnt = mounted;
965 path->dentry = dget(mounted->mnt_root);
966 need_mntput = true;
967 continue;
968 }
969
970 /* Something is mounted on this dentry in another
971 * namespace and/or whatever was mounted there in this
972 * namespace got unmounted before we managed to get the
973 * vfsmount_lock */
974 }
975
976 /* Handle an automount point */
977 if (managed & DCACHE_NEED_AUTOMOUNT) {
978 ret = follow_automount(path, flags, &need_mntput);
979 if (ret < 0)
980 return ret == -EISDIR ? 0 : ret;
981 continue;
982 }
983
984 /* We didn't change the current path point */
985 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
David Howells9875cf82011-01-14 18:45:21 +0000987 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988}
989
David Howellscc53ce52011-01-14 18:45:26 +0000990int follow_down_one(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
992 struct vfsmount *mounted;
993
Al Viro1c755af2009-04-18 14:06:57 -0400994 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400996 dput(path->dentry);
997 mntput(path->mnt);
998 path->mnt = mounted;
999 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 return 1;
1001 }
1002 return 0;
1003}
1004
David Howells9875cf82011-01-14 18:45:21 +00001005/*
1006 * Skip to top of mountpoint pile in rcuwalk mode. We abort the rcu-walk if we
David Howellscc53ce52011-01-14 18:45:26 +00001007 * meet a managed dentry and we're not walking to "..". True is returned to
David Howells9875cf82011-01-14 18:45:21 +00001008 * continue, false to abort.
1009 */
1010static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
1011 struct inode **inode, bool reverse_transit)
1012{
1013 while (d_mountpoint(path->dentry)) {
1014 struct vfsmount *mounted;
David Howellsab909112011-01-14 18:46:51 +00001015 if (unlikely(path->dentry->d_flags & DCACHE_MANAGE_TRANSIT) &&
1016 !reverse_transit &&
1017 path->dentry->d_op->d_manage(path->dentry, false, true) < 0)
1018 return false;
David Howells9875cf82011-01-14 18:45:21 +00001019 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
1020 if (!mounted)
1021 break;
1022 path->mnt = mounted;
1023 path->dentry = mounted->mnt_root;
1024 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
1025 *inode = path->dentry->d_inode;
1026 }
1027
1028 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1029 return reverse_transit;
1030 return true;
1031}
1032
Nick Piggin31e6b012011-01-07 17:49:52 +11001033static int follow_dotdot_rcu(struct nameidata *nd)
1034{
1035 struct inode *inode = nd->inode;
1036
1037 set_root_rcu(nd);
1038
David Howells9875cf82011-01-14 18:45:21 +00001039 while (1) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001040 if (nd->path.dentry == nd->root.dentry &&
1041 nd->path.mnt == nd->root.mnt) {
1042 break;
1043 }
1044 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1045 struct dentry *old = nd->path.dentry;
1046 struct dentry *parent = old->d_parent;
1047 unsigned seq;
1048
1049 seq = read_seqcount_begin(&parent->d_seq);
1050 if (read_seqcount_retry(&old->d_seq, nd->seq))
1051 return -ECHILD;
1052 inode = parent->d_inode;
1053 nd->path.dentry = parent;
1054 nd->seq = seq;
1055 break;
1056 }
1057 if (!follow_up_rcu(&nd->path))
1058 break;
1059 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1060 inode = nd->path.dentry->d_inode;
1061 }
David Howells9875cf82011-01-14 18:45:21 +00001062 __follow_mount_rcu(nd, &nd->path, &inode, true);
Nick Piggin31e6b012011-01-07 17:49:52 +11001063 nd->inode = inode;
1064
1065 return 0;
1066}
1067
David Howells9875cf82011-01-14 18:45:21 +00001068/*
David Howellscc53ce52011-01-14 18:45:26 +00001069 * Follow down to the covering mount currently visible to userspace. At each
1070 * point, the filesystem owning that dentry may be queried as to whether the
1071 * caller is permitted to proceed or not.
1072 *
1073 * Care must be taken as namespace_sem may be held (indicated by mounting_here
1074 * being true).
1075 */
1076int follow_down(struct path *path, bool mounting_here)
1077{
1078 unsigned managed;
1079 int ret;
1080
1081 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1082 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1083 /* Allow the filesystem to manage the transit without i_mutex
1084 * being held.
1085 *
1086 * We indicate to the filesystem if someone is trying to mount
1087 * something here. This gives autofs the chance to deny anyone
1088 * other than its daemon the right to mount on its
1089 * superstructure.
1090 *
1091 * The filesystem may sleep at this point.
1092 */
1093 if (managed & DCACHE_MANAGE_TRANSIT) {
1094 BUG_ON(!path->dentry->d_op);
1095 BUG_ON(!path->dentry->d_op->d_manage);
David Howellsab909112011-01-14 18:46:51 +00001096 ret = path->dentry->d_op->d_manage(
1097 path->dentry, mounting_here, false);
David Howellscc53ce52011-01-14 18:45:26 +00001098 if (ret < 0)
1099 return ret == -EISDIR ? 0 : ret;
1100 }
1101
1102 /* Transit to a mounted filesystem. */
1103 if (managed & DCACHE_MOUNTED) {
1104 struct vfsmount *mounted = lookup_mnt(path);
1105 if (!mounted)
1106 break;
1107 dput(path->dentry);
1108 mntput(path->mnt);
1109 path->mnt = mounted;
1110 path->dentry = dget(mounted->mnt_root);
1111 continue;
1112 }
1113
1114 /* Don't handle automount points here */
1115 break;
1116 }
1117 return 0;
1118}
1119
1120/*
David Howells9875cf82011-01-14 18:45:21 +00001121 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1122 */
1123static void follow_mount(struct path *path)
1124{
1125 while (d_mountpoint(path->dentry)) {
1126 struct vfsmount *mounted = lookup_mnt(path);
1127 if (!mounted)
1128 break;
1129 dput(path->dentry);
1130 mntput(path->mnt);
1131 path->mnt = mounted;
1132 path->dentry = dget(mounted->mnt_root);
1133 }
1134}
1135
Nick Piggin31e6b012011-01-07 17:49:52 +11001136static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137{
Al Viro2a737872009-04-07 11:49:53 -04001138 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -07001139
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -08001141 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Al Viro2a737872009-04-07 11:49:53 -04001143 if (nd->path.dentry == nd->root.dentry &&
1144 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 break;
1146 }
Jan Blunck4ac91372008-02-14 19:34:32 -08001147 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -05001148 /* rare case of legitimate dget_parent()... */
1149 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 dput(old);
1151 break;
1152 }
Al Viro3088dd72010-01-30 15:47:29 -05001153 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 }
Al Viro79ed0222009-04-18 13:59:41 -04001156 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +11001157 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158}
1159
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160/*
Nick Pigginbaa03892010-08-18 04:37:31 +10001161 * Allocate a dentry with name and parent, and perform a parent
1162 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
1163 * on error. parent->d_inode->i_mutex must be held. d_lookup must
1164 * have verified that no child exists while under i_mutex.
1165 */
1166static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1167 struct qstr *name, struct nameidata *nd)
1168{
1169 struct inode *inode = parent->d_inode;
1170 struct dentry *dentry;
1171 struct dentry *old;
1172
1173 /* Don't create child dentry for a dead directory. */
1174 if (unlikely(IS_DEADDIR(inode)))
1175 return ERR_PTR(-ENOENT);
1176
1177 dentry = d_alloc(parent, name);
1178 if (unlikely(!dentry))
1179 return ERR_PTR(-ENOMEM);
1180
1181 old = inode->i_op->lookup(inode, dentry, nd);
1182 if (unlikely(old)) {
1183 dput(dentry);
1184 dentry = old;
1185 }
1186 return dentry;
1187}
1188
1189/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 * It's more convoluted than I'd like it to be, but... it's still fairly
1191 * small and for now I'd prefer to have fast path as straight as possible.
1192 * It _is_ time-critical.
1193 */
1194static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +11001195 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196{
Jan Blunck4ac91372008-02-14 19:34:32 -08001197 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001198 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro6e6b1bd2009-08-13 23:38:37 +04001199 struct inode *dir;
David Howells9875cf82011-01-14 18:45:21 +00001200 int err;
1201
Al Viro3cac2602009-08-13 18:27:43 +04001202 /*
1203 * See if the low-level filesystem might want
1204 * to use its own hash..
1205 */
Nick Pigginfb045ad2011-01-07 17:49:55 +11001206 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
David Howells9875cf82011-01-14 18:45:21 +00001207 err = parent->d_op->d_hash(parent, nd->inode, name);
Al Viro3cac2602009-08-13 18:27:43 +04001208 if (err < 0)
1209 return err;
1210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Nick Pigginb04f7842010-08-18 04:37:34 +10001212 /*
1213 * Rename seqlock is not required here because in the off chance
1214 * of a false negative due to a concurrent rename, we're going to
1215 * do the non-racy lookup, below.
1216 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001217 if (nd->flags & LOOKUP_RCU) {
1218 unsigned seq;
1219
1220 *inode = nd->inode;
1221 dentry = __d_lookup_rcu(parent, name, &seq, inode);
1222 if (!dentry) {
1223 if (nameidata_drop_rcu(nd))
1224 return -ECHILD;
1225 goto need_lookup;
1226 }
1227 /* Memory barrier in read_seqcount_begin of child is enough */
1228 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1229 return -ECHILD;
1230
1231 nd->seq = seq;
Al Viro24643082011-02-15 01:26:22 -05001232 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
Al Virof5e1c1c2011-02-15 01:32:55 -05001233 dentry = do_revalidate_rcu(dentry, nd);
Al Viro24643082011-02-15 01:26:22 -05001234 if (!dentry)
1235 goto need_lookup;
1236 if (IS_ERR(dentry))
1237 goto fail;
1238 if (!(nd->flags & LOOKUP_RCU))
1239 goto done;
1240 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001241 path->mnt = mnt;
1242 path->dentry = dentry;
David Howells9875cf82011-01-14 18:45:21 +00001243 if (likely(__follow_mount_rcu(nd, path, inode, false)))
1244 return 0;
1245 if (nameidata_drop_rcu(nd))
1246 return -ECHILD;
1247 /* fallthru */
Nick Piggin31e6b012011-01-07 17:49:52 +11001248 }
David Howells9875cf82011-01-14 18:45:21 +00001249 dentry = __d_lookup(parent, name);
1250 if (!dentry)
1251 goto need_lookup;
1252found:
Al Viro24643082011-02-15 01:26:22 -05001253 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
1254 dentry = do_revalidate(dentry, nd);
1255 if (!dentry)
1256 goto need_lookup;
1257 if (IS_ERR(dentry))
1258 goto fail;
1259 }
David Howells9875cf82011-01-14 18:45:21 +00001260done:
1261 path->mnt = mnt;
1262 path->dentry = dentry;
1263 err = follow_managed(path, nd->flags);
Ian Kent89312212011-01-18 12:06:10 +08001264 if (unlikely(err < 0)) {
1265 path_put_conditional(path, nd);
David Howells9875cf82011-01-14 18:45:21 +00001266 return err;
Ian Kent89312212011-01-18 12:06:10 +08001267 }
David Howells9875cf82011-01-14 18:45:21 +00001268 *inode = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 return 0;
1270
1271need_lookup:
Al Viro6e6b1bd2009-08-13 23:38:37 +04001272 dir = parent->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001273 BUG_ON(nd->inode != dir);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001274
1275 mutex_lock(&dir->i_mutex);
1276 /*
1277 * First re-do the cached lookup just in case it was created
Nick Pigginb04f7842010-08-18 04:37:34 +10001278 * while we waited for the directory semaphore, or the first
1279 * lookup failed due to an unrelated rename.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001280 *
Nick Pigginb04f7842010-08-18 04:37:34 +10001281 * This could use version numbering or similar to avoid unnecessary
1282 * cache lookups, but then we'd have to do the first lookup in the
1283 * non-racy way. However in the common case here, everything should
1284 * be hot in cache, so would it be a big win?
Al Viro6e6b1bd2009-08-13 23:38:37 +04001285 */
1286 dentry = d_lookup(parent, name);
Nick Pigginbaa03892010-08-18 04:37:31 +10001287 if (likely(!dentry)) {
1288 dentry = d_alloc_and_lookup(parent, name, nd);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001289 mutex_unlock(&dir->i_mutex);
1290 if (IS_ERR(dentry))
1291 goto fail;
1292 goto done;
1293 }
Al Viro6e6b1bd2009-08-13 23:38:37 +04001294 /*
1295 * Uhhuh! Nasty case: the cache was re-populated while
1296 * we waited on the semaphore. Need to revalidate.
1297 */
1298 mutex_unlock(&dir->i_mutex);
Nick Piggin2e2e88e2010-08-18 04:37:30 +10001299 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301fail:
1302 return PTR_ERR(dentry);
1303}
1304
Al Viro52094c82011-02-21 21:34:47 -05001305static inline int may_lookup(struct nameidata *nd)
1306{
1307 if (nd->flags & LOOKUP_RCU) {
1308 int err = exec_permission(nd->inode, IPERM_FLAG_RCU);
1309 if (err != -ECHILD)
1310 return err;
1311 if (nameidata_drop_rcu(nd))
1312 return -ECHILD;
1313 }
1314 return exec_permission(nd->inode, 0);
1315}
1316
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317/*
1318 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001319 * This is the basic name resolution function, turning a pathname into
1320 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001322 * Returns 0 and nd will have valid dentry and mnt on success.
1323 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 */
Al Viro6de88d72009-08-09 01:41:57 +04001325static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
1327 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 int err;
1329 unsigned int lookup_flags = nd->flags;
1330
1331 while (*name=='/')
1332 name++;
1333 if (!*name)
Al Viro086e1832011-02-22 20:56:27 -05001334 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 if (nd->depth)
Trond Myklebustf55eab82006-02-04 23:28:01 -08001337 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 /* At this point we know we have a real path component. */
1340 for(;;) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001341 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 unsigned long hash;
1343 struct qstr this;
1344 unsigned int c;
Al Virofe479a52011-02-22 15:10:03 -05001345 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
Trond Myklebustcdce5d62005-10-18 14:20:18 -07001347 nd->flags |= LOOKUP_CONTINUE;
Al Viro52094c82011-02-21 21:34:47 -05001348
1349 err = may_lookup(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 if (err)
1351 break;
1352
1353 this.name = name;
1354 c = *(const unsigned char *)name;
1355
1356 hash = init_name_hash();
1357 do {
1358 name++;
1359 hash = partial_name_hash(c, hash);
1360 c = *(const unsigned char *)name;
1361 } while (c && (c != '/'));
1362 this.len = name - (const char *) this.name;
1363 this.hash = end_name_hash(hash);
1364
Al Virofe479a52011-02-22 15:10:03 -05001365 type = LAST_NORM;
1366 if (this.name[0] == '.') switch (this.len) {
1367 case 2:
Al Viro16c2cd72011-02-22 15:50:10 -05001368 if (this.name[1] == '.') {
Al Virofe479a52011-02-22 15:10:03 -05001369 type = LAST_DOTDOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001370 nd->flags |= LOOKUP_JUMPED;
1371 }
Al Virofe479a52011-02-22 15:10:03 -05001372 break;
1373 case 1:
1374 type = LAST_DOT;
1375 }
Al Viro16c2cd72011-02-22 15:50:10 -05001376 if (likely(type == LAST_NORM))
1377 nd->flags &= ~LOOKUP_JUMPED;
Al Virofe479a52011-02-22 15:10:03 -05001378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 /* remove trailing slashes? */
1380 if (!c)
1381 goto last_component;
1382 while (*++name == '/');
1383 if (!*name)
1384 goto last_with_slashes;
1385
1386 /*
1387 * "." and ".." are special - ".." especially so because it has
1388 * to be able to know about the current root directory and
1389 * parent relationships.
1390 */
Al Virofe479a52011-02-22 15:10:03 -05001391 if (unlikely(type != LAST_NORM)) {
1392 if (type == LAST_DOTDOT) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001393 if (nd->flags & LOOKUP_RCU) {
1394 if (follow_dotdot_rcu(nd))
1395 return -ECHILD;
1396 } else
1397 follow_dotdot(nd);
Al Virofe479a52011-02-22 15:10:03 -05001398 }
1399 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
Al Virofe479a52011-02-22 15:10:03 -05001401
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 /* This does the actual lookups.. */
Nick Piggin31e6b012011-01-07 17:49:52 +11001403 err = do_lookup(nd, &this, &next, &inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 if (err)
1405 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 if (!inode)
1408 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410 if (inode->i_op->follow_link) {
Linus Torvalds3abb17e2011-02-16 08:56:55 -08001411 err = do_follow_link(inode, &next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 if (err)
1413 goto return_err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001414 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 err = -ENOENT;
Nick Piggin31e6b012011-01-07 17:49:52 +11001416 if (!nd->inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001418 } else {
Miklos Szeredi09dd17d2005-09-06 15:18:21 -07001419 path_to_nameidata(&next, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001420 nd->inode = inode;
1421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001423 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 break;
1425 continue;
1426 /* here ends the main loop */
1427
1428last_with_slashes:
1429 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1430last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -08001431 /* Clear LOOKUP_CONTINUE iff it was previously unset */
1432 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 if (lookup_flags & LOOKUP_PARENT)
1434 goto lookup_parent;
Al Virofe479a52011-02-22 15:10:03 -05001435 if (unlikely(type != LAST_NORM)) {
1436 if (type == LAST_DOTDOT) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001437 if (nd->flags & LOOKUP_RCU) {
1438 if (follow_dotdot_rcu(nd))
1439 return -ECHILD;
1440 } else
1441 follow_dotdot(nd);
Al Virofe479a52011-02-22 15:10:03 -05001442 }
Al Viro086e1832011-02-22 20:56:27 -05001443 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001445 err = do_lookup(nd, &this, &next, &inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if (err)
1447 break;
David Howellsdb372912011-01-14 18:45:53 +00001448 if (inode && unlikely(inode->i_op->follow_link) &&
1449 (lookup_flags & LOOKUP_FOLLOW)) {
Linus Torvalds3abb17e2011-02-16 08:56:55 -08001450 err = do_follow_link(inode, &next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 if (err)
1452 goto return_err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001453 nd->inode = nd->path.dentry->d_inode;
1454 } else {
Miklos Szeredi09dd17d2005-09-06 15:18:21 -07001455 path_to_nameidata(&next, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001456 nd->inode = inode;
1457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 err = -ENOENT;
Nick Piggin31e6b012011-01-07 17:49:52 +11001459 if (!nd->inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 break;
1461 if (lookup_flags & LOOKUP_DIRECTORY) {
1462 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001463 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 break;
1465 }
Al Viro086e1832011-02-22 20:56:27 -05001466 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467lookup_parent:
1468 nd->last = this;
Al Virofe479a52011-02-22 15:10:03 -05001469 nd->last_type = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 return 0;
1471out_dput:
Nick Piggin31e6b012011-01-07 17:49:52 +11001472 if (!(nd->flags & LOOKUP_RCU))
1473 path_put_conditional(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 break;
1475 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001476 if (!(nd->flags & LOOKUP_RCU))
1477 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478return_err:
1479 return err;
1480}
1481
Al Viro9b4a9b12009-04-07 11:44:16 -04001482static int path_init(int dfd, const char *name, unsigned int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001484 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001485 int fput_needed;
1486 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
1488 nd->last_type = LAST_ROOT; /* if there are only slashes... */
Al Viro16c2cd72011-02-22 15:50:10 -05001489 nd->flags = flags | LOOKUP_JUMPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 nd->depth = 0;
Al Viro2a737872009-04-07 11:49:53 -04001491 nd->root.mnt = NULL;
Al Viroe41f7d42011-02-22 14:02:58 -05001492 nd->file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 if (*name=='/') {
Al Viroe41f7d42011-02-22 14:02:58 -05001495 if (flags & LOOKUP_RCU) {
1496 br_read_lock(vfsmount_lock);
1497 rcu_read_lock();
1498 set_root_rcu(nd);
1499 } else {
1500 set_root(nd);
1501 path_get(&nd->root);
1502 }
Al Viro2a737872009-04-07 11:49:53 -04001503 nd->path = nd->root;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001504 } else if (dfd == AT_FDCWD) {
Al Viroe41f7d42011-02-22 14:02:58 -05001505 if (flags & LOOKUP_RCU) {
1506 struct fs_struct *fs = current->fs;
1507 unsigned seq;
1508
1509 br_read_lock(vfsmount_lock);
1510 rcu_read_lock();
1511
1512 do {
1513 seq = read_seqcount_begin(&fs->seq);
1514 nd->path = fs->pwd;
1515 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1516 } while (read_seqcount_retry(&fs->seq, seq));
1517 } else {
1518 get_fs_pwd(current->fs, &nd->path);
1519 }
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001520 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001521 struct dentry *dentry;
1522
1523 file = fget_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001524 retval = -EBADF;
1525 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001526 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001527
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001528 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001529
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001530 retval = -ENOTDIR;
1531 if (!S_ISDIR(dentry->d_inode->i_mode))
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001532 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001533
1534 retval = file_permission(file, MAY_EXEC);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001535 if (retval)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001536 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001537
Jan Blunck5dd784d02008-02-14 19:34:38 -08001538 nd->path = file->f_path;
Al Viroe41f7d42011-02-22 14:02:58 -05001539 if (flags & LOOKUP_RCU) {
1540 if (fput_needed)
1541 nd->file = file;
1542 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1543 br_read_lock(vfsmount_lock);
1544 rcu_read_lock();
1545 } else {
1546 path_get(&file->f_path);
1547 fput_light(file, fput_needed);
1548 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 }
Al Viroe41f7d42011-02-22 14:02:58 -05001550
Nick Piggin31e6b012011-01-07 17:49:52 +11001551 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001552 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001553
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001554fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001555 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001556out_fail:
1557 return retval;
1558}
1559
1560/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
Al Viroee0827c2011-02-21 23:38:09 -05001561static int path_lookupat(int dfd, const char *name,
Al Viro9b4a9b12009-04-07 11:44:16 -04001562 unsigned int flags, struct nameidata *nd)
1563{
Nick Piggin31e6b012011-01-07 17:49:52 +11001564 int retval;
1565
1566 /*
1567 * Path walking is largely split up into 2 different synchronisation
1568 * schemes, rcu-walk and ref-walk (explained in
1569 * Documentation/filesystems/path-lookup.txt). These share much of the
1570 * path walk code, but some things particularly setup, cleanup, and
1571 * following mounts are sufficiently divergent that functions are
1572 * duplicated. Typically there is a function foo(), and its RCU
1573 * analogue, foo_rcu().
1574 *
1575 * -ECHILD is the error number of choice (just to avoid clashes) that
1576 * is returned if some aspect of an rcu-walk fails. Such an error must
1577 * be handled by restarting a traditional ref-walk (which will always
1578 * be able to complete).
1579 */
Al Viroe41f7d42011-02-22 14:02:58 -05001580 retval = path_init(dfd, name, flags, nd);
Al Viroee0827c2011-02-21 23:38:09 -05001581
Nick Piggin31e6b012011-01-07 17:49:52 +11001582 if (unlikely(retval))
1583 return retval;
Al Viroee0827c2011-02-21 23:38:09 -05001584
1585 current->total_link_count = 0;
1586 retval = link_path_walk(name, nd);
1587
1588 if (nd->flags & LOOKUP_RCU) {
1589 /* RCU dangling. Cancel it. */
Al Viro086e1832011-02-22 20:56:27 -05001590 if (!retval) {
1591 if (nameidata_drop_rcu_last(nd))
1592 retval = -ECHILD;
1593 } else {
1594 nd->flags &= ~LOOKUP_RCU;
1595 nd->root.mnt = NULL;
1596 rcu_read_unlock();
1597 br_read_unlock(vfsmount_lock);
1598 }
Al Viroee0827c2011-02-21 23:38:09 -05001599 }
1600
Al Viro16c2cd72011-02-22 15:50:10 -05001601 if (!retval)
1602 retval = handle_reval_path(nd);
1603
Al Viroee0827c2011-02-21 23:38:09 -05001604 if (nd->file) {
1605 fput(nd->file);
1606 nd->file = NULL;
1607 }
1608
Al Viro2a737872009-04-07 11:49:53 -04001609 if (nd->root.mnt) {
1610 path_put(&nd->root);
1611 nd->root.mnt = NULL;
1612 }
Al Viroee0827c2011-02-21 23:38:09 -05001613 return retval;
1614}
Nick Piggin31e6b012011-01-07 17:49:52 +11001615
Al Viroee0827c2011-02-21 23:38:09 -05001616static int do_path_lookup(int dfd, const char *name,
1617 unsigned int flags, struct nameidata *nd)
1618{
1619 int retval = path_lookupat(dfd, name, flags | LOOKUP_RCU, nd);
1620 if (unlikely(retval == -ECHILD))
1621 retval = path_lookupat(dfd, name, flags, nd);
1622 if (unlikely(retval == -ESTALE))
1623 retval = path_lookupat(dfd, name, flags | LOOKUP_REVAL, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001624
1625 if (likely(!retval)) {
1626 if (unlikely(!audit_dummy_context())) {
1627 if (nd->path.dentry && nd->inode)
1628 audit_inode(name, nd->path.dentry);
1629 }
1630 }
Al Viro9b4a9b12009-04-07 11:44:16 -04001631 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
1633
Al Viroc9c6cac2011-02-16 15:15:47 -05001634int kern_path_parent(const char *name, struct nameidata *nd)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001635{
Al Viroc9c6cac2011-02-16 15:15:47 -05001636 return do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, nd);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001637}
1638
Al Virod1811462008-08-02 00:49:18 -04001639int kern_path(const char *name, unsigned int flags, struct path *path)
1640{
1641 struct nameidata nd;
1642 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1643 if (!res)
1644 *path = nd.path;
1645 return res;
1646}
1647
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001648/**
1649 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1650 * @dentry: pointer to dentry of the base directory
1651 * @mnt: pointer to vfs mount of the base directory
1652 * @name: pointer to file name
1653 * @flags: lookup flags
1654 * @nd: pointer to nameidata
1655 */
1656int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1657 const char *name, unsigned int flags,
1658 struct nameidata *nd)
1659{
Al Viroee0827c2011-02-21 23:38:09 -05001660 int result;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001661
1662 /* same as do_path_lookup */
1663 nd->last_type = LAST_ROOT;
Al Viro16c2cd72011-02-22 15:50:10 -05001664 nd->flags = flags | LOOKUP_JUMPED;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001665 nd->depth = 0;
1666
Jan Blunckc8e7f442008-06-09 16:40:35 -07001667 nd->path.dentry = dentry;
1668 nd->path.mnt = mnt;
1669 path_get(&nd->path);
Al Viro5b857112009-04-07 11:53:49 -04001670 nd->root = nd->path;
1671 path_get(&nd->root);
Nick Piggin31e6b012011-01-07 17:49:52 +11001672 nd->inode = nd->path.dentry->d_inode;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001673
Al Viroee0827c2011-02-21 23:38:09 -05001674 current->total_link_count = 0;
1675
1676 result = link_path_walk(name, nd);
Al Viro16c2cd72011-02-22 15:50:10 -05001677 if (!result)
1678 result = handle_reval_path(nd);
Al Viroee0827c2011-02-21 23:38:09 -05001679 if (result == -ESTALE) {
1680 /* nd->path had been dropped */
1681 current->total_link_count = 0;
1682 nd->path.dentry = dentry;
1683 nd->path.mnt = mnt;
1684 nd->inode = dentry->d_inode;
1685 path_get(&nd->path);
Al Viro16c2cd72011-02-22 15:50:10 -05001686 nd->flags = flags | LOOKUP_JUMPED | LOOKUP_REVAL;
1687
Al Viroee0827c2011-02-21 23:38:09 -05001688 result = link_path_walk(name, nd);
Al Viro16c2cd72011-02-22 15:50:10 -05001689 if (!result)
1690 result = handle_reval_path(nd);
Al Viroee0827c2011-02-21 23:38:09 -05001691 }
1692 if (unlikely(!result && !audit_dummy_context() && nd->path.dentry &&
Nick Piggin31e6b012011-01-07 17:49:52 +11001693 nd->inode))
Jan Blunck4ac91372008-02-14 19:34:32 -08001694 audit_inode(name, nd->path.dentry);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001695
Al Viro5b857112009-04-07 11:53:49 -04001696 path_put(&nd->root);
1697 nd->root.mnt = NULL;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001698
Al Viroee0827c2011-02-21 23:38:09 -05001699 return result;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001700}
1701
Christoph Hellwigeead1912007-10-16 23:25:38 -07001702static struct dentry *__lookup_hash(struct qstr *name,
1703 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704{
Christoph Hellwig81fca442010-10-06 10:47:47 +02001705 struct inode *inode = base->d_inode;
James Morris057f6c02007-04-26 00:12:05 -07001706 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 int err;
1708
Nick Pigginb74c79e2011-01-07 17:49:58 +11001709 err = exec_permission(inode, 0);
Christoph Hellwig81fca442010-10-06 10:47:47 +02001710 if (err)
1711 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
1713 /*
1714 * See if the low-level filesystem might want
1715 * to use its own hash..
1716 */
Nick Pigginfb045ad2011-01-07 17:49:55 +11001717 if (base->d_flags & DCACHE_OP_HASH) {
Nick Pigginb1e6a012011-01-07 17:49:28 +11001718 err = base->d_op->d_hash(base, inode, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 dentry = ERR_PTR(err);
1720 if (err < 0)
1721 goto out;
1722 }
1723
Nick Pigginb04f7842010-08-18 04:37:34 +10001724 /*
1725 * Don't bother with __d_lookup: callers are for creat as
1726 * well as unlink, so a lot of the time it would cost
1727 * a double lookup.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001728 */
Nick Pigginb04f7842010-08-18 04:37:34 +10001729 dentry = d_lookup(base, name);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001730
Nick Pigginfb045ad2011-01-07 17:49:55 +11001731 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE))
Al Viro6e6b1bd2009-08-13 23:38:37 +04001732 dentry = do_revalidate(dentry, nd);
1733
Nick Pigginbaa03892010-08-18 04:37:31 +10001734 if (!dentry)
1735 dentry = d_alloc_and_lookup(base, name, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736out:
1737 return dentry;
1738}
1739
James Morris057f6c02007-04-26 00:12:05 -07001740/*
1741 * Restricted form of lookup. Doesn't follow links, single-component only,
1742 * needs parent already locked. Doesn't follow mounts.
1743 * SMP-safe.
1744 */
Adrian Bunka244e162006-03-31 02:32:11 -08001745static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
Jan Blunck4ac91372008-02-14 19:34:32 -08001747 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748}
1749
Christoph Hellwigeead1912007-10-16 23:25:38 -07001750static int __lookup_one_len(const char *name, struct qstr *this,
1751 struct dentry *base, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752{
1753 unsigned long hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 unsigned int c;
1755
James Morris057f6c02007-04-26 00:12:05 -07001756 this->name = name;
1757 this->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 if (!len)
James Morris057f6c02007-04-26 00:12:05 -07001759 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
1761 hash = init_name_hash();
1762 while (len--) {
1763 c = *(const unsigned char *)name++;
1764 if (c == '/' || c == '\0')
James Morris057f6c02007-04-26 00:12:05 -07001765 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 hash = partial_name_hash(c, hash);
1767 }
James Morris057f6c02007-04-26 00:12:05 -07001768 this->hash = end_name_hash(hash);
1769 return 0;
1770}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Christoph Hellwigeead1912007-10-16 23:25:38 -07001772/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001773 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001774 * @name: pathname component to lookup
1775 * @base: base directory to lookup from
1776 * @len: maximum length @len should be interpreted to
1777 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001778 * Note that this routine is purely a helper for filesystem usage and should
1779 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001780 * nameidata argument is passed to the filesystem methods and a filesystem
1781 * using this helper needs to be prepared for that.
1782 */
James Morris057f6c02007-04-26 00:12:05 -07001783struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1784{
1785 int err;
1786 struct qstr this;
1787
David Woodhouse2f9092e2009-04-20 23:18:37 +01001788 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1789
James Morris057f6c02007-04-26 00:12:05 -07001790 err = __lookup_one_len(name, &this, base, len);
1791 if (err)
1792 return ERR_PTR(err);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001793
Christoph Hellwig49705b72005-11-08 21:35:06 -08001794 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001795}
1796
Al Viro2d8f3032008-07-22 09:59:21 -04001797int user_path_at(int dfd, const char __user *name, unsigned flags,
1798 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799{
Al Viro2d8f3032008-07-22 09:59:21 -04001800 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 char *tmp = getname(name);
1802 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001804
1805 BUG_ON(flags & LOOKUP_PARENT);
1806
1807 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001809 if (!err)
1810 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 }
1812 return err;
1813}
1814
Al Viro2ad94ae2008-07-21 09:32:51 -04001815static int user_path_parent(int dfd, const char __user *path,
1816 struct nameidata *nd, char **name)
1817{
1818 char *s = getname(path);
1819 int error;
1820
1821 if (IS_ERR(s))
1822 return PTR_ERR(s);
1823
1824 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1825 if (error)
1826 putname(s);
1827 else
1828 *name = s;
1829
1830 return error;
1831}
1832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833/*
1834 * It's inline, so penalty for filesystems that don't use sticky bit is
1835 * minimal.
1836 */
1837static inline int check_sticky(struct inode *dir, struct inode *inode)
1838{
David Howellsda9592e2008-11-14 10:39:05 +11001839 uid_t fsuid = current_fsuid();
1840
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 if (!(dir->i_mode & S_ISVTX))
1842 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001843 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001845 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 return 0;
1847 return !capable(CAP_FOWNER);
1848}
1849
1850/*
1851 * Check whether we can remove a link victim from directory dir, check
1852 * whether the type of victim is right.
1853 * 1. We can't do it if dir is read-only (done in permission())
1854 * 2. We should have write and exec permissions on dir
1855 * 3. We can't remove anything from append-only dir
1856 * 4. We can't do anything with immutable dir (done in permission())
1857 * 5. If the sticky bit on dir is set we should either
1858 * a. be owner of dir, or
1859 * b. be owner of victim, or
1860 * c. have CAP_FOWNER capability
1861 * 6. If the victim is append-only or immutable we can't do antyhing with
1862 * links pointing to it.
1863 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1864 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1865 * 9. We can't remove a root or mountpoint.
1866 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1867 * nfs_async_unlink().
1868 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001869static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870{
1871 int error;
1872
1873 if (!victim->d_inode)
1874 return -ENOENT;
1875
1876 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001877 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
Al Virof419a2e2008-07-22 00:07:17 -04001879 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 if (error)
1881 return error;
1882 if (IS_APPEND(dir))
1883 return -EPERM;
1884 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001885 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 return -EPERM;
1887 if (isdir) {
1888 if (!S_ISDIR(victim->d_inode->i_mode))
1889 return -ENOTDIR;
1890 if (IS_ROOT(victim))
1891 return -EBUSY;
1892 } else if (S_ISDIR(victim->d_inode->i_mode))
1893 return -EISDIR;
1894 if (IS_DEADDIR(dir))
1895 return -ENOENT;
1896 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1897 return -EBUSY;
1898 return 0;
1899}
1900
1901/* Check whether we can create an object with dentry child in directory
1902 * dir.
1903 * 1. We can't do it if child already exists (open has special treatment for
1904 * this case, but since we are inlined it's OK)
1905 * 2. We can't do it if dir is read-only (done in permission())
1906 * 3. We should have write and exec permissions on dir
1907 * 4. We can't do it if dir is immutable (done in permission())
1908 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001909static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910{
1911 if (child->d_inode)
1912 return -EEXIST;
1913 if (IS_DEADDIR(dir))
1914 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001915 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916}
1917
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918/*
1919 * p1 and p2 should be directories on the same fs.
1920 */
1921struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1922{
1923 struct dentry *p;
1924
1925 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001926 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 return NULL;
1928 }
1929
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001930 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001932 p = d_ancestor(p2, p1);
1933 if (p) {
1934 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1935 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1936 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 }
1938
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001939 p = d_ancestor(p1, p2);
1940 if (p) {
1941 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1942 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1943 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 }
1945
Ingo Molnarf2eace22006-07-03 00:25:05 -07001946 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1947 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 return NULL;
1949}
1950
1951void unlock_rename(struct dentry *p1, struct dentry *p2)
1952{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001953 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001955 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001956 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 }
1958}
1959
1960int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1961 struct nameidata *nd)
1962{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001963 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
1965 if (error)
1966 return error;
1967
Al Viroacfa4382008-12-04 10:06:33 -05001968 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 return -EACCES; /* shouldn't it be ENOSYS? */
1970 mode &= S_IALLUGO;
1971 mode |= S_IFREG;
1972 error = security_inode_create(dir, dentry, mode);
1973 if (error)
1974 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001976 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001977 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 return error;
1979}
1980
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001981int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001983 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 struct inode *inode = dentry->d_inode;
1985 int error;
1986
1987 if (!inode)
1988 return -ENOENT;
1989
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001990 switch (inode->i_mode & S_IFMT) {
1991 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001993 case S_IFDIR:
1994 if (acc_mode & MAY_WRITE)
1995 return -EISDIR;
1996 break;
1997 case S_IFBLK:
1998 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001999 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002001 /*FALLTHRU*/
2002 case S_IFIFO:
2003 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01002005 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08002006 }
Dave Hansenb41572e2007-10-16 23:31:14 -07002007
Christoph Hellwig3fb64192008-10-24 09:58:10 +02002008 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07002009 if (error)
2010 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05002011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 /*
2013 * An append-only file must be opened in append mode for writing.
2014 */
2015 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05002016 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05002017 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05002019 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 }
2021
2022 /* O_NOATIME can only be set by the owner or superuser */
Al Viro7715b522009-12-16 03:54:00 -05002023 if (flag & O_NOATIME && !is_owner_or_cap(inode))
2024 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026 /*
2027 * Ensure there are no outstanding leases on the file.
2028 */
Al Virob65a9cf2009-12-16 06:27:40 -05002029 return break_lease(inode, flag);
Al Viro7715b522009-12-16 03:54:00 -05002030}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Jeff Laytone1181ee2010-12-07 16:19:50 -05002032static int handle_truncate(struct file *filp)
Al Viro7715b522009-12-16 03:54:00 -05002033{
Jeff Laytone1181ee2010-12-07 16:19:50 -05002034 struct path *path = &filp->f_path;
Al Viro7715b522009-12-16 03:54:00 -05002035 struct inode *inode = path->dentry->d_inode;
2036 int error = get_write_access(inode);
2037 if (error)
2038 return error;
2039 /*
2040 * Refuse to truncate files with mandatory locks held on them.
2041 */
2042 error = locks_verify_locked(inode);
2043 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09002044 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05002045 if (!error) {
2046 error = do_truncate(path->dentry, 0,
2047 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
Jeff Laytone1181ee2010-12-07 16:19:50 -05002048 filp);
Al Viro7715b522009-12-16 03:54:00 -05002049 }
2050 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04002051 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052}
2053
Dave Hansend57999e2008-02-15 14:37:27 -08002054/*
2055 * Be careful about ever adding any more callers of this
2056 * function. Its flags must be in the namei format, not
2057 * what get passed to sys_open().
2058 */
2059static int __open_namei_create(struct nameidata *nd, struct path *path,
Al Viro8737c932009-12-24 06:47:55 -05002060 int open_flag, int mode)
Dave Hansenaab520e2006-09-30 23:29:02 -07002061{
2062 int error;
Jan Blunck4ac91372008-02-14 19:34:32 -08002063 struct dentry *dir = nd->path.dentry;
Dave Hansenaab520e2006-09-30 23:29:02 -07002064
2065 if (!IS_POSIXACL(dir->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002066 mode &= ~current_umask();
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002067 error = security_path_mknod(&nd->path, path->dentry, mode, 0);
2068 if (error)
2069 goto out_unlock;
Dave Hansenaab520e2006-09-30 23:29:02 -07002070 error = vfs_create(dir->d_inode, path->dentry, mode, nd);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002071out_unlock:
Dave Hansenaab520e2006-09-30 23:29:02 -07002072 mutex_unlock(&dir->d_inode->i_mutex);
Jan Blunck4ac91372008-02-14 19:34:32 -08002073 dput(nd->path.dentry);
2074 nd->path.dentry = path->dentry;
Nick Piggin31e6b012011-01-07 17:49:52 +11002075
Dave Hansenaab520e2006-09-30 23:29:02 -07002076 if (error)
2077 return error;
2078 /* Don't check for write permission, don't truncate */
Al Viro8737c932009-12-24 06:47:55 -05002079 return may_open(&nd->path, 0, open_flag & ~O_TRUNC);
Dave Hansenaab520e2006-09-30 23:29:02 -07002080}
2081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082/*
Dave Hansend57999e2008-02-15 14:37:27 -08002083 * Note that while the flag value (low two bits) for sys_open means:
2084 * 00 - read-only
2085 * 01 - write-only
2086 * 10 - read-write
2087 * 11 - special
2088 * it is changed into
2089 * 00 - no permissions needed
2090 * 01 - read-permission
2091 * 10 - write-permission
2092 * 11 - read-write
2093 * for the internal routines (ie open_namei()/follow_link() etc)
2094 * This is more logical, and also allows the 00 "no perm needed"
2095 * to be used for symlinks (where the permissions are checked
2096 * later).
2097 *
2098*/
2099static inline int open_to_namei_flags(int flag)
2100{
2101 if ((flag+1) & O_ACCMODE)
2102 flag++;
2103 return flag;
2104}
2105
Al Viro7715b522009-12-16 03:54:00 -05002106static int open_will_truncate(int flag, struct inode *inode)
Dave Hansen4a3fd212008-02-15 14:37:48 -08002107{
2108 /*
2109 * We'll never write to the fs underlying
2110 * a device file.
2111 */
2112 if (special_file(inode->i_mode))
2113 return 0;
2114 return (flag & O_TRUNC);
2115}
2116
Al Viro648fa862009-12-24 01:26:48 -05002117static struct file *finish_open(struct nameidata *nd,
Al Viro9a661792009-12-24 06:49:47 -05002118 int open_flag, int acc_mode)
Al Viro648fa862009-12-24 01:26:48 -05002119{
2120 struct file *filp;
2121 int will_truncate;
2122 int error;
2123
Al Viro9a661792009-12-24 06:49:47 -05002124 will_truncate = open_will_truncate(open_flag, nd->path.dentry->d_inode);
Al Viro648fa862009-12-24 01:26:48 -05002125 if (will_truncate) {
2126 error = mnt_want_write(nd->path.mnt);
2127 if (error)
2128 goto exit;
2129 }
2130 error = may_open(&nd->path, acc_mode, open_flag);
2131 if (error) {
2132 if (will_truncate)
2133 mnt_drop_write(nd->path.mnt);
2134 goto exit;
2135 }
2136 filp = nameidata_to_filp(nd);
2137 if (!IS_ERR(filp)) {
2138 error = ima_file_check(filp, acc_mode);
2139 if (error) {
2140 fput(filp);
2141 filp = ERR_PTR(error);
2142 }
2143 }
2144 if (!IS_ERR(filp)) {
Al Viro648fa862009-12-24 01:26:48 -05002145 if (will_truncate) {
Jeff Laytone1181ee2010-12-07 16:19:50 -05002146 error = handle_truncate(filp);
Al Viro648fa862009-12-24 01:26:48 -05002147 if (error) {
2148 fput(filp);
2149 filp = ERR_PTR(error);
2150 }
2151 }
2152 }
2153 /*
2154 * It is now safe to drop the mnt write
2155 * because the filp has had a write taken
2156 * on its behalf.
2157 */
2158 if (will_truncate)
2159 mnt_drop_write(nd->path.mnt);
Al Virod893f1b2010-10-29 03:30:42 -04002160 path_put(&nd->path);
Al Viro648fa862009-12-24 01:26:48 -05002161 return filp;
2162
2163exit:
Al Viro648fa862009-12-24 01:26:48 -05002164 path_put(&nd->path);
2165 return ERR_PTR(error);
2166}
2167
Nick Piggin31e6b012011-01-07 17:49:52 +11002168/*
2169 * Handle O_CREAT case for do_filp_open
2170 */
Al Virofb1cc552009-12-24 01:58:28 -05002171static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viro5b369df2009-12-24 06:51:13 -05002172 int open_flag, int acc_mode,
Al Viro3e297b62010-03-26 12:40:13 -04002173 int mode, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002174{
Al Viroa1e28032009-12-24 02:12:06 -05002175 struct dentry *dir = nd->path.dentry;
Al Virofb1cc552009-12-24 01:58:28 -05002176 struct file *filp;
Al Viro16c2cd72011-02-22 15:50:10 -05002177 int error;
Al Virofb1cc552009-12-24 01:58:28 -05002178
Al Viro1f36f772009-12-26 10:56:19 -05002179 switch (nd->last_type) {
2180 case LAST_DOTDOT:
2181 follow_dotdot(nd);
2182 dir = nd->path.dentry;
Neil Brown176306f2010-05-24 16:57:56 +10002183 case LAST_DOT:
Al Viro1f36f772009-12-26 10:56:19 -05002184 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002185 case LAST_ROOT:
Al Viro16c2cd72011-02-22 15:50:10 -05002186 error = handle_reval_path(nd);
2187 if (error)
2188 goto exit;
2189 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002190 goto exit;
Al Viro1f36f772009-12-26 10:56:19 -05002191 case LAST_BIND:
Al Viro16c2cd72011-02-22 15:50:10 -05002192 error = handle_reval_path(nd);
2193 if (error)
2194 goto exit;
Al Viro1f36f772009-12-26 10:56:19 -05002195 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002196 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002197 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002198
Al Viro16c2cd72011-02-22 15:50:10 -05002199 error = -EISDIR;
Al Viro1f36f772009-12-26 10:56:19 -05002200 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002201 if (nd->last.name[nd->last.len])
2202 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002203
Al Viroa1e28032009-12-24 02:12:06 -05002204 mutex_lock(&dir->d_inode->i_mutex);
2205
2206 path->dentry = lookup_hash(nd);
2207 path->mnt = nd->path.mnt;
2208
Al Virofb1cc552009-12-24 01:58:28 -05002209 error = PTR_ERR(path->dentry);
2210 if (IS_ERR(path->dentry)) {
2211 mutex_unlock(&dir->d_inode->i_mutex);
2212 goto exit;
2213 }
2214
2215 if (IS_ERR(nd->intent.open.file)) {
2216 error = PTR_ERR(nd->intent.open.file);
2217 goto exit_mutex_unlock;
2218 }
2219
2220 /* Negative dentry, just create the file */
2221 if (!path->dentry->d_inode) {
2222 /*
2223 * This write is needed to ensure that a
2224 * ro->rw transition does not occur between
2225 * the time when the file is created and when
2226 * a permanent write count is taken through
2227 * the 'struct file' in nameidata_to_filp().
2228 */
2229 error = mnt_want_write(nd->path.mnt);
2230 if (error)
2231 goto exit_mutex_unlock;
2232 error = __open_namei_create(nd, path, open_flag, mode);
2233 if (error) {
2234 mnt_drop_write(nd->path.mnt);
2235 goto exit;
2236 }
2237 filp = nameidata_to_filp(nd);
2238 mnt_drop_write(nd->path.mnt);
Al Virod893f1b2010-10-29 03:30:42 -04002239 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002240 if (!IS_ERR(filp)) {
2241 error = ima_file_check(filp, acc_mode);
2242 if (error) {
2243 fput(filp);
2244 filp = ERR_PTR(error);
2245 }
2246 }
2247 return filp;
2248 }
2249
2250 /*
2251 * It already exists.
2252 */
2253 mutex_unlock(&dir->d_inode->i_mutex);
2254 audit_inode(pathname, path->dentry);
2255
2256 error = -EEXIST;
Al Viro5b369df2009-12-24 06:51:13 -05002257 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002258 goto exit_dput;
2259
David Howells9875cf82011-01-14 18:45:21 +00002260 error = follow_managed(path, nd->flags);
2261 if (error < 0)
2262 goto exit_dput;
Al Virofb1cc552009-12-24 01:58:28 -05002263
2264 error = -ENOENT;
2265 if (!path->dentry->d_inode)
2266 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002267
2268 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002269 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002270
2271 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002272 nd->inode = path->dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05002273 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002274 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002275 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002276ok:
Al Viro9a661792009-12-24 06:49:47 -05002277 filp = finish_open(nd, open_flag, acc_mode);
Al Virofb1cc552009-12-24 01:58:28 -05002278 return filp;
2279
2280exit_mutex_unlock:
2281 mutex_unlock(&dir->d_inode->i_mutex);
2282exit_dput:
2283 path_put_conditional(path, nd);
2284exit:
Al Virofb1cc552009-12-24 01:58:28 -05002285 path_put(&nd->path);
2286 return ERR_PTR(error);
2287}
2288
Dave Hansend57999e2008-02-15 14:37:27 -08002289/*
Dave Hansen4a3fd212008-02-15 14:37:48 -08002290 * Note that the low bits of the passed in "open_flag"
2291 * are not the same as in the local variable "flag". See
2292 * open_to_namei_flags() for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002294struct file *do_filp_open(int dfd, const char *pathname,
Al Viro6e8341a2009-04-06 11:16:22 -04002295 int open_flag, int mode, int acc_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296{
Dave Hansen4a3fd212008-02-15 14:37:48 -08002297 struct file *filp;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002298 struct nameidata nd;
Al Viro6e8341a2009-04-06 11:16:22 -04002299 int error;
Al Viro9850c052010-01-13 15:01:15 -05002300 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 int count = 0;
Dave Hansend57999e2008-02-15 14:37:27 -08002302 int flag = open_to_namei_flags(open_flag);
Nick Piggin31e6b012011-01-07 17:49:52 +11002303 int flags;
Al Viro1f36f772009-12-26 10:56:19 -05002304
2305 if (!(open_flag & O_CREAT))
2306 mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
Lino Sanfilippob1085ba2010-11-05 17:05:27 +01002308 /* Must never be set by userspace */
2309 open_flag &= ~FMODE_NONOTIFY;
2310
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +01002311 /*
2312 * O_SYNC is implemented as __O_SYNC|O_DSYNC. As many places only
2313 * check for O_DSYNC if the need any syncing at all we enforce it's
2314 * always set instead of having to deal with possibly weird behaviour
2315 * for malicious applications setting only __O_SYNC.
2316 */
2317 if (open_flag & __O_SYNC)
2318 open_flag |= O_DSYNC;
2319
Al Viro6e8341a2009-04-06 11:16:22 -04002320 if (!acc_mode)
Al Viro6d125522009-12-24 06:58:56 -05002321 acc_mode = MAY_OPEN | ACC_MODE(open_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Trond Myklebust834f2a42005-10-18 14:20:16 -07002323 /* O_TRUNC implies we need access checks for write permissions */
Al Viro4296e2c2009-12-24 07:15:41 -05002324 if (open_flag & O_TRUNC)
Trond Myklebust834f2a42005-10-18 14:20:16 -07002325 acc_mode |= MAY_WRITE;
2326
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 /* Allow the LSM permission hook to distinguish append
2328 access from general write access. */
Al Viro4296e2c2009-12-24 07:15:41 -05002329 if (open_flag & O_APPEND)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 acc_mode |= MAY_APPEND;
2331
Nick Piggin31e6b012011-01-07 17:49:52 +11002332 flags = LOOKUP_OPEN;
2333 if (open_flag & O_CREAT) {
2334 flags |= LOOKUP_CREATE;
2335 if (open_flag & O_EXCL)
2336 flags |= LOOKUP_EXCL;
J. R. Okajima654f5622009-06-18 23:30:15 +09002337 }
Nick Piggin31e6b012011-01-07 17:49:52 +11002338 if (open_flag & O_DIRECTORY)
2339 flags |= LOOKUP_DIRECTORY;
2340 if (!(open_flag & O_NOFOLLOW))
2341 flags |= LOOKUP_FOLLOW;
2342
2343 filp = get_empty_filp();
2344 if (!filp)
2345 return ERR_PTR(-ENFILE);
2346
2347 filp->f_flags = open_flag;
2348 nd.intent.open.file = filp;
2349 nd.intent.open.flags = flag;
2350 nd.intent.open.create_mode = mode;
2351
2352 if (open_flag & O_CREAT)
2353 goto creat;
2354
2355 /* !O_CREAT, simple open */
2356 error = do_path_lookup(dfd, pathname, flags, &nd);
2357 if (unlikely(error))
Al Viro1858efd2011-03-04 13:14:21 -05002358 goto out_filp2;
Nick Piggin31e6b012011-01-07 17:49:52 +11002359 error = -ELOOP;
2360 if (!(nd.flags & LOOKUP_FOLLOW)) {
2361 if (nd.inode->i_op->follow_link)
Al Viro1858efd2011-03-04 13:14:21 -05002362 goto out_path2;
Nick Piggin31e6b012011-01-07 17:49:52 +11002363 }
2364 error = -ENOTDIR;
2365 if (nd.flags & LOOKUP_DIRECTORY) {
2366 if (!nd.inode->i_op->lookup)
Al Viro1858efd2011-03-04 13:14:21 -05002367 goto out_path2;
Nick Piggin31e6b012011-01-07 17:49:52 +11002368 }
2369 audit_inode(pathname, nd.path.dentry);
2370 filp = finish_open(&nd, open_flag, acc_mode);
Al Viro1858efd2011-03-04 13:14:21 -05002371out2:
Linus Torvalds2dab5972011-02-11 15:53:38 -08002372 release_open_intent(&nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002373 return filp;
2374
Al Viro1858efd2011-03-04 13:14:21 -05002375out_path2:
2376 path_put(&nd.path);
2377out_filp2:
2378 filp = ERR_PTR(error);
2379 goto out2;
2380
Nick Piggin31e6b012011-01-07 17:49:52 +11002381creat:
2382 /* OK, have to create the file. Find the parent. */
Al Viroee0827c2011-02-21 23:38:09 -05002383 error = path_lookupat(dfd, pathname, LOOKUP_PARENT | LOOKUP_RCU, &nd);
2384 if (unlikely(error == -ECHILD))
2385 error = path_lookupat(dfd, pathname, LOOKUP_PARENT, &nd);
2386 if (unlikely(error == -ESTALE)) {
Nick Piggin31e6b012011-01-07 17:49:52 +11002387reval:
Al Viroee0827c2011-02-21 23:38:09 -05002388 flags |= LOOKUP_REVAL;
2389 error = path_lookupat(dfd, pathname,
2390 LOOKUP_PARENT | LOOKUP_REVAL, &nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002391 }
2392 if (unlikely(error))
2393 goto out_filp;
2394 if (unlikely(!audit_dummy_context()))
Al Viro9b4a9b12009-04-07 11:44:16 -04002395 audit_inode(pathname, nd.path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
2397 /*
Al Viroa2c36b42009-12-24 03:39:50 -05002398 * We have the parent and last component.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 */
Al Viro16c2cd72011-02-22 15:50:10 -05002400 nd.flags = (nd.flags & ~LOOKUP_PARENT) | flags;
Al Viro3e297b62010-03-26 12:40:13 -04002401 filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002402 while (unlikely(!filp)) { /* trailing symlink */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002403 struct path link = path;
2404 struct inode *linki = link.dentry->d_inode;
Al Virodef4af32009-12-26 08:37:05 -05002405 void *cookie;
Al Viro806b6812009-12-26 07:16:40 -05002406 error = -ELOOP;
David Howellsdb372912011-01-14 18:45:53 +00002407 if (!(nd.flags & LOOKUP_FOLLOW))
Al Viro1f36f772009-12-26 10:56:19 -05002408 goto exit_dput;
2409 if (count++ == 32)
Al Viro806b6812009-12-26 07:16:40 -05002410 goto exit_dput;
2411 /*
2412 * This is subtle. Instead of calling do_follow_link() we do
2413 * the thing by hands. The reason is that this way we have zero
2414 * link_count and path_walk() (called from ->follow_link)
2415 * honoring LOOKUP_PARENT. After that we have the parent and
2416 * last component, i.e. we are in the same situation as after
2417 * the first path_walk(). Well, almost - if the last component
2418 * is normal we get its copy stored in nd->last.name and we will
2419 * have to putname() it when we are done. Procfs-like symlinks
2420 * just set LAST_BIND.
2421 */
2422 nd.flags |= LOOKUP_PARENT;
Nick Piggin7b9337a2011-01-14 08:42:43 +00002423 error = security_inode_follow_link(link.dentry, &nd);
Al Viro806b6812009-12-26 07:16:40 -05002424 if (error)
2425 goto exit_dput;
Nick Piggin7b9337a2011-01-14 08:42:43 +00002426 error = __do_follow_link(&link, &nd, &cookie);
Al Virodef4af32009-12-26 08:37:05 -05002427 if (unlikely(error)) {
Nick Piggin7b9337a2011-01-14 08:42:43 +00002428 if (!IS_ERR(cookie) && linki->i_op->put_link)
2429 linki->i_op->put_link(link.dentry, &nd, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002430 /* nd.path had been dropped */
Nick Piggin7b9337a2011-01-14 08:42:43 +00002431 nd.path = link;
Nick Piggin31e6b012011-01-07 17:49:52 +11002432 goto out_path;
Al Viro806b6812009-12-26 07:16:40 -05002433 }
2434 nd.flags &= ~LOOKUP_PARENT;
Al Viro3e297b62010-03-26 12:40:13 -04002435 filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
Nick Piggin7b9337a2011-01-14 08:42:43 +00002436 if (linki->i_op->put_link)
2437 linki->i_op->put_link(link.dentry, &nd, cookie);
2438 path_put(&link);
Al Viro806b6812009-12-26 07:16:40 -05002439 }
Al Viro10fa8e62009-12-26 07:09:49 -05002440out:
Al Viro2a737872009-04-07 11:49:53 -04002441 if (nd.root.mnt)
2442 path_put(&nd.root);
Nick Piggin31e6b012011-01-07 17:49:52 +11002443 if (filp == ERR_PTR(-ESTALE) && !(flags & LOOKUP_REVAL))
Al Viro10fa8e62009-12-26 07:09:49 -05002444 goto reval;
Linus Torvalds2dab5972011-02-11 15:53:38 -08002445 release_open_intent(&nd);
Al Viro10fa8e62009-12-26 07:09:49 -05002446 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
Al Viro806b6812009-12-26 07:16:40 -05002448exit_dput:
2449 path_put_conditional(&path, &nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002450out_path:
2451 path_put(&nd.path);
2452out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002453 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002454 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455}
2456
2457/**
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002458 * filp_open - open file and return file pointer
2459 *
2460 * @filename: path to open
2461 * @flags: open flags as per the open(2) second argument
2462 * @mode: mode for the new file if O_CREAT is set, else ignored
2463 *
2464 * This is the helper to open a file from kernelspace if you really
2465 * have to. But in generally you should not do this, so please move
2466 * along, nothing to see here..
2467 */
2468struct file *filp_open(const char *filename, int flags, int mode)
2469{
Al Viro6e8341a2009-04-06 11:16:22 -04002470 return do_filp_open(AT_FDCWD, filename, flags, mode, 0);
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002471}
2472EXPORT_SYMBOL(filp_open);
2473
2474/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 * lookup_create - lookup a dentry, creating it if it doesn't exist
2476 * @nd: nameidata info
2477 * @is_dir: directory flag
2478 *
2479 * Simple function to lookup and return a dentry and create it
2480 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002481 *
Jan Blunck4ac91372008-02-14 19:34:32 -08002482 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 */
2484struct dentry *lookup_create(struct nameidata *nd, int is_dir)
2485{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002486 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
Jan Blunck4ac91372008-02-14 19:34:32 -08002488 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002489 /*
2490 * Yucky last component or no last component at all?
2491 * (foo/., foo/.., /////)
2492 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 if (nd->last_type != LAST_NORM)
2494 goto fail;
2495 nd->flags &= ~LOOKUP_PARENT;
Al Viro35165862008-08-05 03:00:49 -04002496 nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
ASANO Masahiroa6349042006-08-22 20:06:02 -04002497 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002498
2499 /*
2500 * Do the final lookup.
2501 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08002502 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 if (IS_ERR(dentry))
2504 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002505
Al Viroe9baf6e2008-05-15 04:49:12 -04002506 if (dentry->d_inode)
2507 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002508 /*
2509 * Special case - lookup gave negative, but... we had foo/bar/
2510 * From the vfs_mknod() POV we just have a negative dentry -
2511 * all is fine. Let's be bastards - you had / on the end, you've
2512 * been asking for (non-existent) directory. -ENOENT for you.
2513 */
Al Viroe9baf6e2008-05-15 04:49:12 -04002514 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
2515 dput(dentry);
2516 dentry = ERR_PTR(-ENOENT);
2517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002519eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002521 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522fail:
2523 return dentry;
2524}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07002525EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
2527int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2528{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002529 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
2531 if (error)
2532 return error;
2533
2534 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
2535 return -EPERM;
2536
Al Viroacfa4382008-12-04 10:06:33 -05002537 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 return -EPERM;
2539
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002540 error = devcgroup_inode_mknod(mode, dev);
2541 if (error)
2542 return error;
2543
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 error = security_inode_mknod(dir, dentry, mode, dev);
2545 if (error)
2546 return error;
2547
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002549 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002550 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 return error;
2552}
2553
Dave Hansen463c3192008-02-15 14:37:57 -08002554static int may_mknod(mode_t mode)
2555{
2556 switch (mode & S_IFMT) {
2557 case S_IFREG:
2558 case S_IFCHR:
2559 case S_IFBLK:
2560 case S_IFIFO:
2561 case S_IFSOCK:
2562 case 0: /* zero mode translates to S_IFREG */
2563 return 0;
2564 case S_IFDIR:
2565 return -EPERM;
2566 default:
2567 return -EINVAL;
2568 }
2569}
2570
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002571SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2572 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573{
Al Viro2ad94ae2008-07-21 09:32:51 -04002574 int error;
2575 char *tmp;
2576 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 struct nameidata nd;
2578
2579 if (S_ISDIR(mode))
2580 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Al Viro2ad94ae2008-07-21 09:32:51 -04002582 error = user_path_parent(dfd, filename, &nd, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002584 return error;
2585
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 dentry = lookup_create(&nd, 0);
Dave Hansen463c3192008-02-15 14:37:57 -08002587 if (IS_ERR(dentry)) {
2588 error = PTR_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 = may_mknod(mode);
2594 if (error)
2595 goto out_dput;
2596 error = mnt_want_write(nd.path.mnt);
2597 if (error)
2598 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002599 error = security_path_mknod(&nd.path, dentry, mode, dev);
2600 if (error)
2601 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002602 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08002604 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 break;
2606 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002607 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 new_decode_dev(dev));
2609 break;
2610 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002611 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002614out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002615 mnt_drop_write(nd.path.mnt);
2616out_dput:
2617 dput(dentry);
2618out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002619 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002620 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 putname(tmp);
2622
2623 return error;
2624}
2625
Heiko Carstens3480b252009-01-14 14:14:16 +01002626SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002627{
2628 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2629}
2630
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2632{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002633 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634
2635 if (error)
2636 return error;
2637
Al Viroacfa4382008-12-04 10:06:33 -05002638 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 return -EPERM;
2640
2641 mode &= (S_IRWXUGO|S_ISVTX);
2642 error = security_inode_mkdir(dir, dentry, mode);
2643 if (error)
2644 return error;
2645
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002647 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002648 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 return error;
2650}
2651
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002652SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653{
2654 int error = 0;
2655 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002656 struct dentry *dentry;
2657 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658
Al Viro2ad94ae2008-07-21 09:32:51 -04002659 error = user_path_parent(dfd, pathname, &nd, &tmp);
2660 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002661 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Dave Hansen6902d922006-09-30 23:29:01 -07002663 dentry = lookup_create(&nd, 1);
2664 error = PTR_ERR(dentry);
2665 if (IS_ERR(dentry))
2666 goto out_unlock;
2667
Jan Blunck4ac91372008-02-14 19:34:32 -08002668 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002669 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002670 error = mnt_want_write(nd.path.mnt);
2671 if (error)
2672 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002673 error = security_path_mkdir(&nd.path, dentry, mode);
2674 if (error)
2675 goto out_drop_write;
Jan Blunck4ac91372008-02-14 19:34:32 -08002676 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002677out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002678 mnt_drop_write(nd.path.mnt);
2679out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002680 dput(dentry);
2681out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002682 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002683 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002684 putname(tmp);
2685out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 return error;
2687}
2688
Heiko Carstens3cdad422009-01-14 14:14:22 +01002689SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002690{
2691 return sys_mkdirat(AT_FDCWD, pathname, mode);
2692}
2693
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694/*
2695 * We try to drop the dentry early: we should have
2696 * a usage count of 2 if we're the only user of this
2697 * dentry, and if that is true (possibly after pruning
2698 * the dcache), then we drop the dentry now.
2699 *
2700 * A low-level filesystem can, if it choses, legally
2701 * do a
2702 *
2703 * if (!d_unhashed(dentry))
2704 * return -EBUSY;
2705 *
2706 * if it cannot handle the case of removing a directory
2707 * that is still in use by something else..
2708 */
2709void dentry_unhash(struct dentry *dentry)
2710{
2711 dget(dentry);
Vasily Averindc168422006-12-06 20:37:07 -08002712 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 spin_lock(&dentry->d_lock);
Nick Pigginb7ab39f2011-01-07 17:49:32 +11002714 if (dentry->d_count == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 __d_drop(dentry);
2716 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717}
2718
2719int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2720{
2721 int error = may_delete(dir, dentry, 1);
2722
2723 if (error)
2724 return error;
2725
Al Viroacfa4382008-12-04 10:06:33 -05002726 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 return -EPERM;
2728
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002729 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 dentry_unhash(dentry);
2731 if (d_mountpoint(dentry))
2732 error = -EBUSY;
2733 else {
2734 error = security_inode_rmdir(dir, dentry);
2735 if (!error) {
2736 error = dir->i_op->rmdir(dir, dentry);
Al Virod83c49f2010-04-30 17:17:09 -04002737 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 dentry->d_inode->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -04002739 dont_mount(dentry);
2740 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 }
2742 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002743 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 d_delete(dentry);
2746 }
2747 dput(dentry);
2748
2749 return error;
2750}
2751
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002752static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753{
2754 int error = 0;
2755 char * name;
2756 struct dentry *dentry;
2757 struct nameidata nd;
2758
Al Viro2ad94ae2008-07-21 09:32:51 -04002759 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002761 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
2763 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002764 case LAST_DOTDOT:
2765 error = -ENOTEMPTY;
2766 goto exit1;
2767 case LAST_DOT:
2768 error = -EINVAL;
2769 goto exit1;
2770 case LAST_ROOT:
2771 error = -EBUSY;
2772 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002774
2775 nd.flags &= ~LOOKUP_PARENT;
2776
Jan Blunck4ac91372008-02-14 19:34:32 -08002777 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002778 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002780 if (IS_ERR(dentry))
2781 goto exit2;
Dave Hansen06227532008-02-15 14:37:34 -08002782 error = mnt_want_write(nd.path.mnt);
2783 if (error)
2784 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002785 error = security_path_rmdir(&nd.path, dentry);
2786 if (error)
2787 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002788 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002789exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002790 mnt_drop_write(nd.path.mnt);
2791exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002792 dput(dentry);
2793exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002794 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002796 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 putname(name);
2798 return error;
2799}
2800
Heiko Carstens3cdad422009-01-14 14:14:22 +01002801SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002802{
2803 return do_rmdir(AT_FDCWD, pathname);
2804}
2805
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806int vfs_unlink(struct inode *dir, struct dentry *dentry)
2807{
2808 int error = may_delete(dir, dentry, 0);
2809
2810 if (error)
2811 return error;
2812
Al Viroacfa4382008-12-04 10:06:33 -05002813 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 return -EPERM;
2815
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002816 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 if (d_mountpoint(dentry))
2818 error = -EBUSY;
2819 else {
2820 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002821 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002823 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002824 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002825 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002827 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
2829 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2830 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002831 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 }
Robert Love0eeca282005-07-12 17:06:03 -04002834
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 return error;
2836}
2837
2838/*
2839 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002840 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 * writeout happening, and we don't want to prevent access to the directory
2842 * while waiting on the I/O.
2843 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002844static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845{
Al Viro2ad94ae2008-07-21 09:32:51 -04002846 int error;
2847 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 struct dentry *dentry;
2849 struct nameidata nd;
2850 struct inode *inode = NULL;
2851
Al Viro2ad94ae2008-07-21 09:32:51 -04002852 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002854 return error;
2855
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 error = -EISDIR;
2857 if (nd.last_type != LAST_NORM)
2858 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002859
2860 nd.flags &= ~LOOKUP_PARENT;
2861
Jan Blunck4ac91372008-02-14 19:34:32 -08002862 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002863 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 error = PTR_ERR(dentry);
2865 if (!IS_ERR(dentry)) {
2866 /* Why not before? Because we want correct error value */
2867 if (nd.last.name[nd.last.len])
2868 goto slashes;
2869 inode = dentry->d_inode;
2870 if (inode)
Al Viro7de9c6ee2010-10-23 11:11:40 -04002871 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002872 error = mnt_want_write(nd.path.mnt);
2873 if (error)
2874 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002875 error = security_path_unlink(&nd.path, dentry);
2876 if (error)
2877 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002878 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002879exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002880 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 exit2:
2882 dput(dentry);
2883 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002884 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 if (inode)
2886 iput(inode); /* truncate the inode here */
2887exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002888 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 putname(name);
2890 return error;
2891
2892slashes:
2893 error = !dentry->d_inode ? -ENOENT :
2894 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2895 goto exit2;
2896}
2897
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002898SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002899{
2900 if ((flag & ~AT_REMOVEDIR) != 0)
2901 return -EINVAL;
2902
2903 if (flag & AT_REMOVEDIR)
2904 return do_rmdir(dfd, pathname);
2905
2906 return do_unlinkat(dfd, pathname);
2907}
2908
Heiko Carstens3480b252009-01-14 14:14:16 +01002909SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002910{
2911 return do_unlinkat(AT_FDCWD, pathname);
2912}
2913
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002914int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002916 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
2918 if (error)
2919 return error;
2920
Al Viroacfa4382008-12-04 10:06:33 -05002921 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 return -EPERM;
2923
2924 error = security_inode_symlink(dir, dentry, oldname);
2925 if (error)
2926 return error;
2927
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002929 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002930 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 return error;
2932}
2933
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002934SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2935 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936{
Al Viro2ad94ae2008-07-21 09:32:51 -04002937 int error;
2938 char *from;
2939 char *to;
Dave Hansen6902d922006-09-30 23:29:01 -07002940 struct dentry *dentry;
2941 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
2943 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002944 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002946
2947 error = user_path_parent(newdfd, newname, &nd, &to);
2948 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002949 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Dave Hansen6902d922006-09-30 23:29:01 -07002951 dentry = lookup_create(&nd, 0);
2952 error = PTR_ERR(dentry);
2953 if (IS_ERR(dentry))
2954 goto out_unlock;
2955
Dave Hansen75c3f292008-02-15 14:37:45 -08002956 error = mnt_want_write(nd.path.mnt);
2957 if (error)
2958 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002959 error = security_path_symlink(&nd.path, dentry, from);
2960 if (error)
2961 goto out_drop_write;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002962 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002963out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002964 mnt_drop_write(nd.path.mnt);
2965out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002966 dput(dentry);
2967out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002968 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002969 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002970 putname(to);
2971out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 putname(from);
2973 return error;
2974}
2975
Heiko Carstens3480b252009-01-14 14:14:16 +01002976SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002977{
2978 return sys_symlinkat(oldname, AT_FDCWD, newname);
2979}
2980
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2982{
2983 struct inode *inode = old_dentry->d_inode;
2984 int error;
2985
2986 if (!inode)
2987 return -ENOENT;
2988
Miklos Szeredia95164d2008-07-30 15:08:48 +02002989 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 if (error)
2991 return error;
2992
2993 if (dir->i_sb != inode->i_sb)
2994 return -EXDEV;
2995
2996 /*
2997 * A link to an append-only or immutable file cannot be created.
2998 */
2999 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3000 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05003001 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003003 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 return -EPERM;
3005
3006 error = security_inode_link(old_dentry, dir, new_dentry);
3007 if (error)
3008 return error;
3009
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003010 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003012 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003013 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02003014 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 return error;
3016}
3017
3018/*
3019 * Hardlinks are often used in delicate situations. We avoid
3020 * security-related surprises by not following symlinks on the
3021 * newname. --KAB
3022 *
3023 * We don't follow them on the oldname either to be compatible
3024 * with linux 2.0, and to avoid hard-linking to directories
3025 * and other special files. --ADM
3026 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003027SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
3028 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029{
3030 struct dentry *new_dentry;
Al Viro2d8f3032008-07-22 09:59:21 -04003031 struct nameidata nd;
3032 struct path old_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 int error;
Al Viro2ad94ae2008-07-21 09:32:51 -04003034 char *to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
Ulrich Drepper45c9b112006-06-25 05:49:11 -07003036 if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003037 return -EINVAL;
3038
Al Viro2d8f3032008-07-22 09:59:21 -04003039 error = user_path_at(olddfd, oldname,
3040 flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
3041 &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04003043 return error;
3044
3045 error = user_path_parent(newdfd, newname, &nd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 if (error)
3047 goto out;
3048 error = -EXDEV;
Al Viro2d8f3032008-07-22 09:59:21 -04003049 if (old_path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 goto out_release;
3051 new_dentry = lookup_create(&nd, 0);
3052 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07003053 if (IS_ERR(new_dentry))
3054 goto out_unlock;
Dave Hansen75c3f292008-02-15 14:37:45 -08003055 error = mnt_want_write(nd.path.mnt);
3056 if (error)
3057 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003058 error = security_path_link(old_path.dentry, &nd.path, new_dentry);
3059 if (error)
3060 goto out_drop_write;
Al Viro2d8f3032008-07-22 09:59:21 -04003061 error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003062out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08003063 mnt_drop_write(nd.path.mnt);
3064out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07003065 dput(new_dentry);
3066out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08003067 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08003069 path_put(&nd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003070 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071out:
Al Viro2d8f3032008-07-22 09:59:21 -04003072 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073
3074 return error;
3075}
3076
Heiko Carstens3480b252009-01-14 14:14:16 +01003077SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003078{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003079 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003080}
3081
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082/*
3083 * The worst of all namespace operations - renaming directory. "Perverted"
3084 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3085 * Problems:
3086 * a) we can get into loop creation. Check is done in is_subdir().
3087 * b) race potential - two innocent renames can create a loop together.
3088 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003089 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 * story.
3091 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003092 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 * whether the target exists). Solution: try to be smart with locking
3094 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003095 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 * move will be locked. Thus we can rank directories by the tree
3097 * (ancestors first) and rank all non-directories after them.
3098 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003099 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100 * HOWEVER, it relies on the assumption that any object with ->lookup()
3101 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3102 * we'd better make sure that there's no link(2) for them.
3103 * d) some filesystems don't support opened-but-unlinked directories,
3104 * either because of layout or because they are not ready to deal with
3105 * all cases correctly. The latter will be fixed (taking this sort of
3106 * stuff into VFS), but the former is not going away. Solution: the same
3107 * trick as in rmdir().
3108 * e) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003109 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003111 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 * locking].
3113 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07003114static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3115 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116{
3117 int error = 0;
3118 struct inode *target;
3119
3120 /*
3121 * If we are going to change the parent - check write permissions,
3122 * we'll need to flip '..'.
3123 */
3124 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04003125 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 if (error)
3127 return error;
3128 }
3129
3130 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3131 if (error)
3132 return error;
3133
3134 target = new_dentry->d_inode;
Al Virod83c49f2010-04-30 17:17:09 -04003135 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003136 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3138 error = -EBUSY;
Al Virod83c49f2010-04-30 17:17:09 -04003139 else {
3140 if (target)
3141 dentry_unhash(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
Al Virod83c49f2010-04-30 17:17:09 -04003143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 if (target) {
Al Virod83c49f2010-04-30 17:17:09 -04003145 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 target->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -04003147 dont_mount(new_dentry);
3148 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003149 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 if (d_unhashed(new_dentry))
3151 d_rehash(new_dentry);
3152 dput(new_dentry);
3153 }
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003154 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003155 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3156 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 return error;
3158}
3159
Adrian Bunk75c96f82005-05-05 16:16:09 -07003160static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3161 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162{
3163 struct inode *target;
3164 int error;
3165
3166 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3167 if (error)
3168 return error;
3169
3170 dget(new_dentry);
3171 target = new_dentry->d_inode;
3172 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003173 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3175 error = -EBUSY;
3176 else
3177 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3178 if (!error) {
Al Virobec10522010-03-03 14:12:08 -05003179 if (target)
Al Virod83c49f2010-04-30 17:17:09 -04003180 dont_mount(new_dentry);
Mark Fasheh349457c2006-09-08 14:22:21 -07003181 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182 d_move(old_dentry, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 }
3184 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003185 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 dput(new_dentry);
3187 return error;
3188}
3189
3190int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3191 struct inode *new_dir, struct dentry *new_dentry)
3192{
3193 int error;
3194 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003195 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
3197 if (old_dentry->d_inode == new_dentry->d_inode)
3198 return 0;
3199
3200 error = may_delete(old_dir, old_dentry, is_dir);
3201 if (error)
3202 return error;
3203
3204 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003205 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 else
3207 error = may_delete(new_dir, new_dentry, is_dir);
3208 if (error)
3209 return error;
3210
Al Viroacfa4382008-12-04 10:06:33 -05003211 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212 return -EPERM;
3213
Robert Love0eeca282005-07-12 17:06:03 -04003214 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3215
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 if (is_dir)
3217 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3218 else
3219 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003220 if (!error)
3221 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003222 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003223 fsnotify_oldname_free(old_name);
3224
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225 return error;
3226}
3227
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003228SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3229 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230{
Al Viro2ad94ae2008-07-21 09:32:51 -04003231 struct dentry *old_dir, *new_dir;
3232 struct dentry *old_dentry, *new_dentry;
3233 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003235 char *from;
3236 char *to;
3237 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238
Al Viro2ad94ae2008-07-21 09:32:51 -04003239 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 if (error)
3241 goto exit;
3242
Al Viro2ad94ae2008-07-21 09:32:51 -04003243 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 if (error)
3245 goto exit1;
3246
3247 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003248 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 goto exit2;
3250
Jan Blunck4ac91372008-02-14 19:34:32 -08003251 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 error = -EBUSY;
3253 if (oldnd.last_type != LAST_NORM)
3254 goto exit2;
3255
Jan Blunck4ac91372008-02-14 19:34:32 -08003256 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 if (newnd.last_type != LAST_NORM)
3258 goto exit2;
3259
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003260 oldnd.flags &= ~LOOKUP_PARENT;
3261 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003262 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003263
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264 trap = lock_rename(new_dir, old_dir);
3265
Christoph Hellwig49705b72005-11-08 21:35:06 -08003266 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 error = PTR_ERR(old_dentry);
3268 if (IS_ERR(old_dentry))
3269 goto exit3;
3270 /* source must exist */
3271 error = -ENOENT;
3272 if (!old_dentry->d_inode)
3273 goto exit4;
3274 /* unless the source is a directory trailing slashes give -ENOTDIR */
3275 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3276 error = -ENOTDIR;
3277 if (oldnd.last.name[oldnd.last.len])
3278 goto exit4;
3279 if (newnd.last.name[newnd.last.len])
3280 goto exit4;
3281 }
3282 /* source should not be ancestor of target */
3283 error = -EINVAL;
3284 if (old_dentry == trap)
3285 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003286 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 error = PTR_ERR(new_dentry);
3288 if (IS_ERR(new_dentry))
3289 goto exit4;
3290 /* target should not be an ancestor of source */
3291 error = -ENOTEMPTY;
3292 if (new_dentry == trap)
3293 goto exit5;
3294
Dave Hansen9079b1e2008-02-15 14:37:49 -08003295 error = mnt_want_write(oldnd.path.mnt);
3296 if (error)
3297 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003298 error = security_path_rename(&oldnd.path, old_dentry,
3299 &newnd.path, new_dentry);
3300 if (error)
3301 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 error = vfs_rename(old_dir->d_inode, old_dentry,
3303 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003304exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003305 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306exit5:
3307 dput(new_dentry);
3308exit4:
3309 dput(old_dentry);
3310exit3:
3311 unlock_rename(new_dir, old_dir);
3312exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003313 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003314 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003316 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003318exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 return error;
3320}
3321
Heiko Carstensa26eab22009-01-14 14:14:17 +01003322SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003323{
3324 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3325}
3326
Linus Torvalds1da177e2005-04-16 15:20:36 -07003327int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3328{
3329 int len;
3330
3331 len = PTR_ERR(link);
3332 if (IS_ERR(link))
3333 goto out;
3334
3335 len = strlen(link);
3336 if (len > (unsigned) buflen)
3337 len = buflen;
3338 if (copy_to_user(buffer, link, len))
3339 len = -EFAULT;
3340out:
3341 return len;
3342}
3343
3344/*
3345 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3346 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3347 * using) it for any given inode is up to filesystem.
3348 */
3349int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3350{
3351 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003352 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003353 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003354
Linus Torvalds1da177e2005-04-16 15:20:36 -07003355 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003356 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003357 if (IS_ERR(cookie))
3358 return PTR_ERR(cookie);
3359
3360 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3361 if (dentry->d_inode->i_op->put_link)
3362 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3363 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364}
3365
3366int vfs_follow_link(struct nameidata *nd, const char *link)
3367{
3368 return __vfs_follow_link(nd, link);
3369}
3370
3371/* get the link contents into pagecache */
3372static char *page_getlink(struct dentry * dentry, struct page **ppage)
3373{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003374 char *kaddr;
3375 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003377 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003379 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003381 kaddr = kmap(page);
3382 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3383 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384}
3385
3386int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3387{
3388 struct page *page = NULL;
3389 char *s = page_getlink(dentry, &page);
3390 int res = vfs_readlink(dentry,buffer,buflen,s);
3391 if (page) {
3392 kunmap(page);
3393 page_cache_release(page);
3394 }
3395 return res;
3396}
3397
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003398void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003400 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003402 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403}
3404
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003405void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003407 struct page *page = cookie;
3408
3409 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 kunmap(page);
3411 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 }
3413}
3414
Nick Piggin54566b22009-01-04 12:00:53 -08003415/*
3416 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3417 */
3418int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419{
3420 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003421 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003422 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003423 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003425 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3426 if (nofs)
3427 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428
NeilBrown7e53cac2006-03-25 03:07:57 -08003429retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003430 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003431 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003433 goto fail;
3434
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 kaddr = kmap_atomic(page, KM_USER0);
3436 memcpy(kaddr, symname, len-1);
3437 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07003438
3439 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3440 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 if (err < 0)
3442 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003443 if (err < len-1)
3444 goto retry;
3445
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 mark_inode_dirty(inode);
3447 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448fail:
3449 return err;
3450}
3451
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003452int page_symlink(struct inode *inode, const char *symname, int len)
3453{
3454 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003455 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003456}
3457
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003458const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 .readlink = generic_readlink,
3460 .follow_link = page_follow_link_light,
3461 .put_link = page_put_link,
3462};
3463
Al Viro2d8f3032008-07-22 09:59:21 -04003464EXPORT_SYMBOL(user_path_at);
David Howellscc53ce52011-01-14 18:45:26 +00003465EXPORT_SYMBOL(follow_down_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466EXPORT_SYMBOL(follow_down);
3467EXPORT_SYMBOL(follow_up);
3468EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3469EXPORT_SYMBOL(getname);
3470EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471EXPORT_SYMBOL(lookup_one_len);
3472EXPORT_SYMBOL(page_follow_link_light);
3473EXPORT_SYMBOL(page_put_link);
3474EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003475EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476EXPORT_SYMBOL(page_symlink);
3477EXPORT_SYMBOL(page_symlink_inode_operations);
Al Viroc9c6cac2011-02-16 15:15:47 -05003478EXPORT_SYMBOL(kern_path_parent);
Al Virod1811462008-08-02 00:49:18 -04003479EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003480EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003481EXPORT_SYMBOL(inode_permission);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -08003482EXPORT_SYMBOL(file_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483EXPORT_SYMBOL(unlock_rename);
3484EXPORT_SYMBOL(vfs_create);
3485EXPORT_SYMBOL(vfs_follow_link);
3486EXPORT_SYMBOL(vfs_link);
3487EXPORT_SYMBOL(vfs_mkdir);
3488EXPORT_SYMBOL(vfs_mknod);
3489EXPORT_SYMBOL(generic_permission);
3490EXPORT_SYMBOL(vfs_readlink);
3491EXPORT_SYMBOL(vfs_rename);
3492EXPORT_SYMBOL(vfs_rmdir);
3493EXPORT_SYMBOL(vfs_symlink);
3494EXPORT_SYMBOL(vfs_unlink);
3495EXPORT_SYMBOL(dentry_unhash);
3496EXPORT_SYMBOL(generic_readlink);