blob: 8d3f15b3a54167171bd0e2ec06103c60d5099f45 [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
Ian Kentbcdc5e02006-09-27 01:50:44 -0700566static inline struct dentry *
567do_revalidate(struct dentry *dentry, struct nameidata *nd)
568{
569 int status = dentry->d_op->d_revalidate(dentry, nd);
570 if (unlikely(status <= 0)) {
571 /*
572 * The dentry failed validation.
573 * If d_revalidate returned 0 attempt to invalidate
574 * the dentry otherwise d_revalidate is asking us
575 * to return a fail status.
576 */
577 if (!status) {
578 if (!d_invalidate(dentry)) {
579 dput(dentry);
580 dentry = NULL;
581 }
582 } else {
583 dput(dentry);
584 dentry = ERR_PTR(status);
585 }
586 }
587 return dentry;
588}
589
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590/*
Jeff Layton39159de2009-12-07 12:01:50 -0500591 * force_reval_path - force revalidation of a dentry
592 *
593 * In some situations the path walking code will trust dentries without
594 * revalidating them. This causes problems for filesystems that depend on
595 * d_revalidate to handle file opens (e.g. NFSv4). When FS_REVAL_DOT is set
596 * (which indicates that it's possible for the dentry to go stale), force
597 * a d_revalidate call before proceeding.
598 *
599 * Returns 0 if the revalidation was successful. If the revalidation fails,
600 * either return the error returned by d_revalidate or -ESTALE if the
601 * revalidation it just returned 0. If d_revalidate returns 0, we attempt to
602 * invalidate the dentry. It's up to the caller to handle putting references
603 * to the path if necessary.
604 */
605static int
606force_reval_path(struct path *path, struct nameidata *nd)
607{
608 int status;
609 struct dentry *dentry = path->dentry;
610
611 /*
612 * only check on filesystems where it's possible for the dentry to
613 * become stale. It's assumed that if this flag is set then the
614 * d_revalidate op will also be defined.
615 */
616 if (!(dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT))
617 return 0;
618
619 status = dentry->d_op->d_revalidate(dentry, nd);
620 if (status > 0)
621 return 0;
622
623 if (!status) {
624 d_invalidate(dentry);
625 status = -ESTALE;
626 }
627 return status;
628}
629
630/*
Al Virob75b5082009-12-16 01:01:38 -0500631 * Short-cut version of permission(), for calling on directories
632 * during pathname resolution. Combines parts of permission()
633 * and generic_permission(), and tests ONLY for MAY_EXEC permission.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 *
635 * If appropriate, check DAC only. If not appropriate, or
Al Virob75b5082009-12-16 01:01:38 -0500636 * short-cut DAC fails, then call ->permission() to do more
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 * complete permission check.
638 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100639static inline int __exec_permission(struct inode *inode, int rcu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700641 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700643 if (inode->i_op->permission) {
Nick Piggin31e6b012011-01-07 17:49:52 +1100644 if (rcu)
645 return -ECHILD;
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700646 ret = inode->i_op->permission(inode, MAY_EXEC);
Linus Torvaldscb9179e2009-08-28 11:08:31 -0700647 if (!ret)
648 goto ok;
649 return ret;
650 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100651 ret = __acl_permission_check(inode, MAY_EXEC, inode->i_op->check_acl, rcu);
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700652 if (!ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 goto ok;
Nick Piggin31e6b012011-01-07 17:49:52 +1100654 if (rcu && ret == -ECHILD)
655 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Linus Torvaldsf1ac9f62009-08-28 10:53:56 -0700657 if (capable(CAP_DAC_OVERRIDE) || capable(CAP_DAC_READ_SEARCH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 goto ok;
659
Linus Torvalds5909ccaa2009-08-28 11:51:25 -0700660 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661ok:
Nick Piggin31e6b012011-01-07 17:49:52 +1100662 return security_inode_exec_permission(inode, rcu);
663}
664
665static int exec_permission(struct inode *inode)
666{
667 return __exec_permission(inode, 0);
668}
669
670static int exec_permission_rcu(struct inode *inode)
671{
672 return __exec_permission(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
Al Viro2a737872009-04-07 11:49:53 -0400675static __always_inline void set_root(struct nameidata *nd)
676{
Miklos Szeredif7ad3c62010-08-10 11:41:36 +0200677 if (!nd->root.mnt)
678 get_fs_root(current->fs, &nd->root);
Al Viro2a737872009-04-07 11:49:53 -0400679}
680
Al Viro6de88d72009-08-09 01:41:57 +0400681static int link_path_walk(const char *, struct nameidata *);
682
Nick Piggin31e6b012011-01-07 17:49:52 +1100683static __always_inline void set_root_rcu(struct nameidata *nd)
684{
685 if (!nd->root.mnt) {
686 struct fs_struct *fs = current->fs;
687 spin_lock(&fs->lock);
688 nd->root = fs->root;
689 spin_unlock(&fs->lock);
690 }
691}
692
Arjan van de Venf1662352006-01-14 13:21:31 -0800693static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Nick Piggin31e6b012011-01-07 17:49:52 +1100695 int ret;
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 if (IS_ERR(link))
698 goto fail;
699
700 if (*link == '/') {
Al Viro2a737872009-04-07 11:49:53 -0400701 set_root(nd);
Jan Blunck1d957f92008-02-14 19:34:35 -0800702 path_put(&nd->path);
Al Viro2a737872009-04-07 11:49:53 -0400703 nd->path = nd->root;
704 path_get(&nd->root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100706 nd->inode = nd->path.dentry->d_inode;
Christoph Hellwigb4091d52008-11-05 15:07:21 +0100707
Nick Piggin31e6b012011-01-07 17:49:52 +1100708 ret = link_path_walk(link, nd);
709 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710fail:
Jan Blunck1d957f92008-02-14 19:34:35 -0800711 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return PTR_ERR(link);
713}
714
Jan Blunck1d957f92008-02-14 19:34:35 -0800715static void path_put_conditional(struct path *path, struct nameidata *nd)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700716{
717 dput(path->dentry);
Jan Blunck4ac91372008-02-14 19:34:32 -0800718 if (path->mnt != nd->path.mnt)
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700719 mntput(path->mnt);
720}
721
722static inline void path_to_nameidata(struct path *path, struct nameidata *nd)
723{
Nick Piggin31e6b012011-01-07 17:49:52 +1100724 if (!(nd->flags & LOOKUP_RCU)) {
725 dput(nd->path.dentry);
726 if (nd->path.mnt != path->mnt)
727 mntput(nd->path.mnt);
Huang Shijie9a229682010-04-02 17:37:13 +0800728 }
Nick Piggin31e6b012011-01-07 17:49:52 +1100729 nd->path.mnt = path->mnt;
Jan Blunck4ac91372008-02-14 19:34:32 -0800730 nd->path.dentry = path->dentry;
Miklos Szeredi09dd17d2005-09-06 15:18:21 -0700731}
732
Al Virodef4af32009-12-26 08:37:05 -0500733static __always_inline int
734__do_follow_link(struct path *path, struct nameidata *nd, void **p)
Ian Kent051d3812006-03-27 01:14:53 -0800735{
736 int error;
Ian Kent051d3812006-03-27 01:14:53 -0800737 struct dentry *dentry = path->dentry;
738
739 touch_atime(path->mnt, dentry);
740 nd_set_link(nd, NULL);
741
Jan Blunck4ac91372008-02-14 19:34:32 -0800742 if (path->mnt != nd->path.mnt) {
Ian Kent051d3812006-03-27 01:14:53 -0800743 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +1100744 nd->inode = nd->path.dentry->d_inode;
Ian Kent051d3812006-03-27 01:14:53 -0800745 dget(dentry);
746 }
747 mntget(path->mnt);
Nick Piggin31e6b012011-01-07 17:49:52 +1100748
Al Viro86acdca12009-12-22 23:45:11 -0500749 nd->last_type = LAST_BIND;
Al Virodef4af32009-12-26 08:37:05 -0500750 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
751 error = PTR_ERR(*p);
752 if (!IS_ERR(*p)) {
Ian Kent051d3812006-03-27 01:14:53 -0800753 char *s = nd_get_link(nd);
754 error = 0;
755 if (s)
756 error = __vfs_follow_link(nd, s);
Jeff Layton39159de2009-12-07 12:01:50 -0500757 else if (nd->last_type == LAST_BIND) {
758 error = force_reval_path(&nd->path, nd);
759 if (error)
760 path_put(&nd->path);
761 }
Ian Kent051d3812006-03-27 01:14:53 -0800762 }
Ian Kent051d3812006-03-27 01:14:53 -0800763 return error;
764}
765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766/*
767 * This limits recursive symlink follows to 8, while
768 * limiting consecutive symlinks to 40.
769 *
770 * Without that kind of total limit, nasty chains of consecutive
771 * symlinks can cause almost arbitrarily long lookups.
772 */
Al Viro90ebe562005-06-06 13:35:58 -0700773static inline int do_follow_link(struct path *path, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Al Virodef4af32009-12-26 08:37:05 -0500775 void *cookie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 int err = -ELOOP;
777 if (current->link_count >= MAX_NESTED_LINKS)
778 goto loop;
779 if (current->total_link_count >= 40)
780 goto loop;
781 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
782 cond_resched();
Al Viro90ebe562005-06-06 13:35:58 -0700783 err = security_inode_follow_link(path->dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (err)
785 goto loop;
786 current->link_count++;
787 current->total_link_count++;
788 nd->depth++;
Al Virodef4af32009-12-26 08:37:05 -0500789 err = __do_follow_link(path, nd, &cookie);
790 if (!IS_ERR(cookie) && path->dentry->d_inode->i_op->put_link)
791 path->dentry->d_inode->i_op->put_link(path->dentry, nd, cookie);
Al Viro258fa992009-08-09 01:32:02 +0400792 path_put(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 current->link_count--;
794 nd->depth--;
795 return err;
796loop:
Jan Blunck1d957f92008-02-14 19:34:35 -0800797 path_put_conditional(path, nd);
798 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 return err;
800}
801
Nick Piggin31e6b012011-01-07 17:49:52 +1100802static int follow_up_rcu(struct path *path)
803{
804 struct vfsmount *parent;
805 struct dentry *mountpoint;
806
807 parent = path->mnt->mnt_parent;
808 if (parent == path->mnt)
809 return 0;
810 mountpoint = path->mnt->mnt_mountpoint;
811 path->dentry = mountpoint;
812 path->mnt = parent;
813 return 1;
814}
815
Al Virobab77eb2009-04-18 03:26:48 -0400816int follow_up(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
818 struct vfsmount *parent;
819 struct dentry *mountpoint;
Nick Piggin99b7db72010-08-18 04:37:39 +1000820
821 br_read_lock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400822 parent = path->mnt->mnt_parent;
823 if (parent == path->mnt) {
Nick Piggin99b7db72010-08-18 04:37:39 +1000824 br_read_unlock(vfsmount_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 return 0;
826 }
827 mntget(parent);
Al Virobab77eb2009-04-18 03:26:48 -0400828 mountpoint = dget(path->mnt->mnt_mountpoint);
Nick Piggin99b7db72010-08-18 04:37:39 +1000829 br_read_unlock(vfsmount_lock);
Al Virobab77eb2009-04-18 03:26:48 -0400830 dput(path->dentry);
831 path->dentry = mountpoint;
832 mntput(path->mnt);
833 path->mnt = parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 return 1;
835}
836
Nick Pigginb5c84bf2011-01-07 17:49:38 +1100837/*
838 * serialization is taken care of in namespace.c
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 */
Nick Piggin31e6b012011-01-07 17:49:52 +1100840static void __follow_mount_rcu(struct nameidata *nd, struct path *path,
841 struct inode **inode)
842{
843 while (d_mountpoint(path->dentry)) {
844 struct vfsmount *mounted;
845 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
846 if (!mounted)
847 return;
848 path->mnt = mounted;
849 path->dentry = mounted->mnt_root;
850 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
851 *inode = path->dentry->d_inode;
852 }
853}
854
Al Viro463ffb22005-06-06 13:36:05 -0700855static int __follow_mount(struct path *path)
856{
857 int res = 0;
858 while (d_mountpoint(path->dentry)) {
Al Viro1c755af2009-04-18 14:06:57 -0400859 struct vfsmount *mounted = lookup_mnt(path);
Al Viro463ffb22005-06-06 13:36:05 -0700860 if (!mounted)
861 break;
862 dput(path->dentry);
863 if (res)
864 mntput(path->mnt);
865 path->mnt = mounted;
866 path->dentry = dget(mounted->mnt_root);
867 res = 1;
868 }
869 return res;
870}
871
Al Viro79ed0222009-04-18 13:59:41 -0400872static void follow_mount(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Al Viro79ed0222009-04-18 13:59:41 -0400874 while (d_mountpoint(path->dentry)) {
Al Viro1c755af2009-04-18 14:06:57 -0400875 struct vfsmount *mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 if (!mounted)
877 break;
Al Viro79ed0222009-04-18 13:59:41 -0400878 dput(path->dentry);
879 mntput(path->mnt);
880 path->mnt = mounted;
881 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
884
Al Viro9393bd02009-04-18 13:58:15 -0400885int follow_down(struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
887 struct vfsmount *mounted;
888
Al Viro1c755af2009-04-18 14:06:57 -0400889 mounted = lookup_mnt(path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (mounted) {
Al Viro9393bd02009-04-18 13:58:15 -0400891 dput(path->dentry);
892 mntput(path->mnt);
893 path->mnt = mounted;
894 path->dentry = dget(mounted->mnt_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 return 1;
896 }
897 return 0;
898}
899
Nick Piggin31e6b012011-01-07 17:49:52 +1100900static int follow_dotdot_rcu(struct nameidata *nd)
901{
902 struct inode *inode = nd->inode;
903
904 set_root_rcu(nd);
905
906 while(1) {
907 if (nd->path.dentry == nd->root.dentry &&
908 nd->path.mnt == nd->root.mnt) {
909 break;
910 }
911 if (nd->path.dentry != nd->path.mnt->mnt_root) {
912 struct dentry *old = nd->path.dentry;
913 struct dentry *parent = old->d_parent;
914 unsigned seq;
915
916 seq = read_seqcount_begin(&parent->d_seq);
917 if (read_seqcount_retry(&old->d_seq, nd->seq))
918 return -ECHILD;
919 inode = parent->d_inode;
920 nd->path.dentry = parent;
921 nd->seq = seq;
922 break;
923 }
924 if (!follow_up_rcu(&nd->path))
925 break;
926 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
927 inode = nd->path.dentry->d_inode;
928 }
929 __follow_mount_rcu(nd, &nd->path, &inode);
930 nd->inode = inode;
931
932 return 0;
933}
934
935static void follow_dotdot(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Al Viro2a737872009-04-07 11:49:53 -0400937 set_root(nd);
Andreas Mohre518ddb2006-09-29 02:01:22 -0700938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 while(1) {
Jan Blunck4ac91372008-02-14 19:34:32 -0800940 struct dentry *old = nd->path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Al Viro2a737872009-04-07 11:49:53 -0400942 if (nd->path.dentry == nd->root.dentry &&
943 nd->path.mnt == nd->root.mnt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 break;
945 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800946 if (nd->path.dentry != nd->path.mnt->mnt_root) {
Al Viro3088dd72010-01-30 15:47:29 -0500947 /* rare case of legitimate dget_parent()... */
948 nd->path.dentry = dget_parent(nd->path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 dput(old);
950 break;
951 }
Al Viro3088dd72010-01-30 15:47:29 -0500952 if (!follow_up(&nd->path))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 }
Al Viro79ed0222009-04-18 13:59:41 -0400955 follow_mount(&nd->path);
Nick Piggin31e6b012011-01-07 17:49:52 +1100956 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957}
958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959/*
Nick Pigginbaa03892010-08-18 04:37:31 +1000960 * Allocate a dentry with name and parent, and perform a parent
961 * directory ->lookup on it. Returns the new dentry, or ERR_PTR
962 * on error. parent->d_inode->i_mutex must be held. d_lookup must
963 * have verified that no child exists while under i_mutex.
964 */
965static struct dentry *d_alloc_and_lookup(struct dentry *parent,
966 struct qstr *name, struct nameidata *nd)
967{
968 struct inode *inode = parent->d_inode;
969 struct dentry *dentry;
970 struct dentry *old;
971
972 /* Don't create child dentry for a dead directory. */
973 if (unlikely(IS_DEADDIR(inode)))
974 return ERR_PTR(-ENOENT);
975
976 dentry = d_alloc(parent, name);
977 if (unlikely(!dentry))
978 return ERR_PTR(-ENOMEM);
979
980 old = inode->i_op->lookup(inode, dentry, nd);
981 if (unlikely(old)) {
982 dput(dentry);
983 dentry = old;
984 }
985 return dentry;
986}
987
988/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 * It's more convoluted than I'd like it to be, but... it's still fairly
990 * small and for now I'd prefer to have fast path as straight as possible.
991 * It _is_ time-critical.
992 */
993static int do_lookup(struct nameidata *nd, struct qstr *name,
Nick Piggin31e6b012011-01-07 17:49:52 +1100994 struct path *path, struct inode **inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995{
Jan Blunck4ac91372008-02-14 19:34:32 -0800996 struct vfsmount *mnt = nd->path.mnt;
Nick Piggin31e6b012011-01-07 17:49:52 +1100997 struct dentry *dentry, *parent = nd->path.dentry;
Al Viro6e6b1bd2009-08-13 23:38:37 +0400998 struct inode *dir;
Al Viro3cac2602009-08-13 18:27:43 +0400999 /*
1000 * See if the low-level filesystem might want
1001 * to use its own hash..
1002 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001003 if (parent->d_op && parent->d_op->d_hash) {
1004 int err = parent->d_op->d_hash(parent, nd->inode, name);
Al Viro3cac2602009-08-13 18:27:43 +04001005 if (err < 0)
1006 return err;
1007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
Nick Pigginb04f7842010-08-18 04:37:34 +10001009 /*
1010 * Rename seqlock is not required here because in the off chance
1011 * of a false negative due to a concurrent rename, we're going to
1012 * do the non-racy lookup, below.
1013 */
Nick Piggin31e6b012011-01-07 17:49:52 +11001014 if (nd->flags & LOOKUP_RCU) {
1015 unsigned seq;
1016
1017 *inode = nd->inode;
1018 dentry = __d_lookup_rcu(parent, name, &seq, inode);
1019 if (!dentry) {
1020 if (nameidata_drop_rcu(nd))
1021 return -ECHILD;
1022 goto need_lookup;
1023 }
1024 /* Memory barrier in read_seqcount_begin of child is enough */
1025 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1026 return -ECHILD;
1027
1028 nd->seq = seq;
1029 if (dentry->d_op && dentry->d_op->d_revalidate) {
1030 /* We commonly drop rcu-walk here */
1031 if (nameidata_dentry_drop_rcu(nd, dentry))
1032 return -ECHILD;
1033 goto need_revalidate;
1034 }
1035 path->mnt = mnt;
1036 path->dentry = dentry;
1037 __follow_mount_rcu(nd, path, inode);
1038 } else {
1039 dentry = __d_lookup(parent, name);
1040 if (!dentry)
1041 goto need_lookup;
Nick Piggin2e2e88e2010-08-18 04:37:30 +10001042found:
Nick Piggin31e6b012011-01-07 17:49:52 +11001043 if (dentry->d_op && dentry->d_op->d_revalidate)
1044 goto need_revalidate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045done:
Nick Piggin31e6b012011-01-07 17:49:52 +11001046 path->mnt = mnt;
1047 path->dentry = dentry;
1048 __follow_mount(path);
1049 *inode = path->dentry->d_inode;
1050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 return 0;
1052
1053need_lookup:
Al Viro6e6b1bd2009-08-13 23:38:37 +04001054 dir = parent->d_inode;
Nick Piggin31e6b012011-01-07 17:49:52 +11001055 BUG_ON(nd->inode != dir);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001056
1057 mutex_lock(&dir->i_mutex);
1058 /*
1059 * First re-do the cached lookup just in case it was created
Nick Pigginb04f7842010-08-18 04:37:34 +10001060 * while we waited for the directory semaphore, or the first
1061 * lookup failed due to an unrelated rename.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001062 *
Nick Pigginb04f7842010-08-18 04:37:34 +10001063 * This could use version numbering or similar to avoid unnecessary
1064 * cache lookups, but then we'd have to do the first lookup in the
1065 * non-racy way. However in the common case here, everything should
1066 * be hot in cache, so would it be a big win?
Al Viro6e6b1bd2009-08-13 23:38:37 +04001067 */
1068 dentry = d_lookup(parent, name);
Nick Pigginbaa03892010-08-18 04:37:31 +10001069 if (likely(!dentry)) {
1070 dentry = d_alloc_and_lookup(parent, name, nd);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001071 mutex_unlock(&dir->i_mutex);
1072 if (IS_ERR(dentry))
1073 goto fail;
1074 goto done;
1075 }
Al Viro6e6b1bd2009-08-13 23:38:37 +04001076 /*
1077 * Uhhuh! Nasty case: the cache was re-populated while
1078 * we waited on the semaphore. Need to revalidate.
1079 */
1080 mutex_unlock(&dir->i_mutex);
Nick Piggin2e2e88e2010-08-18 04:37:30 +10001081 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082
1083need_revalidate:
Ian Kentbcdc5e02006-09-27 01:50:44 -07001084 dentry = do_revalidate(dentry, nd);
1085 if (!dentry)
1086 goto need_lookup;
1087 if (IS_ERR(dentry))
1088 goto fail;
1089 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090
1091fail:
1092 return PTR_ERR(dentry);
1093}
1094
1095/*
Al Viroac278a92010-02-16 18:09:36 +00001096 * This is a temporary kludge to deal with "automount" symlinks; proper
1097 * solution is to trigger them on follow_mount(), so that do_lookup()
1098 * would DTRT. To be killed before 2.6.34-final.
1099 */
1100static inline int follow_on_final(struct inode *inode, unsigned lookup_flags)
1101{
1102 return inode && unlikely(inode->i_op->follow_link) &&
1103 ((lookup_flags & LOOKUP_FOLLOW) || S_ISDIR(inode->i_mode));
1104}
1105
1106/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 * Name resolution.
Prasanna Medaea3834d2005-04-29 16:00:17 +01001108 * This is the basic name resolution function, turning a pathname into
1109 * the final dentry. We expect 'base' to be positive and a directory.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 *
Prasanna Medaea3834d2005-04-29 16:00:17 +01001111 * Returns 0 and nd will have valid dentry and mnt on success.
1112 * Returns error and drops reference to input namei data on failure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 */
Al Viro6de88d72009-08-09 01:41:57 +04001114static int link_path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115{
1116 struct path next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 int err;
1118 unsigned int lookup_flags = nd->flags;
1119
1120 while (*name=='/')
1121 name++;
1122 if (!*name)
1123 goto return_reval;
1124
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (nd->depth)
Trond Myklebustf55eab82006-02-04 23:28:01 -08001126 lookup_flags = LOOKUP_FOLLOW | (nd->flags & LOOKUP_CONTINUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
1128 /* At this point we know we have a real path component. */
1129 for(;;) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001130 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 unsigned long hash;
1132 struct qstr this;
1133 unsigned int c;
1134
Trond Myklebustcdce5d62005-10-18 14:20:18 -07001135 nd->flags |= LOOKUP_CONTINUE;
Nick Piggin31e6b012011-01-07 17:49:52 +11001136 if (nd->flags & LOOKUP_RCU) {
1137 err = exec_permission_rcu(nd->inode);
1138 if (err == -ECHILD) {
1139 if (nameidata_drop_rcu(nd))
1140 return -ECHILD;
1141 goto exec_again;
1142 }
1143 } else {
1144exec_again:
1145 err = exec_permission(nd->inode);
1146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if (err)
1148 break;
1149
1150 this.name = name;
1151 c = *(const unsigned char *)name;
1152
1153 hash = init_name_hash();
1154 do {
1155 name++;
1156 hash = partial_name_hash(c, hash);
1157 c = *(const unsigned char *)name;
1158 } while (c && (c != '/'));
1159 this.len = name - (const char *) this.name;
1160 this.hash = end_name_hash(hash);
1161
1162 /* remove trailing slashes? */
1163 if (!c)
1164 goto last_component;
1165 while (*++name == '/');
1166 if (!*name)
1167 goto last_with_slashes;
1168
1169 /*
1170 * "." and ".." are special - ".." especially so because it has
1171 * to be able to know about the current root directory and
1172 * parent relationships.
1173 */
1174 if (this.name[0] == '.') switch (this.len) {
1175 default:
1176 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001177 case 2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 if (this.name[1] != '.')
1179 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001180 if (nd->flags & LOOKUP_RCU) {
1181 if (follow_dotdot_rcu(nd))
1182 return -ECHILD;
1183 } else
1184 follow_dotdot(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 /* fallthrough */
1186 case 1:
1187 continue;
1188 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 /* This does the actual lookups.. */
Nick Piggin31e6b012011-01-07 17:49:52 +11001190 err = do_lookup(nd, &this, &next, &inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 if (err)
1192 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 err = -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (!inode)
1195 goto out_dput;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
1197 if (inode->i_op->follow_link) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001198 /* We commonly drop rcu-walk here */
1199 if (nameidata_dentry_drop_rcu_maybe(nd, next.dentry))
1200 return -ECHILD;
1201 BUG_ON(inode != next.dentry->d_inode);
Al Viro90ebe562005-06-06 13:35:58 -07001202 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (err)
1204 goto return_err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001205 nd->inode = nd->path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 err = -ENOENT;
Nick Piggin31e6b012011-01-07 17:49:52 +11001207 if (!nd->inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001209 } else {
Miklos Szeredi09dd17d2005-09-06 15:18:21 -07001210 path_to_nameidata(&next, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001211 nd->inode = inode;
1212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001214 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 break;
1216 continue;
1217 /* here ends the main loop */
1218
1219last_with_slashes:
1220 lookup_flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1221last_component:
Trond Myklebustf55eab82006-02-04 23:28:01 -08001222 /* Clear LOOKUP_CONTINUE iff it was previously unset */
1223 nd->flags &= lookup_flags | ~LOOKUP_CONTINUE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (lookup_flags & LOOKUP_PARENT)
1225 goto lookup_parent;
1226 if (this.name[0] == '.') switch (this.len) {
1227 default:
1228 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001229 case 2:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 if (this.name[1] != '.')
1231 break;
Nick Piggin31e6b012011-01-07 17:49:52 +11001232 if (nd->flags & LOOKUP_RCU) {
1233 if (follow_dotdot_rcu(nd))
1234 return -ECHILD;
1235 } else
1236 follow_dotdot(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 /* fallthrough */
1238 case 1:
1239 goto return_reval;
1240 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001241 err = do_lookup(nd, &this, &next, &inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 if (err)
1243 break;
Al Viroac278a92010-02-16 18:09:36 +00001244 if (follow_on_final(inode, lookup_flags)) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001245 if (nameidata_dentry_drop_rcu_maybe(nd, next.dentry))
1246 return -ECHILD;
1247 BUG_ON(inode != next.dentry->d_inode);
Al Viro90ebe562005-06-06 13:35:58 -07001248 err = do_follow_link(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 if (err)
1250 goto return_err;
Nick Piggin31e6b012011-01-07 17:49:52 +11001251 nd->inode = nd->path.dentry->d_inode;
1252 } else {
Miklos Szeredi09dd17d2005-09-06 15:18:21 -07001253 path_to_nameidata(&next, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11001254 nd->inode = inode;
1255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 err = -ENOENT;
Nick Piggin31e6b012011-01-07 17:49:52 +11001257 if (!nd->inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 break;
1259 if (lookup_flags & LOOKUP_DIRECTORY) {
1260 err = -ENOTDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11001261 if (!nd->inode->i_op->lookup)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 break;
1263 }
1264 goto return_base;
1265lookup_parent:
1266 nd->last = this;
1267 nd->last_type = LAST_NORM;
1268 if (this.name[0] != '.')
1269 goto return_base;
1270 if (this.len == 1)
1271 nd->last_type = LAST_DOT;
1272 else if (this.len == 2 && this.name[1] == '.')
1273 nd->last_type = LAST_DOTDOT;
1274 else
1275 goto return_base;
1276return_reval:
1277 /*
1278 * We bypassed the ordinary revalidation routines.
1279 * We may need to check the cached dentry for staleness.
1280 */
Jan Blunck4ac91372008-02-14 19:34:32 -08001281 if (nd->path.dentry && nd->path.dentry->d_sb &&
1282 (nd->path.dentry->d_sb->s_type->fs_flags & FS_REVAL_DOT)) {
Nick Piggin31e6b012011-01-07 17:49:52 +11001283 if (nameidata_drop_rcu_maybe(nd))
1284 return -ECHILD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 err = -ESTALE;
1286 /* Note: we do not d_invalidate() */
Jan Blunck4ac91372008-02-14 19:34:32 -08001287 if (!nd->path.dentry->d_op->d_revalidate(
1288 nd->path.dentry, nd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 break;
1290 }
1291return_base:
Nick Piggin31e6b012011-01-07 17:49:52 +11001292 if (nameidata_drop_rcu_last_maybe(nd))
1293 return -ECHILD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 return 0;
1295out_dput:
Nick Piggin31e6b012011-01-07 17:49:52 +11001296 if (!(nd->flags & LOOKUP_RCU))
1297 path_put_conditional(&next, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 break;
1299 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001300 if (!(nd->flags & LOOKUP_RCU))
1301 path_put(&nd->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302return_err:
1303 return err;
1304}
1305
Nick Piggin31e6b012011-01-07 17:49:52 +11001306static inline int path_walk_rcu(const char *name, struct nameidata *nd)
1307{
1308 current->total_link_count = 0;
1309
1310 return link_path_walk(name, nd);
1311}
1312
1313static inline int path_walk_simple(const char *name, struct nameidata *nd)
1314{
1315 current->total_link_count = 0;
1316
1317 return link_path_walk(name, nd);
1318}
1319
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001320static int path_walk(const char *name, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321{
Al Viro6de88d72009-08-09 01:41:57 +04001322 struct path save = nd->path;
1323 int result;
1324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 current->total_link_count = 0;
Al Viro6de88d72009-08-09 01:41:57 +04001326
1327 /* make sure the stuff we saved doesn't go away */
1328 path_get(&save);
1329
1330 result = link_path_walk(name, nd);
1331 if (result == -ESTALE) {
1332 /* nd->path had been dropped */
1333 current->total_link_count = 0;
1334 nd->path = save;
1335 path_get(&nd->path);
1336 nd->flags |= LOOKUP_REVAL;
1337 result = link_path_walk(name, nd);
1338 }
1339
1340 path_put(&save);
1341
1342 return result;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343}
1344
Nick Piggin31e6b012011-01-07 17:49:52 +11001345static void path_finish_rcu(struct nameidata *nd)
1346{
1347 if (nd->flags & LOOKUP_RCU) {
1348 /* RCU dangling. Cancel it. */
1349 nd->flags &= ~LOOKUP_RCU;
1350 nd->root.mnt = NULL;
1351 rcu_read_unlock();
1352 br_read_unlock(vfsmount_lock);
1353 }
1354 if (nd->file)
1355 fput(nd->file);
1356}
1357
1358static int path_init_rcu(int dfd, const char *name, unsigned int flags, struct nameidata *nd)
1359{
1360 int retval = 0;
1361 int fput_needed;
1362 struct file *file;
1363
1364 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1365 nd->flags = flags | LOOKUP_RCU;
1366 nd->depth = 0;
1367 nd->root.mnt = NULL;
1368 nd->file = NULL;
1369
1370 if (*name=='/') {
1371 struct fs_struct *fs = current->fs;
1372
1373 br_read_lock(vfsmount_lock);
1374 rcu_read_lock();
1375
1376 spin_lock(&fs->lock);
1377 nd->root = fs->root;
1378 nd->path = nd->root;
1379 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1380 spin_unlock(&fs->lock);
1381
1382 } else if (dfd == AT_FDCWD) {
1383 struct fs_struct *fs = current->fs;
1384
1385 br_read_lock(vfsmount_lock);
1386 rcu_read_lock();
1387
1388 spin_lock(&fs->lock);
1389 nd->path = fs->pwd;
1390 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1391 spin_unlock(&fs->lock);
1392 } else {
1393 struct dentry *dentry;
1394
1395 file = fget_light(dfd, &fput_needed);
1396 retval = -EBADF;
1397 if (!file)
1398 goto out_fail;
1399
1400 dentry = file->f_path.dentry;
1401
1402 retval = -ENOTDIR;
1403 if (!S_ISDIR(dentry->d_inode->i_mode))
1404 goto fput_fail;
1405
1406 retval = file_permission(file, MAY_EXEC);
1407 if (retval)
1408 goto fput_fail;
1409
1410 nd->path = file->f_path;
1411 if (fput_needed)
1412 nd->file = file;
1413
1414 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1415 br_read_lock(vfsmount_lock);
1416 rcu_read_lock();
1417 }
1418 nd->inode = nd->path.dentry->d_inode;
1419 return 0;
1420
1421fput_fail:
1422 fput_light(file, fput_needed);
1423out_fail:
1424 return retval;
1425}
1426
Al Viro9b4a9b12009-04-07 11:44:16 -04001427static int path_init(int dfd, const char *name, unsigned int flags, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428{
Prasanna Medaea3834d2005-04-29 16:00:17 +01001429 int retval = 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001430 int fput_needed;
1431 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
1433 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1434 nd->flags = flags;
1435 nd->depth = 0;
Al Viro2a737872009-04-07 11:49:53 -04001436 nd->root.mnt = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 if (*name=='/') {
Al Viro2a737872009-04-07 11:49:53 -04001439 set_root(nd);
1440 nd->path = nd->root;
1441 path_get(&nd->root);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001442 } else if (dfd == AT_FDCWD) {
Miklos Szeredif7ad3c62010-08-10 11:41:36 +02001443 get_fs_pwd(current->fs, &nd->path);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001444 } else {
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001445 struct dentry *dentry;
1446
1447 file = fget_light(dfd, &fput_needed);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001448 retval = -EBADF;
1449 if (!file)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001450 goto out_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001451
Josef "Jeff" Sipek0f7fc9e2006-12-08 02:36:35 -08001452 dentry = file->f_path.dentry;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001453
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001454 retval = -ENOTDIR;
1455 if (!S_ISDIR(dentry->d_inode->i_mode))
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001456 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001457
1458 retval = file_permission(file, MAY_EXEC);
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001459 if (retval)
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001460 goto fput_fail;
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001461
Jan Blunck5dd784d2008-02-14 19:34:38 -08001462 nd->path = file->f_path;
1463 path_get(&file->f_path);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001464
1465 fput_light(file, fput_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001467 nd->inode = nd->path.dentry->d_inode;
Al Viro9b4a9b12009-04-07 11:44:16 -04001468 return 0;
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001469
Trond Myklebust6d09bb62006-06-04 02:51:37 -07001470fput_fail:
Ulrich Drepper170aa3d2006-02-04 23:28:02 -08001471 fput_light(file, fput_needed);
Al Viro9b4a9b12009-04-07 11:44:16 -04001472out_fail:
1473 return retval;
1474}
1475
1476/* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
1477static int do_path_lookup(int dfd, const char *name,
1478 unsigned int flags, struct nameidata *nd)
1479{
Nick Piggin31e6b012011-01-07 17:49:52 +11001480 int retval;
1481
1482 /*
1483 * Path walking is largely split up into 2 different synchronisation
1484 * schemes, rcu-walk and ref-walk (explained in
1485 * Documentation/filesystems/path-lookup.txt). These share much of the
1486 * path walk code, but some things particularly setup, cleanup, and
1487 * following mounts are sufficiently divergent that functions are
1488 * duplicated. Typically there is a function foo(), and its RCU
1489 * analogue, foo_rcu().
1490 *
1491 * -ECHILD is the error number of choice (just to avoid clashes) that
1492 * is returned if some aspect of an rcu-walk fails. Such an error must
1493 * be handled by restarting a traditional ref-walk (which will always
1494 * be able to complete).
1495 */
1496 retval = path_init_rcu(dfd, name, flags, nd);
1497 if (unlikely(retval))
1498 return retval;
1499 retval = path_walk_rcu(name, nd);
1500 path_finish_rcu(nd);
Al Viro2a737872009-04-07 11:49:53 -04001501 if (nd->root.mnt) {
1502 path_put(&nd->root);
1503 nd->root.mnt = NULL;
1504 }
Nick Piggin31e6b012011-01-07 17:49:52 +11001505
1506 if (unlikely(retval == -ECHILD || retval == -ESTALE)) {
1507 /* slower, locked walk */
1508 if (retval == -ESTALE)
1509 flags |= LOOKUP_REVAL;
1510 retval = path_init(dfd, name, flags, nd);
1511 if (unlikely(retval))
1512 return retval;
1513 retval = path_walk(name, nd);
1514 if (nd->root.mnt) {
1515 path_put(&nd->root);
1516 nd->root.mnt = NULL;
1517 }
1518 }
1519
1520 if (likely(!retval)) {
1521 if (unlikely(!audit_dummy_context())) {
1522 if (nd->path.dentry && nd->inode)
1523 audit_inode(name, nd->path.dentry);
1524 }
1525 }
1526
Al Viro9b4a9b12009-04-07 11:44:16 -04001527 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528}
1529
Harvey Harrisonfc9b52c2008-02-08 04:19:52 -08001530int path_lookup(const char *name, unsigned int flags,
Ulrich Drepper5590ff02006-01-18 17:43:53 -08001531 struct nameidata *nd)
1532{
1533 return do_path_lookup(AT_FDCWD, name, flags, nd);
1534}
1535
Al Virod1811462008-08-02 00:49:18 -04001536int kern_path(const char *name, unsigned int flags, struct path *path)
1537{
1538 struct nameidata nd;
1539 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
1540 if (!res)
1541 *path = nd.path;
1542 return res;
1543}
1544
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001545/**
1546 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
1547 * @dentry: pointer to dentry of the base directory
1548 * @mnt: pointer to vfs mount of the base directory
1549 * @name: pointer to file name
1550 * @flags: lookup flags
1551 * @nd: pointer to nameidata
1552 */
1553int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
1554 const char *name, unsigned int flags,
1555 struct nameidata *nd)
1556{
1557 int retval;
1558
1559 /* same as do_path_lookup */
1560 nd->last_type = LAST_ROOT;
1561 nd->flags = flags;
1562 nd->depth = 0;
1563
Jan Blunckc8e7f442008-06-09 16:40:35 -07001564 nd->path.dentry = dentry;
1565 nd->path.mnt = mnt;
1566 path_get(&nd->path);
Al Viro5b857112009-04-07 11:53:49 -04001567 nd->root = nd->path;
1568 path_get(&nd->root);
Nick Piggin31e6b012011-01-07 17:49:52 +11001569 nd->inode = nd->path.dentry->d_inode;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001570
1571 retval = path_walk(name, nd);
Jan Blunck4ac91372008-02-14 19:34:32 -08001572 if (unlikely(!retval && !audit_dummy_context() && nd->path.dentry &&
Nick Piggin31e6b012011-01-07 17:49:52 +11001573 nd->inode))
Jan Blunck4ac91372008-02-14 19:34:32 -08001574 audit_inode(name, nd->path.dentry);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001575
Al Viro5b857112009-04-07 11:53:49 -04001576 path_put(&nd->root);
1577 nd->root.mnt = NULL;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001578
Al Viro2a737872009-04-07 11:49:53 -04001579 return retval;
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07001580}
1581
Christoph Hellwigeead1912007-10-16 23:25:38 -07001582static struct dentry *__lookup_hash(struct qstr *name,
1583 struct dentry *base, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584{
Christoph Hellwig81fca442010-10-06 10:47:47 +02001585 struct inode *inode = base->d_inode;
James Morris057f6c02007-04-26 00:12:05 -07001586 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 int err;
1588
Christoph Hellwig81fca442010-10-06 10:47:47 +02001589 err = exec_permission(inode);
1590 if (err)
1591 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593 /*
1594 * See if the low-level filesystem might want
1595 * to use its own hash..
1596 */
1597 if (base->d_op && base->d_op->d_hash) {
Nick Pigginb1e6a012011-01-07 17:49:28 +11001598 err = base->d_op->d_hash(base, inode, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 dentry = ERR_PTR(err);
1600 if (err < 0)
1601 goto out;
1602 }
1603
Nick Pigginb04f7842010-08-18 04:37:34 +10001604 /*
1605 * Don't bother with __d_lookup: callers are for creat as
1606 * well as unlink, so a lot of the time it would cost
1607 * a double lookup.
Al Viro6e6b1bd2009-08-13 23:38:37 +04001608 */
Nick Pigginb04f7842010-08-18 04:37:34 +10001609 dentry = d_lookup(base, name);
Al Viro6e6b1bd2009-08-13 23:38:37 +04001610
1611 if (dentry && dentry->d_op && dentry->d_op->d_revalidate)
1612 dentry = do_revalidate(dentry, nd);
1613
Nick Pigginbaa03892010-08-18 04:37:31 +10001614 if (!dentry)
1615 dentry = d_alloc_and_lookup(base, name, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616out:
1617 return dentry;
1618}
1619
James Morris057f6c02007-04-26 00:12:05 -07001620/*
1621 * Restricted form of lookup. Doesn't follow links, single-component only,
1622 * needs parent already locked. Doesn't follow mounts.
1623 * SMP-safe.
1624 */
Adrian Bunka244e162006-03-31 02:32:11 -08001625static struct dentry *lookup_hash(struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626{
Jan Blunck4ac91372008-02-14 19:34:32 -08001627 return __lookup_hash(&nd->last, nd->path.dentry, nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628}
1629
Christoph Hellwigeead1912007-10-16 23:25:38 -07001630static int __lookup_one_len(const char *name, struct qstr *this,
1631 struct dentry *base, int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632{
1633 unsigned long hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 unsigned int c;
1635
James Morris057f6c02007-04-26 00:12:05 -07001636 this->name = name;
1637 this->len = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 if (!len)
James Morris057f6c02007-04-26 00:12:05 -07001639 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
1641 hash = init_name_hash();
1642 while (len--) {
1643 c = *(const unsigned char *)name++;
1644 if (c == '/' || c == '\0')
James Morris057f6c02007-04-26 00:12:05 -07001645 return -EACCES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 hash = partial_name_hash(c, hash);
1647 }
James Morris057f6c02007-04-26 00:12:05 -07001648 this->hash = end_name_hash(hash);
1649 return 0;
1650}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
Christoph Hellwigeead1912007-10-16 23:25:38 -07001652/**
Randy Dunlapa6b91912008-03-19 17:01:00 -07001653 * lookup_one_len - filesystem helper to lookup single pathname component
Christoph Hellwigeead1912007-10-16 23:25:38 -07001654 * @name: pathname component to lookup
1655 * @base: base directory to lookup from
1656 * @len: maximum length @len should be interpreted to
1657 *
Randy Dunlapa6b91912008-03-19 17:01:00 -07001658 * Note that this routine is purely a helper for filesystem usage and should
1659 * not be called by generic code. Also note that by using this function the
Christoph Hellwigeead1912007-10-16 23:25:38 -07001660 * nameidata argument is passed to the filesystem methods and a filesystem
1661 * using this helper needs to be prepared for that.
1662 */
James Morris057f6c02007-04-26 00:12:05 -07001663struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
1664{
1665 int err;
1666 struct qstr this;
1667
David Woodhouse2f9092e2009-04-20 23:18:37 +01001668 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
1669
James Morris057f6c02007-04-26 00:12:05 -07001670 err = __lookup_one_len(name, &this, base, len);
1671 if (err)
1672 return ERR_PTR(err);
Christoph Hellwigeead1912007-10-16 23:25:38 -07001673
Christoph Hellwig49705b72005-11-08 21:35:06 -08001674 return __lookup_hash(&this, base, NULL);
James Morris057f6c02007-04-26 00:12:05 -07001675}
1676
Al Viro2d8f3032008-07-22 09:59:21 -04001677int user_path_at(int dfd, const char __user *name, unsigned flags,
1678 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679{
Al Viro2d8f3032008-07-22 09:59:21 -04001680 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 char *tmp = getname(name);
1682 int err = PTR_ERR(tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (!IS_ERR(tmp)) {
Al Viro2d8f3032008-07-22 09:59:21 -04001684
1685 BUG_ON(flags & LOOKUP_PARENT);
1686
1687 err = do_path_lookup(dfd, tmp, flags, &nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 putname(tmp);
Al Viro2d8f3032008-07-22 09:59:21 -04001689 if (!err)
1690 *path = nd.path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 }
1692 return err;
1693}
1694
Al Viro2ad94ae2008-07-21 09:32:51 -04001695static int user_path_parent(int dfd, const char __user *path,
1696 struct nameidata *nd, char **name)
1697{
1698 char *s = getname(path);
1699 int error;
1700
1701 if (IS_ERR(s))
1702 return PTR_ERR(s);
1703
1704 error = do_path_lookup(dfd, s, LOOKUP_PARENT, nd);
1705 if (error)
1706 putname(s);
1707 else
1708 *name = s;
1709
1710 return error;
1711}
1712
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713/*
1714 * It's inline, so penalty for filesystems that don't use sticky bit is
1715 * minimal.
1716 */
1717static inline int check_sticky(struct inode *dir, struct inode *inode)
1718{
David Howellsda9592e2008-11-14 10:39:05 +11001719 uid_t fsuid = current_fsuid();
1720
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 if (!(dir->i_mode & S_ISVTX))
1722 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001723 if (inode->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 return 0;
David Howellsda9592e2008-11-14 10:39:05 +11001725 if (dir->i_uid == fsuid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 return 0;
1727 return !capable(CAP_FOWNER);
1728}
1729
1730/*
1731 * Check whether we can remove a link victim from directory dir, check
1732 * whether the type of victim is right.
1733 * 1. We can't do it if dir is read-only (done in permission())
1734 * 2. We should have write and exec permissions on dir
1735 * 3. We can't remove anything from append-only dir
1736 * 4. We can't do anything with immutable dir (done in permission())
1737 * 5. If the sticky bit on dir is set we should either
1738 * a. be owner of dir, or
1739 * b. be owner of victim, or
1740 * c. have CAP_FOWNER capability
1741 * 6. If the victim is append-only or immutable we can't do antyhing with
1742 * links pointing to it.
1743 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
1744 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
1745 * 9. We can't remove a root or mountpoint.
1746 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
1747 * nfs_async_unlink().
1748 */
Arjan van de Ven858119e2006-01-14 13:20:43 -08001749static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
1751 int error;
1752
1753 if (!victim->d_inode)
1754 return -ENOENT;
1755
1756 BUG_ON(victim->d_parent->d_inode != dir);
Al Virocccc6bb2009-12-25 05:07:33 -05001757 audit_inode_child(victim, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Al Virof419a2e2008-07-22 00:07:17 -04001759 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if (error)
1761 return error;
1762 if (IS_APPEND(dir))
1763 return -EPERM;
1764 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
Hugh Dickinsf9454542008-11-19 15:36:38 -08001765 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 return -EPERM;
1767 if (isdir) {
1768 if (!S_ISDIR(victim->d_inode->i_mode))
1769 return -ENOTDIR;
1770 if (IS_ROOT(victim))
1771 return -EBUSY;
1772 } else if (S_ISDIR(victim->d_inode->i_mode))
1773 return -EISDIR;
1774 if (IS_DEADDIR(dir))
1775 return -ENOENT;
1776 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
1777 return -EBUSY;
1778 return 0;
1779}
1780
1781/* Check whether we can create an object with dentry child in directory
1782 * dir.
1783 * 1. We can't do it if child already exists (open has special treatment for
1784 * this case, but since we are inlined it's OK)
1785 * 2. We can't do it if dir is read-only (done in permission())
1786 * 3. We should have write and exec permissions on dir
1787 * 4. We can't do it if dir is immutable (done in permission())
1788 */
Miklos Szeredia95164d2008-07-30 15:08:48 +02001789static inline int may_create(struct inode *dir, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790{
1791 if (child->d_inode)
1792 return -EEXIST;
1793 if (IS_DEADDIR(dir))
1794 return -ENOENT;
Al Virof419a2e2008-07-22 00:07:17 -04001795 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796}
1797
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798/*
1799 * p1 and p2 should be directories on the same fs.
1800 */
1801struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
1802{
1803 struct dentry *p;
1804
1805 if (p1 == p2) {
Ingo Molnarf2eace22006-07-03 00:25:05 -07001806 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 return NULL;
1808 }
1809
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001810 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001812 p = d_ancestor(p2, p1);
1813 if (p) {
1814 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
1815 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
1816 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
1818
OGAWA Hirofumie2761a12008-10-16 07:50:28 +09001819 p = d_ancestor(p1, p2);
1820 if (p) {
1821 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1822 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
1823 return p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 }
1825
Ingo Molnarf2eace22006-07-03 00:25:05 -07001826 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
1827 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return NULL;
1829}
1830
1831void unlock_rename(struct dentry *p1, struct dentry *p2)
1832{
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001833 mutex_unlock(&p1->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 if (p1 != p2) {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001835 mutex_unlock(&p2->d_inode->i_mutex);
Arjan van de Vena11f3a02006-03-23 03:00:33 -08001836 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 }
1838}
1839
1840int vfs_create(struct inode *dir, struct dentry *dentry, int mode,
1841 struct nameidata *nd)
1842{
Miklos Szeredia95164d2008-07-30 15:08:48 +02001843 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844
1845 if (error)
1846 return error;
1847
Al Viroacfa4382008-12-04 10:06:33 -05001848 if (!dir->i_op->create)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 return -EACCES; /* shouldn't it be ENOSYS? */
1850 mode &= S_IALLUGO;
1851 mode |= S_IFREG;
1852 error = security_inode_create(dir, dentry, mode);
1853 if (error)
1854 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 error = dir->i_op->create(dir, dentry, mode, nd);
Stephen Smalleya74574a2005-09-09 13:01:44 -07001856 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00001857 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 return error;
1859}
1860
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001861int may_open(struct path *path, int acc_mode, int flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862{
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001863 struct dentry *dentry = path->dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864 struct inode *inode = dentry->d_inode;
1865 int error;
1866
1867 if (!inode)
1868 return -ENOENT;
1869
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001870 switch (inode->i_mode & S_IFMT) {
1871 case S_IFLNK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872 return -ELOOP;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001873 case S_IFDIR:
1874 if (acc_mode & MAY_WRITE)
1875 return -EISDIR;
1876 break;
1877 case S_IFBLK:
1878 case S_IFCHR:
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001879 if (path->mnt->mnt_flags & MNT_NODEV)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 return -EACCES;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001881 /*FALLTHRU*/
1882 case S_IFIFO:
1883 case S_IFSOCK:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 flag &= ~O_TRUNC;
Christoph Hellwigc8fe8f32009-01-05 19:27:23 +01001885 break;
Dave Hansen4a3fd212008-02-15 14:37:48 -08001886 }
Dave Hansenb41572e2007-10-16 23:31:14 -07001887
Christoph Hellwig3fb64192008-10-24 09:58:10 +02001888 error = inode_permission(inode, acc_mode);
Dave Hansenb41572e2007-10-16 23:31:14 -07001889 if (error)
1890 return error;
Mimi Zohar6146f0d2009-02-04 09:06:57 -05001891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 /*
1893 * An append-only file must be opened in append mode for writing.
1894 */
1895 if (IS_APPEND(inode)) {
Al Viro8737c932009-12-24 06:47:55 -05001896 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
Al Viro7715b522009-12-16 03:54:00 -05001897 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 if (flag & O_TRUNC)
Al Viro7715b522009-12-16 03:54:00 -05001899 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 }
1901
1902 /* O_NOATIME can only be set by the owner or superuser */
Al Viro7715b522009-12-16 03:54:00 -05001903 if (flag & O_NOATIME && !is_owner_or_cap(inode))
1904 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905
1906 /*
1907 * Ensure there are no outstanding leases on the file.
1908 */
Al Virob65a9cf2009-12-16 06:27:40 -05001909 return break_lease(inode, flag);
Al Viro7715b522009-12-16 03:54:00 -05001910}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Al Viro7715b522009-12-16 03:54:00 -05001912static int handle_truncate(struct path *path)
1913{
1914 struct inode *inode = path->dentry->d_inode;
1915 int error = get_write_access(inode);
1916 if (error)
1917 return error;
1918 /*
1919 * Refuse to truncate files with mandatory locks held on them.
1920 */
1921 error = locks_verify_locked(inode);
1922 if (!error)
Tetsuo Handaea0d3ab2010-06-02 13:24:43 +09001923 error = security_path_truncate(path);
Al Viro7715b522009-12-16 03:54:00 -05001924 if (!error) {
1925 error = do_truncate(path->dentry, 0,
1926 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
1927 NULL);
1928 }
1929 put_write_access(inode);
Mimi Zoharacd0c932009-09-04 13:08:46 -04001930 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931}
1932
Dave Hansend57999e2008-02-15 14:37:27 -08001933/*
1934 * Be careful about ever adding any more callers of this
1935 * function. Its flags must be in the namei format, not
1936 * what get passed to sys_open().
1937 */
1938static int __open_namei_create(struct nameidata *nd, struct path *path,
Al Viro8737c932009-12-24 06:47:55 -05001939 int open_flag, int mode)
Dave Hansenaab520e2006-09-30 23:29:02 -07001940{
1941 int error;
Jan Blunck4ac91372008-02-14 19:34:32 -08001942 struct dentry *dir = nd->path.dentry;
Dave Hansenaab520e2006-09-30 23:29:02 -07001943
1944 if (!IS_POSIXACL(dir->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04001945 mode &= ~current_umask();
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001946 error = security_path_mknod(&nd->path, path->dentry, mode, 0);
1947 if (error)
1948 goto out_unlock;
Dave Hansenaab520e2006-09-30 23:29:02 -07001949 error = vfs_create(dir->d_inode, path->dentry, mode, nd);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09001950out_unlock:
Dave Hansenaab520e2006-09-30 23:29:02 -07001951 mutex_unlock(&dir->d_inode->i_mutex);
Jan Blunck4ac91372008-02-14 19:34:32 -08001952 dput(nd->path.dentry);
1953 nd->path.dentry = path->dentry;
Nick Piggin31e6b012011-01-07 17:49:52 +11001954
Dave Hansenaab520e2006-09-30 23:29:02 -07001955 if (error)
1956 return error;
1957 /* Don't check for write permission, don't truncate */
Al Viro8737c932009-12-24 06:47:55 -05001958 return may_open(&nd->path, 0, open_flag & ~O_TRUNC);
Dave Hansenaab520e2006-09-30 23:29:02 -07001959}
1960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961/*
Dave Hansend57999e2008-02-15 14:37:27 -08001962 * Note that while the flag value (low two bits) for sys_open means:
1963 * 00 - read-only
1964 * 01 - write-only
1965 * 10 - read-write
1966 * 11 - special
1967 * it is changed into
1968 * 00 - no permissions needed
1969 * 01 - read-permission
1970 * 10 - write-permission
1971 * 11 - read-write
1972 * for the internal routines (ie open_namei()/follow_link() etc)
1973 * This is more logical, and also allows the 00 "no perm needed"
1974 * to be used for symlinks (where the permissions are checked
1975 * later).
1976 *
1977*/
1978static inline int open_to_namei_flags(int flag)
1979{
1980 if ((flag+1) & O_ACCMODE)
1981 flag++;
1982 return flag;
1983}
1984
Al Viro7715b522009-12-16 03:54:00 -05001985static int open_will_truncate(int flag, struct inode *inode)
Dave Hansen4a3fd212008-02-15 14:37:48 -08001986{
1987 /*
1988 * We'll never write to the fs underlying
1989 * a device file.
1990 */
1991 if (special_file(inode->i_mode))
1992 return 0;
1993 return (flag & O_TRUNC);
1994}
1995
Al Viro648fa862009-12-24 01:26:48 -05001996static struct file *finish_open(struct nameidata *nd,
Al Viro9a661792009-12-24 06:49:47 -05001997 int open_flag, int acc_mode)
Al Viro648fa862009-12-24 01:26:48 -05001998{
1999 struct file *filp;
2000 int will_truncate;
2001 int error;
2002
Al Viro9a661792009-12-24 06:49:47 -05002003 will_truncate = open_will_truncate(open_flag, nd->path.dentry->d_inode);
Al Viro648fa862009-12-24 01:26:48 -05002004 if (will_truncate) {
2005 error = mnt_want_write(nd->path.mnt);
2006 if (error)
2007 goto exit;
2008 }
2009 error = may_open(&nd->path, acc_mode, open_flag);
2010 if (error) {
2011 if (will_truncate)
2012 mnt_drop_write(nd->path.mnt);
2013 goto exit;
2014 }
2015 filp = nameidata_to_filp(nd);
2016 if (!IS_ERR(filp)) {
2017 error = ima_file_check(filp, acc_mode);
2018 if (error) {
2019 fput(filp);
2020 filp = ERR_PTR(error);
2021 }
2022 }
2023 if (!IS_ERR(filp)) {
Al Viro648fa862009-12-24 01:26:48 -05002024 if (will_truncate) {
2025 error = handle_truncate(&nd->path);
2026 if (error) {
2027 fput(filp);
2028 filp = ERR_PTR(error);
2029 }
2030 }
2031 }
2032 /*
2033 * It is now safe to drop the mnt write
2034 * because the filp has had a write taken
2035 * on its behalf.
2036 */
2037 if (will_truncate)
2038 mnt_drop_write(nd->path.mnt);
Al Virod893f1b2010-10-29 03:30:42 -04002039 path_put(&nd->path);
Al Viro648fa862009-12-24 01:26:48 -05002040 return filp;
2041
2042exit:
2043 if (!IS_ERR(nd->intent.open.file))
2044 release_open_intent(nd);
2045 path_put(&nd->path);
2046 return ERR_PTR(error);
2047}
2048
Nick Piggin31e6b012011-01-07 17:49:52 +11002049/*
2050 * Handle O_CREAT case for do_filp_open
2051 */
Al Virofb1cc552009-12-24 01:58:28 -05002052static struct file *do_last(struct nameidata *nd, struct path *path,
Al Viro5b369df2009-12-24 06:51:13 -05002053 int open_flag, int acc_mode,
Al Viro3e297b62010-03-26 12:40:13 -04002054 int mode, const char *pathname)
Al Virofb1cc552009-12-24 01:58:28 -05002055{
Al Viroa1e28032009-12-24 02:12:06 -05002056 struct dentry *dir = nd->path.dentry;
Al Virofb1cc552009-12-24 01:58:28 -05002057 struct file *filp;
Al Viro1f36f772009-12-26 10:56:19 -05002058 int error = -EISDIR;
Al Virofb1cc552009-12-24 01:58:28 -05002059
Al Viro1f36f772009-12-26 10:56:19 -05002060 switch (nd->last_type) {
2061 case LAST_DOTDOT:
2062 follow_dotdot(nd);
2063 dir = nd->path.dentry;
Neil Brown176306f2010-05-24 16:57:56 +10002064 case LAST_DOT:
Al Viro1f36f772009-12-26 10:56:19 -05002065 if (nd->path.mnt->mnt_sb->s_type->fs_flags & FS_REVAL_DOT) {
2066 if (!dir->d_op->d_revalidate(dir, nd)) {
2067 error = -ESTALE;
2068 goto exit;
2069 }
2070 }
2071 /* fallthrough */
Al Viro1f36f772009-12-26 10:56:19 -05002072 case LAST_ROOT:
Nick Piggin31e6b012011-01-07 17:49:52 +11002073 goto exit;
Al Viro1f36f772009-12-26 10:56:19 -05002074 case LAST_BIND:
2075 audit_inode(pathname, dir);
Al Viro67ee3ad2009-12-26 07:01:01 -05002076 goto ok;
Al Viro1f36f772009-12-26 10:56:19 -05002077 }
Al Viro67ee3ad2009-12-26 07:01:01 -05002078
Al Viro1f36f772009-12-26 10:56:19 -05002079 /* trailing slashes? */
Nick Piggin31e6b012011-01-07 17:49:52 +11002080 if (nd->last.name[nd->last.len])
2081 goto exit;
Al Viroa2c36b42009-12-24 03:39:50 -05002082
Al Viroa1e28032009-12-24 02:12:06 -05002083 mutex_lock(&dir->d_inode->i_mutex);
2084
2085 path->dentry = lookup_hash(nd);
2086 path->mnt = nd->path.mnt;
2087
Al Virofb1cc552009-12-24 01:58:28 -05002088 error = PTR_ERR(path->dentry);
2089 if (IS_ERR(path->dentry)) {
2090 mutex_unlock(&dir->d_inode->i_mutex);
2091 goto exit;
2092 }
2093
2094 if (IS_ERR(nd->intent.open.file)) {
2095 error = PTR_ERR(nd->intent.open.file);
2096 goto exit_mutex_unlock;
2097 }
2098
2099 /* Negative dentry, just create the file */
2100 if (!path->dentry->d_inode) {
2101 /*
2102 * This write is needed to ensure that a
2103 * ro->rw transition does not occur between
2104 * the time when the file is created and when
2105 * a permanent write count is taken through
2106 * the 'struct file' in nameidata_to_filp().
2107 */
2108 error = mnt_want_write(nd->path.mnt);
2109 if (error)
2110 goto exit_mutex_unlock;
2111 error = __open_namei_create(nd, path, open_flag, mode);
2112 if (error) {
2113 mnt_drop_write(nd->path.mnt);
2114 goto exit;
2115 }
2116 filp = nameidata_to_filp(nd);
2117 mnt_drop_write(nd->path.mnt);
Al Virod893f1b2010-10-29 03:30:42 -04002118 path_put(&nd->path);
Al Virofb1cc552009-12-24 01:58:28 -05002119 if (!IS_ERR(filp)) {
2120 error = ima_file_check(filp, acc_mode);
2121 if (error) {
2122 fput(filp);
2123 filp = ERR_PTR(error);
2124 }
2125 }
2126 return filp;
2127 }
2128
2129 /*
2130 * It already exists.
2131 */
2132 mutex_unlock(&dir->d_inode->i_mutex);
2133 audit_inode(pathname, path->dentry);
2134
2135 error = -EEXIST;
Al Viro5b369df2009-12-24 06:51:13 -05002136 if (open_flag & O_EXCL)
Al Virofb1cc552009-12-24 01:58:28 -05002137 goto exit_dput;
2138
2139 if (__follow_mount(path)) {
2140 error = -ELOOP;
Al Viro5b369df2009-12-24 06:51:13 -05002141 if (open_flag & O_NOFOLLOW)
Al Virofb1cc552009-12-24 01:58:28 -05002142 goto exit_dput;
2143 }
2144
2145 error = -ENOENT;
2146 if (!path->dentry->d_inode)
2147 goto exit_dput;
Al Viro9e67f362009-12-26 07:04:50 -05002148
2149 if (path->dentry->d_inode->i_op->follow_link)
Al Virofb1cc552009-12-24 01:58:28 -05002150 return NULL;
Al Virofb1cc552009-12-24 01:58:28 -05002151
2152 path_to_nameidata(path, nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002153 nd->inode = path->dentry->d_inode;
Al Virofb1cc552009-12-24 01:58:28 -05002154 error = -EISDIR;
Nick Piggin31e6b012011-01-07 17:49:52 +11002155 if (S_ISDIR(nd->inode->i_mode))
Al Virofb1cc552009-12-24 01:58:28 -05002156 goto exit;
Al Viro67ee3ad2009-12-26 07:01:01 -05002157ok:
Al Viro9a661792009-12-24 06:49:47 -05002158 filp = finish_open(nd, open_flag, acc_mode);
Al Virofb1cc552009-12-24 01:58:28 -05002159 return filp;
2160
2161exit_mutex_unlock:
2162 mutex_unlock(&dir->d_inode->i_mutex);
2163exit_dput:
2164 path_put_conditional(path, nd);
2165exit:
2166 if (!IS_ERR(nd->intent.open.file))
2167 release_open_intent(nd);
Al Virofb1cc552009-12-24 01:58:28 -05002168 path_put(&nd->path);
2169 return ERR_PTR(error);
2170}
2171
Dave Hansend57999e2008-02-15 14:37:27 -08002172/*
Dave Hansen4a3fd212008-02-15 14:37:48 -08002173 * Note that the low bits of the passed in "open_flag"
2174 * are not the same as in the local variable "flag". See
2175 * open_to_namei_flags() for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 */
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002177struct file *do_filp_open(int dfd, const char *pathname,
Al Viro6e8341a2009-04-06 11:16:22 -04002178 int open_flag, int mode, int acc_mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179{
Dave Hansen4a3fd212008-02-15 14:37:48 -08002180 struct file *filp;
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002181 struct nameidata nd;
Al Viro6e8341a2009-04-06 11:16:22 -04002182 int error;
Al Viro9850c052010-01-13 15:01:15 -05002183 struct path path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 int count = 0;
Dave Hansend57999e2008-02-15 14:37:27 -08002185 int flag = open_to_namei_flags(open_flag);
Nick Piggin31e6b012011-01-07 17:49:52 +11002186 int flags;
Al Viro1f36f772009-12-26 10:56:19 -05002187
2188 if (!(open_flag & O_CREAT))
2189 mode = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Lino Sanfilippob1085ba2010-11-05 17:05:27 +01002191 /* Must never be set by userspace */
2192 open_flag &= ~FMODE_NONOTIFY;
2193
Christoph Hellwig6b2f3d12009-10-27 11:05:28 +01002194 /*
2195 * O_SYNC is implemented as __O_SYNC|O_DSYNC. As many places only
2196 * check for O_DSYNC if the need any syncing at all we enforce it's
2197 * always set instead of having to deal with possibly weird behaviour
2198 * for malicious applications setting only __O_SYNC.
2199 */
2200 if (open_flag & __O_SYNC)
2201 open_flag |= O_DSYNC;
2202
Al Viro6e8341a2009-04-06 11:16:22 -04002203 if (!acc_mode)
Al Viro6d125522009-12-24 06:58:56 -05002204 acc_mode = MAY_OPEN | ACC_MODE(open_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205
Trond Myklebust834f2a42005-10-18 14:20:16 -07002206 /* O_TRUNC implies we need access checks for write permissions */
Al Viro4296e2c2009-12-24 07:15:41 -05002207 if (open_flag & O_TRUNC)
Trond Myklebust834f2a42005-10-18 14:20:16 -07002208 acc_mode |= MAY_WRITE;
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 /* Allow the LSM permission hook to distinguish append
2211 access from general write access. */
Al Viro4296e2c2009-12-24 07:15:41 -05002212 if (open_flag & O_APPEND)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 acc_mode |= MAY_APPEND;
2214
Nick Piggin31e6b012011-01-07 17:49:52 +11002215 flags = LOOKUP_OPEN;
2216 if (open_flag & O_CREAT) {
2217 flags |= LOOKUP_CREATE;
2218 if (open_flag & O_EXCL)
2219 flags |= LOOKUP_EXCL;
J. R. Okajima654f5622009-06-18 23:30:15 +09002220 }
Nick Piggin31e6b012011-01-07 17:49:52 +11002221 if (open_flag & O_DIRECTORY)
2222 flags |= LOOKUP_DIRECTORY;
2223 if (!(open_flag & O_NOFOLLOW))
2224 flags |= LOOKUP_FOLLOW;
2225
2226 filp = get_empty_filp();
2227 if (!filp)
2228 return ERR_PTR(-ENFILE);
2229
2230 filp->f_flags = open_flag;
2231 nd.intent.open.file = filp;
2232 nd.intent.open.flags = flag;
2233 nd.intent.open.create_mode = mode;
2234
2235 if (open_flag & O_CREAT)
2236 goto creat;
2237
2238 /* !O_CREAT, simple open */
2239 error = do_path_lookup(dfd, pathname, flags, &nd);
2240 if (unlikely(error))
2241 goto out_filp;
2242 error = -ELOOP;
2243 if (!(nd.flags & LOOKUP_FOLLOW)) {
2244 if (nd.inode->i_op->follow_link)
2245 goto out_path;
2246 }
2247 error = -ENOTDIR;
2248 if (nd.flags & LOOKUP_DIRECTORY) {
2249 if (!nd.inode->i_op->lookup)
2250 goto out_path;
2251 }
2252 audit_inode(pathname, nd.path.dentry);
2253 filp = finish_open(&nd, open_flag, acc_mode);
2254 return filp;
2255
2256creat:
2257 /* OK, have to create the file. Find the parent. */
2258 error = path_init_rcu(dfd, pathname,
2259 LOOKUP_PARENT | (flags & LOOKUP_REVAL), &nd);
2260 if (error)
2261 goto out_filp;
2262 error = path_walk_rcu(pathname, &nd);
2263 path_finish_rcu(&nd);
2264 if (unlikely(error == -ECHILD || error == -ESTALE)) {
2265 /* slower, locked walk */
2266 if (error == -ESTALE) {
2267reval:
2268 flags |= LOOKUP_REVAL;
2269 }
2270 error = path_init(dfd, pathname,
2271 LOOKUP_PARENT | (flags & LOOKUP_REVAL), &nd);
2272 if (error)
2273 goto out_filp;
2274
2275 error = path_walk_simple(pathname, &nd);
2276 }
2277 if (unlikely(error))
2278 goto out_filp;
2279 if (unlikely(!audit_dummy_context()))
Al Viro9b4a9b12009-04-07 11:44:16 -04002280 audit_inode(pathname, nd.path.dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
2282 /*
Al Viroa2c36b42009-12-24 03:39:50 -05002283 * We have the parent and last component.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 */
Nick Piggin31e6b012011-01-07 17:49:52 +11002285 nd.flags = flags;
Al Viro3e297b62010-03-26 12:40:13 -04002286 filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
Al Viro806b6812009-12-26 07:16:40 -05002287 while (unlikely(!filp)) { /* trailing symlink */
Al Virodef4af32009-12-26 08:37:05 -05002288 struct path holder;
Al Virodef4af32009-12-26 08:37:05 -05002289 void *cookie;
Al Viro806b6812009-12-26 07:16:40 -05002290 error = -ELOOP;
Al Viro1f36f772009-12-26 10:56:19 -05002291 /* S_ISDIR part is a temporary automount kludge */
Nick Piggin31e6b012011-01-07 17:49:52 +11002292 if (!(nd.flags & LOOKUP_FOLLOW) && !S_ISDIR(nd.inode->i_mode))
Al Viro1f36f772009-12-26 10:56:19 -05002293 goto exit_dput;
2294 if (count++ == 32)
Al Viro806b6812009-12-26 07:16:40 -05002295 goto exit_dput;
2296 /*
2297 * This is subtle. Instead of calling do_follow_link() we do
2298 * the thing by hands. The reason is that this way we have zero
2299 * link_count and path_walk() (called from ->follow_link)
2300 * honoring LOOKUP_PARENT. After that we have the parent and
2301 * last component, i.e. we are in the same situation as after
2302 * the first path_walk(). Well, almost - if the last component
2303 * is normal we get its copy stored in nd->last.name and we will
2304 * have to putname() it when we are done. Procfs-like symlinks
2305 * just set LAST_BIND.
2306 */
2307 nd.flags |= LOOKUP_PARENT;
2308 error = security_inode_follow_link(path.dentry, &nd);
2309 if (error)
2310 goto exit_dput;
Al Virodef4af32009-12-26 08:37:05 -05002311 error = __do_follow_link(&path, &nd, &cookie);
2312 if (unlikely(error)) {
Nick Piggin31e6b012011-01-07 17:49:52 +11002313 if (!IS_ERR(cookie) && nd.inode->i_op->put_link)
2314 nd.inode->i_op->put_link(path.dentry, &nd, cookie);
Al Viro806b6812009-12-26 07:16:40 -05002315 /* nd.path had been dropped */
Nick Piggin31e6b012011-01-07 17:49:52 +11002316 nd.path = path;
2317 goto out_path;
Al Viro806b6812009-12-26 07:16:40 -05002318 }
Al Virodef4af32009-12-26 08:37:05 -05002319 holder = path;
Al Viro806b6812009-12-26 07:16:40 -05002320 nd.flags &= ~LOOKUP_PARENT;
Al Viro3e297b62010-03-26 12:40:13 -04002321 filp = do_last(&nd, &path, open_flag, acc_mode, mode, pathname);
Nick Piggin31e6b012011-01-07 17:49:52 +11002322 if (nd.inode->i_op->put_link)
2323 nd.inode->i_op->put_link(holder.dentry, &nd, cookie);
Al Virodef4af32009-12-26 08:37:05 -05002324 path_put(&holder);
Al Viro806b6812009-12-26 07:16:40 -05002325 }
Al Viro10fa8e62009-12-26 07:09:49 -05002326out:
Al Viro2a737872009-04-07 11:49:53 -04002327 if (nd.root.mnt)
2328 path_put(&nd.root);
Nick Piggin31e6b012011-01-07 17:49:52 +11002329 if (filp == ERR_PTR(-ESTALE) && !(flags & LOOKUP_REVAL))
Al Viro10fa8e62009-12-26 07:09:49 -05002330 goto reval;
Al Viro10fa8e62009-12-26 07:09:49 -05002331 return filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332
Al Viro806b6812009-12-26 07:16:40 -05002333exit_dput:
2334 path_put_conditional(&path, &nd);
Nick Piggin31e6b012011-01-07 17:49:52 +11002335out_path:
2336 path_put(&nd.path);
2337out_filp:
Al Viro806b6812009-12-26 07:16:40 -05002338 if (!IS_ERR(nd.intent.open.file))
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002339 release_open_intent(&nd);
Al Viro806b6812009-12-26 07:16:40 -05002340 filp = ERR_PTR(error);
Al Viro10fa8e62009-12-26 07:09:49 -05002341 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342}
2343
2344/**
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002345 * filp_open - open file and return file pointer
2346 *
2347 * @filename: path to open
2348 * @flags: open flags as per the open(2) second argument
2349 * @mode: mode for the new file if O_CREAT is set, else ignored
2350 *
2351 * This is the helper to open a file from kernelspace if you really
2352 * have to. But in generally you should not do this, so please move
2353 * along, nothing to see here..
2354 */
2355struct file *filp_open(const char *filename, int flags, int mode)
2356{
Al Viro6e8341a2009-04-06 11:16:22 -04002357 return do_filp_open(AT_FDCWD, filename, flags, mode, 0);
Christoph Hellwiga70e65d2008-02-15 14:37:28 -08002358}
2359EXPORT_SYMBOL(filp_open);
2360
2361/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 * lookup_create - lookup a dentry, creating it if it doesn't exist
2363 * @nd: nameidata info
2364 * @is_dir: directory flag
2365 *
2366 * Simple function to lookup and return a dentry and create it
2367 * if it doesn't exist. Is SMP-safe.
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002368 *
Jan Blunck4ac91372008-02-14 19:34:32 -08002369 * Returns with nd->path.dentry->d_inode->i_mutex locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 */
2371struct dentry *lookup_create(struct nameidata *nd, int is_dir)
2372{
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002373 struct dentry *dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
Jan Blunck4ac91372008-02-14 19:34:32 -08002375 mutex_lock_nested(&nd->path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002376 /*
2377 * Yucky last component or no last component at all?
2378 * (foo/., foo/.., /////)
2379 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 if (nd->last_type != LAST_NORM)
2381 goto fail;
2382 nd->flags &= ~LOOKUP_PARENT;
Al Viro35165862008-08-05 03:00:49 -04002383 nd->flags |= LOOKUP_CREATE | LOOKUP_EXCL;
ASANO Masahiroa6349042006-08-22 20:06:02 -04002384 nd->intent.open.flags = O_EXCL;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002385
2386 /*
2387 * Do the final lookup.
2388 */
Christoph Hellwig49705b72005-11-08 21:35:06 -08002389 dentry = lookup_hash(nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 if (IS_ERR(dentry))
2391 goto fail;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002392
Al Viroe9baf6e2008-05-15 04:49:12 -04002393 if (dentry->d_inode)
2394 goto eexist;
Christoph Hellwigc663e5d2005-06-23 00:09:49 -07002395 /*
2396 * Special case - lookup gave negative, but... we had foo/bar/
2397 * From the vfs_mknod() POV we just have a negative dentry -
2398 * all is fine. Let's be bastards - you had / on the end, you've
2399 * been asking for (non-existent) directory. -ENOENT for you.
2400 */
Al Viroe9baf6e2008-05-15 04:49:12 -04002401 if (unlikely(!is_dir && nd->last.name[nd->last.len])) {
2402 dput(dentry);
2403 dentry = ERR_PTR(-ENOENT);
2404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 return dentry;
Al Viroe9baf6e2008-05-15 04:49:12 -04002406eexist:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 dput(dentry);
Al Viroe9baf6e2008-05-15 04:49:12 -04002408 dentry = ERR_PTR(-EEXIST);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409fail:
2410 return dentry;
2411}
Christoph Hellwigf81a0bf2005-05-19 12:26:43 -07002412EXPORT_SYMBOL_GPL(lookup_create);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
2414int vfs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
2415{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002416 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
2418 if (error)
2419 return error;
2420
2421 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
2422 return -EPERM;
2423
Al Viroacfa4382008-12-04 10:06:33 -05002424 if (!dir->i_op->mknod)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 return -EPERM;
2426
Serge E. Hallyn08ce5f12008-04-29 01:00:10 -07002427 error = devcgroup_inode_mknod(mode, dev);
2428 if (error)
2429 return error;
2430
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 error = security_inode_mknod(dir, dentry, mode, dev);
2432 if (error)
2433 return error;
2434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 error = dir->i_op->mknod(dir, dentry, mode, dev);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002436 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002437 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 return error;
2439}
2440
Dave Hansen463c3192008-02-15 14:37:57 -08002441static int may_mknod(mode_t mode)
2442{
2443 switch (mode & S_IFMT) {
2444 case S_IFREG:
2445 case S_IFCHR:
2446 case S_IFBLK:
2447 case S_IFIFO:
2448 case S_IFSOCK:
2449 case 0: /* zero mode translates to S_IFREG */
2450 return 0;
2451 case S_IFDIR:
2452 return -EPERM;
2453 default:
2454 return -EINVAL;
2455 }
2456}
2457
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002458SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, int, mode,
2459 unsigned, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460{
Al Viro2ad94ae2008-07-21 09:32:51 -04002461 int error;
2462 char *tmp;
2463 struct dentry *dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 struct nameidata nd;
2465
2466 if (S_ISDIR(mode))
2467 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
Al Viro2ad94ae2008-07-21 09:32:51 -04002469 error = user_path_parent(dfd, filename, &nd, &tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002471 return error;
2472
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473 dentry = lookup_create(&nd, 0);
Dave Hansen463c3192008-02-15 14:37:57 -08002474 if (IS_ERR(dentry)) {
2475 error = PTR_ERR(dentry);
2476 goto out_unlock;
2477 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002478 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002479 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002480 error = may_mknod(mode);
2481 if (error)
2482 goto out_dput;
2483 error = mnt_want_write(nd.path.mnt);
2484 if (error)
2485 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002486 error = security_path_mknod(&nd.path, dentry, mode, dev);
2487 if (error)
2488 goto out_drop_write;
Dave Hansen463c3192008-02-15 14:37:57 -08002489 switch (mode & S_IFMT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 case 0: case S_IFREG:
Jan Blunck4ac91372008-02-14 19:34:32 -08002491 error = vfs_create(nd.path.dentry->d_inode,dentry,mode,&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 break;
2493 case S_IFCHR: case S_IFBLK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002494 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 new_decode_dev(dev));
2496 break;
2497 case S_IFIFO: case S_IFSOCK:
Jan Blunck4ac91372008-02-14 19:34:32 -08002498 error = vfs_mknod(nd.path.dentry->d_inode,dentry,mode,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 }
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002501out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002502 mnt_drop_write(nd.path.mnt);
2503out_dput:
2504 dput(dentry);
2505out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002506 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002507 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 putname(tmp);
2509
2510 return error;
2511}
2512
Heiko Carstens3480b252009-01-14 14:14:16 +01002513SYSCALL_DEFINE3(mknod, const char __user *, filename, int, mode, unsigned, dev)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002514{
2515 return sys_mknodat(AT_FDCWD, filename, mode, dev);
2516}
2517
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518int vfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
2519{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002520 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
2522 if (error)
2523 return error;
2524
Al Viroacfa4382008-12-04 10:06:33 -05002525 if (!dir->i_op->mkdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 return -EPERM;
2527
2528 mode &= (S_IRWXUGO|S_ISVTX);
2529 error = security_inode_mkdir(dir, dentry, mode);
2530 if (error)
2531 return error;
2532
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 error = dir->i_op->mkdir(dir, dentry, mode);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002534 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002535 fsnotify_mkdir(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 return error;
2537}
2538
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002539SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, int, mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540{
2541 int error = 0;
2542 char * tmp;
Dave Hansen6902d922006-09-30 23:29:01 -07002543 struct dentry *dentry;
2544 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
Al Viro2ad94ae2008-07-21 09:32:51 -04002546 error = user_path_parent(dfd, pathname, &nd, &tmp);
2547 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002548 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
Dave Hansen6902d922006-09-30 23:29:01 -07002550 dentry = lookup_create(&nd, 1);
2551 error = PTR_ERR(dentry);
2552 if (IS_ERR(dentry))
2553 goto out_unlock;
2554
Jan Blunck4ac91372008-02-14 19:34:32 -08002555 if (!IS_POSIXACL(nd.path.dentry->d_inode))
Al Viroce3b0f82009-03-29 19:08:22 -04002556 mode &= ~current_umask();
Dave Hansen463c3192008-02-15 14:37:57 -08002557 error = mnt_want_write(nd.path.mnt);
2558 if (error)
2559 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002560 error = security_path_mkdir(&nd.path, dentry, mode);
2561 if (error)
2562 goto out_drop_write;
Jan Blunck4ac91372008-02-14 19:34:32 -08002563 error = vfs_mkdir(nd.path.dentry->d_inode, dentry, mode);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002564out_drop_write:
Dave Hansen463c3192008-02-15 14:37:57 -08002565 mnt_drop_write(nd.path.mnt);
2566out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002567 dput(dentry);
2568out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002569 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002570 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002571 putname(tmp);
2572out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 return error;
2574}
2575
Heiko Carstens3cdad422009-01-14 14:14:22 +01002576SYSCALL_DEFINE2(mkdir, const char __user *, pathname, int, mode)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002577{
2578 return sys_mkdirat(AT_FDCWD, pathname, mode);
2579}
2580
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581/*
2582 * We try to drop the dentry early: we should have
2583 * a usage count of 2 if we're the only user of this
2584 * dentry, and if that is true (possibly after pruning
2585 * the dcache), then we drop the dentry now.
2586 *
2587 * A low-level filesystem can, if it choses, legally
2588 * do a
2589 *
2590 * if (!d_unhashed(dentry))
2591 * return -EBUSY;
2592 *
2593 * if it cannot handle the case of removing a directory
2594 * that is still in use by something else..
2595 */
2596void dentry_unhash(struct dentry *dentry)
2597{
2598 dget(dentry);
Vasily Averindc168422006-12-06 20:37:07 -08002599 shrink_dcache_parent(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 spin_lock(&dentry->d_lock);
Nick Pigginb7ab39f2011-01-07 17:49:32 +11002601 if (dentry->d_count == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 __d_drop(dentry);
2603 spin_unlock(&dentry->d_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604}
2605
2606int vfs_rmdir(struct inode *dir, struct dentry *dentry)
2607{
2608 int error = may_delete(dir, dentry, 1);
2609
2610 if (error)
2611 return error;
2612
Al Viroacfa4382008-12-04 10:06:33 -05002613 if (!dir->i_op->rmdir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 return -EPERM;
2615
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002616 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 dentry_unhash(dentry);
2618 if (d_mountpoint(dentry))
2619 error = -EBUSY;
2620 else {
2621 error = security_inode_rmdir(dir, dentry);
2622 if (!error) {
2623 error = dir->i_op->rmdir(dir, dentry);
Al Virod83c49f2010-04-30 17:17:09 -04002624 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 dentry->d_inode->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -04002626 dont_mount(dentry);
2627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 }
2629 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002630 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 d_delete(dentry);
2633 }
2634 dput(dentry);
2635
2636 return error;
2637}
2638
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002639static long do_rmdir(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640{
2641 int error = 0;
2642 char * name;
2643 struct dentry *dentry;
2644 struct nameidata nd;
2645
Al Viro2ad94ae2008-07-21 09:32:51 -04002646 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002648 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649
2650 switch(nd.last_type) {
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002651 case LAST_DOTDOT:
2652 error = -ENOTEMPTY;
2653 goto exit1;
2654 case LAST_DOT:
2655 error = -EINVAL;
2656 goto exit1;
2657 case LAST_ROOT:
2658 error = -EBUSY;
2659 goto exit1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 }
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002661
2662 nd.flags &= ~LOOKUP_PARENT;
2663
Jan Blunck4ac91372008-02-14 19:34:32 -08002664 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002665 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 error = PTR_ERR(dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002667 if (IS_ERR(dentry))
2668 goto exit2;
Dave Hansen06227532008-02-15 14:37:34 -08002669 error = mnt_want_write(nd.path.mnt);
2670 if (error)
2671 goto exit3;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002672 error = security_path_rmdir(&nd.path, dentry);
2673 if (error)
2674 goto exit4;
Jan Blunck4ac91372008-02-14 19:34:32 -08002675 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002676exit4:
Dave Hansen06227532008-02-15 14:37:34 -08002677 mnt_drop_write(nd.path.mnt);
2678exit3:
Dave Hansen6902d922006-09-30 23:29:01 -07002679 dput(dentry);
2680exit2:
Jan Blunck4ac91372008-02-14 19:34:32 -08002681 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002683 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 putname(name);
2685 return error;
2686}
2687
Heiko Carstens3cdad422009-01-14 14:14:22 +01002688SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002689{
2690 return do_rmdir(AT_FDCWD, pathname);
2691}
2692
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693int vfs_unlink(struct inode *dir, struct dentry *dentry)
2694{
2695 int error = may_delete(dir, dentry, 0);
2696
2697 if (error)
2698 return error;
2699
Al Viroacfa4382008-12-04 10:06:33 -05002700 if (!dir->i_op->unlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 return -EPERM;
2702
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002703 mutex_lock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 if (d_mountpoint(dentry))
2705 error = -EBUSY;
2706 else {
2707 error = security_inode_unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002708 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 error = dir->i_op->unlink(dir, dentry);
Al Virobec10522010-03-03 14:12:08 -05002710 if (!error)
Al Virod83c49f2010-04-30 17:17:09 -04002711 dont_mount(dentry);
Al Virobec10522010-03-03 14:12:08 -05002712 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002714 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
2716 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
2717 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
Jan Karaece95912008-02-06 01:37:13 -08002718 fsnotify_link_count(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 d_delete(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 }
Robert Love0eeca282005-07-12 17:06:03 -04002721
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 return error;
2723}
2724
2725/*
2726 * Make sure that the actual truncation of the file will occur outside its
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002727 * directory's i_mutex. Truncate can take a long time if there is a lot of
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 * writeout happening, and we don't want to prevent access to the directory
2729 * while waiting on the I/O.
2730 */
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002731static long do_unlinkat(int dfd, const char __user *pathname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732{
Al Viro2ad94ae2008-07-21 09:32:51 -04002733 int error;
2734 char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 struct dentry *dentry;
2736 struct nameidata nd;
2737 struct inode *inode = NULL;
2738
Al Viro2ad94ae2008-07-21 09:32:51 -04002739 error = user_path_parent(dfd, pathname, &nd, &name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002741 return error;
2742
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 error = -EISDIR;
2744 if (nd.last_type != LAST_NORM)
2745 goto exit1;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09002746
2747 nd.flags &= ~LOOKUP_PARENT;
2748
Jan Blunck4ac91372008-02-14 19:34:32 -08002749 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Christoph Hellwig49705b72005-11-08 21:35:06 -08002750 dentry = lookup_hash(&nd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 error = PTR_ERR(dentry);
2752 if (!IS_ERR(dentry)) {
2753 /* Why not before? Because we want correct error value */
2754 if (nd.last.name[nd.last.len])
2755 goto slashes;
2756 inode = dentry->d_inode;
2757 if (inode)
Al Viro7de9c6e2010-10-23 11:11:40 -04002758 ihold(inode);
Dave Hansen06227532008-02-15 14:37:34 -08002759 error = mnt_want_write(nd.path.mnt);
2760 if (error)
2761 goto exit2;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002762 error = security_path_unlink(&nd.path, dentry);
2763 if (error)
2764 goto exit3;
Jan Blunck4ac91372008-02-14 19:34:32 -08002765 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002766exit3:
Dave Hansen06227532008-02-15 14:37:34 -08002767 mnt_drop_write(nd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 exit2:
2769 dput(dentry);
2770 }
Jan Blunck4ac91372008-02-14 19:34:32 -08002771 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 if (inode)
2773 iput(inode); /* truncate the inode here */
2774exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08002775 path_put(&nd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 putname(name);
2777 return error;
2778
2779slashes:
2780 error = !dentry->d_inode ? -ENOENT :
2781 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
2782 goto exit2;
2783}
2784
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002785SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002786{
2787 if ((flag & ~AT_REMOVEDIR) != 0)
2788 return -EINVAL;
2789
2790 if (flag & AT_REMOVEDIR)
2791 return do_rmdir(dfd, pathname);
2792
2793 return do_unlinkat(dfd, pathname);
2794}
2795
Heiko Carstens3480b252009-01-14 14:14:16 +01002796SYSCALL_DEFINE1(unlink, const char __user *, pathname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002797{
2798 return do_unlinkat(AT_FDCWD, pathname);
2799}
2800
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002801int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802{
Miklos Szeredia95164d2008-07-30 15:08:48 +02002803 int error = may_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
2805 if (error)
2806 return error;
2807
Al Viroacfa4382008-12-04 10:06:33 -05002808 if (!dir->i_op->symlink)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 return -EPERM;
2810
2811 error = security_inode_symlink(dir, dentry, oldname);
2812 if (error)
2813 return error;
2814
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 error = dir->i_op->symlink(dir, dentry, oldname);
Stephen Smalleya74574a2005-09-09 13:01:44 -07002816 if (!error)
Amy Griffisf38aa942005-11-03 15:57:06 +00002817 fsnotify_create(dir, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 return error;
2819}
2820
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002821SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
2822 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823{
Al Viro2ad94ae2008-07-21 09:32:51 -04002824 int error;
2825 char *from;
2826 char *to;
Dave Hansen6902d922006-09-30 23:29:01 -07002827 struct dentry *dentry;
2828 struct nameidata nd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829
2830 from = getname(oldname);
Al Viro2ad94ae2008-07-21 09:32:51 -04002831 if (IS_ERR(from))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 return PTR_ERR(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04002833
2834 error = user_path_parent(newdfd, newname, &nd, &to);
2835 if (error)
Dave Hansen6902d922006-09-30 23:29:01 -07002836 goto out_putname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
Dave Hansen6902d922006-09-30 23:29:01 -07002838 dentry = lookup_create(&nd, 0);
2839 error = PTR_ERR(dentry);
2840 if (IS_ERR(dentry))
2841 goto out_unlock;
2842
Dave Hansen75c3f292008-02-15 14:37:45 -08002843 error = mnt_want_write(nd.path.mnt);
2844 if (error)
2845 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002846 error = security_path_symlink(&nd.path, dentry, from);
2847 if (error)
2848 goto out_drop_write;
Miklos Szeredidb2e7472008-06-24 16:50:16 +02002849 error = vfs_symlink(nd.path.dentry->d_inode, dentry, from);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002850out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002851 mnt_drop_write(nd.path.mnt);
2852out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002853 dput(dentry);
2854out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002855 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Jan Blunck1d957f92008-02-14 19:34:35 -08002856 path_put(&nd.path);
Dave Hansen6902d922006-09-30 23:29:01 -07002857 putname(to);
2858out_putname:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 putname(from);
2860 return error;
2861}
2862
Heiko Carstens3480b252009-01-14 14:14:16 +01002863SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002864{
2865 return sys_symlinkat(oldname, AT_FDCWD, newname);
2866}
2867
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
2869{
2870 struct inode *inode = old_dentry->d_inode;
2871 int error;
2872
2873 if (!inode)
2874 return -ENOENT;
2875
Miklos Szeredia95164d2008-07-30 15:08:48 +02002876 error = may_create(dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 if (error)
2878 return error;
2879
2880 if (dir->i_sb != inode->i_sb)
2881 return -EXDEV;
2882
2883 /*
2884 * A link to an append-only or immutable file cannot be created.
2885 */
2886 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
2887 return -EPERM;
Al Viroacfa4382008-12-04 10:06:33 -05002888 if (!dir->i_op->link)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 return -EPERM;
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002890 if (S_ISDIR(inode->i_mode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 return -EPERM;
2892
2893 error = security_inode_link(old_dentry, dir, new_dentry);
2894 if (error)
2895 return error;
2896
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002897 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 error = dir->i_op->link(old_dentry, dir, new_dentry);
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002899 mutex_unlock(&inode->i_mutex);
Stephen Smalleye31e14e2005-09-09 13:01:45 -07002900 if (!error)
Tetsuo Handa7e79eed2008-06-24 16:50:15 +02002901 fsnotify_link(dir, inode, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 return error;
2903}
2904
2905/*
2906 * Hardlinks are often used in delicate situations. We avoid
2907 * security-related surprises by not following symlinks on the
2908 * newname. --KAB
2909 *
2910 * We don't follow them on the oldname either to be compatible
2911 * with linux 2.0, and to avoid hard-linking to directories
2912 * and other special files. --ADM
2913 */
Heiko Carstens2e4d0922009-01-14 14:14:31 +01002914SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
2915 int, newdfd, const char __user *, newname, int, flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916{
2917 struct dentry *new_dentry;
Al Viro2d8f3032008-07-22 09:59:21 -04002918 struct nameidata nd;
2919 struct path old_path;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 int error;
Al Viro2ad94ae2008-07-21 09:32:51 -04002921 char *to;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
Ulrich Drepper45c9b112006-06-25 05:49:11 -07002923 if ((flags & ~AT_SYMLINK_FOLLOW) != 0)
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002924 return -EINVAL;
2925
Al Viro2d8f3032008-07-22 09:59:21 -04002926 error = user_path_at(olddfd, oldname,
2927 flags & AT_SYMLINK_FOLLOW ? LOOKUP_FOLLOW : 0,
2928 &old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 if (error)
Al Viro2ad94ae2008-07-21 09:32:51 -04002930 return error;
2931
2932 error = user_path_parent(newdfd, newname, &nd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 if (error)
2934 goto out;
2935 error = -EXDEV;
Al Viro2d8f3032008-07-22 09:59:21 -04002936 if (old_path.mnt != nd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 goto out_release;
2938 new_dentry = lookup_create(&nd, 0);
2939 error = PTR_ERR(new_dentry);
Dave Hansen6902d922006-09-30 23:29:01 -07002940 if (IS_ERR(new_dentry))
2941 goto out_unlock;
Dave Hansen75c3f292008-02-15 14:37:45 -08002942 error = mnt_want_write(nd.path.mnt);
2943 if (error)
2944 goto out_dput;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002945 error = security_path_link(old_path.dentry, &nd.path, new_dentry);
2946 if (error)
2947 goto out_drop_write;
Al Viro2d8f3032008-07-22 09:59:21 -04002948 error = vfs_link(old_path.dentry, nd.path.dentry->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09002949out_drop_write:
Dave Hansen75c3f292008-02-15 14:37:45 -08002950 mnt_drop_write(nd.path.mnt);
2951out_dput:
Dave Hansen6902d922006-09-30 23:29:01 -07002952 dput(new_dentry);
2953out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -08002954 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955out_release:
Jan Blunck1d957f92008-02-14 19:34:35 -08002956 path_put(&nd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04002957 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958out:
Al Viro2d8f3032008-07-22 09:59:21 -04002959 path_put(&old_path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
2961 return error;
2962}
2963
Heiko Carstens3480b252009-01-14 14:14:16 +01002964SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002965{
Ulrich Drepperc04030e2006-02-24 13:04:21 -08002966 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
Ulrich Drepper5590ff02006-01-18 17:43:53 -08002967}
2968
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969/*
2970 * The worst of all namespace operations - renaming directory. "Perverted"
2971 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
2972 * Problems:
2973 * a) we can get into loop creation. Check is done in is_subdir().
2974 * b) race potential - two innocent renames can create a loop together.
2975 * That's where 4.4 screws up. Current fix: serialization on
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002976 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 * story.
2978 * c) we have to lock _three_ objects - parents and victim (if it exists).
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002979 * And that - after we got ->i_mutex on parents (until then we don't know
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 * whether the target exists). Solution: try to be smart with locking
2981 * order for inodes. We rely on the fact that tree topology may change
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002982 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 * move will be locked. Thus we can rank directories by the tree
2984 * (ancestors first) and rank all non-directories after them.
2985 * That works since everybody except rename does "lock parent, lookup,
Arjan van de Vena11f3a02006-03-23 03:00:33 -08002986 * lock child" and rename is under ->s_vfs_rename_mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 * HOWEVER, it relies on the assumption that any object with ->lookup()
2988 * has no more than 1 dentry. If "hybrid" objects will ever appear,
2989 * we'd better make sure that there's no link(2) for them.
2990 * d) some filesystems don't support opened-but-unlinked directories,
2991 * either because of layout or because they are not ready to deal with
2992 * all cases correctly. The latter will be fixed (taking this sort of
2993 * stuff into VFS), but the former is not going away. Solution: the same
2994 * trick as in rmdir().
2995 * e) conversion from fhandle to dentry may come in the wrong moment - when
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002996 * we are removing the target. Solution: we will have to grab ->i_mutex
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
Adam Buchbinderc41b20e2009-12-11 16:35:39 -05002998 * ->i_mutex on parents, which works but leads to some truly excessive
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 * locking].
3000 */
Adrian Bunk75c96f82005-05-05 16:16:09 -07003001static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3002 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003{
3004 int error = 0;
3005 struct inode *target;
3006
3007 /*
3008 * If we are going to change the parent - check write permissions,
3009 * we'll need to flip '..'.
3010 */
3011 if (new_dir != old_dir) {
Al Virof419a2e2008-07-22 00:07:17 -04003012 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 if (error)
3014 return error;
3015 }
3016
3017 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3018 if (error)
3019 return error;
3020
3021 target = new_dentry->d_inode;
Al Virod83c49f2010-04-30 17:17:09 -04003022 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003023 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3025 error = -EBUSY;
Al Virod83c49f2010-04-30 17:17:09 -04003026 else {
3027 if (target)
3028 dentry_unhash(new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
Al Virod83c49f2010-04-30 17:17:09 -04003030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 if (target) {
Al Virod83c49f2010-04-30 17:17:09 -04003032 if (!error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 target->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -04003034 dont_mount(new_dentry);
3035 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003036 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 if (d_unhashed(new_dentry))
3038 d_rehash(new_dentry);
3039 dput(new_dentry);
3040 }
Stephen Smalleye31e14e2005-09-09 13:01:45 -07003041 if (!error)
Mark Fasheh349457c2006-09-08 14:22:21 -07003042 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
3043 d_move(old_dentry,new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 return error;
3045}
3046
Adrian Bunk75c96f82005-05-05 16:16:09 -07003047static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
3048 struct inode *new_dir, struct dentry *new_dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049{
3050 struct inode *target;
3051 int error;
3052
3053 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3054 if (error)
3055 return error;
3056
3057 dget(new_dentry);
3058 target = new_dentry->d_inode;
3059 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003060 mutex_lock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
3062 error = -EBUSY;
3063 else
3064 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3065 if (!error) {
Al Virobec10522010-03-03 14:12:08 -05003066 if (target)
Al Virod83c49f2010-04-30 17:17:09 -04003067 dont_mount(new_dentry);
Mark Fasheh349457c2006-09-08 14:22:21 -07003068 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 d_move(old_dentry, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 }
3071 if (target)
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08003072 mutex_unlock(&target->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073 dput(new_dentry);
3074 return error;
3075}
3076
3077int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
3078 struct inode *new_dir, struct dentry *new_dentry)
3079{
3080 int error;
3081 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
Eric Paris59b0df22010-02-08 12:53:52 -05003082 const unsigned char *old_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083
3084 if (old_dentry->d_inode == new_dentry->d_inode)
3085 return 0;
3086
3087 error = may_delete(old_dir, old_dentry, is_dir);
3088 if (error)
3089 return error;
3090
3091 if (!new_dentry->d_inode)
Miklos Szeredia95164d2008-07-30 15:08:48 +02003092 error = may_create(new_dir, new_dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 else
3094 error = may_delete(new_dir, new_dentry, is_dir);
3095 if (error)
3096 return error;
3097
Al Viroacfa4382008-12-04 10:06:33 -05003098 if (!old_dir->i_op->rename)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 return -EPERM;
3100
Robert Love0eeca282005-07-12 17:06:03 -04003101 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
3102
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103 if (is_dir)
3104 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
3105 else
3106 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
Al Viro123df292009-12-25 04:57:57 -05003107 if (!error)
3108 fsnotify_move(old_dir, new_dir, old_name, is_dir,
Al Viro5a190ae2007-06-07 12:19:32 -04003109 new_dentry->d_inode, old_dentry);
Robert Love0eeca282005-07-12 17:06:03 -04003110 fsnotify_oldname_free(old_name);
3111
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 return error;
3113}
3114
Heiko Carstens2e4d0922009-01-14 14:14:31 +01003115SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
3116 int, newdfd, const char __user *, newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117{
Al Viro2ad94ae2008-07-21 09:32:51 -04003118 struct dentry *old_dir, *new_dir;
3119 struct dentry *old_dentry, *new_dentry;
3120 struct dentry *trap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 struct nameidata oldnd, newnd;
Al Viro2ad94ae2008-07-21 09:32:51 -04003122 char *from;
3123 char *to;
3124 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125
Al Viro2ad94ae2008-07-21 09:32:51 -04003126 error = user_path_parent(olddfd, oldname, &oldnd, &from);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003127 if (error)
3128 goto exit;
3129
Al Viro2ad94ae2008-07-21 09:32:51 -04003130 error = user_path_parent(newdfd, newname, &newnd, &to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 if (error)
3132 goto exit1;
3133
3134 error = -EXDEV;
Jan Blunck4ac91372008-02-14 19:34:32 -08003135 if (oldnd.path.mnt != newnd.path.mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 goto exit2;
3137
Jan Blunck4ac91372008-02-14 19:34:32 -08003138 old_dir = oldnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 error = -EBUSY;
3140 if (oldnd.last_type != LAST_NORM)
3141 goto exit2;
3142
Jan Blunck4ac91372008-02-14 19:34:32 -08003143 new_dir = newnd.path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 if (newnd.last_type != LAST_NORM)
3145 goto exit2;
3146
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003147 oldnd.flags &= ~LOOKUP_PARENT;
3148 newnd.flags &= ~LOOKUP_PARENT;
OGAWA Hirofumi4e9ed2f2008-10-16 07:50:29 +09003149 newnd.flags |= LOOKUP_RENAME_TARGET;
OGAWA Hirofumi0612d9f2008-10-16 07:50:29 +09003150
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 trap = lock_rename(new_dir, old_dir);
3152
Christoph Hellwig49705b72005-11-08 21:35:06 -08003153 old_dentry = lookup_hash(&oldnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 error = PTR_ERR(old_dentry);
3155 if (IS_ERR(old_dentry))
3156 goto exit3;
3157 /* source must exist */
3158 error = -ENOENT;
3159 if (!old_dentry->d_inode)
3160 goto exit4;
3161 /* unless the source is a directory trailing slashes give -ENOTDIR */
3162 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
3163 error = -ENOTDIR;
3164 if (oldnd.last.name[oldnd.last.len])
3165 goto exit4;
3166 if (newnd.last.name[newnd.last.len])
3167 goto exit4;
3168 }
3169 /* source should not be ancestor of target */
3170 error = -EINVAL;
3171 if (old_dentry == trap)
3172 goto exit4;
Christoph Hellwig49705b72005-11-08 21:35:06 -08003173 new_dentry = lookup_hash(&newnd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174 error = PTR_ERR(new_dentry);
3175 if (IS_ERR(new_dentry))
3176 goto exit4;
3177 /* target should not be an ancestor of source */
3178 error = -ENOTEMPTY;
3179 if (new_dentry == trap)
3180 goto exit5;
3181
Dave Hansen9079b1e2008-02-15 14:37:49 -08003182 error = mnt_want_write(oldnd.path.mnt);
3183 if (error)
3184 goto exit5;
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003185 error = security_path_rename(&oldnd.path, old_dentry,
3186 &newnd.path, new_dentry);
3187 if (error)
3188 goto exit6;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 error = vfs_rename(old_dir->d_inode, old_dentry,
3190 new_dir->d_inode, new_dentry);
Kentaro Takedabe6d3e52008-12-17 13:24:15 +09003191exit6:
Dave Hansen9079b1e2008-02-15 14:37:49 -08003192 mnt_drop_write(oldnd.path.mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193exit5:
3194 dput(new_dentry);
3195exit4:
3196 dput(old_dentry);
3197exit3:
3198 unlock_rename(new_dir, old_dir);
3199exit2:
Jan Blunck1d957f92008-02-14 19:34:35 -08003200 path_put(&newnd.path);
Al Viro2ad94ae2008-07-21 09:32:51 -04003201 putname(to);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003202exit1:
Jan Blunck1d957f92008-02-14 19:34:35 -08003203 path_put(&oldnd.path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 putname(from);
Al Viro2ad94ae2008-07-21 09:32:51 -04003205exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206 return error;
3207}
3208
Heiko Carstensa26eab22009-01-14 14:14:17 +01003209SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
Ulrich Drepper5590ff02006-01-18 17:43:53 -08003210{
3211 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
3212}
3213
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
3215{
3216 int len;
3217
3218 len = PTR_ERR(link);
3219 if (IS_ERR(link))
3220 goto out;
3221
3222 len = strlen(link);
3223 if (len > (unsigned) buflen)
3224 len = buflen;
3225 if (copy_to_user(buffer, link, len))
3226 len = -EFAULT;
3227out:
3228 return len;
3229}
3230
3231/*
3232 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
3233 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
3234 * using) it for any given inode is up to filesystem.
3235 */
3236int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3237{
3238 struct nameidata nd;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003239 void *cookie;
Marcin Slusarz694a1762008-06-09 16:40:37 -07003240 int res;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003241
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 nd.depth = 0;
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003243 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
Marcin Slusarz694a1762008-06-09 16:40:37 -07003244 if (IS_ERR(cookie))
3245 return PTR_ERR(cookie);
3246
3247 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
3248 if (dentry->d_inode->i_op->put_link)
3249 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
3250 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251}
3252
3253int vfs_follow_link(struct nameidata *nd, const char *link)
3254{
3255 return __vfs_follow_link(nd, link);
3256}
3257
3258/* get the link contents into pagecache */
3259static char *page_getlink(struct dentry * dentry, struct page **ppage)
3260{
Duane Griffinebd09ab2008-12-19 20:47:12 +00003261 char *kaddr;
3262 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 struct address_space *mapping = dentry->d_inode->i_mapping;
Pekka Enberg090d2b12006-06-23 02:05:08 -07003264 page = read_mapping_page(mapping, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003265 if (IS_ERR(page))
Nick Piggin6fe69002007-05-06 14:49:04 -07003266 return (char*)page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 *ppage = page;
Duane Griffinebd09ab2008-12-19 20:47:12 +00003268 kaddr = kmap(page);
3269 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
3270 return kaddr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271}
3272
3273int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
3274{
3275 struct page *page = NULL;
3276 char *s = page_getlink(dentry, &page);
3277 int res = vfs_readlink(dentry,buffer,buflen,s);
3278 if (page) {
3279 kunmap(page);
3280 page_cache_release(page);
3281 }
3282 return res;
3283}
3284
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003285void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003286{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003287 struct page *page = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003288 nd_set_link(nd, page_getlink(dentry, &page));
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003289 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290}
3291
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003292void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293{
Linus Torvaldscc314ee2005-08-19 18:02:56 -07003294 struct page *page = cookie;
3295
3296 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 kunmap(page);
3298 page_cache_release(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 }
3300}
3301
Nick Piggin54566b22009-01-04 12:00:53 -08003302/*
3303 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
3304 */
3305int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306{
3307 struct address_space *mapping = inode->i_mapping;
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003308 struct page *page;
Nick Pigginafddba42007-10-16 01:25:01 -07003309 void *fsdata;
Dmitriy Monakhovbeb497a2007-02-16 01:27:18 -08003310 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 char *kaddr;
Nick Piggin54566b22009-01-04 12:00:53 -08003312 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
3313 if (nofs)
3314 flags |= AOP_FLAG_NOFS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315
NeilBrown7e53cac2006-03-25 03:07:57 -08003316retry:
Nick Pigginafddba42007-10-16 01:25:01 -07003317 err = pagecache_write_begin(NULL, mapping, 0, len-1,
Nick Piggin54566b22009-01-04 12:00:53 -08003318 flags, &page, &fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 if (err)
Nick Pigginafddba42007-10-16 01:25:01 -07003320 goto fail;
3321
Linus Torvalds1da177e2005-04-16 15:20:36 -07003322 kaddr = kmap_atomic(page, KM_USER0);
3323 memcpy(kaddr, symname, len-1);
3324 kunmap_atomic(kaddr, KM_USER0);
Nick Pigginafddba42007-10-16 01:25:01 -07003325
3326 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
3327 page, fsdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 if (err < 0)
3329 goto fail;
Nick Pigginafddba42007-10-16 01:25:01 -07003330 if (err < len-1)
3331 goto retry;
3332
Linus Torvalds1da177e2005-04-16 15:20:36 -07003333 mark_inode_dirty(inode);
3334 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335fail:
3336 return err;
3337}
3338
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003339int page_symlink(struct inode *inode, const char *symname, int len)
3340{
3341 return __page_symlink(inode, symname, len,
Nick Piggin54566b22009-01-04 12:00:53 -08003342 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003343}
3344
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -08003345const struct inode_operations page_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 .readlink = generic_readlink,
3347 .follow_link = page_follow_link_light,
3348 .put_link = page_put_link,
3349};
3350
Al Viro2d8f3032008-07-22 09:59:21 -04003351EXPORT_SYMBOL(user_path_at);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352EXPORT_SYMBOL(follow_down);
3353EXPORT_SYMBOL(follow_up);
3354EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
3355EXPORT_SYMBOL(getname);
3356EXPORT_SYMBOL(lock_rename);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357EXPORT_SYMBOL(lookup_one_len);
3358EXPORT_SYMBOL(page_follow_link_light);
3359EXPORT_SYMBOL(page_put_link);
3360EXPORT_SYMBOL(page_readlink);
Kirill Korotaev0adb25d2006-03-11 03:27:13 -08003361EXPORT_SYMBOL(__page_symlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362EXPORT_SYMBOL(page_symlink);
3363EXPORT_SYMBOL(page_symlink_inode_operations);
3364EXPORT_SYMBOL(path_lookup);
Al Virod1811462008-08-02 00:49:18 -04003365EXPORT_SYMBOL(kern_path);
Josef 'Jeff' Sipek16f18202007-07-19 01:48:18 -07003366EXPORT_SYMBOL(vfs_path_lookup);
Al Virof419a2e2008-07-22 00:07:17 -04003367EXPORT_SYMBOL(inode_permission);
Christoph Hellwig8c744fb2005-11-08 21:35:04 -08003368EXPORT_SYMBOL(file_permission);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369EXPORT_SYMBOL(unlock_rename);
3370EXPORT_SYMBOL(vfs_create);
3371EXPORT_SYMBOL(vfs_follow_link);
3372EXPORT_SYMBOL(vfs_link);
3373EXPORT_SYMBOL(vfs_mkdir);
3374EXPORT_SYMBOL(vfs_mknod);
3375EXPORT_SYMBOL(generic_permission);
3376EXPORT_SYMBOL(vfs_readlink);
3377EXPORT_SYMBOL(vfs_rename);
3378EXPORT_SYMBOL(vfs_rmdir);
3379EXPORT_SYMBOL(vfs_symlink);
3380EXPORT_SYMBOL(vfs_unlink);
3381EXPORT_SYMBOL(dentry_unhash);
3382EXPORT_SYMBOL(generic_readlink);