]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - fs/sysfs/symlink.c
Documentation: start documenting driver design patterns
[mirror_ubuntu-hirsute-kernel.git] / fs / sysfs / symlink.c
CommitLineData
1da177e4 1/*
6d66f5cd
TH
2 * fs/sysfs/symlink.c - sysfs symlink implementation
3 *
4 * Copyright (c) 2001-3 Patrick Mochel
5 * Copyright (c) 2007 SUSE Linux Products GmbH
6 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
7 *
8 * This file is released under the GPLv2.
9 *
10 * Please see Documentation/filesystems/sysfs.txt for more information.
1da177e4
LT
11 */
12
13#include <linux/fs.h>
14#include <linux/module.h>
15#include <linux/kobject.h>
869512ab 16#include <linux/mutex.h>
ddd29ec6 17#include <linux/security.h>
1da177e4
LT
18
19#include "sysfs.h"
20
0bb8f3d6
RW
21static int sysfs_do_create_link_sd(struct sysfs_dirent *parent_sd,
22 struct kobject *target,
23 const char *name, int warn)
1da177e4 24{
5d0e26bb 25 struct sysfs_dirent *sd, *target_sd = NULL;
1da177e4 26
0bb8f3d6 27 BUG_ON(!name || !parent_sd);
2b29ac25 28
0cae60f9
TH
29 /*
30 * We don't own @target and it may be removed at any time.
31 * Synchronize using sysfs_symlink_target_lock. See
32 * sysfs_remove_dir() for details.
2b29ac25 33 */
0cae60f9 34 spin_lock(&sysfs_symlink_target_lock);
ccf73cf3
TH
35 if (target->sd) {
36 target_sd = target->sd;
37 kernfs_get(target_sd);
38 }
0cae60f9 39 spin_unlock(&sysfs_symlink_target_lock);
2b29ac25
TH
40
41 if (!target_sd)
5d0e26bb 42 return -ENOENT;
a1da4dfe 43
5d0e26bb 44 sd = kernfs_create_link(parent_sd, name, target_sd);
ccf73cf3 45 kernfs_put(target_sd);
967e35dc 46
5d0e26bb
TH
47 if (!IS_ERR(sd))
48 return 0;
fb6896da 49
5d0e26bb
TH
50 if (warn && PTR_ERR(sd) == -EEXIST)
51 sysfs_warn_dup(parent_sd, name);
52 return PTR_ERR(sd);
1da177e4
LT
53}
54
0bb8f3d6
RW
55/**
56 * sysfs_create_link_sd - create symlink to a given object.
57 * @sd: directory we're creating the link in.
58 * @target: object we're pointing to.
59 * @name: name of the symlink.
60 */
61int sysfs_create_link_sd(struct sysfs_dirent *sd, struct kobject *target,
62 const char *name)
63{
64 return sysfs_do_create_link_sd(sd, target, name, 1);
65}
66
67static int sysfs_do_create_link(struct kobject *kobj, struct kobject *target,
68 const char *name, int warn)
69{
70 struct sysfs_dirent *parent_sd = NULL;
71
72 if (!kobj)
061447a4 73 parent_sd = sysfs_root_sd;
0bb8f3d6
RW
74 else
75 parent_sd = kobj->sd;
76
77 if (!parent_sd)
78 return -EFAULT;
79
80 return sysfs_do_create_link_sd(parent_sd, target, name, warn);
81}
82
36ce6dad
CH
83/**
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.
88 */
89int sysfs_create_link(struct kobject *kobj, struct kobject *target,
90 const char *name)
91{
92 return sysfs_do_create_link(kobj, target, name, 1);
93}
1b866757 94EXPORT_SYMBOL_GPL(sysfs_create_link);
36ce6dad
CH
95
96/**
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.
101 *
6f1cbd4a 102 * This function does the same as sysfs_create_link(), but it
36ce6dad
CH
103 * doesn't warn if the link already exists.
104 */
105int sysfs_create_link_nowarn(struct kobject *kobj, struct kobject *target,
106 const char *name)
107{
108 return sysfs_do_create_link(kobj, target, name, 0);
109}
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))
746edb7a 132 ns = targ->sd->s_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{
a839c5af
MF
144 struct sysfs_dirent *parent_sd = NULL;
145
146 if (!kobj)
061447a4 147 parent_sd = sysfs_root_sd;
a839c5af
MF
148 else
149 parent_sd = kobj->sd;
150
879f40d1 151 kernfs_remove_by_name(parent_sd, 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
EB
167{
168 struct sysfs_dirent *parent_sd, *sd = NULL;
4b30ee58 169 const void *old_ns = NULL;
7cb32942
EB
170 int result;
171
172 if (!kobj)
061447a4 173 parent_sd = sysfs_root_sd;
7cb32942
EB
174 else
175 parent_sd = kobj->sd;
176
3ff195b0
EB
177 if (targ->sd)
178 old_ns = targ->sd->s_ns;
179
7cb32942 180 result = -ENOENT;
ccf73cf3 181 sd = kernfs_find_and_get_ns(parent_sd, old, old_ns);
7cb32942
EB
182 if (!sd)
183 goto out;
184
185 result = -EINVAL;
186 if (sysfs_type(sd) != SYSFS_KOBJ_LINK)
187 goto out;
7c6e2d36 188 if (sd->s_symlink.target_sd->priv != targ)
7cb32942
EB
189 goto out;
190
890ece16 191 result = kernfs_rename_ns(sd, parent_sd, new, new_ns);
7cb32942
EB
192
193out:
ccf73cf3 194 kernfs_put(sd);
7cb32942
EB
195 return result;
196}
4b30ee58 197EXPORT_SYMBOL_GPL(sysfs_rename_link_ns);