ACPI: thinkpad-acpi: add a safety net for TPEC fan control mode
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / sysfs / symlink.c
blobf50e3cc2ded8d76e00d203829108b40647f1fc63
1 /*
2 * symlink.c - operations for sysfs symlinks.
3 */
5 #include <linux/fs.h>
6 #include <linux/mount.h>
7 #include <linux/module.h>
8 #include <linux/kobject.h>
9 #include <linux/namei.h>
11 #include "sysfs.h"
13 static int object_depth(struct kobject * kobj)
15 struct kobject * p = kobj;
16 int depth = 0;
17 do { depth++; } while ((p = p->parent));
18 return depth;
21 static int object_path_length(struct kobject * kobj)
23 struct kobject * p = kobj;
24 int length = 1;
25 do {
26 length += strlen(kobject_name(p)) + 1;
27 p = p->parent;
28 } while (p);
29 return length;
32 static void fill_object_path(struct kobject * kobj, char * buffer, int length)
34 struct kobject * p;
36 --length;
37 for (p = kobj; p; p = p->parent) {
38 int cur = strlen(kobject_name(p));
40 /* back up enough to print this bus id with '/' */
41 length -= cur;
42 strncpy(buffer + length,kobject_name(p),cur);
43 *(buffer + --length) = '/';
47 static int sysfs_add_link(struct dentry * parent, const char * name, struct kobject * target)
49 struct sysfs_dirent * parent_sd = parent->d_fsdata;
50 struct sysfs_symlink * sl;
51 int error = 0;
53 error = -ENOMEM;
54 sl = kmalloc(sizeof(*sl), GFP_KERNEL);
55 if (!sl)
56 goto exit1;
58 sl->link_name = kmalloc(strlen(name) + 1, GFP_KERNEL);
59 if (!sl->link_name)
60 goto exit2;
62 strcpy(sl->link_name, name);
63 sl->target_kobj = kobject_get(target);
65 error = sysfs_make_dirent(parent_sd, NULL, sl, S_IFLNK|S_IRWXUGO,
66 SYSFS_KOBJ_LINK);
67 if (!error)
68 return 0;
70 kobject_put(target);
71 kfree(sl->link_name);
72 exit2:
73 kfree(sl);
74 exit1:
75 return error;
78 /**
79 * sysfs_create_link - create symlink between two objects.
80 * @kobj: object whose directory we're creating the link in.
81 * @target: object we're pointing to.
82 * @name: name of the symlink.
84 int sysfs_create_link(struct kobject * kobj, struct kobject * target, const char * name)
86 struct dentry *dentry = NULL;
87 int error = -EEXIST;
89 BUG_ON(!name);
91 if (!kobj) {
92 if (sysfs_mount && sysfs_mount->mnt_sb)
93 dentry = sysfs_mount->mnt_sb->s_root;
94 } else
95 dentry = kobj->dentry;
97 if (!dentry)
98 return -EFAULT;
100 mutex_lock(&dentry->d_inode->i_mutex);
101 if (!sysfs_dirent_exist(dentry->d_fsdata, name))
102 error = sysfs_add_link(dentry, name, target);
103 mutex_unlock(&dentry->d_inode->i_mutex);
104 return error;
109 * sysfs_remove_link - remove symlink in object's directory.
110 * @kobj: object we're acting for.
111 * @name: name of the symlink to remove.
114 void sysfs_remove_link(struct kobject * kobj, const char * name)
116 sysfs_hash_and_remove(kobj->dentry,name);
119 static int sysfs_get_target_path(struct kobject * kobj, struct kobject * target,
120 char *path)
122 char * s;
123 int depth, size;
125 depth = object_depth(kobj);
126 size = object_path_length(target) + depth * 3 - 1;
127 if (size > PATH_MAX)
128 return -ENAMETOOLONG;
130 pr_debug("%s: depth = %d, size = %d\n", __FUNCTION__, depth, size);
132 for (s = path; depth--; s += 3)
133 strcpy(s,"../");
135 fill_object_path(target, path, size);
136 pr_debug("%s: path = '%s'\n", __FUNCTION__, path);
138 return 0;
141 static int sysfs_getlink(struct dentry *dentry, char * path)
143 struct kobject *kobj, *target_kobj;
144 int error = 0;
146 kobj = sysfs_get_kobject(dentry->d_parent);
147 if (!kobj)
148 return -EINVAL;
150 target_kobj = sysfs_get_kobject(dentry);
151 if (!target_kobj) {
152 kobject_put(kobj);
153 return -EINVAL;
156 down_read(&sysfs_rename_sem);
157 error = sysfs_get_target_path(kobj, target_kobj, path);
158 up_read(&sysfs_rename_sem);
160 kobject_put(kobj);
161 kobject_put(target_kobj);
162 return error;
166 static void *sysfs_follow_link(struct dentry *dentry, struct nameidata *nd)
168 int error = -ENOMEM;
169 unsigned long page = get_zeroed_page(GFP_KERNEL);
170 if (page)
171 error = sysfs_getlink(dentry, (char *) page);
172 nd_set_link(nd, error ? ERR_PTR(error) : (char *)page);
173 return NULL;
176 static void sysfs_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
178 char *page = nd_get_link(nd);
179 if (!IS_ERR(page))
180 free_page((unsigned long)page);
183 struct inode_operations sysfs_symlink_inode_operations = {
184 .readlink = generic_readlink,
185 .follow_link = sysfs_follow_link,
186 .put_link = sysfs_put_link,
190 EXPORT_SYMBOL_GPL(sysfs_create_link);
191 EXPORT_SYMBOL_GPL(sysfs_remove_link);