blob: 942f239a2132c8b12d47c1258bb02cfbd17a2726 [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
Tejun Heob1fc3d62007-09-20 16:05:11 +090061 sd->s_symlink.target_sd = target_sd;
Tejun Heoa1da4df2007-07-18 16:14:45 +090062 target_sd = NULL; /* reference is now owned by the symlink */
Tejun Heo2b29ac22007-06-14 03:45:15 +090063
Tejun Heofb6896d2007-06-14 04:27:24 +090064 sysfs_addrm_start(&acxt, parent_sd);
Cornelia Huck36ce6da2008-06-10 11:09:08 +020065 if (warn)
66 error = sysfs_add_one(&acxt, sd);
67 else
68 error = __sysfs_add_one(&acxt, sd);
Tejun Heo23dc2792007-08-02 21:38:03 +090069 sysfs_addrm_finish(&acxt);
Tejun Heofb6896d2007-06-14 04:27:24 +090070
Tejun Heo23dc2792007-08-02 21:38:03 +090071 if (error)
Tejun Heo967e35d2007-07-18 16:38:11 +090072 goto out_put;
Tejun Heofb6896d2007-06-14 04:27:24 +090073
Tejun Heo967e35d2007-07-18 16:38:11 +090074 return 0;
75
Tejun Heo3007e992007-06-14 04:27:23 +090076 out_put:
77 sysfs_put(target_sd);
78 sysfs_put(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return error;
80}
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/**
Cornelia Huck36ce6da2008-06-10 11:09:08 +020083 * sysfs_create_link - create symlink between two objects.
84 * @kobj: object whose directory we're creating the link in.
85 * @target: object we're pointing to.
86 * @name: name of the symlink.
87 */
88int sysfs_create_link(struct kobject *kobj, struct kobject *target,
89 const char *name)
90{
91 return sysfs_do_create_link(kobj, target, name, 1);
92}
93
94/**
95 * sysfs_create_link_nowarn - create symlink between two objects.
96 * @kobj: object whose directory we're creating the link in.
97 * @target: object we're pointing to.
98 * @name: name of the symlink.
99 *
100 * This function does the same as sysf_create_link(), but it
101 * doesn't warn if the link already exists.
102 */
103int sysfs_create_link_nowarn(struct kobject *kobj, struct kobject *target,
104 const char *name)
105{
106 return sysfs_do_create_link(kobj, target, name, 0);
107}
108
109/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 * sysfs_remove_link - remove symlink in object's directory.
111 * @kobj: object we're acting for.
112 * @name: name of the symlink to remove.
113 */
114
Dmitry Torokhove3a15db2005-04-26 02:31:08 -0500115void sysfs_remove_link(struct kobject * kobj, const char * name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Mark Fasheha839c5a2008-01-29 14:35:18 -0800117 struct sysfs_dirent *parent_sd = NULL;
118
119 if (!kobj)
120 parent_sd = &sysfs_root;
121 else
122 parent_sd = kobj->sd;
123
124 sysfs_hash_and_remove(parent_sd, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
Eric W. Biederman7cb32942010-02-12 19:22:25 -0800127/**
128 * sysfs_rename_link - rename symlink in object's directory.
129 * @kobj: object we're acting for.
130 * @targ: object we're pointing to.
131 * @old: previous name of the symlink.
132 * @new: new name of the symlink.
133 *
134 * A helper function for the common rename symlink idiom.
135 */
136int sysfs_rename_link(struct kobject *kobj, struct kobject *targ,
137 const char *old, const char *new)
138{
139 struct sysfs_dirent *parent_sd, *sd = NULL;
140 int result;
141
142 if (!kobj)
143 parent_sd = &sysfs_root;
144 else
145 parent_sd = kobj->sd;
146
147 result = -ENOENT;
148 sd = sysfs_get_dirent(parent_sd, old);
149 if (!sd)
150 goto out;
151
152 result = -EINVAL;
153 if (sysfs_type(sd) != SYSFS_KOBJ_LINK)
154 goto out;
155 if (sd->s_symlink.target_sd->s_dir.kobj != targ)
156 goto out;
157
158 result = sysfs_rename(sd, parent_sd, new);
159
160out:
161 sysfs_put(sd);
162 return result;
163}
164
Kay Sievers2f90a852007-11-01 20:20:52 +0100165static int sysfs_get_target_path(struct sysfs_dirent *parent_sd,
166 struct sysfs_dirent *target_sd, char *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
Kay Sievers2f90a852007-11-01 20:20:52 +0100168 struct sysfs_dirent *base, *sd;
169 char *s = path;
170 int len = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Kay Sievers2f90a852007-11-01 20:20:52 +0100172 /* go up to the root, stop at the base */
173 base = parent_sd;
174 while (base->s_parent) {
175 sd = target_sd->s_parent;
176 while (sd->s_parent && base != sd)
177 sd = sd->s_parent;
178
179 if (base == sd)
180 break;
181
182 strcpy(s, "../");
183 s += 3;
184 base = base->s_parent;
185 }
186
187 /* determine end of target string for reverse fillup */
188 sd = target_sd;
189 while (sd->s_parent && sd != base) {
190 len += strlen(sd->s_name) + 1;
191 sd = sd->s_parent;
192 }
193
194 /* check limits */
195 if (len < 2)
196 return -EINVAL;
197 len--;
198 if ((s - path) + len > PATH_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 return -ENAMETOOLONG;
200
Kay Sievers2f90a852007-11-01 20:20:52 +0100201 /* reverse fillup of target string from target to base */
202 sd = target_sd;
203 while (sd->s_parent && sd != base) {
204 int slen = strlen(sd->s_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Kay Sievers2f90a852007-11-01 20:20:52 +0100206 len -= slen;
207 strncpy(s + len, sd->s_name, slen);
208 if (len)
209 s[--len] = '/';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Kay Sievers2f90a852007-11-01 20:20:52 +0100211 sd = sd->s_parent;
212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 return 0;
215}
216
217static int sysfs_getlink(struct dentry *dentry, char * path)
218{
Tejun Heo2b29ac22007-06-14 03:45:15 +0900219 struct sysfs_dirent *sd = dentry->d_fsdata;
220 struct sysfs_dirent *parent_sd = sd->s_parent;
Tejun Heob1fc3d62007-09-20 16:05:11 +0900221 struct sysfs_dirent *target_sd = sd->s_symlink.target_sd;
Tejun Heo2b29ac22007-06-14 03:45:15 +0900222 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Tejun Heo3007e992007-06-14 04:27:23 +0900224 mutex_lock(&sysfs_mutex);
Tejun Heo2b29ac22007-06-14 03:45:15 +0900225 error = sysfs_get_target_path(parent_sd, target_sd, path);
Tejun Heo3007e992007-06-14 04:27:23 +0900226 mutex_unlock(&sysfs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Tejun Heo2b29ac22007-06-14 03:45:15 +0900228 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229}
230
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700231static void *sysfs_follow_link(struct dentry *dentry, struct nameidata *nd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232{
233 int error = -ENOMEM;
234 unsigned long page = get_zeroed_page(GFP_KERNEL);
Armin Kuster557411e2009-04-29 07:29:59 -1000235 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 error = sysfs_getlink(dentry, (char *) page);
Armin Kuster557411e2009-04-29 07:29:59 -1000237 if (error < 0)
238 free_page((unsigned long)page);
239 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 nd_set_link(nd, error ? ERR_PTR(error) : (char *)page);
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700241 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242}
243
Linus Torvaldscc314ee2005-08-19 18:02:56 -0700244static void sysfs_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245{
246 char *page = nd_get_link(nd);
247 if (!IS_ERR(page))
248 free_page((unsigned long)page);
249}
250
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800251const struct inode_operations sysfs_symlink_inode_operations = {
Eric W. Biedermanc099aac2009-11-20 16:08:52 -0800252 .setxattr = sysfs_setxattr,
253 .readlink = generic_readlink,
254 .follow_link = sysfs_follow_link,
255 .put_link = sysfs_put_link,
Eric W. Biedermane61ab4a2009-11-20 16:08:53 -0800256 .setattr = sysfs_setattr,
257 .getattr = sysfs_getattr,
258 .permission = sysfs_permission,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259};
260
261
262EXPORT_SYMBOL_GPL(sysfs_create_link);
263EXPORT_SYMBOL_GPL(sysfs_remove_link);
Simon Arlotte0f43752010-05-10 09:31:11 +0000264EXPORT_SYMBOL_GPL(sysfs_rename_link);