Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Tejun Heo | 6d66f5c | 2007-09-20 17:31:38 +0900 | [diff] [blame] | 2 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <linux/fs.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/gfp.h> |
Greg Kroah-Hartman | ceeee1f | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 15 | #include <linux/mount.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/module.h> |
| 17 | #include <linux/kobject.h> |
| 18 | #include <linux/namei.h> |
Dave Young | 869512a | 2007-07-26 14:53:53 +0000 | [diff] [blame] | 19 | #include <linux/mutex.h> |
David P. Quigley | ddd29ec | 2009-09-09 14:25:37 -0400 | [diff] [blame] | 20 | #include <linux/security.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
| 22 | #include "sysfs.h" |
| 23 | |
Cornelia Huck | 36ce6da | 2008-06-10 11:09:08 +0200 | [diff] [blame] | 24 | static int sysfs_do_create_link(struct kobject *kobj, struct kobject *target, |
| 25 | const char *name, int warn) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | { |
Tejun Heo | 2b29ac2 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 27 | struct sysfs_dirent *parent_sd = NULL; |
| 28 | struct sysfs_dirent *target_sd = NULL; |
Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 29 | struct sysfs_dirent *sd = NULL; |
Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 30 | struct sysfs_addrm_cxt acxt; |
Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 31 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | |
Greg Kroah-Hartman | ceeee1f | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 33 | BUG_ON(!name); |
| 34 | |
Eric W. Biederman | 7d0c7d6 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 35 | if (!kobj) |
| 36 | parent_sd = &sysfs_root; |
| 37 | else |
Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 38 | parent_sd = kobj->sd; |
Greg Kroah-Hartman | ceeee1f | 2002-04-09 12:14:34 -0700 | [diff] [blame] | 39 | |
Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 40 | error = -EFAULT; |
Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 41 | if (!parent_sd) |
Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 42 | goto out_put; |
Tejun Heo | 2b29ac2 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 43 | |
Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 44 | /* target->sd can go away beneath us but is protected with |
Tejun Heo | 5f99532 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 45 | * sysfs_assoc_lock. Fetch target_sd from it. |
Tejun Heo | 2b29ac2 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 46 | */ |
Tejun Heo | 5f99532 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 47 | spin_lock(&sysfs_assoc_lock); |
Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 48 | if (target->sd) |
| 49 | target_sd = sysfs_get(target->sd); |
Tejun Heo | 5f99532 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 50 | spin_unlock(&sysfs_assoc_lock); |
Tejun Heo | 2b29ac2 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 51 | |
Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 52 | error = -ENOENT; |
Tejun Heo | 2b29ac2 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 53 | if (!target_sd) |
Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 54 | goto out_put; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 56 | error = -ENOMEM; |
| 57 | sd = sysfs_new_dirent(name, S_IFLNK|S_IRWXUGO, SYSFS_KOBJ_LINK); |
| 58 | if (!sd) |
| 59 | goto out_put; |
Tejun Heo | a1da4df | 2007-07-18 16:14:45 +0900 | [diff] [blame] | 60 | |
Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 61 | if (sysfs_ns_type(parent_sd)) |
| 62 | sd->s_ns = target->ktype->namespace(target); |
Tejun Heo | b1fc3d6 | 2007-09-20 16:05:11 +0900 | [diff] [blame] | 63 | sd->s_symlink.target_sd = target_sd; |
Tejun Heo | a1da4df | 2007-07-18 16:14:45 +0900 | [diff] [blame] | 64 | target_sd = NULL; /* reference is now owned by the symlink */ |
Tejun Heo | 2b29ac2 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 65 | |
Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 66 | sysfs_addrm_start(&acxt, parent_sd); |
Cornelia Huck | 36ce6da | 2008-06-10 11:09:08 +0200 | [diff] [blame] | 67 | if (warn) |
| 68 | error = sysfs_add_one(&acxt, sd); |
| 69 | else |
| 70 | error = __sysfs_add_one(&acxt, sd); |
Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 71 | sysfs_addrm_finish(&acxt); |
Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 72 | |
Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 73 | if (error) |
Tejun Heo | 967e35d | 2007-07-18 16:38:11 +0900 | [diff] [blame] | 74 | goto out_put; |
Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 75 | |
Tejun Heo | 967e35d | 2007-07-18 16:38:11 +0900 | [diff] [blame] | 76 | return 0; |
| 77 | |
Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 78 | out_put: |
| 79 | sysfs_put(target_sd); |
| 80 | sysfs_put(sd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | return error; |
| 82 | } |
| 83 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | /** |
Cornelia Huck | 36ce6da | 2008-06-10 11:09:08 +0200 | [diff] [blame] | 85 | * 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 | */ |
| 90 | int 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 | */ |
| 105 | int 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 | /** |
Eric W. Biederman | 746edb7 | 2010-03-30 11:31:28 -0700 | [diff] [blame] | 112 | * sysfs_delete_link - remove symlink in object's directory. |
| 113 | * @kobj: object we're acting for. |
| 114 | * @targ: object we're pointing to. |
| 115 | * @name: name of the symlink to remove. |
| 116 | * |
| 117 | * Unlike sysfs_remove_link sysfs_delete_link has enough information |
| 118 | * to successfully delete symlinks in tagged directories. |
| 119 | */ |
| 120 | void sysfs_delete_link(struct kobject *kobj, struct kobject *targ, |
| 121 | const char *name) |
| 122 | { |
| 123 | const void *ns = NULL; |
| 124 | spin_lock(&sysfs_assoc_lock); |
| 125 | if (targ->sd) |
| 126 | ns = targ->sd->s_ns; |
| 127 | spin_unlock(&sysfs_assoc_lock); |
| 128 | sysfs_hash_and_remove(kobj->sd, ns, name); |
| 129 | } |
| 130 | |
| 131 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | * sysfs_remove_link - remove symlink in object's directory. |
| 133 | * @kobj: object we're acting for. |
| 134 | * @name: name of the symlink to remove. |
| 135 | */ |
| 136 | |
Dmitry Torokhov | e3a15db | 2005-04-26 02:31:08 -0500 | [diff] [blame] | 137 | void sysfs_remove_link(struct kobject * kobj, const char * name) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | { |
Mark Fasheh | a839c5a | 2008-01-29 14:35:18 -0800 | [diff] [blame] | 139 | struct sysfs_dirent *parent_sd = NULL; |
| 140 | |
| 141 | if (!kobj) |
| 142 | parent_sd = &sysfs_root; |
| 143 | else |
| 144 | parent_sd = kobj->sd; |
| 145 | |
Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 146 | sysfs_hash_and_remove(parent_sd, NULL, name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | } |
| 148 | |
Eric W. Biederman | 7cb3294 | 2010-02-12 19:22:25 -0800 | [diff] [blame] | 149 | /** |
| 150 | * sysfs_rename_link - rename symlink in object's directory. |
| 151 | * @kobj: object we're acting for. |
| 152 | * @targ: object we're pointing to. |
| 153 | * @old: previous name of the symlink. |
| 154 | * @new: new name of the symlink. |
| 155 | * |
| 156 | * A helper function for the common rename symlink idiom. |
| 157 | */ |
| 158 | int sysfs_rename_link(struct kobject *kobj, struct kobject *targ, |
| 159 | const char *old, const char *new) |
| 160 | { |
| 161 | struct sysfs_dirent *parent_sd, *sd = NULL; |
Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 162 | const void *old_ns = NULL, *new_ns = NULL; |
Eric W. Biederman | 7cb3294 | 2010-02-12 19:22:25 -0800 | [diff] [blame] | 163 | int result; |
| 164 | |
| 165 | if (!kobj) |
| 166 | parent_sd = &sysfs_root; |
| 167 | else |
| 168 | parent_sd = kobj->sd; |
| 169 | |
Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 170 | if (targ->sd) |
| 171 | old_ns = targ->sd->s_ns; |
| 172 | |
Eric W. Biederman | 7cb3294 | 2010-02-12 19:22:25 -0800 | [diff] [blame] | 173 | result = -ENOENT; |
Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 174 | sd = sysfs_get_dirent(parent_sd, old_ns, old); |
Eric W. Biederman | 7cb3294 | 2010-02-12 19:22:25 -0800 | [diff] [blame] | 175 | if (!sd) |
| 176 | goto out; |
| 177 | |
| 178 | result = -EINVAL; |
| 179 | if (sysfs_type(sd) != SYSFS_KOBJ_LINK) |
| 180 | goto out; |
| 181 | if (sd->s_symlink.target_sd->s_dir.kobj != targ) |
| 182 | goto out; |
| 183 | |
Eric W. Biederman | 3ff195b | 2010-03-30 11:31:26 -0700 | [diff] [blame] | 184 | if (sysfs_ns_type(parent_sd)) |
| 185 | new_ns = targ->ktype->namespace(targ); |
| 186 | |
| 187 | result = sysfs_rename(sd, parent_sd, new_ns, new); |
Eric W. Biederman | 7cb3294 | 2010-02-12 19:22:25 -0800 | [diff] [blame] | 188 | |
| 189 | out: |
| 190 | sysfs_put(sd); |
| 191 | return result; |
| 192 | } |
| 193 | |
Kay Sievers | 2f90a85 | 2007-11-01 20:20:52 +0100 | [diff] [blame] | 194 | static int sysfs_get_target_path(struct sysfs_dirent *parent_sd, |
| 195 | struct sysfs_dirent *target_sd, char *path) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | { |
Kay Sievers | 2f90a85 | 2007-11-01 20:20:52 +0100 | [diff] [blame] | 197 | struct sysfs_dirent *base, *sd; |
| 198 | char *s = path; |
| 199 | int len = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
Kay Sievers | 2f90a85 | 2007-11-01 20:20:52 +0100 | [diff] [blame] | 201 | /* go up to the root, stop at the base */ |
| 202 | base = parent_sd; |
| 203 | while (base->s_parent) { |
| 204 | sd = target_sd->s_parent; |
| 205 | while (sd->s_parent && base != sd) |
| 206 | sd = sd->s_parent; |
| 207 | |
| 208 | if (base == sd) |
| 209 | break; |
| 210 | |
| 211 | strcpy(s, "../"); |
| 212 | s += 3; |
| 213 | base = base->s_parent; |
| 214 | } |
| 215 | |
| 216 | /* determine end of target string for reverse fillup */ |
| 217 | sd = target_sd; |
| 218 | while (sd->s_parent && sd != base) { |
| 219 | len += strlen(sd->s_name) + 1; |
| 220 | sd = sd->s_parent; |
| 221 | } |
| 222 | |
| 223 | /* check limits */ |
| 224 | if (len < 2) |
| 225 | return -EINVAL; |
| 226 | len--; |
| 227 | if ((s - path) + len > PATH_MAX) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | return -ENAMETOOLONG; |
| 229 | |
Kay Sievers | 2f90a85 | 2007-11-01 20:20:52 +0100 | [diff] [blame] | 230 | /* reverse fillup of target string from target to base */ |
| 231 | sd = target_sd; |
| 232 | while (sd->s_parent && sd != base) { |
| 233 | int slen = strlen(sd->s_name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | |
Kay Sievers | 2f90a85 | 2007-11-01 20:20:52 +0100 | [diff] [blame] | 235 | len -= slen; |
| 236 | strncpy(s + len, sd->s_name, slen); |
| 237 | if (len) |
| 238 | s[--len] = '/'; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | |
Kay Sievers | 2f90a85 | 2007-11-01 20:20:52 +0100 | [diff] [blame] | 240 | sd = sd->s_parent; |
| 241 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | |
| 243 | return 0; |
| 244 | } |
| 245 | |
| 246 | static int sysfs_getlink(struct dentry *dentry, char * path) |
| 247 | { |
Tejun Heo | 2b29ac2 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 248 | struct sysfs_dirent *sd = dentry->d_fsdata; |
| 249 | struct sysfs_dirent *parent_sd = sd->s_parent; |
Tejun Heo | b1fc3d6 | 2007-09-20 16:05:11 +0900 | [diff] [blame] | 250 | struct sysfs_dirent *target_sd = sd->s_symlink.target_sd; |
Tejun Heo | 2b29ac2 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 251 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 252 | |
Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 253 | mutex_lock(&sysfs_mutex); |
Tejun Heo | 2b29ac2 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 254 | error = sysfs_get_target_path(parent_sd, target_sd, path); |
Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 255 | mutex_unlock(&sysfs_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 256 | |
Tejun Heo | 2b29ac2 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 257 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 258 | } |
| 259 | |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 260 | static void *sysfs_follow_link(struct dentry *dentry, struct nameidata *nd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | { |
| 262 | int error = -ENOMEM; |
| 263 | unsigned long page = get_zeroed_page(GFP_KERNEL); |
Armin Kuster | 557411e | 2009-04-29 07:29:59 -1000 | [diff] [blame] | 264 | if (page) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | error = sysfs_getlink(dentry, (char *) page); |
Armin Kuster | 557411e | 2009-04-29 07:29:59 -1000 | [diff] [blame] | 266 | if (error < 0) |
| 267 | free_page((unsigned long)page); |
| 268 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | nd_set_link(nd, error ? ERR_PTR(error) : (char *)page); |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 270 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | } |
| 272 | |
Linus Torvalds | cc314ee | 2005-08-19 18:02:56 -0700 | [diff] [blame] | 273 | static void sysfs_put_link(struct dentry *dentry, struct nameidata *nd, void *cookie) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | { |
| 275 | char *page = nd_get_link(nd); |
| 276 | if (!IS_ERR(page)) |
| 277 | free_page((unsigned long)page); |
| 278 | } |
| 279 | |
Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 280 | const struct inode_operations sysfs_symlink_inode_operations = { |
Eric W. Biederman | c099aac | 2009-11-20 16:08:52 -0800 | [diff] [blame] | 281 | .setxattr = sysfs_setxattr, |
| 282 | .readlink = generic_readlink, |
| 283 | .follow_link = sysfs_follow_link, |
| 284 | .put_link = sysfs_put_link, |
Eric W. Biederman | e61ab4a | 2009-11-20 16:08:53 -0800 | [diff] [blame] | 285 | .setattr = sysfs_setattr, |
| 286 | .getattr = sysfs_getattr, |
| 287 | .permission = sysfs_permission, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | }; |
| 289 | |
| 290 | |
| 291 | EXPORT_SYMBOL_GPL(sysfs_create_link); |
| 292 | EXPORT_SYMBOL_GPL(sysfs_remove_link); |
Simon Arlott | e0f4375 | 2010-05-10 09:31:11 +0000 | [diff] [blame] | 293 | EXPORT_SYMBOL_GPL(sysfs_rename_link); |