2 * symlink.c - operations for sysfs symlinks.
6 #include <linux/mount.h>
7 #include <linux/module.h>
8 #include <linux/kobject.h>
9 #include <linux/namei.h>
10 #include <asm/semaphore.h>
14 static int object_depth(struct kobject * kobj)
16 struct kobject * p = kobj;
18 do { depth++; } while ((p = p->parent));
22 static int object_path_length(struct kobject * kobj)
24 struct kobject * p = kobj;
27 length += strlen(kobject_name(p)) + 1;
33 static void fill_object_path(struct kobject * kobj, char * buffer, int length)
38 for (p = kobj; p; p = p->parent) {
39 int cur = strlen(kobject_name(p));
41 /* back up enough to print this bus id with '/' */
43 strncpy(buffer + length,kobject_name(p),cur);
44 *(buffer + --length) = '/';
48 static int sysfs_add_link(struct dentry * parent, const char * name, struct kobject * target)
50 struct sysfs_dirent * parent_sd = parent->d_fsdata;
51 struct sysfs_symlink * sl;
55 sl = kmalloc(sizeof(*sl), GFP_KERNEL);
59 sl->link_name = kmalloc(strlen(name) + 1, GFP_KERNEL);
63 strcpy(sl->link_name, name);
64 sl->target_kobj = kobject_get(target);
66 error = sysfs_make_dirent(parent_sd, NULL, sl, S_IFLNK|S_IRWXUGO,
80 * sysfs_create_link - create symlink between two objects.
81 * @kobj: object whose directory we're creating the link in.
82 * @target: object we're pointing to.
83 * @name: name of the symlink.
85 int sysfs_create_link(struct kobject * kobj, struct kobject * target, const char * name)
87 struct dentry *dentry = NULL;
93 if (sysfs_mount && sysfs_mount->mnt_sb)
94 dentry = sysfs_mount->mnt_sb->s_root;
96 dentry = kobj->dentry;
101 mutex_lock(&dentry->d_inode->i_mutex);
102 if (!sysfs_dirent_exist(dentry->d_fsdata, name))
103 error = sysfs_add_link(dentry, name, target);
104 mutex_unlock(&dentry->d_inode->i_mutex);
110 * sysfs_remove_link - remove symlink in object's directory.
111 * @kobj: object we're acting for.
112 * @name: name of the symlink to remove.
115 void sysfs_remove_link(struct kobject * kobj, const char * name)
117 sysfs_hash_and_remove(kobj->dentry,name);
120 static int sysfs_get_target_path(struct kobject * kobj, struct kobject * target,
126 depth = object_depth(kobj);
127 size = object_path_length(target) + depth * 3 - 1;
129 return -ENAMETOOLONG;
131 pr_debug("%s: depth = %d, size = %d\n", __FUNCTION__, depth, size);
133 for (s = path; depth--; s += 3)
136 fill_object_path(target, path, size);
137 pr_debug("%s: path = '%s'\n", __FUNCTION__, path);
142 static int sysfs_getlink(struct dentry *dentry, char * path)
144 struct kobject *kobj, *target_kobj;
147 kobj = sysfs_get_kobject(dentry->d_parent);
151 target_kobj = sysfs_get_kobject(dentry);
157 down_read(&sysfs_rename_sem);
158 error = sysfs_get_target_path(kobj, target_kobj, path);
159 up_read(&sysfs_rename_sem);
162 kobject_put(target_kobj);
167 static void *sysfs_follow_link(struct dentry *dentry, struct nameidata *nd)
170 unsigned long page = get_zeroed_page(GFP_KERNEL);
172 error = sysfs_getlink(dentry, (char *) page);
173 nd_set_link(nd, error ? ERR_PTR(error) : (char *)page);
177 static void sysfs_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
179 char *page = nd_get_link(nd);
181 free_page((unsigned long)page);
184 const struct inode_operations sysfs_symlink_inode_operations = {
185 .readlink = generic_readlink,
186 .follow_link = sysfs_follow_link,
187 .put_link = sysfs_put_link,
191 EXPORT_SYMBOL_GPL(sysfs_create_link);
192 EXPORT_SYMBOL_GPL(sysfs_remove_link);