blob: bb097ad1d860d1f8b4a0424bc110e979a8c65353 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Tejun Heo6d66f5c2007-09-20 17:31:38 +09002 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
13#include <linux/fs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/gfp.h>
Greg Kroah-Hartmanceeee1f2002-04-09 12:14:34 -070015#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
17#include <linux/kobject.h>
18#include <linux/namei.h>
Dave Young869512a2007-07-26 14:53:53 +000019#include <linux/mutex.h>
David P. Quigleyddd29ec2009-09-09 14:25:37 -040020#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
22#include "sysfs.h"
23
Rafael J. Wysocki0bb8f3d2013-01-25 21:51:13 +010024static int sysfs_do_create_link_sd(struct sysfs_dirent *parent_sd,
25 struct kobject *target,
26 const char *name, int warn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027{
Tejun Heo2b29ac22007-06-14 03:45:15 +090028 struct sysfs_dirent *target_sd = NULL;
Tejun Heo3007e992007-06-14 04:27:23 +090029 struct sysfs_dirent *sd = NULL;
Tejun Heofb6896d2007-06-14 04:27:24 +090030 struct sysfs_addrm_cxt acxt;
Eric W. Biederman96d65232010-07-08 09:31:24 -070031 enum kobj_ns_type ns_type;
Tejun Heo3007e992007-06-14 04:27:23 +090032 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Rafael J. Wysocki0bb8f3d2013-01-25 21:51:13 +010034 BUG_ON(!name || !parent_sd);
Tejun Heo2b29ac22007-06-14 03:45:15 +090035
Tejun Heo608e2662007-06-14 04:27:22 +090036 /* target->sd can go away beneath us but is protected with
Tejun Heo5f995322007-06-14 04:27:23 +090037 * sysfs_assoc_lock. Fetch target_sd from it.
Tejun Heo2b29ac22007-06-14 03:45:15 +090038 */
Tejun Heo5f995322007-06-14 04:27:23 +090039 spin_lock(&sysfs_assoc_lock);
Tejun Heo608e2662007-06-14 04:27:22 +090040 if (target->sd)
41 target_sd = sysfs_get(target->sd);
Tejun Heo5f995322007-06-14 04:27:23 +090042 spin_unlock(&sysfs_assoc_lock);
Tejun Heo2b29ac22007-06-14 03:45:15 +090043
Tejun Heo3007e992007-06-14 04:27:23 +090044 error = -ENOENT;
Tejun Heo2b29ac22007-06-14 03:45:15 +090045 if (!target_sd)
Tejun Heo3007e992007-06-14 04:27:23 +090046 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Tejun Heo3007e992007-06-14 04:27:23 +090048 error = -ENOMEM;
49 sd = sysfs_new_dirent(name, S_IFLNK|S_IRWXUGO, SYSFS_KOBJ_LINK);
50 if (!sd)
51 goto out_put;
Tejun Heoa1da4df2007-07-18 16:14:45 +090052
Eric W. Biederman96d65232010-07-08 09:31:24 -070053 ns_type = sysfs_ns_type(parent_sd);
54 if (ns_type)
Eric W. Biederman3ff195b2010-03-30 11:31:26 -070055 sd->s_ns = target->ktype->namespace(target);
Tejun Heob1fc3d62007-09-20 16:05:11 +090056 sd->s_symlink.target_sd = target_sd;
Tejun Heoa1da4df2007-07-18 16:14:45 +090057 target_sd = NULL; /* reference is now owned by the symlink */
Tejun Heo2b29ac22007-06-14 03:45:15 +090058
Tejun Heofb6896d2007-06-14 04:27:24 +090059 sysfs_addrm_start(&acxt, parent_sd);
Eric W. Biederman96d65232010-07-08 09:31:24 -070060 /* Symlinks must be between directories with the same ns_type */
Eric W. Biedermand3300212010-07-20 22:12:01 -070061 if (!ns_type ||
62 (ns_type == sysfs_ns_type(sd->s_symlink.target_sd->s_parent))) {
Eric W. Biederman96d65232010-07-08 09:31:24 -070063 if (warn)
64 error = sysfs_add_one(&acxt, sd);
65 else
66 error = __sysfs_add_one(&acxt, sd);
67 } else {
68 error = -EINVAL;
69 WARN(1, KERN_WARNING
70 "sysfs: symlink across ns_types %s/%s -> %s/%s\n",
71 parent_sd->s_name,
72 sd->s_name,
73 sd->s_symlink.target_sd->s_parent->s_name,
74 sd->s_symlink.target_sd->s_name);
75 }
Tejun Heo23dc2792007-08-02 21:38:03 +090076 sysfs_addrm_finish(&acxt);
Tejun Heofb6896d2007-06-14 04:27:24 +090077
Tejun Heo23dc2792007-08-02 21:38:03 +090078 if (error)
Tejun Heo967e35d2007-07-18 16:38:11 +090079 goto out_put;
Tejun Heofb6896d2007-06-14 04:27:24 +090080
Tejun Heo967e35d2007-07-18 16:38:11 +090081 return 0;
82
Tejun Heo3007e992007-06-14 04:27:23 +090083 out_put:
84 sysfs_put(target_sd);
85 sysfs_put(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 return error;
87}
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/**
Rafael J. Wysocki0bb8f3d2013-01-25 21:51:13 +010090 * sysfs_create_link_sd - create symlink to a given object.
91 * @sd: directory we're creating the link in.
92 * @target: object we're pointing to.
93 * @name: name of the symlink.
94 */
95int sysfs_create_link_sd(struct sysfs_dirent *sd, struct kobject *target,
96 const char *name)
97{
98 return sysfs_do_create_link_sd(sd, target, name, 1);
99}
100
101static int sysfs_do_create_link(struct kobject *kobj, struct kobject *target,
102 const char *name, int warn)
103{
104 struct sysfs_dirent *parent_sd = NULL;
105
106 if (!kobj)
107 parent_sd = &sysfs_root;
108 else
109 parent_sd = kobj->sd;
110
111 if (!parent_sd)
112 return -EFAULT;
113
114 return sysfs_do_create_link_sd(parent_sd, target, name, warn);
115}
116
117/**
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200118 * sysfs_create_link - create symlink between two objects.
119 * @kobj: object whose directory we're creating the link in.
120 * @target: object we're pointing to.
121 * @name: name of the symlink.
122 */
123int sysfs_create_link(struct kobject *kobj, struct kobject *target,
124 const char *name)
125{
126 return sysfs_do_create_link(kobj, target, name, 1);
127}
Greg Kroah-Hartman1b866752013-08-21 16:17:47 -0700128EXPORT_SYMBOL_GPL(sysfs_create_link);
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200129
130/**
131 * sysfs_create_link_nowarn - create symlink between two objects.
132 * @kobj: object whose directory we're creating the link in.
133 * @target: object we're pointing to.
134 * @name: name of the symlink.
135 *
Robert P. J. Day6f1cbd42012-09-04 07:23:35 -0400136 * This function does the same as sysfs_create_link(), but it
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200137 * doesn't warn if the link already exists.
138 */
139int sysfs_create_link_nowarn(struct kobject *kobj, struct kobject *target,
140 const char *name)
141{
142 return sysfs_do_create_link(kobj, target, name, 0);
143}
144
145/**
Eric W. Biederman746edb72010-03-30 11:31:28 -0700146 * sysfs_delete_link - remove symlink in object's directory.
147 * @kobj: object we're acting for.
148 * @targ: object we're pointing to.
149 * @name: name of the symlink to remove.
150 *
151 * Unlike sysfs_remove_link sysfs_delete_link has enough information
152 * to successfully delete symlinks in tagged directories.
153 */
154void sysfs_delete_link(struct kobject *kobj, struct kobject *targ,
155 const char *name)
156{
157 const void *ns = NULL;
158 spin_lock(&sysfs_assoc_lock);
Eric W. Biederman521d0452010-07-20 22:10:58 -0700159 if (targ->sd && sysfs_ns_type(kobj->sd))
Eric W. Biederman746edb72010-03-30 11:31:28 -0700160 ns = targ->sd->s_ns;
161 spin_unlock(&sysfs_assoc_lock);
162 sysfs_hash_and_remove(kobj->sd, ns, name);
163}
164
165/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 * sysfs_remove_link - remove symlink in object's directory.
167 * @kobj: object we're acting for.
168 * @name: name of the symlink to remove.
169 */
Dmitry Torokhove3a15db2005-04-26 02:31:08 -0500170void sysfs_remove_link(struct kobject * kobj, const char * name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Mark Fasheha839c5a2008-01-29 14:35:18 -0800172 struct sysfs_dirent *parent_sd = NULL;
173
174 if (!kobj)
175 parent_sd = &sysfs_root;
176 else
177 parent_sd = kobj->sd;
178
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700179 sysfs_hash_and_remove(parent_sd, NULL, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
Greg Kroah-Hartman1b866752013-08-21 16:17:47 -0700181EXPORT_SYMBOL_GPL(sysfs_remove_link);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800183/**
184 * sysfs_rename_link - rename symlink in object's directory.
185 * @kobj: object we're acting for.
186 * @targ: object we're pointing to.
187 * @old: previous name of the symlink.
188 * @new: new name of the symlink.
189 *
190 * A helper function for the common rename symlink idiom.
191 */
192int sysfs_rename_link(struct kobject *kobj, struct kobject *targ,
193 const char *old, const char *new)
194{
195 struct sysfs_dirent *parent_sd, *sd = NULL;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700196 const void *old_ns = NULL, *new_ns = NULL;
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800197 int result;
198
199 if (!kobj)
200 parent_sd = &sysfs_root;
201 else
202 parent_sd = kobj->sd;
203
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700204 if (targ->sd)
205 old_ns = targ->sd->s_ns;
206
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800207 result = -ENOENT;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700208 sd = sysfs_get_dirent(parent_sd, old_ns, old);
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800209 if (!sd)
210 goto out;
211
212 result = -EINVAL;
213 if (sysfs_type(sd) != SYSFS_KOBJ_LINK)
214 goto out;
215 if (sd->s_symlink.target_sd->s_dir.kobj != targ)
216 goto out;
217
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700218 if (sysfs_ns_type(parent_sd))
219 new_ns = targ->ktype->namespace(targ);
220
221 result = sysfs_rename(sd, parent_sd, new_ns, new);
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800222
223out:
224 sysfs_put(sd);
225 return result;
226}
Greg Kroah-Hartman1b866752013-08-21 16:17:47 -0700227EXPORT_SYMBOL_GPL(sysfs_rename_link);
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800228
Kay Sievers2f90a852007-11-01 20:20:52 +0100229static int sysfs_get_target_path(struct sysfs_dirent *parent_sd,
230 struct sysfs_dirent *target_sd, char *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Kay Sievers2f90a852007-11-01 20:20:52 +0100232 struct sysfs_dirent *base, *sd;
233 char *s = path;
234 int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Kay Sievers2f90a852007-11-01 20:20:52 +0100236 /* go up to the root, stop at the base */
237 base = parent_sd;
238 while (base->s_parent) {
239 sd = target_sd->s_parent;
240 while (sd->s_parent && base != sd)
241 sd = sd->s_parent;
242
243 if (base == sd)
244 break;
245
246 strcpy(s, "../");
247 s += 3;
248 base = base->s_parent;
249 }
250
251 /* determine end of target string for reverse fillup */
252 sd = target_sd;
253 while (sd->s_parent && sd != base) {
254 len += strlen(sd->s_name) + 1;
255 sd = sd->s_parent;
256 }
257
258 /* check limits */
259 if (len < 2)
260 return -EINVAL;
261 len--;
262 if ((s - path) + len > PATH_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 return -ENAMETOOLONG;
264
Kay Sievers2f90a852007-11-01 20:20:52 +0100265 /* reverse fillup of target string from target to base */
266 sd = target_sd;
267 while (sd->s_parent && sd != base) {
268 int slen = strlen(sd->s_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Kay Sievers2f90a852007-11-01 20:20:52 +0100270 len -= slen;
271 strncpy(s + len, sd->s_name, slen);
272 if (len)
273 s[--len] = '/';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
Kay Sievers2f90a852007-11-01 20:20:52 +0100275 sd = sd->s_parent;
276 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
278 return 0;
279}
280
281static int sysfs_getlink(struct dentry *dentry, char * path)
282{
Tejun Heo2b29ac22007-06-14 03:45:15 +0900283 struct sysfs_dirent *sd = dentry->d_fsdata;
284 struct sysfs_dirent *parent_sd = sd->s_parent;
Tejun Heob1fc3d62007-09-20 16:05:11 +0900285 struct sysfs_dirent *target_sd = sd->s_symlink.target_sd;
Tejun Heo2b29ac22007-06-14 03:45:15 +0900286 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Tejun Heo3007e992007-06-14 04:27:23 +0900288 mutex_lock(&sysfs_mutex);
Tejun Heo2b29ac22007-06-14 03:45:15 +0900289 error = sysfs_get_target_path(parent_sd, target_sd, path);
Tejun Heo3007e992007-06-14 04:27:23 +0900290 mutex_unlock(&sysfs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Tejun Heo2b29ac22007-06-14 03:45:15 +0900292 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293}
294
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700295static void *sysfs_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296{
297 int error = -ENOMEM;
298 unsigned long page = get_zeroed_page(GFP_KERNEL);
Armin Kuster557411e2009-04-29 07:29:59 -1000299 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 error = sysfs_getlink(dentry, (char *) page);
Armin Kuster557411e2009-04-29 07:29:59 -1000301 if (error < 0)
302 free_page((unsigned long)page);
303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 nd_set_link(nd, error ? ERR_PTR(error) : (char *)page);
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700305 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700308static void sysfs_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 char *page = nd_get_link(nd);
311 if (!IS_ERR(page))
312 free_page((unsigned long)page);
313}
314
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800315const struct inode_operations sysfs_symlink_inode_operations = {
Eric W. Biedermanc099aac2009-11-20 16:08:52 -0800316 .setxattr = sysfs_setxattr,
317 .readlink = generic_readlink,
318 .follow_link = sysfs_follow_link,
319 .put_link = sysfs_put_link,
Eric W. Biedermane61ab4a2009-11-20 16:08:53 -0800320 .setattr = sysfs_setattr,
321 .getattr = sysfs_getattr,
322 .permission = sysfs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323};