sysfs: consolidate sysfs spinlocks
[safe/jmp/linux-2.6] / fs / sysfs / symlink.c
1 /*
2  * symlink.c - operations for sysfs symlinks.
3  */
4
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>
10 #include <asm/semaphore.h>
11
12 #include "sysfs.h"
13
14 static int object_depth(struct sysfs_dirent *sd)
15 {
16         int depth = 0;
17
18         for (; sd->s_parent; sd = sd->s_parent)
19                 depth++;
20
21         return depth;
22 }
23
24 static int object_path_length(struct sysfs_dirent * sd)
25 {
26         int length = 1;
27
28         for (; sd->s_parent; sd = sd->s_parent)
29                 length += strlen(sd->s_name) + 1;
30
31         return length;
32 }
33
34 static void fill_object_path(struct sysfs_dirent *sd, char *buffer, int length)
35 {
36         --length;
37         for (; sd->s_parent; sd = sd->s_parent) {
38                 int cur = strlen(sd->s_name);
39
40                 /* back up enough to print this bus id with '/' */
41                 length -= cur;
42                 strncpy(buffer + length, sd->s_name, cur);
43                 *(buffer + --length) = '/';
44         }
45 }
46
47 static int sysfs_add_link(struct sysfs_dirent * parent_sd, const char * name,
48                           struct sysfs_dirent * target_sd)
49 {
50         struct sysfs_dirent * sd;
51
52         sd = sysfs_new_dirent(name, S_IFLNK|S_IRWXUGO, SYSFS_KOBJ_LINK);
53         if (!sd)
54                 return -ENOMEM;
55
56         sd->s_elem.symlink.target_sd = target_sd;
57         sysfs_attach_dirent(sd, parent_sd, NULL);
58         return 0;
59 }
60
61 /**
62  *      sysfs_create_link - create symlink between two objects.
63  *      @kobj:  object whose directory we're creating the link in.
64  *      @target:        object we're pointing to.
65  *      @name:          name of the symlink.
66  */
67 int sysfs_create_link(struct kobject * kobj, struct kobject * target, const char * name)
68 {
69         struct sysfs_dirent *parent_sd = NULL;
70         struct sysfs_dirent *target_sd = NULL;
71         int error = -EEXIST;
72
73         BUG_ON(!name);
74
75         if (!kobj) {
76                 if (sysfs_mount && sysfs_mount->mnt_sb)
77                         parent_sd = sysfs_mount->mnt_sb->s_root->d_fsdata;
78         } else
79                 parent_sd = kobj->sd;
80
81         if (!parent_sd)
82                 return -EFAULT;
83
84         /* target->sd can go away beneath us but is protected with
85          * sysfs_assoc_lock.  Fetch target_sd from it.
86          */
87         spin_lock(&sysfs_assoc_lock);
88         if (target->sd)
89                 target_sd = sysfs_get(target->sd);
90         spin_unlock(&sysfs_assoc_lock);
91
92         if (!target_sd)
93                 return -ENOENT;
94
95         mutex_lock(&parent_sd->s_dentry->d_inode->i_mutex);
96         if (!sysfs_find_dirent(parent_sd, name))
97                 error = sysfs_add_link(parent_sd, name, target_sd);
98         mutex_unlock(&parent_sd->s_dentry->d_inode->i_mutex);
99
100         if (error)
101                 sysfs_put(target_sd);
102
103         return error;
104 }
105
106
107 /**
108  *      sysfs_remove_link - remove symlink in object's directory.
109  *      @kobj:  object we're acting for.
110  *      @name:  name of the symlink to remove.
111  */
112
113 void sysfs_remove_link(struct kobject * kobj, const char * name)
114 {
115         sysfs_hash_and_remove(kobj->sd, name);
116 }
117
118 static int sysfs_get_target_path(struct sysfs_dirent * parent_sd,
119                                  struct sysfs_dirent * target_sd, char *path)
120 {
121         char * s;
122         int depth, size;
123
124         depth = object_depth(parent_sd);
125         size = object_path_length(target_sd) + depth * 3 - 1;
126         if (size > PATH_MAX)
127                 return -ENAMETOOLONG;
128
129         pr_debug("%s: depth = %d, size = %d\n", __FUNCTION__, depth, size);
130
131         for (s = path; depth--; s += 3)
132                 strcpy(s,"../");
133
134         fill_object_path(target_sd, path, size);
135         pr_debug("%s: path = '%s'\n", __FUNCTION__, path);
136
137         return 0;
138 }
139
140 static int sysfs_getlink(struct dentry *dentry, char * path)
141 {
142         struct sysfs_dirent *sd = dentry->d_fsdata;
143         struct sysfs_dirent *parent_sd = sd->s_parent;
144         struct sysfs_dirent *target_sd = sd->s_elem.symlink.target_sd;
145         int error;
146
147         down_read(&sysfs_rename_sem);
148         error = sysfs_get_target_path(parent_sd, target_sd, path);
149         up_read(&sysfs_rename_sem);
150
151         return error;
152 }
153
154 static void *sysfs_follow_link(struct dentry *dentry, struct nameidata *nd)
155 {
156         int error = -ENOMEM;
157         unsigned long page = get_zeroed_page(GFP_KERNEL);
158         if (page)
159                 error = sysfs_getlink(dentry, (char *) page); 
160         nd_set_link(nd, error ? ERR_PTR(error) : (char *)page);
161         return NULL;
162 }
163
164 static void sysfs_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
165 {
166         char *page = nd_get_link(nd);
167         if (!IS_ERR(page))
168                 free_page((unsigned long)page);
169 }
170
171 const struct inode_operations sysfs_symlink_inode_operations = {
172         .readlink = generic_readlink,
173         .follow_link = sysfs_follow_link,
174         .put_link = sysfs_put_link,
175 };
176
177
178 EXPORT_SYMBOL_GPL(sysfs_create_link);
179 EXPORT_SYMBOL_GPL(sysfs_remove_link);