2 * fs/sysfs/symlink.c - sysfs symlink implementation
4 * Copyright (c) 2001-3 Patrick Mochel
5 * Copyright (c) 2007 SUSE Linux Products GmbH
8 * This file is released under the GPLv2.
10 * Please see Documentation/filesystems/sysfs.txt for more information.
14 #include <linux/gfp.h>
15 #include <linux/mount.h>
16 #include <linux/module.h>
17 #include <linux/kobject.h>
18 #include <linux/namei.h>
19 #include <linux/mutex.h>
20 #include <linux/security.h>
24 static int sysfs_do_create_link_sd(struct sysfs_dirent *parent_sd,
25 struct kobject *target,
26 const char *name, int warn)
28 struct sysfs_dirent *target_sd = NULL;
29 struct sysfs_dirent *sd = NULL;
30 struct sysfs_addrm_cxt acxt;
31 enum kobj_ns_type ns_type;
34 BUG_ON(!name || !parent_sd);
36 /* target->sd can go away beneath us but is protected with
37 * sysfs_assoc_lock. Fetch target_sd from it.
39 spin_lock(&sysfs_assoc_lock);
41 target_sd = sysfs_get(target->sd);
42 spin_unlock(&sysfs_assoc_lock);
49 sd = sysfs_new_dirent(name, S_IFLNK|S_IRWXUGO, SYSFS_KOBJ_LINK);
53 ns_type = sysfs_ns_type(parent_sd);
55 sd->s_ns = target->ktype->namespace(target);
56 sd->s_symlink.target_sd = target_sd;
57 target_sd = NULL; /* reference is now owned by the symlink */
59 sysfs_addrm_start(&acxt, parent_sd);
60 /* Symlinks must be between directories with the same ns_type */
62 (ns_type == sysfs_ns_type(sd->s_symlink.target_sd->s_parent))) {
64 error = sysfs_add_one(&acxt, sd);
66 error = __sysfs_add_one(&acxt, sd);
70 "sysfs: symlink across ns_types %s/%s -> %s/%s\n",
73 sd->s_symlink.target_sd->s_parent->s_name,
74 sd->s_symlink.target_sd->s_name);
76 sysfs_addrm_finish(&acxt);
90 * sysfs_create_link_sd - create symlink to a given object.
91 * @sd: directory we're creating the link in.
92 * @target: object we're pointing to.
93 * @name: name of the symlink.
95 int sysfs_create_link_sd(struct sysfs_dirent *sd, struct kobject *target,
98 return sysfs_do_create_link_sd(sd, target, name, 1);
101 static int sysfs_do_create_link(struct kobject *kobj, struct kobject *target,
102 const char *name, int warn)
104 struct sysfs_dirent *parent_sd = NULL;
107 parent_sd = &sysfs_root;
109 parent_sd = kobj->sd;
114 return sysfs_do_create_link_sd(parent_sd, target, name, warn);
118 * sysfs_create_link - create symlink between two objects.
119 * @kobj: object whose directory we're creating the link in.
120 * @target: object we're pointing to.
121 * @name: name of the symlink.
123 int sysfs_create_link(struct kobject *kobj, struct kobject *target,
126 return sysfs_do_create_link(kobj, target, name, 1);
130 * sysfs_create_link_nowarn - create symlink between two objects.
131 * @kobj: object whose directory we're creating the link in.
132 * @target: object we're pointing to.
133 * @name: name of the symlink.
135 * This function does the same as sysfs_create_link(), but it
136 * doesn't warn if the link already exists.
138 int sysfs_create_link_nowarn(struct kobject *kobj, struct kobject *target,
141 return sysfs_do_create_link(kobj, target, name, 0);
145 * sysfs_delete_link - remove symlink in object's directory.
146 * @kobj: object we're acting for.
147 * @targ: object we're pointing to.
148 * @name: name of the symlink to remove.
150 * Unlike sysfs_remove_link sysfs_delete_link has enough information
151 * to successfully delete symlinks in tagged directories.
153 void sysfs_delete_link(struct kobject *kobj, struct kobject *targ,
156 const void *ns = NULL;
157 spin_lock(&sysfs_assoc_lock);
158 if (targ->sd && sysfs_ns_type(kobj->sd))
160 spin_unlock(&sysfs_assoc_lock);
161 sysfs_hash_and_remove(kobj->sd, ns, name);
165 * sysfs_remove_link - remove symlink in object's directory.
166 * @kobj: object we're acting for.
167 * @name: name of the symlink to remove.
170 void sysfs_remove_link(struct kobject * kobj, const char * name)
172 struct sysfs_dirent *parent_sd = NULL;
175 parent_sd = &sysfs_root;
177 parent_sd = kobj->sd;
179 sysfs_hash_and_remove(parent_sd, NULL, name);
183 * sysfs_rename_link - rename symlink in object's directory.
184 * @kobj: object we're acting for.
185 * @targ: object we're pointing to.
186 * @old: previous name of the symlink.
187 * @new: new name of the symlink.
189 * A helper function for the common rename symlink idiom.
191 int sysfs_rename_link(struct kobject *kobj, struct kobject *targ,
192 const char *old, const char *new)
194 struct sysfs_dirent *parent_sd, *sd = NULL;
195 const void *old_ns = NULL, *new_ns = NULL;
199 parent_sd = &sysfs_root;
201 parent_sd = kobj->sd;
204 old_ns = targ->sd->s_ns;
207 sd = sysfs_get_dirent(parent_sd, old_ns, old);
212 if (sysfs_type(sd) != SYSFS_KOBJ_LINK)
214 if (sd->s_symlink.target_sd->s_dir.kobj != targ)
217 if (sysfs_ns_type(parent_sd))
218 new_ns = targ->ktype->namespace(targ);
220 result = sysfs_rename(sd, parent_sd, new_ns, new);
227 static int sysfs_get_target_path(struct sysfs_dirent *parent_sd,
228 struct sysfs_dirent *target_sd, char *path)
230 struct sysfs_dirent *base, *sd;
234 /* go up to the root, stop at the base */
236 while (base->s_parent) {
237 sd = target_sd->s_parent;
238 while (sd->s_parent && base != sd)
246 base = base->s_parent;
249 /* determine end of target string for reverse fillup */
251 while (sd->s_parent && sd != base) {
252 len += strlen(sd->s_name) + 1;
260 if ((s - path) + len > PATH_MAX)
261 return -ENAMETOOLONG;
263 /* reverse fillup of target string from target to base */
265 while (sd->s_parent && sd != base) {
266 int slen = strlen(sd->s_name);
269 strncpy(s + len, sd->s_name, slen);
279 static int sysfs_getlink(struct dentry *dentry, char * path)
281 struct sysfs_dirent *sd = dentry->d_fsdata;
282 struct sysfs_dirent *parent_sd = sd->s_parent;
283 struct sysfs_dirent *target_sd = sd->s_symlink.target_sd;
286 mutex_lock(&sysfs_mutex);
287 error = sysfs_get_target_path(parent_sd, target_sd, path);
288 mutex_unlock(&sysfs_mutex);
293 static void *sysfs_follow_link(struct dentry *dentry, struct nameidata *nd)
296 unsigned long page = get_zeroed_page(GFP_KERNEL);
298 error = sysfs_getlink(dentry, (char *) page);
300 free_page((unsigned long)page);
302 nd_set_link(nd, error ? ERR_PTR(error) : (char *)page);
306 static void sysfs_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
308 char *page = nd_get_link(nd);
310 free_page((unsigned long)page);
313 const struct inode_operations sysfs_symlink_inode_operations = {
314 .setxattr = sysfs_setxattr,
315 .readlink = generic_readlink,
316 .follow_link = sysfs_follow_link,
317 .put_link = sysfs_put_link,
318 .setattr = sysfs_setattr,
319 .getattr = sysfs_getattr,
320 .permission = sysfs_permission,
324 EXPORT_SYMBOL_GPL(sysfs_create_link);
325 EXPORT_SYMBOL_GPL(sysfs_remove_link);
326 EXPORT_SYMBOL_GPL(sysfs_rename_link);