blob: 4e957bf744ae11443092cf11f27afaa43d11a4c8 [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
Nick Pigginb74c79e2011-01-07 17:49:58 +1100205 * @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
386 * @Returns: 0 on success, -ECHLID on failure
387 *
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
447 * @Returns: 0 on success, -ECHLID on failure
448 *
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
509 * @Returns: 0 on success, -ECHLID on failure
510 *
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
542/* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing. */
543static inline int nameidata_drop_rcu_last_maybe(struct nameidata *nd)
544{
545 if (likely(nd->flags & LOOKUP_RCU))
546 return nameidata_drop_rcu_last(nd);
547 return 0;
548}
549
550/**
Trond Myklebust834f2a42005-10-18 14:20:16 -0700551 * release_open_intent - free up open intent resources
552 * @nd: pointer to nameidata
553 */
554void release_open_intent(struct nameidata *nd)
555{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800556 if (nd->intent.open.file->f_path.dentry == NULL)
Trond Myklebust834f2a42005-10-18 14:20:16 -0700557 put_filp(nd->intent.open.file);
558 else
559 fput(nd->intent.open.file);
560}
561
Nick Piggin34286d62011-01-07 17:49:57 +1100562static int d_revalidate(struct dentry *dentry, struct nameidata *nd)
563{
564 int status;
565
566 status = dentry->d_op->d_revalidate(dentry, nd);
567 if (status == -ECHILD) {
568 if (nameidata_dentry_drop_rcu(nd, dentry))
569 return status;
570 status = dentry->d_op->d_revalidate(dentry, nd);
571 }
572
573 return status;
574}
575
Ian Kentbcdc5e02006-09-27 01:50:44 -0700576static inline struct dentry *
577do_revalidate(struct dentry *dentry, struct nameidata *nd)
578{
Nick Piggin34286d62011-01-07 17:49:57 +1100579 int status;
580
581 status = d_revalidate(dentry, nd);
Ian Kentbcdc5e02006-09-27 01:50:44 -0700582 if (unlikely(status <= 0)) {
583 /*
584 * The dentry failed validation.
585 * If d_revalidate returned 0 attempt to invalidate
586 * the dentry otherwise d_revalidate is asking us
587 * to return a fail status.
588 */
Nick Piggin34286d62011-01-07 17:49:57 +1100589 if (status < 0) {
590 /* If we're in rcu-walk, we don't have a ref */
591 if (!(nd->flags & LOOKUP_RCU))
592 dput(dentry);
593 dentry = ERR_PTR(status);
594
595 } else {
596 /* Don't d_invalidate in rcu-walk mode */
597 if (nameidata_dentry_drop_rcu_maybe(nd, dentry))
598 return ERR_PTR(-ECHILD);
Ian Kentbcdc5e02006-09-27 01:50:44 -0700599 if (!d_invalidate(dentry)) {
600 dput(dentry);
601 dentry = NULL;
602 }
Ian Kentbcdc5e02006-09-27 01:50:44 -0700603 }
604 }
605 return dentry;
606}
607
Nick Pigginfb045ad2011-01-07 17:49:55 +1100608static inline int need_reval_dot(struct dentry *dentry)
609{
610 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
611 return 0;
612
613 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
614 return 0;
615
616 return 1;
617}
618
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619/*
Jeff Layton39159de2009-12-07 12:01:50 -0500620 * force_reval_path - force revalidation of a dentry
621 *
622 * In some situations the path walking code will trust dentries without
623 * revalidating them. This causes problems for filesystems that depend on
624 * d_revalidate to handle file opens (e.g. NFSv4). When FS_REVAL_DOT is set
625 * (which indicates that it's possible for the dentry to go stale), force
626 * a d_revalidate call before proceeding.
627 *
628 * Returns 0 if the revalidation was successful. If the revalidation fails,
629 * either return the error returned by d_revalidate or -ESTALE if the
630 * revalidation it just returned 0. If d_revalidate returns 0, we attempt to
631 * invalidate the dentry. It's up to the caller to handle putting references
632 * to the path if necessary.
633 */
634static int
635force_reval_path(struct path *path, struct nameidata *nd)
636{
637 int status;
638 struct dentry *dentry = path->dentry;
639
640 /*
641 * only check on filesystems where it's possible for the dentry to
Nick Pigginfb045ad2011-01-07 17:49:55 +1100642 * become stale.
Jeff Layton39159de2009-12-07 12:01:50 -0500643 */
Nick Pigginfb045ad2011-01-07 17:49:55 +1100644 if (!need_reval_dot(dentry))
Jeff Layton39159de2009-12-07 12:01:50 -0500645 return 0;
646
Nick Piggin34286d62011-01-07 17:49:57 +1100647 status = d_revalidate(dentry, nd);
Jeff Layton39159de2009-12-07 12:01:50 -0500648 if (status > 0)
649 return 0;
650
651 if (!status) {
652 d_invalidate(dentry);
653 status = -ESTALE;
654 }
655 return status;
656}
657
658/*
Al Virob75b5082009-12-16 01:01:38 -0500659 * Short-cut version of permission(), for calling on directories
660 * during pathname resolution. Combines parts of permission()
661 * and generic_permission(), and tests ONLY for MAY_EXEC permission.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 *
663 * If appropriate, check DAC only. If not appropriate, or
Al Virob75b5082009-12-16 01:01:38 -0500664 * short-cut DAC fails, then call ->permission() to do more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 * complete permission check.
666 */
Nick Pigginb74c79e2011-01-07 17:49:58 +1100667static inline int exec_permission(struct inode *inode, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700669 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700671 if (inode->i_op->permission) {
Nick Pigginb74c79e2011-01-07 17:49:58 +1100672 ret = inode->i_op->permission(inode, MAY_EXEC, flags);
673 } else {
674 ret = acl_permission_check(inode, MAY_EXEC, flags,
675 inode->i_op->check_acl);
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700676 }
Nick Pigginb74c79e2011-01-07 17:49:58 +1100677 if (likely(!ret))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 goto ok;
Nick Pigginb74c79e2011-01-07 17:49:58 +1100679 if (ret == -ECHILD)
Nick Piggin31e6b012011-01-07 17:49:52 +1100680 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Linus Torvaldsf1ac9f62009-08-28 10:53:56 -0700682 if (capable(CAP_DAC_OVERRIDE) || capable(CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 goto ok;
684
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700685 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686ok:
Nick Pigginb74c79e2011-01-07 17:49:58 +1100687 return security_inode_exec_permission(inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
Al Viro2a737872009-04-07 11:49:53 -0400690static __always_inline void set_root(struct nameidata *nd)
691{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200692 if (!nd->root.mnt)
693 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400694}
695
Al Viro6de88d72009-08-09 01:41:57 +0400696static int link_path_walk(const char *, struct nameidata *);
697
Nick Piggin31e6b012011-01-07 17:49:52 +1100698static __always_inline void set_root_rcu(struct nameidata *nd)
699{
700 if (!nd->root.mnt) {
701 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100702 unsigned seq;
703
704 do {
705 seq = read_seqcount_begin(&fs->seq);
706 nd->root = fs->root;
707 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100708 }
709}
710
Arjan van de Venf1662352006-01-14 13:21:31 -0800711static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Nick Piggin31e6b012011-01-07 17:49:52 +1100713 int ret;
714
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (IS_ERR(link))
716 goto fail;
717
718 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400719 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800720 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400721 nd->path = nd->root;
722 path_get(&nd->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100724 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100725
Nick Piggin31e6b012011-01-07 17:49:52 +1100726 ret = link_path_walk(link, nd);
727 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800729 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return PTR_ERR(link);
731}
732
Jan Blunck1d957f92008-02-14 19:34:35 -0800733static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700734{
735 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800736 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700737 mntput(path->mnt);
738}
739
740static inline void path_to_nameidata(struct path *path, struct nameidata *nd)
741{
Nick Piggin31e6b012011-01-07 17:49:52 +1100742 if (!(nd->flags & LOOKUP_RCU)) {
743 dput(nd->path.dentry);
744 if (nd->path.mnt != path->mnt)
745 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800746 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100747 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800748 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700749}
750
Al Virodef4af32009-12-26 08:37:05 -0500751static __always_inline int
752__do_follow_link(struct path *path, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800753{
754 int error;
Ian Kent051d3812006-03-27 01:14:53 -0800755 struct dentry *dentry = path->dentry;
756
757 touch_atime(path->mnt, dentry);
758 nd_set_link(nd, NULL);
759
Jan Blunck4ac91372008-02-14 19:34:32 -0800760 if (path->mnt != nd->path.mnt) {
Ian Kent051d3812006-03-27 01:14:53 -0800761 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +1100762 nd->inode = nd->path.dentry->d_inode;
Ian Kent051d3812006-03-27 01:14:53 -0800763 dget(dentry);
764 }
765 mntget(path->mnt);
Nick Piggin31e6b012011-01-07 17:49:52 +1100766
Al Viro86acdca12009-12-22 23:45:11 -0500767 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500768 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
769 error = PTR_ERR(*p);
770 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800771 char *s = nd_get_link(nd);
772 error = 0;
773 if (s)
774 error = __vfs_follow_link(nd, s);
Jeff Layton39159de2009-12-07 12:01:50 -0500775 else if (nd->last_type == LAST_BIND) {
776 error = force_reval_path(&nd->path, nd);
777 if (error)
778 path_put(&nd->path);
779 }
Ian Kent051d3812006-03-27 01:14:53 -0800780 }
Ian Kent051d3812006-03-27 01:14:53 -0800781 return error;
782}
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784/*
785 * This limits recursive symlink follows to 8, while
786 * limiting consecutive symlinks to 40.
787 *
788 * Without that kind of total limit, nasty chains of consecutive
789 * symlinks can cause almost arbitrarily long lookups.
790 */
Al Viro90ebe562005-06-06 13:35:58 -0700791static inline int do_follow_link(struct path *path, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
Al Virodef4af32009-12-26 08:37:05 -0500793 void *cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 int err = -ELOOP;
795 if (current->link_count >= MAX_NESTED_LINKS)
796 goto loop;
797 if (current->total_link_count >= 40)
798 goto loop;
799 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
800 cond_resched();
Al Viro90ebe562005-06-06 13:35:58 -0700801 err = security_inode_follow_link(path->dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 if (err)
803 goto loop;
804 current->link_count++;
805 current->total_link_count++;
806 nd->depth++;
Al Virodef4af32009-12-26 08:37:05 -0500807 err = __do_follow_link(path, nd, &cookie);
808 if (!IS_ERR(cookie) && path->dentry->d_inode->i_op->put_link)
809 path->dentry->d_inode->i_op->put_link(path->dentry, nd, cookie);
Al Viro258fa992009-08-09 01:32:02 +0400810 path_put(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 current->link_count--;
812 nd->depth--;
813 return err;
814loop:
Jan Blunck1d957f92008-02-14 19:34:35 -0800815 path_put_conditional(path, nd);
816 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return err;
818}
819
Nick Piggin31e6b012011-01-07 17:49:52 +1100820static int follow_up_rcu(struct path *path)
821{
822 struct vfsmount *parent;
823 struct dentry *mountpoint;
824
825 parent = path->mnt->mnt_parent;
826 if (parent == path->mnt)
827 return 0;
828 mountpoint = path->mnt->mnt_mountpoint;
829 path->dentry = mountpoint;
830 path->mnt = parent;
831 return 1;
832}
833
Al Virobab77eb2009-04-18 03:26:48 -0400834int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835{
836 struct vfsmount *parent;
837 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000838
839 br_read_lock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400840 parent = path->mnt->mnt_parent;
841 if (parent == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000842 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return 0;
844 }
845 mntget(parent);
Al Virobab77eb2009-04-18 03:26:48 -0400846 mountpoint = dget(path->mnt->mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000847 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400848 dput(path->dentry);
849 path->dentry = mountpoint;
850 mntput(path->mnt);
851 path->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return 1;
853}
854
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100855/*
856 * serialization is taken care of in namespace.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100858static void __follow_mount_rcu(struct nameidata *nd, struct path *path,
859 struct inode **inode)
860{
861 while (d_mountpoint(path->dentry)) {
862 struct vfsmount *mounted;
863 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
864 if (!mounted)
865 return;
866 path->mnt = mounted;
867 path->dentry = mounted->mnt_root;
868 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
869 *inode = path->dentry->d_inode;
870 }
871}
872
Al Viro463ffb22005-06-06 13:36:05 -0700873static int __follow_mount(struct path *path)
874{
875 int res = 0;
876 while (d_mountpoint(path->dentry)) {
Al Viro1c755af2009-04-18 14:06:57 -0400877 struct vfsmount *mounted = lookup_mnt(path);
Al Viro463ffb22005-06-06 13:36:05 -0700878 if (!mounted)
879 break;
880 dput(path->dentry);
881 if (res)
882 mntput(path->mnt);
883 path->mnt = mounted;
884 path->dentry = dget(mounted->mnt_root);
885 res = 1;
886 }
887 return res;
888}
889
Al Viro79ed0222009-04-18 13:59:41 -0400890static void follow_mount(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Al Viro79ed0222009-04-18 13:59:41 -0400892 while (d_mountpoint(path->dentry)) {
Al Viro1c755af2009-04-18 14:06:57 -0400893 struct vfsmount *mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (!mounted)
895 break;
Al Viro79ed0222009-04-18 13:59:41 -0400896 dput(path->dentry);
897 mntput(path->mnt);
898 path->mnt = mounted;
899 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
Al Viro9393bd02009-04-18 13:58:15 -0400903int follow_down(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
905 struct vfsmount *mounted;
906
Al Viro1c755af2009-04-18 14:06:57 -0400907 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400909 dput(path->dentry);
910 mntput(path->mnt);
911 path->mnt = mounted;
912 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 return 1;
914 }
915 return 0;
916}
917
Nick Piggin31e6b012011-01-07 17:49:52 +1100918static int follow_dotdot_rcu(struct nameidata *nd)
919{
920 struct inode *inode = nd->inode;
921
922 set_root_rcu(nd);
923
924 while(1) {
925 if (nd->path.dentry == nd->root.dentry &&
926 nd->path.mnt == nd->root.mnt) {
927 break;
928 }
929 if (nd->path.dentry != nd->path.mnt->mnt_root) {
930 struct dentry *old = nd->path.dentry;
931 struct dentry *parent = old->d_parent;
932 unsigned seq;
933
934 seq = read_seqcount_begin(&parent->d_seq);
935 if (read_seqcount_retry(&old->d_seq, nd->seq))
936 return -ECHILD;
937 inode = parent->d_inode;
938 nd->path.dentry = parent;
939 nd->seq = seq;
940 break;
941 }
942 if (!follow_up_rcu(&nd->path))
943 break;
944 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
945 inode = nd->path.dentry->d_inode;
946 }
947 __follow_mount_rcu(nd, &nd->path, &inode);
948 nd->inode = inode;
949
950 return 0;
951}
952
953static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Al Viro2a737872009-04-07 11:49:53 -0400955 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -0700956
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -0800958 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959
Al Viro2a737872009-04-07 11:49:53 -0400960 if (nd->path.dentry == nd->root.dentry &&
961 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 break;
963 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800964 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -0500965 /* rare case of legitimate dget_parent()... */
966 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 dput(old);
968 break;
969 }
Al Viro3088dd72010-01-30 15:47:29 -0500970 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 }
Al Viro79ed0222009-04-18 13:59:41 -0400973 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +1100974 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977/*
Nick Pigginbaa03892010-08-18 04:37:31 +1000978 * Allocate a dentry with name and parent, and perform a parent
979 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
980 * on error. parent->d_inode->i_mutex must be held. d_lookup must
981 * have verified that no child exists while under i_mutex.
982 */
983static struct dentry *d_alloc_and_lookup(struct dentry *parent,
984 struct qstr *name, struct nameidata *nd)
985{
986 struct inode *inode = parent->d_inode;
987 struct dentry *dentry;
988 struct dentry *old;
989
990 /* Don't create child dentry for a dead directory. */
991 if (unlikely(IS_DEADDIR(inode)))
992 return ERR_PTR(-ENOENT);
993
994 dentry = d_alloc(parent, name);
995 if (unlikely(!dentry))
996 return ERR_PTR(-ENOMEM);
997
998 old = inode->i_op->lookup(inode, dentry, nd);
999 if (unlikely(old)) {
1000 dput(dentry);
1001 dentry = old;
1002 }
1003 return dentry;
1004}
1005
1006/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 * It's more convoluted than I'd like it to be, but... it's still fairly
1008 * small and for now I'd prefer to have fast path as straight as possible.
1009 * It _is_ time-critical.
1010 */
1011static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +11001012 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Jan Blunck4ac91372008-02-14 19:34:32 -08001014 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001015 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro6e6b1bd2009-08-13 23:38:37 +04001016 struct inode *dir;
Al Viro3cac2602009-08-13 18:27:43 +04001017 /*
1018 * See if the low-level filesystem might want
1019 * to use its own hash..
1020 */
Nick Pigginfb045ad2011-01-07 17:49:55 +11001021 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001022 int err = parent->d_op->d_hash(parent, nd->inode, name);
Al Viro3cac2602009-08-13 18:27:43 +04001023 if (err < 0)
1024 return err;
1025 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Nick Pigginb04f7842010-08-18 04:37:34 +10001027 /*
1028 * Rename seqlock is not required here because in the off chance
1029 * of a false negative due to a concurrent rename, we're going to
1030 * do the non-racy lookup, below.
1031 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001032 if (nd->flags & LOOKUP_RCU) {
1033 unsigned seq;
1034
1035 *inode = nd->inode;
1036 dentry = __d_lookup_rcu(parent, name, &seq, inode);
1037 if (!dentry) {
1038 if (nameidata_drop_rcu(nd))
1039 return -ECHILD;
1040 goto need_lookup;
1041 }
1042 /* Memory barrier in read_seqcount_begin of child is enough */
1043 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1044 return -ECHILD;
1045
1046 nd->seq = seq;
Nick Piggin34286d62011-01-07 17:49:57 +11001047 if (dentry->d_flags & DCACHE_OP_REVALIDATE)
Nick Piggin31e6b012011-01-07 17:49:52 +11001048 goto need_revalidate;
Nick Piggin31e6b012011-01-07 17:49:52 +11001049 path->mnt = mnt;
1050 path->dentry = dentry;
1051 __follow_mount_rcu(nd, path, inode);
1052 } else {
1053 dentry = __d_lookup(parent, name);
1054 if (!dentry)
1055 goto need_lookup;
Nick Piggin2e2e88e2010-08-18 04:37:30 +10001056found:
Nick Pigginfb045ad2011-01-07 17:49:55 +11001057 if (dentry->d_flags & DCACHE_OP_REVALIDATE)
Nick Piggin31e6b012011-01-07 17:49:52 +11001058 goto need_revalidate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059done:
Nick Piggin31e6b012011-01-07 17:49:52 +11001060 path->mnt = mnt;
1061 path->dentry = dentry;
1062 __follow_mount(path);
1063 *inode = path->dentry->d_inode;
1064 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 return 0;
1066
1067need_lookup:
Al Viro6e6b1bd2009-08-13 23:38:37 +04001068 dir = parent->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001069 BUG_ON(nd->inode != dir);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001070
1071 mutex_lock(&dir->i_mutex);
1072 /*
1073 * First re-do the cached lookup just in case it was created
Nick Pigginb04f7842010-08-18 04:37:34 +10001074 * while we waited for the directory semaphore, or the first
1075 * lookup failed due to an unrelated rename.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001076 *
Nick Pigginb04f7842010-08-18 04:37:34 +10001077 * This could use version numbering or similar to avoid unnecessary
1078 * cache lookups, but then we'd have to do the first lookup in the
1079 * non-racy way. However in the common case here, everything should
1080 * be hot in cache, so would it be a big win?
Al Viro6e6b1bd2009-08-13 23:38:37 +04001081 */
1082 dentry = d_lookup(parent, name);
Nick Pigginbaa03892010-08-18 04:37:31 +10001083 if (likely(!dentry)) {
1084 dentry = d_alloc_and_lookup(parent, name, nd);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001085 mutex_unlock(&dir->i_mutex);
1086 if (IS_ERR(dentry))
1087 goto fail;
1088 goto done;
1089 }
Al Viro6e6b1bd2009-08-13 23:38:37 +04001090 /*
1091 * Uhhuh! Nasty case: the cache was re-populated while
1092 * we waited on the semaphore. Need to revalidate.
1093 */
1094 mutex_unlock(&dir->i_mutex);
Nick Piggin2e2e88e2010-08-18 04:37:30 +10001095 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097need_revalidate:
Ian Kentbcdc5e02006-09-27 01:50:44 -07001098 dentry = do_revalidate(dentry, nd);
1099 if (!dentry)
1100 goto need_lookup;
1101 if (IS_ERR(dentry))
1102 goto fail;
1103 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105fail:
1106 return PTR_ERR(dentry);
1107}
1108
1109/*
Al Viroac278a92010-02-16 18:09:36 +00001110 * This is a temporary kludge to deal with "automount" symlinks; proper
1111 * solution is to trigger them on follow_mount(), so that do_lookup()
1112 * would DTRT. To be killed before 2.6.34-final.
1113 */
1114static inline int follow_on_final(struct inode *inode, unsigned lookup_flags)
1115{
1116 return inode && unlikely(inode->i_op->follow_link) &&
1117 ((lookup_flags & LOOKUP_FOLLOW) || S_ISDIR(inode->i_mode));
1118}
1119
1120/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001122 * This is the basic name resolution function, turning a pathname into
1123 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001125 * Returns 0 and nd will have valid dentry and mnt on success.
1126 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 */
Al Viro6de88d72009-08-09 01:41:57 +04001128static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
1130 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 int err;
1132 unsigned int lookup_flags = nd->flags;
1133
1134 while (*name=='/')
1135 name++;
1136 if (!*name)
1137 goto return_reval;
1138
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 if (nd->depth)
Trond Myklebustf55eab82006-02-04 23:28:01 -08001140 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141
1142 /* At this point we know we have a real path component. */
1143 for(;;) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001144 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 unsigned long hash;
1146 struct qstr this;
1147 unsigned int c;
1148
Trond Myklebustcdce5d62005-10-18 14:20:18 -07001149 nd->flags |= LOOKUP_CONTINUE;
Nick Piggin31e6b012011-01-07 17:49:52 +11001150 if (nd->flags & LOOKUP_RCU) {
Nick Pigginb74c79e2011-01-07 17:49:58 +11001151 err = exec_permission(nd->inode, IPERM_FLAG_RCU);
Nick Piggin31e6b012011-01-07 17:49:52 +11001152 if (err == -ECHILD) {
1153 if (nameidata_drop_rcu(nd))
1154 return -ECHILD;
1155 goto exec_again;
1156 }
1157 } else {
1158exec_again:
Nick Pigginb74c79e2011-01-07 17:49:58 +11001159 err = exec_permission(nd->inode, 0);
Nick Piggin31e6b012011-01-07 17:49:52 +11001160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 if (err)
1162 break;
1163
1164 this.name = name;
1165 c = *(const unsigned char *)name;
1166
1167 hash = init_name_hash();
1168 do {
1169 name++;
1170 hash = partial_name_hash(c, hash);
1171 c = *(const unsigned char *)name;
1172 } while (c && (c != '/'));
1173 this.len = name - (const char *) this.name;
1174 this.hash = end_name_hash(hash);
1175
1176 /* remove trailing slashes? */
1177 if (!c)
1178 goto last_component;
1179 while (*++name == '/');
1180 if (!*name)
1181 goto last_with_slashes;
1182
1183 /*
1184 * "." and ".." are special - ".." especially so because it has
1185 * to be able to know about the current root directory and
1186 * parent relationships.
1187 */
1188 if (this.name[0] == '.') switch (this.len) {
1189 default:
1190 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001191 case 2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (this.name[1] != '.')
1193 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001194 if (nd->flags & LOOKUP_RCU) {
1195 if (follow_dotdot_rcu(nd))
1196 return -ECHILD;
1197 } else
1198 follow_dotdot(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 /* fallthrough */
1200 case 1:
1201 continue;
1202 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 /* This does the actual lookups.. */
Nick Piggin31e6b012011-01-07 17:49:52 +11001204 err = do_lookup(nd, &this, &next, &inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 if (err)
1206 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 if (!inode)
1209 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210
1211 if (inode->i_op->follow_link) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001212 /* We commonly drop rcu-walk here */
1213 if (nameidata_dentry_drop_rcu_maybe(nd, next.dentry))
1214 return -ECHILD;
1215 BUG_ON(inode != next.dentry->d_inode);
Al Viro90ebe562005-06-06 13:35:58 -07001216 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 if (err)
1218 goto return_err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001219 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 err = -ENOENT;
Nick Piggin31e6b012011-01-07 17:49:52 +11001221 if (!nd->inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001223 } else {
Miklos Szeredi09dd17d2005-09-06 15:18:21 -07001224 path_to_nameidata(&next, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001225 nd->inode = inode;
1226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001228 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 break;
1230 continue;
1231 /* here ends the main loop */
1232
1233last_with_slashes:
1234 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1235last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -08001236 /* Clear LOOKUP_CONTINUE iff it was previously unset */
1237 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 if (lookup_flags & LOOKUP_PARENT)
1239 goto lookup_parent;
1240 if (this.name[0] == '.') switch (this.len) {
1241 default:
1242 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001243 case 2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 if (this.name[1] != '.')
1245 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001246 if (nd->flags & LOOKUP_RCU) {
1247 if (follow_dotdot_rcu(nd))
1248 return -ECHILD;
1249 } else
1250 follow_dotdot(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 /* fallthrough */
1252 case 1:
1253 goto return_reval;
1254 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001255 err = do_lookup(nd, &this, &next, &inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 if (err)
1257 break;
Al Viroac278a92010-02-16 18:09:36 +00001258 if (follow_on_final(inode, lookup_flags)) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001259 if (nameidata_dentry_drop_rcu_maybe(nd, next.dentry))
1260 return -ECHILD;
1261 BUG_ON(inode != next.dentry->d_inode);
Al Viro90ebe562005-06-06 13:35:58 -07001262 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263 if (err)
1264 goto return_err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001265 nd->inode = nd->path.dentry->d_inode;
1266 } else {
Miklos Szeredi09dd17d2005-09-06 15:18:21 -07001267 path_to_nameidata(&next, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001268 nd->inode = inode;
1269 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 err = -ENOENT;
Nick Piggin31e6b012011-01-07 17:49:52 +11001271 if (!nd->inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 break;
1273 if (lookup_flags & LOOKUP_DIRECTORY) {
1274 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001275 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 break;
1277 }
1278 goto return_base;
1279lookup_parent:
1280 nd->last = this;
1281 nd->last_type = LAST_NORM;
1282 if (this.name[0] != '.')
1283 goto return_base;
1284 if (this.len == 1)
1285 nd->last_type = LAST_DOT;
1286 else if (this.len == 2 && this.name[1] == '.')
1287 nd->last_type = LAST_DOTDOT;
1288 else
1289 goto return_base;
1290return_reval:
1291 /*
1292 * We bypassed the ordinary revalidation routines.
1293 * We may need to check the cached dentry for staleness.
1294 */
Nick Pigginfb045ad2011-01-07 17:49:55 +11001295 if (need_reval_dot(nd->path.dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 /* Note: we do not d_invalidate() */
Nick Piggin34286d62011-01-07 17:49:57 +11001297 err = d_revalidate(nd->path.dentry, nd);
1298 if (!err)
1299 err = -ESTALE;
1300 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 break;
1302 }
1303return_base:
Nick Piggin31e6b012011-01-07 17:49:52 +11001304 if (nameidata_drop_rcu_last_maybe(nd))
1305 return -ECHILD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 return 0;
1307out_dput:
Nick Piggin31e6b012011-01-07 17:49:52 +11001308 if (!(nd->flags & LOOKUP_RCU))
1309 path_put_conditional(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 break;
1311 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001312 if (!(nd->flags & LOOKUP_RCU))
1313 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314return_err:
1315 return err;
1316}
1317
Nick Piggin31e6b012011-01-07 17:49:52 +11001318static inline int path_walk_rcu(const char *name, struct nameidata *nd)
1319{
1320 current->total_link_count = 0;
1321
1322 return link_path_walk(name, nd);
1323}
1324
1325static inline int path_walk_simple(const char *name, struct nameidata *nd)
1326{
1327 current->total_link_count = 0;
1328
1329 return link_path_walk(name, nd);
1330}
1331
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001332static int path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333{
Al Viro6de88d72009-08-09 01:41:57 +04001334 struct path save = nd->path;
1335 int result;
1336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 current->total_link_count = 0;
Al Viro6de88d72009-08-09 01:41:57 +04001338
1339 /* make sure the stuff we saved doesn't go away */
1340 path_get(&save);
1341
1342 result = link_path_walk(name, nd);
1343 if (result == -ESTALE) {
1344 /* nd->path had been dropped */
1345 current->total_link_count = 0;
1346 nd->path = save;
1347 path_get(&nd->path);
1348 nd->flags |= LOOKUP_REVAL;
1349 result = link_path_walk(name, nd);
1350 }
1351
1352 path_put(&save);
1353
1354 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355}
1356
Nick Piggin31e6b012011-01-07 17:49:52 +11001357static void path_finish_rcu(struct nameidata *nd)
1358{
1359 if (nd->flags & LOOKUP_RCU) {
1360 /* RCU dangling. Cancel it. */
1361 nd->flags &= ~LOOKUP_RCU;
1362 nd->root.mnt = NULL;
1363 rcu_read_unlock();
1364 br_read_unlock(vfsmount_lock);
1365 }
1366 if (nd->file)
1367 fput(nd->file);
1368}
1369
1370static int path_init_rcu(int dfd, const char *name, unsigned int flags, struct nameidata *nd)
1371{
1372 int retval = 0;
1373 int fput_needed;
1374 struct file *file;
1375
1376 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1377 nd->flags = flags | LOOKUP_RCU;
1378 nd->depth = 0;
1379 nd->root.mnt = NULL;
1380 nd->file = NULL;
1381
1382 if (*name=='/') {
1383 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +11001384 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001385
1386 br_read_lock(vfsmount_lock);
1387 rcu_read_lock();
1388
Nick Pigginc28cc362011-01-07 17:49:53 +11001389 do {
1390 seq = read_seqcount_begin(&fs->seq);
1391 nd->root = fs->root;
1392 nd->path = nd->root;
1393 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1394 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +11001395
1396 } else if (dfd == AT_FDCWD) {
1397 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +11001398 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001399
1400 br_read_lock(vfsmount_lock);
1401 rcu_read_lock();
1402
Nick Pigginc28cc362011-01-07 17:49:53 +11001403 do {
1404 seq = read_seqcount_begin(&fs->seq);
1405 nd->path = fs->pwd;
1406 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1407 } while (read_seqcount_retry(&fs->seq, seq));
1408
Nick Piggin31e6b012011-01-07 17:49:52 +11001409 } else {
1410 struct dentry *dentry;
1411
1412 file = fget_light(dfd, &fput_needed);
1413 retval = -EBADF;
1414 if (!file)
1415 goto out_fail;
1416
1417 dentry = file->f_path.dentry;
1418
1419 retval = -ENOTDIR;
1420 if (!S_ISDIR(dentry->d_inode->i_mode))
1421 goto fput_fail;
1422
1423 retval = file_permission(file, MAY_EXEC);
1424 if (retval)
1425 goto fput_fail;
1426
1427 nd->path = file->f_path;
1428 if (fput_needed)
1429 nd->file = file;
1430
Nick Pigginc28cc362011-01-07 17:49:53 +11001431 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +11001432 br_read_lock(vfsmount_lock);
1433 rcu_read_lock();
1434 }
1435 nd->inode = nd->path.dentry->d_inode;
1436 return 0;
1437
1438fput_fail:
1439 fput_light(file, fput_needed);
1440out_fail:
1441 return retval;
1442}
1443
Al Viro9b4a9b12009-04-07 11:44:16 -04001444static int path_init(int dfd, const char *name, unsigned int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001446 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001447 int fput_needed;
1448 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
1450 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1451 nd->flags = flags;
1452 nd->depth = 0;
Al Viro2a737872009-04-07 11:49:53 -04001453 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 if (*name=='/') {
Al Viro2a737872009-04-07 11:49:53 -04001456 set_root(nd);
1457 nd->path = nd->root;
1458 path_get(&nd->root);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001459 } else if (dfd == AT_FDCWD) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +02001460 get_fs_pwd(current->fs, &nd->path);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001461 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001462 struct dentry *dentry;
1463
1464 file = fget_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001465 retval = -EBADF;
1466 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001467 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001468
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001469 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001470
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001471 retval = -ENOTDIR;
1472 if (!S_ISDIR(dentry->d_inode->i_mode))
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001473 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001474
1475 retval = file_permission(file, MAY_EXEC);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001476 if (retval)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001477 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001478
Jan Blunck5dd784d02008-02-14 19:34:38 -08001479 nd->path = file->f_path;
1480 path_get(&file->f_path);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001481
1482 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001484 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001485 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001486
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001487fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001488 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001489out_fail:
1490 return retval;
1491}
1492
1493/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
1494static int do_path_lookup(int dfd, const char *name,
1495 unsigned int flags, struct nameidata *nd)
1496{
Nick Piggin31e6b012011-01-07 17:49:52 +11001497 int retval;
1498
1499 /*
1500 * Path walking is largely split up into 2 different synchronisation
1501 * schemes, rcu-walk and ref-walk (explained in
1502 * Documentation/filesystems/path-lookup.txt). These share much of the
1503 * path walk code, but some things particularly setup, cleanup, and
1504 * following mounts are sufficiently divergent that functions are
1505 * duplicated. Typically there is a function foo(), and its RCU
1506 * analogue, foo_rcu().
1507 *
1508 * -ECHILD is the error number of choice (just to avoid clashes) that
1509 * is returned if some aspect of an rcu-walk fails. Such an error must
1510 * be handled by restarting a traditional ref-walk (which will always
1511 * be able to complete).
1512 */
1513 retval = path_init_rcu(dfd, name, flags, nd);
1514 if (unlikely(retval))
1515 return retval;
1516 retval = path_walk_rcu(name, nd);
1517 path_finish_rcu(nd);
Al Viro2a737872009-04-07 11:49:53 -04001518 if (nd->root.mnt) {
1519 path_put(&nd->root);
1520 nd->root.mnt = NULL;
1521 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001522
1523 if (unlikely(retval == -ECHILD || retval == -ESTALE)) {
1524 /* slower, locked walk */
1525 if (retval == -ESTALE)
1526 flags |= LOOKUP_REVAL;
1527 retval = path_init(dfd, name, flags, nd);
1528 if (unlikely(retval))
1529 return retval;
1530 retval = path_walk(name, nd);
1531 if (nd->root.mnt) {
1532 path_put(&nd->root);
1533 nd->root.mnt = NULL;
1534 }
1535 }
1536
1537 if (likely(!retval)) {
1538 if (unlikely(!audit_dummy_context())) {
1539 if (nd->path.dentry && nd->inode)
1540 audit_inode(name, nd->path.dentry);
1541 }
1542 }
1543
Al Viro9b4a9b12009-04-07 11:44:16 -04001544 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545}
1546
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001547int path_lookup(const char *name, unsigned int flags,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001548 struct nameidata *nd)
1549{
1550 return do_path_lookup(AT_FDCWD, name, flags, nd);
1551}
1552
Al Virod1811462008-08-02 00:49:18 -04001553int kern_path(const char *name, unsigned int flags, struct path *path)
1554{
1555 struct nameidata nd;
1556 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1557 if (!res)
1558 *path = nd.path;
1559 return res;
1560}
1561
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001562/**
1563 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1564 * @dentry: pointer to dentry of the base directory
1565 * @mnt: pointer to vfs mount of the base directory
1566 * @name: pointer to file name
1567 * @flags: lookup flags
1568 * @nd: pointer to nameidata
1569 */
1570int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1571 const char *name, unsigned int flags,
1572 struct nameidata *nd)
1573{
1574 int retval;
1575
1576 /* same as do_path_lookup */
1577 nd->last_type = LAST_ROOT;
1578 nd->flags = flags;
1579 nd->depth = 0;
1580
Jan Blunckc8e7f442008-06-09 16:40:35 -07001581 nd->path.dentry = dentry;
1582 nd->path.mnt = mnt;
1583 path_get(&nd->path);
Al Viro5b857112009-04-07 11:53:49 -04001584 nd->root = nd->path;
1585 path_get(&nd->root);
Nick Piggin31e6b012011-01-07 17:49:52 +11001586 nd->inode = nd->path.dentry->d_inode;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001587
1588 retval = path_walk(name, nd);
Jan Blunck4ac91372008-02-14 19:34:32 -08001589 if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
Nick Piggin31e6b012011-01-07 17:49:52 +11001590 nd->inode))
Jan Blunck4ac91372008-02-14 19:34:32 -08001591 audit_inode(name, nd->path.dentry);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001592
Al Viro5b857112009-04-07 11:53:49 -04001593 path_put(&nd->root);
1594 nd->root.mnt = NULL;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001595
Al Viro2a737872009-04-07 11:49:53 -04001596 return retval;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001597}
1598
Christoph Hellwigeead1912007-10-16 23:25:38 -07001599static struct dentry *__lookup_hash(struct qstr *name,
1600 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601{
Christoph Hellwig81fca442010-10-06 10:47:47 +02001602 struct inode *inode = base->d_inode;
James Morris057f6c02007-04-26 00:12:05 -07001603 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 int err;
1605
Nick Pigginb74c79e2011-01-07 17:49:58 +11001606 err = exec_permission(inode, 0);
Christoph Hellwig81fca442010-10-06 10:47:47 +02001607 if (err)
1608 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610 /*
1611 * See if the low-level filesystem might want
1612 * to use its own hash..
1613 */
Nick Pigginfb045ad2011-01-07 17:49:55 +11001614 if (base->d_flags & DCACHE_OP_HASH) {
Nick Pigginb1e6a012011-01-07 17:49:28 +11001615 err = base->d_op->d_hash(base, inode, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 dentry = ERR_PTR(err);
1617 if (err < 0)
1618 goto out;
1619 }
1620
Nick Pigginb04f7842010-08-18 04:37:34 +10001621 /*
1622 * Don't bother with __d_lookup: callers are for creat as
1623 * well as unlink, so a lot of the time it would cost
1624 * a double lookup.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001625 */
Nick Pigginb04f7842010-08-18 04:37:34 +10001626 dentry = d_lookup(base, name);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001627
Nick Pigginfb045ad2011-01-07 17:49:55 +11001628 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE))
Al Viro6e6b1bd2009-08-13 23:38:37 +04001629 dentry = do_revalidate(dentry, nd);
1630
Nick Pigginbaa03892010-08-18 04:37:31 +10001631 if (!dentry)
1632 dentry = d_alloc_and_lookup(base, name, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633out:
1634 return dentry;
1635}
1636
James Morris057f6c02007-04-26 00:12:05 -07001637/*
1638 * Restricted form of lookup. Doesn't follow links, single-component only,
1639 * needs parent already locked. Doesn't follow mounts.
1640 * SMP-safe.
1641 */
Adrian Bunka244e162006-03-31 02:32:11 -08001642static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643{
Jan Blunck4ac91372008-02-14 19:34:32 -08001644 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645}
1646
Christoph Hellwigeead1912007-10-16 23:25:38 -07001647static int __lookup_one_len(const char *name, struct qstr *this,
1648 struct dentry *base, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
1650 unsigned long hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 unsigned int c;
1652
James Morris057f6c02007-04-26 00:12:05 -07001653 this->name = name;
1654 this->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 if (!len)
James Morris057f6c02007-04-26 00:12:05 -07001656 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
1658 hash = init_name_hash();
1659 while (len--) {
1660 c = *(const unsigned char *)name++;
1661 if (c == '/' || c == '\0')
James Morris057f6c02007-04-26 00:12:05 -07001662 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 hash = partial_name_hash(c, hash);
1664 }
James Morris057f6c02007-04-26 00:12:05 -07001665 this->hash = end_name_hash(hash);
1666 return 0;
1667}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Christoph Hellwigeead1912007-10-16 23:25:38 -07001669/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001670 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001671 * @name: pathname component to lookup
1672 * @base: base directory to lookup from
1673 * @len: maximum length @len should be interpreted to
1674 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001675 * Note that this routine is purely a helper for filesystem usage and should
1676 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001677 * nameidata argument is passed to the filesystem methods and a filesystem
1678 * using this helper needs to be prepared for that.
1679 */
James Morris057f6c02007-04-26 00:12:05 -07001680struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1681{
1682 int err;
1683 struct qstr this;
1684
David Woodhouse2f9092e2009-04-20 23:18:37 +01001685 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1686
James Morris057f6c02007-04-26 00:12:05 -07001687 err = __lookup_one_len(name, &this, base, len);
1688 if (err)
1689 return ERR_PTR(err);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001690
Christoph Hellwig49705b72005-11-08 21:35:06 -08001691 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001692}
1693
Al Viro2d8f3032008-07-22 09:59:21 -04001694int user_path_at(int dfd, const char __user *name, unsigned flags,
1695 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696{
Al Viro2d8f3032008-07-22 09:59:21 -04001697 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 char *tmp = getname(name);
1699 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001701
1702 BUG_ON(flags & LOOKUP_PARENT);
1703
1704 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001706 if (!err)
1707 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 }
1709 return err;
1710}
1711
Al Viro2ad94ae2008-07-21 09:32:51 -04001712static int user_path_parent(int dfd, const char __user *path,
1713 struct nameidata *nd, char **name)
1714{
1715 char *s = getname(path);
1716 int error;
1717
1718 if (IS_ERR(s))
1719 return PTR_ERR(s);
1720
1721 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1722 if (error)
1723 putname(s);
1724 else
1725 *name = s;
1726
1727 return error;
1728}
1729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730/*
1731 * It's inline, so penalty for filesystems that don't use sticky bit is
1732 * minimal.
1733 */
1734static inline int check_sticky(struct inode *dir, struct inode *inode)
1735{
David Howellsda9592e2008-11-14 10:39:05 +11001736 uid_t fsuid = current_fsuid();
1737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 if (!(dir->i_mode & S_ISVTX))
1739 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001740 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001742 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 return 0;
1744 return !capable(CAP_FOWNER);
1745}
1746
1747/*
1748 * Check whether we can remove a link victim from directory dir, check
1749 * whether the type of victim is right.
1750 * 1. We can't do it if dir is read-only (done in permission())
1751 * 2. We should have write and exec permissions on dir
1752 * 3. We can't remove anything from append-only dir
1753 * 4. We can't do anything with immutable dir (done in permission())
1754 * 5. If the sticky bit on dir is set we should either
1755 * a. be owner of dir, or
1756 * b. be owner of victim, or
1757 * c. have CAP_FOWNER capability
1758 * 6. If the victim is append-only or immutable we can't do antyhing with
1759 * links pointing to it.
1760 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1761 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1762 * 9. We can't remove a root or mountpoint.
1763 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1764 * nfs_async_unlink().
1765 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001766static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767{
1768 int error;
1769
1770 if (!victim->d_inode)
1771 return -ENOENT;
1772
1773 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001774 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Al Virof419a2e2008-07-22 00:07:17 -04001776 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 if (error)
1778 return error;
1779 if (IS_APPEND(dir))
1780 return -EPERM;
1781 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001782 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 return -EPERM;
1784 if (isdir) {
1785 if (!S_ISDIR(victim->d_inode->i_mode))
1786 return -ENOTDIR;
1787 if (IS_ROOT(victim))
1788 return -EBUSY;
1789 } else if (S_ISDIR(victim->d_inode->i_mode))
1790 return -EISDIR;
1791 if (IS_DEADDIR(dir))
1792 return -ENOENT;
1793 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1794 return -EBUSY;
1795 return 0;
1796}
1797
1798/* Check whether we can create an object with dentry child in directory
1799 * dir.
1800 * 1. We can't do it if child already exists (open has special treatment for
1801 * this case, but since we are inlined it's OK)
1802 * 2. We can't do it if dir is read-only (done in permission())
1803 * 3. We should have write and exec permissions on dir
1804 * 4. We can't do it if dir is immutable (done in permission())
1805 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001806static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807{
1808 if (child->d_inode)
1809 return -EEXIST;
1810 if (IS_DEADDIR(dir))
1811 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001812 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813}
1814
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815/*
1816 * p1 and p2 should be directories on the same fs.
1817 */
1818struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1819{
1820 struct dentry *p;
1821
1822 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001823 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 return NULL;
1825 }
1826
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001827 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001829 p = d_ancestor(p2, p1);
1830 if (p) {
1831 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1832 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1833 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 }
1835
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001836 p = d_ancestor(p1, p2);
1837 if (p) {
1838 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1839 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1840 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
1842
Ingo Molnarf2eace22006-07-03 00:25:05 -07001843 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1844 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 return NULL;
1846}
1847
1848void unlock_rename(struct dentry *p1, struct dentry *p2)
1849{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001850 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001852 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001853 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 }
1855}
1856
1857int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1858 struct nameidata *nd)
1859{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001860 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
1862 if (error)
1863 return error;
1864
Al Viroacfa4382008-12-04 10:06:33 -05001865 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 return -EACCES; /* shouldn't it be ENOSYS? */
1867 mode &= S_IALLUGO;
1868 mode |= S_IFREG;
1869 error = security_inode_create(dir, dentry, mode);
1870 if (error)
1871 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001873 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001874 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return error;
1876}
1877
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001878int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001880 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 struct inode *inode = dentry->d_inode;
1882 int error;
1883
1884 if (!inode)
1885 return -ENOENT;
1886
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001887 switch (inode->i_mode & S_IFMT) {
1888 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001890 case S_IFDIR:
1891 if (acc_mode & MAY_WRITE)
1892 return -EISDIR;
1893 break;
1894 case S_IFBLK:
1895 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001896 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001898 /*FALLTHRU*/
1899 case S_IFIFO:
1900 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001902 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001903 }
Dave Hansenb41572e2007-10-16 23:31:14 -07001904
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001905 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07001906 if (error)
1907 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05001908
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 /*
1910 * An append-only file must be opened in append mode for writing.
1911 */
1912 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05001913 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05001914 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05001916 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 }
1918
1919 /* O_NOATIME can only be set by the owner or superuser */
Al Viro7715b522009-12-16 03:54:00 -05001920 if (flag & O_NOATIME && !is_owner_or_cap(inode))
1921 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 /*
1924 * Ensure there are no outstanding leases on the file.
1925 */
Al Virob65a9cf2009-12-16 06:27:40 -05001926 return break_lease(inode, flag);
Al Viro7715b522009-12-16 03:54:00 -05001927}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928
Al Viro7715b522009-12-16 03:54:00 -05001929static int handle_truncate(struct path *path)
1930{
1931 struct inode *inode = path->dentry->d_inode;
1932 int error = get_write_access(inode);
1933 if (error)
1934 return error;
1935 /*
1936 * Refuse to truncate files with mandatory locks held on them.
1937 */
1938 error = locks_verify_locked(inode);
1939 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09001940 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05001941 if (!error) {
1942 error = do_truncate(path->dentry, 0,
1943 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
1944 NULL);
1945 }
1946 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04001947 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948}
1949
Dave Hansend57999e2008-02-15 14:37:27 -08001950/*
1951 * Be careful about ever adding any more callers of this
1952 * function. Its flags must be in the namei format, not
1953 * what get passed to sys_open().
1954 */
1955static int __open_namei_create(struct nameidata *nd, struct path *path,
Al Viro8737c932009-12-24 06:47:55 -05001956 int open_flag, int mode)
Dave Hansenaab520e2006-09-30 23:29:02 -07001957{
1958 int error;
Jan Blunck4ac91372008-02-14 19:34:32 -08001959 struct dentry *dir = nd->path.dentry;
Dave Hansenaab520e2006-09-30 23:29:02 -07001960
1961 if (!IS_POSIXACL(dir->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04001962 mode &= ~current_umask();
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001963 error = security_path_mknod(&nd->path, path->dentry, mode, 0);
1964 if (error)
1965 goto out_unlock;
Dave Hansenaab520e2006-09-30 23:29:02 -07001966 error = vfs_create(dir->d_inode, path->dentry, mode, nd);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001967out_unlock:
Dave Hansenaab520e2006-09-30 23:29:02 -07001968 mutex_unlock(&dir->d_inode->i_mutex);
Jan Blunck4ac91372008-02-14 19:34:32 -08001969 dput(nd->path.dentry);
1970 nd->path.dentry = path->dentry;
Nick Piggin31e6b012011-01-07 17:49:52 +11001971
Dave Hansenaab520e2006-09-30 23:29:02 -07001972 if (error)
1973 return error;
1974 /* Don't check for write permission, don't truncate */
Al Viro8737c932009-12-24 06:47:55 -05001975 return may_open(&nd->path, 0, open_flag & ~O_TRUNC);
Dave Hansenaab520e2006-09-30 23:29:02 -07001976}
1977
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978/*
Dave Hansend57999e2008-02-15 14:37:27 -08001979 * Note that while the flag value (low two bits) for sys_open means:
1980 * 00 - read-only
1981 * 01 - write-only
1982 * 10 - read-write
1983 * 11 - special
1984 * it is changed into
1985 * 00 - no permissions needed
1986 * 01 - read-permission
1987 * 10 - write-permission
1988 * 11 - read-write
1989 * for the internal routines (ie open_namei()/follow_link() etc)
1990 * This is more logical, and also allows the 00 "no perm needed"
1991 * to be used for symlinks (where the permissions are checked
1992 * later).
1993 *
1994*/
1995static inline int open_to_namei_flags(int flag)
1996{
1997 if ((flag+1) & O_ACCMODE)
1998 flag++;
1999 return flag;
2000}
2001
Al Viro7715b522009-12-16 03:54:00 -05002002static int open_will_truncate(int flag, struct inode *inode)
Dave Hansen4a3fd212008-02-15 14:37:48 -08002003{
2004 /*
2005 * We'll never write to the fs underlying
2006 * a device file.
2007 */
2008 if (special_file(inode->i_mode))
2009 return 0;
2010 return (flag & O_TRUNC);
2011}
2012
Al Viro648fa862009-12-24 01:26:48 -05002013static struct file *finish_open(struct nameidata *nd,
Al Viro9a661792009-12-24 06:49:47 -05002014 int open_flag, int acc_mode)
Al Viro648fa862009-12-24 01:26:48 -05002015{
2016 struct file *filp;
2017 int will_truncate;
2018 int error;
2019
Al Viro9a661792009-12-24 06:49:47 -05002020 will_truncate = open_will_truncate(open_flag, nd->path.dentry->d_inode);
Al Viro648fa862009-12-24 01:26:48 -05002021 if (will_truncate) {
2022 error = mnt_want_write(nd->path.mnt);
2023 if (error)
2024 goto exit;
2025 }
2026 error = may_open(&nd->path, acc_mode, open_flag);
2027 if (error) {
2028 if (will_truncate)
2029 mnt_drop_write(nd->path.mnt);
2030 goto exit;
2031 }
2032 filp = nameidata_to_filp(nd);
2033 if (!IS_ERR(filp)) {
2034 error = ima_file_check(filp, acc_mode);
2035 if (error) {
2036 fput(filp);
2037 filp = ERR_PTR(error);
2038 }
2039 }
2040 if (!IS_ERR(filp)) {
Al Viro648fa862009-12-24 01:26:48 -05002041 if (will_truncate) {
2042 error = handle_truncate(&nd->path);
2043 if (error) {
2044 fput(filp);
2045 filp = ERR_PTR(error);
2046 }
2047 }
2048 }
2049 /*
2050 * It is now safe to drop the mnt write
2051 * because the filp has had a write taken
2052 * on its behalf.
2053 */
2054 if (will_truncate)
2055 mnt_drop_write(nd->path.mnt);
Al Virod893f1b2010-10-29 03:30:42 -04002056 path_put(&nd->path);
Al Viro648fa862009-12-24 01:26:48 -05002057 return filp;
2058
2059exit:
2060 if (!IS_ERR(nd->intent.open.file))
2061 release_open_intent(nd);
2062 path_put(&nd->path);
2063 return ERR_PTR(error);
2064}
2065
Nick Piggin31e6b012011-01-07 17:49:52 +11002066/*
2067 * Handle O_CREAT case for do_filp_open
2068 */
Al Virofb1cc552009-12-24 01:58:28 -05002069static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viro5b369df2009-12-24 06:51:13 -05002070 int open_flag, int acc_mode,
Al Viro3e297b62010-03-26 12:40:13 -04002071 int mode, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002072{
Al Viroa1e28032009-12-24 02:12:06 -05002073 struct dentry *dir = nd->path.dentry;
Al Virofb1cc552009-12-24 01:58:28 -05002074 struct file *filp;
Al Viro1f36f772009-12-26 10:56:19 -05002075 int error = -EISDIR;
Al Virofb1cc552009-12-24 01:58:28 -05002076
Al Viro1f36f772009-12-26 10:56:19 -05002077 switch (nd->last_type) {
2078 case LAST_DOTDOT:
2079 follow_dotdot(nd);
2080 dir = nd->path.dentry;
Neil Brown176306f2010-05-24 16:57:56 +10002081 case LAST_DOT:
Nick Pigginfb045ad2011-01-07 17:49:55 +11002082 if (need_reval_dot(dir)) {
Nick Piggin34286d62011-01-07 17:49:57 +11002083 error = d_revalidate(nd->path.dentry, nd);
2084 if (!error)
Al Viro1f36f772009-12-26 10:56:19 -05002085 error = -ESTALE;
Nick Piggin34286d62011-01-07 17:49:57 +11002086 if (error < 0)
Al Viro1f36f772009-12-26 10:56:19 -05002087 goto exit;
Al Viro1f36f772009-12-26 10:56:19 -05002088 }
2089 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002090 case LAST_ROOT:
Nick Piggin31e6b012011-01-07 17:49:52 +11002091 goto exit;
Al Viro1f36f772009-12-26 10:56:19 -05002092 case LAST_BIND:
2093 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002094 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002095 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002096
Al Viro1f36f772009-12-26 10:56:19 -05002097 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002098 if (nd->last.name[nd->last.len])
2099 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002100
Al Viroa1e28032009-12-24 02:12:06 -05002101 mutex_lock(&dir->d_inode->i_mutex);
2102
2103 path->dentry = lookup_hash(nd);
2104 path->mnt = nd->path.mnt;
2105
Al Virofb1cc552009-12-24 01:58:28 -05002106 error = PTR_ERR(path->dentry);
2107 if (IS_ERR(path->dentry)) {
2108 mutex_unlock(&dir->d_inode->i_mutex);
2109 goto exit;
2110 }
2111
2112 if (IS_ERR(nd->intent.open.file)) {
2113 error = PTR_ERR(nd->intent.open.file);
2114 goto exit_mutex_unlock;
2115 }
2116
2117 /* Negative dentry, just create the file */
2118 if (!path->dentry->d_inode) {
2119 /*
2120 * This write is needed to ensure that a
2121 * ro->rw transition does not occur between
2122 * the time when the file is created and when
2123 * a permanent write count is taken through
2124 * the 'struct file' in nameidata_to_filp().
2125 */
2126 error = mnt_want_write(nd->path.mnt);
2127 if (error)
2128 goto exit_mutex_unlock;
2129 error = __open_namei_create(nd, path, open_flag, mode);
2130 if (error) {
2131 mnt_drop_write(nd->path.mnt);
2132 goto exit;
2133 }
2134 filp = nameidata_to_filp(nd);
2135 mnt_drop_write(nd->path.mnt);
Al Virod893f1b2010-10-29 03:30:42 -04002136 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002137 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 return filp;
2145 }
2146
2147 /*
2148 * It already exists.
2149 */
2150 mutex_unlock(&dir->d_inode->i_mutex);
2151 audit_inode(pathname, path->dentry);
2152
2153 error = -EEXIST;
Al Viro5b369df2009-12-24 06:51:13 -05002154 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002155 goto exit_dput;
2156
2157 if (__follow_mount(path)) {
2158 error = -ELOOP;
Al Viro5b369df2009-12-24 06:51:13 -05002159 if (open_flag & O_NOFOLLOW)
Al Virofb1cc552009-12-24 01:58:28 -05002160 goto exit_dput;
2161 }
2162
2163 error = -ENOENT;
2164 if (!path->dentry->d_inode)
2165 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002166
2167 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002168 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002169
2170 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002171 nd->inode = path->dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05002172 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002173 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002174 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002175ok:
Al Viro9a661792009-12-24 06:49:47 -05002176 filp = finish_open(nd, open_flag, acc_mode);
Al Virofb1cc552009-12-24 01:58:28 -05002177 return filp;
2178
2179exit_mutex_unlock:
2180 mutex_unlock(&dir->d_inode->i_mutex);
2181exit_dput:
2182 path_put_conditional(path, nd);
2183exit:
2184 if (!IS_ERR(nd->intent.open.file))
2185 release_open_intent(nd);
Al Virofb1cc552009-12-24 01:58:28 -05002186 path_put(&nd->path);
2187 return ERR_PTR(error);
2188}
2189
Dave Hansend57999e2008-02-15 14:37:27 -08002190/*
Dave Hansen4a3fd212008-02-15 14:37:48 -08002191 * Note that the low bits of the passed in "open_flag"
2192 * are not the same as in the local variable "flag". See
2193 * open_to_namei_flags() for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002195struct file *do_filp_open(int dfd, const char *pathname,
Al Viro6e8341a2009-04-06 11:16:22 -04002196 int open_flag, int mode, int acc_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197{
Dave Hansen4a3fd212008-02-15 14:37:48 -08002198 struct file *filp;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002199 struct nameidata nd;
Al Viro6e8341a2009-04-06 11:16:22 -04002200 int error;
Al Viro9850c052010-01-13 15:01:15 -05002201 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 int count = 0;
Dave Hansend57999e2008-02-15 14:37:27 -08002203 int flag = open_to_namei_flags(open_flag);
Nick Piggin31e6b012011-01-07 17:49:52 +11002204 int flags;
Al Viro1f36f772009-12-26 10:56:19 -05002205
2206 if (!(open_flag & O_CREAT))
2207 mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
Lino Sanfilippob1085ba2010-11-05 17:05:27 +01002209 /* Must never be set by userspace */
2210 open_flag &= ~FMODE_NONOTIFY;
2211
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +01002212 /*
2213 * O_SYNC is implemented as __O_SYNC|O_DSYNC. As many places only
2214 * check for O_DSYNC if the need any syncing at all we enforce it's
2215 * always set instead of having to deal with possibly weird behaviour
2216 * for malicious applications setting only __O_SYNC.
2217 */
2218 if (open_flag & __O_SYNC)
2219 open_flag |= O_DSYNC;
2220
Al Viro6e8341a2009-04-06 11:16:22 -04002221 if (!acc_mode)
Al Viro6d125522009-12-24 06:58:56 -05002222 acc_mode = MAY_OPEN | ACC_MODE(open_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Trond Myklebust834f2a42005-10-18 14:20:16 -07002224 /* O_TRUNC implies we need access checks for write permissions */
Al Viro4296e2c2009-12-24 07:15:41 -05002225 if (open_flag & O_TRUNC)
Trond Myklebust834f2a42005-10-18 14:20:16 -07002226 acc_mode |= MAY_WRITE;
2227
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 /* Allow the LSM permission hook to distinguish append
2229 access from general write access. */
Al Viro4296e2c2009-12-24 07:15:41 -05002230 if (open_flag & O_APPEND)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 acc_mode |= MAY_APPEND;
2232
Nick Piggin31e6b012011-01-07 17:49:52 +11002233 flags = LOOKUP_OPEN;
2234 if (open_flag & O_CREAT) {
2235 flags |= LOOKUP_CREATE;
2236 if (open_flag & O_EXCL)
2237 flags |= LOOKUP_EXCL;
J. R. Okajima654f5622009-06-18 23:30:15 +09002238 }
Nick Piggin31e6b012011-01-07 17:49:52 +11002239 if (open_flag & O_DIRECTORY)
2240 flags |= LOOKUP_DIRECTORY;
2241 if (!(open_flag & O_NOFOLLOW))
2242 flags |= LOOKUP_FOLLOW;
2243
2244 filp = get_empty_filp();
2245 if (!filp)
2246 return ERR_PTR(-ENFILE);
2247
2248 filp->f_flags = open_flag;
2249 nd.intent.open.file = filp;
2250 nd.intent.open.flags = flag;
2251 nd.intent.open.create_mode = mode;
2252
2253 if (open_flag & O_CREAT)
2254 goto creat;
2255
2256 /* !O_CREAT, simple open */
2257 error = do_path_lookup(dfd, pathname, flags, &nd);
2258 if (unlikely(error))
2259 goto out_filp;
2260 error = -ELOOP;
2261 if (!(nd.flags & LOOKUP_FOLLOW)) {
2262 if (nd.inode->i_op->follow_link)
2263 goto out_path;
2264 }
2265 error = -ENOTDIR;
2266 if (nd.flags & LOOKUP_DIRECTORY) {
2267 if (!nd.inode->i_op->lookup)
2268 goto out_path;
2269 }
2270 audit_inode(pathname, nd.path.dentry);
2271 filp = finish_open(&nd, open_flag, acc_mode);
2272 return filp;
2273
2274creat:
2275 /* OK, have to create the file. Find the parent. */
2276 error = path_init_rcu(dfd, pathname,
2277 LOOKUP_PARENT | (flags & LOOKUP_REVAL), &nd);
2278 if (error)
2279 goto out_filp;
2280 error = path_walk_rcu(pathname, &nd);
2281 path_finish_rcu(&nd);
2282 if (unlikely(error == -ECHILD || error == -ESTALE)) {
2283 /* slower, locked walk */
2284 if (error == -ESTALE) {
2285reval:
2286 flags |= LOOKUP_REVAL;
2287 }
2288 error = path_init(dfd, pathname,
2289 LOOKUP_PARENT | (flags & LOOKUP_REVAL), &nd);
2290 if (error)
2291 goto out_filp;
2292
2293 error = path_walk_simple(pathname, &nd);
2294 }
2295 if (unlikely(error))
2296 goto out_filp;
2297 if (unlikely(!audit_dummy_context()))
Al Viro9b4a9b12009-04-07 11:44:16 -04002298 audit_inode(pathname, nd.path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
2300 /*
Al Viroa2c36b42009-12-24 03:39:50 -05002301 * We have the parent and last component.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 */
Nick Piggin31e6b012011-01-07 17:49:52 +11002303 nd.flags = flags;
Al Viro3e297b62010-03-26 12:40:13 -04002304 filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002305 while (unlikely(!filp)) { /* trailing symlink */
Al Virodef4af32009-12-26 08:37:05 -05002306 struct path holder;
Al Virodef4af32009-12-26 08:37:05 -05002307 void *cookie;
Al Viro806b6812009-12-26 07:16:40 -05002308 error = -ELOOP;
Al Viro1f36f772009-12-26 10:56:19 -05002309 /* S_ISDIR part is a temporary automount kludge */
Nick Piggin31e6b012011-01-07 17:49:52 +11002310 if (!(nd.flags & LOOKUP_FOLLOW) && !S_ISDIR(nd.inode->i_mode))
Al Viro1f36f772009-12-26 10:56:19 -05002311 goto exit_dput;
2312 if (count++ == 32)
Al Viro806b6812009-12-26 07:16:40 -05002313 goto exit_dput;
2314 /*
2315 * This is subtle. Instead of calling do_follow_link() we do
2316 * the thing by hands. The reason is that this way we have zero
2317 * link_count and path_walk() (called from ->follow_link)
2318 * honoring LOOKUP_PARENT. After that we have the parent and
2319 * last component, i.e. we are in the same situation as after
2320 * the first path_walk(). Well, almost - if the last component
2321 * is normal we get its copy stored in nd->last.name and we will
2322 * have to putname() it when we are done. Procfs-like symlinks
2323 * just set LAST_BIND.
2324 */
2325 nd.flags |= LOOKUP_PARENT;
2326 error = security_inode_follow_link(path.dentry, &nd);
2327 if (error)
2328 goto exit_dput;
Al Virodef4af32009-12-26 08:37:05 -05002329 error = __do_follow_link(&path, &nd, &cookie);
2330 if (unlikely(error)) {
Nick Piggin31e6b012011-01-07 17:49:52 +11002331 if (!IS_ERR(cookie) && nd.inode->i_op->put_link)
2332 nd.inode->i_op->put_link(path.dentry, &nd, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002333 /* nd.path had been dropped */
Nick Piggin31e6b012011-01-07 17:49:52 +11002334 nd.path = path;
2335 goto out_path;
Al Viro806b6812009-12-26 07:16:40 -05002336 }
Al Virodef4af32009-12-26 08:37:05 -05002337 holder = path;
Al Viro806b6812009-12-26 07:16:40 -05002338 nd.flags &= ~LOOKUP_PARENT;
Al Viro3e297b62010-03-26 12:40:13 -04002339 filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
Nick Piggin31e6b012011-01-07 17:49:52 +11002340 if (nd.inode->i_op->put_link)
2341 nd.inode->i_op->put_link(holder.dentry, &nd, cookie);
Al Virodef4af32009-12-26 08:37:05 -05002342 path_put(&holder);
Al Viro806b6812009-12-26 07:16:40 -05002343 }
Al Viro10fa8e62009-12-26 07:09:49 -05002344out:
Al Viro2a737872009-04-07 11:49:53 -04002345 if (nd.root.mnt)
2346 path_put(&nd.root);
Nick Piggin31e6b012011-01-07 17:49:52 +11002347 if (filp == ERR_PTR(-ESTALE) && !(flags & LOOKUP_REVAL))
Al Viro10fa8e62009-12-26 07:09:49 -05002348 goto reval;
Al Viro10fa8e62009-12-26 07:09:49 -05002349 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
Al Viro806b6812009-12-26 07:16:40 -05002351exit_dput:
2352 path_put_conditional(&path, &nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002353out_path:
2354 path_put(&nd.path);
2355out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002356 if (!IS_ERR(nd.intent.open.file))
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002357 release_open_intent(&nd);
Al Viro806b6812009-12-26 07:16:40 -05002358 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002359 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360}
2361
2362/**
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002363 * filp_open - open file and return file pointer
2364 *
2365 * @filename: path to open
2366 * @flags: open flags as per the open(2) second argument
2367 * @mode: mode for the new file if O_CREAT is set, else ignored
2368 *
2369 * This is the helper to open a file from kernelspace if you really
2370 * have to. But in generally you should not do this, so please move
2371 * along, nothing to see here..
2372 */
2373struct file *filp_open(const char *filename, int flags, int mode)
2374{
Al Viro6e8341a2009-04-06 11:16:22 -04002375 return do_filp_open(AT_FDCWD, filename, flags, mode, 0);
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002376}
2377EXPORT_SYMBOL(filp_open);
2378
2379/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 * lookup_create - lookup a dentry, creating it if it doesn't exist
2381 * @nd: nameidata info
2382 * @is_dir: directory flag
2383 *
2384 * Simple function to lookup and return a dentry and create it
2385 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002386 *
Jan Blunck4ac91372008-02-14 19:34:32 -08002387 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 */
2389struct dentry *lookup_create(struct nameidata *nd, int is_dir)
2390{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002391 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Jan Blunck4ac91372008-02-14 19:34:32 -08002393 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002394 /*
2395 * Yucky last component or no last component at all?
2396 * (foo/., foo/.., /////)
2397 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 if (nd->last_type != LAST_NORM)
2399 goto fail;
2400 nd->flags &= ~LOOKUP_PARENT;
Al Viro35165862008-08-05 03:00:49 -04002401 nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
ASANO Masahiroa6349042006-08-22 20:06:02 -04002402 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002403
2404 /*
2405 * Do the final lookup.
2406 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08002407 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 if (IS_ERR(dentry))
2409 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002410
Al Viroe9baf6e2008-05-15 04:49:12 -04002411 if (dentry->d_inode)
2412 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002413 /*
2414 * Special case - lookup gave negative, but... we had foo/bar/
2415 * From the vfs_mknod() POV we just have a negative dentry -
2416 * all is fine. Let's be bastards - you had / on the end, you've
2417 * been asking for (non-existent) directory. -ENOENT for you.
2418 */
Al Viroe9baf6e2008-05-15 04:49:12 -04002419 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
2420 dput(dentry);
2421 dentry = ERR_PTR(-ENOENT);
2422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002424eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002426 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427fail:
2428 return dentry;
2429}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07002430EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431
2432int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2433{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002434 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
2436 if (error)
2437 return error;
2438
2439 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
2440 return -EPERM;
2441
Al Viroacfa4382008-12-04 10:06:33 -05002442 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 return -EPERM;
2444
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002445 error = devcgroup_inode_mknod(mode, dev);
2446 if (error)
2447 return error;
2448
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 error = security_inode_mknod(dir, dentry, mode, dev);
2450 if (error)
2451 return error;
2452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002454 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002455 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 return error;
2457}
2458
Dave Hansen463c3192008-02-15 14:37:57 -08002459static int may_mknod(mode_t mode)
2460{
2461 switch (mode & S_IFMT) {
2462 case S_IFREG:
2463 case S_IFCHR:
2464 case S_IFBLK:
2465 case S_IFIFO:
2466 case S_IFSOCK:
2467 case 0: /* zero mode translates to S_IFREG */
2468 return 0;
2469 case S_IFDIR:
2470 return -EPERM;
2471 default:
2472 return -EINVAL;
2473 }
2474}
2475
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002476SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2477 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478{
Al Viro2ad94ae2008-07-21 09:32:51 -04002479 int error;
2480 char *tmp;
2481 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 struct nameidata nd;
2483
2484 if (S_ISDIR(mode))
2485 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Al Viro2ad94ae2008-07-21 09:32:51 -04002487 error = user_path_parent(dfd, filename, &nd, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002488 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002489 return error;
2490
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 dentry = lookup_create(&nd, 0);
Dave Hansen463c3192008-02-15 14:37:57 -08002492 if (IS_ERR(dentry)) {
2493 error = PTR_ERR(dentry);
2494 goto out_unlock;
2495 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002496 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002497 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002498 error = may_mknod(mode);
2499 if (error)
2500 goto out_dput;
2501 error = mnt_want_write(nd.path.mnt);
2502 if (error)
2503 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002504 error = security_path_mknod(&nd.path, dentry, mode, dev);
2505 if (error)
2506 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002507 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08002509 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510 break;
2511 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002512 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 new_decode_dev(dev));
2514 break;
2515 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002516 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002519out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002520 mnt_drop_write(nd.path.mnt);
2521out_dput:
2522 dput(dentry);
2523out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002524 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002525 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 putname(tmp);
2527
2528 return error;
2529}
2530
Heiko Carstens3480b252009-01-14 14:14:16 +01002531SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002532{
2533 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2534}
2535
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2537{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002538 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
2540 if (error)
2541 return error;
2542
Al Viroacfa4382008-12-04 10:06:33 -05002543 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 return -EPERM;
2545
2546 mode &= (S_IRWXUGO|S_ISVTX);
2547 error = security_inode_mkdir(dir, dentry, mode);
2548 if (error)
2549 return error;
2550
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002552 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002553 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 return error;
2555}
2556
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002557SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558{
2559 int error = 0;
2560 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002561 struct dentry *dentry;
2562 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563
Al Viro2ad94ae2008-07-21 09:32:51 -04002564 error = user_path_parent(dfd, pathname, &nd, &tmp);
2565 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002566 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
Dave Hansen6902d922006-09-30 23:29:01 -07002568 dentry = lookup_create(&nd, 1);
2569 error = PTR_ERR(dentry);
2570 if (IS_ERR(dentry))
2571 goto out_unlock;
2572
Jan Blunck4ac91372008-02-14 19:34:32 -08002573 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002574 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002575 error = mnt_want_write(nd.path.mnt);
2576 if (error)
2577 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002578 error = security_path_mkdir(&nd.path, dentry, mode);
2579 if (error)
2580 goto out_drop_write;
Jan Blunck4ac91372008-02-14 19:34:32 -08002581 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002582out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002583 mnt_drop_write(nd.path.mnt);
2584out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002585 dput(dentry);
2586out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002587 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002588 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002589 putname(tmp);
2590out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 return error;
2592}
2593
Heiko Carstens3cdad422009-01-14 14:14:22 +01002594SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002595{
2596 return sys_mkdirat(AT_FDCWD, pathname, mode);
2597}
2598
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599/*
2600 * We try to drop the dentry early: we should have
2601 * a usage count of 2 if we're the only user of this
2602 * dentry, and if that is true (possibly after pruning
2603 * the dcache), then we drop the dentry now.
2604 *
2605 * A low-level filesystem can, if it choses, legally
2606 * do a
2607 *
2608 * if (!d_unhashed(dentry))
2609 * return -EBUSY;
2610 *
2611 * if it cannot handle the case of removing a directory
2612 * that is still in use by something else..
2613 */
2614void dentry_unhash(struct dentry *dentry)
2615{
2616 dget(dentry);
Vasily Averindc168422006-12-06 20:37:07 -08002617 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 spin_lock(&dentry->d_lock);
Nick Pigginb7ab39f2011-01-07 17:49:32 +11002619 if (dentry->d_count == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 __d_drop(dentry);
2621 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622}
2623
2624int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2625{
2626 int error = may_delete(dir, dentry, 1);
2627
2628 if (error)
2629 return error;
2630
Al Viroacfa4382008-12-04 10:06:33 -05002631 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 return -EPERM;
2633
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002634 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 dentry_unhash(dentry);
2636 if (d_mountpoint(dentry))
2637 error = -EBUSY;
2638 else {
2639 error = security_inode_rmdir(dir, dentry);
2640 if (!error) {
2641 error = dir->i_op->rmdir(dir, dentry);
Al Virod83c49f2010-04-30 17:17:09 -04002642 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 dentry->d_inode->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -04002644 dont_mount(dentry);
2645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 }
2647 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002648 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 d_delete(dentry);
2651 }
2652 dput(dentry);
2653
2654 return error;
2655}
2656
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002657static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658{
2659 int error = 0;
2660 char * name;
2661 struct dentry *dentry;
2662 struct nameidata nd;
2663
Al Viro2ad94ae2008-07-21 09:32:51 -04002664 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002666 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
2668 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002669 case LAST_DOTDOT:
2670 error = -ENOTEMPTY;
2671 goto exit1;
2672 case LAST_DOT:
2673 error = -EINVAL;
2674 goto exit1;
2675 case LAST_ROOT:
2676 error = -EBUSY;
2677 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002679
2680 nd.flags &= ~LOOKUP_PARENT;
2681
Jan Blunck4ac91372008-02-14 19:34:32 -08002682 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002683 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002685 if (IS_ERR(dentry))
2686 goto exit2;
Dave Hansen06227532008-02-15 14:37:34 -08002687 error = mnt_want_write(nd.path.mnt);
2688 if (error)
2689 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002690 error = security_path_rmdir(&nd.path, dentry);
2691 if (error)
2692 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002693 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002694exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002695 mnt_drop_write(nd.path.mnt);
2696exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002697 dput(dentry);
2698exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002699 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002701 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 putname(name);
2703 return error;
2704}
2705
Heiko Carstens3cdad422009-01-14 14:14:22 +01002706SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002707{
2708 return do_rmdir(AT_FDCWD, pathname);
2709}
2710
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711int vfs_unlink(struct inode *dir, struct dentry *dentry)
2712{
2713 int error = may_delete(dir, dentry, 0);
2714
2715 if (error)
2716 return error;
2717
Al Viroacfa4382008-12-04 10:06:33 -05002718 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 return -EPERM;
2720
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002721 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 if (d_mountpoint(dentry))
2723 error = -EBUSY;
2724 else {
2725 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002726 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002728 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002729 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002732 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
2734 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2735 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002736 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 }
Robert Love0eeca282005-07-12 17:06:03 -04002739
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 return error;
2741}
2742
2743/*
2744 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002745 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 * writeout happening, and we don't want to prevent access to the directory
2747 * while waiting on the I/O.
2748 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002749static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750{
Al Viro2ad94ae2008-07-21 09:32:51 -04002751 int error;
2752 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753 struct dentry *dentry;
2754 struct nameidata nd;
2755 struct inode *inode = NULL;
2756
Al Viro2ad94ae2008-07-21 09:32:51 -04002757 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002759 return error;
2760
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 error = -EISDIR;
2762 if (nd.last_type != LAST_NORM)
2763 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002764
2765 nd.flags &= ~LOOKUP_PARENT;
2766
Jan Blunck4ac91372008-02-14 19:34:32 -08002767 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002768 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 error = PTR_ERR(dentry);
2770 if (!IS_ERR(dentry)) {
2771 /* Why not before? Because we want correct error value */
2772 if (nd.last.name[nd.last.len])
2773 goto slashes;
2774 inode = dentry->d_inode;
2775 if (inode)
Al Viro7de9c6ee2010-10-23 11:11:40 -04002776 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002777 error = mnt_want_write(nd.path.mnt);
2778 if (error)
2779 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002780 error = security_path_unlink(&nd.path, dentry);
2781 if (error)
2782 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002783 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002784exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002785 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 exit2:
2787 dput(dentry);
2788 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002789 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 if (inode)
2791 iput(inode); /* truncate the inode here */
2792exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002793 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 putname(name);
2795 return error;
2796
2797slashes:
2798 error = !dentry->d_inode ? -ENOENT :
2799 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2800 goto exit2;
2801}
2802
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002803SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002804{
2805 if ((flag & ~AT_REMOVEDIR) != 0)
2806 return -EINVAL;
2807
2808 if (flag & AT_REMOVEDIR)
2809 return do_rmdir(dfd, pathname);
2810
2811 return do_unlinkat(dfd, pathname);
2812}
2813
Heiko Carstens3480b252009-01-14 14:14:16 +01002814SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002815{
2816 return do_unlinkat(AT_FDCWD, pathname);
2817}
2818
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002819int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002821 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
2823 if (error)
2824 return error;
2825
Al Viroacfa4382008-12-04 10:06:33 -05002826 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 return -EPERM;
2828
2829 error = security_inode_symlink(dir, dentry, oldname);
2830 if (error)
2831 return error;
2832
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002834 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002835 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 return error;
2837}
2838
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002839SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2840 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841{
Al Viro2ad94ae2008-07-21 09:32:51 -04002842 int error;
2843 char *from;
2844 char *to;
Dave Hansen6902d922006-09-30 23:29:01 -07002845 struct dentry *dentry;
2846 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847
2848 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002849 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002851
2852 error = user_path_parent(newdfd, newname, &nd, &to);
2853 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002854 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855
Dave Hansen6902d922006-09-30 23:29:01 -07002856 dentry = lookup_create(&nd, 0);
2857 error = PTR_ERR(dentry);
2858 if (IS_ERR(dentry))
2859 goto out_unlock;
2860
Dave Hansen75c3f292008-02-15 14:37:45 -08002861 error = mnt_want_write(nd.path.mnt);
2862 if (error)
2863 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002864 error = security_path_symlink(&nd.path, dentry, from);
2865 if (error)
2866 goto out_drop_write;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002867 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002868out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002869 mnt_drop_write(nd.path.mnt);
2870out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002871 dput(dentry);
2872out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002873 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002874 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002875 putname(to);
2876out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 putname(from);
2878 return error;
2879}
2880
Heiko Carstens3480b252009-01-14 14:14:16 +01002881SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002882{
2883 return sys_symlinkat(oldname, AT_FDCWD, newname);
2884}
2885
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2887{
2888 struct inode *inode = old_dentry->d_inode;
2889 int error;
2890
2891 if (!inode)
2892 return -ENOENT;
2893
Miklos Szeredia95164d2008-07-30 15:08:48 +02002894 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 if (error)
2896 return error;
2897
2898 if (dir->i_sb != inode->i_sb)
2899 return -EXDEV;
2900
2901 /*
2902 * A link to an append-only or immutable file cannot be created.
2903 */
2904 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2905 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05002906 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002908 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 return -EPERM;
2910
2911 error = security_inode_link(old_dentry, dir, new_dentry);
2912 if (error)
2913 return error;
2914
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002915 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002917 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002918 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002919 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 return error;
2921}
2922
2923/*
2924 * Hardlinks are often used in delicate situations. We avoid
2925 * security-related surprises by not following symlinks on the
2926 * newname. --KAB
2927 *
2928 * We don't follow them on the oldname either to be compatible
2929 * with linux 2.0, and to avoid hard-linking to directories
2930 * and other special files. --ADM
2931 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002932SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2933 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934{
2935 struct dentry *new_dentry;
Al Viro2d8f3032008-07-22 09:59:21 -04002936 struct nameidata nd;
2937 struct path old_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 int error;
Al Viro2ad94ae2008-07-21 09:32:51 -04002939 char *to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Ulrich Drepper45c9b11a2006-06-25 05:49:11 -07002941 if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002942 return -EINVAL;
2943
Al Viro2d8f3032008-07-22 09:59:21 -04002944 error = user_path_at(olddfd, oldname,
2945 flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
2946 &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002948 return error;
2949
2950 error = user_path_parent(newdfd, newname, &nd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 if (error)
2952 goto out;
2953 error = -EXDEV;
Al Viro2d8f3032008-07-22 09:59:21 -04002954 if (old_path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 goto out_release;
2956 new_dentry = lookup_create(&nd, 0);
2957 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002958 if (IS_ERR(new_dentry))
2959 goto out_unlock;
Dave Hansen75c3f292008-02-15 14:37:45 -08002960 error = mnt_want_write(nd.path.mnt);
2961 if (error)
2962 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002963 error = security_path_link(old_path.dentry, &nd.path, new_dentry);
2964 if (error)
2965 goto out_drop_write;
Al Viro2d8f3032008-07-22 09:59:21 -04002966 error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002967out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002968 mnt_drop_write(nd.path.mnt);
2969out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002970 dput(new_dentry);
2971out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002972 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08002974 path_put(&nd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002975 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976out:
Al Viro2d8f3032008-07-22 09:59:21 -04002977 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
2979 return error;
2980}
2981
Heiko Carstens3480b252009-01-14 14:14:16 +01002982SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002983{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002984 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002985}
2986
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987/*
2988 * The worst of all namespace operations - renaming directory. "Perverted"
2989 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2990 * Problems:
2991 * a) we can get into loop creation. Check is done in is_subdir().
2992 * b) race potential - two innocent renames can create a loop together.
2993 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002994 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 * story.
2996 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002997 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 * whether the target exists). Solution: try to be smart with locking
2999 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003000 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 * move will be locked. Thus we can rank directories by the tree
3002 * (ancestors first) and rank all non-directories after them.
3003 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003004 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 * HOWEVER, it relies on the assumption that any object with ->lookup()
3006 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3007 * we'd better make sure that there's no link(2) for them.
3008 * d) some filesystems don't support opened-but-unlinked directories,
3009 * either because of layout or because they are not ready to deal with
3010 * all cases correctly. The latter will be fixed (taking this sort of
3011 * stuff into VFS), but the former is not going away. Solution: the same
3012 * trick as in rmdir().
3013 * e) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003014 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003016 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 * locking].
3018 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07003019static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3020 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021{
3022 int error = 0;
3023 struct inode *target;
3024
3025 /*
3026 * If we are going to change the parent - check write permissions,
3027 * we'll need to flip '..'.
3028 */
3029 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04003030 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 if (error)
3032 return error;
3033 }
3034
3035 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3036 if (error)
3037 return error;
3038
3039 target = new_dentry->d_inode;
Al Virod83c49f2010-04-30 17:17:09 -04003040 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003041 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3043 error = -EBUSY;
Al Virod83c49f2010-04-30 17:17:09 -04003044 else {
3045 if (target)
3046 dentry_unhash(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
Al Virod83c49f2010-04-30 17:17:09 -04003048 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 if (target) {
Al Virod83c49f2010-04-30 17:17:09 -04003050 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 target->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -04003052 dont_mount(new_dentry);
3053 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003054 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 if (d_unhashed(new_dentry))
3056 d_rehash(new_dentry);
3057 dput(new_dentry);
3058 }
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003059 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003060 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3061 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 return error;
3063}
3064
Adrian Bunk75c96f82005-05-05 16:16:09 -07003065static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3066 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067{
3068 struct inode *target;
3069 int error;
3070
3071 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3072 if (error)
3073 return error;
3074
3075 dget(new_dentry);
3076 target = new_dentry->d_inode;
3077 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003078 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3080 error = -EBUSY;
3081 else
3082 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3083 if (!error) {
Al Virobec10522010-03-03 14:12:08 -05003084 if (target)
Al Virod83c49f2010-04-30 17:17:09 -04003085 dont_mount(new_dentry);
Mark Fasheh349457c2006-09-08 14:22:21 -07003086 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 d_move(old_dentry, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088 }
3089 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003090 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 dput(new_dentry);
3092 return error;
3093}
3094
3095int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3096 struct inode *new_dir, struct dentry *new_dentry)
3097{
3098 int error;
3099 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003100 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101
3102 if (old_dentry->d_inode == new_dentry->d_inode)
3103 return 0;
3104
3105 error = may_delete(old_dir, old_dentry, is_dir);
3106 if (error)
3107 return error;
3108
3109 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003110 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 else
3112 error = may_delete(new_dir, new_dentry, is_dir);
3113 if (error)
3114 return error;
3115
Al Viroacfa4382008-12-04 10:06:33 -05003116 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 return -EPERM;
3118
Robert Love0eeca282005-07-12 17:06:03 -04003119 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3120
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 if (is_dir)
3122 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3123 else
3124 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003125 if (!error)
3126 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003127 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003128 fsnotify_oldname_free(old_name);
3129
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 return error;
3131}
3132
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003133SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3134 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135{
Al Viro2ad94ae2008-07-21 09:32:51 -04003136 struct dentry *old_dir, *new_dir;
3137 struct dentry *old_dentry, *new_dentry;
3138 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003140 char *from;
3141 char *to;
3142 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143
Al Viro2ad94ae2008-07-21 09:32:51 -04003144 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 if (error)
3146 goto exit;
3147
Al Viro2ad94ae2008-07-21 09:32:51 -04003148 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149 if (error)
3150 goto exit1;
3151
3152 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003153 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 goto exit2;
3155
Jan Blunck4ac91372008-02-14 19:34:32 -08003156 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 error = -EBUSY;
3158 if (oldnd.last_type != LAST_NORM)
3159 goto exit2;
3160
Jan Blunck4ac91372008-02-14 19:34:32 -08003161 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 if (newnd.last_type != LAST_NORM)
3163 goto exit2;
3164
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003165 oldnd.flags &= ~LOOKUP_PARENT;
3166 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003167 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003168
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 trap = lock_rename(new_dir, old_dir);
3170
Christoph Hellwig49705b72005-11-08 21:35:06 -08003171 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 error = PTR_ERR(old_dentry);
3173 if (IS_ERR(old_dentry))
3174 goto exit3;
3175 /* source must exist */
3176 error = -ENOENT;
3177 if (!old_dentry->d_inode)
3178 goto exit4;
3179 /* unless the source is a directory trailing slashes give -ENOTDIR */
3180 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3181 error = -ENOTDIR;
3182 if (oldnd.last.name[oldnd.last.len])
3183 goto exit4;
3184 if (newnd.last.name[newnd.last.len])
3185 goto exit4;
3186 }
3187 /* source should not be ancestor of target */
3188 error = -EINVAL;
3189 if (old_dentry == trap)
3190 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003191 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 error = PTR_ERR(new_dentry);
3193 if (IS_ERR(new_dentry))
3194 goto exit4;
3195 /* target should not be an ancestor of source */
3196 error = -ENOTEMPTY;
3197 if (new_dentry == trap)
3198 goto exit5;
3199
Dave Hansen9079b1e2008-02-15 14:37:49 -08003200 error = mnt_want_write(oldnd.path.mnt);
3201 if (error)
3202 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003203 error = security_path_rename(&oldnd.path, old_dentry,
3204 &newnd.path, new_dentry);
3205 if (error)
3206 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207 error = vfs_rename(old_dir->d_inode, old_dentry,
3208 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003209exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003210 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211exit5:
3212 dput(new_dentry);
3213exit4:
3214 dput(old_dentry);
3215exit3:
3216 unlock_rename(new_dir, old_dir);
3217exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003218 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003219 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003220exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003221 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003223exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 return error;
3225}
3226
Heiko Carstensa26eab22009-01-14 14:14:17 +01003227SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003228{
3229 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3230}
3231
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3233{
3234 int len;
3235
3236 len = PTR_ERR(link);
3237 if (IS_ERR(link))
3238 goto out;
3239
3240 len = strlen(link);
3241 if (len > (unsigned) buflen)
3242 len = buflen;
3243 if (copy_to_user(buffer, link, len))
3244 len = -EFAULT;
3245out:
3246 return len;
3247}
3248
3249/*
3250 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3251 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3252 * using) it for any given inode is up to filesystem.
3253 */
3254int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3255{
3256 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003257 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003258 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003259
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003261 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003262 if (IS_ERR(cookie))
3263 return PTR_ERR(cookie);
3264
3265 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3266 if (dentry->d_inode->i_op->put_link)
3267 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3268 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269}
3270
3271int vfs_follow_link(struct nameidata *nd, const char *link)
3272{
3273 return __vfs_follow_link(nd, link);
3274}
3275
3276/* get the link contents into pagecache */
3277static char *page_getlink(struct dentry * dentry, struct page **ppage)
3278{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003279 char *kaddr;
3280 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003282 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003284 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003286 kaddr = kmap(page);
3287 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3288 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289}
3290
3291int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3292{
3293 struct page *page = NULL;
3294 char *s = page_getlink(dentry, &page);
3295 int res = vfs_readlink(dentry,buffer,buflen,s);
3296 if (page) {
3297 kunmap(page);
3298 page_cache_release(page);
3299 }
3300 return res;
3301}
3302
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003303void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003304{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003305 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003307 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308}
3309
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003310void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003312 struct page *page = cookie;
3313
3314 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 kunmap(page);
3316 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 }
3318}
3319
Nick Piggin54566b22009-01-04 12:00:53 -08003320/*
3321 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3322 */
3323int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324{
3325 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003326 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003327 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003328 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003330 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3331 if (nofs)
3332 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333
NeilBrown7e53cac2006-03-25 03:07:57 -08003334retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003335 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003336 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003338 goto fail;
3339
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340 kaddr = kmap_atomic(page, KM_USER0);
3341 memcpy(kaddr, symname, len-1);
3342 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07003343
3344 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3345 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 if (err < 0)
3347 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003348 if (err < len-1)
3349 goto retry;
3350
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 mark_inode_dirty(inode);
3352 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353fail:
3354 return err;
3355}
3356
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003357int page_symlink(struct inode *inode, const char *symname, int len)
3358{
3359 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003360 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003361}
3362
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003363const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364 .readlink = generic_readlink,
3365 .follow_link = page_follow_link_light,
3366 .put_link = page_put_link,
3367};
3368
Al Viro2d8f3032008-07-22 09:59:21 -04003369EXPORT_SYMBOL(user_path_at);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370EXPORT_SYMBOL(follow_down);
3371EXPORT_SYMBOL(follow_up);
3372EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3373EXPORT_SYMBOL(getname);
3374EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375EXPORT_SYMBOL(lookup_one_len);
3376EXPORT_SYMBOL(page_follow_link_light);
3377EXPORT_SYMBOL(page_put_link);
3378EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003379EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380EXPORT_SYMBOL(page_symlink);
3381EXPORT_SYMBOL(page_symlink_inode_operations);
3382EXPORT_SYMBOL(path_lookup);
Al Virod1811462008-08-02 00:49:18 -04003383EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003384EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003385EXPORT_SYMBOL(inode_permission);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -08003386EXPORT_SYMBOL(file_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387EXPORT_SYMBOL(unlock_rename);
3388EXPORT_SYMBOL(vfs_create);
3389EXPORT_SYMBOL(vfs_follow_link);
3390EXPORT_SYMBOL(vfs_link);
3391EXPORT_SYMBOL(vfs_mkdir);
3392EXPORT_SYMBOL(vfs_mknod);
3393EXPORT_SYMBOL(generic_permission);
3394EXPORT_SYMBOL(vfs_readlink);
3395EXPORT_SYMBOL(vfs_rename);
3396EXPORT_SYMBOL(vfs_rmdir);
3397EXPORT_SYMBOL(vfs_symlink);
3398EXPORT_SYMBOL(vfs_unlink);
3399EXPORT_SYMBOL(dentry_unhash);
3400EXPORT_SYMBOL(generic_readlink);