blob: 7b9c5bfde920fb1ea30af8f81d4313f84bf981ec [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * symlink.c - operations for sysfs symlinks.
3 */
4
5#include <linux/fs.h>
Greg Kroah-Hartmanceeee1f2002-04-09 12:14:34 -07006#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/module.h>
8#include <linux/kobject.h>
9#include <linux/namei.h>
Oliver Neukum94bebf42006-12-20 10:52:44 +010010#include <asm/semaphore.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011
12#include "sysfs.h"
13
14static int object_depth(struct kobject * kobj)
15{
16 struct kobject * p = kobj;
17 int depth = 0;
18 do { depth++; } while ((p = p->parent));
19 return depth;
20}
21
22static int object_path_length(struct kobject * kobj)
23{
24 struct kobject * p = kobj;
25 int length = 1;
26 do {
27 length += strlen(kobject_name(p)) + 1;
28 p = p->parent;
29 } while (p);
30 return length;
31}
32
33static void fill_object_path(struct kobject * kobj, char * buffer, int length)
34{
35 struct kobject * p;
36
37 --length;
38 for (p = kobj; p; p = p->parent) {
39 int cur = strlen(kobject_name(p));
40
41 /* back up enough to print this bus id with '/' */
42 length -= cur;
43 strncpy(buffer + length,kobject_name(p),cur);
44 *(buffer + --length) = '/';
45 }
46}
47
Dmitry Torokhove3a15db2005-04-26 02:31:08 -050048static int sysfs_add_link(struct dentry * parent, const char * name, struct kobject * target)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049{
50 struct sysfs_dirent * parent_sd = parent->d_fsdata;
51 struct sysfs_symlink * sl;
52 int error = 0;
53
54 error = -ENOMEM;
55 sl = kmalloc(sizeof(*sl), GFP_KERNEL);
56 if (!sl)
57 goto exit1;
58
59 sl->link_name = kmalloc(strlen(name) + 1, GFP_KERNEL);
60 if (!sl->link_name)
61 goto exit2;
62
63 strcpy(sl->link_name, name);
64 sl->target_kobj = kobject_get(target);
65
66 error = sysfs_make_dirent(parent_sd, NULL, sl, S_IFLNK|S_IRWXUGO,
67 SYSFS_KOBJ_LINK);
68 if (!error)
69 return 0;
70
Greg Kroah-Hartmanb3229082006-03-16 15:44:26 -080071 kobject_put(target);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 kfree(sl->link_name);
73exit2:
74 kfree(sl);
75exit1:
76 return error;
77}
78
79/**
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.
84 */
Dmitry Torokhove3a15db2005-04-26 02:31:08 -050085int sysfs_create_link(struct kobject * kobj, struct kobject * target, const char * name)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086{
Greg Kroah-Hartmanceeee1f2002-04-09 12:14:34 -070087 struct dentry *dentry = NULL;
Maneesh Sonic5168652006-03-09 19:40:14 +053088 int error = -EEXIST;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
Greg Kroah-Hartmanceeee1f2002-04-09 12:14:34 -070090 BUG_ON(!name);
91
92 if (!kobj) {
93 if (sysfs_mount && sysfs_mount->mnt_sb)
94 dentry = sysfs_mount->mnt_sb->s_root;
95 } else
96 dentry = kobj->dentry;
97
98 if (!dentry)
99 return -EFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800101 mutex_lock(&dentry->d_inode->i_mutex);
Maneesh Sonic5168652006-03-09 19:40:14 +0530102 if (!sysfs_dirent_exist(dentry->d_fsdata, name))
103 error = sysfs_add_link(dentry, name, target);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800104 mutex_unlock(&dentry->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 return error;
106}
107
108
109/**
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.
113 */
114
Dmitry Torokhove3a15db2005-04-26 02:31:08 -0500115void sysfs_remove_link(struct kobject * kobj, const char * name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
117 sysfs_hash_and_remove(kobj->dentry,name);
118}
119
120static int sysfs_get_target_path(struct kobject * kobj, struct kobject * target,
Dmitry Torokhove3a15db2005-04-26 02:31:08 -0500121 char *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122{
123 char * s;
124 int depth, size;
125
126 depth = object_depth(kobj);
127 size = object_path_length(target) + depth * 3 - 1;
128 if (size > PATH_MAX)
129 return -ENAMETOOLONG;
130
131 pr_debug("%s: depth = %d, size = %d\n", __FUNCTION__, depth, size);
132
133 for (s = path; depth--; s += 3)
134 strcpy(s,"../");
135
136 fill_object_path(target, path, size);
137 pr_debug("%s: path = '%s'\n", __FUNCTION__, path);
138
139 return 0;
140}
141
142static int sysfs_getlink(struct dentry *dentry, char * path)
143{
144 struct kobject *kobj, *target_kobj;
145 int error = 0;
146
147 kobj = sysfs_get_kobject(dentry->d_parent);
148 if (!kobj)
149 return -EINVAL;
150
151 target_kobj = sysfs_get_kobject(dentry);
152 if (!target_kobj) {
153 kobject_put(kobj);
154 return -EINVAL;
155 }
156
157 down_read(&sysfs_rename_sem);
158 error = sysfs_get_target_path(kobj, target_kobj, path);
159 up_read(&sysfs_rename_sem);
160
161 kobject_put(kobj);
162 kobject_put(target_kobj);
163 return error;
164
165}
166
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700167static void *sysfs_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169 int error = -ENOMEM;
170 unsigned long page = get_zeroed_page(GFP_KERNEL);
171 if (page)
172 error = sysfs_getlink(dentry, (char *) page);
173 nd_set_link(nd, error ? ERR_PTR(error) : (char *)page);
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700174 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
176
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700177static void sysfs_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
179 char *page = nd_get_link(nd);
180 if (!IS_ERR(page))
181 free_page((unsigned long)page);
182}
183
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800184const struct inode_operations sysfs_symlink_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 .readlink = generic_readlink,
186 .follow_link = sysfs_follow_link,
187 .put_link = sysfs_put_link,
188};
189
190
191EXPORT_SYMBOL_GPL(sysfs_create_link);
192EXPORT_SYMBOL_GPL(sysfs_remove_link);