1 // SPDX-License-Identifier: GPL-2.0
3 * fs/sysfs/symlink.c - sysfs symlink implementation
5 * Copyright (c) 2001-3 Patrick Mochel
6 * Copyright (c) 2007 SUSE Linux Products GmbH
7 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
9 * Please see Documentation/filesystems/sysfs.rst for more information.
13 #include <linux/module.h>
14 #include <linux/kobject.h>
15 #include <linux/mutex.h>
16 #include <linux/security.h>
20 static int sysfs_do_create_link_sd(struct kernfs_node
*parent
,
21 struct kobject
*target_kobj
,
22 const char *name
, int warn
)
24 struct kernfs_node
*kn
, *target
= NULL
;
26 if (WARN_ON(!name
|| !parent
))
30 * We don't own @target_kobj and it may be removed at any time.
31 * Synchronize using sysfs_symlink_target_lock. See
32 * sysfs_remove_dir() for details.
34 spin_lock(&sysfs_symlink_target_lock
);
35 if (target_kobj
->sd
) {
36 target
= target_kobj
->sd
;
39 spin_unlock(&sysfs_symlink_target_lock
);
44 kn
= kernfs_create_link(parent
, name
, target
);
50 if (warn
&& PTR_ERR(kn
) == -EEXIST
)
51 sysfs_warn_dup(parent
, name
);
56 * sysfs_create_link_sd - create symlink to a given object.
57 * @kn: directory we're creating the link in.
58 * @target: object we're pointing to.
59 * @name: name of the symlink.
61 int sysfs_create_link_sd(struct kernfs_node
*kn
, struct kobject
*target
,
64 return sysfs_do_create_link_sd(kn
, target
, name
, 1);
67 static int sysfs_do_create_link(struct kobject
*kobj
, struct kobject
*target
,
68 const char *name
, int warn
)
70 struct kernfs_node
*parent
= NULL
;
73 parent
= sysfs_root_kn
;
80 return sysfs_do_create_link_sd(parent
, target
, name
, warn
);
84 * sysfs_create_link - create symlink between two objects.
85 * @kobj: object whose directory we're creating the link in.
86 * @target: object we're pointing to.
87 * @name: name of the symlink.
89 int sysfs_create_link(struct kobject
*kobj
, struct kobject
*target
,
92 return sysfs_do_create_link(kobj
, target
, name
, 1);
94 EXPORT_SYMBOL_GPL(sysfs_create_link
);
97 * sysfs_create_link_nowarn - create symlink between two objects.
98 * @kobj: object whose directory we're creating the link in.
99 * @target: object we're pointing to.
100 * @name: name of the symlink.
102 * This function does the same as sysfs_create_link(), but it
103 * doesn't warn if the link already exists.
105 int sysfs_create_link_nowarn(struct kobject
*kobj
, struct kobject
*target
,
108 return sysfs_do_create_link(kobj
, target
, name
, 0);
110 EXPORT_SYMBOL_GPL(sysfs_create_link_nowarn
);
113 * sysfs_delete_link - remove symlink in object's directory.
114 * @kobj: object we're acting for.
115 * @targ: object we're pointing to.
116 * @name: name of the symlink to remove.
118 * Unlike sysfs_remove_link sysfs_delete_link has enough information
119 * to successfully delete symlinks in tagged directories.
121 void sysfs_delete_link(struct kobject
*kobj
, struct kobject
*targ
,
124 const void *ns
= NULL
;
127 * We don't own @target and it may be removed at any time.
128 * Synchronize using sysfs_symlink_target_lock. See
129 * sysfs_remove_dir() for details.
131 spin_lock(&sysfs_symlink_target_lock
);
132 if (targ
->sd
&& kernfs_ns_enabled(kobj
->sd
))
134 spin_unlock(&sysfs_symlink_target_lock
);
135 kernfs_remove_by_name_ns(kobj
->sd
, name
, ns
);
139 * sysfs_remove_link - remove symlink in object's directory.
140 * @kobj: object we're acting for.
141 * @name: name of the symlink to remove.
143 void sysfs_remove_link(struct kobject
*kobj
, const char *name
)
145 struct kernfs_node
*parent
= NULL
;
148 parent
= sysfs_root_kn
;
152 kernfs_remove_by_name(parent
, name
);
154 EXPORT_SYMBOL_GPL(sysfs_remove_link
);
157 * sysfs_rename_link_ns - rename symlink in object's directory.
158 * @kobj: object we're acting for.
159 * @targ: object we're pointing to.
160 * @old: previous name of the symlink.
161 * @new: new name of the symlink.
162 * @new_ns: new namespace of the symlink.
164 * A helper function for the common rename symlink idiom.
166 int sysfs_rename_link_ns(struct kobject
*kobj
, struct kobject
*targ
,
167 const char *old
, const char *new, const void *new_ns
)
169 struct kernfs_node
*parent
, *kn
= NULL
;
170 const void *old_ns
= NULL
;
174 parent
= sysfs_root_kn
;
179 old_ns
= targ
->sd
->ns
;
182 kn
= kernfs_find_and_get_ns(parent
, old
, old_ns
);
187 if (kernfs_type(kn
) != KERNFS_LINK
)
189 if (kn
->symlink
.target_kn
->priv
!= targ
)
192 result
= kernfs_rename_ns(kn
, parent
, new, new_ns
);
198 EXPORT_SYMBOL_GPL(sysfs_rename_link_ns
);