symlink.c 4.8 KB
Newer Older
G
Greg Kroah-Hartman 已提交
1
// SPDX-License-Identifier: GPL-2.0
L
Linus Torvalds 已提交
2
/*
T
Tejun Heo 已提交
3 4 5 6 7 8 9
 * fs/sysfs/symlink.c - sysfs symlink implementation
 *
 * Copyright (c) 2001-3 Patrick Mochel
 * Copyright (c) 2007 SUSE Linux Products GmbH
 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
 *
 * Please see Documentation/filesystems/sysfs.txt for more information.
L
Linus Torvalds 已提交
10 11 12 13 14
 */

#include <linux/fs.h>
#include <linux/module.h>
#include <linux/kobject.h>
D
Dave Young 已提交
15
#include <linux/mutex.h>
16
#include <linux/security.h>
L
Linus Torvalds 已提交
17 18 19

#include "sysfs.h"

20 21
static int sysfs_do_create_link_sd(struct kernfs_node *parent,
				   struct kobject *target_kobj,
22
				   const char *name, int warn)
L
Linus Torvalds 已提交
23
{
24
	struct kernfs_node *kn, *target = NULL;
L
Linus Torvalds 已提交
25

26
	BUG_ON(!name || !parent);
27

28
	/*
29
	 * We don't own @target_kobj and it may be removed at any time.
30 31
	 * Synchronize using sysfs_symlink_target_lock.  See
	 * sysfs_remove_dir() for details.
32
	 */
33
	spin_lock(&sysfs_symlink_target_lock);
34 35 36
	if (target_kobj->sd) {
		target = target_kobj->sd;
		kernfs_get(target);
37
	}
38
	spin_unlock(&sysfs_symlink_target_lock);
39

40
	if (!target)
41
		return -ENOENT;
42

43 44
	kn = kernfs_create_link(parent, name, target);
	kernfs_put(target);
45

46
	if (!IS_ERR(kn))
47
		return 0;
48

49 50 51
	if (warn && PTR_ERR(kn) == -EEXIST)
		sysfs_warn_dup(parent, name);
	return PTR_ERR(kn);
L
Linus Torvalds 已提交
52 53
}

54 55
/**
 *	sysfs_create_link_sd - create symlink to a given object.
56
 *	@kn:		directory we're creating the link in.
57 58 59
 *	@target:	object we're pointing to.
 *	@name:		name of the symlink.
 */
60
int sysfs_create_link_sd(struct kernfs_node *kn, struct kobject *target,
61 62
			 const char *name)
{
63
	return sysfs_do_create_link_sd(kn, target, name, 1);
64 65 66 67 68
}

static int sysfs_do_create_link(struct kobject *kobj, struct kobject *target,
				const char *name, int warn)
{
69
	struct kernfs_node *parent = NULL;
70 71

	if (!kobj)
72
		parent = sysfs_root_kn;
73
	else
74
		parent = kobj->sd;
75

76
	if (!parent)
77 78
		return -EFAULT;

79
	return sysfs_do_create_link_sd(parent, target, name, warn);
80 81
}

82 83 84 85 86 87 88 89 90 91 92
/**
 *	sysfs_create_link - create symlink between two objects.
 *	@kobj:	object whose directory we're creating the link in.
 *	@target:	object we're pointing to.
 *	@name:		name of the symlink.
 */
int sysfs_create_link(struct kobject *kobj, struct kobject *target,
		      const char *name)
{
	return sysfs_do_create_link(kobj, target, name, 1);
}
93
EXPORT_SYMBOL_GPL(sysfs_create_link);
94 95 96 97 98 99 100

/**
 *	sysfs_create_link_nowarn - create symlink between two objects.
 *	@kobj:	object whose directory we're creating the link in.
 *	@target:	object we're pointing to.
 *	@name:		name of the symlink.
 *
101
 *	This function does the same as sysfs_create_link(), but it
102 103 104 105 106 107 108 109
 *	doesn't warn if the link already exists.
 */
int sysfs_create_link_nowarn(struct kobject *kobj, struct kobject *target,
			     const char *name)
{
	return sysfs_do_create_link(kobj, target, name, 0);
}

110 111 112 113 114 115 116 117 118 119 120 121 122
/**
 *	sysfs_delete_link - remove symlink in object's directory.
 *	@kobj:	object we're acting for.
 *	@targ:	object we're pointing to.
 *	@name:	name of the symlink to remove.
 *
 *	Unlike sysfs_remove_link sysfs_delete_link has enough information
 *	to successfully delete symlinks in tagged directories.
 */
void sysfs_delete_link(struct kobject *kobj, struct kobject *targ,
			const char *name)
{
	const void *ns = NULL;
123 124 125 126 127 128 129

	/*
	 * We don't own @target and it may be removed at any time.
	 * Synchronize using sysfs_symlink_target_lock.  See
	 * sysfs_remove_dir() for details.
	 */
	spin_lock(&sysfs_symlink_target_lock);
130
	if (targ->sd && kernfs_ns_enabled(kobj->sd))
131
		ns = targ->sd->ns;
132
	spin_unlock(&sysfs_symlink_target_lock);
133
	kernfs_remove_by_name_ns(kobj->sd, name, ns);
134 135
}

L
Linus Torvalds 已提交
136 137 138 139 140
/**
 *	sysfs_remove_link - remove symlink in object's directory.
 *	@kobj:	object we're acting for.
 *	@name:	name of the symlink to remove.
 */
141
void sysfs_remove_link(struct kobject *kobj, const char *name)
L
Linus Torvalds 已提交
142
{
143
	struct kernfs_node *parent = NULL;
144 145

	if (!kobj)
146
		parent = sysfs_root_kn;
147
	else
148
		parent = kobj->sd;
149

150
	kernfs_remove_by_name(parent, name);
L
Linus Torvalds 已提交
151
}
152
EXPORT_SYMBOL_GPL(sysfs_remove_link);
L
Linus Torvalds 已提交
153

154
/**
155
 *	sysfs_rename_link_ns - rename symlink in object's directory.
156 157 158 159
 *	@kobj:	object we're acting for.
 *	@targ:	object we're pointing to.
 *	@old:	previous name of the symlink.
 *	@new:	new name of the symlink.
160
 *	@new_ns: new namespace of the symlink.
161 162 163
 *
 *	A helper function for the common rename symlink idiom.
 */
164 165
int sysfs_rename_link_ns(struct kobject *kobj, struct kobject *targ,
			 const char *old, const char *new, const void *new_ns)
166
{
167
	struct kernfs_node *parent, *kn = NULL;
168
	const void *old_ns = NULL;
169 170 171
	int result;

	if (!kobj)
172
		parent = sysfs_root_kn;
173
	else
174
		parent = kobj->sd;
175

176
	if (targ->sd)
177
		old_ns = targ->sd->ns;
178

179
	result = -ENOENT;
180 181
	kn = kernfs_find_and_get_ns(parent, old, old_ns);
	if (!kn)
182 183 184
		goto out;

	result = -EINVAL;
T
Tejun Heo 已提交
185
	if (kernfs_type(kn) != KERNFS_LINK)
186
		goto out;
187
	if (kn->symlink.target_kn->priv != targ)
188 189
		goto out;

190
	result = kernfs_rename_ns(kn, parent, new, new_ns);
191 192

out:
193
	kernfs_put(kn);
194 195
	return result;
}
196
EXPORT_SYMBOL_GPL(sysfs_rename_link_ns);