blob: b6ebdaa00f379ef0fc0db36beec81e781e279285 [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;
Tejun Heo3007e992007-06-14 04:27:23 +090031 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Greg Kroah-Hartmanceeee1f2002-04-09 12:14:34 -070033 BUG_ON(!name);
34
Eric W. Biederman7d0c7d62007-08-20 21:36:30 +090035 if (!kobj)
36 parent_sd = &sysfs_root;
37 else
Tejun Heo608e2662007-06-14 04:27:22 +090038 parent_sd = kobj->sd;
Greg Kroah-Hartmanceeee1f2002-04-09 12:14:34 -070039
Tejun Heo3007e992007-06-14 04:27:23 +090040 error = -EFAULT;
Tejun Heo608e2662007-06-14 04:27:22 +090041 if (!parent_sd)
Tejun Heo3007e992007-06-14 04:27:23 +090042 goto out_put;
Tejun Heo2b29ac22007-06-14 03:45:15 +090043
Tejun Heo608e2662007-06-14 04:27:22 +090044 /* target->sd can go away beneath us but is protected with
Tejun Heo5f995322007-06-14 04:27:23 +090045 * sysfs_assoc_lock. Fetch target_sd from it.
Tejun Heo2b29ac22007-06-14 03:45:15 +090046 */
Tejun Heo5f995322007-06-14 04:27:23 +090047 spin_lock(&sysfs_assoc_lock);
Tejun Heo608e2662007-06-14 04:27:22 +090048 if (target->sd)
49 target_sd = sysfs_get(target->sd);
Tejun Heo5f995322007-06-14 04:27:23 +090050 spin_unlock(&sysfs_assoc_lock);
Tejun Heo2b29ac22007-06-14 03:45:15 +090051
Tejun Heo3007e992007-06-14 04:27:23 +090052 error = -ENOENT;
Tejun Heo2b29ac22007-06-14 03:45:15 +090053 if (!target_sd)
Tejun Heo3007e992007-06-14 04:27:23 +090054 goto out_put;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Tejun Heo3007e992007-06-14 04:27:23 +090056 error = -ENOMEM;
57 sd = sysfs_new_dirent(name, S_IFLNK|S_IRWXUGO, SYSFS_KOBJ_LINK);
58 if (!sd)
59 goto out_put;
Tejun Heoa1da4df2007-07-18 16:14:45 +090060
Eric W. Biederman3ff195b2010-03-30 11:31:26 -070061 if (sysfs_ns_type(parent_sd))
62 sd->s_ns = target->ktype->namespace(target);
Tejun Heob1fc3d62007-09-20 16:05:11 +090063 sd->s_symlink.target_sd = target_sd;
Tejun Heoa1da4df2007-07-18 16:14:45 +090064 target_sd = NULL; /* reference is now owned by the symlink */
Tejun Heo2b29ac22007-06-14 03:45:15 +090065
Tejun Heofb6896d2007-06-14 04:27:24 +090066 sysfs_addrm_start(&acxt, parent_sd);
Cornelia Huck36ce6da2008-06-10 11:09:08 +020067 if (warn)
68 error = sysfs_add_one(&acxt, sd);
69 else
70 error = __sysfs_add_one(&acxt, sd);
Tejun Heo23dc2792007-08-02 21:38:03 +090071 sysfs_addrm_finish(&acxt);
Tejun Heofb6896d2007-06-14 04:27:24 +090072
Tejun Heo23dc2792007-08-02 21:38:03 +090073 if (error)
Tejun Heo967e35d2007-07-18 16:38:11 +090074 goto out_put;
Tejun Heofb6896d2007-06-14 04:27:24 +090075
Tejun Heo967e35d2007-07-18 16:38:11 +090076 return 0;
77
Tejun Heo3007e992007-06-14 04:27:23 +090078 out_put:
79 sysfs_put(target_sd);
80 sysfs_put(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 return error;
82}
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/**
Cornelia Huck36ce6da2008-06-10 11:09:08 +020085 * 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 */
90int 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 */
105int 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/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * 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
Dmitry Torokhove3a15db2005-04-26 02:31:08 -0500117void sysfs_remove_link(struct kobject * kobj, const char * name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118{
Mark Fasheha839c5a2008-01-29 14:35:18 -0800119 struct sysfs_dirent *parent_sd = NULL;
120
121 if (!kobj)
122 parent_sd = &sysfs_root;
123 else
124 parent_sd = kobj->sd;
125
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700126 sysfs_hash_and_remove(parent_sd, NULL, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800129/**
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 */
138int 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;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700142 const void *old_ns = NULL, *new_ns = NULL;
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800143 int result;
144
145 if (!kobj)
146 parent_sd = &sysfs_root;
147 else
148 parent_sd = kobj->sd;
149
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700150 if (targ->sd)
151 old_ns = targ->sd->s_ns;
152
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800153 result = -ENOENT;
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700154 sd = sysfs_get_dirent(parent_sd, old_ns, old);
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800155 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
Eric W. Biederman3ff195b2010-03-30 11:31:26 -0700164 if (sysfs_ns_type(parent_sd))
165 new_ns = targ->ktype->namespace(targ);
166
167 result = sysfs_rename(sd, parent_sd, new_ns, new);
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800168
169out:
170 sysfs_put(sd);
171 return result;
172}
173
Kay Sievers2f90a852007-11-01 20:20:52 +0100174static int sysfs_get_target_path(struct sysfs_dirent *parent_sd,
175 struct sysfs_dirent *target_sd, char *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176{
Kay Sievers2f90a852007-11-01 20:20:52 +0100177 struct sysfs_dirent *base, *sd;
178 char *s = path;
179 int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Kay Sievers2f90a852007-11-01 20:20:52 +0100181 /* 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)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 return -ENAMETOOLONG;
209
Kay Sievers2f90a852007-11-01 20:20:52 +0100210 /* 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);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Kay Sievers2f90a852007-11-01 20:20:52 +0100215 len -= slen;
216 strncpy(s + len, sd->s_name, slen);
217 if (len)
218 s[--len] = '/';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Kay Sievers2f90a852007-11-01 20:20:52 +0100220 sd = sd->s_parent;
221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
223 return 0;
224}
225
226static int sysfs_getlink(struct dentry *dentry, char * path)
227{
Tejun Heo2b29ac22007-06-14 03:45:15 +0900228 struct sysfs_dirent *sd = dentry->d_fsdata;
229 struct sysfs_dirent *parent_sd = sd->s_parent;
Tejun Heob1fc3d62007-09-20 16:05:11 +0900230 struct sysfs_dirent *target_sd = sd->s_symlink.target_sd;
Tejun Heo2b29ac22007-06-14 03:45:15 +0900231 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Tejun Heo3007e992007-06-14 04:27:23 +0900233 mutex_lock(&sysfs_mutex);
Tejun Heo2b29ac22007-06-14 03:45:15 +0900234 error = sysfs_get_target_path(parent_sd, target_sd, path);
Tejun Heo3007e992007-06-14 04:27:23 +0900235 mutex_unlock(&sysfs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Tejun Heo2b29ac22007-06-14 03:45:15 +0900237 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
239
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700240static void *sysfs_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 int error = -ENOMEM;
243 unsigned long page = get_zeroed_page(GFP_KERNEL);
Armin Kuster557411e2009-04-29 07:29:59 -1000244 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 error = sysfs_getlink(dentry, (char *) page);
Armin Kuster557411e2009-04-29 07:29:59 -1000246 if (error < 0)
247 free_page((unsigned long)page);
248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 nd_set_link(nd, error ? ERR_PTR(error) : (char *)page);
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700250 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251}
252
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700253static void sysfs_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 char *page = nd_get_link(nd);
256 if (!IS_ERR(page))
257 free_page((unsigned long)page);
258}
259
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800260const struct inode_operations sysfs_symlink_inode_operations = {
Eric W. Biedermanc099aac2009-11-20 16:08:52 -0800261 .setxattr = sysfs_setxattr,
262 .readlink = generic_readlink,
263 .follow_link = sysfs_follow_link,
264 .put_link = sysfs_put_link,
Eric W. Biedermane61ab4a2009-11-20 16:08:53 -0800265 .setattr = sysfs_setattr,
266 .getattr = sysfs_getattr,
267 .permission = sysfs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268};
269
270
271EXPORT_SYMBOL_GPL(sysfs_create_link);
272EXPORT_SYMBOL_GPL(sysfs_remove_link);
Simon Arlotte0f43752010-05-10 09:31:11 +0000273EXPORT_SYMBOL_GPL(sysfs_rename_link);