| 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/dir.c - sysfs core and dir operation 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 | #undef DEBUG | 
|  | 14 |  | 
|  | 15 | #include <linux/fs.h> | 
|  | 16 | #include <linux/mount.h> | 
|  | 17 | #include <linux/module.h> | 
|  | 18 | #include <linux/kobject.h> | 
| Christoph Hellwig | 5f45f1a | 2005-06-23 00:09:12 -0700 | [diff] [blame] | 19 | #include <linux/namei.h> | 
| Tejun Heo | 2b611bb | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 20 | #include <linux/idr.h> | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 21 | #include <linux/completion.h> | 
| Dave Young | 869512a | 2007-07-26 14:53:53 +0000 | [diff] [blame] | 22 | #include <linux/mutex.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | #include "sysfs.h" | 
|  | 24 |  | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 25 | DEFINE_MUTEX(sysfs_mutex); | 
| Eric W. Biederman | 932ea2e | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 26 | DEFINE_MUTEX(sysfs_rename_mutex); | 
| Roel Kluin | f7a75f0 | 2007-10-16 23:30:25 -0700 | [diff] [blame] | 27 | DEFINE_SPINLOCK(sysfs_assoc_lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 |  | 
| Roel Kluin | f7a75f0 | 2007-10-16 23:30:25 -0700 | [diff] [blame] | 29 | static DEFINE_SPINLOCK(sysfs_ino_lock); | 
| Tejun Heo | 2b611bb | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 30 | static DEFINE_IDA(sysfs_ino_ida); | 
|  | 31 |  | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 32 | /** | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 33 | *	sysfs_link_sibling - link sysfs_dirent into sibling list | 
|  | 34 | *	@sd: sysfs_dirent of interest | 
|  | 35 | * | 
|  | 36 | *	Link @sd into its sibling list which starts from | 
| Tejun Heo | bc747f3 | 2007-09-20 16:05:12 +0900 | [diff] [blame] | 37 | *	sd->s_parent->s_dir.children. | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 38 | * | 
|  | 39 | *	Locking: | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 40 | *	mutex_lock(sysfs_mutex) | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 41 | */ | 
| Tejun Heo | 41fc1c2 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 42 | static void sysfs_link_sibling(struct sysfs_dirent *sd) | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 43 | { | 
|  | 44 | struct sysfs_dirent *parent_sd = sd->s_parent; | 
| Eric W. Biederman | 3efa65b | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 45 | struct sysfs_dirent **pos; | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 46 |  | 
|  | 47 | BUG_ON(sd->s_sibling); | 
| Eric W. Biederman | 3efa65b | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 48 |  | 
|  | 49 | /* Store directory entries in order by ino.  This allows | 
|  | 50 | * readdir to properly restart without having to add a | 
| Tejun Heo | bc747f3 | 2007-09-20 16:05:12 +0900 | [diff] [blame] | 51 | * cursor into the s_dir.children list. | 
| Eric W. Biederman | 3efa65b | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 52 | */ | 
| Tejun Heo | bc747f3 | 2007-09-20 16:05:12 +0900 | [diff] [blame] | 53 | for (pos = &parent_sd->s_dir.children; *pos; pos = &(*pos)->s_sibling) { | 
| Eric W. Biederman | 3efa65b | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 54 | if (sd->s_ino < (*pos)->s_ino) | 
|  | 55 | break; | 
|  | 56 | } | 
|  | 57 | sd->s_sibling = *pos; | 
|  | 58 | *pos = sd; | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 59 | } | 
|  | 60 |  | 
|  | 61 | /** | 
|  | 62 | *	sysfs_unlink_sibling - unlink sysfs_dirent from sibling list | 
|  | 63 | *	@sd: sysfs_dirent of interest | 
|  | 64 | * | 
|  | 65 | *	Unlink @sd from its sibling list which starts from | 
| Tejun Heo | bc747f3 | 2007-09-20 16:05:12 +0900 | [diff] [blame] | 66 | *	sd->s_parent->s_dir.children. | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 67 | * | 
|  | 68 | *	Locking: | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 69 | *	mutex_lock(sysfs_mutex) | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 70 | */ | 
| Tejun Heo | 41fc1c2 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 71 | static void sysfs_unlink_sibling(struct sysfs_dirent *sd) | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 72 | { | 
|  | 73 | struct sysfs_dirent **pos; | 
|  | 74 |  | 
| Tejun Heo | bc747f3 | 2007-09-20 16:05:12 +0900 | [diff] [blame] | 75 | for (pos = &sd->s_parent->s_dir.children; *pos; | 
|  | 76 | pos = &(*pos)->s_sibling) { | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 77 | if (*pos == sd) { | 
|  | 78 | *pos = sd->s_sibling; | 
|  | 79 | sd->s_sibling = NULL; | 
|  | 80 | break; | 
|  | 81 | } | 
|  | 82 | } | 
|  | 83 | } | 
|  | 84 |  | 
|  | 85 | /** | 
| Tejun Heo | 53e0ae9 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 86 | *	sysfs_get_dentry - get dentry for the given sysfs_dirent | 
|  | 87 | *	@sd: sysfs_dirent of interest | 
|  | 88 | * | 
|  | 89 | *	Get dentry for @sd.  Dentry is looked up if currently not | 
| Tejun Heo | e0712bb | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 90 | *	present.  This function descends from the root looking up | 
|  | 91 | *	dentry for each step. | 
| Tejun Heo | 53e0ae9 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 92 | * | 
|  | 93 | *	LOCKING: | 
| Eric W. Biederman | 932ea2e | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 94 | *	mutex_lock(sysfs_rename_mutex) | 
| Tejun Heo | 53e0ae9 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 95 | * | 
|  | 96 | *	RETURNS: | 
|  | 97 | *	Pointer to found dentry on success, ERR_PTR() value on error. | 
|  | 98 | */ | 
|  | 99 | struct dentry *sysfs_get_dentry(struct sysfs_dirent *sd) | 
|  | 100 | { | 
| Tejun Heo | e0712bb | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 101 | struct dentry *dentry = dget(sysfs_sb->s_root); | 
| Tejun Heo | 53e0ae9 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 102 |  | 
| Tejun Heo | e0712bb | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 103 | while (dentry->d_fsdata != sd) { | 
|  | 104 | struct sysfs_dirent *cur; | 
|  | 105 | struct dentry *parent; | 
| Tejun Heo | 53e0ae9 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 106 |  | 
| Tejun Heo | e0712bb | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 107 | /* find the first ancestor which hasn't been looked up */ | 
|  | 108 | cur = sd; | 
|  | 109 | while (cur->s_parent != dentry->d_fsdata) | 
| Tejun Heo | 53e0ae9 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 110 | cur = cur->s_parent; | 
|  | 111 |  | 
| Tejun Heo | 53e0ae9 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 112 | /* look it up */ | 
| Tejun Heo | e0712bb | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 113 | parent = dentry; | 
|  | 114 | mutex_lock(&parent->d_inode->i_mutex); | 
| Christoph Hellwig | eead191 | 2007-10-16 23:25:38 -0700 | [diff] [blame] | 115 | dentry = lookup_one_noperm(cur->s_name, parent); | 
| Tejun Heo | e0712bb | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 116 | mutex_unlock(&parent->d_inode->i_mutex); | 
|  | 117 | dput(parent); | 
| Tejun Heo | 53e0ae9 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 118 |  | 
| Tejun Heo | e0712bb | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 119 | if (IS_ERR(dentry)) | 
|  | 120 | break; | 
| Tejun Heo | 53e0ae9 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 121 | } | 
| Tejun Heo | 53e0ae9 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 122 | return dentry; | 
|  | 123 | } | 
|  | 124 |  | 
|  | 125 | /** | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 126 | *	sysfs_get_active - get an active reference to sysfs_dirent | 
|  | 127 | *	@sd: sysfs_dirent to get an active reference to | 
|  | 128 | * | 
|  | 129 | *	Get an active reference of @sd.  This function is noop if @sd | 
|  | 130 | *	is NULL. | 
|  | 131 | * | 
|  | 132 | *	RETURNS: | 
|  | 133 | *	Pointer to @sd on success, NULL on failure. | 
|  | 134 | */ | 
| Adrian Bunk | 78e9d36 | 2007-10-24 18:23:32 +0200 | [diff] [blame] | 135 | static struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd) | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 136 | { | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 137 | if (unlikely(!sd)) | 
|  | 138 | return NULL; | 
|  | 139 |  | 
|  | 140 | while (1) { | 
|  | 141 | int v, t; | 
|  | 142 |  | 
|  | 143 | v = atomic_read(&sd->s_active); | 
|  | 144 | if (unlikely(v < 0)) | 
|  | 145 | return NULL; | 
|  | 146 |  | 
|  | 147 | t = atomic_cmpxchg(&sd->s_active, v, v + 1); | 
|  | 148 | if (likely(t == v)) | 
|  | 149 | return sd; | 
|  | 150 | if (t < 0) | 
|  | 151 | return NULL; | 
|  | 152 |  | 
|  | 153 | cpu_relax(); | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 154 | } | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 155 | } | 
|  | 156 |  | 
|  | 157 | /** | 
|  | 158 | *	sysfs_put_active - put an active reference to sysfs_dirent | 
|  | 159 | *	@sd: sysfs_dirent to put an active reference to | 
|  | 160 | * | 
|  | 161 | *	Put an active reference to @sd.  This function is noop if @sd | 
|  | 162 | *	is NULL. | 
|  | 163 | */ | 
| Adrian Bunk | 78e9d36 | 2007-10-24 18:23:32 +0200 | [diff] [blame] | 164 | static void sysfs_put_active(struct sysfs_dirent *sd) | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 165 | { | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 166 | struct completion *cmpl; | 
|  | 167 | int v; | 
|  | 168 |  | 
|  | 169 | if (unlikely(!sd)) | 
|  | 170 | return; | 
|  | 171 |  | 
|  | 172 | v = atomic_dec_return(&sd->s_active); | 
|  | 173 | if (likely(v != SD_DEACTIVATED_BIAS)) | 
|  | 174 | return; | 
|  | 175 |  | 
|  | 176 | /* atomic_dec_return() is a mb(), we'll always see the updated | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 177 | * sd->s_sibling. | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 178 | */ | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 179 | cmpl = (void *)sd->s_sibling; | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 180 | complete(cmpl); | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 181 | } | 
|  | 182 |  | 
|  | 183 | /** | 
|  | 184 | *	sysfs_get_active_two - get active references to sysfs_dirent and parent | 
|  | 185 | *	@sd: sysfs_dirent of interest | 
|  | 186 | * | 
|  | 187 | *	Get active reference to @sd and its parent.  Parent's active | 
|  | 188 | *	reference is grabbed first.  This function is noop if @sd is | 
|  | 189 | *	NULL. | 
|  | 190 | * | 
|  | 191 | *	RETURNS: | 
|  | 192 | *	Pointer to @sd on success, NULL on failure. | 
|  | 193 | */ | 
|  | 194 | struct sysfs_dirent *sysfs_get_active_two(struct sysfs_dirent *sd) | 
|  | 195 | { | 
|  | 196 | if (sd) { | 
|  | 197 | if (sd->s_parent && unlikely(!sysfs_get_active(sd->s_parent))) | 
|  | 198 | return NULL; | 
|  | 199 | if (unlikely(!sysfs_get_active(sd))) { | 
|  | 200 | sysfs_put_active(sd->s_parent); | 
|  | 201 | return NULL; | 
|  | 202 | } | 
|  | 203 | } | 
|  | 204 | return sd; | 
|  | 205 | } | 
|  | 206 |  | 
|  | 207 | /** | 
|  | 208 | *	sysfs_put_active_two - put active references to sysfs_dirent and parent | 
|  | 209 | *	@sd: sysfs_dirent of interest | 
|  | 210 | * | 
|  | 211 | *	Put active references to @sd and its parent.  This function is | 
|  | 212 | *	noop if @sd is NULL. | 
|  | 213 | */ | 
|  | 214 | void sysfs_put_active_two(struct sysfs_dirent *sd) | 
|  | 215 | { | 
|  | 216 | if (sd) { | 
|  | 217 | sysfs_put_active(sd); | 
|  | 218 | sysfs_put_active(sd->s_parent); | 
|  | 219 | } | 
|  | 220 | } | 
|  | 221 |  | 
|  | 222 | /** | 
|  | 223 | *	sysfs_deactivate - deactivate sysfs_dirent | 
|  | 224 | *	@sd: sysfs_dirent to deactivate | 
|  | 225 | * | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 226 | *	Deny new active references and drain existing ones. | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 227 | */ | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 228 | static void sysfs_deactivate(struct sysfs_dirent *sd) | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 229 | { | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 230 | DECLARE_COMPLETION_ONSTACK(wait); | 
|  | 231 | int v; | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 232 |  | 
| Tejun Heo | 380e6fb | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 233 | BUG_ON(sd->s_sibling || !(sd->s_flags & SYSFS_FLAG_REMOVED)); | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 234 | sd->s_sibling = (void *)&wait; | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 235 |  | 
|  | 236 | /* atomic_add_return() is a mb(), put_active() will always see | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 237 | * the updated sd->s_sibling. | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 238 | */ | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 239 | v = atomic_add_return(SD_DEACTIVATED_BIAS, &sd->s_active); | 
|  | 240 |  | 
|  | 241 | if (v != SD_DEACTIVATED_BIAS) | 
|  | 242 | wait_for_completion(&wait); | 
|  | 243 |  | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 244 | sd->s_sibling = NULL; | 
| Tejun Heo | b6b4a43 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 245 | } | 
|  | 246 |  | 
| Tejun Heo | 42b37df | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 247 | static int sysfs_alloc_ino(ino_t *pino) | 
| Tejun Heo | 2b611bb | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 248 | { | 
|  | 249 | int ino, rc; | 
|  | 250 |  | 
|  | 251 | retry: | 
|  | 252 | spin_lock(&sysfs_ino_lock); | 
|  | 253 | rc = ida_get_new_above(&sysfs_ino_ida, 2, &ino); | 
|  | 254 | spin_unlock(&sysfs_ino_lock); | 
|  | 255 |  | 
|  | 256 | if (rc == -EAGAIN) { | 
|  | 257 | if (ida_pre_get(&sysfs_ino_ida, GFP_KERNEL)) | 
|  | 258 | goto retry; | 
|  | 259 | rc = -ENOMEM; | 
|  | 260 | } | 
|  | 261 |  | 
|  | 262 | *pino = ino; | 
|  | 263 | return rc; | 
|  | 264 | } | 
|  | 265 |  | 
|  | 266 | static void sysfs_free_ino(ino_t ino) | 
|  | 267 | { | 
|  | 268 | spin_lock(&sysfs_ino_lock); | 
|  | 269 | ida_remove(&sysfs_ino_ida, ino); | 
|  | 270 | spin_unlock(&sysfs_ino_lock); | 
|  | 271 | } | 
|  | 272 |  | 
| Tejun Heo | fa7f912 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 273 | void release_sysfs_dirent(struct sysfs_dirent * sd) | 
|  | 274 | { | 
| Tejun Heo | 13b3086 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 275 | struct sysfs_dirent *parent_sd; | 
|  | 276 |  | 
|  | 277 | repeat: | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 278 | /* Moving/renaming is always done while holding reference. | 
|  | 279 | * sd->s_parent won't change beneath us. | 
|  | 280 | */ | 
| Tejun Heo | 13b3086 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 281 | parent_sd = sd->s_parent; | 
|  | 282 |  | 
| Tejun Heo | b402d72 | 2007-06-14 04:27:21 +0900 | [diff] [blame] | 283 | if (sysfs_type(sd) == SYSFS_KOBJ_LINK) | 
| Tejun Heo | b1fc3d6 | 2007-09-20 16:05:11 +0900 | [diff] [blame] | 284 | sysfs_put(sd->s_symlink.target_sd); | 
| Tejun Heo | b402d72 | 2007-06-14 04:27:21 +0900 | [diff] [blame] | 285 | if (sysfs_type(sd) & SYSFS_COPY_NAME) | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 286 | kfree(sd->s_name); | 
| Tejun Heo | fa7f912 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 287 | kfree(sd->s_iattr); | 
| Tejun Heo | 2b611bb | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 288 | sysfs_free_ino(sd->s_ino); | 
| Tejun Heo | fa7f912 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 289 | kmem_cache_free(sysfs_dir_cachep, sd); | 
| Tejun Heo | 13b3086 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 290 |  | 
|  | 291 | sd = parent_sd; | 
|  | 292 | if (sd && atomic_dec_and_test(&sd->s_count)) | 
|  | 293 | goto repeat; | 
| Tejun Heo | fa7f912 | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 294 | } | 
|  | 295 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | static void sysfs_d_iput(struct dentry * dentry, struct inode * inode) | 
|  | 297 | { | 
|  | 298 | struct sysfs_dirent * sd = dentry->d_fsdata; | 
|  | 299 |  | 
| Eric W. Biederman | 5a26b79 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 300 | sysfs_put(sd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | iput(inode); | 
|  | 302 | } | 
|  | 303 |  | 
|  | 304 | static struct dentry_operations sysfs_dentry_ops = { | 
|  | 305 | .d_iput		= sysfs_d_iput, | 
|  | 306 | }; | 
|  | 307 |  | 
| Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 308 | struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | { | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 310 | char *dup_name = NULL; | 
| Akinobu Mita | 01da242 | 2007-07-14 11:03:35 +0900 | [diff] [blame] | 311 | struct sysfs_dirent *sd; | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 312 |  | 
|  | 313 | if (type & SYSFS_COPY_NAME) { | 
|  | 314 | name = dup_name = kstrdup(name, GFP_KERNEL); | 
|  | 315 | if (!name) | 
| Akinobu Mita | 01da242 | 2007-07-14 11:03:35 +0900 | [diff] [blame] | 316 | return NULL; | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 317 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 |  | 
| Robert P. J. Day | c376222 | 2007-02-10 01:45:03 -0800 | [diff] [blame] | 319 | sd = kmem_cache_zalloc(sysfs_dir_cachep, GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | if (!sd) | 
| Akinobu Mita | 01da242 | 2007-07-14 11:03:35 +0900 | [diff] [blame] | 321 | goto err_out1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 |  | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 323 | if (sysfs_alloc_ino(&sd->s_ino)) | 
| Akinobu Mita | 01da242 | 2007-07-14 11:03:35 +0900 | [diff] [blame] | 324 | goto err_out2; | 
| Tejun Heo | 2b611bb | 2007-06-14 03:45:13 +0900 | [diff] [blame] | 325 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | atomic_set(&sd->s_count, 1); | 
| Tejun Heo | 8619f97 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 327 | atomic_set(&sd->s_active, 0); | 
| Tejun Heo | a26cd72 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 328 |  | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 329 | sd->s_name = name; | 
| Tejun Heo | a26cd72 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 330 | sd->s_mode = mode; | 
| Tejun Heo | b402d72 | 2007-06-14 04:27:21 +0900 | [diff] [blame] | 331 | sd->s_flags = type; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 |  | 
|  | 333 | return sd; | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 334 |  | 
| Akinobu Mita | 01da242 | 2007-07-14 11:03:35 +0900 | [diff] [blame] | 335 | err_out2: | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 336 | kmem_cache_free(sysfs_dir_cachep, sd); | 
| Akinobu Mita | 01da242 | 2007-07-14 11:03:35 +0900 | [diff] [blame] | 337 | err_out1: | 
|  | 338 | kfree(dup_name); | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 339 | return NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | } | 
|  | 341 |  | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 342 | static int sysfs_ilookup_test(struct inode *inode, void *arg) | 
|  | 343 | { | 
|  | 344 | struct sysfs_dirent *sd = arg; | 
|  | 345 | return inode->i_ino == sd->s_ino; | 
|  | 346 | } | 
|  | 347 |  | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 348 | /** | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 349 | *	sysfs_addrm_start - prepare for sysfs_dirent add/remove | 
|  | 350 | *	@acxt: pointer to sysfs_addrm_cxt to be used | 
|  | 351 | *	@parent_sd: parent sysfs_dirent | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 352 | * | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 353 | *	This function is called when the caller is about to add or | 
|  | 354 | *	remove sysfs_dirent under @parent_sd.  This function acquires | 
|  | 355 | *	sysfs_mutex, grabs inode for @parent_sd if available and lock | 
|  | 356 | *	i_mutex of it.  @acxt is used to keep and pass context to | 
|  | 357 | *	other addrm functions. | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 358 | * | 
|  | 359 | *	LOCKING: | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 360 | *	Kernel thread context (may sleep).  sysfs_mutex is locked on | 
|  | 361 | *	return.  i_mutex of parent inode is locked on return if | 
|  | 362 | *	available. | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 363 | */ | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 364 | void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt, | 
|  | 365 | struct sysfs_dirent *parent_sd) | 
| Eric W. Biederman | b592fcf | 2007-01-24 12:35:52 -0700 | [diff] [blame] | 366 | { | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 367 | struct inode *inode; | 
| Tejun Heo | a26cd72 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 368 |  | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 369 | memset(acxt, 0, sizeof(*acxt)); | 
|  | 370 | acxt->parent_sd = parent_sd; | 
|  | 371 |  | 
|  | 372 | /* Lookup parent inode.  inode initialization and I_NEW | 
|  | 373 | * clearing are protected by sysfs_mutex.  By grabbing it and | 
|  | 374 | * looking up with _nowait variant, inode state can be | 
|  | 375 | * determined reliably. | 
|  | 376 | */ | 
|  | 377 | mutex_lock(&sysfs_mutex); | 
|  | 378 |  | 
|  | 379 | inode = ilookup5_nowait(sysfs_sb, parent_sd->s_ino, sysfs_ilookup_test, | 
|  | 380 | parent_sd); | 
|  | 381 |  | 
|  | 382 | if (inode && !(inode->i_state & I_NEW)) { | 
|  | 383 | /* parent inode available */ | 
|  | 384 | acxt->parent_inode = inode; | 
|  | 385 |  | 
|  | 386 | /* sysfs_mutex is below i_mutex in lock hierarchy. | 
|  | 387 | * First, trylock i_mutex.  If fails, unlock | 
|  | 388 | * sysfs_mutex and lock them in order. | 
|  | 389 | */ | 
|  | 390 | if (!mutex_trylock(&inode->i_mutex)) { | 
|  | 391 | mutex_unlock(&sysfs_mutex); | 
|  | 392 | mutex_lock(&inode->i_mutex); | 
|  | 393 | mutex_lock(&sysfs_mutex); | 
|  | 394 | } | 
|  | 395 | } else | 
|  | 396 | iput(inode); | 
|  | 397 | } | 
|  | 398 |  | 
|  | 399 | /** | 
|  | 400 | *	sysfs_add_one - add sysfs_dirent to parent | 
|  | 401 | *	@acxt: addrm context to use | 
|  | 402 | *	@sd: sysfs_dirent to be added | 
|  | 403 | * | 
|  | 404 | *	Get @acxt->parent_sd and set sd->s_parent to it and increment | 
| Tejun Heo | 181b2e4 | 2007-09-20 16:05:09 +0900 | [diff] [blame] | 405 | *	nlink of parent inode if @sd is a directory and link into the | 
|  | 406 | *	children list of the parent. | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 407 | * | 
|  | 408 | *	This function should be called between calls to | 
|  | 409 | *	sysfs_addrm_start() and sysfs_addrm_finish() and should be | 
|  | 410 | *	passed the same @acxt as passed to sysfs_addrm_start(). | 
|  | 411 | * | 
|  | 412 | *	LOCKING: | 
|  | 413 | *	Determined by sysfs_addrm_start(). | 
| Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 414 | * | 
|  | 415 | *	RETURNS: | 
|  | 416 | *	0 on success, -EEXIST if entry with the given name already | 
|  | 417 | *	exists. | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 418 | */ | 
| Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 419 | int sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd) | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 420 | { | 
| Greg Kroah-Hartman | 5c3e896 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 421 | if (sysfs_find_dirent(acxt->parent_sd, sd->s_name)) { | 
|  | 422 | printk(KERN_WARNING "sysfs: duplicate filename '%s' " | 
|  | 423 | "can not be created\n", sd->s_name); | 
|  | 424 | WARN_ON(1); | 
| Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 425 | return -EEXIST; | 
| Greg Kroah-Hartman | 5c3e896 | 2007-09-13 02:53:13 -0700 | [diff] [blame] | 426 | } | 
| Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 427 |  | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 428 | sd->s_parent = sysfs_get(acxt->parent_sd); | 
|  | 429 |  | 
|  | 430 | if (sysfs_type(sd) == SYSFS_DIR && acxt->parent_inode) | 
|  | 431 | inc_nlink(acxt->parent_inode); | 
|  | 432 |  | 
|  | 433 | acxt->cnt++; | 
| Tejun Heo | 41fc1c2 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 434 |  | 
|  | 435 | sysfs_link_sibling(sd); | 
| Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 436 |  | 
|  | 437 | return 0; | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 438 | } | 
|  | 439 |  | 
|  | 440 | /** | 
|  | 441 | *	sysfs_remove_one - remove sysfs_dirent from parent | 
|  | 442 | *	@acxt: addrm context to use | 
| Jean Delvare | 9fd5b1c | 2008-01-08 18:11:24 +0100 | [diff] [blame] | 443 | *	@sd: sysfs_dirent to be removed | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 444 | * | 
|  | 445 | *	Mark @sd removed and drop nlink of parent inode if @sd is a | 
| Tejun Heo | 181b2e4 | 2007-09-20 16:05:09 +0900 | [diff] [blame] | 446 | *	directory.  @sd is unlinked from the children list. | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 447 | * | 
|  | 448 | *	This function should be called between calls to | 
|  | 449 | *	sysfs_addrm_start() and sysfs_addrm_finish() and should be | 
|  | 450 | *	passed the same @acxt as passed to sysfs_addrm_start(). | 
|  | 451 | * | 
|  | 452 | *	LOCKING: | 
|  | 453 | *	Determined by sysfs_addrm_start(). | 
|  | 454 | */ | 
|  | 455 | void sysfs_remove_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd) | 
|  | 456 | { | 
| Tejun Heo | 41fc1c2 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 457 | BUG_ON(sd->s_flags & SYSFS_FLAG_REMOVED); | 
|  | 458 |  | 
|  | 459 | sysfs_unlink_sibling(sd); | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 460 |  | 
|  | 461 | sd->s_flags |= SYSFS_FLAG_REMOVED; | 
|  | 462 | sd->s_sibling = acxt->removed; | 
|  | 463 | acxt->removed = sd; | 
|  | 464 |  | 
|  | 465 | if (sysfs_type(sd) == SYSFS_DIR && acxt->parent_inode) | 
|  | 466 | drop_nlink(acxt->parent_inode); | 
|  | 467 |  | 
|  | 468 | acxt->cnt++; | 
|  | 469 | } | 
|  | 470 |  | 
|  | 471 | /** | 
| Tejun Heo | a0edd7c | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 472 | *	sysfs_drop_dentry - drop dentry for the specified sysfs_dirent | 
|  | 473 | *	@sd: target sysfs_dirent | 
|  | 474 | * | 
|  | 475 | *	Drop dentry for @sd.  @sd must have been unlinked from its | 
|  | 476 | *	parent on entry to this function such that it can't be looked | 
|  | 477 | *	up anymore. | 
| Tejun Heo | a0edd7c | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 478 | */ | 
|  | 479 | static void sysfs_drop_dentry(struct sysfs_dirent *sd) | 
|  | 480 | { | 
| Tejun Heo | a0edd7c | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 481 | struct inode *inode; | 
| Eric W. Biederman | 89bec09 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 482 | struct dentry *dentry; | 
| Tejun Heo | a0edd7c | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 483 |  | 
| Eric W. Biederman | 89bec09 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 484 | inode = ilookup(sysfs_sb, sd->s_ino); | 
|  | 485 | if (!inode) | 
|  | 486 | return; | 
|  | 487 |  | 
|  | 488 | /* Drop any existing dentries associated with sd. | 
|  | 489 | * | 
|  | 490 | * For the dentry to be properly freed we need to grab a | 
|  | 491 | * reference to the dentry under the dcache lock,  unhash it, | 
|  | 492 | * and then put it.  The playing with the dentry count allows | 
|  | 493 | * dput to immediately free the dentry  if it is not in use. | 
| Tejun Heo | a0edd7c | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 494 | */ | 
| Eric W. Biederman | 89bec09 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 495 | repeat: | 
| Tejun Heo | a0edd7c | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 496 | spin_lock(&dcache_lock); | 
| Eric W. Biederman | 89bec09 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 497 | list_for_each_entry(dentry, &inode->i_dentry, d_alias) { | 
|  | 498 | if (d_unhashed(dentry)) | 
|  | 499 | continue; | 
|  | 500 | dget_locked(dentry); | 
| Tejun Heo | a0edd7c | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 501 | spin_lock(&dentry->d_lock); | 
|  | 502 | __d_drop(dentry); | 
|  | 503 | spin_unlock(&dentry->d_lock); | 
| Eric W. Biederman | 89bec09 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 504 | spin_unlock(&dcache_lock); | 
|  | 505 | dput(dentry); | 
|  | 506 | goto repeat; | 
| Tejun Heo | a0edd7c | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 507 | } | 
| Tejun Heo | a0edd7c | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 508 | spin_unlock(&dcache_lock); | 
| Tejun Heo | a0edd7c | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 509 |  | 
|  | 510 | /* adjust nlink and update timestamp */ | 
| Eric W. Biederman | 89bec09 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 511 | mutex_lock(&inode->i_mutex); | 
| Tejun Heo | a0edd7c | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 512 |  | 
| Eric W. Biederman | 89bec09 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 513 | inode->i_ctime = CURRENT_TIME; | 
|  | 514 | drop_nlink(inode); | 
|  | 515 | if (sysfs_type(sd) == SYSFS_DIR) | 
| Tejun Heo | a0edd7c | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 516 | drop_nlink(inode); | 
| Tejun Heo | a0edd7c | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 517 |  | 
| Eric W. Biederman | 89bec09 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 518 | mutex_unlock(&inode->i_mutex); | 
|  | 519 |  | 
|  | 520 | iput(inode); | 
| Tejun Heo | a0edd7c | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 521 | } | 
|  | 522 |  | 
|  | 523 | /** | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 524 | *	sysfs_addrm_finish - finish up sysfs_dirent add/remove | 
|  | 525 | *	@acxt: addrm context to finish up | 
|  | 526 | * | 
|  | 527 | *	Finish up sysfs_dirent add/remove.  Resources acquired by | 
|  | 528 | *	sysfs_addrm_start() are released and removed sysfs_dirents are | 
|  | 529 | *	cleaned up.  Timestamps on the parent inode are updated. | 
|  | 530 | * | 
|  | 531 | *	LOCKING: | 
|  | 532 | *	All mutexes acquired by sysfs_addrm_start() are released. | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 533 | */ | 
| Tejun Heo | 990e53f | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 534 | void sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt) | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 535 | { | 
|  | 536 | /* release resources acquired by sysfs_addrm_start() */ | 
|  | 537 | mutex_unlock(&sysfs_mutex); | 
|  | 538 | if (acxt->parent_inode) { | 
|  | 539 | struct inode *inode = acxt->parent_inode; | 
|  | 540 |  | 
|  | 541 | /* if added/removed, update timestamps on the parent */ | 
|  | 542 | if (acxt->cnt) | 
|  | 543 | inode->i_ctime = inode->i_mtime = CURRENT_TIME; | 
|  | 544 |  | 
|  | 545 | mutex_unlock(&inode->i_mutex); | 
|  | 546 | iput(inode); | 
| Tejun Heo | 13b3086 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 547 | } | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 548 |  | 
|  | 549 | /* kill removed sysfs_dirents */ | 
|  | 550 | while (acxt->removed) { | 
|  | 551 | struct sysfs_dirent *sd = acxt->removed; | 
|  | 552 |  | 
|  | 553 | acxt->removed = sd->s_sibling; | 
|  | 554 | sd->s_sibling = NULL; | 
|  | 555 |  | 
|  | 556 | sysfs_drop_dentry(sd); | 
|  | 557 | sysfs_deactivate(sd); | 
|  | 558 | sysfs_put(sd); | 
|  | 559 | } | 
| Eric W. Biederman | b592fcf | 2007-01-24 12:35:52 -0700 | [diff] [blame] | 560 | } | 
|  | 561 |  | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 562 | /** | 
|  | 563 | *	sysfs_find_dirent - find sysfs_dirent with the given name | 
|  | 564 | *	@parent_sd: sysfs_dirent to search under | 
|  | 565 | *	@name: name to look for | 
| Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 566 | * | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 567 | *	Look for sysfs_dirent with name @name under @parent_sd. | 
| Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 568 | * | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 569 | *	LOCKING: | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 570 | *	mutex_lock(sysfs_mutex) | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 571 | * | 
|  | 572 | *	RETURNS: | 
|  | 573 | *	Pointer to sysfs_dirent if found, NULL if not. | 
| Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 574 | */ | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 575 | struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd, | 
|  | 576 | const unsigned char *name) | 
| Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 577 | { | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 578 | struct sysfs_dirent *sd; | 
| Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 579 |  | 
| Tejun Heo | bc747f3 | 2007-09-20 16:05:12 +0900 | [diff] [blame] | 580 | for (sd = parent_sd->s_dir.children; sd; sd = sd->s_sibling) | 
| Eric W. Biederman | 3efa65b | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 581 | if (!strcmp(sd->s_name, name)) | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 582 | return sd; | 
|  | 583 | return NULL; | 
|  | 584 | } | 
| Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 585 |  | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 586 | /** | 
|  | 587 | *	sysfs_get_dirent - find and get sysfs_dirent with the given name | 
|  | 588 | *	@parent_sd: sysfs_dirent to search under | 
|  | 589 | *	@name: name to look for | 
|  | 590 | * | 
|  | 591 | *	Look for sysfs_dirent with name @name under @parent_sd and get | 
|  | 592 | *	it if found. | 
|  | 593 | * | 
|  | 594 | *	LOCKING: | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 595 | *	Kernel thread context (may sleep).  Grabs sysfs_mutex. | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 596 | * | 
|  | 597 | *	RETURNS: | 
|  | 598 | *	Pointer to sysfs_dirent if found, NULL if not. | 
|  | 599 | */ | 
|  | 600 | struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd, | 
|  | 601 | const unsigned char *name) | 
|  | 602 | { | 
|  | 603 | struct sysfs_dirent *sd; | 
|  | 604 |  | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 605 | mutex_lock(&sysfs_mutex); | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 606 | sd = sysfs_find_dirent(parent_sd, name); | 
|  | 607 | sysfs_get(sd); | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 608 | mutex_unlock(&sysfs_mutex); | 
| Tejun Heo | f0b0af4 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 609 |  | 
|  | 610 | return sd; | 
| Maneesh Soni | c516865 | 2006-03-09 19:40:14 +0530 | [diff] [blame] | 611 | } | 
|  | 612 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 613 | static int create_dir(struct kobject *kobj, struct sysfs_dirent *parent_sd, | 
|  | 614 | const char *name, struct sysfs_dirent **p_sd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 616 | umode_t mode = S_IFDIR| S_IRWXU | S_IRUGO | S_IXUGO; | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 617 | struct sysfs_addrm_cxt acxt; | 
| Tejun Heo | dfeb9fb | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 618 | struct sysfs_dirent *sd; | 
| Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 619 | int rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 |  | 
| Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 621 | /* allocate */ | 
| Tejun Heo | 3e51903 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 622 | sd = sysfs_new_dirent(name, mode, SYSFS_DIR); | 
| Tejun Heo | a26cd72 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 623 | if (!sd) | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 624 | return -ENOMEM; | 
| Tejun Heo | b1fc3d6 | 2007-09-20 16:05:11 +0900 | [diff] [blame] | 625 | sd->s_dir.kobj = kobj; | 
| Tejun Heo | dfeb9fb | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 626 |  | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 627 | /* link in */ | 
|  | 628 | sysfs_addrm_start(&acxt, parent_sd); | 
| Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 629 | rc = sysfs_add_one(&acxt, sd); | 
|  | 630 | sysfs_addrm_finish(&acxt); | 
| Tejun Heo | 967e35d | 2007-07-18 16:38:11 +0900 | [diff] [blame] | 631 |  | 
| Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 632 | if (rc == 0) | 
|  | 633 | *p_sd = sd; | 
|  | 634 | else | 
| Tejun Heo | 967e35d | 2007-07-18 16:38:11 +0900 | [diff] [blame] | 635 | sysfs_put(sd); | 
| Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 636 |  | 
| Tejun Heo | 23dc279 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 637 | return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 638 | } | 
|  | 639 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 640 | int sysfs_create_subdir(struct kobject *kobj, const char *name, | 
|  | 641 | struct sysfs_dirent **p_sd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 642 | { | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 643 | return create_dir(kobj, kobj->sd, name, p_sd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 644 | } | 
|  | 645 |  | 
|  | 646 | /** | 
|  | 647 | *	sysfs_create_dir - create a directory for an object. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | *	@kobj:		object we're creating directory for. | 
|  | 649 | */ | 
| Eric W. Biederman | 90bc613 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 650 | int sysfs_create_dir(struct kobject * kobj) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 651 | { | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 652 | struct sysfs_dirent *parent_sd, *sd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 653 | int error = 0; | 
|  | 654 |  | 
|  | 655 | BUG_ON(!kobj); | 
|  | 656 |  | 
| Eric W. Biederman | 90bc613 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 657 | if (kobj->parent) | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 658 | parent_sd = kobj->parent->sd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 659 | else | 
| Eric W. Biederman | 7d0c7d6 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 660 | parent_sd = &sysfs_root; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 661 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 662 | error = create_dir(kobj, parent_sd, kobject_name(kobj), &sd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | if (!error) | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 664 | kobj->sd = sd; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 665 | return error; | 
|  | 666 | } | 
|  | 667 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | static struct dentry * sysfs_lookup(struct inode *dir, struct dentry *dentry, | 
|  | 669 | struct nameidata *nd) | 
|  | 670 | { | 
| Tejun Heo | 6cb5214 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 671 | struct dentry *ret = NULL; | 
| Tejun Heo | a7a0475 | 2007-08-02 21:38:02 +0900 | [diff] [blame] | 672 | struct sysfs_dirent *parent_sd = dentry->d_parent->d_fsdata; | 
|  | 673 | struct sysfs_dirent *sd; | 
| Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 674 | struct inode *inode; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 |  | 
| Tejun Heo | 6cb5214 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 676 | mutex_lock(&sysfs_mutex); | 
|  | 677 |  | 
| Eric W. Biederman | 94777e0 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 678 | sd = sysfs_find_dirent(parent_sd, dentry->d_name.name); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 |  | 
| Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 680 | /* no such entry */ | 
| Tejun Heo | e49452c | 2008-01-16 12:06:14 +0900 | [diff] [blame] | 681 | if (!sd) { | 
|  | 682 | ret = ERR_PTR(-ENOENT); | 
| Tejun Heo | 6cb5214 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 683 | goto out_unlock; | 
| Tejun Heo | e49452c | 2008-01-16 12:06:14 +0900 | [diff] [blame] | 684 | } | 
| Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 685 |  | 
|  | 686 | /* attach dentry and inode */ | 
| Tejun Heo | 8312a8d | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 687 | inode = sysfs_get_inode(sd); | 
| Tejun Heo | 6cb5214 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 688 | if (!inode) { | 
|  | 689 | ret = ERR_PTR(-ENOMEM); | 
|  | 690 | goto out_unlock; | 
|  | 691 | } | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 692 |  | 
| Tejun Heo | d6b4fd2 | 2007-09-20 16:05:11 +0900 | [diff] [blame] | 693 | /* instantiate and hash dentry */ | 
|  | 694 | dentry->d_op = &sysfs_dentry_ops; | 
|  | 695 | dentry->d_fsdata = sysfs_get(sd); | 
| Eric W. Biederman | 119dd52 | 2007-08-20 21:36:29 +0900 | [diff] [blame] | 696 | d_instantiate(dentry, inode); | 
| Tejun Heo | d6b4fd2 | 2007-09-20 16:05:11 +0900 | [diff] [blame] | 697 | d_rehash(dentry); | 
| Tejun Heo | fc9f54b | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 698 |  | 
| Tejun Heo | 6cb5214 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 699 | out_unlock: | 
| Tejun Heo | 3007e99 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 700 | mutex_unlock(&sysfs_mutex); | 
| Tejun Heo | 6cb5214 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 701 | return ret; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | } | 
|  | 703 |  | 
| Arjan van de Ven | c5ef1c4 | 2007-02-12 00:55:40 -0800 | [diff] [blame] | 704 | const struct inode_operations sysfs_dir_inode_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 705 | .lookup		= sysfs_lookup, | 
| Maneesh Soni | 988d186 | 2005-05-31 10:39:14 +0530 | [diff] [blame] | 706 | .setattr	= sysfs_setattr, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | }; | 
|  | 708 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 709 | static void remove_dir(struct sysfs_dirent *sd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 710 | { | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 711 | struct sysfs_addrm_cxt acxt; | 
|  | 712 |  | 
|  | 713 | sysfs_addrm_start(&acxt, sd->s_parent); | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 714 | sysfs_remove_one(&acxt, sd); | 
|  | 715 | sysfs_addrm_finish(&acxt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | } | 
|  | 717 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 718 | void sysfs_remove_subdir(struct sysfs_dirent *sd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | { | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 720 | remove_dir(sd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | } | 
|  | 722 |  | 
|  | 723 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 724 | static void __sysfs_remove_dir(struct sysfs_dirent *dir_sd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 725 | { | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 726 | struct sysfs_addrm_cxt acxt; | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 727 | struct sysfs_dirent **pos; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 728 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 729 | if (!dir_sd) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 730 | return; | 
|  | 731 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 732 | pr_debug("sysfs %s: removing dir\n", dir_sd->s_name); | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 733 | sysfs_addrm_start(&acxt, dir_sd); | 
| Tejun Heo | bc747f3 | 2007-09-20 16:05:12 +0900 | [diff] [blame] | 734 | pos = &dir_sd->s_dir.children; | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 735 | while (*pos) { | 
|  | 736 | struct sysfs_dirent *sd = *pos; | 
|  | 737 |  | 
| Eric W. Biederman | 3efa65b | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 738 | if (sysfs_type(sd) != SYSFS_DIR) | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 739 | sysfs_remove_one(&acxt, sd); | 
| Tejun Heo | 41fc1c2 | 2007-08-02 21:38:03 +0900 | [diff] [blame] | 740 | else | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 741 | pos = &(*pos)->s_sibling; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 742 | } | 
| Tejun Heo | fb6896d | 2007-06-14 04:27:24 +0900 | [diff] [blame] | 743 | sysfs_addrm_finish(&acxt); | 
| Tejun Heo | 0ab6608 | 2007-06-14 03:45:16 +0900 | [diff] [blame] | 744 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 745 | remove_dir(dir_sd); | 
| Eric W. Biederman | b592fcf | 2007-01-24 12:35:52 -0700 | [diff] [blame] | 746 | } | 
|  | 747 |  | 
|  | 748 | /** | 
|  | 749 | *	sysfs_remove_dir - remove an object's directory. | 
|  | 750 | *	@kobj:	object. | 
|  | 751 | * | 
|  | 752 | *	The only thing special about this is that we remove any files in | 
|  | 753 | *	the directory before we remove the directory, and we've inlined | 
|  | 754 | *	what used to be sysfs_rmdir() below, instead of calling separately. | 
|  | 755 | */ | 
|  | 756 |  | 
|  | 757 | void sysfs_remove_dir(struct kobject * kobj) | 
|  | 758 | { | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 759 | struct sysfs_dirent *sd = kobj->sd; | 
| Tejun Heo | aecdced | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 760 |  | 
| Tejun Heo | 5f99532 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 761 | spin_lock(&sysfs_assoc_lock); | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 762 | kobj->sd = NULL; | 
| Tejun Heo | 5f99532 | 2007-06-14 04:27:23 +0900 | [diff] [blame] | 763 | spin_unlock(&sysfs_assoc_lock); | 
| Tejun Heo | aecdced | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 764 |  | 
| Tejun Heo | 608e266 | 2007-06-14 04:27:22 +0900 | [diff] [blame] | 765 | __sysfs_remove_dir(sd); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | } | 
|  | 767 |  | 
| Eric W. Biederman | 90bc613 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 768 | int sysfs_rename_dir(struct kobject * kobj, const char *new_name) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | { | 
| Eric W. Biederman | 9918f9a | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 770 | struct sysfs_dirent *sd = kobj->sd; | 
| Eric W. Biederman | 90bc613 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 771 | struct dentry *parent = NULL; | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 772 | struct dentry *old_dentry = NULL, *new_dentry = NULL; | 
|  | 773 | const char *dup_name = NULL; | 
| Tejun Heo | 996b737 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 774 | int error; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 |  | 
| Eric W. Biederman | 932ea2e | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 776 | mutex_lock(&sysfs_rename_mutex); | 
|  | 777 |  | 
| Eric W. Biederman | 9918f9a | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 778 | error = 0; | 
|  | 779 | if (strcmp(sd->s_name, new_name) == 0) | 
|  | 780 | goto out;	/* nothing to rename */ | 
|  | 781 |  | 
| Tejun Heo | ff869de | 2007-08-02 21:38:02 +0900 | [diff] [blame] | 782 | /* get the original dentry */ | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 783 | old_dentry = sysfs_get_dentry(sd); | 
|  | 784 | if (IS_ERR(old_dentry)) { | 
|  | 785 | error = PTR_ERR(old_dentry); | 
| Tejun Heo | 456ef15 | 2008-01-16 12:10:53 +0900 | [diff] [blame] | 786 | old_dentry = NULL; | 
| Eric W. Biederman | 9918f9a | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 787 | goto out; | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 788 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 |  | 
| Tejun Heo | ff869de | 2007-08-02 21:38:02 +0900 | [diff] [blame] | 790 | parent = old_dentry->d_parent; | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 791 |  | 
| Eric W. Biederman | 90bc613 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 792 | /* lock parent and get dentry for new name */ | 
|  | 793 | mutex_lock(&parent->d_inode->i_mutex); | 
| Eric W. Biederman | 9918f9a | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 794 | mutex_lock(&sysfs_mutex); | 
| Tejun Heo | 996b737 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 795 |  | 
|  | 796 | error = -EEXIST; | 
| Eric W. Biederman | 9918f9a | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 797 | if (sysfs_find_dirent(sd->s_parent, new_name)) | 
|  | 798 | goto out_unlock; | 
|  | 799 |  | 
|  | 800 | error = -ENOMEM; | 
|  | 801 | new_dentry = d_alloc_name(parent, new_name); | 
|  | 802 | if (!new_dentry) | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 803 | goto out_unlock; | 
| Tejun Heo | 996b737 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 804 |  | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 805 | /* rename kobject and sysfs_dirent */ | 
|  | 806 | error = -ENOMEM; | 
|  | 807 | new_name = dup_name = kstrdup(new_name, GFP_KERNEL); | 
|  | 808 | if (!new_name) | 
| Eric W. Biederman | 9918f9a | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 809 | goto out_unlock; | 
| Tejun Heo | 996b737 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 810 |  | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 811 | error = kobject_set_name(kobj, "%s", new_name); | 
|  | 812 | if (error) | 
| Eric W. Biederman | 9918f9a | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 813 | goto out_unlock; | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 814 |  | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 815 | dup_name = sd->s_name; | 
| Tejun Heo | 0c096b5 | 2007-06-14 03:45:15 +0900 | [diff] [blame] | 816 | sd->s_name = new_name; | 
|  | 817 |  | 
| Tejun Heo | ff869de | 2007-08-02 21:38:02 +0900 | [diff] [blame] | 818 | /* rename */ | 
| Tejun Heo | 996b737 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 819 | d_add(new_dentry, NULL); | 
| Eric W. Biederman | 5a26b79 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 820 | d_move(old_dentry, new_dentry); | 
| Tejun Heo | 996b737 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 821 |  | 
| Tejun Heo | 996b737 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 822 | error = 0; | 
| Tejun Heo | 996b737 | 2007-06-14 03:45:14 +0900 | [diff] [blame] | 823 | out_unlock: | 
| Eric W. Biederman | 9918f9a | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 824 | mutex_unlock(&sysfs_mutex); | 
| Eric W. Biederman | 90bc613 | 2007-07-31 19:15:08 +0900 | [diff] [blame] | 825 | mutex_unlock(&parent->d_inode->i_mutex); | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 826 | kfree(dup_name); | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 827 | dput(old_dentry); | 
|  | 828 | dput(new_dentry); | 
| Eric W. Biederman | 9918f9a | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 829 | out: | 
| Eric W. Biederman | 932ea2e | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 830 | mutex_unlock(&sysfs_rename_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 831 | return error; | 
|  | 832 | } | 
|  | 833 |  | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 834 | int sysfs_move_dir(struct kobject *kobj, struct kobject *new_parent_kobj) | 
| Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 835 | { | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 836 | struct sysfs_dirent *sd = kobj->sd; | 
|  | 837 | struct sysfs_dirent *new_parent_sd; | 
|  | 838 | struct dentry *old_parent, *new_parent = NULL; | 
|  | 839 | struct dentry *old_dentry = NULL, *new_dentry = NULL; | 
| Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 840 | int error; | 
|  | 841 |  | 
| Eric W. Biederman | 932ea2e | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 842 | mutex_lock(&sysfs_rename_mutex); | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 843 | BUG_ON(!sd->s_parent); | 
|  | 844 | new_parent_sd = new_parent_kobj->sd ? new_parent_kobj->sd : &sysfs_root; | 
| Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 845 |  | 
| Eric W. Biederman | 45aaae9 | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 846 | error = 0; | 
|  | 847 | if (sd->s_parent == new_parent_sd) | 
|  | 848 | goto out;	/* nothing to move */ | 
|  | 849 |  | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 850 | /* get dentries */ | 
|  | 851 | old_dentry = sysfs_get_dentry(sd); | 
|  | 852 | if (IS_ERR(old_dentry)) { | 
|  | 853 | error = PTR_ERR(old_dentry); | 
| Tejun Heo | 456ef15 | 2008-01-16 12:10:53 +0900 | [diff] [blame] | 854 | old_dentry = NULL; | 
| Eric W. Biederman | 45aaae9 | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 855 | goto out; | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 856 | } | 
| Eric W. Biederman | 5a26b79 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 857 | old_parent = old_dentry->d_parent; | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 858 |  | 
|  | 859 | new_parent = sysfs_get_dentry(new_parent_sd); | 
|  | 860 | if (IS_ERR(new_parent)) { | 
|  | 861 | error = PTR_ERR(new_parent); | 
| Tejun Heo | 456ef15 | 2008-01-16 12:10:53 +0900 | [diff] [blame] | 862 | new_parent = NULL; | 
| Eric W. Biederman | 45aaae9 | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 863 | goto out; | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 864 | } | 
|  | 865 |  | 
| Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 866 | again: | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 867 | mutex_lock(&old_parent->d_inode->i_mutex); | 
|  | 868 | if (!mutex_trylock(&new_parent->d_inode->i_mutex)) { | 
|  | 869 | mutex_unlock(&old_parent->d_inode->i_mutex); | 
| Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 870 | goto again; | 
|  | 871 | } | 
| Eric W. Biederman | 45aaae9 | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 872 | mutex_lock(&sysfs_mutex); | 
| Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 873 |  | 
| Eric W. Biederman | 45aaae9 | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 874 | error = -EEXIST; | 
|  | 875 | if (sysfs_find_dirent(new_parent_sd, sd->s_name)) | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 876 | goto out_unlock; | 
| Eric W. Biederman | 45aaae9 | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 877 |  | 
|  | 878 | error = -ENOMEM; | 
|  | 879 | new_dentry = d_alloc_name(new_parent, sd->s_name); | 
|  | 880 | if (!new_dentry) | 
|  | 881 | goto out_unlock; | 
|  | 882 |  | 
|  | 883 | error = 0; | 
| Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 884 | d_add(new_dentry, NULL); | 
| Eric W. Biederman | 5a26b79 | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 885 | d_move(old_dentry, new_dentry); | 
| Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 886 |  | 
|  | 887 | /* Remove from old parent's list and insert into new parent's list. */ | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 888 | sysfs_unlink_sibling(sd); | 
| Tejun Heo | 7f7cfff | 2007-06-14 03:45:17 +0900 | [diff] [blame] | 889 | sysfs_get(new_parent_sd); | 
|  | 890 | sysfs_put(sd->s_parent); | 
|  | 891 | sd->s_parent = new_parent_sd; | 
| Tejun Heo | 0c73f18 | 2007-06-14 03:45:18 +0900 | [diff] [blame] | 892 | sysfs_link_sibling(sd); | 
| Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 893 |  | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 894 | out_unlock: | 
| Eric W. Biederman | 45aaae9 | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 895 | mutex_unlock(&sysfs_mutex); | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 896 | mutex_unlock(&new_parent->d_inode->i_mutex); | 
|  | 897 | mutex_unlock(&old_parent->d_inode->i_mutex); | 
| Eric W. Biederman | 45aaae9 | 2007-08-20 21:36:31 +0900 | [diff] [blame] | 898 | out: | 
| Tejun Heo | 5122503 | 2007-06-14 04:27:25 +0900 | [diff] [blame] | 899 | dput(new_parent); | 
|  | 900 | dput(old_dentry); | 
|  | 901 | dput(new_dentry); | 
| Eric W. Biederman | 932ea2e | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 902 | mutex_unlock(&sysfs_rename_mutex); | 
| Cornelia Huck | 8a82472 | 2006-11-20 17:07:51 +0100 | [diff] [blame] | 903 | return error; | 
|  | 904 | } | 
|  | 905 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 906 | /* Relationship between s_mode and the DT_xxx types */ | 
|  | 907 | static inline unsigned char dt_type(struct sysfs_dirent *sd) | 
|  | 908 | { | 
|  | 909 | return (sd->s_mode >> 12) & 15; | 
|  | 910 | } | 
|  | 911 |  | 
|  | 912 | static int sysfs_readdir(struct file * filp, void * dirent, filldir_t filldir) | 
|  | 913 | { | 
| Josef "Jeff" Sipek | f427f5d | 2006-12-08 02:36:36 -0800 | [diff] [blame] | 914 | struct dentry *dentry = filp->f_path.dentry; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 915 | struct sysfs_dirent * parent_sd = dentry->d_fsdata; | 
| Eric W. Biederman | 3efa65b | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 916 | struct sysfs_dirent *pos; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 917 | ino_t ino; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 918 |  | 
| Eric W. Biederman | 3efa65b | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 919 | if (filp->f_pos == 0) { | 
|  | 920 | ino = parent_sd->s_ino; | 
|  | 921 | if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) == 0) | 
|  | 922 | filp->f_pos++; | 
|  | 923 | } | 
|  | 924 | if (filp->f_pos == 1) { | 
|  | 925 | if (parent_sd->s_parent) | 
|  | 926 | ino = parent_sd->s_parent->s_ino; | 
|  | 927 | else | 
| Eric Sandeen | dc35125 | 2007-06-11 14:02:45 +0900 | [diff] [blame] | 928 | ino = parent_sd->s_ino; | 
| Eric W. Biederman | 3efa65b | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 929 | if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) == 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | filp->f_pos++; | 
| Eric W. Biederman | 3efa65b | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 931 | } | 
|  | 932 | if ((filp->f_pos > 1) && (filp->f_pos < INT_MAX)) { | 
|  | 933 | mutex_lock(&sysfs_mutex); | 
|  | 934 |  | 
|  | 935 | /* Skip the dentries we have already reported */ | 
| Tejun Heo | bc747f3 | 2007-09-20 16:05:12 +0900 | [diff] [blame] | 936 | pos = parent_sd->s_dir.children; | 
| Eric W. Biederman | 3efa65b | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 937 | while (pos && (filp->f_pos > pos->s_ino)) | 
|  | 938 | pos = pos->s_sibling; | 
|  | 939 |  | 
|  | 940 | for ( ; pos; pos = pos->s_sibling) { | 
|  | 941 | const char * name; | 
|  | 942 | int len; | 
|  | 943 |  | 
|  | 944 | name = pos->s_name; | 
|  | 945 | len = strlen(name); | 
|  | 946 | filp->f_pos = ino = pos->s_ino; | 
|  | 947 |  | 
|  | 948 | if (filldir(dirent, name, len, filp->f_pos, ino, | 
|  | 949 | dt_type(pos)) < 0) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | break; | 
| Eric W. Biederman | 3efa65b | 2007-08-20 21:36:30 +0900 | [diff] [blame] | 951 | } | 
|  | 952 | if (!pos) | 
|  | 953 | filp->f_pos = INT_MAX; | 
|  | 954 | mutex_unlock(&sysfs_mutex); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | } | 
|  | 956 | return 0; | 
|  | 957 | } | 
|  | 958 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 |  | 
| Arjan van de Ven | 4b6f5d2 | 2006-03-28 01:56:42 -0800 | [diff] [blame] | 960 | const struct file_operations sysfs_dir_operations = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | .read		= generic_read_dir, | 
|  | 962 | .readdir	= sysfs_readdir, | 
|  | 963 | }; |