blob: afd79a1a34b3e18ee466cb76faa673f29efab3b2 [file] [log] [blame]
Joel Becker7063fbf2005-12-15 14:29:43 -08001/* -*- 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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Joel Becker7063fbf2005-12-15 14:29:43 -080031
32#include <linux/configfs.h>
33#include "configfs_internal.h"
34
Louis Rilling9a73d782008-06-20 14:09:22 +020035/* Protects attachments of new symlinks */
36DEFINE_MUTEX(configfs_symlink_mutex);
37
Joel Becker7063fbf2005-12-15 14:29:43 -080038static int item_depth(struct config_item * item)
39{
40 struct config_item * p = item;
41 int depth = 0;
42 do { depth++; } while ((p = p->ci_parent) && !configfs_is_root(p));
43 return depth;
44}
45
46static int item_path_length(struct config_item * item)
47{
48 struct config_item * p = item;
49 int length = 1;
50 do {
51 length += strlen(config_item_name(p)) + 1;
52 p = p->ci_parent;
53 } while (p && !configfs_is_root(p));
54 return length;
55}
56
57static void fill_item_path(struct config_item * item, char * buffer, int length)
58{
59 struct config_item * p;
60
61 --length;
62 for (p = item; p && !configfs_is_root(p); p = p->ci_parent) {
63 int cur = strlen(config_item_name(p));
64
65 /* back up enough to print this bus id with '/' */
66 length -= cur;
Guenter Roeck8f1756a2018-07-01 13:56:54 -070067 memcpy(buffer + length, config_item_name(p), cur);
Joel Becker7063fbf2005-12-15 14:29:43 -080068 *(buffer + --length) = '/';
69 }
70}
71
72static int create_link(struct config_item *parent_item,
Joel Beckere7515d02006-03-10 11:42:30 -080073 struct config_item *item,
Joel Becker7063fbf2005-12-15 14:29:43 -080074 struct dentry *dentry)
75{
76 struct configfs_dirent *target_sd = item->ci_dentry->d_fsdata;
77 struct configfs_symlink *sl;
78 int ret;
79
Louis Rilling2a109f22008-07-04 16:56:05 +020080 ret = -ENOENT;
81 if (!configfs_dirent_is_ready(target_sd))
82 goto out;
Joel Becker7063fbf2005-12-15 14:29:43 -080083 ret = -ENOMEM;
84 sl = kmalloc(sizeof(struct configfs_symlink), GFP_KERNEL);
85 if (sl) {
Louis Rilling5301a772008-06-16 19:00:59 +020086 spin_lock(&configfs_dirent_lock);
Louis Rilling4768e9b2008-06-23 14:16:17 +020087 if (target_sd->s_type & CONFIGFS_USET_DROPPING) {
88 spin_unlock(&configfs_dirent_lock);
Louis Rilling4768e9b2008-06-23 14:16:17 +020089 kfree(sl);
90 return -ENOENT;
91 }
Nicholas Bellingera6d62822017-06-08 04:51:54 +000092 sl->sl_target = config_item_get(item);
Joel Becker7063fbf2005-12-15 14:29:43 -080093 list_add(&sl->sl_list, &target_sd->s_links);
Louis Rilling5301a772008-06-16 19:00:59 +020094 spin_unlock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -080095 ret = configfs_create_link(sl, parent_item->ci_dentry,
96 dentry);
97 if (ret) {
Louis Rilling5301a772008-06-16 19:00:59 +020098 spin_lock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -080099 list_del_init(&sl->sl_list);
Louis Rilling5301a772008-06-16 19:00:59 +0200100 spin_unlock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -0800101 config_item_put(item);
102 kfree(sl);
103 }
104 }
105
Louis Rilling2a109f22008-07-04 16:56:05 +0200106out:
Joel Becker7063fbf2005-12-15 14:29:43 -0800107 return ret;
108}
109
110
Al Viro421748e2008-08-02 01:04:36 -0400111static int get_target(const char *symname, struct path *path,
Al Virob7c177f2012-03-17 16:24:54 -0400112 struct config_item **target, struct super_block *sb)
Joel Becker7063fbf2005-12-15 14:29:43 -0800113{
114 int ret;
115
Al Viro421748e2008-08-02 01:04:36 -0400116 ret = kern_path(symname, LOOKUP_FOLLOW|LOOKUP_DIRECTORY, path);
Joel Becker7063fbf2005-12-15 14:29:43 -0800117 if (!ret) {
Al Virob7c177f2012-03-17 16:24:54 -0400118 if (path->dentry->d_sb == sb) {
Al Viro421748e2008-08-02 01:04:36 -0400119 *target = configfs_get_config_item(path->dentry);
Joel Becker7063fbf2005-12-15 14:29:43 -0800120 if (!*target) {
121 ret = -ENOENT;
Al Viro421748e2008-08-02 01:04:36 -0400122 path_put(path);
Joel Becker7063fbf2005-12-15 14:29:43 -0800123 }
Al Viro9b6e3102010-01-13 22:10:57 -0500124 } else {
Joel Becker7063fbf2005-12-15 14:29:43 -0800125 ret = -EPERM;
Al Viro9b6e3102010-01-13 22:10:57 -0500126 path_put(path);
127 }
Joel Becker7063fbf2005-12-15 14:29:43 -0800128 }
129
130 return ret;
131}
132
133
134int configfs_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
135{
136 int ret;
Al Viro421748e2008-08-02 01:04:36 -0400137 struct path path;
Louis Rilling2a109f22008-07-04 16:56:05 +0200138 struct configfs_dirent *sd;
Joel Becker7063fbf2005-12-15 14:29:43 -0800139 struct config_item *parent_item;
Subrata Modak3c48f232009-04-19 01:10:03 +0530140 struct config_item *target_item = NULL;
Joel Becker7063fbf2005-12-15 14:29:43 -0800141 struct config_item_type *type;
142
Louis Rilling2a109f22008-07-04 16:56:05 +0200143 sd = dentry->d_parent->d_fsdata;
144 /*
145 * Fake invisibility if dir belongs to a group/default groups hierarchy
146 * being attached
147 */
148 ret = -ENOENT;
149 if (!configfs_dirent_is_ready(sd))
150 goto out;
151
Joel Becker7063fbf2005-12-15 14:29:43 -0800152 parent_item = configfs_get_config_item(dentry->d_parent);
153 type = parent_item->ci_type;
154
Louis Rilling2a109f22008-07-04 16:56:05 +0200155 ret = -EPERM;
Joel Becker7063fbf2005-12-15 14:29:43 -0800156 if (!type || !type->ct_item_ops ||
157 !type->ct_item_ops->allow_link)
158 goto out_put;
159
Al Virofa33be12019-08-03 11:51:18 -0400160 /*
161 * This is really sick. What they wanted was a hybrid of
162 * link(2) and symlink(2) - they wanted the target resolved
163 * at syscall time (as link(2) would've done), be a directory
164 * (which link(2) would've refused to do) *AND* be a deep
165 * fucking magic, making the target busy from rmdir POV.
166 * symlink(2) is nothing of that sort, and the locking it
167 * gets matches the normal symlink(2) semantics. Without
168 * attempts to resolve the target (which might very well
169 * not even exist yet) done prior to locking the parent
170 * directory. This perversion, OTOH, needs to resolve
171 * the target, which would lead to obvious deadlocks if
172 * attempted with any directories locked.
173 *
174 * Unfortunately, that garbage is userland ABI and we should've
175 * said "no" back in 2005. Too late now, so we get to
176 * play very ugly games with locking.
177 *
178 * Try *ANYTHING* of that sort in new code, and you will
179 * really regret it. Just ask yourself - what could a BOFH
180 * do to me and do I want to find it out first-hand?
181 *
182 * AV, a thoroughly annoyed bastard.
183 */
184 inode_unlock(dir);
Al Virob7c177f2012-03-17 16:24:54 -0400185 ret = get_target(symname, &path, &target_item, dentry->d_sb);
Al Virofa33be12019-08-03 11:51:18 -0400186 inode_lock(dir);
Joel Becker7063fbf2005-12-15 14:29:43 -0800187 if (ret)
188 goto out_put;
189
Al Virofa33be12019-08-03 11:51:18 -0400190 if (dentry->d_inode || d_unhashed(dentry))
191 ret = -EEXIST;
192 else
193 ret = inode_permission(dir, MAY_WRITE | MAY_EXEC);
194 if (!ret)
195 ret = type->ct_item_ops->allow_link(parent_item, target_item);
Louis Rillinge7520652008-06-12 17:26:47 +0200196 if (!ret) {
Louis Rilling9a73d782008-06-20 14:09:22 +0200197 mutex_lock(&configfs_symlink_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -0800198 ret = create_link(parent_item, target_item, dentry);
Louis Rilling9a73d782008-06-20 14:09:22 +0200199 mutex_unlock(&configfs_symlink_mutex);
Louis Rillinge7520652008-06-12 17:26:47 +0200200 if (ret && type->ct_item_ops->drop_link)
201 type->ct_item_ops->drop_link(parent_item,
202 target_item);
203 }
Joel Becker7063fbf2005-12-15 14:29:43 -0800204
205 config_item_put(target_item);
Al Viro421748e2008-08-02 01:04:36 -0400206 path_put(&path);
Joel Becker7063fbf2005-12-15 14:29:43 -0800207
208out_put:
209 config_item_put(parent_item);
210
211out:
212 return ret;
213}
214
215int configfs_unlink(struct inode *dir, struct dentry *dentry)
216{
217 struct configfs_dirent *sd = dentry->d_fsdata;
218 struct configfs_symlink *sl;
219 struct config_item *parent_item;
220 struct config_item_type *type;
221 int ret;
222
223 ret = -EPERM; /* What lack-of-symlink returns */
224 if (!(sd->s_type & CONFIGFS_ITEM_LINK))
225 goto out;
226
Joel Becker7063fbf2005-12-15 14:29:43 -0800227 sl = sd->s_element;
228
229 parent_item = configfs_get_config_item(dentry->d_parent);
230 type = parent_item->ci_type;
231
Louis Rilling6f610762008-06-16 19:00:58 +0200232 spin_lock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -0800233 list_del_init(&sd->s_sibling);
Louis Rilling6f610762008-06-16 19:00:58 +0200234 spin_unlock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -0800235 configfs_drop_dentry(sd, dentry->d_parent);
236 dput(dentry);
237 configfs_put(sd);
238
239 /*
240 * drop_link() must be called before
241 * list_del_init(&sl->sl_list), so that the order of
242 * drop_link(this, target) and drop_item(target) is preserved.
243 */
244 if (type && type->ct_item_ops &&
245 type->ct_item_ops->drop_link)
246 type->ct_item_ops->drop_link(parent_item,
247 sl->sl_target);
248
Louis Rilling5301a772008-06-16 19:00:59 +0200249 spin_lock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -0800250 list_del_init(&sl->sl_list);
Louis Rilling5301a772008-06-16 19:00:59 +0200251 spin_unlock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -0800252
253 /* Put reference from create_link() */
254 config_item_put(sl->sl_target);
255 kfree(sl);
256
257 config_item_put(parent_item);
258
259 ret = 0;
260
261out:
262 return ret;
263}
264
265static int configfs_get_target_path(struct config_item * item, struct config_item * target,
266 char *path)
267{
268 char * s;
269 int depth, size;
270
271 depth = item_depth(item);
272 size = item_path_length(target) + depth * 3 - 1;
273 if (size > PATH_MAX)
274 return -ENAMETOOLONG;
275
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700276 pr_debug("%s: depth = %d, size = %d\n", __func__, depth, size);
Joel Becker7063fbf2005-12-15 14:29:43 -0800277
278 for (s = path; depth--; s += 3)
279 strcpy(s,"../");
280
281 fill_item_path(target, path, size);
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700282 pr_debug("%s: path = '%s'\n", __func__, path);
Joel Becker7063fbf2005-12-15 14:29:43 -0800283
284 return 0;
285}
286
287static int configfs_getlink(struct dentry *dentry, char * path)
288{
289 struct config_item *item, *target_item;
290 int error = 0;
291
292 item = configfs_get_config_item(dentry->d_parent);
293 if (!item)
294 return -EINVAL;
295
296 target_item = configfs_get_config_item(dentry);
297 if (!target_item) {
298 config_item_put(item);
299 return -EINVAL;
300 }
301
302 down_read(&configfs_rename_sem);
303 error = configfs_get_target_path(item, target_item, path);
304 up_read(&configfs_rename_sem);
305
306 config_item_put(item);
307 config_item_put(target_item);
308 return error;
309
310}
311
Al Viro6b255392015-11-17 10:20:54 -0500312static const char *configfs_get_link(struct dentry *dentry,
Al Virofceef392015-12-29 15:58:39 -0500313 struct inode *inode,
314 struct delayed_call *done)
Joel Becker7063fbf2005-12-15 14:29:43 -0800315{
Al Virofceef392015-12-29 15:58:39 -0500316 char *body;
Al Viro680baac2015-05-02 13:32:22 -0400317 int error;
Joel Becker7063fbf2005-12-15 14:29:43 -0800318
Al Viro6b255392015-11-17 10:20:54 -0500319 if (!dentry)
320 return ERR_PTR(-ECHILD);
321
Al Virofceef392015-12-29 15:58:39 -0500322 body = kzalloc(PAGE_SIZE, GFP_KERNEL);
323 if (!body)
Al Viro680baac2015-05-02 13:32:22 -0400324 return ERR_PTR(-ENOMEM);
325
Al Virofceef392015-12-29 15:58:39 -0500326 error = configfs_getlink(dentry, body);
Al Viro680baac2015-05-02 13:32:22 -0400327 if (!error) {
Al Virofceef392015-12-29 15:58:39 -0500328 set_delayed_call(done, kfree_link, body);
329 return body;
Joel Becker7063fbf2005-12-15 14:29:43 -0800330 }
331
Al Virofceef392015-12-29 15:58:39 -0500332 kfree(body);
Al Viro680baac2015-05-02 13:32:22 -0400333 return ERR_PTR(error);
Joel Becker7063fbf2005-12-15 14:29:43 -0800334}
335
Arjan van de Ven754661f2007-02-12 00:55:38 -0800336const struct inode_operations configfs_symlink_inode_operations = {
Al Viro6b255392015-11-17 10:20:54 -0500337 .get_link = configfs_get_link,
Joel Becker7063fbf2005-12-15 14:29:43 -0800338 .readlink = generic_readlink,
Joel Becker3d0f89b2006-01-25 13:31:07 -0800339 .setattr = configfs_setattr,
Joel Becker7063fbf2005-12-15 14:29:43 -0800340};
341