2 * fs/sysfs/symlink.c - sysfs symlink implementation
4 * Copyright (c) 2001-3 Patrick Mochel
5 * Copyright (c) 2007 SUSE Linux Products GmbH
6 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
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(struct kobject
*kobj
, struct kobject
*target
,
25 const char *name
, int warn
)
27 struct sysfs_dirent
*parent_sd
= NULL
;
28 struct sysfs_dirent
*target_sd
= NULL
;
29 struct sysfs_dirent
*sd
= NULL
;
30 struct sysfs_addrm_cxt acxt
;
36 parent_sd
= &sysfs_root
;
44 /* target->sd can go away beneath us but is protected with
45 * sysfs_assoc_lock. Fetch target_sd from it.
47 spin_lock(&sysfs_assoc_lock
);
49 target_sd
= sysfs_get(target
->sd
);
50 spin_unlock(&sysfs_assoc_lock
);
57 sd
= sysfs_new_dirent(name
, S_IFLNK
|S_IRWXUGO
, SYSFS_KOBJ_LINK
);
61 if (sysfs_ns_type(parent_sd
))
62 sd
->s_ns
= target
->ktype
->namespace(target
);
63 sd
->s_symlink
.target_sd
= target_sd
;
64 target_sd
= NULL
; /* reference is now owned by the symlink */
66 sysfs_addrm_start(&acxt
, parent_sd
);
68 error
= sysfs_add_one(&acxt
, sd
);
70 error
= __sysfs_add_one(&acxt
, sd
);
71 sysfs_addrm_finish(&acxt
);
85 * sysfs_create_link - create symlink between two objects.
86 * @kobj: object whose directory we're creating the link in.
87 * @target: object we're pointing to.
88 * @name: name of the symlink.
90 int sysfs_create_link(struct kobject
*kobj
, struct kobject
*target
,
93 return sysfs_do_create_link(kobj
, target
, name
, 1);
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 sysf_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);
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.
117 * Unlike sysfs_remove_link sysfs_delete_link has enough information
118 * to successfully delete symlinks in tagged directories.
120 void sysfs_delete_link(struct kobject
*kobj
, struct kobject
*targ
,
123 const void *ns
= NULL
;
124 spin_lock(&sysfs_assoc_lock
);
127 spin_unlock(&sysfs_assoc_lock
);
128 sysfs_hash_and_remove(kobj
->sd
, ns
, name
);
132 * sysfs_remove_link - remove symlink in object's directory.
133 * @kobj: object we're acting for.
134 * @name: name of the symlink to remove.
137 void sysfs_remove_link(struct kobject
* kobj
, const char * name
)
139 struct sysfs_dirent
*parent_sd
= NULL
;
142 parent_sd
= &sysfs_root
;
144 parent_sd
= kobj
->sd
;
146 sysfs_hash_and_remove(parent_sd
, NULL
, name
);
150 * sysfs_rename_link - rename symlink in object's directory.
151 * @kobj: object we're acting for.
152 * @targ: object we're pointing to.
153 * @old: previous name of the symlink.
154 * @new: new name of the symlink.
156 * A helper function for the common rename symlink idiom.
158 int sysfs_rename_link(struct kobject
*kobj
, struct kobject
*targ
,
159 const char *old
, const char *new)
161 struct sysfs_dirent
*parent_sd
, *sd
= NULL
;
162 const void *old_ns
= NULL
, *new_ns
= NULL
;
166 parent_sd
= &sysfs_root
;
168 parent_sd
= kobj
->sd
;
171 old_ns
= targ
->sd
->s_ns
;
174 sd
= sysfs_get_dirent(parent_sd
, old_ns
, old
);
179 if (sysfs_type(sd
) != SYSFS_KOBJ_LINK
)
181 if (sd
->s_symlink
.target_sd
->s_dir
.kobj
!= targ
)
184 if (sysfs_ns_type(parent_sd
))
185 new_ns
= targ
->ktype
->namespace(targ
);
187 result
= sysfs_rename(sd
, parent_sd
, new_ns
, new);
194 static int sysfs_get_target_path(struct sysfs_dirent
*parent_sd
,
195 struct sysfs_dirent
*target_sd
, char *path
)
197 struct sysfs_dirent
*base
, *sd
;
201 /* go up to the root, stop at the base */
203 while (base
->s_parent
) {
204 sd
= target_sd
->s_parent
;
205 while (sd
->s_parent
&& base
!= sd
)
213 base
= base
->s_parent
;
216 /* determine end of target string for reverse fillup */
218 while (sd
->s_parent
&& sd
!= base
) {
219 len
+= strlen(sd
->s_name
) + 1;
227 if ((s
- path
) + len
> PATH_MAX
)
228 return -ENAMETOOLONG
;
230 /* reverse fillup of target string from target to base */
232 while (sd
->s_parent
&& sd
!= base
) {
233 int slen
= strlen(sd
->s_name
);
236 strncpy(s
+ len
, sd
->s_name
, slen
);
246 static int sysfs_getlink(struct dentry
*dentry
, char * path
)
248 struct sysfs_dirent
*sd
= dentry
->d_fsdata
;
249 struct sysfs_dirent
*parent_sd
= sd
->s_parent
;
250 struct sysfs_dirent
*target_sd
= sd
->s_symlink
.target_sd
;
253 mutex_lock(&sysfs_mutex
);
254 error
= sysfs_get_target_path(parent_sd
, target_sd
, path
);
255 mutex_unlock(&sysfs_mutex
);
260 static void *sysfs_follow_link(struct dentry
*dentry
, struct nameidata
*nd
)
263 unsigned long page
= get_zeroed_page(GFP_KERNEL
);
265 error
= sysfs_getlink(dentry
, (char *) page
);
267 free_page((unsigned long)page
);
269 nd_set_link(nd
, error
? ERR_PTR(error
) : (char *)page
);
273 static void sysfs_put_link(struct dentry
*dentry
, struct nameidata
*nd
, void *cookie
)
275 char *page
= nd_get_link(nd
);
277 free_page((unsigned long)page
);
280 const struct inode_operations sysfs_symlink_inode_operations
= {
281 .setxattr
= sysfs_setxattr
,
282 .readlink
= generic_readlink
,
283 .follow_link
= sysfs_follow_link
,
284 .put_link
= sysfs_put_link
,
285 .setattr
= sysfs_setattr
,
286 .getattr
= sysfs_getattr
,
287 .permission
= sysfs_permission
,
291 EXPORT_SYMBOL_GPL(sysfs_create_link
);
292 EXPORT_SYMBOL_GPL(sysfs_remove_link
);
293 EXPORT_SYMBOL_GPL(sysfs_rename_link
);