]> bbs.cooldavid.org Git - net-next-2.6.git/blob - fs/sysfs/symlink.c
Merge commit '3ff195b011d7decf501a4d55aeed312731094796' into for-linus
[net-next-2.6.git] / fs / sysfs / symlink.c
1 /*
2  * fs/sysfs/symlink.c - sysfs symlink implementation
3  *
4  * Copyright (c) 2001-3 Patrick Mochel
5  * Copyright (c) 2007 SUSE Linux Products GmbH
6  * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
7  *
8  * This file is released under the GPLv2.
9  *
10  * Please see Documentation/filesystems/sysfs.txt for more information.
11  */
12
13 #include <linux/fs.h>
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>
21
22 #include "sysfs.h"
23
24 static int sysfs_do_create_link(struct kobject *kobj, struct kobject *target,
25                                 const char *name, int warn)
26 {
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;
31         int error;
32
33         BUG_ON(!name);
34
35         if (!kobj)
36                 parent_sd = &sysfs_root;
37         else
38                 parent_sd = kobj->sd;
39
40         error = -EFAULT;
41         if (!parent_sd)
42                 goto out_put;
43
44         /* target->sd can go away beneath us but is protected with
45          * sysfs_assoc_lock.  Fetch target_sd from it.
46          */
47         spin_lock(&sysfs_assoc_lock);
48         if (target->sd)
49                 target_sd = sysfs_get(target->sd);
50         spin_unlock(&sysfs_assoc_lock);
51
52         error = -ENOENT;
53         if (!target_sd)
54                 goto out_put;
55
56         error = -ENOMEM;
57         sd = sysfs_new_dirent(name, S_IFLNK|S_IRWXUGO, SYSFS_KOBJ_LINK);
58         if (!sd)
59                 goto out_put;
60
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 */
65
66         sysfs_addrm_start(&acxt, parent_sd);
67         if (warn)
68                 error = sysfs_add_one(&acxt, sd);
69         else
70                 error = __sysfs_add_one(&acxt, sd);
71         sysfs_addrm_finish(&acxt);
72
73         if (error)
74                 goto out_put;
75
76         return 0;
77
78  out_put:
79         sysfs_put(target_sd);
80         sysfs_put(sd);
81         return error;
82 }
83
84 /**
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.
89  */
90 int sysfs_create_link(struct kobject *kobj, struct kobject *target,
91                       const char *name)
92 {
93         return sysfs_do_create_link(kobj, target, name, 1);
94 }
95
96 /**
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.
101  *
102  *      This function does the same as sysf_create_link(), but it
103  *      doesn't warn if the link already exists.
104  */
105 int sysfs_create_link_nowarn(struct kobject *kobj, struct kobject *target,
106                              const char *name)
107 {
108         return sysfs_do_create_link(kobj, target, name, 0);
109 }
110
111 /**
112  *      sysfs_remove_link - remove symlink in object's directory.
113  *      @kobj:  object we're acting for.
114  *      @name:  name of the symlink to remove.
115  */
116
117 void sysfs_remove_link(struct kobject * kobj, const char * name)
118 {
119         struct sysfs_dirent *parent_sd = NULL;
120
121         if (!kobj)
122                 parent_sd = &sysfs_root;
123         else
124                 parent_sd = kobj->sd;
125
126         sysfs_hash_and_remove(parent_sd, NULL, name);
127 }
128
129 /**
130  *      sysfs_rename_link - rename symlink in object's directory.
131  *      @kobj:  object we're acting for.
132  *      @targ:  object we're pointing to.
133  *      @old:   previous name of the symlink.
134  *      @new:   new name of the symlink.
135  *
136  *      A helper function for the common rename symlink idiom.
137  */
138 int sysfs_rename_link(struct kobject *kobj, struct kobject *targ,
139                         const char *old, const char *new)
140 {
141         struct sysfs_dirent *parent_sd, *sd = NULL;
142         const void *old_ns = NULL, *new_ns = NULL;
143         int result;
144
145         if (!kobj)
146                 parent_sd = &sysfs_root;
147         else
148                 parent_sd = kobj->sd;
149
150         if (targ->sd)
151                 old_ns = targ->sd->s_ns;
152
153         result = -ENOENT;
154         sd = sysfs_get_dirent(parent_sd, old_ns, old);
155         if (!sd)
156                 goto out;
157
158         result = -EINVAL;
159         if (sysfs_type(sd) != SYSFS_KOBJ_LINK)
160                 goto out;
161         if (sd->s_symlink.target_sd->s_dir.kobj != targ)
162                 goto out;
163
164         if (sysfs_ns_type(parent_sd))
165                 new_ns = targ->ktype->namespace(targ);
166
167         result = sysfs_rename(sd, parent_sd, new_ns, new);
168
169 out:
170         sysfs_put(sd);
171         return result;
172 }
173
174 static int sysfs_get_target_path(struct sysfs_dirent *parent_sd,
175                                  struct sysfs_dirent *target_sd, char *path)
176 {
177         struct sysfs_dirent *base, *sd;
178         char *s = path;
179         int len = 0;
180
181         /* go up to the root, stop at the base */
182         base = parent_sd;
183         while (base->s_parent) {
184                 sd = target_sd->s_parent;
185                 while (sd->s_parent && base != sd)
186                         sd = sd->s_parent;
187
188                 if (base == sd)
189                         break;
190
191                 strcpy(s, "../");
192                 s += 3;
193                 base = base->s_parent;
194         }
195
196         /* determine end of target string for reverse fillup */
197         sd = target_sd;
198         while (sd->s_parent && sd != base) {
199                 len += strlen(sd->s_name) + 1;
200                 sd = sd->s_parent;
201         }
202
203         /* check limits */
204         if (len < 2)
205                 return -EINVAL;
206         len--;
207         if ((s - path) + len > PATH_MAX)
208                 return -ENAMETOOLONG;
209
210         /* reverse fillup of target string from target to base */
211         sd = target_sd;
212         while (sd->s_parent && sd != base) {
213                 int slen = strlen(sd->s_name);
214
215                 len -= slen;
216                 strncpy(s + len, sd->s_name, slen);
217                 if (len)
218                         s[--len] = '/';
219
220                 sd = sd->s_parent;
221         }
222
223         return 0;
224 }
225
226 static int sysfs_getlink(struct dentry *dentry, char * path)
227 {
228         struct sysfs_dirent *sd = dentry->d_fsdata;
229         struct sysfs_dirent *parent_sd = sd->s_parent;
230         struct sysfs_dirent *target_sd = sd->s_symlink.target_sd;
231         int error;
232
233         mutex_lock(&sysfs_mutex);
234         error = sysfs_get_target_path(parent_sd, target_sd, path);
235         mutex_unlock(&sysfs_mutex);
236
237         return error;
238 }
239
240 static void *sysfs_follow_link(struct dentry *dentry, struct nameidata *nd)
241 {
242         int error = -ENOMEM;
243         unsigned long page = get_zeroed_page(GFP_KERNEL);
244         if (page) {
245                 error = sysfs_getlink(dentry, (char *) page); 
246                 if (error < 0)
247                         free_page((unsigned long)page);
248         }
249         nd_set_link(nd, error ? ERR_PTR(error) : (char *)page);
250         return NULL;
251 }
252
253 static void sysfs_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
254 {
255         char *page = nd_get_link(nd);
256         if (!IS_ERR(page))
257                 free_page((unsigned long)page);
258 }
259
260 const struct inode_operations sysfs_symlink_inode_operations = {
261         .setxattr       = sysfs_setxattr,
262         .readlink       = generic_readlink,
263         .follow_link    = sysfs_follow_link,
264         .put_link       = sysfs_put_link,
265         .setattr        = sysfs_setattr,
266         .getattr        = sysfs_getattr,
267         .permission     = sysfs_permission,
268 };
269
270
271 EXPORT_SYMBOL_GPL(sysfs_create_link);
272 EXPORT_SYMBOL_GPL(sysfs_remove_link);
273 EXPORT_SYMBOL_GPL(sysfs_rename_link);