]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - fs/sysfs/symlink.c
Merge branches 'x86/amd', 'x86/vt-d', 'arm/rockchip', 'arm/omap', 'arm/mediatek'...
[mirror_ubuntu-hirsute-kernel.git] / fs / sysfs / symlink.c
CommitLineData
619daeee 1// SPDX-License-Identifier: GPL-2.0
1da177e4 2/*
6d66f5cd
TH
3 * fs/sysfs/symlink.c - sysfs symlink implementation
4 *
5 * Copyright (c) 2001-3 Patrick Mochel
6 * Copyright (c) 2007 SUSE Linux Products GmbH
7 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
8 *
6d66f5cd 9 * Please see Documentation/filesystems/sysfs.txt for more information.
1da177e4
LT
10 */
11
12#include <linux/fs.h>
13#include <linux/module.h>
14#include <linux/kobject.h>
869512ab 15#include <linux/mutex.h>
ddd29ec6 16#include <linux/security.h>
1da177e4
LT
17
18#include "sysfs.h"
19
324a56e1
TH
20static int sysfs_do_create_link_sd(struct kernfs_node *parent,
21 struct kobject *target_kobj,
0bb8f3d6 22 const char *name, int warn)
1da177e4 23{
324a56e1 24 struct kernfs_node *kn, *target = NULL;
1da177e4 25
324a56e1 26 BUG_ON(!name || !parent);
2b29ac25 27
0cae60f9 28 /*
324a56e1 29 * We don't own @target_kobj and it may be removed at any time.
0cae60f9
TH
30 * Synchronize using sysfs_symlink_target_lock. See
31 * sysfs_remove_dir() for details.
2b29ac25 32 */
0cae60f9 33 spin_lock(&sysfs_symlink_target_lock);
324a56e1
TH
34 if (target_kobj->sd) {
35 target = target_kobj->sd;
36 kernfs_get(target);
ccf73cf3 37 }
0cae60f9 38 spin_unlock(&sysfs_symlink_target_lock);
2b29ac25 39
324a56e1 40 if (!target)
5d0e26bb 41 return -ENOENT;
a1da4dfe 42
324a56e1
TH
43 kn = kernfs_create_link(parent, name, target);
44 kernfs_put(target);
967e35dc 45
324a56e1 46 if (!IS_ERR(kn))
5d0e26bb 47 return 0;
fb6896da 48
324a56e1
TH
49 if (warn && PTR_ERR(kn) == -EEXIST)
50 sysfs_warn_dup(parent, name);
51 return PTR_ERR(kn);
1da177e4
LT
52}
53
0bb8f3d6
RW
54/**
55 * sysfs_create_link_sd - create symlink to a given object.
324a56e1 56 * @kn: directory we're creating the link in.
0bb8f3d6
RW
57 * @target: object we're pointing to.
58 * @name: name of the symlink.
59 */
324a56e1 60int sysfs_create_link_sd(struct kernfs_node *kn, struct kobject *target,
0bb8f3d6
RW
61 const char *name)
62{
324a56e1 63 return sysfs_do_create_link_sd(kn, target, name, 1);
0bb8f3d6
RW
64}
65
66static int sysfs_do_create_link(struct kobject *kobj, struct kobject *target,
67 const char *name, int warn)
68{
324a56e1 69 struct kernfs_node *parent = NULL;
0bb8f3d6
RW
70
71 if (!kobj)
324a56e1 72 parent = sysfs_root_kn;
0bb8f3d6 73 else
324a56e1 74 parent = kobj->sd;
0bb8f3d6 75
324a56e1 76 if (!parent)
0bb8f3d6
RW
77 return -EFAULT;
78
324a56e1 79 return sysfs_do_create_link_sd(parent, target, name, warn);
0bb8f3d6
RW
80}
81
36ce6dad
CH
82/**
83 * sysfs_create_link - create symlink between two objects.
84 * @kobj: object whose directory we're creating the link in.
85 * @target: object we're pointing to.
86 * @name: name of the symlink.
87 */
88int sysfs_create_link(struct kobject *kobj, struct kobject *target,
89 const char *name)
90{
91 return sysfs_do_create_link(kobj, target, name, 1);
92}
1b866757 93EXPORT_SYMBOL_GPL(sysfs_create_link);
36ce6dad
CH
94
95/**
96 * sysfs_create_link_nowarn - create symlink between two objects.
97 * @kobj: object whose directory we're creating the link in.
98 * @target: object we're pointing to.
99 * @name: name of the symlink.
100 *
6f1cbd4a 101 * This function does the same as sysfs_create_link(), but it
36ce6dad
CH
102 * doesn't warn if the link already exists.
103 */
104int sysfs_create_link_nowarn(struct kobject *kobj, struct kobject *target,
105 const char *name)
106{
107 return sysfs_do_create_link(kobj, target, name, 0);
108}
2399ac42 109EXPORT_SYMBOL_GPL(sysfs_create_link_nowarn);
36ce6dad 110
746edb7a
EB
111/**
112 * sysfs_delete_link - remove symlink in object's directory.
113 * @kobj: object we're acting for.
114 * @targ: object we're pointing to.
115 * @name: name of the symlink to remove.
116 *
117 * Unlike sysfs_remove_link sysfs_delete_link has enough information
118 * to successfully delete symlinks in tagged directories.
119 */
120void sysfs_delete_link(struct kobject *kobj, struct kobject *targ,
121 const char *name)
122{
123 const void *ns = NULL;
0cae60f9
TH
124
125 /*
126 * We don't own @target and it may be removed at any time.
127 * Synchronize using sysfs_symlink_target_lock. See
128 * sysfs_remove_dir() for details.
129 */
130 spin_lock(&sysfs_symlink_target_lock);
ac9bba03 131 if (targ->sd && kernfs_ns_enabled(kobj->sd))
adc5e8b5 132 ns = targ->sd->ns;
0cae60f9 133 spin_unlock(&sysfs_symlink_target_lock);
879f40d1 134 kernfs_remove_by_name_ns(kobj->sd, name, ns);
746edb7a
EB
135}
136
1da177e4
LT
137/**
138 * sysfs_remove_link - remove symlink in object's directory.
139 * @kobj: object we're acting for.
140 * @name: name of the symlink to remove.
141 */
1b18dc2b 142void sysfs_remove_link(struct kobject *kobj, const char *name)
1da177e4 143{
324a56e1 144 struct kernfs_node *parent = NULL;
a839c5af
MF
145
146 if (!kobj)
324a56e1 147 parent = sysfs_root_kn;
a839c5af 148 else
324a56e1 149 parent = kobj->sd;
a839c5af 150
324a56e1 151 kernfs_remove_by_name(parent, name);
1da177e4 152}
1b866757 153EXPORT_SYMBOL_GPL(sysfs_remove_link);
1da177e4 154
7cb32942 155/**
4b30ee58 156 * sysfs_rename_link_ns - rename symlink in object's directory.
7cb32942
EB
157 * @kobj: object we're acting for.
158 * @targ: object we're pointing to.
159 * @old: previous name of the symlink.
160 * @new: new name of the symlink.
4b30ee58 161 * @new_ns: new namespace of the symlink.
7cb32942
EB
162 *
163 * A helper function for the common rename symlink idiom.
164 */
4b30ee58
TH
165int sysfs_rename_link_ns(struct kobject *kobj, struct kobject *targ,
166 const char *old, const char *new, const void *new_ns)
7cb32942 167{
324a56e1 168 struct kernfs_node *parent, *kn = NULL;
4b30ee58 169 const void *old_ns = NULL;
7cb32942
EB
170 int result;
171
172 if (!kobj)
324a56e1 173 parent = sysfs_root_kn;
7cb32942 174 else
324a56e1 175 parent = kobj->sd;
7cb32942 176
3ff195b0 177 if (targ->sd)
adc5e8b5 178 old_ns = targ->sd->ns;
3ff195b0 179
7cb32942 180 result = -ENOENT;
324a56e1
TH
181 kn = kernfs_find_and_get_ns(parent, old, old_ns);
182 if (!kn)
7cb32942
EB
183 goto out;
184
185 result = -EINVAL;
df23fc39 186 if (kernfs_type(kn) != KERNFS_LINK)
7cb32942 187 goto out;
adc5e8b5 188 if (kn->symlink.target_kn->priv != targ)
7cb32942
EB
189 goto out;
190
324a56e1 191 result = kernfs_rename_ns(kn, parent, new, new_ns);
7cb32942
EB
192
193out:
324a56e1 194 kernfs_put(kn);
7cb32942
EB
195 return result;
196}
4b30ee58 197EXPORT_SYMBOL_GPL(sysfs_rename_link_ns);