symlink.c 1.8 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
/*
 * JFFS2 -- Journalling Flash File System, Version 2.
 *
4
 * Copyright © 2001-2007 Red Hat, Inc.
L
Linus Torvalds 已提交
5 6 7 8 9 10 11
 *
 * Created by David Woodhouse <dwmw2@infradead.org>
 *
 * For licensing information, see the file 'LICENCE' in this directory.
 *
 */

12 13
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

L
Linus Torvalds 已提交
14 15 16 17 18
#include <linux/kernel.h>
#include <linux/fs.h>
#include <linux/namei.h>
#include "nodelist.h"

19
static void *jffs2_follow_link(struct dentry *dentry, struct nameidata *nd);
L
Linus Torvalds 已提交
20

21
const struct inode_operations jffs2_symlink_inode_operations =
22
{
L
Linus Torvalds 已提交
23 24
	.readlink =	generic_readlink,
	.follow_link =	jffs2_follow_link,
25 26 27 28 29
	.setattr =	jffs2_setattr,
	.setxattr =	jffs2_setxattr,
	.getxattr =	jffs2_getxattr,
	.listxattr =	jffs2_listxattr,
	.removexattr =	jffs2_removexattr
L
Linus Torvalds 已提交
30 31
};

32
static void *jffs2_follow_link(struct dentry *dentry, struct nameidata *nd)
L
Linus Torvalds 已提交
33
{
34
	struct jffs2_inode_info *f = JFFS2_INODE_INFO(dentry->d_inode);
35 36
	char *p = (char *)f->target;

37 38
	/*
	 * We don't acquire the f->sem mutex here since the only data we
39
	 * use is f->target.
40
	 *
41
	 * 1. If we are here the inode has already built and f->target has
42
	 * to point to the target path.
43 44
	 * 2. Nobody uses f->target (if the inode is symlink's inode). The
	 * exception is inode freeing function which frees f->target. But
45
	 * it can't be called while we are here and before VFS has
46
	 * stopped using our f->target string which we provide by means of
47 48
	 * nd_set_link() call.
	 */
49

50
	if (!p) {
51
		pr_err("%s(): can't find symlink target\n", __func__);
52
		p = ERR_PTR(-EIO);
53
	}
54 55
	jffs2_dbg(1, "%s(): target path is '%s'\n",
		  __func__, (char *)f->target);
56

57
	nd_set_link(nd, p);
58

59
	/*
60 61 62
	 * We will unlock the f->sem mutex but VFS will use the f->target string. This is safe
	 * since the only way that may cause f->target to be changed is iput() operation.
	 * But VFS will not use f->target after iput() has been called.
63
	 */
64
	return NULL;
L
Linus Torvalds 已提交
65 66
}