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