blob: 6e275363e89d30e9512fb81423ba4905965a1a26 [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 Piggin31e6b012011-01-07 17:49:52 +1100172static inline int __acl_permission_check(struct inode *inode, int mask,
173 int (*check_acl)(struct inode *inode, int mask), int rcu)
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 Piggin31e6b012011-01-07 17:49:52 +1100183 if (rcu) {
184 return -ECHILD;
185 } else {
186 int error = check_acl(inode, mask);
187 if (error != -EAGAIN)
188 return error;
189 }
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700190 }
191
192 if (in_group_p(inode->i_gid))
193 mode >>= 3;
194 }
195
196 /*
197 * If the DACs are ok we don't need any capability check.
198 */
199 if ((mask & ~mode) == 0)
200 return 0;
201 return -EACCES;
202}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Nick Piggin31e6b012011-01-07 17:49:52 +1100204static inline int acl_permission_check(struct inode *inode, int mask,
205 int (*check_acl)(struct inode *inode, int mask))
206{
207 return __acl_permission_check(inode, mask, check_acl, 0);
208}
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210/**
211 * generic_permission - check for access rights on a Posix-like filesystem
212 * @inode: inode to check access rights for
213 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
214 * @check_acl: optional callback to check for Posix ACLs
215 *
216 * Used to check for read/write/execute permissions on a file.
217 * We use "fsuid" for this, letting us set arbitrary permissions
218 * for filesystem access without changing the "normal" uids which
219 * are used for other things..
220 */
221int generic_permission(struct inode *inode, int mask,
222 int (*check_acl)(struct inode *inode, int mask))
223{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700224 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
226 /*
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700227 * Do the basic POSIX ACL permission checks.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 */
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700229 ret = acl_permission_check(inode, mask, check_acl);
230 if (ret != -EACCES)
231 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 /*
234 * Read/write DACs are always overridable.
235 * Executable DACs are overridable if at least one exec bit is set.
236 */
Miklos Szeredif696a362008-07-31 13:41:58 +0200237 if (!(mask & MAY_EXEC) || execute_ok(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 if (capable(CAP_DAC_OVERRIDE))
239 return 0;
240
241 /*
242 * Searching includes executable on directories, else just read.
243 */
Serge E. Hallyn7ea66002009-12-29 14:50:19 -0600244 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 if (mask == MAY_READ || (S_ISDIR(inode->i_mode) && !(mask & MAY_WRITE)))
246 if (capable(CAP_DAC_READ_SEARCH))
247 return 0;
248
249 return -EACCES;
250}
251
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200252/**
253 * inode_permission - check for access rights to a given inode
254 * @inode: inode to check permission on
255 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
256 *
257 * Used to check for read/write/execute permissions on an inode.
258 * We use "fsuid" for this, letting us set arbitrary permissions
259 * for filesystem access without changing the "normal" uids which
260 * are used for other things.
261 */
Al Virof419a2e2008-07-22 00:07:17 -0400262int inode_permission(struct inode *inode, int mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Al Viroe6305c42008-07-15 21:03:57 -0400264 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
266 if (mask & MAY_WRITE) {
Miklos Szeredi22590e42007-10-16 23:27:08 -0700267 umode_t mode = inode->i_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 /*
270 * Nobody gets write access to a read-only fs.
271 */
272 if (IS_RDONLY(inode) &&
273 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
274 return -EROFS;
275
276 /*
277 * Nobody gets write access to an immutable file.
278 */
279 if (IS_IMMUTABLE(inode))
280 return -EACCES;
281 }
282
Al Viroacfa4382008-12-04 10:06:33 -0500283 if (inode->i_op->permission)
Al Virob77b0642008-07-17 09:37:02 -0400284 retval = inode->i_op->permission(inode, mask);
Miklos Szeredif696a362008-07-31 13:41:58 +0200285 else
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700286 retval = generic_permission(inode, mask, inode->i_op->check_acl);
Miklos Szeredif696a362008-07-31 13:41:58 +0200287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (retval)
289 return retval;
290
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -0700291 retval = devcgroup_inode_permission(inode, mask);
292 if (retval)
293 return retval;
294
Eric Parisd09ca732010-07-23 11:43:57 -0400295 return security_inode_permission(inode, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Christoph Hellwige4543ed2005-11-08 21:35:04 -0800298/**
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800299 * file_permission - check for additional access rights to a given file
300 * @file: file to check access rights for
301 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
302 *
303 * Used to check for read/write/execute permissions on an already opened
304 * file.
305 *
306 * Note:
307 * Do not use this function in new code. All access checks should
Christoph Hellwigcb23beb2008-10-24 09:59:29 +0200308 * be done using inode_permission().
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800309 */
310int file_permission(struct file *file, int mask)
311{
Al Virof419a2e2008-07-22 00:07:17 -0400312 return inode_permission(file->f_path.dentry->d_inode, mask);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -0800313}
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315/*
316 * get_write_access() gets write permission for a file.
317 * put_write_access() releases this write permission.
318 * This is used for regular files.
319 * We cannot support write (and maybe mmap read-write shared) accesses and
320 * MAP_DENYWRITE mmappings simultaneously. The i_writecount field of an inode
321 * can have the following values:
322 * 0: no writers, no VM_DENYWRITE mappings
323 * < 0: (-i_writecount) vm_area_structs with VM_DENYWRITE set exist
324 * > 0: (i_writecount) users are writing to the file.
325 *
326 * Normally we operate on that counter with atomic_{inc,dec} and it's safe
327 * except for the cases where we don't hold i_writecount yet. Then we need to
328 * use {get,deny}_write_access() - these functions check the sign and refuse
329 * to do the change if sign is wrong. Exclusion between them is provided by
330 * the inode->i_lock spinlock.
331 */
332
333int get_write_access(struct inode * inode)
334{
335 spin_lock(&inode->i_lock);
336 if (atomic_read(&inode->i_writecount) < 0) {
337 spin_unlock(&inode->i_lock);
338 return -ETXTBSY;
339 }
340 atomic_inc(&inode->i_writecount);
341 spin_unlock(&inode->i_lock);
342
343 return 0;
344}
345
346int deny_write_access(struct file * file)
347{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800348 struct inode *inode = file->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 spin_lock(&inode->i_lock);
351 if (atomic_read(&inode->i_writecount) > 0) {
352 spin_unlock(&inode->i_lock);
353 return -ETXTBSY;
354 }
355 atomic_dec(&inode->i_writecount);
356 spin_unlock(&inode->i_lock);
357
358 return 0;
359}
360
Jan Blunck1d957f92008-02-14 19:34:35 -0800361/**
Jan Blunck5dd784d2008-02-14 19:34:38 -0800362 * path_get - get a reference to a path
363 * @path: path to get the reference to
364 *
365 * Given a path increment the reference count to the dentry and the vfsmount.
366 */
367void path_get(struct path *path)
368{
369 mntget(path->mnt);
370 dget(path->dentry);
371}
372EXPORT_SYMBOL(path_get);
373
374/**
Jan Blunck1d957f92008-02-14 19:34:35 -0800375 * path_put - put a reference to a path
376 * @path: path to put the reference to
377 *
378 * Given a path decrement the reference count to the dentry and the vfsmount.
379 */
380void path_put(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Jan Blunck1d957f92008-02-14 19:34:35 -0800382 dput(path->dentry);
383 mntput(path->mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
Jan Blunck1d957f92008-02-14 19:34:35 -0800385EXPORT_SYMBOL(path_put);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Trond Myklebust834f2a42005-10-18 14:20:16 -0700387/**
Nick Piggin31e6b012011-01-07 17:49:52 +1100388 * nameidata_drop_rcu - drop this nameidata out of rcu-walk
389 * @nd: nameidata pathwalk data to drop
390 * @Returns: 0 on success, -ECHLID on failure
391 *
392 * Path walking has 2 modes, rcu-walk and ref-walk (see
393 * Documentation/filesystems/path-lookup.txt). __drop_rcu* functions attempt
394 * to drop out of rcu-walk mode and take normal reference counts on dentries
395 * and vfsmounts to transition to rcu-walk mode. __drop_rcu* functions take
396 * refcounts at the last known good point before rcu-walk got stuck, so
397 * ref-walk may continue from there. If this is not successful (eg. a seqcount
398 * has changed), then failure is returned and path walk restarts from the
399 * beginning in ref-walk mode.
400 *
401 * nameidata_drop_rcu attempts to drop the current nd->path and nd->root into
402 * ref-walk. Must be called from rcu-walk context.
403 */
404static int nameidata_drop_rcu(struct nameidata *nd)
405{
406 struct fs_struct *fs = current->fs;
407 struct dentry *dentry = nd->path.dentry;
408
409 BUG_ON(!(nd->flags & LOOKUP_RCU));
410 if (nd->root.mnt) {
411 spin_lock(&fs->lock);
412 if (nd->root.mnt != fs->root.mnt ||
413 nd->root.dentry != fs->root.dentry)
414 goto err_root;
415 }
416 spin_lock(&dentry->d_lock);
417 if (!__d_rcu_to_refcount(dentry, nd->seq))
418 goto err;
419 BUG_ON(nd->inode != dentry->d_inode);
420 spin_unlock(&dentry->d_lock);
421 if (nd->root.mnt) {
422 path_get(&nd->root);
423 spin_unlock(&fs->lock);
424 }
425 mntget(nd->path.mnt);
426
427 rcu_read_unlock();
428 br_read_unlock(vfsmount_lock);
429 nd->flags &= ~LOOKUP_RCU;
430 return 0;
431err:
432 spin_unlock(&dentry->d_lock);
433err_root:
434 if (nd->root.mnt)
435 spin_unlock(&fs->lock);
436 return -ECHILD;
437}
438
439/* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing. */
440static inline int nameidata_drop_rcu_maybe(struct nameidata *nd)
441{
442 if (nd->flags & LOOKUP_RCU)
443 return nameidata_drop_rcu(nd);
444 return 0;
445}
446
447/**
448 * nameidata_dentry_drop_rcu - drop nameidata and dentry out of rcu-walk
449 * @nd: nameidata pathwalk data to drop
450 * @dentry: dentry to drop
451 * @Returns: 0 on success, -ECHLID on failure
452 *
453 * nameidata_dentry_drop_rcu attempts to drop the current nd->path and nd->root,
454 * and dentry into ref-walk. @dentry must be a path found by a do_lookup call on
455 * @nd. Must be called from rcu-walk context.
456 */
457static int nameidata_dentry_drop_rcu(struct nameidata *nd, struct dentry *dentry)
458{
459 struct fs_struct *fs = current->fs;
460 struct dentry *parent = nd->path.dentry;
461
462 BUG_ON(!(nd->flags & LOOKUP_RCU));
463 if (nd->root.mnt) {
464 spin_lock(&fs->lock);
465 if (nd->root.mnt != fs->root.mnt ||
466 nd->root.dentry != fs->root.dentry)
467 goto err_root;
468 }
469 spin_lock(&parent->d_lock);
470 spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
471 if (!__d_rcu_to_refcount(dentry, nd->seq))
472 goto err;
473 /*
474 * If the sequence check on the child dentry passed, then the child has
475 * not been removed from its parent. This means the parent dentry must
476 * be valid and able to take a reference at this point.
477 */
478 BUG_ON(!IS_ROOT(dentry) && dentry->d_parent != parent);
479 BUG_ON(!parent->d_count);
480 parent->d_count++;
481 spin_unlock(&dentry->d_lock);
482 spin_unlock(&parent->d_lock);
483 if (nd->root.mnt) {
484 path_get(&nd->root);
485 spin_unlock(&fs->lock);
486 }
487 mntget(nd->path.mnt);
488
489 rcu_read_unlock();
490 br_read_unlock(vfsmount_lock);
491 nd->flags &= ~LOOKUP_RCU;
492 return 0;
493err:
494 spin_unlock(&dentry->d_lock);
495 spin_unlock(&parent->d_lock);
496err_root:
497 if (nd->root.mnt)
498 spin_unlock(&fs->lock);
499 return -ECHILD;
500}
501
502/* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing. */
503static inline int nameidata_dentry_drop_rcu_maybe(struct nameidata *nd, struct dentry *dentry)
504{
505 if (nd->flags & LOOKUP_RCU)
506 return nameidata_dentry_drop_rcu(nd, dentry);
507 return 0;
508}
509
510/**
511 * nameidata_drop_rcu_last - drop nameidata ending path walk out of rcu-walk
512 * @nd: nameidata pathwalk data to drop
513 * @Returns: 0 on success, -ECHLID on failure
514 *
515 * nameidata_drop_rcu_last attempts to drop the current nd->path into ref-walk.
516 * nd->path should be the final element of the lookup, so nd->root is discarded.
517 * Must be called from rcu-walk context.
518 */
519static int nameidata_drop_rcu_last(struct nameidata *nd)
520{
521 struct dentry *dentry = nd->path.dentry;
522
523 BUG_ON(!(nd->flags & LOOKUP_RCU));
524 nd->flags &= ~LOOKUP_RCU;
525 nd->root.mnt = NULL;
526 spin_lock(&dentry->d_lock);
527 if (!__d_rcu_to_refcount(dentry, nd->seq))
528 goto err_unlock;
529 BUG_ON(nd->inode != dentry->d_inode);
530 spin_unlock(&dentry->d_lock);
531
532 mntget(nd->path.mnt);
533
534 rcu_read_unlock();
535 br_read_unlock(vfsmount_lock);
536
537 return 0;
538
539err_unlock:
540 spin_unlock(&dentry->d_lock);
541 rcu_read_unlock();
542 br_read_unlock(vfsmount_lock);
543 return -ECHILD;
544}
545
546/* Try to drop out of rcu-walk mode if we were in it, otherwise do nothing. */
547static inline int nameidata_drop_rcu_last_maybe(struct nameidata *nd)
548{
549 if (likely(nd->flags & LOOKUP_RCU))
550 return nameidata_drop_rcu_last(nd);
551 return 0;
552}
553
554/**
Trond Myklebust834f2a42005-10-18 14:20:16 -0700555 * release_open_intent - free up open intent resources
556 * @nd: pointer to nameidata
557 */
558void release_open_intent(struct nameidata *nd)
559{
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -0800560 if (nd->intent.open.file->f_path.dentry == NULL)
Trond Myklebust834f2a42005-10-18 14:20:16 -0700561 put_filp(nd->intent.open.file);
562 else
563 fput(nd->intent.open.file);
564}
565
Nick Piggin34286d62011-01-07 17:49:57 +1100566static int d_revalidate(struct dentry *dentry, struct nameidata *nd)
567{
568 int status;
569
570 status = dentry->d_op->d_revalidate(dentry, nd);
571 if (status == -ECHILD) {
572 if (nameidata_dentry_drop_rcu(nd, dentry))
573 return status;
574 status = dentry->d_op->d_revalidate(dentry, nd);
575 }
576
577 return status;
578}
579
Ian Kentbcdc5e02006-09-27 01:50:44 -0700580static inline struct dentry *
581do_revalidate(struct dentry *dentry, struct nameidata *nd)
582{
Nick Piggin34286d62011-01-07 17:49:57 +1100583 int status;
584
585 status = d_revalidate(dentry, nd);
Ian Kentbcdc5e02006-09-27 01:50:44 -0700586 if (unlikely(status <= 0)) {
587 /*
588 * The dentry failed validation.
589 * If d_revalidate returned 0 attempt to invalidate
590 * the dentry otherwise d_revalidate is asking us
591 * to return a fail status.
592 */
Nick Piggin34286d62011-01-07 17:49:57 +1100593 if (status < 0) {
594 /* If we're in rcu-walk, we don't have a ref */
595 if (!(nd->flags & LOOKUP_RCU))
596 dput(dentry);
597 dentry = ERR_PTR(status);
598
599 } else {
600 /* Don't d_invalidate in rcu-walk mode */
601 if (nameidata_dentry_drop_rcu_maybe(nd, dentry))
602 return ERR_PTR(-ECHILD);
Ian Kentbcdc5e02006-09-27 01:50:44 -0700603 if (!d_invalidate(dentry)) {
604 dput(dentry);
605 dentry = NULL;
606 }
Ian Kentbcdc5e02006-09-27 01:50:44 -0700607 }
608 }
609 return dentry;
610}
611
Nick Pigginfb045ad2011-01-07 17:49:55 +1100612static inline int need_reval_dot(struct dentry *dentry)
613{
614 if (likely(!(dentry->d_flags & DCACHE_OP_REVALIDATE)))
615 return 0;
616
617 if (likely(!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)))
618 return 0;
619
620 return 1;
621}
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623/*
Jeff Layton39159de2009-12-07 12:01:50 -0500624 * force_reval_path - force revalidation of a dentry
625 *
626 * In some situations the path walking code will trust dentries without
627 * revalidating them. This causes problems for filesystems that depend on
628 * d_revalidate to handle file opens (e.g. NFSv4). When FS_REVAL_DOT is set
629 * (which indicates that it's possible for the dentry to go stale), force
630 * a d_revalidate call before proceeding.
631 *
632 * Returns 0 if the revalidation was successful. If the revalidation fails,
633 * either return the error returned by d_revalidate or -ESTALE if the
634 * revalidation it just returned 0. If d_revalidate returns 0, we attempt to
635 * invalidate the dentry. It's up to the caller to handle putting references
636 * to the path if necessary.
637 */
638static int
639force_reval_path(struct path *path, struct nameidata *nd)
640{
641 int status;
642 struct dentry *dentry = path->dentry;
643
644 /*
645 * only check on filesystems where it's possible for the dentry to
Nick Pigginfb045ad2011-01-07 17:49:55 +1100646 * become stale.
Jeff Layton39159de2009-12-07 12:01:50 -0500647 */
Nick Pigginfb045ad2011-01-07 17:49:55 +1100648 if (!need_reval_dot(dentry))
Jeff Layton39159de2009-12-07 12:01:50 -0500649 return 0;
650
Nick Piggin34286d62011-01-07 17:49:57 +1100651 status = d_revalidate(dentry, nd);
Jeff Layton39159de2009-12-07 12:01:50 -0500652 if (status > 0)
653 return 0;
654
655 if (!status) {
656 d_invalidate(dentry);
657 status = -ESTALE;
658 }
659 return status;
660}
661
662/*
Al Virob75b5082009-12-16 01:01:38 -0500663 * Short-cut version of permission(), for calling on directories
664 * during pathname resolution. Combines parts of permission()
665 * and generic_permission(), and tests ONLY for MAY_EXEC permission.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 *
667 * If appropriate, check DAC only. If not appropriate, or
Al Virob75b5082009-12-16 01:01:38 -0500668 * short-cut DAC fails, then call ->permission() to do more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 * complete permission check.
670 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100671static inline int __exec_permission(struct inode *inode, int rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700673 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700675 if (inode->i_op->permission) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100676 if (rcu)
677 return -ECHILD;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700678 ret = inode->i_op->permission(inode, MAY_EXEC);
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700679 if (!ret)
680 goto ok;
681 return ret;
682 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100683 ret = __acl_permission_check(inode, MAY_EXEC, inode->i_op->check_acl, rcu);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700684 if (!ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 goto ok;
Nick Piggin31e6b012011-01-07 17:49:52 +1100686 if (rcu && ret == -ECHILD)
687 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Linus Torvaldsf1ac9f62009-08-28 10:53:56 -0700689 if (capable(CAP_DAC_OVERRIDE) || capable(CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 goto ok;
691
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700692 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693ok:
Nick Piggin31e6b012011-01-07 17:49:52 +1100694 return security_inode_exec_permission(inode, rcu);
695}
696
697static int exec_permission(struct inode *inode)
698{
699 return __exec_permission(inode, 0);
700}
701
702static int exec_permission_rcu(struct inode *inode)
703{
704 return __exec_permission(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
Al Viro2a737872009-04-07 11:49:53 -0400707static __always_inline void set_root(struct nameidata *nd)
708{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200709 if (!nd->root.mnt)
710 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400711}
712
Al Viro6de88d72009-08-09 01:41:57 +0400713static int link_path_walk(const char *, struct nameidata *);
714
Nick Piggin31e6b012011-01-07 17:49:52 +1100715static __always_inline void set_root_rcu(struct nameidata *nd)
716{
717 if (!nd->root.mnt) {
718 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +1100719 unsigned seq;
720
721 do {
722 seq = read_seqcount_begin(&fs->seq);
723 nd->root = fs->root;
724 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +1100725 }
726}
727
Arjan van de Venf1662352006-01-14 13:21:31 -0800728static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729{
Nick Piggin31e6b012011-01-07 17:49:52 +1100730 int ret;
731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (IS_ERR(link))
733 goto fail;
734
735 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400736 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800737 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400738 nd->path = nd->root;
739 path_get(&nd->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100741 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100742
Nick Piggin31e6b012011-01-07 17:49:52 +1100743 ret = link_path_walk(link, nd);
744 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800746 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 return PTR_ERR(link);
748}
749
Jan Blunck1d957f92008-02-14 19:34:35 -0800750static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700751{
752 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800753 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700754 mntput(path->mnt);
755}
756
757static inline void path_to_nameidata(struct path *path, struct nameidata *nd)
758{
Nick Piggin31e6b012011-01-07 17:49:52 +1100759 if (!(nd->flags & LOOKUP_RCU)) {
760 dput(nd->path.dentry);
761 if (nd->path.mnt != path->mnt)
762 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800763 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100764 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800765 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700766}
767
Al Virodef4af32009-12-26 08:37:05 -0500768static __always_inline int
769__do_follow_link(struct path *path, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800770{
771 int error;
Ian Kent051d3812006-03-27 01:14:53 -0800772 struct dentry *dentry = path->dentry;
773
774 touch_atime(path->mnt, dentry);
775 nd_set_link(nd, NULL);
776
Jan Blunck4ac91372008-02-14 19:34:32 -0800777 if (path->mnt != nd->path.mnt) {
Ian Kent051d3812006-03-27 01:14:53 -0800778 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +1100779 nd->inode = nd->path.dentry->d_inode;
Ian Kent051d3812006-03-27 01:14:53 -0800780 dget(dentry);
781 }
782 mntget(path->mnt);
Nick Piggin31e6b012011-01-07 17:49:52 +1100783
Al Viro86acdca12009-12-22 23:45:11 -0500784 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500785 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
786 error = PTR_ERR(*p);
787 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800788 char *s = nd_get_link(nd);
789 error = 0;
790 if (s)
791 error = __vfs_follow_link(nd, s);
Jeff Layton39159de2009-12-07 12:01:50 -0500792 else if (nd->last_type == LAST_BIND) {
793 error = force_reval_path(&nd->path, nd);
794 if (error)
795 path_put(&nd->path);
796 }
Ian Kent051d3812006-03-27 01:14:53 -0800797 }
Ian Kent051d3812006-03-27 01:14:53 -0800798 return error;
799}
800
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801/*
802 * This limits recursive symlink follows to 8, while
803 * limiting consecutive symlinks to 40.
804 *
805 * Without that kind of total limit, nasty chains of consecutive
806 * symlinks can cause almost arbitrarily long lookups.
807 */
Al Viro90ebe562005-06-06 13:35:58 -0700808static inline int do_follow_link(struct path *path, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Al Virodef4af32009-12-26 08:37:05 -0500810 void *cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 int err = -ELOOP;
812 if (current->link_count >= MAX_NESTED_LINKS)
813 goto loop;
814 if (current->total_link_count >= 40)
815 goto loop;
816 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
817 cond_resched();
Al Viro90ebe562005-06-06 13:35:58 -0700818 err = security_inode_follow_link(path->dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 if (err)
820 goto loop;
821 current->link_count++;
822 current->total_link_count++;
823 nd->depth++;
Al Virodef4af32009-12-26 08:37:05 -0500824 err = __do_follow_link(path, nd, &cookie);
825 if (!IS_ERR(cookie) && path->dentry->d_inode->i_op->put_link)
826 path->dentry->d_inode->i_op->put_link(path->dentry, nd, cookie);
Al Viro258fa992009-08-09 01:32:02 +0400827 path_put(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 current->link_count--;
829 nd->depth--;
830 return err;
831loop:
Jan Blunck1d957f92008-02-14 19:34:35 -0800832 path_put_conditional(path, nd);
833 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return err;
835}
836
Nick Piggin31e6b012011-01-07 17:49:52 +1100837static int follow_up_rcu(struct path *path)
838{
839 struct vfsmount *parent;
840 struct dentry *mountpoint;
841
842 parent = path->mnt->mnt_parent;
843 if (parent == path->mnt)
844 return 0;
845 mountpoint = path->mnt->mnt_mountpoint;
846 path->dentry = mountpoint;
847 path->mnt = parent;
848 return 1;
849}
850
Al Virobab77eb2009-04-18 03:26:48 -0400851int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852{
853 struct vfsmount *parent;
854 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000855
856 br_read_lock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400857 parent = path->mnt->mnt_parent;
858 if (parent == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000859 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 return 0;
861 }
862 mntget(parent);
Al Virobab77eb2009-04-18 03:26:48 -0400863 mountpoint = dget(path->mnt->mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000864 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400865 dput(path->dentry);
866 path->dentry = mountpoint;
867 mntput(path->mnt);
868 path->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return 1;
870}
871
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100872/*
873 * serialization is taken care of in namespace.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100875static void __follow_mount_rcu(struct nameidata *nd, struct path *path,
876 struct inode **inode)
877{
878 while (d_mountpoint(path->dentry)) {
879 struct vfsmount *mounted;
880 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
881 if (!mounted)
882 return;
883 path->mnt = mounted;
884 path->dentry = mounted->mnt_root;
885 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
886 *inode = path->dentry->d_inode;
887 }
888}
889
Al Viro463ffb22005-06-06 13:36:05 -0700890static int __follow_mount(struct path *path)
891{
892 int res = 0;
893 while (d_mountpoint(path->dentry)) {
Al Viro1c755af2009-04-18 14:06:57 -0400894 struct vfsmount *mounted = lookup_mnt(path);
Al Viro463ffb22005-06-06 13:36:05 -0700895 if (!mounted)
896 break;
897 dput(path->dentry);
898 if (res)
899 mntput(path->mnt);
900 path->mnt = mounted;
901 path->dentry = dget(mounted->mnt_root);
902 res = 1;
903 }
904 return res;
905}
906
Al Viro79ed0222009-04-18 13:59:41 -0400907static void follow_mount(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Al Viro79ed0222009-04-18 13:59:41 -0400909 while (d_mountpoint(path->dentry)) {
Al Viro1c755af2009-04-18 14:06:57 -0400910 struct vfsmount *mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 if (!mounted)
912 break;
Al Viro79ed0222009-04-18 13:59:41 -0400913 dput(path->dentry);
914 mntput(path->mnt);
915 path->mnt = mounted;
916 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
919
Al Viro9393bd02009-04-18 13:58:15 -0400920int follow_down(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921{
922 struct vfsmount *mounted;
923
Al Viro1c755af2009-04-18 14:06:57 -0400924 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400926 dput(path->dentry);
927 mntput(path->mnt);
928 path->mnt = mounted;
929 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 return 1;
931 }
932 return 0;
933}
934
Nick Piggin31e6b012011-01-07 17:49:52 +1100935static int follow_dotdot_rcu(struct nameidata *nd)
936{
937 struct inode *inode = nd->inode;
938
939 set_root_rcu(nd);
940
941 while(1) {
942 if (nd->path.dentry == nd->root.dentry &&
943 nd->path.mnt == nd->root.mnt) {
944 break;
945 }
946 if (nd->path.dentry != nd->path.mnt->mnt_root) {
947 struct dentry *old = nd->path.dentry;
948 struct dentry *parent = old->d_parent;
949 unsigned seq;
950
951 seq = read_seqcount_begin(&parent->d_seq);
952 if (read_seqcount_retry(&old->d_seq, nd->seq))
953 return -ECHILD;
954 inode = parent->d_inode;
955 nd->path.dentry = parent;
956 nd->seq = seq;
957 break;
958 }
959 if (!follow_up_rcu(&nd->path))
960 break;
961 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
962 inode = nd->path.dentry->d_inode;
963 }
964 __follow_mount_rcu(nd, &nd->path, &inode);
965 nd->inode = inode;
966
967 return 0;
968}
969
970static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971{
Al Viro2a737872009-04-07 11:49:53 -0400972 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -0700973
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -0800975 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Al Viro2a737872009-04-07 11:49:53 -0400977 if (nd->path.dentry == nd->root.dentry &&
978 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 break;
980 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800981 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -0500982 /* rare case of legitimate dget_parent()... */
983 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 dput(old);
985 break;
986 }
Al Viro3088dd72010-01-30 15:47:29 -0500987 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 }
Al Viro79ed0222009-04-18 13:59:41 -0400990 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +1100991 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992}
993
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994/*
Nick Pigginbaa03892010-08-18 04:37:31 +1000995 * Allocate a dentry with name and parent, and perform a parent
996 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
997 * on error. parent->d_inode->i_mutex must be held. d_lookup must
998 * have verified that no child exists while under i_mutex.
999 */
1000static struct dentry *d_alloc_and_lookup(struct dentry *parent,
1001 struct qstr *name, struct nameidata *nd)
1002{
1003 struct inode *inode = parent->d_inode;
1004 struct dentry *dentry;
1005 struct dentry *old;
1006
1007 /* Don't create child dentry for a dead directory. */
1008 if (unlikely(IS_DEADDIR(inode)))
1009 return ERR_PTR(-ENOENT);
1010
1011 dentry = d_alloc(parent, name);
1012 if (unlikely(!dentry))
1013 return ERR_PTR(-ENOMEM);
1014
1015 old = inode->i_op->lookup(inode, dentry, nd);
1016 if (unlikely(old)) {
1017 dput(dentry);
1018 dentry = old;
1019 }
1020 return dentry;
1021}
1022
1023/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 * It's more convoluted than I'd like it to be, but... it's still fairly
1025 * small and for now I'd prefer to have fast path as straight as possible.
1026 * It _is_ time-critical.
1027 */
1028static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +11001029 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030{
Jan Blunck4ac91372008-02-14 19:34:32 -08001031 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +11001032 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro6e6b1bd2009-08-13 23:38:37 +04001033 struct inode *dir;
Al Viro3cac2602009-08-13 18:27:43 +04001034 /*
1035 * See if the low-level filesystem might want
1036 * to use its own hash..
1037 */
Nick Pigginfb045ad2011-01-07 17:49:55 +11001038 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001039 int err = parent->d_op->d_hash(parent, nd->inode, name);
Al Viro3cac2602009-08-13 18:27:43 +04001040 if (err < 0)
1041 return err;
1042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043
Nick Pigginb04f7842010-08-18 04:37:34 +10001044 /*
1045 * Rename seqlock is not required here because in the off chance
1046 * of a false negative due to a concurrent rename, we're going to
1047 * do the non-racy lookup, below.
1048 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001049 if (nd->flags & LOOKUP_RCU) {
1050 unsigned seq;
1051
1052 *inode = nd->inode;
1053 dentry = __d_lookup_rcu(parent, name, &seq, inode);
1054 if (!dentry) {
1055 if (nameidata_drop_rcu(nd))
1056 return -ECHILD;
1057 goto need_lookup;
1058 }
1059 /* Memory barrier in read_seqcount_begin of child is enough */
1060 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1061 return -ECHILD;
1062
1063 nd->seq = seq;
Nick Piggin34286d62011-01-07 17:49:57 +11001064 if (dentry->d_flags & DCACHE_OP_REVALIDATE)
Nick Piggin31e6b012011-01-07 17:49:52 +11001065 goto need_revalidate;
Nick Piggin31e6b012011-01-07 17:49:52 +11001066 path->mnt = mnt;
1067 path->dentry = dentry;
1068 __follow_mount_rcu(nd, path, inode);
1069 } else {
1070 dentry = __d_lookup(parent, name);
1071 if (!dentry)
1072 goto need_lookup;
Nick Piggin2e2e88e2010-08-18 04:37:30 +10001073found:
Nick Pigginfb045ad2011-01-07 17:49:55 +11001074 if (dentry->d_flags & DCACHE_OP_REVALIDATE)
Nick Piggin31e6b012011-01-07 17:49:52 +11001075 goto need_revalidate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076done:
Nick Piggin31e6b012011-01-07 17:49:52 +11001077 path->mnt = mnt;
1078 path->dentry = dentry;
1079 __follow_mount(path);
1080 *inode = path->dentry->d_inode;
1081 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 return 0;
1083
1084need_lookup:
Al Viro6e6b1bd2009-08-13 23:38:37 +04001085 dir = parent->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001086 BUG_ON(nd->inode != dir);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001087
1088 mutex_lock(&dir->i_mutex);
1089 /*
1090 * First re-do the cached lookup just in case it was created
Nick Pigginb04f7842010-08-18 04:37:34 +10001091 * while we waited for the directory semaphore, or the first
1092 * lookup failed due to an unrelated rename.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001093 *
Nick Pigginb04f7842010-08-18 04:37:34 +10001094 * This could use version numbering or similar to avoid unnecessary
1095 * cache lookups, but then we'd have to do the first lookup in the
1096 * non-racy way. However in the common case here, everything should
1097 * be hot in cache, so would it be a big win?
Al Viro6e6b1bd2009-08-13 23:38:37 +04001098 */
1099 dentry = d_lookup(parent, name);
Nick Pigginbaa03892010-08-18 04:37:31 +10001100 if (likely(!dentry)) {
1101 dentry = d_alloc_and_lookup(parent, name, nd);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001102 mutex_unlock(&dir->i_mutex);
1103 if (IS_ERR(dentry))
1104 goto fail;
1105 goto done;
1106 }
Al Viro6e6b1bd2009-08-13 23:38:37 +04001107 /*
1108 * Uhhuh! Nasty case: the cache was re-populated while
1109 * we waited on the semaphore. Need to revalidate.
1110 */
1111 mutex_unlock(&dir->i_mutex);
Nick Piggin2e2e88e2010-08-18 04:37:30 +10001112 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114need_revalidate:
Ian Kentbcdc5e02006-09-27 01:50:44 -07001115 dentry = do_revalidate(dentry, nd);
1116 if (!dentry)
1117 goto need_lookup;
1118 if (IS_ERR(dentry))
1119 goto fail;
1120 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122fail:
1123 return PTR_ERR(dentry);
1124}
1125
1126/*
Al Viroac278a92010-02-16 18:09:36 +00001127 * This is a temporary kludge to deal with "automount" symlinks; proper
1128 * solution is to trigger them on follow_mount(), so that do_lookup()
1129 * would DTRT. To be killed before 2.6.34-final.
1130 */
1131static inline int follow_on_final(struct inode *inode, unsigned lookup_flags)
1132{
1133 return inode && unlikely(inode->i_op->follow_link) &&
1134 ((lookup_flags & LOOKUP_FOLLOW) || S_ISDIR(inode->i_mode));
1135}
1136
1137/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001139 * This is the basic name resolution function, turning a pathname into
1140 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001142 * Returns 0 and nd will have valid dentry and mnt on success.
1143 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 */
Al Viro6de88d72009-08-09 01:41:57 +04001145static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146{
1147 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 int err;
1149 unsigned int lookup_flags = nd->flags;
1150
1151 while (*name=='/')
1152 name++;
1153 if (!*name)
1154 goto return_reval;
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (nd->depth)
Trond Myklebustf55eab82006-02-04 23:28:01 -08001157 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 /* At this point we know we have a real path component. */
1160 for(;;) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001161 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 unsigned long hash;
1163 struct qstr this;
1164 unsigned int c;
1165
Trond Myklebustcdce5d62005-10-18 14:20:18 -07001166 nd->flags |= LOOKUP_CONTINUE;
Nick Piggin31e6b012011-01-07 17:49:52 +11001167 if (nd->flags & LOOKUP_RCU) {
1168 err = exec_permission_rcu(nd->inode);
1169 if (err == -ECHILD) {
1170 if (nameidata_drop_rcu(nd))
1171 return -ECHILD;
1172 goto exec_again;
1173 }
1174 } else {
1175exec_again:
1176 err = exec_permission(nd->inode);
1177 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 if (err)
1179 break;
1180
1181 this.name = name;
1182 c = *(const unsigned char *)name;
1183
1184 hash = init_name_hash();
1185 do {
1186 name++;
1187 hash = partial_name_hash(c, hash);
1188 c = *(const unsigned char *)name;
1189 } while (c && (c != '/'));
1190 this.len = name - (const char *) this.name;
1191 this.hash = end_name_hash(hash);
1192
1193 /* remove trailing slashes? */
1194 if (!c)
1195 goto last_component;
1196 while (*++name == '/');
1197 if (!*name)
1198 goto last_with_slashes;
1199
1200 /*
1201 * "." and ".." are special - ".." especially so because it has
1202 * to be able to know about the current root directory and
1203 * parent relationships.
1204 */
1205 if (this.name[0] == '.') switch (this.len) {
1206 default:
1207 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001208 case 2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 if (this.name[1] != '.')
1210 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001211 if (nd->flags & LOOKUP_RCU) {
1212 if (follow_dotdot_rcu(nd))
1213 return -ECHILD;
1214 } else
1215 follow_dotdot(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 /* fallthrough */
1217 case 1:
1218 continue;
1219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 /* This does the actual lookups.. */
Nick Piggin31e6b012011-01-07 17:49:52 +11001221 err = do_lookup(nd, &this, &next, &inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (err)
1223 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 if (!inode)
1226 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227
1228 if (inode->i_op->follow_link) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001229 /* We commonly drop rcu-walk here */
1230 if (nameidata_dentry_drop_rcu_maybe(nd, next.dentry))
1231 return -ECHILD;
1232 BUG_ON(inode != next.dentry->d_inode);
Al Viro90ebe562005-06-06 13:35:58 -07001233 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (err)
1235 goto return_err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001236 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 err = -ENOENT;
Nick Piggin31e6b012011-01-07 17:49:52 +11001238 if (!nd->inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001240 } else {
Miklos Szeredi09dd17d2005-09-06 15:18:21 -07001241 path_to_nameidata(&next, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001242 nd->inode = inode;
1243 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001245 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 break;
1247 continue;
1248 /* here ends the main loop */
1249
1250last_with_slashes:
1251 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1252last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -08001253 /* Clear LOOKUP_CONTINUE iff it was previously unset */
1254 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 if (lookup_flags & LOOKUP_PARENT)
1256 goto lookup_parent;
1257 if (this.name[0] == '.') switch (this.len) {
1258 default:
1259 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001260 case 2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if (this.name[1] != '.')
1262 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001263 if (nd->flags & LOOKUP_RCU) {
1264 if (follow_dotdot_rcu(nd))
1265 return -ECHILD;
1266 } else
1267 follow_dotdot(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 /* fallthrough */
1269 case 1:
1270 goto return_reval;
1271 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001272 err = do_lookup(nd, &this, &next, &inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 if (err)
1274 break;
Al Viroac278a92010-02-16 18:09:36 +00001275 if (follow_on_final(inode, lookup_flags)) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001276 if (nameidata_dentry_drop_rcu_maybe(nd, next.dentry))
1277 return -ECHILD;
1278 BUG_ON(inode != next.dentry->d_inode);
Al Viro90ebe562005-06-06 13:35:58 -07001279 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if (err)
1281 goto return_err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001282 nd->inode = nd->path.dentry->d_inode;
1283 } else {
Miklos Szeredi09dd17d2005-09-06 15:18:21 -07001284 path_to_nameidata(&next, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001285 nd->inode = inode;
1286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 err = -ENOENT;
Nick Piggin31e6b012011-01-07 17:49:52 +11001288 if (!nd->inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 break;
1290 if (lookup_flags & LOOKUP_DIRECTORY) {
1291 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001292 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293 break;
1294 }
1295 goto return_base;
1296lookup_parent:
1297 nd->last = this;
1298 nd->last_type = LAST_NORM;
1299 if (this.name[0] != '.')
1300 goto return_base;
1301 if (this.len == 1)
1302 nd->last_type = LAST_DOT;
1303 else if (this.len == 2 && this.name[1] == '.')
1304 nd->last_type = LAST_DOTDOT;
1305 else
1306 goto return_base;
1307return_reval:
1308 /*
1309 * We bypassed the ordinary revalidation routines.
1310 * We may need to check the cached dentry for staleness.
1311 */
Nick Pigginfb045ad2011-01-07 17:49:55 +11001312 if (need_reval_dot(nd->path.dentry)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 /* Note: we do not d_invalidate() */
Nick Piggin34286d62011-01-07 17:49:57 +11001314 err = d_revalidate(nd->path.dentry, nd);
1315 if (!err)
1316 err = -ESTALE;
1317 if (err < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 break;
1319 }
1320return_base:
Nick Piggin31e6b012011-01-07 17:49:52 +11001321 if (nameidata_drop_rcu_last_maybe(nd))
1322 return -ECHILD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return 0;
1324out_dput:
Nick Piggin31e6b012011-01-07 17:49:52 +11001325 if (!(nd->flags & LOOKUP_RCU))
1326 path_put_conditional(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 break;
1328 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001329 if (!(nd->flags & LOOKUP_RCU))
1330 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331return_err:
1332 return err;
1333}
1334
Nick Piggin31e6b012011-01-07 17:49:52 +11001335static inline int path_walk_rcu(const char *name, struct nameidata *nd)
1336{
1337 current->total_link_count = 0;
1338
1339 return link_path_walk(name, nd);
1340}
1341
1342static inline int path_walk_simple(const char *name, struct nameidata *nd)
1343{
1344 current->total_link_count = 0;
1345
1346 return link_path_walk(name, nd);
1347}
1348
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001349static int path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
Al Viro6de88d72009-08-09 01:41:57 +04001351 struct path save = nd->path;
1352 int result;
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 current->total_link_count = 0;
Al Viro6de88d72009-08-09 01:41:57 +04001355
1356 /* make sure the stuff we saved doesn't go away */
1357 path_get(&save);
1358
1359 result = link_path_walk(name, nd);
1360 if (result == -ESTALE) {
1361 /* nd->path had been dropped */
1362 current->total_link_count = 0;
1363 nd->path = save;
1364 path_get(&nd->path);
1365 nd->flags |= LOOKUP_REVAL;
1366 result = link_path_walk(name, nd);
1367 }
1368
1369 path_put(&save);
1370
1371 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372}
1373
Nick Piggin31e6b012011-01-07 17:49:52 +11001374static void path_finish_rcu(struct nameidata *nd)
1375{
1376 if (nd->flags & LOOKUP_RCU) {
1377 /* RCU dangling. Cancel it. */
1378 nd->flags &= ~LOOKUP_RCU;
1379 nd->root.mnt = NULL;
1380 rcu_read_unlock();
1381 br_read_unlock(vfsmount_lock);
1382 }
1383 if (nd->file)
1384 fput(nd->file);
1385}
1386
1387static int path_init_rcu(int dfd, const char *name, unsigned int flags, struct nameidata *nd)
1388{
1389 int retval = 0;
1390 int fput_needed;
1391 struct file *file;
1392
1393 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1394 nd->flags = flags | LOOKUP_RCU;
1395 nd->depth = 0;
1396 nd->root.mnt = NULL;
1397 nd->file = NULL;
1398
1399 if (*name=='/') {
1400 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +11001401 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001402
1403 br_read_lock(vfsmount_lock);
1404 rcu_read_lock();
1405
Nick Pigginc28cc362011-01-07 17:49:53 +11001406 do {
1407 seq = read_seqcount_begin(&fs->seq);
1408 nd->root = fs->root;
1409 nd->path = nd->root;
1410 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1411 } while (read_seqcount_retry(&fs->seq, seq));
Nick Piggin31e6b012011-01-07 17:49:52 +11001412
1413 } else if (dfd == AT_FDCWD) {
1414 struct fs_struct *fs = current->fs;
Nick Pigginc28cc362011-01-07 17:49:53 +11001415 unsigned seq;
Nick Piggin31e6b012011-01-07 17:49:52 +11001416
1417 br_read_lock(vfsmount_lock);
1418 rcu_read_lock();
1419
Nick Pigginc28cc362011-01-07 17:49:53 +11001420 do {
1421 seq = read_seqcount_begin(&fs->seq);
1422 nd->path = fs->pwd;
1423 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1424 } while (read_seqcount_retry(&fs->seq, seq));
1425
Nick Piggin31e6b012011-01-07 17:49:52 +11001426 } else {
1427 struct dentry *dentry;
1428
1429 file = fget_light(dfd, &fput_needed);
1430 retval = -EBADF;
1431 if (!file)
1432 goto out_fail;
1433
1434 dentry = file->f_path.dentry;
1435
1436 retval = -ENOTDIR;
1437 if (!S_ISDIR(dentry->d_inode->i_mode))
1438 goto fput_fail;
1439
1440 retval = file_permission(file, MAY_EXEC);
1441 if (retval)
1442 goto fput_fail;
1443
1444 nd->path = file->f_path;
1445 if (fput_needed)
1446 nd->file = file;
1447
Nick Pigginc28cc362011-01-07 17:49:53 +11001448 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
Nick Piggin31e6b012011-01-07 17:49:52 +11001449 br_read_lock(vfsmount_lock);
1450 rcu_read_lock();
1451 }
1452 nd->inode = nd->path.dentry->d_inode;
1453 return 0;
1454
1455fput_fail:
1456 fput_light(file, fput_needed);
1457out_fail:
1458 return retval;
1459}
1460
Al Viro9b4a9b12009-04-07 11:44:16 -04001461static int path_init(int dfd, const char *name, unsigned int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001463 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001464 int fput_needed;
1465 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466
1467 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1468 nd->flags = flags;
1469 nd->depth = 0;
Al Viro2a737872009-04-07 11:49:53 -04001470 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 if (*name=='/') {
Al Viro2a737872009-04-07 11:49:53 -04001473 set_root(nd);
1474 nd->path = nd->root;
1475 path_get(&nd->root);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001476 } else if (dfd == AT_FDCWD) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +02001477 get_fs_pwd(current->fs, &nd->path);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001478 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001479 struct dentry *dentry;
1480
1481 file = fget_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001482 retval = -EBADF;
1483 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001484 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001485
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001486 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001487
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001488 retval = -ENOTDIR;
1489 if (!S_ISDIR(dentry->d_inode->i_mode))
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001490 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001491
1492 retval = file_permission(file, MAY_EXEC);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001493 if (retval)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001494 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001495
Jan Blunck5dd784d2008-02-14 19:34:38 -08001496 nd->path = file->f_path;
1497 path_get(&file->f_path);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001498
1499 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001501 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001502 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001503
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001504fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001505 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001506out_fail:
1507 return retval;
1508}
1509
1510/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
1511static int do_path_lookup(int dfd, const char *name,
1512 unsigned int flags, struct nameidata *nd)
1513{
Nick Piggin31e6b012011-01-07 17:49:52 +11001514 int retval;
1515
1516 /*
1517 * Path walking is largely split up into 2 different synchronisation
1518 * schemes, rcu-walk and ref-walk (explained in
1519 * Documentation/filesystems/path-lookup.txt). These share much of the
1520 * path walk code, but some things particularly setup, cleanup, and
1521 * following mounts are sufficiently divergent that functions are
1522 * duplicated. Typically there is a function foo(), and its RCU
1523 * analogue, foo_rcu().
1524 *
1525 * -ECHILD is the error number of choice (just to avoid clashes) that
1526 * is returned if some aspect of an rcu-walk fails. Such an error must
1527 * be handled by restarting a traditional ref-walk (which will always
1528 * be able to complete).
1529 */
1530 retval = path_init_rcu(dfd, name, flags, nd);
1531 if (unlikely(retval))
1532 return retval;
1533 retval = path_walk_rcu(name, nd);
1534 path_finish_rcu(nd);
Al Viro2a737872009-04-07 11:49:53 -04001535 if (nd->root.mnt) {
1536 path_put(&nd->root);
1537 nd->root.mnt = NULL;
1538 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001539
1540 if (unlikely(retval == -ECHILD || retval == -ESTALE)) {
1541 /* slower, locked walk */
1542 if (retval == -ESTALE)
1543 flags |= LOOKUP_REVAL;
1544 retval = path_init(dfd, name, flags, nd);
1545 if (unlikely(retval))
1546 return retval;
1547 retval = path_walk(name, nd);
1548 if (nd->root.mnt) {
1549 path_put(&nd->root);
1550 nd->root.mnt = NULL;
1551 }
1552 }
1553
1554 if (likely(!retval)) {
1555 if (unlikely(!audit_dummy_context())) {
1556 if (nd->path.dentry && nd->inode)
1557 audit_inode(name, nd->path.dentry);
1558 }
1559 }
1560
Al Viro9b4a9b12009-04-07 11:44:16 -04001561 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
1563
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001564int path_lookup(const char *name, unsigned int flags,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001565 struct nameidata *nd)
1566{
1567 return do_path_lookup(AT_FDCWD, name, flags, nd);
1568}
1569
Al Virod1811462008-08-02 00:49:18 -04001570int kern_path(const char *name, unsigned int flags, struct path *path)
1571{
1572 struct nameidata nd;
1573 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1574 if (!res)
1575 *path = nd.path;
1576 return res;
1577}
1578
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001579/**
1580 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1581 * @dentry: pointer to dentry of the base directory
1582 * @mnt: pointer to vfs mount of the base directory
1583 * @name: pointer to file name
1584 * @flags: lookup flags
1585 * @nd: pointer to nameidata
1586 */
1587int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1588 const char *name, unsigned int flags,
1589 struct nameidata *nd)
1590{
1591 int retval;
1592
1593 /* same as do_path_lookup */
1594 nd->last_type = LAST_ROOT;
1595 nd->flags = flags;
1596 nd->depth = 0;
1597
Jan Blunckc8e7f442008-06-09 16:40:35 -07001598 nd->path.dentry = dentry;
1599 nd->path.mnt = mnt;
1600 path_get(&nd->path);
Al Viro5b857112009-04-07 11:53:49 -04001601 nd->root = nd->path;
1602 path_get(&nd->root);
Nick Piggin31e6b012011-01-07 17:49:52 +11001603 nd->inode = nd->path.dentry->d_inode;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001604
1605 retval = path_walk(name, nd);
Jan Blunck4ac91372008-02-14 19:34:32 -08001606 if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
Nick Piggin31e6b012011-01-07 17:49:52 +11001607 nd->inode))
Jan Blunck4ac91372008-02-14 19:34:32 -08001608 audit_inode(name, nd->path.dentry);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001609
Al Viro5b857112009-04-07 11:53:49 -04001610 path_put(&nd->root);
1611 nd->root.mnt = NULL;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001612
Al Viro2a737872009-04-07 11:49:53 -04001613 return retval;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001614}
1615
Christoph Hellwigeead1912007-10-16 23:25:38 -07001616static struct dentry *__lookup_hash(struct qstr *name,
1617 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
Christoph Hellwig81fca442010-10-06 10:47:47 +02001619 struct inode *inode = base->d_inode;
James Morris057f6c02007-04-26 00:12:05 -07001620 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 int err;
1622
Christoph Hellwig81fca442010-10-06 10:47:47 +02001623 err = exec_permission(inode);
1624 if (err)
1625 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
1627 /*
1628 * See if the low-level filesystem might want
1629 * to use its own hash..
1630 */
Nick Pigginfb045ad2011-01-07 17:49:55 +11001631 if (base->d_flags & DCACHE_OP_HASH) {
Nick Pigginb1e6a012011-01-07 17:49:28 +11001632 err = base->d_op->d_hash(base, inode, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 dentry = ERR_PTR(err);
1634 if (err < 0)
1635 goto out;
1636 }
1637
Nick Pigginb04f7842010-08-18 04:37:34 +10001638 /*
1639 * Don't bother with __d_lookup: callers are for creat as
1640 * well as unlink, so a lot of the time it would cost
1641 * a double lookup.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001642 */
Nick Pigginb04f7842010-08-18 04:37:34 +10001643 dentry = d_lookup(base, name);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001644
Nick Pigginfb045ad2011-01-07 17:49:55 +11001645 if (dentry && (dentry->d_flags & DCACHE_OP_REVALIDATE))
Al Viro6e6b1bd2009-08-13 23:38:37 +04001646 dentry = do_revalidate(dentry, nd);
1647
Nick Pigginbaa03892010-08-18 04:37:31 +10001648 if (!dentry)
1649 dentry = d_alloc_and_lookup(base, name, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650out:
1651 return dentry;
1652}
1653
James Morris057f6c02007-04-26 00:12:05 -07001654/*
1655 * Restricted form of lookup. Doesn't follow links, single-component only,
1656 * needs parent already locked. Doesn't follow mounts.
1657 * SMP-safe.
1658 */
Adrian Bunka244e162006-03-31 02:32:11 -08001659static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660{
Jan Blunck4ac91372008-02-14 19:34:32 -08001661 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662}
1663
Christoph Hellwigeead1912007-10-16 23:25:38 -07001664static int __lookup_one_len(const char *name, struct qstr *this,
1665 struct dentry *base, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666{
1667 unsigned long hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 unsigned int c;
1669
James Morris057f6c02007-04-26 00:12:05 -07001670 this->name = name;
1671 this->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 if (!len)
James Morris057f6c02007-04-26 00:12:05 -07001673 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
1675 hash = init_name_hash();
1676 while (len--) {
1677 c = *(const unsigned char *)name++;
1678 if (c == '/' || c == '\0')
James Morris057f6c02007-04-26 00:12:05 -07001679 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 hash = partial_name_hash(c, hash);
1681 }
James Morris057f6c02007-04-26 00:12:05 -07001682 this->hash = end_name_hash(hash);
1683 return 0;
1684}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Christoph Hellwigeead1912007-10-16 23:25:38 -07001686/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001687 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001688 * @name: pathname component to lookup
1689 * @base: base directory to lookup from
1690 * @len: maximum length @len should be interpreted to
1691 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001692 * Note that this routine is purely a helper for filesystem usage and should
1693 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001694 * nameidata argument is passed to the filesystem methods and a filesystem
1695 * using this helper needs to be prepared for that.
1696 */
James Morris057f6c02007-04-26 00:12:05 -07001697struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1698{
1699 int err;
1700 struct qstr this;
1701
David Woodhouse2f9092e2009-04-20 23:18:37 +01001702 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1703
James Morris057f6c02007-04-26 00:12:05 -07001704 err = __lookup_one_len(name, &this, base, len);
1705 if (err)
1706 return ERR_PTR(err);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001707
Christoph Hellwig49705b72005-11-08 21:35:06 -08001708 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001709}
1710
Al Viro2d8f3032008-07-22 09:59:21 -04001711int user_path_at(int dfd, const char __user *name, unsigned flags,
1712 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713{
Al Viro2d8f3032008-07-22 09:59:21 -04001714 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 char *tmp = getname(name);
1716 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001718
1719 BUG_ON(flags & LOOKUP_PARENT);
1720
1721 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001723 if (!err)
1724 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 }
1726 return err;
1727}
1728
Al Viro2ad94ae2008-07-21 09:32:51 -04001729static int user_path_parent(int dfd, const char __user *path,
1730 struct nameidata *nd, char **name)
1731{
1732 char *s = getname(path);
1733 int error;
1734
1735 if (IS_ERR(s))
1736 return PTR_ERR(s);
1737
1738 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1739 if (error)
1740 putname(s);
1741 else
1742 *name = s;
1743
1744 return error;
1745}
1746
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747/*
1748 * It's inline, so penalty for filesystems that don't use sticky bit is
1749 * minimal.
1750 */
1751static inline int check_sticky(struct inode *dir, struct inode *inode)
1752{
David Howellsda9592e2008-11-14 10:39:05 +11001753 uid_t fsuid = current_fsuid();
1754
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (!(dir->i_mode & S_ISVTX))
1756 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001757 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001759 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 return 0;
1761 return !capable(CAP_FOWNER);
1762}
1763
1764/*
1765 * Check whether we can remove a link victim from directory dir, check
1766 * whether the type of victim is right.
1767 * 1. We can't do it if dir is read-only (done in permission())
1768 * 2. We should have write and exec permissions on dir
1769 * 3. We can't remove anything from append-only dir
1770 * 4. We can't do anything with immutable dir (done in permission())
1771 * 5. If the sticky bit on dir is set we should either
1772 * a. be owner of dir, or
1773 * b. be owner of victim, or
1774 * c. have CAP_FOWNER capability
1775 * 6. If the victim is append-only or immutable we can't do antyhing with
1776 * links pointing to it.
1777 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1778 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1779 * 9. We can't remove a root or mountpoint.
1780 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1781 * nfs_async_unlink().
1782 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001783static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
1785 int error;
1786
1787 if (!victim->d_inode)
1788 return -ENOENT;
1789
1790 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001791 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
Al Virof419a2e2008-07-22 00:07:17 -04001793 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 if (error)
1795 return error;
1796 if (IS_APPEND(dir))
1797 return -EPERM;
1798 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001799 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 return -EPERM;
1801 if (isdir) {
1802 if (!S_ISDIR(victim->d_inode->i_mode))
1803 return -ENOTDIR;
1804 if (IS_ROOT(victim))
1805 return -EBUSY;
1806 } else if (S_ISDIR(victim->d_inode->i_mode))
1807 return -EISDIR;
1808 if (IS_DEADDIR(dir))
1809 return -ENOENT;
1810 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1811 return -EBUSY;
1812 return 0;
1813}
1814
1815/* Check whether we can create an object with dentry child in directory
1816 * dir.
1817 * 1. We can't do it if child already exists (open has special treatment for
1818 * this case, but since we are inlined it's OK)
1819 * 2. We can't do it if dir is read-only (done in permission())
1820 * 3. We should have write and exec permissions on dir
1821 * 4. We can't do it if dir is immutable (done in permission())
1822 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001823static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824{
1825 if (child->d_inode)
1826 return -EEXIST;
1827 if (IS_DEADDIR(dir))
1828 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001829 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830}
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832/*
1833 * p1 and p2 should be directories on the same fs.
1834 */
1835struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1836{
1837 struct dentry *p;
1838
1839 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001840 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 return NULL;
1842 }
1843
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001844 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001846 p = d_ancestor(p2, p1);
1847 if (p) {
1848 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1849 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1850 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 }
1852
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001853 p = d_ancestor(p1, p2);
1854 if (p) {
1855 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1856 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1857 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 }
1859
Ingo Molnarf2eace22006-07-03 00:25:05 -07001860 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1861 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 return NULL;
1863}
1864
1865void unlock_rename(struct dentry *p1, struct dentry *p2)
1866{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001867 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001869 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001870 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 }
1872}
1873
1874int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1875 struct nameidata *nd)
1876{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001877 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878
1879 if (error)
1880 return error;
1881
Al Viroacfa4382008-12-04 10:06:33 -05001882 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 return -EACCES; /* shouldn't it be ENOSYS? */
1884 mode &= S_IALLUGO;
1885 mode |= S_IFREG;
1886 error = security_inode_create(dir, dentry, mode);
1887 if (error)
1888 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001890 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001891 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 return error;
1893}
1894
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001895int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001897 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 struct inode *inode = dentry->d_inode;
1899 int error;
1900
1901 if (!inode)
1902 return -ENOENT;
1903
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001904 switch (inode->i_mode & S_IFMT) {
1905 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001907 case S_IFDIR:
1908 if (acc_mode & MAY_WRITE)
1909 return -EISDIR;
1910 break;
1911 case S_IFBLK:
1912 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001913 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001915 /*FALLTHRU*/
1916 case S_IFIFO:
1917 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001919 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001920 }
Dave Hansenb41572e2007-10-16 23:31:14 -07001921
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001922 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07001923 if (error)
1924 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05001925
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 /*
1927 * An append-only file must be opened in append mode for writing.
1928 */
1929 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05001930 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05001931 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05001933 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 }
1935
1936 /* O_NOATIME can only be set by the owner or superuser */
Al Viro7715b522009-12-16 03:54:00 -05001937 if (flag & O_NOATIME && !is_owner_or_cap(inode))
1938 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939
1940 /*
1941 * Ensure there are no outstanding leases on the file.
1942 */
Al Virob65a9cf2009-12-16 06:27:40 -05001943 return break_lease(inode, flag);
Al Viro7715b522009-12-16 03:54:00 -05001944}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
Al Viro7715b522009-12-16 03:54:00 -05001946static int handle_truncate(struct path *path)
1947{
1948 struct inode *inode = path->dentry->d_inode;
1949 int error = get_write_access(inode);
1950 if (error)
1951 return error;
1952 /*
1953 * Refuse to truncate files with mandatory locks held on them.
1954 */
1955 error = locks_verify_locked(inode);
1956 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09001957 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05001958 if (!error) {
1959 error = do_truncate(path->dentry, 0,
1960 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
1961 NULL);
1962 }
1963 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04001964 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965}
1966
Dave Hansend57999e2008-02-15 14:37:27 -08001967/*
1968 * Be careful about ever adding any more callers of this
1969 * function. Its flags must be in the namei format, not
1970 * what get passed to sys_open().
1971 */
1972static int __open_namei_create(struct nameidata *nd, struct path *path,
Al Viro8737c932009-12-24 06:47:55 -05001973 int open_flag, int mode)
Dave Hansenaab520e2006-09-30 23:29:02 -07001974{
1975 int error;
Jan Blunck4ac91372008-02-14 19:34:32 -08001976 struct dentry *dir = nd->path.dentry;
Dave Hansenaab520e2006-09-30 23:29:02 -07001977
1978 if (!IS_POSIXACL(dir->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04001979 mode &= ~current_umask();
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001980 error = security_path_mknod(&nd->path, path->dentry, mode, 0);
1981 if (error)
1982 goto out_unlock;
Dave Hansenaab520e2006-09-30 23:29:02 -07001983 error = vfs_create(dir->d_inode, path->dentry, mode, nd);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001984out_unlock:
Dave Hansenaab520e2006-09-30 23:29:02 -07001985 mutex_unlock(&dir->d_inode->i_mutex);
Jan Blunck4ac91372008-02-14 19:34:32 -08001986 dput(nd->path.dentry);
1987 nd->path.dentry = path->dentry;
Nick Piggin31e6b012011-01-07 17:49:52 +11001988
Dave Hansenaab520e2006-09-30 23:29:02 -07001989 if (error)
1990 return error;
1991 /* Don't check for write permission, don't truncate */
Al Viro8737c932009-12-24 06:47:55 -05001992 return may_open(&nd->path, 0, open_flag & ~O_TRUNC);
Dave Hansenaab520e2006-09-30 23:29:02 -07001993}
1994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995/*
Dave Hansend57999e2008-02-15 14:37:27 -08001996 * Note that while the flag value (low two bits) for sys_open means:
1997 * 00 - read-only
1998 * 01 - write-only
1999 * 10 - read-write
2000 * 11 - special
2001 * it is changed into
2002 * 00 - no permissions needed
2003 * 01 - read-permission
2004 * 10 - write-permission
2005 * 11 - read-write
2006 * for the internal routines (ie open_namei()/follow_link() etc)
2007 * This is more logical, and also allows the 00 "no perm needed"
2008 * to be used for symlinks (where the permissions are checked
2009 * later).
2010 *
2011*/
2012static inline int open_to_namei_flags(int flag)
2013{
2014 if ((flag+1) & O_ACCMODE)
2015 flag++;
2016 return flag;
2017}
2018
Al Viro7715b522009-12-16 03:54:00 -05002019static int open_will_truncate(int flag, struct inode *inode)
Dave Hansen4a3fd212008-02-15 14:37:48 -08002020{
2021 /*
2022 * We'll never write to the fs underlying
2023 * a device file.
2024 */
2025 if (special_file(inode->i_mode))
2026 return 0;
2027 return (flag & O_TRUNC);
2028}
2029
Al Viro648fa862009-12-24 01:26:48 -05002030static struct file *finish_open(struct nameidata *nd,
Al Viro9a661792009-12-24 06:49:47 -05002031 int open_flag, int acc_mode)
Al Viro648fa862009-12-24 01:26:48 -05002032{
2033 struct file *filp;
2034 int will_truncate;
2035 int error;
2036
Al Viro9a661792009-12-24 06:49:47 -05002037 will_truncate = open_will_truncate(open_flag, nd->path.dentry->d_inode);
Al Viro648fa862009-12-24 01:26:48 -05002038 if (will_truncate) {
2039 error = mnt_want_write(nd->path.mnt);
2040 if (error)
2041 goto exit;
2042 }
2043 error = may_open(&nd->path, acc_mode, open_flag);
2044 if (error) {
2045 if (will_truncate)
2046 mnt_drop_write(nd->path.mnt);
2047 goto exit;
2048 }
2049 filp = nameidata_to_filp(nd);
2050 if (!IS_ERR(filp)) {
2051 error = ima_file_check(filp, acc_mode);
2052 if (error) {
2053 fput(filp);
2054 filp = ERR_PTR(error);
2055 }
2056 }
2057 if (!IS_ERR(filp)) {
Al Viro648fa862009-12-24 01:26:48 -05002058 if (will_truncate) {
2059 error = handle_truncate(&nd->path);
2060 if (error) {
2061 fput(filp);
2062 filp = ERR_PTR(error);
2063 }
2064 }
2065 }
2066 /*
2067 * It is now safe to drop the mnt write
2068 * because the filp has had a write taken
2069 * on its behalf.
2070 */
2071 if (will_truncate)
2072 mnt_drop_write(nd->path.mnt);
Al Virod893f1b2010-10-29 03:30:42 -04002073 path_put(&nd->path);
Al Viro648fa862009-12-24 01:26:48 -05002074 return filp;
2075
2076exit:
2077 if (!IS_ERR(nd->intent.open.file))
2078 release_open_intent(nd);
2079 path_put(&nd->path);
2080 return ERR_PTR(error);
2081}
2082
Nick Piggin31e6b012011-01-07 17:49:52 +11002083/*
2084 * Handle O_CREAT case for do_filp_open
2085 */
Al Virofb1cc552009-12-24 01:58:28 -05002086static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viro5b369df2009-12-24 06:51:13 -05002087 int open_flag, int acc_mode,
Al Viro3e297b62010-03-26 12:40:13 -04002088 int mode, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002089{
Al Viroa1e28032009-12-24 02:12:06 -05002090 struct dentry *dir = nd->path.dentry;
Al Virofb1cc552009-12-24 01:58:28 -05002091 struct file *filp;
Al Viro1f36f772009-12-26 10:56:19 -05002092 int error = -EISDIR;
Al Virofb1cc552009-12-24 01:58:28 -05002093
Al Viro1f36f772009-12-26 10:56:19 -05002094 switch (nd->last_type) {
2095 case LAST_DOTDOT:
2096 follow_dotdot(nd);
2097 dir = nd->path.dentry;
Neil Brown176306f2010-05-24 16:57:56 +10002098 case LAST_DOT:
Nick Pigginfb045ad2011-01-07 17:49:55 +11002099 if (need_reval_dot(dir)) {
Nick Piggin34286d62011-01-07 17:49:57 +11002100 error = d_revalidate(nd->path.dentry, nd);
2101 if (!error)
Al Viro1f36f772009-12-26 10:56:19 -05002102 error = -ESTALE;
Nick Piggin34286d62011-01-07 17:49:57 +11002103 if (error < 0)
Al Viro1f36f772009-12-26 10:56:19 -05002104 goto exit;
Al Viro1f36f772009-12-26 10:56:19 -05002105 }
2106 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002107 case LAST_ROOT:
Nick Piggin31e6b012011-01-07 17:49:52 +11002108 goto exit;
Al Viro1f36f772009-12-26 10:56:19 -05002109 case LAST_BIND:
2110 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002111 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002112 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002113
Al Viro1f36f772009-12-26 10:56:19 -05002114 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002115 if (nd->last.name[nd->last.len])
2116 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002117
Al Viroa1e28032009-12-24 02:12:06 -05002118 mutex_lock(&dir->d_inode->i_mutex);
2119
2120 path->dentry = lookup_hash(nd);
2121 path->mnt = nd->path.mnt;
2122
Al Virofb1cc552009-12-24 01:58:28 -05002123 error = PTR_ERR(path->dentry);
2124 if (IS_ERR(path->dentry)) {
2125 mutex_unlock(&dir->d_inode->i_mutex);
2126 goto exit;
2127 }
2128
2129 if (IS_ERR(nd->intent.open.file)) {
2130 error = PTR_ERR(nd->intent.open.file);
2131 goto exit_mutex_unlock;
2132 }
2133
2134 /* Negative dentry, just create the file */
2135 if (!path->dentry->d_inode) {
2136 /*
2137 * This write is needed to ensure that a
2138 * ro->rw transition does not occur between
2139 * the time when the file is created and when
2140 * a permanent write count is taken through
2141 * the 'struct file' in nameidata_to_filp().
2142 */
2143 error = mnt_want_write(nd->path.mnt);
2144 if (error)
2145 goto exit_mutex_unlock;
2146 error = __open_namei_create(nd, path, open_flag, mode);
2147 if (error) {
2148 mnt_drop_write(nd->path.mnt);
2149 goto exit;
2150 }
2151 filp = nameidata_to_filp(nd);
2152 mnt_drop_write(nd->path.mnt);
Al Virod893f1b2010-10-29 03:30:42 -04002153 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002154 if (!IS_ERR(filp)) {
2155 error = ima_file_check(filp, acc_mode);
2156 if (error) {
2157 fput(filp);
2158 filp = ERR_PTR(error);
2159 }
2160 }
2161 return filp;
2162 }
2163
2164 /*
2165 * It already exists.
2166 */
2167 mutex_unlock(&dir->d_inode->i_mutex);
2168 audit_inode(pathname, path->dentry);
2169
2170 error = -EEXIST;
Al Viro5b369df2009-12-24 06:51:13 -05002171 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002172 goto exit_dput;
2173
2174 if (__follow_mount(path)) {
2175 error = -ELOOP;
Al Viro5b369df2009-12-24 06:51:13 -05002176 if (open_flag & O_NOFOLLOW)
Al Virofb1cc552009-12-24 01:58:28 -05002177 goto exit_dput;
2178 }
2179
2180 error = -ENOENT;
2181 if (!path->dentry->d_inode)
2182 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002183
2184 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002185 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002186
2187 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002188 nd->inode = path->dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05002189 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002190 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002191 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002192ok:
Al Viro9a661792009-12-24 06:49:47 -05002193 filp = finish_open(nd, open_flag, acc_mode);
Al Virofb1cc552009-12-24 01:58:28 -05002194 return filp;
2195
2196exit_mutex_unlock:
2197 mutex_unlock(&dir->d_inode->i_mutex);
2198exit_dput:
2199 path_put_conditional(path, nd);
2200exit:
2201 if (!IS_ERR(nd->intent.open.file))
2202 release_open_intent(nd);
Al Virofb1cc552009-12-24 01:58:28 -05002203 path_put(&nd->path);
2204 return ERR_PTR(error);
2205}
2206
Dave Hansend57999e2008-02-15 14:37:27 -08002207/*
Dave Hansen4a3fd212008-02-15 14:37:48 -08002208 * Note that the low bits of the passed in "open_flag"
2209 * are not the same as in the local variable "flag". See
2210 * open_to_namei_flags() for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002212struct file *do_filp_open(int dfd, const char *pathname,
Al Viro6e8341a2009-04-06 11:16:22 -04002213 int open_flag, int mode, int acc_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
Dave Hansen4a3fd212008-02-15 14:37:48 -08002215 struct file *filp;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002216 struct nameidata nd;
Al Viro6e8341a2009-04-06 11:16:22 -04002217 int error;
Al Viro9850c052010-01-13 15:01:15 -05002218 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 int count = 0;
Dave Hansend57999e2008-02-15 14:37:27 -08002220 int flag = open_to_namei_flags(open_flag);
Nick Piggin31e6b012011-01-07 17:49:52 +11002221 int flags;
Al Viro1f36f772009-12-26 10:56:19 -05002222
2223 if (!(open_flag & O_CREAT))
2224 mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225
Lino Sanfilippob1085ba2010-11-05 17:05:27 +01002226 /* Must never be set by userspace */
2227 open_flag &= ~FMODE_NONOTIFY;
2228
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +01002229 /*
2230 * O_SYNC is implemented as __O_SYNC|O_DSYNC. As many places only
2231 * check for O_DSYNC if the need any syncing at all we enforce it's
2232 * always set instead of having to deal with possibly weird behaviour
2233 * for malicious applications setting only __O_SYNC.
2234 */
2235 if (open_flag & __O_SYNC)
2236 open_flag |= O_DSYNC;
2237
Al Viro6e8341a2009-04-06 11:16:22 -04002238 if (!acc_mode)
Al Viro6d125522009-12-24 06:58:56 -05002239 acc_mode = MAY_OPEN | ACC_MODE(open_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Trond Myklebust834f2a42005-10-18 14:20:16 -07002241 /* O_TRUNC implies we need access checks for write permissions */
Al Viro4296e2c2009-12-24 07:15:41 -05002242 if (open_flag & O_TRUNC)
Trond Myklebust834f2a42005-10-18 14:20:16 -07002243 acc_mode |= MAY_WRITE;
2244
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 /* Allow the LSM permission hook to distinguish append
2246 access from general write access. */
Al Viro4296e2c2009-12-24 07:15:41 -05002247 if (open_flag & O_APPEND)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 acc_mode |= MAY_APPEND;
2249
Nick Piggin31e6b012011-01-07 17:49:52 +11002250 flags = LOOKUP_OPEN;
2251 if (open_flag & O_CREAT) {
2252 flags |= LOOKUP_CREATE;
2253 if (open_flag & O_EXCL)
2254 flags |= LOOKUP_EXCL;
J. R. Okajima654f5622009-06-18 23:30:15 +09002255 }
Nick Piggin31e6b012011-01-07 17:49:52 +11002256 if (open_flag & O_DIRECTORY)
2257 flags |= LOOKUP_DIRECTORY;
2258 if (!(open_flag & O_NOFOLLOW))
2259 flags |= LOOKUP_FOLLOW;
2260
2261 filp = get_empty_filp();
2262 if (!filp)
2263 return ERR_PTR(-ENFILE);
2264
2265 filp->f_flags = open_flag;
2266 nd.intent.open.file = filp;
2267 nd.intent.open.flags = flag;
2268 nd.intent.open.create_mode = mode;
2269
2270 if (open_flag & O_CREAT)
2271 goto creat;
2272
2273 /* !O_CREAT, simple open */
2274 error = do_path_lookup(dfd, pathname, flags, &nd);
2275 if (unlikely(error))
2276 goto out_filp;
2277 error = -ELOOP;
2278 if (!(nd.flags & LOOKUP_FOLLOW)) {
2279 if (nd.inode->i_op->follow_link)
2280 goto out_path;
2281 }
2282 error = -ENOTDIR;
2283 if (nd.flags & LOOKUP_DIRECTORY) {
2284 if (!nd.inode->i_op->lookup)
2285 goto out_path;
2286 }
2287 audit_inode(pathname, nd.path.dentry);
2288 filp = finish_open(&nd, open_flag, acc_mode);
2289 return filp;
2290
2291creat:
2292 /* OK, have to create the file. Find the parent. */
2293 error = path_init_rcu(dfd, pathname,
2294 LOOKUP_PARENT | (flags & LOOKUP_REVAL), &nd);
2295 if (error)
2296 goto out_filp;
2297 error = path_walk_rcu(pathname, &nd);
2298 path_finish_rcu(&nd);
2299 if (unlikely(error == -ECHILD || error == -ESTALE)) {
2300 /* slower, locked walk */
2301 if (error == -ESTALE) {
2302reval:
2303 flags |= LOOKUP_REVAL;
2304 }
2305 error = path_init(dfd, pathname,
2306 LOOKUP_PARENT | (flags & LOOKUP_REVAL), &nd);
2307 if (error)
2308 goto out_filp;
2309
2310 error = path_walk_simple(pathname, &nd);
2311 }
2312 if (unlikely(error))
2313 goto out_filp;
2314 if (unlikely(!audit_dummy_context()))
Al Viro9b4a9b12009-04-07 11:44:16 -04002315 audit_inode(pathname, nd.path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
2317 /*
Al Viroa2c36b42009-12-24 03:39:50 -05002318 * We have the parent and last component.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 */
Nick Piggin31e6b012011-01-07 17:49:52 +11002320 nd.flags = flags;
Al Viro3e297b62010-03-26 12:40:13 -04002321 filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002322 while (unlikely(!filp)) { /* trailing symlink */
Al Virodef4af32009-12-26 08:37:05 -05002323 struct path holder;
Al Virodef4af32009-12-26 08:37:05 -05002324 void *cookie;
Al Viro806b6812009-12-26 07:16:40 -05002325 error = -ELOOP;
Al Viro1f36f772009-12-26 10:56:19 -05002326 /* S_ISDIR part is a temporary automount kludge */
Nick Piggin31e6b012011-01-07 17:49:52 +11002327 if (!(nd.flags & LOOKUP_FOLLOW) && !S_ISDIR(nd.inode->i_mode))
Al Viro1f36f772009-12-26 10:56:19 -05002328 goto exit_dput;
2329 if (count++ == 32)
Al Viro806b6812009-12-26 07:16:40 -05002330 goto exit_dput;
2331 /*
2332 * This is subtle. Instead of calling do_follow_link() we do
2333 * the thing by hands. The reason is that this way we have zero
2334 * link_count and path_walk() (called from ->follow_link)
2335 * honoring LOOKUP_PARENT. After that we have the parent and
2336 * last component, i.e. we are in the same situation as after
2337 * the first path_walk(). Well, almost - if the last component
2338 * is normal we get its copy stored in nd->last.name and we will
2339 * have to putname() it when we are done. Procfs-like symlinks
2340 * just set LAST_BIND.
2341 */
2342 nd.flags |= LOOKUP_PARENT;
2343 error = security_inode_follow_link(path.dentry, &nd);
2344 if (error)
2345 goto exit_dput;
Al Virodef4af32009-12-26 08:37:05 -05002346 error = __do_follow_link(&path, &nd, &cookie);
2347 if (unlikely(error)) {
Nick Piggin31e6b012011-01-07 17:49:52 +11002348 if (!IS_ERR(cookie) && nd.inode->i_op->put_link)
2349 nd.inode->i_op->put_link(path.dentry, &nd, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002350 /* nd.path had been dropped */
Nick Piggin31e6b012011-01-07 17:49:52 +11002351 nd.path = path;
2352 goto out_path;
Al Viro806b6812009-12-26 07:16:40 -05002353 }
Al Virodef4af32009-12-26 08:37:05 -05002354 holder = path;
Al Viro806b6812009-12-26 07:16:40 -05002355 nd.flags &= ~LOOKUP_PARENT;
Al Viro3e297b62010-03-26 12:40:13 -04002356 filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
Nick Piggin31e6b012011-01-07 17:49:52 +11002357 if (nd.inode->i_op->put_link)
2358 nd.inode->i_op->put_link(holder.dentry, &nd, cookie);
Al Virodef4af32009-12-26 08:37:05 -05002359 path_put(&holder);
Al Viro806b6812009-12-26 07:16:40 -05002360 }
Al Viro10fa8e62009-12-26 07:09:49 -05002361out:
Al Viro2a737872009-04-07 11:49:53 -04002362 if (nd.root.mnt)
2363 path_put(&nd.root);
Nick Piggin31e6b012011-01-07 17:49:52 +11002364 if (filp == ERR_PTR(-ESTALE) && !(flags & LOOKUP_REVAL))
Al Viro10fa8e62009-12-26 07:09:49 -05002365 goto reval;
Al Viro10fa8e62009-12-26 07:09:49 -05002366 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Al Viro806b6812009-12-26 07:16:40 -05002368exit_dput:
2369 path_put_conditional(&path, &nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002370out_path:
2371 path_put(&nd.path);
2372out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002373 if (!IS_ERR(nd.intent.open.file))
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002374 release_open_intent(&nd);
Al Viro806b6812009-12-26 07:16:40 -05002375 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002376 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377}
2378
2379/**
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002380 * filp_open - open file and return file pointer
2381 *
2382 * @filename: path to open
2383 * @flags: open flags as per the open(2) second argument
2384 * @mode: mode for the new file if O_CREAT is set, else ignored
2385 *
2386 * This is the helper to open a file from kernelspace if you really
2387 * have to. But in generally you should not do this, so please move
2388 * along, nothing to see here..
2389 */
2390struct file *filp_open(const char *filename, int flags, int mode)
2391{
Al Viro6e8341a2009-04-06 11:16:22 -04002392 return do_filp_open(AT_FDCWD, filename, flags, mode, 0);
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002393}
2394EXPORT_SYMBOL(filp_open);
2395
2396/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 * lookup_create - lookup a dentry, creating it if it doesn't exist
2398 * @nd: nameidata info
2399 * @is_dir: directory flag
2400 *
2401 * Simple function to lookup and return a dentry and create it
2402 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002403 *
Jan Blunck4ac91372008-02-14 19:34:32 -08002404 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 */
2406struct dentry *lookup_create(struct nameidata *nd, int is_dir)
2407{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002408 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409
Jan Blunck4ac91372008-02-14 19:34:32 -08002410 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002411 /*
2412 * Yucky last component or no last component at all?
2413 * (foo/., foo/.., /////)
2414 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 if (nd->last_type != LAST_NORM)
2416 goto fail;
2417 nd->flags &= ~LOOKUP_PARENT;
Al Viro35165862008-08-05 03:00:49 -04002418 nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
ASANO Masahiroa6349042006-08-22 20:06:02 -04002419 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002420
2421 /*
2422 * Do the final lookup.
2423 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08002424 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 if (IS_ERR(dentry))
2426 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002427
Al Viroe9baf6e2008-05-15 04:49:12 -04002428 if (dentry->d_inode)
2429 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002430 /*
2431 * Special case - lookup gave negative, but... we had foo/bar/
2432 * From the vfs_mknod() POV we just have a negative dentry -
2433 * all is fine. Let's be bastards - you had / on the end, you've
2434 * been asking for (non-existent) directory. -ENOENT for you.
2435 */
Al Viroe9baf6e2008-05-15 04:49:12 -04002436 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
2437 dput(dentry);
2438 dentry = ERR_PTR(-ENOENT);
2439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002441eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002443 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444fail:
2445 return dentry;
2446}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07002447EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
2449int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2450{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002451 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
2453 if (error)
2454 return error;
2455
2456 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
2457 return -EPERM;
2458
Al Viroacfa4382008-12-04 10:06:33 -05002459 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460 return -EPERM;
2461
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002462 error = devcgroup_inode_mknod(mode, dev);
2463 if (error)
2464 return error;
2465
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466 error = security_inode_mknod(dir, dentry, mode, dev);
2467 if (error)
2468 return error;
2469
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002471 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002472 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 return error;
2474}
2475
Dave Hansen463c3192008-02-15 14:37:57 -08002476static int may_mknod(mode_t mode)
2477{
2478 switch (mode & S_IFMT) {
2479 case S_IFREG:
2480 case S_IFCHR:
2481 case S_IFBLK:
2482 case S_IFIFO:
2483 case S_IFSOCK:
2484 case 0: /* zero mode translates to S_IFREG */
2485 return 0;
2486 case S_IFDIR:
2487 return -EPERM;
2488 default:
2489 return -EINVAL;
2490 }
2491}
2492
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002493SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2494 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495{
Al Viro2ad94ae2008-07-21 09:32:51 -04002496 int error;
2497 char *tmp;
2498 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 struct nameidata nd;
2500
2501 if (S_ISDIR(mode))
2502 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
Al Viro2ad94ae2008-07-21 09:32:51 -04002504 error = user_path_parent(dfd, filename, &nd, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002506 return error;
2507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 dentry = lookup_create(&nd, 0);
Dave Hansen463c3192008-02-15 14:37:57 -08002509 if (IS_ERR(dentry)) {
2510 error = PTR_ERR(dentry);
2511 goto out_unlock;
2512 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002513 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002514 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002515 error = may_mknod(mode);
2516 if (error)
2517 goto out_dput;
2518 error = mnt_want_write(nd.path.mnt);
2519 if (error)
2520 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002521 error = security_path_mknod(&nd.path, dentry, mode, dev);
2522 if (error)
2523 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002524 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08002526 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 break;
2528 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002529 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 new_decode_dev(dev));
2531 break;
2532 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002533 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002536out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002537 mnt_drop_write(nd.path.mnt);
2538out_dput:
2539 dput(dentry);
2540out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002541 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002542 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 putname(tmp);
2544
2545 return error;
2546}
2547
Heiko Carstens3480b252009-01-14 14:14:16 +01002548SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002549{
2550 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2551}
2552
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2554{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002555 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
2557 if (error)
2558 return error;
2559
Al Viroacfa4382008-12-04 10:06:33 -05002560 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561 return -EPERM;
2562
2563 mode &= (S_IRWXUGO|S_ISVTX);
2564 error = security_inode_mkdir(dir, dentry, mode);
2565 if (error)
2566 return error;
2567
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002569 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002570 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 return error;
2572}
2573
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002574SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575{
2576 int error = 0;
2577 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002578 struct dentry *dentry;
2579 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
Al Viro2ad94ae2008-07-21 09:32:51 -04002581 error = user_path_parent(dfd, pathname, &nd, &tmp);
2582 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002583 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Dave Hansen6902d922006-09-30 23:29:01 -07002585 dentry = lookup_create(&nd, 1);
2586 error = PTR_ERR(dentry);
2587 if (IS_ERR(dentry))
2588 goto out_unlock;
2589
Jan Blunck4ac91372008-02-14 19:34:32 -08002590 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002591 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002592 error = mnt_want_write(nd.path.mnt);
2593 if (error)
2594 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002595 error = security_path_mkdir(&nd.path, dentry, mode);
2596 if (error)
2597 goto out_drop_write;
Jan Blunck4ac91372008-02-14 19:34:32 -08002598 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002599out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002600 mnt_drop_write(nd.path.mnt);
2601out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002602 dput(dentry);
2603out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002604 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002605 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002606 putname(tmp);
2607out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 return error;
2609}
2610
Heiko Carstens3cdad422009-01-14 14:14:22 +01002611SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002612{
2613 return sys_mkdirat(AT_FDCWD, pathname, mode);
2614}
2615
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616/*
2617 * We try to drop the dentry early: we should have
2618 * a usage count of 2 if we're the only user of this
2619 * dentry, and if that is true (possibly after pruning
2620 * the dcache), then we drop the dentry now.
2621 *
2622 * A low-level filesystem can, if it choses, legally
2623 * do a
2624 *
2625 * if (!d_unhashed(dentry))
2626 * return -EBUSY;
2627 *
2628 * if it cannot handle the case of removing a directory
2629 * that is still in use by something else..
2630 */
2631void dentry_unhash(struct dentry *dentry)
2632{
2633 dget(dentry);
Vasily Averindc168422006-12-06 20:37:07 -08002634 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 spin_lock(&dentry->d_lock);
Nick Pigginb7ab39f2011-01-07 17:49:32 +11002636 if (dentry->d_count == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 __d_drop(dentry);
2638 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639}
2640
2641int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2642{
2643 int error = may_delete(dir, dentry, 1);
2644
2645 if (error)
2646 return error;
2647
Al Viroacfa4382008-12-04 10:06:33 -05002648 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 return -EPERM;
2650
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002651 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652 dentry_unhash(dentry);
2653 if (d_mountpoint(dentry))
2654 error = -EBUSY;
2655 else {
2656 error = security_inode_rmdir(dir, dentry);
2657 if (!error) {
2658 error = dir->i_op->rmdir(dir, dentry);
Al Virod83c49f2010-04-30 17:17:09 -04002659 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 dentry->d_inode->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -04002661 dont_mount(dentry);
2662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 }
2664 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002665 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 d_delete(dentry);
2668 }
2669 dput(dentry);
2670
2671 return error;
2672}
2673
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002674static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675{
2676 int error = 0;
2677 char * name;
2678 struct dentry *dentry;
2679 struct nameidata nd;
2680
Al Viro2ad94ae2008-07-21 09:32:51 -04002681 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002683 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
2685 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002686 case LAST_DOTDOT:
2687 error = -ENOTEMPTY;
2688 goto exit1;
2689 case LAST_DOT:
2690 error = -EINVAL;
2691 goto exit1;
2692 case LAST_ROOT:
2693 error = -EBUSY;
2694 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002696
2697 nd.flags &= ~LOOKUP_PARENT;
2698
Jan Blunck4ac91372008-02-14 19:34:32 -08002699 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002700 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002702 if (IS_ERR(dentry))
2703 goto exit2;
Dave Hansen06227532008-02-15 14:37:34 -08002704 error = mnt_want_write(nd.path.mnt);
2705 if (error)
2706 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002707 error = security_path_rmdir(&nd.path, dentry);
2708 if (error)
2709 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002710 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002711exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002712 mnt_drop_write(nd.path.mnt);
2713exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002714 dput(dentry);
2715exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002716 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002718 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 putname(name);
2720 return error;
2721}
2722
Heiko Carstens3cdad422009-01-14 14:14:22 +01002723SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002724{
2725 return do_rmdir(AT_FDCWD, pathname);
2726}
2727
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728int vfs_unlink(struct inode *dir, struct dentry *dentry)
2729{
2730 int error = may_delete(dir, dentry, 0);
2731
2732 if (error)
2733 return error;
2734
Al Viroacfa4382008-12-04 10:06:33 -05002735 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 return -EPERM;
2737
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002738 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 if (d_mountpoint(dentry))
2740 error = -EBUSY;
2741 else {
2742 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002743 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002745 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002746 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002747 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002749 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750
2751 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2752 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002753 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 }
Robert Love0eeca282005-07-12 17:06:03 -04002756
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 return error;
2758}
2759
2760/*
2761 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002762 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 * writeout happening, and we don't want to prevent access to the directory
2764 * while waiting on the I/O.
2765 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002766static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767{
Al Viro2ad94ae2008-07-21 09:32:51 -04002768 int error;
2769 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 struct dentry *dentry;
2771 struct nameidata nd;
2772 struct inode *inode = NULL;
2773
Al Viro2ad94ae2008-07-21 09:32:51 -04002774 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002776 return error;
2777
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 error = -EISDIR;
2779 if (nd.last_type != LAST_NORM)
2780 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002781
2782 nd.flags &= ~LOOKUP_PARENT;
2783
Jan Blunck4ac91372008-02-14 19:34:32 -08002784 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002785 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 error = PTR_ERR(dentry);
2787 if (!IS_ERR(dentry)) {
2788 /* Why not before? Because we want correct error value */
2789 if (nd.last.name[nd.last.len])
2790 goto slashes;
2791 inode = dentry->d_inode;
2792 if (inode)
Al Viro7de9c6e2010-10-23 11:11:40 -04002793 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002794 error = mnt_want_write(nd.path.mnt);
2795 if (error)
2796 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002797 error = security_path_unlink(&nd.path, dentry);
2798 if (error)
2799 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002800 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002801exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002802 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 exit2:
2804 dput(dentry);
2805 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002806 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 if (inode)
2808 iput(inode); /* truncate the inode here */
2809exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002810 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002811 putname(name);
2812 return error;
2813
2814slashes:
2815 error = !dentry->d_inode ? -ENOENT :
2816 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2817 goto exit2;
2818}
2819
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002820SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002821{
2822 if ((flag & ~AT_REMOVEDIR) != 0)
2823 return -EINVAL;
2824
2825 if (flag & AT_REMOVEDIR)
2826 return do_rmdir(dfd, pathname);
2827
2828 return do_unlinkat(dfd, pathname);
2829}
2830
Heiko Carstens3480b252009-01-14 14:14:16 +01002831SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002832{
2833 return do_unlinkat(AT_FDCWD, pathname);
2834}
2835
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002836int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002838 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
2840 if (error)
2841 return error;
2842
Al Viroacfa4382008-12-04 10:06:33 -05002843 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 return -EPERM;
2845
2846 error = security_inode_symlink(dir, dentry, oldname);
2847 if (error)
2848 return error;
2849
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002851 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002852 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 return error;
2854}
2855
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002856SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2857 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858{
Al Viro2ad94ae2008-07-21 09:32:51 -04002859 int error;
2860 char *from;
2861 char *to;
Dave Hansen6902d922006-09-30 23:29:01 -07002862 struct dentry *dentry;
2863 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864
2865 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002866 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002868
2869 error = user_path_parent(newdfd, newname, &nd, &to);
2870 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002871 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872
Dave Hansen6902d922006-09-30 23:29:01 -07002873 dentry = lookup_create(&nd, 0);
2874 error = PTR_ERR(dentry);
2875 if (IS_ERR(dentry))
2876 goto out_unlock;
2877
Dave Hansen75c3f292008-02-15 14:37:45 -08002878 error = mnt_want_write(nd.path.mnt);
2879 if (error)
2880 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002881 error = security_path_symlink(&nd.path, dentry, from);
2882 if (error)
2883 goto out_drop_write;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002884 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002885out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002886 mnt_drop_write(nd.path.mnt);
2887out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002888 dput(dentry);
2889out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002890 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002891 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002892 putname(to);
2893out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 putname(from);
2895 return error;
2896}
2897
Heiko Carstens3480b252009-01-14 14:14:16 +01002898SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002899{
2900 return sys_symlinkat(oldname, AT_FDCWD, newname);
2901}
2902
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2904{
2905 struct inode *inode = old_dentry->d_inode;
2906 int error;
2907
2908 if (!inode)
2909 return -ENOENT;
2910
Miklos Szeredia95164d2008-07-30 15:08:48 +02002911 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 if (error)
2913 return error;
2914
2915 if (dir->i_sb != inode->i_sb)
2916 return -EXDEV;
2917
2918 /*
2919 * A link to an append-only or immutable file cannot be created.
2920 */
2921 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2922 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05002923 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002925 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 return -EPERM;
2927
2928 error = security_inode_link(old_dentry, dir, new_dentry);
2929 if (error)
2930 return error;
2931
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002932 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002934 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002935 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002936 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 return error;
2938}
2939
2940/*
2941 * Hardlinks are often used in delicate situations. We avoid
2942 * security-related surprises by not following symlinks on the
2943 * newname. --KAB
2944 *
2945 * We don't follow them on the oldname either to be compatible
2946 * with linux 2.0, and to avoid hard-linking to directories
2947 * and other special files. --ADM
2948 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002949SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2950 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951{
2952 struct dentry *new_dentry;
Al Viro2d8f3032008-07-22 09:59:21 -04002953 struct nameidata nd;
2954 struct path old_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 int error;
Al Viro2ad94ae2008-07-21 09:32:51 -04002956 char *to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
Ulrich Drepper45c9b112006-06-25 05:49:11 -07002958 if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002959 return -EINVAL;
2960
Al Viro2d8f3032008-07-22 09:59:21 -04002961 error = user_path_at(olddfd, oldname,
2962 flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
2963 &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002965 return error;
2966
2967 error = user_path_parent(newdfd, newname, &nd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 if (error)
2969 goto out;
2970 error = -EXDEV;
Al Viro2d8f3032008-07-22 09:59:21 -04002971 if (old_path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 goto out_release;
2973 new_dentry = lookup_create(&nd, 0);
2974 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002975 if (IS_ERR(new_dentry))
2976 goto out_unlock;
Dave Hansen75c3f292008-02-15 14:37:45 -08002977 error = mnt_want_write(nd.path.mnt);
2978 if (error)
2979 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002980 error = security_path_link(old_path.dentry, &nd.path, new_dentry);
2981 if (error)
2982 goto out_drop_write;
Al Viro2d8f3032008-07-22 09:59:21 -04002983 error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002984out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002985 mnt_drop_write(nd.path.mnt);
2986out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002987 dput(new_dentry);
2988out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002989 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08002991 path_put(&nd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002992 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993out:
Al Viro2d8f3032008-07-22 09:59:21 -04002994 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
2996 return error;
2997}
2998
Heiko Carstens3480b252009-01-14 14:14:16 +01002999SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003000{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08003001 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003002}
3003
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004/*
3005 * The worst of all namespace operations - renaming directory. "Perverted"
3006 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3007 * Problems:
3008 * a) we can get into loop creation. Check is done in is_subdir().
3009 * b) race potential - two innocent renames can create a loop together.
3010 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003011 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 * story.
3013 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003014 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015 * whether the target exists). Solution: try to be smart with locking
3016 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003017 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 * move will be locked. Thus we can rank directories by the tree
3019 * (ancestors first) and rank all non-directories after them.
3020 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08003021 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 * HOWEVER, it relies on the assumption that any object with ->lookup()
3023 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3024 * we'd better make sure that there's no link(2) for them.
3025 * d) some filesystems don't support opened-but-unlinked directories,
3026 * either because of layout or because they are not ready to deal with
3027 * all cases correctly. The latter will be fixed (taking this sort of
3028 * stuff into VFS), but the former is not going away. Solution: the same
3029 * trick as in rmdir().
3030 * e) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003031 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05003033 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 * locking].
3035 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07003036static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3037 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038{
3039 int error = 0;
3040 struct inode *target;
3041
3042 /*
3043 * If we are going to change the parent - check write permissions,
3044 * we'll need to flip '..'.
3045 */
3046 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04003047 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 if (error)
3049 return error;
3050 }
3051
3052 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3053 if (error)
3054 return error;
3055
3056 target = new_dentry->d_inode;
Al Virod83c49f2010-04-30 17:17:09 -04003057 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003058 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3060 error = -EBUSY;
Al Virod83c49f2010-04-30 17:17:09 -04003061 else {
3062 if (target)
3063 dentry_unhash(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
Al Virod83c49f2010-04-30 17:17:09 -04003065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066 if (target) {
Al Virod83c49f2010-04-30 17:17:09 -04003067 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068 target->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -04003069 dont_mount(new_dentry);
3070 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003071 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 if (d_unhashed(new_dentry))
3073 d_rehash(new_dentry);
3074 dput(new_dentry);
3075 }
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003076 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003077 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3078 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 return error;
3080}
3081
Adrian Bunk75c96f82005-05-05 16:16:09 -07003082static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3083 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084{
3085 struct inode *target;
3086 int error;
3087
3088 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3089 if (error)
3090 return error;
3091
3092 dget(new_dentry);
3093 target = new_dentry->d_inode;
3094 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003095 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3097 error = -EBUSY;
3098 else
3099 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3100 if (!error) {
Al Virobec10522010-03-03 14:12:08 -05003101 if (target)
Al Virod83c49f2010-04-30 17:17:09 -04003102 dont_mount(new_dentry);
Mark Fasheh349457c2006-09-08 14:22:21 -07003103 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003104 d_move(old_dentry, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 }
3106 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003107 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 dput(new_dentry);
3109 return error;
3110}
3111
3112int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3113 struct inode *new_dir, struct dentry *new_dentry)
3114{
3115 int error;
3116 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003117 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
3119 if (old_dentry->d_inode == new_dentry->d_inode)
3120 return 0;
3121
3122 error = may_delete(old_dir, old_dentry, is_dir);
3123 if (error)
3124 return error;
3125
3126 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003127 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 else
3129 error = may_delete(new_dir, new_dentry, is_dir);
3130 if (error)
3131 return error;
3132
Al Viroacfa4382008-12-04 10:06:33 -05003133 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 return -EPERM;
3135
Robert Love0eeca282005-07-12 17:06:03 -04003136 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3137
Linus Torvalds1da177e2005-04-16 15:20:36 -07003138 if (is_dir)
3139 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3140 else
3141 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003142 if (!error)
3143 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003144 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003145 fsnotify_oldname_free(old_name);
3146
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 return error;
3148}
3149
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003150SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3151 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152{
Al Viro2ad94ae2008-07-21 09:32:51 -04003153 struct dentry *old_dir, *new_dir;
3154 struct dentry *old_dentry, *new_dentry;
3155 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003157 char *from;
3158 char *to;
3159 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160
Al Viro2ad94ae2008-07-21 09:32:51 -04003161 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 if (error)
3163 goto exit;
3164
Al Viro2ad94ae2008-07-21 09:32:51 -04003165 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 if (error)
3167 goto exit1;
3168
3169 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003170 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 goto exit2;
3172
Jan Blunck4ac91372008-02-14 19:34:32 -08003173 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 error = -EBUSY;
3175 if (oldnd.last_type != LAST_NORM)
3176 goto exit2;
3177
Jan Blunck4ac91372008-02-14 19:34:32 -08003178 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003179 if (newnd.last_type != LAST_NORM)
3180 goto exit2;
3181
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003182 oldnd.flags &= ~LOOKUP_PARENT;
3183 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003184 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003185
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 trap = lock_rename(new_dir, old_dir);
3187
Christoph Hellwig49705b72005-11-08 21:35:06 -08003188 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 error = PTR_ERR(old_dentry);
3190 if (IS_ERR(old_dentry))
3191 goto exit3;
3192 /* source must exist */
3193 error = -ENOENT;
3194 if (!old_dentry->d_inode)
3195 goto exit4;
3196 /* unless the source is a directory trailing slashes give -ENOTDIR */
3197 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3198 error = -ENOTDIR;
3199 if (oldnd.last.name[oldnd.last.len])
3200 goto exit4;
3201 if (newnd.last.name[newnd.last.len])
3202 goto exit4;
3203 }
3204 /* source should not be ancestor of target */
3205 error = -EINVAL;
3206 if (old_dentry == trap)
3207 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003208 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 error = PTR_ERR(new_dentry);
3210 if (IS_ERR(new_dentry))
3211 goto exit4;
3212 /* target should not be an ancestor of source */
3213 error = -ENOTEMPTY;
3214 if (new_dentry == trap)
3215 goto exit5;
3216
Dave Hansen9079b1e2008-02-15 14:37:49 -08003217 error = mnt_want_write(oldnd.path.mnt);
3218 if (error)
3219 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003220 error = security_path_rename(&oldnd.path, old_dentry,
3221 &newnd.path, new_dentry);
3222 if (error)
3223 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224 error = vfs_rename(old_dir->d_inode, old_dentry,
3225 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003226exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003227 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228exit5:
3229 dput(new_dentry);
3230exit4:
3231 dput(old_dentry);
3232exit3:
3233 unlock_rename(new_dir, old_dir);
3234exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003235 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003236 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003238 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003240exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003241 return error;
3242}
3243
Heiko Carstensa26eab22009-01-14 14:14:17 +01003244SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003245{
3246 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3247}
3248
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3250{
3251 int len;
3252
3253 len = PTR_ERR(link);
3254 if (IS_ERR(link))
3255 goto out;
3256
3257 len = strlen(link);
3258 if (len > (unsigned) buflen)
3259 len = buflen;
3260 if (copy_to_user(buffer, link, len))
3261 len = -EFAULT;
3262out:
3263 return len;
3264}
3265
3266/*
3267 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3268 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3269 * using) it for any given inode is up to filesystem.
3270 */
3271int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3272{
3273 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003274 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003275 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003276
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003278 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003279 if (IS_ERR(cookie))
3280 return PTR_ERR(cookie);
3281
3282 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3283 if (dentry->d_inode->i_op->put_link)
3284 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3285 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286}
3287
3288int vfs_follow_link(struct nameidata *nd, const char *link)
3289{
3290 return __vfs_follow_link(nd, link);
3291}
3292
3293/* get the link contents into pagecache */
3294static char *page_getlink(struct dentry * dentry, struct page **ppage)
3295{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003296 char *kaddr;
3297 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003299 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003301 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003303 kaddr = kmap(page);
3304 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3305 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306}
3307
3308int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3309{
3310 struct page *page = NULL;
3311 char *s = page_getlink(dentry, &page);
3312 int res = vfs_readlink(dentry,buffer,buflen,s);
3313 if (page) {
3314 kunmap(page);
3315 page_cache_release(page);
3316 }
3317 return res;
3318}
3319
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003320void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003322 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003324 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325}
3326
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003327void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003329 struct page *page = cookie;
3330
3331 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 kunmap(page);
3333 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334 }
3335}
3336
Nick Piggin54566b22009-01-04 12:00:53 -08003337/*
3338 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3339 */
3340int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341{
3342 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003343 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003344 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003345 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003347 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3348 if (nofs)
3349 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350
NeilBrown7e53cac2006-03-25 03:07:57 -08003351retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003352 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003353 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003355 goto fail;
3356
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357 kaddr = kmap_atomic(page, KM_USER0);
3358 memcpy(kaddr, symname, len-1);
3359 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07003360
3361 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3362 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 if (err < 0)
3364 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003365 if (err < len-1)
3366 goto retry;
3367
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 mark_inode_dirty(inode);
3369 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370fail:
3371 return err;
3372}
3373
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003374int page_symlink(struct inode *inode, const char *symname, int len)
3375{
3376 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003377 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003378}
3379
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003380const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381 .readlink = generic_readlink,
3382 .follow_link = page_follow_link_light,
3383 .put_link = page_put_link,
3384};
3385
Al Viro2d8f3032008-07-22 09:59:21 -04003386EXPORT_SYMBOL(user_path_at);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387EXPORT_SYMBOL(follow_down);
3388EXPORT_SYMBOL(follow_up);
3389EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3390EXPORT_SYMBOL(getname);
3391EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392EXPORT_SYMBOL(lookup_one_len);
3393EXPORT_SYMBOL(page_follow_link_light);
3394EXPORT_SYMBOL(page_put_link);
3395EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003396EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397EXPORT_SYMBOL(page_symlink);
3398EXPORT_SYMBOL(page_symlink_inode_operations);
3399EXPORT_SYMBOL(path_lookup);
Al Virod1811462008-08-02 00:49:18 -04003400EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003401EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003402EXPORT_SYMBOL(inode_permission);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -08003403EXPORT_SYMBOL(file_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404EXPORT_SYMBOL(unlock_rename);
3405EXPORT_SYMBOL(vfs_create);
3406EXPORT_SYMBOL(vfs_follow_link);
3407EXPORT_SYMBOL(vfs_link);
3408EXPORT_SYMBOL(vfs_mkdir);
3409EXPORT_SYMBOL(vfs_mknod);
3410EXPORT_SYMBOL(generic_permission);
3411EXPORT_SYMBOL(vfs_readlink);
3412EXPORT_SYMBOL(vfs_rename);
3413EXPORT_SYMBOL(vfs_rmdir);
3414EXPORT_SYMBOL(vfs_symlink);
3415EXPORT_SYMBOL(vfs_unlink);
3416EXPORT_SYMBOL(dentry_unhash);
3417EXPORT_SYMBOL(generic_readlink);