vfs: make sure we don't have a stale root path if unlazy_walk() fails
[deliverable/linux.git] / fs / namei.c
1 /*
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/export.h>
19 #include <linux/kernel.h>
20 #include <linux/slab.h>
21 #include <linux/fs.h>
22 #include <linux/namei.h>
23 #include <linux/pagemap.h>
24 #include <linux/fsnotify.h>
25 #include <linux/personality.h>
26 #include <linux/security.h>
27 #include <linux/ima.h>
28 #include <linux/syscalls.h>
29 #include <linux/mount.h>
30 #include <linux/audit.h>
31 #include <linux/capability.h>
32 #include <linux/file.h>
33 #include <linux/fcntl.h>
34 #include <linux/device_cgroup.h>
35 #include <linux/fs_struct.h>
36 #include <linux/posix_acl.h>
37 #include <asm/uaccess.h>
38
39 #include "internal.h"
40 #include "mount.h"
41
42 /* [Feb-1997 T. Schoebel-Theuer]
43 * Fundamental changes in the pathname lookup mechanisms (namei)
44 * were necessary because of omirr. The reason is that omirr needs
45 * to know the _real_ pathname, not the user-supplied one, in case
46 * of symlinks (and also when transname replacements occur).
47 *
48 * The new code replaces the old recursive symlink resolution with
49 * an iterative one (in case of non-nested symlink chains). It does
50 * this with calls to <fs>_follow_link().
51 * As a side effect, dir_namei(), _namei() and follow_link() are now
52 * replaced with a single function lookup_dentry() that can handle all
53 * the special cases of the former code.
54 *
55 * With the new dcache, the pathname is stored at each inode, at least as
56 * long as the refcount of the inode is positive. As a side effect, the
57 * size of the dcache depends on the inode cache and thus is dynamic.
58 *
59 * [29-Apr-1998 C. Scott Ananian] Updated above description of symlink
60 * resolution to correspond with current state of the code.
61 *
62 * Note that the symlink resolution is not *completely* iterative.
63 * There is still a significant amount of tail- and mid- recursion in
64 * the algorithm. Also, note that <fs>_readlink() is not used in
65 * lookup_dentry(): lookup_dentry() on the result of <fs>_readlink()
66 * may return different results than <fs>_follow_link(). Many virtual
67 * filesystems (including /proc) exhibit this behavior.
68 */
69
70 /* [24-Feb-97 T. Schoebel-Theuer] Side effects caused by new implementation:
71 * New symlink semantics: when open() is called with flags O_CREAT | O_EXCL
72 * and the name already exists in form of a symlink, try to create the new
73 * name indicated by the symlink. The old code always complained that the
74 * name already exists, due to not following the symlink even if its target
75 * is nonexistent. The new semantics affects also mknod() and link() when
76 * the name is a symlink pointing to a non-existent name.
77 *
78 * I don't know which semantics is the right one, since I have no access
79 * to standards. But I found by trial that HP-UX 9.0 has the full "new"
80 * semantics implemented, while SunOS 4.1.1 and Solaris (SunOS 5.4) have the
81 * "old" one. Personally, I think the new semantics is much more logical.
82 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
83 * file does succeed in both HP-UX and SunOs, but not in Solaris
84 * and in the old Linux semantics.
85 */
86
87 /* [16-Dec-97 Kevin Buhr] For security reasons, we change some symlink
88 * semantics. See the comments in "open_namei" and "do_link" below.
89 *
90 * [10-Sep-98 Alan Modra] Another symlink change.
91 */
92
93 /* [Feb-Apr 2000 AV] Complete rewrite. Rules for symlinks:
94 * inside the path - always follow.
95 * in the last component in creation/removal/renaming - never follow.
96 * if LOOKUP_FOLLOW passed - follow.
97 * if the pathname has trailing slashes - follow.
98 * otherwise - don't follow.
99 * (applied in that order).
100 *
101 * [Jun 2000 AV] Inconsistent behaviour of open() in case if flags==O_CREAT
102 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
103 * During the 2.4 we need to fix the userland stuff depending on it -
104 * hopefully we will be able to get rid of that wart in 2.5. So far only
105 * XEmacs seems to be relying on it...
106 */
107 /*
108 * [Sep 2001 AV] Single-semaphore locking scheme (kudos to David Holland)
109 * implemented. Let's see if raised priority of ->s_vfs_rename_mutex gives
110 * any extra contention...
111 */
112
113 /* In order to reduce some races, while at the same time doing additional
114 * checking and hopefully speeding things up, we copy filenames to the
115 * kernel data space before using them..
116 *
117 * POSIX.1 2.4: an empty pathname is invalid (ENOENT).
118 * PATH_MAX includes the nul terminator --RR.
119 */
120 void final_putname(struct filename *name)
121 {
122 if (name->separate) {
123 __putname(name->name);
124 kfree(name);
125 } else {
126 __putname(name);
127 }
128 }
129
130 #define EMBEDDED_NAME_MAX (PATH_MAX - sizeof(struct filename))
131
132 static struct filename *
133 getname_flags(const char __user *filename, int flags, int *empty)
134 {
135 struct filename *result, *err;
136 int len;
137 long max;
138 char *kname;
139
140 result = audit_reusename(filename);
141 if (result)
142 return result;
143
144 result = __getname();
145 if (unlikely(!result))
146 return ERR_PTR(-ENOMEM);
147
148 /*
149 * First, try to embed the struct filename inside the names_cache
150 * allocation
151 */
152 kname = (char *)result + sizeof(*result);
153 result->name = kname;
154 result->separate = false;
155 max = EMBEDDED_NAME_MAX;
156
157 recopy:
158 len = strncpy_from_user(kname, filename, max);
159 if (unlikely(len < 0)) {
160 err = ERR_PTR(len);
161 goto error;
162 }
163
164 /*
165 * Uh-oh. We have a name that's approaching PATH_MAX. Allocate a
166 * separate struct filename so we can dedicate the entire
167 * names_cache allocation for the pathname, and re-do the copy from
168 * userland.
169 */
170 if (len == EMBEDDED_NAME_MAX && max == EMBEDDED_NAME_MAX) {
171 kname = (char *)result;
172
173 result = kzalloc(sizeof(*result), GFP_KERNEL);
174 if (!result) {
175 err = ERR_PTR(-ENOMEM);
176 result = (struct filename *)kname;
177 goto error;
178 }
179 result->name = kname;
180 result->separate = true;
181 max = PATH_MAX;
182 goto recopy;
183 }
184
185 /* The empty path is special. */
186 if (unlikely(!len)) {
187 if (empty)
188 *empty = 1;
189 err = ERR_PTR(-ENOENT);
190 if (!(flags & LOOKUP_EMPTY))
191 goto error;
192 }
193
194 err = ERR_PTR(-ENAMETOOLONG);
195 if (unlikely(len >= PATH_MAX))
196 goto error;
197
198 result->uptr = filename;
199 audit_getname(result);
200 return result;
201
202 error:
203 final_putname(result);
204 return err;
205 }
206
207 struct filename *
208 getname(const char __user * filename)
209 {
210 return getname_flags(filename, 0, NULL);
211 }
212 EXPORT_SYMBOL(getname);
213
214 #ifdef CONFIG_AUDITSYSCALL
215 void putname(struct filename *name)
216 {
217 if (unlikely(!audit_dummy_context()))
218 return audit_putname(name);
219 final_putname(name);
220 }
221 #endif
222
223 static int check_acl(struct inode *inode, int mask)
224 {
225 #ifdef CONFIG_FS_POSIX_ACL
226 struct posix_acl *acl;
227
228 if (mask & MAY_NOT_BLOCK) {
229 acl = get_cached_acl_rcu(inode, ACL_TYPE_ACCESS);
230 if (!acl)
231 return -EAGAIN;
232 /* no ->get_acl() calls in RCU mode... */
233 if (acl == ACL_NOT_CACHED)
234 return -ECHILD;
235 return posix_acl_permission(inode, acl, mask & ~MAY_NOT_BLOCK);
236 }
237
238 acl = get_cached_acl(inode, ACL_TYPE_ACCESS);
239
240 /*
241 * A filesystem can force a ACL callback by just never filling the
242 * ACL cache. But normally you'd fill the cache either at inode
243 * instantiation time, or on the first ->get_acl call.
244 *
245 * If the filesystem doesn't have a get_acl() function at all, we'll
246 * just create the negative cache entry.
247 */
248 if (acl == ACL_NOT_CACHED) {
249 if (inode->i_op->get_acl) {
250 acl = inode->i_op->get_acl(inode, ACL_TYPE_ACCESS);
251 if (IS_ERR(acl))
252 return PTR_ERR(acl);
253 } else {
254 set_cached_acl(inode, ACL_TYPE_ACCESS, NULL);
255 return -EAGAIN;
256 }
257 }
258
259 if (acl) {
260 int error = posix_acl_permission(inode, acl, mask);
261 posix_acl_release(acl);
262 return error;
263 }
264 #endif
265
266 return -EAGAIN;
267 }
268
269 /*
270 * This does the basic permission checking
271 */
272 static int acl_permission_check(struct inode *inode, int mask)
273 {
274 unsigned int mode = inode->i_mode;
275
276 if (likely(uid_eq(current_fsuid(), inode->i_uid)))
277 mode >>= 6;
278 else {
279 if (IS_POSIXACL(inode) && (mode & S_IRWXG)) {
280 int error = check_acl(inode, mask);
281 if (error != -EAGAIN)
282 return error;
283 }
284
285 if (in_group_p(inode->i_gid))
286 mode >>= 3;
287 }
288
289 /*
290 * If the DACs are ok we don't need any capability check.
291 */
292 if ((mask & ~mode & (MAY_READ | MAY_WRITE | MAY_EXEC)) == 0)
293 return 0;
294 return -EACCES;
295 }
296
297 /**
298 * generic_permission - check for access rights on a Posix-like filesystem
299 * @inode: inode to check access rights for
300 * @mask: right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC, ...)
301 *
302 * Used to check for read/write/execute permissions on a file.
303 * We use "fsuid" for this, letting us set arbitrary permissions
304 * for filesystem access without changing the "normal" uids which
305 * are used for other things.
306 *
307 * generic_permission is rcu-walk aware. It returns -ECHILD in case an rcu-walk
308 * request cannot be satisfied (eg. requires blocking or too much complexity).
309 * It would then be called again in ref-walk mode.
310 */
311 int generic_permission(struct inode *inode, int mask)
312 {
313 int ret;
314
315 /*
316 * Do the basic permission checks.
317 */
318 ret = acl_permission_check(inode, mask);
319 if (ret != -EACCES)
320 return ret;
321
322 if (S_ISDIR(inode->i_mode)) {
323 /* DACs are overridable for directories */
324 if (inode_capable(inode, CAP_DAC_OVERRIDE))
325 return 0;
326 if (!(mask & MAY_WRITE))
327 if (inode_capable(inode, CAP_DAC_READ_SEARCH))
328 return 0;
329 return -EACCES;
330 }
331 /*
332 * Read/write DACs are always overridable.
333 * Executable DACs are overridable when there is
334 * at least one exec bit set.
335 */
336 if (!(mask & MAY_EXEC) || (inode->i_mode & S_IXUGO))
337 if (inode_capable(inode, CAP_DAC_OVERRIDE))
338 return 0;
339
340 /*
341 * Searching includes executable on directories, else just read.
342 */
343 mask &= MAY_READ | MAY_WRITE | MAY_EXEC;
344 if (mask == MAY_READ)
345 if (inode_capable(inode, CAP_DAC_READ_SEARCH))
346 return 0;
347
348 return -EACCES;
349 }
350
351 /*
352 * We _really_ want to just do "generic_permission()" without
353 * even looking at the inode->i_op values. So we keep a cache
354 * flag in inode->i_opflags, that says "this has not special
355 * permission function, use the fast case".
356 */
357 static inline int do_inode_permission(struct inode *inode, int mask)
358 {
359 if (unlikely(!(inode->i_opflags & IOP_FASTPERM))) {
360 if (likely(inode->i_op->permission))
361 return inode->i_op->permission(inode, mask);
362
363 /* This gets set once for the inode lifetime */
364 spin_lock(&inode->i_lock);
365 inode->i_opflags |= IOP_FASTPERM;
366 spin_unlock(&inode->i_lock);
367 }
368 return generic_permission(inode, mask);
369 }
370
371 /**
372 * __inode_permission - Check for access rights to a given inode
373 * @inode: Inode to check permission on
374 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
375 *
376 * Check for read/write/execute permissions on an inode.
377 *
378 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
379 *
380 * This does not check for a read-only file system. You probably want
381 * inode_permission().
382 */
383 int __inode_permission(struct inode *inode, int mask)
384 {
385 int retval;
386
387 if (unlikely(mask & MAY_WRITE)) {
388 /*
389 * Nobody gets write access to an immutable file.
390 */
391 if (IS_IMMUTABLE(inode))
392 return -EACCES;
393 }
394
395 retval = do_inode_permission(inode, mask);
396 if (retval)
397 return retval;
398
399 retval = devcgroup_inode_permission(inode, mask);
400 if (retval)
401 return retval;
402
403 return security_inode_permission(inode, mask);
404 }
405
406 /**
407 * sb_permission - Check superblock-level permissions
408 * @sb: Superblock of inode to check permission on
409 * @inode: Inode to check permission on
410 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
411 *
412 * Separate out file-system wide checks from inode-specific permission checks.
413 */
414 static int sb_permission(struct super_block *sb, struct inode *inode, int mask)
415 {
416 if (unlikely(mask & MAY_WRITE)) {
417 umode_t mode = inode->i_mode;
418
419 /* Nobody gets write access to a read-only fs. */
420 if ((sb->s_flags & MS_RDONLY) &&
421 (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)))
422 return -EROFS;
423 }
424 return 0;
425 }
426
427 /**
428 * inode_permission - Check for access rights to a given inode
429 * @inode: Inode to check permission on
430 * @mask: Right to check for (%MAY_READ, %MAY_WRITE, %MAY_EXEC)
431 *
432 * Check for read/write/execute permissions on an inode. We use fs[ug]id for
433 * this, letting us set arbitrary permissions for filesystem access without
434 * changing the "normal" UIDs which are used for other things.
435 *
436 * When checking for MAY_APPEND, MAY_WRITE must also be set in @mask.
437 */
438 int inode_permission(struct inode *inode, int mask)
439 {
440 int retval;
441
442 retval = sb_permission(inode->i_sb, inode, mask);
443 if (retval)
444 return retval;
445 return __inode_permission(inode, mask);
446 }
447
448 /**
449 * path_get - get a reference to a path
450 * @path: path to get the reference to
451 *
452 * Given a path increment the reference count to the dentry and the vfsmount.
453 */
454 void path_get(const struct path *path)
455 {
456 mntget(path->mnt);
457 dget(path->dentry);
458 }
459 EXPORT_SYMBOL(path_get);
460
461 /**
462 * path_put - put a reference to a path
463 * @path: path to put the reference to
464 *
465 * Given a path decrement the reference count to the dentry and the vfsmount.
466 */
467 void path_put(const struct path *path)
468 {
469 dput(path->dentry);
470 mntput(path->mnt);
471 }
472 EXPORT_SYMBOL(path_put);
473
474 /*
475 * Path walking has 2 modes, rcu-walk and ref-walk (see
476 * Documentation/filesystems/path-lookup.txt). In situations when we can't
477 * continue in RCU mode, we attempt to drop out of rcu-walk mode and grab
478 * normal reference counts on dentries and vfsmounts to transition to rcu-walk
479 * mode. Refcounts are grabbed at the last known good point before rcu-walk
480 * got stuck, so ref-walk may continue from there. If this is not successful
481 * (eg. a seqcount has changed), then failure is returned and it's up to caller
482 * to restart the path walk from the beginning in ref-walk mode.
483 */
484
485 static inline void lock_rcu_walk(void)
486 {
487 br_read_lock(&vfsmount_lock);
488 rcu_read_lock();
489 }
490
491 static inline void unlock_rcu_walk(void)
492 {
493 rcu_read_unlock();
494 br_read_unlock(&vfsmount_lock);
495 }
496
497 /**
498 * unlazy_walk - try to switch to ref-walk mode.
499 * @nd: nameidata pathwalk data
500 * @dentry: child of nd->path.dentry or NULL
501 * Returns: 0 on success, -ECHILD on failure
502 *
503 * unlazy_walk attempts to legitimize the current nd->path, nd->root and dentry
504 * for ref-walk mode. @dentry must be a path found by a do_lookup call on
505 * @nd or NULL. Must be called from rcu-walk context.
506 */
507 static int unlazy_walk(struct nameidata *nd, struct dentry *dentry)
508 {
509 struct fs_struct *fs = current->fs;
510 struct dentry *parent = nd->path.dentry;
511
512 BUG_ON(!(nd->flags & LOOKUP_RCU));
513
514 /*
515 * Get a reference to the parent first: we're
516 * going to make "path_put(nd->path)" valid in
517 * non-RCU context for "terminate_walk()".
518 *
519 * If this doesn't work, return immediately with
520 * RCU walking still active (and then we will do
521 * the RCU walk cleanup in terminate_walk()).
522 */
523 if (!lockref_get_not_dead(&parent->d_lockref))
524 return -ECHILD;
525
526 /*
527 * After the mntget(), we terminate_walk() will do
528 * the right thing for non-RCU mode, and all our
529 * subsequent exit cases should unlock_rcu_walk()
530 * before returning.
531 */
532 mntget(nd->path.mnt);
533 nd->flags &= ~LOOKUP_RCU;
534
535 /*
536 * For a negative lookup, the lookup sequence point is the parents
537 * sequence point, and it only needs to revalidate the parent dentry.
538 *
539 * For a positive lookup, we need to move both the parent and the
540 * dentry from the RCU domain to be properly refcounted. And the
541 * sequence number in the dentry validates *both* dentry counters,
542 * since we checked the sequence number of the parent after we got
543 * the child sequence number. So we know the parent must still
544 * be valid if the child sequence number is still valid.
545 */
546 if (!dentry) {
547 if (read_seqcount_retry(&parent->d_seq, nd->seq))
548 goto out;
549 BUG_ON(nd->inode != parent->d_inode);
550 } else {
551 if (!lockref_get_not_dead(&dentry->d_lockref))
552 goto out;
553 if (read_seqcount_retry(&dentry->d_seq, nd->seq))
554 goto drop_dentry;
555 }
556
557 /*
558 * Sequence counts matched. Now make sure that the root is
559 * still valid and get it if required.
560 */
561 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
562 spin_lock(&fs->lock);
563 if (nd->root.mnt != fs->root.mnt || nd->root.dentry != fs->root.dentry)
564 goto unlock_and_drop_dentry;
565 path_get(&nd->root);
566 spin_unlock(&fs->lock);
567 }
568
569 unlock_rcu_walk();
570 return 0;
571
572 unlock_and_drop_dentry:
573 spin_unlock(&fs->lock);
574 drop_dentry:
575 unlock_rcu_walk();
576 dput(dentry);
577 goto drop_root_mnt;
578 out:
579 unlock_rcu_walk();
580 drop_root_mnt:
581 if (!(nd->flags & LOOKUP_ROOT))
582 nd->root.mnt = NULL;
583 return -ECHILD;
584 }
585
586 static inline int d_revalidate(struct dentry *dentry, unsigned int flags)
587 {
588 return dentry->d_op->d_revalidate(dentry, flags);
589 }
590
591 /**
592 * complete_walk - successful completion of path walk
593 * @nd: pointer nameidata
594 *
595 * If we had been in RCU mode, drop out of it and legitimize nd->path.
596 * Revalidate the final result, unless we'd already done that during
597 * the path walk or the filesystem doesn't ask for it. Return 0 on
598 * success, -error on failure. In case of failure caller does not
599 * need to drop nd->path.
600 */
601 static int complete_walk(struct nameidata *nd)
602 {
603 struct dentry *dentry = nd->path.dentry;
604 int status;
605
606 if (nd->flags & LOOKUP_RCU) {
607 nd->flags &= ~LOOKUP_RCU;
608 if (!(nd->flags & LOOKUP_ROOT))
609 nd->root.mnt = NULL;
610
611 if (unlikely(!lockref_get_not_dead(&dentry->d_lockref))) {
612 unlock_rcu_walk();
613 return -ECHILD;
614 }
615 if (read_seqcount_retry(&dentry->d_seq, nd->seq)) {
616 unlock_rcu_walk();
617 dput(dentry);
618 return -ECHILD;
619 }
620 mntget(nd->path.mnt);
621 unlock_rcu_walk();
622 }
623
624 if (likely(!(nd->flags & LOOKUP_JUMPED)))
625 return 0;
626
627 if (likely(!(dentry->d_flags & DCACHE_OP_WEAK_REVALIDATE)))
628 return 0;
629
630 status = dentry->d_op->d_weak_revalidate(dentry, nd->flags);
631 if (status > 0)
632 return 0;
633
634 if (!status)
635 status = -ESTALE;
636
637 path_put(&nd->path);
638 return status;
639 }
640
641 static __always_inline void set_root(struct nameidata *nd)
642 {
643 if (!nd->root.mnt)
644 get_fs_root(current->fs, &nd->root);
645 }
646
647 static int link_path_walk(const char *, struct nameidata *);
648
649 static __always_inline void set_root_rcu(struct nameidata *nd)
650 {
651 if (!nd->root.mnt) {
652 struct fs_struct *fs = current->fs;
653 unsigned seq;
654
655 do {
656 seq = read_seqcount_begin(&fs->seq);
657 nd->root = fs->root;
658 nd->seq = __read_seqcount_begin(&nd->root.dentry->d_seq);
659 } while (read_seqcount_retry(&fs->seq, seq));
660 }
661 }
662
663 static __always_inline int __vfs_follow_link(struct nameidata *nd, const char *link)
664 {
665 int ret;
666
667 if (IS_ERR(link))
668 goto fail;
669
670 if (*link == '/') {
671 set_root(nd);
672 path_put(&nd->path);
673 nd->path = nd->root;
674 path_get(&nd->root);
675 nd->flags |= LOOKUP_JUMPED;
676 }
677 nd->inode = nd->path.dentry->d_inode;
678
679 ret = link_path_walk(link, nd);
680 return ret;
681 fail:
682 path_put(&nd->path);
683 return PTR_ERR(link);
684 }
685
686 static void path_put_conditional(struct path *path, struct nameidata *nd)
687 {
688 dput(path->dentry);
689 if (path->mnt != nd->path.mnt)
690 mntput(path->mnt);
691 }
692
693 static inline void path_to_nameidata(const struct path *path,
694 struct nameidata *nd)
695 {
696 if (!(nd->flags & LOOKUP_RCU)) {
697 dput(nd->path.dentry);
698 if (nd->path.mnt != path->mnt)
699 mntput(nd->path.mnt);
700 }
701 nd->path.mnt = path->mnt;
702 nd->path.dentry = path->dentry;
703 }
704
705 /*
706 * Helper to directly jump to a known parsed path from ->follow_link,
707 * caller must have taken a reference to path beforehand.
708 */
709 void nd_jump_link(struct nameidata *nd, struct path *path)
710 {
711 path_put(&nd->path);
712
713 nd->path = *path;
714 nd->inode = nd->path.dentry->d_inode;
715 nd->flags |= LOOKUP_JUMPED;
716 }
717
718 static inline void put_link(struct nameidata *nd, struct path *link, void *cookie)
719 {
720 struct inode *inode = link->dentry->d_inode;
721 if (inode->i_op->put_link)
722 inode->i_op->put_link(link->dentry, nd, cookie);
723 path_put(link);
724 }
725
726 int sysctl_protected_symlinks __read_mostly = 0;
727 int sysctl_protected_hardlinks __read_mostly = 0;
728
729 /**
730 * may_follow_link - Check symlink following for unsafe situations
731 * @link: The path of the symlink
732 * @nd: nameidata pathwalk data
733 *
734 * In the case of the sysctl_protected_symlinks sysctl being enabled,
735 * CAP_DAC_OVERRIDE needs to be specifically ignored if the symlink is
736 * in a sticky world-writable directory. This is to protect privileged
737 * processes from failing races against path names that may change out
738 * from under them by way of other users creating malicious symlinks.
739 * It will permit symlinks to be followed only when outside a sticky
740 * world-writable directory, or when the uid of the symlink and follower
741 * match, or when the directory owner matches the symlink's owner.
742 *
743 * Returns 0 if following the symlink is allowed, -ve on error.
744 */
745 static inline int may_follow_link(struct path *link, struct nameidata *nd)
746 {
747 const struct inode *inode;
748 const struct inode *parent;
749
750 if (!sysctl_protected_symlinks)
751 return 0;
752
753 /* Allowed if owner and follower match. */
754 inode = link->dentry->d_inode;
755 if (uid_eq(current_cred()->fsuid, inode->i_uid))
756 return 0;
757
758 /* Allowed if parent directory not sticky and world-writable. */
759 parent = nd->path.dentry->d_inode;
760 if ((parent->i_mode & (S_ISVTX|S_IWOTH)) != (S_ISVTX|S_IWOTH))
761 return 0;
762
763 /* Allowed if parent directory and link owner match. */
764 if (uid_eq(parent->i_uid, inode->i_uid))
765 return 0;
766
767 audit_log_link_denied("follow_link", link);
768 path_put_conditional(link, nd);
769 path_put(&nd->path);
770 return -EACCES;
771 }
772
773 /**
774 * safe_hardlink_source - Check for safe hardlink conditions
775 * @inode: the source inode to hardlink from
776 *
777 * Return false if at least one of the following conditions:
778 * - inode is not a regular file
779 * - inode is setuid
780 * - inode is setgid and group-exec
781 * - access failure for read and write
782 *
783 * Otherwise returns true.
784 */
785 static bool safe_hardlink_source(struct inode *inode)
786 {
787 umode_t mode = inode->i_mode;
788
789 /* Special files should not get pinned to the filesystem. */
790 if (!S_ISREG(mode))
791 return false;
792
793 /* Setuid files should not get pinned to the filesystem. */
794 if (mode & S_ISUID)
795 return false;
796
797 /* Executable setgid files should not get pinned to the filesystem. */
798 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP))
799 return false;
800
801 /* Hardlinking to unreadable or unwritable sources is dangerous. */
802 if (inode_permission(inode, MAY_READ | MAY_WRITE))
803 return false;
804
805 return true;
806 }
807
808 /**
809 * may_linkat - Check permissions for creating a hardlink
810 * @link: the source to hardlink from
811 *
812 * Block hardlink when all of:
813 * - sysctl_protected_hardlinks enabled
814 * - fsuid does not match inode
815 * - hardlink source is unsafe (see safe_hardlink_source() above)
816 * - not CAP_FOWNER
817 *
818 * Returns 0 if successful, -ve on error.
819 */
820 static int may_linkat(struct path *link)
821 {
822 const struct cred *cred;
823 struct inode *inode;
824
825 if (!sysctl_protected_hardlinks)
826 return 0;
827
828 cred = current_cred();
829 inode = link->dentry->d_inode;
830
831 /* Source inode owner (or CAP_FOWNER) can hardlink all they like,
832 * otherwise, it must be a safe source.
833 */
834 if (uid_eq(cred->fsuid, inode->i_uid) || safe_hardlink_source(inode) ||
835 capable(CAP_FOWNER))
836 return 0;
837
838 audit_log_link_denied("linkat", link);
839 return -EPERM;
840 }
841
842 static __always_inline int
843 follow_link(struct path *link, struct nameidata *nd, void **p)
844 {
845 struct dentry *dentry = link->dentry;
846 int error;
847 char *s;
848
849 BUG_ON(nd->flags & LOOKUP_RCU);
850
851 if (link->mnt == nd->path.mnt)
852 mntget(link->mnt);
853
854 error = -ELOOP;
855 if (unlikely(current->total_link_count >= 40))
856 goto out_put_nd_path;
857
858 cond_resched();
859 current->total_link_count++;
860
861 touch_atime(link);
862 nd_set_link(nd, NULL);
863
864 error = security_inode_follow_link(link->dentry, nd);
865 if (error)
866 goto out_put_nd_path;
867
868 nd->last_type = LAST_BIND;
869 *p = dentry->d_inode->i_op->follow_link(dentry, nd);
870 error = PTR_ERR(*p);
871 if (IS_ERR(*p))
872 goto out_put_nd_path;
873
874 error = 0;
875 s = nd_get_link(nd);
876 if (s) {
877 error = __vfs_follow_link(nd, s);
878 if (unlikely(error))
879 put_link(nd, link, *p);
880 }
881
882 return error;
883
884 out_put_nd_path:
885 *p = NULL;
886 path_put(&nd->path);
887 path_put(link);
888 return error;
889 }
890
891 static int follow_up_rcu(struct path *path)
892 {
893 struct mount *mnt = real_mount(path->mnt);
894 struct mount *parent;
895 struct dentry *mountpoint;
896
897 parent = mnt->mnt_parent;
898 if (&parent->mnt == path->mnt)
899 return 0;
900 mountpoint = mnt->mnt_mountpoint;
901 path->dentry = mountpoint;
902 path->mnt = &parent->mnt;
903 return 1;
904 }
905
906 /*
907 * follow_up - Find the mountpoint of path's vfsmount
908 *
909 * Given a path, find the mountpoint of its source file system.
910 * Replace @path with the path of the mountpoint in the parent mount.
911 * Up is towards /.
912 *
913 * Return 1 if we went up a level and 0 if we were already at the
914 * root.
915 */
916 int follow_up(struct path *path)
917 {
918 struct mount *mnt = real_mount(path->mnt);
919 struct mount *parent;
920 struct dentry *mountpoint;
921
922 br_read_lock(&vfsmount_lock);
923 parent = mnt->mnt_parent;
924 if (parent == mnt) {
925 br_read_unlock(&vfsmount_lock);
926 return 0;
927 }
928 mntget(&parent->mnt);
929 mountpoint = dget(mnt->mnt_mountpoint);
930 br_read_unlock(&vfsmount_lock);
931 dput(path->dentry);
932 path->dentry = mountpoint;
933 mntput(path->mnt);
934 path->mnt = &parent->mnt;
935 return 1;
936 }
937
938 /*
939 * Perform an automount
940 * - return -EISDIR to tell follow_managed() to stop and return the path we
941 * were called with.
942 */
943 static int follow_automount(struct path *path, unsigned flags,
944 bool *need_mntput)
945 {
946 struct vfsmount *mnt;
947 int err;
948
949 if (!path->dentry->d_op || !path->dentry->d_op->d_automount)
950 return -EREMOTE;
951
952 /* We don't want to mount if someone's just doing a stat -
953 * unless they're stat'ing a directory and appended a '/' to
954 * the name.
955 *
956 * We do, however, want to mount if someone wants to open or
957 * create a file of any type under the mountpoint, wants to
958 * traverse through the mountpoint or wants to open the
959 * mounted directory. Also, autofs may mark negative dentries
960 * as being automount points. These will need the attentions
961 * of the daemon to instantiate them before they can be used.
962 */
963 if (!(flags & (LOOKUP_PARENT | LOOKUP_DIRECTORY |
964 LOOKUP_OPEN | LOOKUP_CREATE | LOOKUP_AUTOMOUNT)) &&
965 path->dentry->d_inode)
966 return -EISDIR;
967
968 current->total_link_count++;
969 if (current->total_link_count >= 40)
970 return -ELOOP;
971
972 mnt = path->dentry->d_op->d_automount(path);
973 if (IS_ERR(mnt)) {
974 /*
975 * The filesystem is allowed to return -EISDIR here to indicate
976 * it doesn't want to automount. For instance, autofs would do
977 * this so that its userspace daemon can mount on this dentry.
978 *
979 * However, we can only permit this if it's a terminal point in
980 * the path being looked up; if it wasn't then the remainder of
981 * the path is inaccessible and we should say so.
982 */
983 if (PTR_ERR(mnt) == -EISDIR && (flags & LOOKUP_PARENT))
984 return -EREMOTE;
985 return PTR_ERR(mnt);
986 }
987
988 if (!mnt) /* mount collision */
989 return 0;
990
991 if (!*need_mntput) {
992 /* lock_mount() may release path->mnt on error */
993 mntget(path->mnt);
994 *need_mntput = true;
995 }
996 err = finish_automount(mnt, path);
997
998 switch (err) {
999 case -EBUSY:
1000 /* Someone else made a mount here whilst we were busy */
1001 return 0;
1002 case 0:
1003 path_put(path);
1004 path->mnt = mnt;
1005 path->dentry = dget(mnt->mnt_root);
1006 return 0;
1007 default:
1008 return err;
1009 }
1010
1011 }
1012
1013 /*
1014 * Handle a dentry that is managed in some way.
1015 * - Flagged for transit management (autofs)
1016 * - Flagged as mountpoint
1017 * - Flagged as automount point
1018 *
1019 * This may only be called in refwalk mode.
1020 *
1021 * Serialization is taken care of in namespace.c
1022 */
1023 static int follow_managed(struct path *path, unsigned flags)
1024 {
1025 struct vfsmount *mnt = path->mnt; /* held by caller, must be left alone */
1026 unsigned managed;
1027 bool need_mntput = false;
1028 int ret = 0;
1029
1030 /* Given that we're not holding a lock here, we retain the value in a
1031 * local variable for each dentry as we look at it so that we don't see
1032 * the components of that value change under us */
1033 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1034 managed &= DCACHE_MANAGED_DENTRY,
1035 unlikely(managed != 0)) {
1036 /* Allow the filesystem to manage the transit without i_mutex
1037 * being held. */
1038 if (managed & DCACHE_MANAGE_TRANSIT) {
1039 BUG_ON(!path->dentry->d_op);
1040 BUG_ON(!path->dentry->d_op->d_manage);
1041 ret = path->dentry->d_op->d_manage(path->dentry, false);
1042 if (ret < 0)
1043 break;
1044 }
1045
1046 /* Transit to a mounted filesystem. */
1047 if (managed & DCACHE_MOUNTED) {
1048 struct vfsmount *mounted = lookup_mnt(path);
1049 if (mounted) {
1050 dput(path->dentry);
1051 if (need_mntput)
1052 mntput(path->mnt);
1053 path->mnt = mounted;
1054 path->dentry = dget(mounted->mnt_root);
1055 need_mntput = true;
1056 continue;
1057 }
1058
1059 /* Something is mounted on this dentry in another
1060 * namespace and/or whatever was mounted there in this
1061 * namespace got unmounted before we managed to get the
1062 * vfsmount_lock */
1063 }
1064
1065 /* Handle an automount point */
1066 if (managed & DCACHE_NEED_AUTOMOUNT) {
1067 ret = follow_automount(path, flags, &need_mntput);
1068 if (ret < 0)
1069 break;
1070 continue;
1071 }
1072
1073 /* We didn't change the current path point */
1074 break;
1075 }
1076
1077 if (need_mntput && path->mnt == mnt)
1078 mntput(path->mnt);
1079 if (ret == -EISDIR)
1080 ret = 0;
1081 return ret < 0 ? ret : need_mntput;
1082 }
1083
1084 int follow_down_one(struct path *path)
1085 {
1086 struct vfsmount *mounted;
1087
1088 mounted = lookup_mnt(path);
1089 if (mounted) {
1090 dput(path->dentry);
1091 mntput(path->mnt);
1092 path->mnt = mounted;
1093 path->dentry = dget(mounted->mnt_root);
1094 return 1;
1095 }
1096 return 0;
1097 }
1098
1099 static inline bool managed_dentry_might_block(struct dentry *dentry)
1100 {
1101 return (dentry->d_flags & DCACHE_MANAGE_TRANSIT &&
1102 dentry->d_op->d_manage(dentry, true) < 0);
1103 }
1104
1105 /*
1106 * Try to skip to top of mountpoint pile in rcuwalk mode. Fail if
1107 * we meet a managed dentry that would need blocking.
1108 */
1109 static bool __follow_mount_rcu(struct nameidata *nd, struct path *path,
1110 struct inode **inode)
1111 {
1112 for (;;) {
1113 struct mount *mounted;
1114 /*
1115 * Don't forget we might have a non-mountpoint managed dentry
1116 * that wants to block transit.
1117 */
1118 if (unlikely(managed_dentry_might_block(path->dentry)))
1119 return false;
1120
1121 if (!d_mountpoint(path->dentry))
1122 break;
1123
1124 mounted = __lookup_mnt(path->mnt, path->dentry, 1);
1125 if (!mounted)
1126 break;
1127 path->mnt = &mounted->mnt;
1128 path->dentry = mounted->mnt.mnt_root;
1129 nd->flags |= LOOKUP_JUMPED;
1130 nd->seq = read_seqcount_begin(&path->dentry->d_seq);
1131 /*
1132 * Update the inode too. We don't need to re-check the
1133 * dentry sequence number here after this d_inode read,
1134 * because a mount-point is always pinned.
1135 */
1136 *inode = path->dentry->d_inode;
1137 }
1138 return true;
1139 }
1140
1141 static void follow_mount_rcu(struct nameidata *nd)
1142 {
1143 while (d_mountpoint(nd->path.dentry)) {
1144 struct mount *mounted;
1145 mounted = __lookup_mnt(nd->path.mnt, nd->path.dentry, 1);
1146 if (!mounted)
1147 break;
1148 nd->path.mnt = &mounted->mnt;
1149 nd->path.dentry = mounted->mnt.mnt_root;
1150 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1151 }
1152 }
1153
1154 static int follow_dotdot_rcu(struct nameidata *nd)
1155 {
1156 set_root_rcu(nd);
1157
1158 while (1) {
1159 if (nd->path.dentry == nd->root.dentry &&
1160 nd->path.mnt == nd->root.mnt) {
1161 break;
1162 }
1163 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1164 struct dentry *old = nd->path.dentry;
1165 struct dentry *parent = old->d_parent;
1166 unsigned seq;
1167
1168 seq = read_seqcount_begin(&parent->d_seq);
1169 if (read_seqcount_retry(&old->d_seq, nd->seq))
1170 goto failed;
1171 nd->path.dentry = parent;
1172 nd->seq = seq;
1173 break;
1174 }
1175 if (!follow_up_rcu(&nd->path))
1176 break;
1177 nd->seq = read_seqcount_begin(&nd->path.dentry->d_seq);
1178 }
1179 follow_mount_rcu(nd);
1180 nd->inode = nd->path.dentry->d_inode;
1181 return 0;
1182
1183 failed:
1184 nd->flags &= ~LOOKUP_RCU;
1185 if (!(nd->flags & LOOKUP_ROOT))
1186 nd->root.mnt = NULL;
1187 unlock_rcu_walk();
1188 return -ECHILD;
1189 }
1190
1191 /*
1192 * Follow down to the covering mount currently visible to userspace. At each
1193 * point, the filesystem owning that dentry may be queried as to whether the
1194 * caller is permitted to proceed or not.
1195 */
1196 int follow_down(struct path *path)
1197 {
1198 unsigned managed;
1199 int ret;
1200
1201 while (managed = ACCESS_ONCE(path->dentry->d_flags),
1202 unlikely(managed & DCACHE_MANAGED_DENTRY)) {
1203 /* Allow the filesystem to manage the transit without i_mutex
1204 * being held.
1205 *
1206 * We indicate to the filesystem if someone is trying to mount
1207 * something here. This gives autofs the chance to deny anyone
1208 * other than its daemon the right to mount on its
1209 * superstructure.
1210 *
1211 * The filesystem may sleep at this point.
1212 */
1213 if (managed & DCACHE_MANAGE_TRANSIT) {
1214 BUG_ON(!path->dentry->d_op);
1215 BUG_ON(!path->dentry->d_op->d_manage);
1216 ret = path->dentry->d_op->d_manage(
1217 path->dentry, false);
1218 if (ret < 0)
1219 return ret == -EISDIR ? 0 : ret;
1220 }
1221
1222 /* Transit to a mounted filesystem. */
1223 if (managed & DCACHE_MOUNTED) {
1224 struct vfsmount *mounted = lookup_mnt(path);
1225 if (!mounted)
1226 break;
1227 dput(path->dentry);
1228 mntput(path->mnt);
1229 path->mnt = mounted;
1230 path->dentry = dget(mounted->mnt_root);
1231 continue;
1232 }
1233
1234 /* Don't handle automount points here */
1235 break;
1236 }
1237 return 0;
1238 }
1239
1240 /*
1241 * Skip to top of mountpoint pile in refwalk mode for follow_dotdot()
1242 */
1243 static void follow_mount(struct path *path)
1244 {
1245 while (d_mountpoint(path->dentry)) {
1246 struct vfsmount *mounted = lookup_mnt(path);
1247 if (!mounted)
1248 break;
1249 dput(path->dentry);
1250 mntput(path->mnt);
1251 path->mnt = mounted;
1252 path->dentry = dget(mounted->mnt_root);
1253 }
1254 }
1255
1256 static void follow_dotdot(struct nameidata *nd)
1257 {
1258 set_root(nd);
1259
1260 while(1) {
1261 struct dentry *old = nd->path.dentry;
1262
1263 if (nd->path.dentry == nd->root.dentry &&
1264 nd->path.mnt == nd->root.mnt) {
1265 break;
1266 }
1267 if (nd->path.dentry != nd->path.mnt->mnt_root) {
1268 /* rare case of legitimate dget_parent()... */
1269 nd->path.dentry = dget_parent(nd->path.dentry);
1270 dput(old);
1271 break;
1272 }
1273 if (!follow_up(&nd->path))
1274 break;
1275 }
1276 follow_mount(&nd->path);
1277 nd->inode = nd->path.dentry->d_inode;
1278 }
1279
1280 /*
1281 * This looks up the name in dcache, possibly revalidates the old dentry and
1282 * allocates a new one if not found or not valid. In the need_lookup argument
1283 * returns whether i_op->lookup is necessary.
1284 *
1285 * dir->d_inode->i_mutex must be held
1286 */
1287 static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir,
1288 unsigned int flags, bool *need_lookup)
1289 {
1290 struct dentry *dentry;
1291 int error;
1292
1293 *need_lookup = false;
1294 dentry = d_lookup(dir, name);
1295 if (dentry) {
1296 if (dentry->d_flags & DCACHE_OP_REVALIDATE) {
1297 error = d_revalidate(dentry, flags);
1298 if (unlikely(error <= 0)) {
1299 if (error < 0) {
1300 dput(dentry);
1301 return ERR_PTR(error);
1302 } else if (!d_invalidate(dentry)) {
1303 dput(dentry);
1304 dentry = NULL;
1305 }
1306 }
1307 }
1308 }
1309
1310 if (!dentry) {
1311 dentry = d_alloc(dir, name);
1312 if (unlikely(!dentry))
1313 return ERR_PTR(-ENOMEM);
1314
1315 *need_lookup = true;
1316 }
1317 return dentry;
1318 }
1319
1320 /*
1321 * Call i_op->lookup on the dentry. The dentry must be negative but may be
1322 * hashed if it was pouplated with DCACHE_NEED_LOOKUP.
1323 *
1324 * dir->d_inode->i_mutex must be held
1325 */
1326 static struct dentry *lookup_real(struct inode *dir, struct dentry *dentry,
1327 unsigned int flags)
1328 {
1329 struct dentry *old;
1330
1331 /* Don't create child dentry for a dead directory. */
1332 if (unlikely(IS_DEADDIR(dir))) {
1333 dput(dentry);
1334 return ERR_PTR(-ENOENT);
1335 }
1336
1337 old = dir->i_op->lookup(dir, dentry, flags);
1338 if (unlikely(old)) {
1339 dput(dentry);
1340 dentry = old;
1341 }
1342 return dentry;
1343 }
1344
1345 static struct dentry *__lookup_hash(struct qstr *name,
1346 struct dentry *base, unsigned int flags)
1347 {
1348 bool need_lookup;
1349 struct dentry *dentry;
1350
1351 dentry = lookup_dcache(name, base, flags, &need_lookup);
1352 if (!need_lookup)
1353 return dentry;
1354
1355 return lookup_real(base->d_inode, dentry, flags);
1356 }
1357
1358 /*
1359 * It's more convoluted than I'd like it to be, but... it's still fairly
1360 * small and for now I'd prefer to have fast path as straight as possible.
1361 * It _is_ time-critical.
1362 */
1363 static int lookup_fast(struct nameidata *nd,
1364 struct path *path, struct inode **inode)
1365 {
1366 struct vfsmount *mnt = nd->path.mnt;
1367 struct dentry *dentry, *parent = nd->path.dentry;
1368 int need_reval = 1;
1369 int status = 1;
1370 int err;
1371
1372 /*
1373 * Rename seqlock is not required here because in the off chance
1374 * of a false negative due to a concurrent rename, we're going to
1375 * do the non-racy lookup, below.
1376 */
1377 if (nd->flags & LOOKUP_RCU) {
1378 unsigned seq;
1379 dentry = __d_lookup_rcu(parent, &nd->last, &seq);
1380 if (!dentry)
1381 goto unlazy;
1382
1383 /*
1384 * This sequence count validates that the inode matches
1385 * the dentry name information from lookup.
1386 */
1387 *inode = dentry->d_inode;
1388 if (read_seqcount_retry(&dentry->d_seq, seq))
1389 return -ECHILD;
1390
1391 /*
1392 * This sequence count validates that the parent had no
1393 * changes while we did the lookup of the dentry above.
1394 *
1395 * The memory barrier in read_seqcount_begin of child is
1396 * enough, we can use __read_seqcount_retry here.
1397 */
1398 if (__read_seqcount_retry(&parent->d_seq, nd->seq))
1399 return -ECHILD;
1400 nd->seq = seq;
1401
1402 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE)) {
1403 status = d_revalidate(dentry, nd->flags);
1404 if (unlikely(status <= 0)) {
1405 if (status != -ECHILD)
1406 need_reval = 0;
1407 goto unlazy;
1408 }
1409 }
1410 path->mnt = mnt;
1411 path->dentry = dentry;
1412 if (unlikely(!__follow_mount_rcu(nd, path, inode)))
1413 goto unlazy;
1414 if (unlikely(path->dentry->d_flags & DCACHE_NEED_AUTOMOUNT))
1415 goto unlazy;
1416 return 0;
1417 unlazy:
1418 if (unlazy_walk(nd, dentry))
1419 return -ECHILD;
1420 } else {
1421 dentry = __d_lookup(parent, &nd->last);
1422 }
1423
1424 if (unlikely(!dentry))
1425 goto need_lookup;
1426
1427 if (unlikely(dentry->d_flags & DCACHE_OP_REVALIDATE) && need_reval)
1428 status = d_revalidate(dentry, nd->flags);
1429 if (unlikely(status <= 0)) {
1430 if (status < 0) {
1431 dput(dentry);
1432 return status;
1433 }
1434 if (!d_invalidate(dentry)) {
1435 dput(dentry);
1436 goto need_lookup;
1437 }
1438 }
1439
1440 path->mnt = mnt;
1441 path->dentry = dentry;
1442 err = follow_managed(path, nd->flags);
1443 if (unlikely(err < 0)) {
1444 path_put_conditional(path, nd);
1445 return err;
1446 }
1447 if (err)
1448 nd->flags |= LOOKUP_JUMPED;
1449 *inode = path->dentry->d_inode;
1450 return 0;
1451
1452 need_lookup:
1453 return 1;
1454 }
1455
1456 /* Fast lookup failed, do it the slow way */
1457 static int lookup_slow(struct nameidata *nd, struct path *path)
1458 {
1459 struct dentry *dentry, *parent;
1460 int err;
1461
1462 parent = nd->path.dentry;
1463 BUG_ON(nd->inode != parent->d_inode);
1464
1465 mutex_lock(&parent->d_inode->i_mutex);
1466 dentry = __lookup_hash(&nd->last, parent, nd->flags);
1467 mutex_unlock(&parent->d_inode->i_mutex);
1468 if (IS_ERR(dentry))
1469 return PTR_ERR(dentry);
1470 path->mnt = nd->path.mnt;
1471 path->dentry = dentry;
1472 err = follow_managed(path, nd->flags);
1473 if (unlikely(err < 0)) {
1474 path_put_conditional(path, nd);
1475 return err;
1476 }
1477 if (err)
1478 nd->flags |= LOOKUP_JUMPED;
1479 return 0;
1480 }
1481
1482 static inline int may_lookup(struct nameidata *nd)
1483 {
1484 if (nd->flags & LOOKUP_RCU) {
1485 int err = inode_permission(nd->inode, MAY_EXEC|MAY_NOT_BLOCK);
1486 if (err != -ECHILD)
1487 return err;
1488 if (unlazy_walk(nd, NULL))
1489 return -ECHILD;
1490 }
1491 return inode_permission(nd->inode, MAY_EXEC);
1492 }
1493
1494 static inline int handle_dots(struct nameidata *nd, int type)
1495 {
1496 if (type == LAST_DOTDOT) {
1497 if (nd->flags & LOOKUP_RCU) {
1498 if (follow_dotdot_rcu(nd))
1499 return -ECHILD;
1500 } else
1501 follow_dotdot(nd);
1502 }
1503 return 0;
1504 }
1505
1506 static void terminate_walk(struct nameidata *nd)
1507 {
1508 if (!(nd->flags & LOOKUP_RCU)) {
1509 path_put(&nd->path);
1510 } else {
1511 nd->flags &= ~LOOKUP_RCU;
1512 if (!(nd->flags & LOOKUP_ROOT))
1513 nd->root.mnt = NULL;
1514 unlock_rcu_walk();
1515 }
1516 }
1517
1518 /*
1519 * Do we need to follow links? We _really_ want to be able
1520 * to do this check without having to look at inode->i_op,
1521 * so we keep a cache of "no, this doesn't need follow_link"
1522 * for the common case.
1523 */
1524 static inline int should_follow_link(struct inode *inode, int follow)
1525 {
1526 if (unlikely(!(inode->i_opflags & IOP_NOFOLLOW))) {
1527 if (likely(inode->i_op->follow_link))
1528 return follow;
1529
1530 /* This gets set once for the inode lifetime */
1531 spin_lock(&inode->i_lock);
1532 inode->i_opflags |= IOP_NOFOLLOW;
1533 spin_unlock(&inode->i_lock);
1534 }
1535 return 0;
1536 }
1537
1538 static inline int walk_component(struct nameidata *nd, struct path *path,
1539 int follow)
1540 {
1541 struct inode *inode;
1542 int err;
1543 /*
1544 * "." and ".." are special - ".." especially so because it has
1545 * to be able to know about the current root directory and
1546 * parent relationships.
1547 */
1548 if (unlikely(nd->last_type != LAST_NORM))
1549 return handle_dots(nd, nd->last_type);
1550 err = lookup_fast(nd, path, &inode);
1551 if (unlikely(err)) {
1552 if (err < 0)
1553 goto out_err;
1554
1555 err = lookup_slow(nd, path);
1556 if (err < 0)
1557 goto out_err;
1558
1559 inode = path->dentry->d_inode;
1560 }
1561 err = -ENOENT;
1562 if (!inode)
1563 goto out_path_put;
1564
1565 if (should_follow_link(inode, follow)) {
1566 if (nd->flags & LOOKUP_RCU) {
1567 if (unlikely(unlazy_walk(nd, path->dentry))) {
1568 err = -ECHILD;
1569 goto out_err;
1570 }
1571 }
1572 BUG_ON(inode != path->dentry->d_inode);
1573 return 1;
1574 }
1575 path_to_nameidata(path, nd);
1576 nd->inode = inode;
1577 return 0;
1578
1579 out_path_put:
1580 path_to_nameidata(path, nd);
1581 out_err:
1582 terminate_walk(nd);
1583 return err;
1584 }
1585
1586 /*
1587 * This limits recursive symlink follows to 8, while
1588 * limiting consecutive symlinks to 40.
1589 *
1590 * Without that kind of total limit, nasty chains of consecutive
1591 * symlinks can cause almost arbitrarily long lookups.
1592 */
1593 static inline int nested_symlink(struct path *path, struct nameidata *nd)
1594 {
1595 int res;
1596
1597 if (unlikely(current->link_count >= MAX_NESTED_LINKS)) {
1598 path_put_conditional(path, nd);
1599 path_put(&nd->path);
1600 return -ELOOP;
1601 }
1602 BUG_ON(nd->depth >= MAX_NESTED_LINKS);
1603
1604 nd->depth++;
1605 current->link_count++;
1606
1607 do {
1608 struct path link = *path;
1609 void *cookie;
1610
1611 res = follow_link(&link, nd, &cookie);
1612 if (res)
1613 break;
1614 res = walk_component(nd, path, LOOKUP_FOLLOW);
1615 put_link(nd, &link, cookie);
1616 } while (res > 0);
1617
1618 current->link_count--;
1619 nd->depth--;
1620 return res;
1621 }
1622
1623 /*
1624 * We really don't want to look at inode->i_op->lookup
1625 * when we don't have to. So we keep a cache bit in
1626 * the inode ->i_opflags field that says "yes, we can
1627 * do lookup on this inode".
1628 */
1629 static inline int can_lookup(struct inode *inode)
1630 {
1631 if (likely(inode->i_opflags & IOP_LOOKUP))
1632 return 1;
1633 if (likely(!inode->i_op->lookup))
1634 return 0;
1635
1636 /* We do this once for the lifetime of the inode */
1637 spin_lock(&inode->i_lock);
1638 inode->i_opflags |= IOP_LOOKUP;
1639 spin_unlock(&inode->i_lock);
1640 return 1;
1641 }
1642
1643 /*
1644 * We can do the critical dentry name comparison and hashing
1645 * operations one word at a time, but we are limited to:
1646 *
1647 * - Architectures with fast unaligned word accesses. We could
1648 * do a "get_unaligned()" if this helps and is sufficiently
1649 * fast.
1650 *
1651 * - Little-endian machines (so that we can generate the mask
1652 * of low bytes efficiently). Again, we *could* do a byte
1653 * swapping load on big-endian architectures if that is not
1654 * expensive enough to make the optimization worthless.
1655 *
1656 * - non-CONFIG_DEBUG_PAGEALLOC configurations (so that we
1657 * do not trap on the (extremely unlikely) case of a page
1658 * crossing operation.
1659 *
1660 * - Furthermore, we need an efficient 64-bit compile for the
1661 * 64-bit case in order to generate the "number of bytes in
1662 * the final mask". Again, that could be replaced with a
1663 * efficient population count instruction or similar.
1664 */
1665 #ifdef CONFIG_DCACHE_WORD_ACCESS
1666
1667 #include <asm/word-at-a-time.h>
1668
1669 #ifdef CONFIG_64BIT
1670
1671 static inline unsigned int fold_hash(unsigned long hash)
1672 {
1673 hash += hash >> (8*sizeof(int));
1674 return hash;
1675 }
1676
1677 #else /* 32-bit case */
1678
1679 #define fold_hash(x) (x)
1680
1681 #endif
1682
1683 unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1684 {
1685 unsigned long a, mask;
1686 unsigned long hash = 0;
1687
1688 for (;;) {
1689 a = load_unaligned_zeropad(name);
1690 if (len < sizeof(unsigned long))
1691 break;
1692 hash += a;
1693 hash *= 9;
1694 name += sizeof(unsigned long);
1695 len -= sizeof(unsigned long);
1696 if (!len)
1697 goto done;
1698 }
1699 mask = ~(~0ul << len*8);
1700 hash += mask & a;
1701 done:
1702 return fold_hash(hash);
1703 }
1704 EXPORT_SYMBOL(full_name_hash);
1705
1706 /*
1707 * Calculate the length and hash of the path component, and
1708 * return the length of the component;
1709 */
1710 static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1711 {
1712 unsigned long a, b, adata, bdata, mask, hash, len;
1713 const struct word_at_a_time constants = WORD_AT_A_TIME_CONSTANTS;
1714
1715 hash = a = 0;
1716 len = -sizeof(unsigned long);
1717 do {
1718 hash = (hash + a) * 9;
1719 len += sizeof(unsigned long);
1720 a = load_unaligned_zeropad(name+len);
1721 b = a ^ REPEAT_BYTE('/');
1722 } while (!(has_zero(a, &adata, &constants) | has_zero(b, &bdata, &constants)));
1723
1724 adata = prep_zero_mask(a, adata, &constants);
1725 bdata = prep_zero_mask(b, bdata, &constants);
1726
1727 mask = create_zero_mask(adata | bdata);
1728
1729 hash += a & zero_bytemask(mask);
1730 *hashp = fold_hash(hash);
1731
1732 return len + find_zero(mask);
1733 }
1734
1735 #else
1736
1737 unsigned int full_name_hash(const unsigned char *name, unsigned int len)
1738 {
1739 unsigned long hash = init_name_hash();
1740 while (len--)
1741 hash = partial_name_hash(*name++, hash);
1742 return end_name_hash(hash);
1743 }
1744 EXPORT_SYMBOL(full_name_hash);
1745
1746 /*
1747 * We know there's a real path component here of at least
1748 * one character.
1749 */
1750 static inline unsigned long hash_name(const char *name, unsigned int *hashp)
1751 {
1752 unsigned long hash = init_name_hash();
1753 unsigned long len = 0, c;
1754
1755 c = (unsigned char)*name;
1756 do {
1757 len++;
1758 hash = partial_name_hash(c, hash);
1759 c = (unsigned char)name[len];
1760 } while (c && c != '/');
1761 *hashp = end_name_hash(hash);
1762 return len;
1763 }
1764
1765 #endif
1766
1767 /*
1768 * Name resolution.
1769 * This is the basic name resolution function, turning a pathname into
1770 * the final dentry. We expect 'base' to be positive and a directory.
1771 *
1772 * Returns 0 and nd will have valid dentry and mnt on success.
1773 * Returns error and drops reference to input namei data on failure.
1774 */
1775 static int link_path_walk(const char *name, struct nameidata *nd)
1776 {
1777 struct path next;
1778 int err;
1779
1780 while (*name=='/')
1781 name++;
1782 if (!*name)
1783 return 0;
1784
1785 /* At this point we know we have a real path component. */
1786 for(;;) {
1787 struct qstr this;
1788 long len;
1789 int type;
1790
1791 err = may_lookup(nd);
1792 if (err)
1793 break;
1794
1795 len = hash_name(name, &this.hash);
1796 this.name = name;
1797 this.len = len;
1798
1799 type = LAST_NORM;
1800 if (name[0] == '.') switch (len) {
1801 case 2:
1802 if (name[1] == '.') {
1803 type = LAST_DOTDOT;
1804 nd->flags |= LOOKUP_JUMPED;
1805 }
1806 break;
1807 case 1:
1808 type = LAST_DOT;
1809 }
1810 if (likely(type == LAST_NORM)) {
1811 struct dentry *parent = nd->path.dentry;
1812 nd->flags &= ~LOOKUP_JUMPED;
1813 if (unlikely(parent->d_flags & DCACHE_OP_HASH)) {
1814 err = parent->d_op->d_hash(parent, &this);
1815 if (err < 0)
1816 break;
1817 }
1818 }
1819
1820 nd->last = this;
1821 nd->last_type = type;
1822
1823 if (!name[len])
1824 return 0;
1825 /*
1826 * If it wasn't NUL, we know it was '/'. Skip that
1827 * slash, and continue until no more slashes.
1828 */
1829 do {
1830 len++;
1831 } while (unlikely(name[len] == '/'));
1832 if (!name[len])
1833 return 0;
1834
1835 name += len;
1836
1837 err = walk_component(nd, &next, LOOKUP_FOLLOW);
1838 if (err < 0)
1839 return err;
1840
1841 if (err) {
1842 err = nested_symlink(&next, nd);
1843 if (err)
1844 return err;
1845 }
1846 if (!can_lookup(nd->inode)) {
1847 err = -ENOTDIR;
1848 break;
1849 }
1850 }
1851 terminate_walk(nd);
1852 return err;
1853 }
1854
1855 static int path_init(int dfd, const char *name, unsigned int flags,
1856 struct nameidata *nd, struct file **fp)
1857 {
1858 int retval = 0;
1859
1860 nd->last_type = LAST_ROOT; /* if there are only slashes... */
1861 nd->flags = flags | LOOKUP_JUMPED;
1862 nd->depth = 0;
1863 if (flags & LOOKUP_ROOT) {
1864 struct inode *inode = nd->root.dentry->d_inode;
1865 if (*name) {
1866 if (!can_lookup(inode))
1867 return -ENOTDIR;
1868 retval = inode_permission(inode, MAY_EXEC);
1869 if (retval)
1870 return retval;
1871 }
1872 nd->path = nd->root;
1873 nd->inode = inode;
1874 if (flags & LOOKUP_RCU) {
1875 lock_rcu_walk();
1876 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1877 } else {
1878 path_get(&nd->path);
1879 }
1880 return 0;
1881 }
1882
1883 nd->root.mnt = NULL;
1884
1885 if (*name=='/') {
1886 if (flags & LOOKUP_RCU) {
1887 lock_rcu_walk();
1888 set_root_rcu(nd);
1889 } else {
1890 set_root(nd);
1891 path_get(&nd->root);
1892 }
1893 nd->path = nd->root;
1894 } else if (dfd == AT_FDCWD) {
1895 if (flags & LOOKUP_RCU) {
1896 struct fs_struct *fs = current->fs;
1897 unsigned seq;
1898
1899 lock_rcu_walk();
1900
1901 do {
1902 seq = read_seqcount_begin(&fs->seq);
1903 nd->path = fs->pwd;
1904 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1905 } while (read_seqcount_retry(&fs->seq, seq));
1906 } else {
1907 get_fs_pwd(current->fs, &nd->path);
1908 }
1909 } else {
1910 /* Caller must check execute permissions on the starting path component */
1911 struct fd f = fdget_raw(dfd);
1912 struct dentry *dentry;
1913
1914 if (!f.file)
1915 return -EBADF;
1916
1917 dentry = f.file->f_path.dentry;
1918
1919 if (*name) {
1920 if (!can_lookup(dentry->d_inode)) {
1921 fdput(f);
1922 return -ENOTDIR;
1923 }
1924 }
1925
1926 nd->path = f.file->f_path;
1927 if (flags & LOOKUP_RCU) {
1928 if (f.need_put)
1929 *fp = f.file;
1930 nd->seq = __read_seqcount_begin(&nd->path.dentry->d_seq);
1931 lock_rcu_walk();
1932 } else {
1933 path_get(&nd->path);
1934 fdput(f);
1935 }
1936 }
1937
1938 nd->inode = nd->path.dentry->d_inode;
1939 return 0;
1940 }
1941
1942 static inline int lookup_last(struct nameidata *nd, struct path *path)
1943 {
1944 if (nd->last_type == LAST_NORM && nd->last.name[nd->last.len])
1945 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
1946
1947 nd->flags &= ~LOOKUP_PARENT;
1948 return walk_component(nd, path, nd->flags & LOOKUP_FOLLOW);
1949 }
1950
1951 /* Returns 0 and nd will be valid on success; Retuns error, otherwise. */
1952 static int path_lookupat(int dfd, const char *name,
1953 unsigned int flags, struct nameidata *nd)
1954 {
1955 struct file *base = NULL;
1956 struct path path;
1957 int err;
1958
1959 /*
1960 * Path walking is largely split up into 2 different synchronisation
1961 * schemes, rcu-walk and ref-walk (explained in
1962 * Documentation/filesystems/path-lookup.txt). These share much of the
1963 * path walk code, but some things particularly setup, cleanup, and
1964 * following mounts are sufficiently divergent that functions are
1965 * duplicated. Typically there is a function foo(), and its RCU
1966 * analogue, foo_rcu().
1967 *
1968 * -ECHILD is the error number of choice (just to avoid clashes) that
1969 * is returned if some aspect of an rcu-walk fails. Such an error must
1970 * be handled by restarting a traditional ref-walk (which will always
1971 * be able to complete).
1972 */
1973 err = path_init(dfd, name, flags | LOOKUP_PARENT, nd, &base);
1974
1975 if (unlikely(err))
1976 return err;
1977
1978 current->total_link_count = 0;
1979 err = link_path_walk(name, nd);
1980
1981 if (!err && !(flags & LOOKUP_PARENT)) {
1982 err = lookup_last(nd, &path);
1983 while (err > 0) {
1984 void *cookie;
1985 struct path link = path;
1986 err = may_follow_link(&link, nd);
1987 if (unlikely(err))
1988 break;
1989 nd->flags |= LOOKUP_PARENT;
1990 err = follow_link(&link, nd, &cookie);
1991 if (err)
1992 break;
1993 err = lookup_last(nd, &path);
1994 put_link(nd, &link, cookie);
1995 }
1996 }
1997
1998 if (!err)
1999 err = complete_walk(nd);
2000
2001 if (!err && nd->flags & LOOKUP_DIRECTORY) {
2002 if (!can_lookup(nd->inode)) {
2003 path_put(&nd->path);
2004 err = -ENOTDIR;
2005 }
2006 }
2007
2008 if (base)
2009 fput(base);
2010
2011 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT)) {
2012 path_put(&nd->root);
2013 nd->root.mnt = NULL;
2014 }
2015 return err;
2016 }
2017
2018 static int filename_lookup(int dfd, struct filename *name,
2019 unsigned int flags, struct nameidata *nd)
2020 {
2021 int retval = path_lookupat(dfd, name->name, flags | LOOKUP_RCU, nd);
2022 if (unlikely(retval == -ECHILD))
2023 retval = path_lookupat(dfd, name->name, flags, nd);
2024 if (unlikely(retval == -ESTALE))
2025 retval = path_lookupat(dfd, name->name,
2026 flags | LOOKUP_REVAL, nd);
2027
2028 if (likely(!retval))
2029 audit_inode(name, nd->path.dentry, flags & LOOKUP_PARENT);
2030 return retval;
2031 }
2032
2033 static int do_path_lookup(int dfd, const char *name,
2034 unsigned int flags, struct nameidata *nd)
2035 {
2036 struct filename filename = { .name = name };
2037
2038 return filename_lookup(dfd, &filename, flags, nd);
2039 }
2040
2041 /* does lookup, returns the object with parent locked */
2042 struct dentry *kern_path_locked(const char *name, struct path *path)
2043 {
2044 struct nameidata nd;
2045 struct dentry *d;
2046 int err = do_path_lookup(AT_FDCWD, name, LOOKUP_PARENT, &nd);
2047 if (err)
2048 return ERR_PTR(err);
2049 if (nd.last_type != LAST_NORM) {
2050 path_put(&nd.path);
2051 return ERR_PTR(-EINVAL);
2052 }
2053 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
2054 d = __lookup_hash(&nd.last, nd.path.dentry, 0);
2055 if (IS_ERR(d)) {
2056 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
2057 path_put(&nd.path);
2058 return d;
2059 }
2060 *path = nd.path;
2061 return d;
2062 }
2063
2064 int kern_path(const char *name, unsigned int flags, struct path *path)
2065 {
2066 struct nameidata nd;
2067 int res = do_path_lookup(AT_FDCWD, name, flags, &nd);
2068 if (!res)
2069 *path = nd.path;
2070 return res;
2071 }
2072
2073 /**
2074 * vfs_path_lookup - lookup a file path relative to a dentry-vfsmount pair
2075 * @dentry: pointer to dentry of the base directory
2076 * @mnt: pointer to vfs mount of the base directory
2077 * @name: pointer to file name
2078 * @flags: lookup flags
2079 * @path: pointer to struct path to fill
2080 */
2081 int vfs_path_lookup(struct dentry *dentry, struct vfsmount *mnt,
2082 const char *name, unsigned int flags,
2083 struct path *path)
2084 {
2085 struct nameidata nd;
2086 int err;
2087 nd.root.dentry = dentry;
2088 nd.root.mnt = mnt;
2089 BUG_ON(flags & LOOKUP_PARENT);
2090 /* the first argument of do_path_lookup() is ignored with LOOKUP_ROOT */
2091 err = do_path_lookup(AT_FDCWD, name, flags | LOOKUP_ROOT, &nd);
2092 if (!err)
2093 *path = nd.path;
2094 return err;
2095 }
2096
2097 /*
2098 * Restricted form of lookup. Doesn't follow links, single-component only,
2099 * needs parent already locked. Doesn't follow mounts.
2100 * SMP-safe.
2101 */
2102 static struct dentry *lookup_hash(struct nameidata *nd)
2103 {
2104 return __lookup_hash(&nd->last, nd->path.dentry, nd->flags);
2105 }
2106
2107 /**
2108 * lookup_one_len - filesystem helper to lookup single pathname component
2109 * @name: pathname component to lookup
2110 * @base: base directory to lookup from
2111 * @len: maximum length @len should be interpreted to
2112 *
2113 * Note that this routine is purely a helper for filesystem usage and should
2114 * not be called by generic code. Also note that by using this function the
2115 * nameidata argument is passed to the filesystem methods and a filesystem
2116 * using this helper needs to be prepared for that.
2117 */
2118 struct dentry *lookup_one_len(const char *name, struct dentry *base, int len)
2119 {
2120 struct qstr this;
2121 unsigned int c;
2122 int err;
2123
2124 WARN_ON_ONCE(!mutex_is_locked(&base->d_inode->i_mutex));
2125
2126 this.name = name;
2127 this.len = len;
2128 this.hash = full_name_hash(name, len);
2129 if (!len)
2130 return ERR_PTR(-EACCES);
2131
2132 if (unlikely(name[0] == '.')) {
2133 if (len < 2 || (len == 2 && name[1] == '.'))
2134 return ERR_PTR(-EACCES);
2135 }
2136
2137 while (len--) {
2138 c = *(const unsigned char *)name++;
2139 if (c == '/' || c == '\0')
2140 return ERR_PTR(-EACCES);
2141 }
2142 /*
2143 * See if the low-level filesystem might want
2144 * to use its own hash..
2145 */
2146 if (base->d_flags & DCACHE_OP_HASH) {
2147 int err = base->d_op->d_hash(base, &this);
2148 if (err < 0)
2149 return ERR_PTR(err);
2150 }
2151
2152 err = inode_permission(base->d_inode, MAY_EXEC);
2153 if (err)
2154 return ERR_PTR(err);
2155
2156 return __lookup_hash(&this, base, 0);
2157 }
2158
2159 int user_path_at_empty(int dfd, const char __user *name, unsigned flags,
2160 struct path *path, int *empty)
2161 {
2162 struct nameidata nd;
2163 struct filename *tmp = getname_flags(name, flags, empty);
2164 int err = PTR_ERR(tmp);
2165 if (!IS_ERR(tmp)) {
2166
2167 BUG_ON(flags & LOOKUP_PARENT);
2168
2169 err = filename_lookup(dfd, tmp, flags, &nd);
2170 putname(tmp);
2171 if (!err)
2172 *path = nd.path;
2173 }
2174 return err;
2175 }
2176
2177 int user_path_at(int dfd, const char __user *name, unsigned flags,
2178 struct path *path)
2179 {
2180 return user_path_at_empty(dfd, name, flags, path, NULL);
2181 }
2182
2183 /*
2184 * NB: most callers don't do anything directly with the reference to the
2185 * to struct filename, but the nd->last pointer points into the name string
2186 * allocated by getname. So we must hold the reference to it until all
2187 * path-walking is complete.
2188 */
2189 static struct filename *
2190 user_path_parent(int dfd, const char __user *path, struct nameidata *nd,
2191 unsigned int flags)
2192 {
2193 struct filename *s = getname(path);
2194 int error;
2195
2196 /* only LOOKUP_REVAL is allowed in extra flags */
2197 flags &= LOOKUP_REVAL;
2198
2199 if (IS_ERR(s))
2200 return s;
2201
2202 error = filename_lookup(dfd, s, flags | LOOKUP_PARENT, nd);
2203 if (error) {
2204 putname(s);
2205 return ERR_PTR(error);
2206 }
2207
2208 return s;
2209 }
2210
2211 /**
2212 * umount_lookup_last - look up last component for umount
2213 * @nd: pathwalk nameidata - currently pointing at parent directory of "last"
2214 * @path: pointer to container for result
2215 *
2216 * This is a special lookup_last function just for umount. In this case, we
2217 * need to resolve the path without doing any revalidation.
2218 *
2219 * The nameidata should be the result of doing a LOOKUP_PARENT pathwalk. Since
2220 * mountpoints are always pinned in the dcache, their ancestors are too. Thus,
2221 * in almost all cases, this lookup will be served out of the dcache. The only
2222 * cases where it won't are if nd->last refers to a symlink or the path is
2223 * bogus and it doesn't exist.
2224 *
2225 * Returns:
2226 * -error: if there was an error during lookup. This includes -ENOENT if the
2227 * lookup found a negative dentry. The nd->path reference will also be
2228 * put in this case.
2229 *
2230 * 0: if we successfully resolved nd->path and found it to not to be a
2231 * symlink that needs to be followed. "path" will also be populated.
2232 * The nd->path reference will also be put.
2233 *
2234 * 1: if we successfully resolved nd->last and found it to be a symlink
2235 * that needs to be followed. "path" will be populated with the path
2236 * to the link, and nd->path will *not* be put.
2237 */
2238 static int
2239 umount_lookup_last(struct nameidata *nd, struct path *path)
2240 {
2241 int error = 0;
2242 struct dentry *dentry;
2243 struct dentry *dir = nd->path.dentry;
2244
2245 if (unlikely(nd->flags & LOOKUP_RCU)) {
2246 WARN_ON_ONCE(1);
2247 error = -ECHILD;
2248 goto error_check;
2249 }
2250
2251 nd->flags &= ~LOOKUP_PARENT;
2252
2253 if (unlikely(nd->last_type != LAST_NORM)) {
2254 error = handle_dots(nd, nd->last_type);
2255 if (!error)
2256 dentry = dget(nd->path.dentry);
2257 goto error_check;
2258 }
2259
2260 mutex_lock(&dir->d_inode->i_mutex);
2261 dentry = d_lookup(dir, &nd->last);
2262 if (!dentry) {
2263 /*
2264 * No cached dentry. Mounted dentries are pinned in the cache,
2265 * so that means that this dentry is probably a symlink or the
2266 * path doesn't actually point to a mounted dentry.
2267 */
2268 dentry = d_alloc(dir, &nd->last);
2269 if (!dentry) {
2270 error = -ENOMEM;
2271 } else {
2272 dentry = lookup_real(dir->d_inode, dentry, nd->flags);
2273 if (IS_ERR(dentry))
2274 error = PTR_ERR(dentry);
2275 }
2276 }
2277 mutex_unlock(&dir->d_inode->i_mutex);
2278
2279 error_check:
2280 if (!error) {
2281 if (!dentry->d_inode) {
2282 error = -ENOENT;
2283 dput(dentry);
2284 } else {
2285 path->dentry = dentry;
2286 path->mnt = mntget(nd->path.mnt);
2287 if (should_follow_link(dentry->d_inode,
2288 nd->flags & LOOKUP_FOLLOW))
2289 return 1;
2290 follow_mount(path);
2291 }
2292 }
2293 terminate_walk(nd);
2294 return error;
2295 }
2296
2297 /**
2298 * path_umountat - look up a path to be umounted
2299 * @dfd: directory file descriptor to start walk from
2300 * @name: full pathname to walk
2301 * @flags: lookup flags
2302 * @nd: pathwalk nameidata
2303 *
2304 * Look up the given name, but don't attempt to revalidate the last component.
2305 * Returns 0 and "path" will be valid on success; Retuns error otherwise.
2306 */
2307 static int
2308 path_umountat(int dfd, const char *name, struct path *path, unsigned int flags)
2309 {
2310 struct file *base = NULL;
2311 struct nameidata nd;
2312 int err;
2313
2314 err = path_init(dfd, name, flags | LOOKUP_PARENT, &nd, &base);
2315 if (unlikely(err))
2316 return err;
2317
2318 current->total_link_count = 0;
2319 err = link_path_walk(name, &nd);
2320 if (err)
2321 goto out;
2322
2323 /* If we're in rcuwalk, drop out of it to handle last component */
2324 if (nd.flags & LOOKUP_RCU) {
2325 err = unlazy_walk(&nd, NULL);
2326 if (err) {
2327 terminate_walk(&nd);
2328 goto out;
2329 }
2330 }
2331
2332 err = umount_lookup_last(&nd, path);
2333 while (err > 0) {
2334 void *cookie;
2335 struct path link = *path;
2336 err = may_follow_link(&link, &nd);
2337 if (unlikely(err))
2338 break;
2339 nd.flags |= LOOKUP_PARENT;
2340 err = follow_link(&link, &nd, &cookie);
2341 if (err)
2342 break;
2343 err = umount_lookup_last(&nd, path);
2344 put_link(&nd, &link, cookie);
2345 }
2346 out:
2347 if (base)
2348 fput(base);
2349
2350 if (nd.root.mnt && !(nd.flags & LOOKUP_ROOT))
2351 path_put(&nd.root);
2352
2353 return err;
2354 }
2355
2356 /**
2357 * user_path_umountat - lookup a path from userland in order to umount it
2358 * @dfd: directory file descriptor
2359 * @name: pathname from userland
2360 * @flags: lookup flags
2361 * @path: pointer to container to hold result
2362 *
2363 * A umount is a special case for path walking. We're not actually interested
2364 * in the inode in this situation, and ESTALE errors can be a problem. We
2365 * simply want track down the dentry and vfsmount attached at the mountpoint
2366 * and avoid revalidating the last component.
2367 *
2368 * Returns 0 and populates "path" on success.
2369 */
2370 int
2371 user_path_umountat(int dfd, const char __user *name, unsigned int flags,
2372 struct path *path)
2373 {
2374 struct filename *s = getname(name);
2375 int error;
2376
2377 if (IS_ERR(s))
2378 return PTR_ERR(s);
2379
2380 error = path_umountat(dfd, s->name, path, flags | LOOKUP_RCU);
2381 if (unlikely(error == -ECHILD))
2382 error = path_umountat(dfd, s->name, path, flags);
2383 if (unlikely(error == -ESTALE))
2384 error = path_umountat(dfd, s->name, path, flags | LOOKUP_REVAL);
2385
2386 if (likely(!error))
2387 audit_inode(s, path->dentry, 0);
2388
2389 putname(s);
2390 return error;
2391 }
2392
2393 /*
2394 * It's inline, so penalty for filesystems that don't use sticky bit is
2395 * minimal.
2396 */
2397 static inline int check_sticky(struct inode *dir, struct inode *inode)
2398 {
2399 kuid_t fsuid = current_fsuid();
2400
2401 if (!(dir->i_mode & S_ISVTX))
2402 return 0;
2403 if (uid_eq(inode->i_uid, fsuid))
2404 return 0;
2405 if (uid_eq(dir->i_uid, fsuid))
2406 return 0;
2407 return !inode_capable(inode, CAP_FOWNER);
2408 }
2409
2410 /*
2411 * Check whether we can remove a link victim from directory dir, check
2412 * whether the type of victim is right.
2413 * 1. We can't do it if dir is read-only (done in permission())
2414 * 2. We should have write and exec permissions on dir
2415 * 3. We can't remove anything from append-only dir
2416 * 4. We can't do anything with immutable dir (done in permission())
2417 * 5. If the sticky bit on dir is set we should either
2418 * a. be owner of dir, or
2419 * b. be owner of victim, or
2420 * c. have CAP_FOWNER capability
2421 * 6. If the victim is append-only or immutable we can't do antyhing with
2422 * links pointing to it.
2423 * 7. If we were asked to remove a directory and victim isn't one - ENOTDIR.
2424 * 8. If we were asked to remove a non-directory and victim isn't one - EISDIR.
2425 * 9. We can't remove a root or mountpoint.
2426 * 10. We don't allow removal of NFS sillyrenamed files; it's handled by
2427 * nfs_async_unlink().
2428 */
2429 static int may_delete(struct inode *dir,struct dentry *victim,int isdir)
2430 {
2431 int error;
2432
2433 if (!victim->d_inode)
2434 return -ENOENT;
2435
2436 BUG_ON(victim->d_parent->d_inode != dir);
2437 audit_inode_child(dir, victim, AUDIT_TYPE_CHILD_DELETE);
2438
2439 error = inode_permission(dir, MAY_WRITE | MAY_EXEC);
2440 if (error)
2441 return error;
2442 if (IS_APPEND(dir))
2443 return -EPERM;
2444 if (check_sticky(dir, victim->d_inode)||IS_APPEND(victim->d_inode)||
2445 IS_IMMUTABLE(victim->d_inode) || IS_SWAPFILE(victim->d_inode))
2446 return -EPERM;
2447 if (isdir) {
2448 if (!S_ISDIR(victim->d_inode->i_mode))
2449 return -ENOTDIR;
2450 if (IS_ROOT(victim))
2451 return -EBUSY;
2452 } else if (S_ISDIR(victim->d_inode->i_mode))
2453 return -EISDIR;
2454 if (IS_DEADDIR(dir))
2455 return -ENOENT;
2456 if (victim->d_flags & DCACHE_NFSFS_RENAMED)
2457 return -EBUSY;
2458 return 0;
2459 }
2460
2461 /* Check whether we can create an object with dentry child in directory
2462 * dir.
2463 * 1. We can't do it if child already exists (open has special treatment for
2464 * this case, but since we are inlined it's OK)
2465 * 2. We can't do it if dir is read-only (done in permission())
2466 * 3. We should have write and exec permissions on dir
2467 * 4. We can't do it if dir is immutable (done in permission())
2468 */
2469 static inline int may_create(struct inode *dir, struct dentry *child)
2470 {
2471 if (child->d_inode)
2472 return -EEXIST;
2473 if (IS_DEADDIR(dir))
2474 return -ENOENT;
2475 return inode_permission(dir, MAY_WRITE | MAY_EXEC);
2476 }
2477
2478 /*
2479 * p1 and p2 should be directories on the same fs.
2480 */
2481 struct dentry *lock_rename(struct dentry *p1, struct dentry *p2)
2482 {
2483 struct dentry *p;
2484
2485 if (p1 == p2) {
2486 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2487 return NULL;
2488 }
2489
2490 mutex_lock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
2491
2492 p = d_ancestor(p2, p1);
2493 if (p) {
2494 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_PARENT);
2495 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_CHILD);
2496 return p;
2497 }
2498
2499 p = d_ancestor(p1, p2);
2500 if (p) {
2501 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2502 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2503 return p;
2504 }
2505
2506 mutex_lock_nested(&p1->d_inode->i_mutex, I_MUTEX_PARENT);
2507 mutex_lock_nested(&p2->d_inode->i_mutex, I_MUTEX_CHILD);
2508 return NULL;
2509 }
2510
2511 void unlock_rename(struct dentry *p1, struct dentry *p2)
2512 {
2513 mutex_unlock(&p1->d_inode->i_mutex);
2514 if (p1 != p2) {
2515 mutex_unlock(&p2->d_inode->i_mutex);
2516 mutex_unlock(&p1->d_inode->i_sb->s_vfs_rename_mutex);
2517 }
2518 }
2519
2520 int vfs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
2521 bool want_excl)
2522 {
2523 int error = may_create(dir, dentry);
2524 if (error)
2525 return error;
2526
2527 if (!dir->i_op->create)
2528 return -EACCES; /* shouldn't it be ENOSYS? */
2529 mode &= S_IALLUGO;
2530 mode |= S_IFREG;
2531 error = security_inode_create(dir, dentry, mode);
2532 if (error)
2533 return error;
2534 error = dir->i_op->create(dir, dentry, mode, want_excl);
2535 if (!error)
2536 fsnotify_create(dir, dentry);
2537 return error;
2538 }
2539
2540 static int may_open(struct path *path, int acc_mode, int flag)
2541 {
2542 struct dentry *dentry = path->dentry;
2543 struct inode *inode = dentry->d_inode;
2544 int error;
2545
2546 /* O_PATH? */
2547 if (!acc_mode)
2548 return 0;
2549
2550 if (!inode)
2551 return -ENOENT;
2552
2553 switch (inode->i_mode & S_IFMT) {
2554 case S_IFLNK:
2555 return -ELOOP;
2556 case S_IFDIR:
2557 if (acc_mode & MAY_WRITE)
2558 return -EISDIR;
2559 break;
2560 case S_IFBLK:
2561 case S_IFCHR:
2562 if (path->mnt->mnt_flags & MNT_NODEV)
2563 return -EACCES;
2564 /*FALLTHRU*/
2565 case S_IFIFO:
2566 case S_IFSOCK:
2567 flag &= ~O_TRUNC;
2568 break;
2569 }
2570
2571 error = inode_permission(inode, acc_mode);
2572 if (error)
2573 return error;
2574
2575 /*
2576 * An append-only file must be opened in append mode for writing.
2577 */
2578 if (IS_APPEND(inode)) {
2579 if ((flag & O_ACCMODE) != O_RDONLY && !(flag & O_APPEND))
2580 return -EPERM;
2581 if (flag & O_TRUNC)
2582 return -EPERM;
2583 }
2584
2585 /* O_NOATIME can only be set by the owner or superuser */
2586 if (flag & O_NOATIME && !inode_owner_or_capable(inode))
2587 return -EPERM;
2588
2589 return 0;
2590 }
2591
2592 static int handle_truncate(struct file *filp)
2593 {
2594 struct path *path = &filp->f_path;
2595 struct inode *inode = path->dentry->d_inode;
2596 int error = get_write_access(inode);
2597 if (error)
2598 return error;
2599 /*
2600 * Refuse to truncate files with mandatory locks held on them.
2601 */
2602 error = locks_verify_locked(inode);
2603 if (!error)
2604 error = security_path_truncate(path);
2605 if (!error) {
2606 error = do_truncate(path->dentry, 0,
2607 ATTR_MTIME|ATTR_CTIME|ATTR_OPEN,
2608 filp);
2609 }
2610 put_write_access(inode);
2611 return error;
2612 }
2613
2614 static inline int open_to_namei_flags(int flag)
2615 {
2616 if ((flag & O_ACCMODE) == 3)
2617 flag--;
2618 return flag;
2619 }
2620
2621 static int may_o_create(struct path *dir, struct dentry *dentry, umode_t mode)
2622 {
2623 int error = security_path_mknod(dir, dentry, mode, 0);
2624 if (error)
2625 return error;
2626
2627 error = inode_permission(dir->dentry->d_inode, MAY_WRITE | MAY_EXEC);
2628 if (error)
2629 return error;
2630
2631 return security_inode_create(dir->dentry->d_inode, dentry, mode);
2632 }
2633
2634 /*
2635 * Attempt to atomically look up, create and open a file from a negative
2636 * dentry.
2637 *
2638 * Returns 0 if successful. The file will have been created and attached to
2639 * @file by the filesystem calling finish_open().
2640 *
2641 * Returns 1 if the file was looked up only or didn't need creating. The
2642 * caller will need to perform the open themselves. @path will have been
2643 * updated to point to the new dentry. This may be negative.
2644 *
2645 * Returns an error code otherwise.
2646 */
2647 static int atomic_open(struct nameidata *nd, struct dentry *dentry,
2648 struct path *path, struct file *file,
2649 const struct open_flags *op,
2650 bool got_write, bool need_lookup,
2651 int *opened)
2652 {
2653 struct inode *dir = nd->path.dentry->d_inode;
2654 unsigned open_flag = open_to_namei_flags(op->open_flag);
2655 umode_t mode;
2656 int error;
2657 int acc_mode;
2658 int create_error = 0;
2659 struct dentry *const DENTRY_NOT_SET = (void *) -1UL;
2660
2661 BUG_ON(dentry->d_inode);
2662
2663 /* Don't create child dentry for a dead directory. */
2664 if (unlikely(IS_DEADDIR(dir))) {
2665 error = -ENOENT;
2666 goto out;
2667 }
2668
2669 mode = op->mode;
2670 if ((open_flag & O_CREAT) && !IS_POSIXACL(dir))
2671 mode &= ~current_umask();
2672
2673 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT)) {
2674 open_flag &= ~O_TRUNC;
2675 *opened |= FILE_CREATED;
2676 }
2677
2678 /*
2679 * Checking write permission is tricky, bacuse we don't know if we are
2680 * going to actually need it: O_CREAT opens should work as long as the
2681 * file exists. But checking existence breaks atomicity. The trick is
2682 * to check access and if not granted clear O_CREAT from the flags.
2683 *
2684 * Another problem is returing the "right" error value (e.g. for an
2685 * O_EXCL open we want to return EEXIST not EROFS).
2686 */
2687 if (((open_flag & (O_CREAT | O_TRUNC)) ||
2688 (open_flag & O_ACCMODE) != O_RDONLY) && unlikely(!got_write)) {
2689 if (!(open_flag & O_CREAT)) {
2690 /*
2691 * No O_CREATE -> atomicity not a requirement -> fall
2692 * back to lookup + open
2693 */
2694 goto no_open;
2695 } else if (open_flag & (O_EXCL | O_TRUNC)) {
2696 /* Fall back and fail with the right error */
2697 create_error = -EROFS;
2698 goto no_open;
2699 } else {
2700 /* No side effects, safe to clear O_CREAT */
2701 create_error = -EROFS;
2702 open_flag &= ~O_CREAT;
2703 }
2704 }
2705
2706 if (open_flag & O_CREAT) {
2707 error = may_o_create(&nd->path, dentry, mode);
2708 if (error) {
2709 create_error = error;
2710 if (open_flag & O_EXCL)
2711 goto no_open;
2712 open_flag &= ~O_CREAT;
2713 }
2714 }
2715
2716 if (nd->flags & LOOKUP_DIRECTORY)
2717 open_flag |= O_DIRECTORY;
2718
2719 file->f_path.dentry = DENTRY_NOT_SET;
2720 file->f_path.mnt = nd->path.mnt;
2721 error = dir->i_op->atomic_open(dir, dentry, file, open_flag, mode,
2722 opened);
2723 if (error < 0) {
2724 if (create_error && error == -ENOENT)
2725 error = create_error;
2726 goto out;
2727 }
2728
2729 acc_mode = op->acc_mode;
2730 if (*opened & FILE_CREATED) {
2731 fsnotify_create(dir, dentry);
2732 acc_mode = MAY_OPEN;
2733 }
2734
2735 if (error) { /* returned 1, that is */
2736 if (WARN_ON(file->f_path.dentry == DENTRY_NOT_SET)) {
2737 error = -EIO;
2738 goto out;
2739 }
2740 if (file->f_path.dentry) {
2741 dput(dentry);
2742 dentry = file->f_path.dentry;
2743 }
2744 if (create_error && dentry->d_inode == NULL) {
2745 error = create_error;
2746 goto out;
2747 }
2748 goto looked_up;
2749 }
2750
2751 /*
2752 * We didn't have the inode before the open, so check open permission
2753 * here.
2754 */
2755 error = may_open(&file->f_path, acc_mode, open_flag);
2756 if (error)
2757 fput(file);
2758
2759 out:
2760 dput(dentry);
2761 return error;
2762
2763 no_open:
2764 if (need_lookup) {
2765 dentry = lookup_real(dir, dentry, nd->flags);
2766 if (IS_ERR(dentry))
2767 return PTR_ERR(dentry);
2768
2769 if (create_error) {
2770 int open_flag = op->open_flag;
2771
2772 error = create_error;
2773 if ((open_flag & O_EXCL)) {
2774 if (!dentry->d_inode)
2775 goto out;
2776 } else if (!dentry->d_inode) {
2777 goto out;
2778 } else if ((open_flag & O_TRUNC) &&
2779 S_ISREG(dentry->d_inode->i_mode)) {
2780 goto out;
2781 }
2782 /* will fail later, go on to get the right error */
2783 }
2784 }
2785 looked_up:
2786 path->dentry = dentry;
2787 path->mnt = nd->path.mnt;
2788 return 1;
2789 }
2790
2791 /*
2792 * Look up and maybe create and open the last component.
2793 *
2794 * Must be called with i_mutex held on parent.
2795 *
2796 * Returns 0 if the file was successfully atomically created (if necessary) and
2797 * opened. In this case the file will be returned attached to @file.
2798 *
2799 * Returns 1 if the file was not completely opened at this time, though lookups
2800 * and creations will have been performed and the dentry returned in @path will
2801 * be positive upon return if O_CREAT was specified. If O_CREAT wasn't
2802 * specified then a negative dentry may be returned.
2803 *
2804 * An error code is returned otherwise.
2805 *
2806 * FILE_CREATE will be set in @*opened if the dentry was created and will be
2807 * cleared otherwise prior to returning.
2808 */
2809 static int lookup_open(struct nameidata *nd, struct path *path,
2810 struct file *file,
2811 const struct open_flags *op,
2812 bool got_write, int *opened)
2813 {
2814 struct dentry *dir = nd->path.dentry;
2815 struct inode *dir_inode = dir->d_inode;
2816 struct dentry *dentry;
2817 int error;
2818 bool need_lookup;
2819
2820 *opened &= ~FILE_CREATED;
2821 dentry = lookup_dcache(&nd->last, dir, nd->flags, &need_lookup);
2822 if (IS_ERR(dentry))
2823 return PTR_ERR(dentry);
2824
2825 /* Cached positive dentry: will open in f_op->open */
2826 if (!need_lookup && dentry->d_inode)
2827 goto out_no_open;
2828
2829 if ((nd->flags & LOOKUP_OPEN) && dir_inode->i_op->atomic_open) {
2830 return atomic_open(nd, dentry, path, file, op, got_write,
2831 need_lookup, opened);
2832 }
2833
2834 if (need_lookup) {
2835 BUG_ON(dentry->d_inode);
2836
2837 dentry = lookup_real(dir_inode, dentry, nd->flags);
2838 if (IS_ERR(dentry))
2839 return PTR_ERR(dentry);
2840 }
2841
2842 /* Negative dentry, just create the file */
2843 if (!dentry->d_inode && (op->open_flag & O_CREAT)) {
2844 umode_t mode = op->mode;
2845 if (!IS_POSIXACL(dir->d_inode))
2846 mode &= ~current_umask();
2847 /*
2848 * This write is needed to ensure that a
2849 * rw->ro transition does not occur between
2850 * the time when the file is created and when
2851 * a permanent write count is taken through
2852 * the 'struct file' in finish_open().
2853 */
2854 if (!got_write) {
2855 error = -EROFS;
2856 goto out_dput;
2857 }
2858 *opened |= FILE_CREATED;
2859 error = security_path_mknod(&nd->path, dentry, mode, 0);
2860 if (error)
2861 goto out_dput;
2862 error = vfs_create(dir->d_inode, dentry, mode,
2863 nd->flags & LOOKUP_EXCL);
2864 if (error)
2865 goto out_dput;
2866 }
2867 out_no_open:
2868 path->dentry = dentry;
2869 path->mnt = nd->path.mnt;
2870 return 1;
2871
2872 out_dput:
2873 dput(dentry);
2874 return error;
2875 }
2876
2877 /*
2878 * Handle the last step of open()
2879 */
2880 static int do_last(struct nameidata *nd, struct path *path,
2881 struct file *file, const struct open_flags *op,
2882 int *opened, struct filename *name)
2883 {
2884 struct dentry *dir = nd->path.dentry;
2885 int open_flag = op->open_flag;
2886 bool will_truncate = (open_flag & O_TRUNC) != 0;
2887 bool got_write = false;
2888 int acc_mode = op->acc_mode;
2889 struct inode *inode;
2890 bool symlink_ok = false;
2891 struct path save_parent = { .dentry = NULL, .mnt = NULL };
2892 bool retried = false;
2893 int error;
2894
2895 nd->flags &= ~LOOKUP_PARENT;
2896 nd->flags |= op->intent;
2897
2898 if (nd->last_type != LAST_NORM) {
2899 error = handle_dots(nd, nd->last_type);
2900 if (error)
2901 return error;
2902 goto finish_open;
2903 }
2904
2905 if (!(open_flag & O_CREAT)) {
2906 if (nd->last.name[nd->last.len])
2907 nd->flags |= LOOKUP_FOLLOW | LOOKUP_DIRECTORY;
2908 if (open_flag & O_PATH && !(nd->flags & LOOKUP_FOLLOW))
2909 symlink_ok = true;
2910 /* we _can_ be in RCU mode here */
2911 error = lookup_fast(nd, path, &inode);
2912 if (likely(!error))
2913 goto finish_lookup;
2914
2915 if (error < 0)
2916 goto out;
2917
2918 BUG_ON(nd->inode != dir->d_inode);
2919 } else {
2920 /* create side of things */
2921 /*
2922 * This will *only* deal with leaving RCU mode - LOOKUP_JUMPED
2923 * has been cleared when we got to the last component we are
2924 * about to look up
2925 */
2926 error = complete_walk(nd);
2927 if (error)
2928 return error;
2929
2930 audit_inode(name, dir, LOOKUP_PARENT);
2931 error = -EISDIR;
2932 /* trailing slashes? */
2933 if (nd->last.name[nd->last.len])
2934 goto out;
2935 }
2936
2937 retry_lookup:
2938 if (op->open_flag & (O_CREAT | O_TRUNC | O_WRONLY | O_RDWR)) {
2939 error = mnt_want_write(nd->path.mnt);
2940 if (!error)
2941 got_write = true;
2942 /*
2943 * do _not_ fail yet - we might not need that or fail with
2944 * a different error; let lookup_open() decide; we'll be
2945 * dropping this one anyway.
2946 */
2947 }
2948 mutex_lock(&dir->d_inode->i_mutex);
2949 error = lookup_open(nd, path, file, op, got_write, opened);
2950 mutex_unlock(&dir->d_inode->i_mutex);
2951
2952 if (error <= 0) {
2953 if (error)
2954 goto out;
2955
2956 if ((*opened & FILE_CREATED) ||
2957 !S_ISREG(file_inode(file)->i_mode))
2958 will_truncate = false;
2959
2960 audit_inode(name, file->f_path.dentry, 0);
2961 goto opened;
2962 }
2963
2964 if (*opened & FILE_CREATED) {
2965 /* Don't check for write permission, don't truncate */
2966 open_flag &= ~O_TRUNC;
2967 will_truncate = false;
2968 acc_mode = MAY_OPEN;
2969 path_to_nameidata(path, nd);
2970 goto finish_open_created;
2971 }
2972
2973 /*
2974 * create/update audit record if it already exists.
2975 */
2976 if (path->dentry->d_inode)
2977 audit_inode(name, path->dentry, 0);
2978
2979 /*
2980 * If atomic_open() acquired write access it is dropped now due to
2981 * possible mount and symlink following (this might be optimized away if
2982 * necessary...)
2983 */
2984 if (got_write) {
2985 mnt_drop_write(nd->path.mnt);
2986 got_write = false;
2987 }
2988
2989 error = -EEXIST;
2990 if ((open_flag & (O_EXCL | O_CREAT)) == (O_EXCL | O_CREAT))
2991 goto exit_dput;
2992
2993 error = follow_managed(path, nd->flags);
2994 if (error < 0)
2995 goto exit_dput;
2996
2997 if (error)
2998 nd->flags |= LOOKUP_JUMPED;
2999
3000 BUG_ON(nd->flags & LOOKUP_RCU);
3001 inode = path->dentry->d_inode;
3002 finish_lookup:
3003 /* we _can_ be in RCU mode here */
3004 error = -ENOENT;
3005 if (!inode) {
3006 path_to_nameidata(path, nd);
3007 goto out;
3008 }
3009
3010 if (should_follow_link(inode, !symlink_ok)) {
3011 if (nd->flags & LOOKUP_RCU) {
3012 if (unlikely(unlazy_walk(nd, path->dentry))) {
3013 error = -ECHILD;
3014 goto out;
3015 }
3016 }
3017 BUG_ON(inode != path->dentry->d_inode);
3018 return 1;
3019 }
3020
3021 if ((nd->flags & LOOKUP_RCU) || nd->path.mnt != path->mnt) {
3022 path_to_nameidata(path, nd);
3023 } else {
3024 save_parent.dentry = nd->path.dentry;
3025 save_parent.mnt = mntget(path->mnt);
3026 nd->path.dentry = path->dentry;
3027
3028 }
3029 nd->inode = inode;
3030 /* Why this, you ask? _Now_ we might have grown LOOKUP_JUMPED... */
3031 finish_open:
3032 error = complete_walk(nd);
3033 if (error) {
3034 path_put(&save_parent);
3035 return error;
3036 }
3037 audit_inode(name, nd->path.dentry, 0);
3038 error = -EISDIR;
3039 if ((open_flag & O_CREAT) && S_ISDIR(nd->inode->i_mode))
3040 goto out;
3041 error = -ENOTDIR;
3042 if ((nd->flags & LOOKUP_DIRECTORY) && !can_lookup(nd->inode))
3043 goto out;
3044 if (!S_ISREG(nd->inode->i_mode))
3045 will_truncate = false;
3046
3047 if (will_truncate) {
3048 error = mnt_want_write(nd->path.mnt);
3049 if (error)
3050 goto out;
3051 got_write = true;
3052 }
3053 finish_open_created:
3054 error = may_open(&nd->path, acc_mode, open_flag);
3055 if (error)
3056 goto out;
3057 file->f_path.mnt = nd->path.mnt;
3058 error = finish_open(file, nd->path.dentry, NULL, opened);
3059 if (error) {
3060 if (error == -EOPENSTALE)
3061 goto stale_open;
3062 goto out;
3063 }
3064 opened:
3065 error = open_check_o_direct(file);
3066 if (error)
3067 goto exit_fput;
3068 error = ima_file_check(file, op->acc_mode);
3069 if (error)
3070 goto exit_fput;
3071
3072 if (will_truncate) {
3073 error = handle_truncate(file);
3074 if (error)
3075 goto exit_fput;
3076 }
3077 out:
3078 if (got_write)
3079 mnt_drop_write(nd->path.mnt);
3080 path_put(&save_parent);
3081 terminate_walk(nd);
3082 return error;
3083
3084 exit_dput:
3085 path_put_conditional(path, nd);
3086 goto out;
3087 exit_fput:
3088 fput(file);
3089 goto out;
3090
3091 stale_open:
3092 /* If no saved parent or already retried then can't retry */
3093 if (!save_parent.dentry || retried)
3094 goto out;
3095
3096 BUG_ON(save_parent.dentry != dir);
3097 path_put(&nd->path);
3098 nd->path = save_parent;
3099 nd->inode = dir->d_inode;
3100 save_parent.mnt = NULL;
3101 save_parent.dentry = NULL;
3102 if (got_write) {
3103 mnt_drop_write(nd->path.mnt);
3104 got_write = false;
3105 }
3106 retried = true;
3107 goto retry_lookup;
3108 }
3109
3110 static int do_tmpfile(int dfd, struct filename *pathname,
3111 struct nameidata *nd, int flags,
3112 const struct open_flags *op,
3113 struct file *file, int *opened)
3114 {
3115 static const struct qstr name = QSTR_INIT("/", 1);
3116 struct dentry *dentry, *child;
3117 struct inode *dir;
3118 int error = path_lookupat(dfd, pathname->name,
3119 flags | LOOKUP_DIRECTORY, nd);
3120 if (unlikely(error))
3121 return error;
3122 error = mnt_want_write(nd->path.mnt);
3123 if (unlikely(error))
3124 goto out;
3125 /* we want directory to be writable */
3126 error = inode_permission(nd->inode, MAY_WRITE | MAY_EXEC);
3127 if (error)
3128 goto out2;
3129 dentry = nd->path.dentry;
3130 dir = dentry->d_inode;
3131 if (!dir->i_op->tmpfile) {
3132 error = -EOPNOTSUPP;
3133 goto out2;
3134 }
3135 child = d_alloc(dentry, &name);
3136 if (unlikely(!child)) {
3137 error = -ENOMEM;
3138 goto out2;
3139 }
3140 nd->flags &= ~LOOKUP_DIRECTORY;
3141 nd->flags |= op->intent;
3142 dput(nd->path.dentry);
3143 nd->path.dentry = child;
3144 error = dir->i_op->tmpfile(dir, nd->path.dentry, op->mode);
3145 if (error)
3146 goto out2;
3147 audit_inode(pathname, nd->path.dentry, 0);
3148 error = may_open(&nd->path, op->acc_mode, op->open_flag);
3149 if (error)
3150 goto out2;
3151 file->f_path.mnt = nd->path.mnt;
3152 error = finish_open(file, nd->path.dentry, NULL, opened);
3153 if (error)
3154 goto out2;
3155 error = open_check_o_direct(file);
3156 if (error) {
3157 fput(file);
3158 } else if (!(op->open_flag & O_EXCL)) {
3159 struct inode *inode = file_inode(file);
3160 spin_lock(&inode->i_lock);
3161 inode->i_state |= I_LINKABLE;
3162 spin_unlock(&inode->i_lock);
3163 }
3164 out2:
3165 mnt_drop_write(nd->path.mnt);
3166 out:
3167 path_put(&nd->path);
3168 return error;
3169 }
3170
3171 static struct file *path_openat(int dfd, struct filename *pathname,
3172 struct nameidata *nd, const struct open_flags *op, int flags)
3173 {
3174 struct file *base = NULL;
3175 struct file *file;
3176 struct path path;
3177 int opened = 0;
3178 int error;
3179
3180 file = get_empty_filp();
3181 if (IS_ERR(file))
3182 return file;
3183
3184 file->f_flags = op->open_flag;
3185
3186 if (unlikely(file->f_flags & __O_TMPFILE)) {
3187 error = do_tmpfile(dfd, pathname, nd, flags, op, file, &opened);
3188 goto out;
3189 }
3190
3191 error = path_init(dfd, pathname->name, flags | LOOKUP_PARENT, nd, &base);
3192 if (unlikely(error))
3193 goto out;
3194
3195 current->total_link_count = 0;
3196 error = link_path_walk(pathname->name, nd);
3197 if (unlikely(error))
3198 goto out;
3199
3200 error = do_last(nd, &path, file, op, &opened, pathname);
3201 while (unlikely(error > 0)) { /* trailing symlink */
3202 struct path link = path;
3203 void *cookie;
3204 if (!(nd->flags & LOOKUP_FOLLOW)) {
3205 path_put_conditional(&path, nd);
3206 path_put(&nd->path);
3207 error = -ELOOP;
3208 break;
3209 }
3210 error = may_follow_link(&link, nd);
3211 if (unlikely(error))
3212 break;
3213 nd->flags |= LOOKUP_PARENT;
3214 nd->flags &= ~(LOOKUP_OPEN|LOOKUP_CREATE|LOOKUP_EXCL);
3215 error = follow_link(&link, nd, &cookie);
3216 if (unlikely(error))
3217 break;
3218 error = do_last(nd, &path, file, op, &opened, pathname);
3219 put_link(nd, &link, cookie);
3220 }
3221 out:
3222 if (nd->root.mnt && !(nd->flags & LOOKUP_ROOT))
3223 path_put(&nd->root);
3224 if (base)
3225 fput(base);
3226 if (!(opened & FILE_OPENED)) {
3227 BUG_ON(!error);
3228 put_filp(file);
3229 }
3230 if (unlikely(error)) {
3231 if (error == -EOPENSTALE) {
3232 if (flags & LOOKUP_RCU)
3233 error = -ECHILD;
3234 else
3235 error = -ESTALE;
3236 }
3237 file = ERR_PTR(error);
3238 }
3239 return file;
3240 }
3241
3242 struct file *do_filp_open(int dfd, struct filename *pathname,
3243 const struct open_flags *op)
3244 {
3245 struct nameidata nd;
3246 int flags = op->lookup_flags;
3247 struct file *filp;
3248
3249 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_RCU);
3250 if (unlikely(filp == ERR_PTR(-ECHILD)))
3251 filp = path_openat(dfd, pathname, &nd, op, flags);
3252 if (unlikely(filp == ERR_PTR(-ESTALE)))
3253 filp = path_openat(dfd, pathname, &nd, op, flags | LOOKUP_REVAL);
3254 return filp;
3255 }
3256
3257 struct file *do_file_open_root(struct dentry *dentry, struct vfsmount *mnt,
3258 const char *name, const struct open_flags *op)
3259 {
3260 struct nameidata nd;
3261 struct file *file;
3262 struct filename filename = { .name = name };
3263 int flags = op->lookup_flags | LOOKUP_ROOT;
3264
3265 nd.root.mnt = mnt;
3266 nd.root.dentry = dentry;
3267
3268 if (dentry->d_inode->i_op->follow_link && op->intent & LOOKUP_OPEN)
3269 return ERR_PTR(-ELOOP);
3270
3271 file = path_openat(-1, &filename, &nd, op, flags | LOOKUP_RCU);
3272 if (unlikely(file == ERR_PTR(-ECHILD)))
3273 file = path_openat(-1, &filename, &nd, op, flags);
3274 if (unlikely(file == ERR_PTR(-ESTALE)))
3275 file = path_openat(-1, &filename, &nd, op, flags | LOOKUP_REVAL);
3276 return file;
3277 }
3278
3279 struct dentry *kern_path_create(int dfd, const char *pathname,
3280 struct path *path, unsigned int lookup_flags)
3281 {
3282 struct dentry *dentry = ERR_PTR(-EEXIST);
3283 struct nameidata nd;
3284 int err2;
3285 int error;
3286 bool is_dir = (lookup_flags & LOOKUP_DIRECTORY);
3287
3288 /*
3289 * Note that only LOOKUP_REVAL and LOOKUP_DIRECTORY matter here. Any
3290 * other flags passed in are ignored!
3291 */
3292 lookup_flags &= LOOKUP_REVAL;
3293
3294 error = do_path_lookup(dfd, pathname, LOOKUP_PARENT|lookup_flags, &nd);
3295 if (error)
3296 return ERR_PTR(error);
3297
3298 /*
3299 * Yucky last component or no last component at all?
3300 * (foo/., foo/.., /////)
3301 */
3302 if (nd.last_type != LAST_NORM)
3303 goto out;
3304 nd.flags &= ~LOOKUP_PARENT;
3305 nd.flags |= LOOKUP_CREATE | LOOKUP_EXCL;
3306
3307 /* don't fail immediately if it's r/o, at least try to report other errors */
3308 err2 = mnt_want_write(nd.path.mnt);
3309 /*
3310 * Do the final lookup.
3311 */
3312 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3313 dentry = lookup_hash(&nd);
3314 if (IS_ERR(dentry))
3315 goto unlock;
3316
3317 error = -EEXIST;
3318 if (dentry->d_inode)
3319 goto fail;
3320 /*
3321 * Special case - lookup gave negative, but... we had foo/bar/
3322 * From the vfs_mknod() POV we just have a negative dentry -
3323 * all is fine. Let's be bastards - you had / on the end, you've
3324 * been asking for (non-existent) directory. -ENOENT for you.
3325 */
3326 if (unlikely(!is_dir && nd.last.name[nd.last.len])) {
3327 error = -ENOENT;
3328 goto fail;
3329 }
3330 if (unlikely(err2)) {
3331 error = err2;
3332 goto fail;
3333 }
3334 *path = nd.path;
3335 return dentry;
3336 fail:
3337 dput(dentry);
3338 dentry = ERR_PTR(error);
3339 unlock:
3340 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
3341 if (!err2)
3342 mnt_drop_write(nd.path.mnt);
3343 out:
3344 path_put(&nd.path);
3345 return dentry;
3346 }
3347 EXPORT_SYMBOL(kern_path_create);
3348
3349 void done_path_create(struct path *path, struct dentry *dentry)
3350 {
3351 dput(dentry);
3352 mutex_unlock(&path->dentry->d_inode->i_mutex);
3353 mnt_drop_write(path->mnt);
3354 path_put(path);
3355 }
3356 EXPORT_SYMBOL(done_path_create);
3357
3358 struct dentry *user_path_create(int dfd, const char __user *pathname,
3359 struct path *path, unsigned int lookup_flags)
3360 {
3361 struct filename *tmp = getname(pathname);
3362 struct dentry *res;
3363 if (IS_ERR(tmp))
3364 return ERR_CAST(tmp);
3365 res = kern_path_create(dfd, tmp->name, path, lookup_flags);
3366 putname(tmp);
3367 return res;
3368 }
3369 EXPORT_SYMBOL(user_path_create);
3370
3371 int vfs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode, dev_t dev)
3372 {
3373 int error = may_create(dir, dentry);
3374
3375 if (error)
3376 return error;
3377
3378 if ((S_ISCHR(mode) || S_ISBLK(mode)) && !capable(CAP_MKNOD))
3379 return -EPERM;
3380
3381 if (!dir->i_op->mknod)
3382 return -EPERM;
3383
3384 error = devcgroup_inode_mknod(mode, dev);
3385 if (error)
3386 return error;
3387
3388 error = security_inode_mknod(dir, dentry, mode, dev);
3389 if (error)
3390 return error;
3391
3392 error = dir->i_op->mknod(dir, dentry, mode, dev);
3393 if (!error)
3394 fsnotify_create(dir, dentry);
3395 return error;
3396 }
3397
3398 static int may_mknod(umode_t mode)
3399 {
3400 switch (mode & S_IFMT) {
3401 case S_IFREG:
3402 case S_IFCHR:
3403 case S_IFBLK:
3404 case S_IFIFO:
3405 case S_IFSOCK:
3406 case 0: /* zero mode translates to S_IFREG */
3407 return 0;
3408 case S_IFDIR:
3409 return -EPERM;
3410 default:
3411 return -EINVAL;
3412 }
3413 }
3414
3415 SYSCALL_DEFINE4(mknodat, int, dfd, const char __user *, filename, umode_t, mode,
3416 unsigned, dev)
3417 {
3418 struct dentry *dentry;
3419 struct path path;
3420 int error;
3421 unsigned int lookup_flags = 0;
3422
3423 error = may_mknod(mode);
3424 if (error)
3425 return error;
3426 retry:
3427 dentry = user_path_create(dfd, filename, &path, lookup_flags);
3428 if (IS_ERR(dentry))
3429 return PTR_ERR(dentry);
3430
3431 if (!IS_POSIXACL(path.dentry->d_inode))
3432 mode &= ~current_umask();
3433 error = security_path_mknod(&path, dentry, mode, dev);
3434 if (error)
3435 goto out;
3436 switch (mode & S_IFMT) {
3437 case 0: case S_IFREG:
3438 error = vfs_create(path.dentry->d_inode,dentry,mode,true);
3439 break;
3440 case S_IFCHR: case S_IFBLK:
3441 error = vfs_mknod(path.dentry->d_inode,dentry,mode,
3442 new_decode_dev(dev));
3443 break;
3444 case S_IFIFO: case S_IFSOCK:
3445 error = vfs_mknod(path.dentry->d_inode,dentry,mode,0);
3446 break;
3447 }
3448 out:
3449 done_path_create(&path, dentry);
3450 if (retry_estale(error, lookup_flags)) {
3451 lookup_flags |= LOOKUP_REVAL;
3452 goto retry;
3453 }
3454 return error;
3455 }
3456
3457 SYSCALL_DEFINE3(mknod, const char __user *, filename, umode_t, mode, unsigned, dev)
3458 {
3459 return sys_mknodat(AT_FDCWD, filename, mode, dev);
3460 }
3461
3462 int vfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
3463 {
3464 int error = may_create(dir, dentry);
3465 unsigned max_links = dir->i_sb->s_max_links;
3466
3467 if (error)
3468 return error;
3469
3470 if (!dir->i_op->mkdir)
3471 return -EPERM;
3472
3473 mode &= (S_IRWXUGO|S_ISVTX);
3474 error = security_inode_mkdir(dir, dentry, mode);
3475 if (error)
3476 return error;
3477
3478 if (max_links && dir->i_nlink >= max_links)
3479 return -EMLINK;
3480
3481 error = dir->i_op->mkdir(dir, dentry, mode);
3482 if (!error)
3483 fsnotify_mkdir(dir, dentry);
3484 return error;
3485 }
3486
3487 SYSCALL_DEFINE3(mkdirat, int, dfd, const char __user *, pathname, umode_t, mode)
3488 {
3489 struct dentry *dentry;
3490 struct path path;
3491 int error;
3492 unsigned int lookup_flags = LOOKUP_DIRECTORY;
3493
3494 retry:
3495 dentry = user_path_create(dfd, pathname, &path, lookup_flags);
3496 if (IS_ERR(dentry))
3497 return PTR_ERR(dentry);
3498
3499 if (!IS_POSIXACL(path.dentry->d_inode))
3500 mode &= ~current_umask();
3501 error = security_path_mkdir(&path, dentry, mode);
3502 if (!error)
3503 error = vfs_mkdir(path.dentry->d_inode, dentry, mode);
3504 done_path_create(&path, dentry);
3505 if (retry_estale(error, lookup_flags)) {
3506 lookup_flags |= LOOKUP_REVAL;
3507 goto retry;
3508 }
3509 return error;
3510 }
3511
3512 SYSCALL_DEFINE2(mkdir, const char __user *, pathname, umode_t, mode)
3513 {
3514 return sys_mkdirat(AT_FDCWD, pathname, mode);
3515 }
3516
3517 /*
3518 * The dentry_unhash() helper will try to drop the dentry early: we
3519 * should have a usage count of 1 if we're the only user of this
3520 * dentry, and if that is true (possibly after pruning the dcache),
3521 * then we drop the dentry now.
3522 *
3523 * A low-level filesystem can, if it choses, legally
3524 * do a
3525 *
3526 * if (!d_unhashed(dentry))
3527 * return -EBUSY;
3528 *
3529 * if it cannot handle the case of removing a directory
3530 * that is still in use by something else..
3531 */
3532 void dentry_unhash(struct dentry *dentry)
3533 {
3534 shrink_dcache_parent(dentry);
3535 spin_lock(&dentry->d_lock);
3536 if (dentry->d_lockref.count == 1)
3537 __d_drop(dentry);
3538 spin_unlock(&dentry->d_lock);
3539 }
3540
3541 int vfs_rmdir(struct inode *dir, struct dentry *dentry)
3542 {
3543 int error = may_delete(dir, dentry, 1);
3544
3545 if (error)
3546 return error;
3547
3548 if (!dir->i_op->rmdir)
3549 return -EPERM;
3550
3551 dget(dentry);
3552 mutex_lock(&dentry->d_inode->i_mutex);
3553
3554 error = -EBUSY;
3555 if (d_mountpoint(dentry))
3556 goto out;
3557
3558 error = security_inode_rmdir(dir, dentry);
3559 if (error)
3560 goto out;
3561
3562 shrink_dcache_parent(dentry);
3563 error = dir->i_op->rmdir(dir, dentry);
3564 if (error)
3565 goto out;
3566
3567 dentry->d_inode->i_flags |= S_DEAD;
3568 dont_mount(dentry);
3569
3570 out:
3571 mutex_unlock(&dentry->d_inode->i_mutex);
3572 dput(dentry);
3573 if (!error)
3574 d_delete(dentry);
3575 return error;
3576 }
3577
3578 static long do_rmdir(int dfd, const char __user *pathname)
3579 {
3580 int error = 0;
3581 struct filename *name;
3582 struct dentry *dentry;
3583 struct nameidata nd;
3584 unsigned int lookup_flags = 0;
3585 retry:
3586 name = user_path_parent(dfd, pathname, &nd, lookup_flags);
3587 if (IS_ERR(name))
3588 return PTR_ERR(name);
3589
3590 switch(nd.last_type) {
3591 case LAST_DOTDOT:
3592 error = -ENOTEMPTY;
3593 goto exit1;
3594 case LAST_DOT:
3595 error = -EINVAL;
3596 goto exit1;
3597 case LAST_ROOT:
3598 error = -EBUSY;
3599 goto exit1;
3600 }
3601
3602 nd.flags &= ~LOOKUP_PARENT;
3603 error = mnt_want_write(nd.path.mnt);
3604 if (error)
3605 goto exit1;
3606
3607 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3608 dentry = lookup_hash(&nd);
3609 error = PTR_ERR(dentry);
3610 if (IS_ERR(dentry))
3611 goto exit2;
3612 if (!dentry->d_inode) {
3613 error = -ENOENT;
3614 goto exit3;
3615 }
3616 error = security_path_rmdir(&nd.path, dentry);
3617 if (error)
3618 goto exit3;
3619 error = vfs_rmdir(nd.path.dentry->d_inode, dentry);
3620 exit3:
3621 dput(dentry);
3622 exit2:
3623 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
3624 mnt_drop_write(nd.path.mnt);
3625 exit1:
3626 path_put(&nd.path);
3627 putname(name);
3628 if (retry_estale(error, lookup_flags)) {
3629 lookup_flags |= LOOKUP_REVAL;
3630 goto retry;
3631 }
3632 return error;
3633 }
3634
3635 SYSCALL_DEFINE1(rmdir, const char __user *, pathname)
3636 {
3637 return do_rmdir(AT_FDCWD, pathname);
3638 }
3639
3640 int vfs_unlink(struct inode *dir, struct dentry *dentry)
3641 {
3642 int error = may_delete(dir, dentry, 0);
3643
3644 if (error)
3645 return error;
3646
3647 if (!dir->i_op->unlink)
3648 return -EPERM;
3649
3650 mutex_lock(&dentry->d_inode->i_mutex);
3651 if (d_mountpoint(dentry))
3652 error = -EBUSY;
3653 else {
3654 error = security_inode_unlink(dir, dentry);
3655 if (!error) {
3656 error = dir->i_op->unlink(dir, dentry);
3657 if (!error)
3658 dont_mount(dentry);
3659 }
3660 }
3661 mutex_unlock(&dentry->d_inode->i_mutex);
3662
3663 /* We don't d_delete() NFS sillyrenamed files--they still exist. */
3664 if (!error && !(dentry->d_flags & DCACHE_NFSFS_RENAMED)) {
3665 fsnotify_link_count(dentry->d_inode);
3666 d_delete(dentry);
3667 }
3668
3669 return error;
3670 }
3671
3672 /*
3673 * Make sure that the actual truncation of the file will occur outside its
3674 * directory's i_mutex. Truncate can take a long time if there is a lot of
3675 * writeout happening, and we don't want to prevent access to the directory
3676 * while waiting on the I/O.
3677 */
3678 static long do_unlinkat(int dfd, const char __user *pathname)
3679 {
3680 int error;
3681 struct filename *name;
3682 struct dentry *dentry;
3683 struct nameidata nd;
3684 struct inode *inode = NULL;
3685 unsigned int lookup_flags = 0;
3686 retry:
3687 name = user_path_parent(dfd, pathname, &nd, lookup_flags);
3688 if (IS_ERR(name))
3689 return PTR_ERR(name);
3690
3691 error = -EISDIR;
3692 if (nd.last_type != LAST_NORM)
3693 goto exit1;
3694
3695 nd.flags &= ~LOOKUP_PARENT;
3696 error = mnt_want_write(nd.path.mnt);
3697 if (error)
3698 goto exit1;
3699
3700 mutex_lock_nested(&nd.path.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
3701 dentry = lookup_hash(&nd);
3702 error = PTR_ERR(dentry);
3703 if (!IS_ERR(dentry)) {
3704 /* Why not before? Because we want correct error value */
3705 if (nd.last.name[nd.last.len])
3706 goto slashes;
3707 inode = dentry->d_inode;
3708 if (!inode)
3709 goto slashes;
3710 ihold(inode);
3711 error = security_path_unlink(&nd.path, dentry);
3712 if (error)
3713 goto exit2;
3714 error = vfs_unlink(nd.path.dentry->d_inode, dentry);
3715 exit2:
3716 dput(dentry);
3717 }
3718 mutex_unlock(&nd.path.dentry->d_inode->i_mutex);
3719 if (inode)
3720 iput(inode); /* truncate the inode here */
3721 mnt_drop_write(nd.path.mnt);
3722 exit1:
3723 path_put(&nd.path);
3724 putname(name);
3725 if (retry_estale(error, lookup_flags)) {
3726 lookup_flags |= LOOKUP_REVAL;
3727 inode = NULL;
3728 goto retry;
3729 }
3730 return error;
3731
3732 slashes:
3733 error = !dentry->d_inode ? -ENOENT :
3734 S_ISDIR(dentry->d_inode->i_mode) ? -EISDIR : -ENOTDIR;
3735 goto exit2;
3736 }
3737
3738 SYSCALL_DEFINE3(unlinkat, int, dfd, const char __user *, pathname, int, flag)
3739 {
3740 if ((flag & ~AT_REMOVEDIR) != 0)
3741 return -EINVAL;
3742
3743 if (flag & AT_REMOVEDIR)
3744 return do_rmdir(dfd, pathname);
3745
3746 return do_unlinkat(dfd, pathname);
3747 }
3748
3749 SYSCALL_DEFINE1(unlink, const char __user *, pathname)
3750 {
3751 return do_unlinkat(AT_FDCWD, pathname);
3752 }
3753
3754 int vfs_symlink(struct inode *dir, struct dentry *dentry, const char *oldname)
3755 {
3756 int error = may_create(dir, dentry);
3757
3758 if (error)
3759 return error;
3760
3761 if (!dir->i_op->symlink)
3762 return -EPERM;
3763
3764 error = security_inode_symlink(dir, dentry, oldname);
3765 if (error)
3766 return error;
3767
3768 error = dir->i_op->symlink(dir, dentry, oldname);
3769 if (!error)
3770 fsnotify_create(dir, dentry);
3771 return error;
3772 }
3773
3774 SYSCALL_DEFINE3(symlinkat, const char __user *, oldname,
3775 int, newdfd, const char __user *, newname)
3776 {
3777 int error;
3778 struct filename *from;
3779 struct dentry *dentry;
3780 struct path path;
3781 unsigned int lookup_flags = 0;
3782
3783 from = getname(oldname);
3784 if (IS_ERR(from))
3785 return PTR_ERR(from);
3786 retry:
3787 dentry = user_path_create(newdfd, newname, &path, lookup_flags);
3788 error = PTR_ERR(dentry);
3789 if (IS_ERR(dentry))
3790 goto out_putname;
3791
3792 error = security_path_symlink(&path, dentry, from->name);
3793 if (!error)
3794 error = vfs_symlink(path.dentry->d_inode, dentry, from->name);
3795 done_path_create(&path, dentry);
3796 if (retry_estale(error, lookup_flags)) {
3797 lookup_flags |= LOOKUP_REVAL;
3798 goto retry;
3799 }
3800 out_putname:
3801 putname(from);
3802 return error;
3803 }
3804
3805 SYSCALL_DEFINE2(symlink, const char __user *, oldname, const char __user *, newname)
3806 {
3807 return sys_symlinkat(oldname, AT_FDCWD, newname);
3808 }
3809
3810 int vfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *new_dentry)
3811 {
3812 struct inode *inode = old_dentry->d_inode;
3813 unsigned max_links = dir->i_sb->s_max_links;
3814 int error;
3815
3816 if (!inode)
3817 return -ENOENT;
3818
3819 error = may_create(dir, new_dentry);
3820 if (error)
3821 return error;
3822
3823 if (dir->i_sb != inode->i_sb)
3824 return -EXDEV;
3825
3826 /*
3827 * A link to an append-only or immutable file cannot be created.
3828 */
3829 if (IS_APPEND(inode) || IS_IMMUTABLE(inode))
3830 return -EPERM;
3831 if (!dir->i_op->link)
3832 return -EPERM;
3833 if (S_ISDIR(inode->i_mode))
3834 return -EPERM;
3835
3836 error = security_inode_link(old_dentry, dir, new_dentry);
3837 if (error)
3838 return error;
3839
3840 mutex_lock(&inode->i_mutex);
3841 /* Make sure we don't allow creating hardlink to an unlinked file */
3842 if (inode->i_nlink == 0 && !(inode->i_state & I_LINKABLE))
3843 error = -ENOENT;
3844 else if (max_links && inode->i_nlink >= max_links)
3845 error = -EMLINK;
3846 else
3847 error = dir->i_op->link(old_dentry, dir, new_dentry);
3848
3849 if (!error && (inode->i_state & I_LINKABLE)) {
3850 spin_lock(&inode->i_lock);
3851 inode->i_state &= ~I_LINKABLE;
3852 spin_unlock(&inode->i_lock);
3853 }
3854 mutex_unlock(&inode->i_mutex);
3855 if (!error)
3856 fsnotify_link(dir, inode, new_dentry);
3857 return error;
3858 }
3859
3860 /*
3861 * Hardlinks are often used in delicate situations. We avoid
3862 * security-related surprises by not following symlinks on the
3863 * newname. --KAB
3864 *
3865 * We don't follow them on the oldname either to be compatible
3866 * with linux 2.0, and to avoid hard-linking to directories
3867 * and other special files. --ADM
3868 */
3869 SYSCALL_DEFINE5(linkat, int, olddfd, const char __user *, oldname,
3870 int, newdfd, const char __user *, newname, int, flags)
3871 {
3872 struct dentry *new_dentry;
3873 struct path old_path, new_path;
3874 int how = 0;
3875 int error;
3876
3877 if ((flags & ~(AT_SYMLINK_FOLLOW | AT_EMPTY_PATH)) != 0)
3878 return -EINVAL;
3879 /*
3880 * To use null names we require CAP_DAC_READ_SEARCH
3881 * This ensures that not everyone will be able to create
3882 * handlink using the passed filedescriptor.
3883 */
3884 if (flags & AT_EMPTY_PATH) {
3885 if (!capable(CAP_DAC_READ_SEARCH))
3886 return -ENOENT;
3887 how = LOOKUP_EMPTY;
3888 }
3889
3890 if (flags & AT_SYMLINK_FOLLOW)
3891 how |= LOOKUP_FOLLOW;
3892 retry:
3893 error = user_path_at(olddfd, oldname, how, &old_path);
3894 if (error)
3895 return error;
3896
3897 new_dentry = user_path_create(newdfd, newname, &new_path,
3898 (how & LOOKUP_REVAL));
3899 error = PTR_ERR(new_dentry);
3900 if (IS_ERR(new_dentry))
3901 goto out;
3902
3903 error = -EXDEV;
3904 if (old_path.mnt != new_path.mnt)
3905 goto out_dput;
3906 error = may_linkat(&old_path);
3907 if (unlikely(error))
3908 goto out_dput;
3909 error = security_path_link(old_path.dentry, &new_path, new_dentry);
3910 if (error)
3911 goto out_dput;
3912 error = vfs_link(old_path.dentry, new_path.dentry->d_inode, new_dentry);
3913 out_dput:
3914 done_path_create(&new_path, new_dentry);
3915 if (retry_estale(error, how)) {
3916 how |= LOOKUP_REVAL;
3917 goto retry;
3918 }
3919 out:
3920 path_put(&old_path);
3921
3922 return error;
3923 }
3924
3925 SYSCALL_DEFINE2(link, const char __user *, oldname, const char __user *, newname)
3926 {
3927 return sys_linkat(AT_FDCWD, oldname, AT_FDCWD, newname, 0);
3928 }
3929
3930 /*
3931 * The worst of all namespace operations - renaming directory. "Perverted"
3932 * doesn't even start to describe it. Somebody in UCB had a heck of a trip...
3933 * Problems:
3934 * a) we can get into loop creation. Check is done in is_subdir().
3935 * b) race potential - two innocent renames can create a loop together.
3936 * That's where 4.4 screws up. Current fix: serialization on
3937 * sb->s_vfs_rename_mutex. We might be more accurate, but that's another
3938 * story.
3939 * c) we have to lock _three_ objects - parents and victim (if it exists).
3940 * And that - after we got ->i_mutex on parents (until then we don't know
3941 * whether the target exists). Solution: try to be smart with locking
3942 * order for inodes. We rely on the fact that tree topology may change
3943 * only under ->s_vfs_rename_mutex _and_ that parent of the object we
3944 * move will be locked. Thus we can rank directories by the tree
3945 * (ancestors first) and rank all non-directories after them.
3946 * That works since everybody except rename does "lock parent, lookup,
3947 * lock child" and rename is under ->s_vfs_rename_mutex.
3948 * HOWEVER, it relies on the assumption that any object with ->lookup()
3949 * has no more than 1 dentry. If "hybrid" objects will ever appear,
3950 * we'd better make sure that there's no link(2) for them.
3951 * d) conversion from fhandle to dentry may come in the wrong moment - when
3952 * we are removing the target. Solution: we will have to grab ->i_mutex
3953 * in the fhandle_to_dentry code. [FIXME - current nfsfh.c relies on
3954 * ->i_mutex on parents, which works but leads to some truly excessive
3955 * locking].
3956 */
3957 static int vfs_rename_dir(struct inode *old_dir, struct dentry *old_dentry,
3958 struct inode *new_dir, struct dentry *new_dentry)
3959 {
3960 int error = 0;
3961 struct inode *target = new_dentry->d_inode;
3962 unsigned max_links = new_dir->i_sb->s_max_links;
3963
3964 /*
3965 * If we are going to change the parent - check write permissions,
3966 * we'll need to flip '..'.
3967 */
3968 if (new_dir != old_dir) {
3969 error = inode_permission(old_dentry->d_inode, MAY_WRITE);
3970 if (error)
3971 return error;
3972 }
3973
3974 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
3975 if (error)
3976 return error;
3977
3978 dget(new_dentry);
3979 if (target)
3980 mutex_lock(&target->i_mutex);
3981
3982 error = -EBUSY;
3983 if (d_mountpoint(old_dentry) || d_mountpoint(new_dentry))
3984 goto out;
3985
3986 error = -EMLINK;
3987 if (max_links && !target && new_dir != old_dir &&
3988 new_dir->i_nlink >= max_links)
3989 goto out;
3990
3991 if (target)
3992 shrink_dcache_parent(new_dentry);
3993 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
3994 if (error)
3995 goto out;
3996
3997 if (target) {
3998 target->i_flags |= S_DEAD;
3999 dont_mount(new_dentry);
4000 }
4001 out:
4002 if (target)
4003 mutex_unlock(&target->i_mutex);
4004 dput(new_dentry);
4005 if (!error)
4006 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
4007 d_move(old_dentry,new_dentry);
4008 return error;
4009 }
4010
4011 static int vfs_rename_other(struct inode *old_dir, struct dentry *old_dentry,
4012 struct inode *new_dir, struct dentry *new_dentry)
4013 {
4014 struct inode *target = new_dentry->d_inode;
4015 int error;
4016
4017 error = security_inode_rename(old_dir, old_dentry, new_dir, new_dentry);
4018 if (error)
4019 return error;
4020
4021 dget(new_dentry);
4022 if (target)
4023 mutex_lock(&target->i_mutex);
4024
4025 error = -EBUSY;
4026 if (d_mountpoint(old_dentry)||d_mountpoint(new_dentry))
4027 goto out;
4028
4029 error = old_dir->i_op->rename(old_dir, old_dentry, new_dir, new_dentry);
4030 if (error)
4031 goto out;
4032
4033 if (target)
4034 dont_mount(new_dentry);
4035 if (!(old_dir->i_sb->s_type->fs_flags & FS_RENAME_DOES_D_MOVE))
4036 d_move(old_dentry, new_dentry);
4037 out:
4038 if (target)
4039 mutex_unlock(&target->i_mutex);
4040 dput(new_dentry);
4041 return error;
4042 }
4043
4044 int vfs_rename(struct inode *old_dir, struct dentry *old_dentry,
4045 struct inode *new_dir, struct dentry *new_dentry)
4046 {
4047 int error;
4048 int is_dir = S_ISDIR(old_dentry->d_inode->i_mode);
4049 const unsigned char *old_name;
4050
4051 if (old_dentry->d_inode == new_dentry->d_inode)
4052 return 0;
4053
4054 error = may_delete(old_dir, old_dentry, is_dir);
4055 if (error)
4056 return error;
4057
4058 if (!new_dentry->d_inode)
4059 error = may_create(new_dir, new_dentry);
4060 else
4061 error = may_delete(new_dir, new_dentry, is_dir);
4062 if (error)
4063 return error;
4064
4065 if (!old_dir->i_op->rename)
4066 return -EPERM;
4067
4068 old_name = fsnotify_oldname_init(old_dentry->d_name.name);
4069
4070 if (is_dir)
4071 error = vfs_rename_dir(old_dir,old_dentry,new_dir,new_dentry);
4072 else
4073 error = vfs_rename_other(old_dir,old_dentry,new_dir,new_dentry);
4074 if (!error)
4075 fsnotify_move(old_dir, new_dir, old_name, is_dir,
4076 new_dentry->d_inode, old_dentry);
4077 fsnotify_oldname_free(old_name);
4078
4079 return error;
4080 }
4081
4082 SYSCALL_DEFINE4(renameat, int, olddfd, const char __user *, oldname,
4083 int, newdfd, const char __user *, newname)
4084 {
4085 struct dentry *old_dir, *new_dir;
4086 struct dentry *old_dentry, *new_dentry;
4087 struct dentry *trap;
4088 struct nameidata oldnd, newnd;
4089 struct filename *from;
4090 struct filename *to;
4091 unsigned int lookup_flags = 0;
4092 bool should_retry = false;
4093 int error;
4094 retry:
4095 from = user_path_parent(olddfd, oldname, &oldnd, lookup_flags);
4096 if (IS_ERR(from)) {
4097 error = PTR_ERR(from);
4098 goto exit;
4099 }
4100
4101 to = user_path_parent(newdfd, newname, &newnd, lookup_flags);
4102 if (IS_ERR(to)) {
4103 error = PTR_ERR(to);
4104 goto exit1;
4105 }
4106
4107 error = -EXDEV;
4108 if (oldnd.path.mnt != newnd.path.mnt)
4109 goto exit2;
4110
4111 old_dir = oldnd.path.dentry;
4112 error = -EBUSY;
4113 if (oldnd.last_type != LAST_NORM)
4114 goto exit2;
4115
4116 new_dir = newnd.path.dentry;
4117 if (newnd.last_type != LAST_NORM)
4118 goto exit2;
4119
4120 error = mnt_want_write(oldnd.path.mnt);
4121 if (error)
4122 goto exit2;
4123
4124 oldnd.flags &= ~LOOKUP_PARENT;
4125 newnd.flags &= ~LOOKUP_PARENT;
4126 newnd.flags |= LOOKUP_RENAME_TARGET;
4127
4128 trap = lock_rename(new_dir, old_dir);
4129
4130 old_dentry = lookup_hash(&oldnd);
4131 error = PTR_ERR(old_dentry);
4132 if (IS_ERR(old_dentry))
4133 goto exit3;
4134 /* source must exist */
4135 error = -ENOENT;
4136 if (!old_dentry->d_inode)
4137 goto exit4;
4138 /* unless the source is a directory trailing slashes give -ENOTDIR */
4139 if (!S_ISDIR(old_dentry->d_inode->i_mode)) {
4140 error = -ENOTDIR;
4141 if (oldnd.last.name[oldnd.last.len])
4142 goto exit4;
4143 if (newnd.last.name[newnd.last.len])
4144 goto exit4;
4145 }
4146 /* source should not be ancestor of target */
4147 error = -EINVAL;
4148 if (old_dentry == trap)
4149 goto exit4;
4150 new_dentry = lookup_hash(&newnd);
4151 error = PTR_ERR(new_dentry);
4152 if (IS_ERR(new_dentry))
4153 goto exit4;
4154 /* target should not be an ancestor of source */
4155 error = -ENOTEMPTY;
4156 if (new_dentry == trap)
4157 goto exit5;
4158
4159 error = security_path_rename(&oldnd.path, old_dentry,
4160 &newnd.path, new_dentry);
4161 if (error)
4162 goto exit5;
4163 error = vfs_rename(old_dir->d_inode, old_dentry,
4164 new_dir->d_inode, new_dentry);
4165 exit5:
4166 dput(new_dentry);
4167 exit4:
4168 dput(old_dentry);
4169 exit3:
4170 unlock_rename(new_dir, old_dir);
4171 mnt_drop_write(oldnd.path.mnt);
4172 exit2:
4173 if (retry_estale(error, lookup_flags))
4174 should_retry = true;
4175 path_put(&newnd.path);
4176 putname(to);
4177 exit1:
4178 path_put(&oldnd.path);
4179 putname(from);
4180 if (should_retry) {
4181 should_retry = false;
4182 lookup_flags |= LOOKUP_REVAL;
4183 goto retry;
4184 }
4185 exit:
4186 return error;
4187 }
4188
4189 SYSCALL_DEFINE2(rename, const char __user *, oldname, const char __user *, newname)
4190 {
4191 return sys_renameat(AT_FDCWD, oldname, AT_FDCWD, newname);
4192 }
4193
4194 int vfs_readlink(struct dentry *dentry, char __user *buffer, int buflen, const char *link)
4195 {
4196 int len;
4197
4198 len = PTR_ERR(link);
4199 if (IS_ERR(link))
4200 goto out;
4201
4202 len = strlen(link);
4203 if (len > (unsigned) buflen)
4204 len = buflen;
4205 if (copy_to_user(buffer, link, len))
4206 len = -EFAULT;
4207 out:
4208 return len;
4209 }
4210
4211 /*
4212 * A helper for ->readlink(). This should be used *ONLY* for symlinks that
4213 * have ->follow_link() touching nd only in nd_set_link(). Using (or not
4214 * using) it for any given inode is up to filesystem.
4215 */
4216 int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4217 {
4218 struct nameidata nd;
4219 void *cookie;
4220 int res;
4221
4222 nd.depth = 0;
4223 cookie = dentry->d_inode->i_op->follow_link(dentry, &nd);
4224 if (IS_ERR(cookie))
4225 return PTR_ERR(cookie);
4226
4227 res = vfs_readlink(dentry, buffer, buflen, nd_get_link(&nd));
4228 if (dentry->d_inode->i_op->put_link)
4229 dentry->d_inode->i_op->put_link(dentry, &nd, cookie);
4230 return res;
4231 }
4232
4233 int vfs_follow_link(struct nameidata *nd, const char *link)
4234 {
4235 return __vfs_follow_link(nd, link);
4236 }
4237
4238 /* get the link contents into pagecache */
4239 static char *page_getlink(struct dentry * dentry, struct page **ppage)
4240 {
4241 char *kaddr;
4242 struct page *page;
4243 struct address_space *mapping = dentry->d_inode->i_mapping;
4244 page = read_mapping_page(mapping, 0, NULL);
4245 if (IS_ERR(page))
4246 return (char*)page;
4247 *ppage = page;
4248 kaddr = kmap(page);
4249 nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
4250 return kaddr;
4251 }
4252
4253 int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
4254 {
4255 struct page *page = NULL;
4256 char *s = page_getlink(dentry, &page);
4257 int res = vfs_readlink(dentry,buffer,buflen,s);
4258 if (page) {
4259 kunmap(page);
4260 page_cache_release(page);
4261 }
4262 return res;
4263 }
4264
4265 void *page_follow_link_light(struct dentry *dentry, struct nameidata *nd)
4266 {
4267 struct page *page = NULL;
4268 nd_set_link(nd, page_getlink(dentry, &page));
4269 return page;
4270 }
4271
4272 void page_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
4273 {
4274 struct page *page = cookie;
4275
4276 if (page) {
4277 kunmap(page);
4278 page_cache_release(page);
4279 }
4280 }
4281
4282 /*
4283 * The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
4284 */
4285 int __page_symlink(struct inode *inode, const char *symname, int len, int nofs)
4286 {
4287 struct address_space *mapping = inode->i_mapping;
4288 struct page *page;
4289 void *fsdata;
4290 int err;
4291 char *kaddr;
4292 unsigned int flags = AOP_FLAG_UNINTERRUPTIBLE;
4293 if (nofs)
4294 flags |= AOP_FLAG_NOFS;
4295
4296 retry:
4297 err = pagecache_write_begin(NULL, mapping, 0, len-1,
4298 flags, &page, &fsdata);
4299 if (err)
4300 goto fail;
4301
4302 kaddr = kmap_atomic(page);
4303 memcpy(kaddr, symname, len-1);
4304 kunmap_atomic(kaddr);
4305
4306 err = pagecache_write_end(NULL, mapping, 0, len-1, len-1,
4307 page, fsdata);
4308 if (err < 0)
4309 goto fail;
4310 if (err < len-1)
4311 goto retry;
4312
4313 mark_inode_dirty(inode);
4314 return 0;
4315 fail:
4316 return err;
4317 }
4318
4319 int page_symlink(struct inode *inode, const char *symname, int len)
4320 {
4321 return __page_symlink(inode, symname, len,
4322 !(mapping_gfp_mask(inode->i_mapping) & __GFP_FS));
4323 }
4324
4325 const struct inode_operations page_symlink_inode_operations = {
4326 .readlink = generic_readlink,
4327 .follow_link = page_follow_link_light,
4328 .put_link = page_put_link,
4329 };
4330
4331 EXPORT_SYMBOL(user_path_at);
4332 EXPORT_SYMBOL(follow_down_one);
4333 EXPORT_SYMBOL(follow_down);
4334 EXPORT_SYMBOL(follow_up);
4335 EXPORT_SYMBOL(get_write_access); /* nfsd */
4336 EXPORT_SYMBOL(lock_rename);
4337 EXPORT_SYMBOL(lookup_one_len);
4338 EXPORT_SYMBOL(page_follow_link_light);
4339 EXPORT_SYMBOL(page_put_link);
4340 EXPORT_SYMBOL(page_readlink);
4341 EXPORT_SYMBOL(__page_symlink);
4342 EXPORT_SYMBOL(page_symlink);
4343 EXPORT_SYMBOL(page_symlink_inode_operations);
4344 EXPORT_SYMBOL(kern_path);
4345 EXPORT_SYMBOL(vfs_path_lookup);
4346 EXPORT_SYMBOL(inode_permission);
4347 EXPORT_SYMBOL(unlock_rename);
4348 EXPORT_SYMBOL(vfs_create);
4349 EXPORT_SYMBOL(vfs_follow_link);
4350 EXPORT_SYMBOL(vfs_link);
4351 EXPORT_SYMBOL(vfs_mkdir);
4352 EXPORT_SYMBOL(vfs_mknod);
4353 EXPORT_SYMBOL(generic_permission);
4354 EXPORT_SYMBOL(vfs_readlink);
4355 EXPORT_SYMBOL(vfs_rename);
4356 EXPORT_SYMBOL(vfs_rmdir);
4357 EXPORT_SYMBOL(vfs_symlink);
4358 EXPORT_SYMBOL(vfs_unlink);
4359 EXPORT_SYMBOL(dentry_unhash);
4360 EXPORT_SYMBOL(generic_readlink);
This page took 0.119373 seconds and 6 git commands to generate.