]> pilppa.org Git - linux-2.6-omap-h63xx.git/blob - fs/configfs/symlink.c
configfs: Protect configfs_dirent s_links list mutations
[linux-2.6-omap-h63xx.git] / fs / configfs / symlink.c
1 /* -*- mode: c; c-basic-offset: 8; -*-
2  * vim: noexpandtab sw=8 ts=8 sts=0:
3  *
4  * symlink.c - operations for configfs symlinks.
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public
17  * License along with this program; if not, write to the
18  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19  * Boston, MA 021110-1307, USA.
20  *
21  * Based on sysfs:
22  *      sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
23  *
24  * configfs Copyright (C) 2005 Oracle.  All rights reserved.
25  */
26
27 #include <linux/fs.h>
28 #include <linux/module.h>
29 #include <linux/namei.h>
30
31 #include <linux/configfs.h>
32 #include "configfs_internal.h"
33
34 static int item_depth(struct config_item * item)
35 {
36         struct config_item * p = item;
37         int depth = 0;
38         do { depth++; } while ((p = p->ci_parent) && !configfs_is_root(p));
39         return depth;
40 }
41
42 static int item_path_length(struct config_item * item)
43 {
44         struct config_item * p = item;
45         int length = 1;
46         do {
47                 length += strlen(config_item_name(p)) + 1;
48                 p = p->ci_parent;
49         } while (p && !configfs_is_root(p));
50         return length;
51 }
52
53 static void fill_item_path(struct config_item * item, char * buffer, int length)
54 {
55         struct config_item * p;
56
57         --length;
58         for (p = item; p && !configfs_is_root(p); p = p->ci_parent) {
59                 int cur = strlen(config_item_name(p));
60
61                 /* back up enough to print this bus id with '/' */
62                 length -= cur;
63                 strncpy(buffer + length,config_item_name(p),cur);
64                 *(buffer + --length) = '/';
65         }
66 }
67
68 static int create_link(struct config_item *parent_item,
69                        struct config_item *item,
70                        struct dentry *dentry)
71 {
72         struct configfs_dirent *target_sd = item->ci_dentry->d_fsdata;
73         struct configfs_symlink *sl;
74         int ret;
75
76         ret = -ENOMEM;
77         sl = kmalloc(sizeof(struct configfs_symlink), GFP_KERNEL);
78         if (sl) {
79                 sl->sl_target = config_item_get(item);
80                 spin_lock(&configfs_dirent_lock);
81                 list_add(&sl->sl_list, &target_sd->s_links);
82                 spin_unlock(&configfs_dirent_lock);
83                 ret = configfs_create_link(sl, parent_item->ci_dentry,
84                                            dentry);
85                 if (ret) {
86                         spin_lock(&configfs_dirent_lock);
87                         list_del_init(&sl->sl_list);
88                         spin_unlock(&configfs_dirent_lock);
89                         config_item_put(item);
90                         kfree(sl);
91                 }
92         }
93
94         return ret;
95 }
96
97
98 static int get_target(const char *symname, struct nameidata *nd,
99                       struct config_item **target)
100 {
101         int ret;
102
103         ret = path_lookup(symname, LOOKUP_FOLLOW|LOOKUP_DIRECTORY, nd);
104         if (!ret) {
105                 if (nd->path.dentry->d_sb == configfs_sb) {
106                         *target = configfs_get_config_item(nd->path.dentry);
107                         if (!*target) {
108                                 ret = -ENOENT;
109                                 path_put(&nd->path);
110                         }
111                 } else
112                         ret = -EPERM;
113         }
114
115         return ret;
116 }
117
118
119 int configfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
120 {
121         int ret;
122         struct nameidata nd;
123         struct config_item *parent_item;
124         struct config_item *target_item;
125         struct config_item_type *type;
126
127         ret = -EPERM;  /* What lack-of-symlink returns */
128         if (dentry->d_parent == configfs_sb->s_root)
129                 goto out;
130
131         parent_item = configfs_get_config_item(dentry->d_parent);
132         type = parent_item->ci_type;
133
134         if (!type || !type->ct_item_ops ||
135             !type->ct_item_ops->allow_link)
136                 goto out_put;
137
138         ret = get_target(symname, &nd, &target_item);
139         if (ret)
140                 goto out_put;
141
142         ret = type->ct_item_ops->allow_link(parent_item, target_item);
143         if (!ret)
144                 ret = create_link(parent_item, target_item, dentry);
145
146         config_item_put(target_item);
147         path_put(&nd.path);
148
149 out_put:
150         config_item_put(parent_item);
151
152 out:
153         return ret;
154 }
155
156 int configfs_unlink(struct inode *dir, struct dentry *dentry)
157 {
158         struct configfs_dirent *sd = dentry->d_fsdata;
159         struct configfs_symlink *sl;
160         struct config_item *parent_item;
161         struct config_item_type *type;
162         int ret;
163
164         ret = -EPERM;  /* What lack-of-symlink returns */
165         if (!(sd->s_type & CONFIGFS_ITEM_LINK))
166                 goto out;
167
168         BUG_ON(dentry->d_parent == configfs_sb->s_root);
169
170         sl = sd->s_element;
171
172         parent_item = configfs_get_config_item(dentry->d_parent);
173         type = parent_item->ci_type;
174
175         spin_lock(&configfs_dirent_lock);
176         list_del_init(&sd->s_sibling);
177         spin_unlock(&configfs_dirent_lock);
178         configfs_drop_dentry(sd, dentry->d_parent);
179         dput(dentry);
180         configfs_put(sd);
181
182         /*
183          * drop_link() must be called before
184          * list_del_init(&sl->sl_list), so that the order of
185          * drop_link(this, target) and drop_item(target) is preserved.
186          */
187         if (type && type->ct_item_ops &&
188             type->ct_item_ops->drop_link)
189                 type->ct_item_ops->drop_link(parent_item,
190                                                sl->sl_target);
191
192         spin_lock(&configfs_dirent_lock);
193         list_del_init(&sl->sl_list);
194         spin_unlock(&configfs_dirent_lock);
195
196         /* Put reference from create_link() */
197         config_item_put(sl->sl_target);
198         kfree(sl);
199
200         config_item_put(parent_item);
201
202         ret = 0;
203
204 out:
205         return ret;
206 }
207
208 static int configfs_get_target_path(struct config_item * item, struct config_item * target,
209                                    char *path)
210 {
211         char * s;
212         int depth, size;
213
214         depth = item_depth(item);
215         size = item_path_length(target) + depth * 3 - 1;
216         if (size > PATH_MAX)
217                 return -ENAMETOOLONG;
218
219         pr_debug("%s: depth = %d, size = %d\n", __func__, depth, size);
220
221         for (s = path; depth--; s += 3)
222                 strcpy(s,"../");
223
224         fill_item_path(target, path, size);
225         pr_debug("%s: path = '%s'\n", __func__, path);
226
227         return 0;
228 }
229
230 static int configfs_getlink(struct dentry *dentry, char * path)
231 {
232         struct config_item *item, *target_item;
233         int error = 0;
234
235         item = configfs_get_config_item(dentry->d_parent);
236         if (!item)
237                 return -EINVAL;
238
239         target_item = configfs_get_config_item(dentry);
240         if (!target_item) {
241                 config_item_put(item);
242                 return -EINVAL;
243         }
244
245         down_read(&configfs_rename_sem);
246         error = configfs_get_target_path(item, target_item, path);
247         up_read(&configfs_rename_sem);
248
249         config_item_put(item);
250         config_item_put(target_item);
251         return error;
252
253 }
254
255 static void *configfs_follow_link(struct dentry *dentry, struct nameidata *nd)
256 {
257         int error = -ENOMEM;
258         unsigned long page = get_zeroed_page(GFP_KERNEL);
259
260         if (page) {
261                 error = configfs_getlink(dentry, (char *)page);
262                 if (!error) {
263                         nd_set_link(nd, (char *)page);
264                         return (void *)page;
265                 }
266         }
267
268         nd_set_link(nd, ERR_PTR(error));
269         return NULL;
270 }
271
272 static void configfs_put_link(struct dentry *dentry, struct nameidata *nd,
273                               void *cookie)
274 {
275         if (cookie) {
276                 unsigned long page = (unsigned long)cookie;
277                 free_page(page);
278         }
279 }
280
281 const struct inode_operations configfs_symlink_inode_operations = {
282         .follow_link = configfs_follow_link,
283         .readlink = generic_readlink,
284         .put_link = configfs_put_link,
285         .setattr = configfs_setattr,
286 };
287