blob: 660383321347567a7e9cd4f0e429a1886aca2187 [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
Cornelia Huck36ce6da2008-06-10 11:09:08 +020024static int sysfs_do_create_link(struct kobject *kobj, struct kobject *target,
25 const char *name, int warn)
Linus Torvalds1da177e2005-04-16 15:20:36 -070026{
Tejun Heo2b29ac22007-06-14 03:45:15 +090027 struct sysfs_dirent *parent_sd = NULL;
28 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
Greg Kroah-Hartmanceeee1f2002-04-09 12:14:34 -070034 BUG_ON(!name);
35
Eric W. Biederman7d0c7d62007-08-20 21:36:30 +090036 if (!kobj)
37 parent_sd = &sysfs_root;
38 else
Tejun Heo608e2662007-06-14 04:27:22 +090039 parent_sd = kobj->sd;
Greg Kroah-Hartmanceeee1f2002-04-09 12:14:34 -070040
Tejun Heo3007e992007-06-14 04:27:23 +090041 error = -EFAULT;
Tejun Heo608e2662007-06-14 04:27:22 +090042 if (!parent_sd)
Tejun Heo3007e992007-06-14 04:27:23 +090043 goto out_put;
Tejun Heo2b29ac22007-06-14 03:45:15 +090044
Tejun Heo608e2662007-06-14 04:27:22 +090045 /* target->sd can go away beneath us but is protected with
Tejun Heo5f995322007-06-14 04:27:23 +090046 * sysfs_assoc_lock. Fetch target_sd from it.
Tejun Heo2b29ac22007-06-14 03:45:15 +090047 */
Tejun Heo5f995322007-06-14 04:27:23 +090048 spin_lock(&sysfs_assoc_lock);
Tejun Heo608e2662007-06-14 04:27:22 +090049 if (target->sd)
50 target_sd = sysfs_get(target->sd);
Tejun Heo5f995322007-06-14 04:27:23 +090051 spin_unlock(&sysfs_assoc_lock);
Tejun Heo2b29ac22007-06-14 03:45:15 +090052
Tejun Heo3007e992007-06-14 04:27:23 +090053 error = -ENOENT;
Tejun Heo2b29ac22007-06-14 03:45:15 +090054 if (!target_sd)
Tejun Heo3007e992007-06-14 04:27:23 +090055 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Tejun Heo3007e992007-06-14 04:27:23 +090057 error = -ENOMEM;
58 sd = sysfs_new_dirent(name, S_IFLNK|S_IRWXUGO, SYSFS_KOBJ_LINK);
59 if (!sd)
60 goto out_put;
Tejun Heoa1da4df2007-07-18 16:14:45 +090061
Eric W. Biederman96d65232010-07-08 09:31:24 -070062 ns_type = sysfs_ns_type(parent_sd);
63 if (ns_type)
Eric W. Biederman3ff195b2010-03-30 11:31:26 -070064 sd->s_ns = target->ktype->namespace(target);
Tejun Heob1fc3d62007-09-20 16:05:11 +090065 sd->s_symlink.target_sd = target_sd;
Tejun Heoa1da4df2007-07-18 16:14:45 +090066 target_sd = NULL; /* reference is now owned by the symlink */
Tejun Heo2b29ac22007-06-14 03:45:15 +090067
Tejun Heofb6896d2007-06-14 04:27:24 +090068 sysfs_addrm_start(&acxt, parent_sd);
Eric W. Biederman96d65232010-07-08 09:31:24 -070069 /* Symlinks must be between directories with the same ns_type */
70 if (ns_type == sysfs_ns_type(sd->s_symlink.target_sd->s_parent)) {
71 if (warn)
72 error = sysfs_add_one(&acxt, sd);
73 else
74 error = __sysfs_add_one(&acxt, sd);
75 } else {
76 error = -EINVAL;
77 WARN(1, KERN_WARNING
78 "sysfs: symlink across ns_types %s/%s -> %s/%s\n",
79 parent_sd->s_name,
80 sd->s_name,
81 sd->s_symlink.target_sd->s_parent->s_name,
82 sd->s_symlink.target_sd->s_name);
83 }
Tejun Heo23dc2792007-08-02 21:38:03 +090084 sysfs_addrm_finish(&acxt);
Tejun Heofb6896d2007-06-14 04:27:24 +090085
Tejun Heo23dc2792007-08-02 21:38:03 +090086 if (error)
Tejun Heo967e35d2007-07-18 16:38:11 +090087 goto out_put;
Tejun Heofb6896d2007-06-14 04:27:24 +090088
Tejun Heo967e35d2007-07-18 16:38:11 +090089 return 0;
90
Tejun Heo3007e992007-06-14 04:27:23 +090091 out_put:
92 sysfs_put(target_sd);
93 sysfs_put(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 return error;
95}
96
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/**
Cornelia Huck36ce6da2008-06-10 11:09:08 +020098 * sysfs_create_link - create symlink between two objects.
99 * @kobj: object whose directory we're creating the link in.
100 * @target: object we're pointing to.
101 * @name: name of the symlink.
102 */
103int sysfs_create_link(struct kobject *kobj, struct kobject *target,
104 const char *name)
105{
106 return sysfs_do_create_link(kobj, target, name, 1);
107}
108
109/**
110 * sysfs_create_link_nowarn - create symlink between two objects.
111 * @kobj: object whose directory we're creating the link in.
112 * @target: object we're pointing to.
113 * @name: name of the symlink.
114 *
115 * This function does the same as sysf_create_link(), but it
116 * doesn't warn if the link already exists.
117 */
118int sysfs_create_link_nowarn(struct kobject *kobj, struct kobject *target,
119 const char *name)
120{
121 return sysfs_do_create_link(kobj, target, name, 0);
122}
123
124/**
Eric W. Biederman746edb72010-03-30 11:31:28 -0700125 * sysfs_delete_link - remove symlink in object's directory.
126 * @kobj: object we're acting for.
127 * @targ: object we're pointing to.
128 * @name: name of the symlink to remove.
129 *
130 * Unlike sysfs_remove_link sysfs_delete_link has enough information
131 * to successfully delete symlinks in tagged directories.
132 */
133void sysfs_delete_link(struct kobject *kobj, struct kobject *targ,
134 const char *name)
135{
136 const void *ns = NULL;
137 spin_lock(&sysfs_assoc_lock);
Eric W. Biederman521d0452010-07-20 22:10:58 -0700138 if (targ->sd && sysfs_ns_type(kobj->sd))
Eric W. Biederman746edb72010-03-30 11:31:28 -0700139 ns = targ->sd->s_ns;
140 spin_unlock(&sysfs_assoc_lock);
141 sysfs_hash_and_remove(kobj->sd, ns, name);
142}
143
144/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 * sysfs_remove_link - remove symlink in object's directory.
146 * @kobj: object we're acting for.
147 * @name: name of the symlink to remove.
148 */
149
Dmitry Torokhove3a15db2005-04-26 02:31:08 -0500150void sysfs_remove_link(struct kobject * kobj, const char * name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Mark Fasheha839c5a2008-01-29 14:35:18 -0800152 struct sysfs_dirent *parent_sd = NULL;
153
154 if (!kobj)
155 parent_sd = &sysfs_root;
156 else
157 parent_sd = kobj->sd;
158
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700159 sysfs_hash_and_remove(parent_sd, NULL, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800162/**
163 * sysfs_rename_link - rename symlink in object's directory.
164 * @kobj: object we're acting for.
165 * @targ: object we're pointing to.
166 * @old: previous name of the symlink.
167 * @new: new name of the symlink.
168 *
169 * A helper function for the common rename symlink idiom.
170 */
171int sysfs_rename_link(struct kobject *kobj, struct kobject *targ,
172 const char *old, const char *new)
173{
174 struct sysfs_dirent *parent_sd, *sd = NULL;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700175 const void *old_ns = NULL, *new_ns = NULL;
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800176 int result;
177
178 if (!kobj)
179 parent_sd = &sysfs_root;
180 else
181 parent_sd = kobj->sd;
182
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700183 if (targ->sd)
184 old_ns = targ->sd->s_ns;
185
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800186 result = -ENOENT;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700187 sd = sysfs_get_dirent(parent_sd, old_ns, old);
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800188 if (!sd)
189 goto out;
190
191 result = -EINVAL;
192 if (sysfs_type(sd) != SYSFS_KOBJ_LINK)
193 goto out;
194 if (sd->s_symlink.target_sd->s_dir.kobj != targ)
195 goto out;
196
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700197 if (sysfs_ns_type(parent_sd))
198 new_ns = targ->ktype->namespace(targ);
199
200 result = sysfs_rename(sd, parent_sd, new_ns, new);
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800201
202out:
203 sysfs_put(sd);
204 return result;
205}
206
Kay Sievers2f90a852007-11-01 20:20:52 +0100207static int sysfs_get_target_path(struct sysfs_dirent *parent_sd,
208 struct sysfs_dirent *target_sd, char *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Kay Sievers2f90a852007-11-01 20:20:52 +0100210 struct sysfs_dirent *base, *sd;
211 char *s = path;
212 int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
Kay Sievers2f90a852007-11-01 20:20:52 +0100214 /* go up to the root, stop at the base */
215 base = parent_sd;
216 while (base->s_parent) {
217 sd = target_sd->s_parent;
218 while (sd->s_parent && base != sd)
219 sd = sd->s_parent;
220
221 if (base == sd)
222 break;
223
224 strcpy(s, "../");
225 s += 3;
226 base = base->s_parent;
227 }
228
229 /* determine end of target string for reverse fillup */
230 sd = target_sd;
231 while (sd->s_parent && sd != base) {
232 len += strlen(sd->s_name) + 1;
233 sd = sd->s_parent;
234 }
235
236 /* check limits */
237 if (len < 2)
238 return -EINVAL;
239 len--;
240 if ((s - path) + len > PATH_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 return -ENAMETOOLONG;
242
Kay Sievers2f90a852007-11-01 20:20:52 +0100243 /* reverse fillup of target string from target to base */
244 sd = target_sd;
245 while (sd->s_parent && sd != base) {
246 int slen = strlen(sd->s_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Kay Sievers2f90a852007-11-01 20:20:52 +0100248 len -= slen;
249 strncpy(s + len, sd->s_name, slen);
250 if (len)
251 s[--len] = '/';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Kay Sievers2f90a852007-11-01 20:20:52 +0100253 sd = sd->s_parent;
254 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256 return 0;
257}
258
259static int sysfs_getlink(struct dentry *dentry, char * path)
260{
Tejun Heo2b29ac22007-06-14 03:45:15 +0900261 struct sysfs_dirent *sd = dentry->d_fsdata;
262 struct sysfs_dirent *parent_sd = sd->s_parent;
Tejun Heob1fc3d62007-09-20 16:05:11 +0900263 struct sysfs_dirent *target_sd = sd->s_symlink.target_sd;
Tejun Heo2b29ac22007-06-14 03:45:15 +0900264 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265
Tejun Heo3007e992007-06-14 04:27:23 +0900266 mutex_lock(&sysfs_mutex);
Tejun Heo2b29ac22007-06-14 03:45:15 +0900267 error = sysfs_get_target_path(parent_sd, target_sd, path);
Tejun Heo3007e992007-06-14 04:27:23 +0900268 mutex_unlock(&sysfs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
Tejun Heo2b29ac22007-06-14 03:45:15 +0900270 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
272
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700273static void *sysfs_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
275 int error = -ENOMEM;
276 unsigned long page = get_zeroed_page(GFP_KERNEL);
Armin Kuster557411e2009-04-29 07:29:59 -1000277 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 error = sysfs_getlink(dentry, (char *) page);
Armin Kuster557411e2009-04-29 07:29:59 -1000279 if (error < 0)
280 free_page((unsigned long)page);
281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 nd_set_link(nd, error ? ERR_PTR(error) : (char *)page);
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700283 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284}
285
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700286static void sysfs_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287{
288 char *page = nd_get_link(nd);
289 if (!IS_ERR(page))
290 free_page((unsigned long)page);
291}
292
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800293const struct inode_operations sysfs_symlink_inode_operations = {
Eric W. Biedermanc099aac2009-11-20 16:08:52 -0800294 .setxattr = sysfs_setxattr,
295 .readlink = generic_readlink,
296 .follow_link = sysfs_follow_link,
297 .put_link = sysfs_put_link,
Eric W. Biedermane61ab4a2009-11-20 16:08:53 -0800298 .setattr = sysfs_setattr,
299 .getattr = sysfs_getattr,
300 .permission = sysfs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301};
302
303
304EXPORT_SYMBOL_GPL(sysfs_create_link);
305EXPORT_SYMBOL_GPL(sysfs_remove_link);
Simon Arlotte0f43752010-05-10 09:31:11 +0000306EXPORT_SYMBOL_GPL(sysfs_rename_link);