blob: e319379d36dbffea0cb4ee0284317c9eefd5a719 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Tejun Heo6d66f5c2007-09-20 17:31:38 +09002 * 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 Torvalds1da177e2005-04-16 15:20:36 -070011 */
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 Hellwig5f45f1a2005-06-23 00:09:12 -070019#include <linux/namei.h>
Tejun Heo2b611bb2007-06-14 03:45:13 +090020#include <linux/idr.h>
Tejun Heo8619f972007-06-14 03:45:18 +090021#include <linux/completion.h>
Dave Young869512a2007-07-26 14:53:53 +000022#include <linux/mutex.h>
Robert P. J. Dayc6f87732008-03-13 22:41:52 -040023#include <linux/slab.h>
Eric W. Biederman4c3da222009-11-04 02:50:06 -080024#include <linux/security.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "sysfs.h"
26
Tejun Heo3007e992007-06-14 04:27:23 +090027DEFINE_MUTEX(sysfs_mutex);
Eric W. Biederman932ea2e2007-08-20 21:36:30 +090028DEFINE_MUTEX(sysfs_rename_mutex);
Roel Kluinf7a75f02007-10-16 23:30:25 -070029DEFINE_SPINLOCK(sysfs_assoc_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Roel Kluinf7a75f02007-10-16 23:30:25 -070031static DEFINE_SPINLOCK(sysfs_ino_lock);
Tejun Heo2b611bb2007-06-14 03:45:13 +090032static DEFINE_IDA(sysfs_ino_ida);
33
Tejun Heob6b4a432007-06-14 03:45:18 +090034/**
Tejun Heo0c73f182007-06-14 03:45:18 +090035 * sysfs_link_sibling - link sysfs_dirent into sibling list
36 * @sd: sysfs_dirent of interest
37 *
38 * Link @sd into its sibling list which starts from
Tejun Heobc747f32007-09-20 16:05:12 +090039 * sd->s_parent->s_dir.children.
Tejun Heo0c73f182007-06-14 03:45:18 +090040 *
41 * Locking:
Tejun Heo3007e992007-06-14 04:27:23 +090042 * mutex_lock(sysfs_mutex)
Tejun Heo0c73f182007-06-14 03:45:18 +090043 */
Tejun Heo41fc1c22007-08-02 21:38:03 +090044static void sysfs_link_sibling(struct sysfs_dirent *sd)
Tejun Heo0c73f182007-06-14 03:45:18 +090045{
46 struct sysfs_dirent *parent_sd = sd->s_parent;
Eric W. Biederman3efa65b2007-08-20 21:36:30 +090047 struct sysfs_dirent **pos;
Tejun Heo0c73f182007-06-14 03:45:18 +090048
49 BUG_ON(sd->s_sibling);
Eric W. Biederman3efa65b2007-08-20 21:36:30 +090050
51 /* Store directory entries in order by ino. This allows
52 * readdir to properly restart without having to add a
Tejun Heobc747f32007-09-20 16:05:12 +090053 * cursor into the s_dir.children list.
Eric W. Biederman3efa65b2007-08-20 21:36:30 +090054 */
Tejun Heobc747f32007-09-20 16:05:12 +090055 for (pos = &parent_sd->s_dir.children; *pos; pos = &(*pos)->s_sibling) {
Eric W. Biederman3efa65b2007-08-20 21:36:30 +090056 if (sd->s_ino < (*pos)->s_ino)
57 break;
58 }
59 sd->s_sibling = *pos;
60 *pos = sd;
Tejun Heo0c73f182007-06-14 03:45:18 +090061}
62
63/**
64 * sysfs_unlink_sibling - unlink sysfs_dirent from sibling list
65 * @sd: sysfs_dirent of interest
66 *
67 * Unlink @sd from its sibling list which starts from
Tejun Heobc747f32007-09-20 16:05:12 +090068 * sd->s_parent->s_dir.children.
Tejun Heo0c73f182007-06-14 03:45:18 +090069 *
70 * Locking:
Tejun Heo3007e992007-06-14 04:27:23 +090071 * mutex_lock(sysfs_mutex)
Tejun Heo0c73f182007-06-14 03:45:18 +090072 */
Tejun Heo41fc1c22007-08-02 21:38:03 +090073static void sysfs_unlink_sibling(struct sysfs_dirent *sd)
Tejun Heo0c73f182007-06-14 03:45:18 +090074{
75 struct sysfs_dirent **pos;
76
Tejun Heobc747f32007-09-20 16:05:12 +090077 for (pos = &sd->s_parent->s_dir.children; *pos;
78 pos = &(*pos)->s_sibling) {
Tejun Heo0c73f182007-06-14 03:45:18 +090079 if (*pos == sd) {
80 *pos = sd->s_sibling;
81 sd->s_sibling = NULL;
82 break;
83 }
84 }
85}
86
87/**
Tejun Heo53e0ae92007-06-14 04:27:25 +090088 * sysfs_get_dentry - get dentry for the given sysfs_dirent
89 * @sd: sysfs_dirent of interest
90 *
91 * Get dentry for @sd. Dentry is looked up if currently not
Tejun Heoe0712bb2007-08-20 21:36:30 +090092 * present. This function descends from the root looking up
93 * dentry for each step.
Tejun Heo53e0ae92007-06-14 04:27:25 +090094 *
95 * LOCKING:
Eric W. Biederman932ea2e2007-08-20 21:36:30 +090096 * mutex_lock(sysfs_rename_mutex)
Tejun Heo53e0ae92007-06-14 04:27:25 +090097 *
98 * RETURNS:
99 * Pointer to found dentry on success, ERR_PTR() value on error.
100 */
101struct dentry *sysfs_get_dentry(struct sysfs_dirent *sd)
102{
Tejun Heoe0712bb2007-08-20 21:36:30 +0900103 struct dentry *dentry = dget(sysfs_sb->s_root);
Tejun Heo53e0ae92007-06-14 04:27:25 +0900104
Tejun Heoe0712bb2007-08-20 21:36:30 +0900105 while (dentry->d_fsdata != sd) {
106 struct sysfs_dirent *cur;
107 struct dentry *parent;
Tejun Heo53e0ae92007-06-14 04:27:25 +0900108
Tejun Heoe0712bb2007-08-20 21:36:30 +0900109 /* find the first ancestor which hasn't been looked up */
110 cur = sd;
111 while (cur->s_parent != dentry->d_fsdata)
Tejun Heo53e0ae92007-06-14 04:27:25 +0900112 cur = cur->s_parent;
113
Tejun Heo53e0ae92007-06-14 04:27:25 +0900114 /* look it up */
Tejun Heoe0712bb2007-08-20 21:36:30 +0900115 parent = dentry;
116 mutex_lock(&parent->d_inode->i_mutex);
Christoph Hellwigeead1912007-10-16 23:25:38 -0700117 dentry = lookup_one_noperm(cur->s_name, parent);
Tejun Heoe0712bb2007-08-20 21:36:30 +0900118 mutex_unlock(&parent->d_inode->i_mutex);
119 dput(parent);
Tejun Heo53e0ae92007-06-14 04:27:25 +0900120
Tejun Heoe0712bb2007-08-20 21:36:30 +0900121 if (IS_ERR(dentry))
122 break;
Tejun Heo53e0ae92007-06-14 04:27:25 +0900123 }
Tejun Heo53e0ae92007-06-14 04:27:25 +0900124 return dentry;
125}
126
127/**
Tejun Heob6b4a432007-06-14 03:45:18 +0900128 * sysfs_get_active - get an active reference to sysfs_dirent
129 * @sd: sysfs_dirent to get an active reference to
130 *
131 * Get an active reference of @sd. This function is noop if @sd
132 * is NULL.
133 *
134 * RETURNS:
135 * Pointer to @sd on success, NULL on failure.
136 */
Adrian Bunk78e9d362007-10-24 18:23:32 +0200137static struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd)
Tejun Heob6b4a432007-06-14 03:45:18 +0900138{
Tejun Heo8619f972007-06-14 03:45:18 +0900139 if (unlikely(!sd))
140 return NULL;
141
142 while (1) {
143 int v, t;
144
145 v = atomic_read(&sd->s_active);
146 if (unlikely(v < 0))
147 return NULL;
148
149 t = atomic_cmpxchg(&sd->s_active, v, v + 1);
150 if (likely(t == v))
151 return sd;
152 if (t < 0)
153 return NULL;
154
155 cpu_relax();
Tejun Heob6b4a432007-06-14 03:45:18 +0900156 }
Tejun Heob6b4a432007-06-14 03:45:18 +0900157}
158
159/**
160 * sysfs_put_active - put an active reference to sysfs_dirent
161 * @sd: sysfs_dirent to put an active reference to
162 *
163 * Put an active reference to @sd. This function is noop if @sd
164 * is NULL.
165 */
Adrian Bunk78e9d362007-10-24 18:23:32 +0200166static void sysfs_put_active(struct sysfs_dirent *sd)
Tejun Heob6b4a432007-06-14 03:45:18 +0900167{
Tejun Heo8619f972007-06-14 03:45:18 +0900168 struct completion *cmpl;
169 int v;
170
171 if (unlikely(!sd))
172 return;
173
174 v = atomic_dec_return(&sd->s_active);
175 if (likely(v != SD_DEACTIVATED_BIAS))
176 return;
177
178 /* atomic_dec_return() is a mb(), we'll always see the updated
Tejun Heo0c73f182007-06-14 03:45:18 +0900179 * sd->s_sibling.
Tejun Heo8619f972007-06-14 03:45:18 +0900180 */
Tejun Heo0c73f182007-06-14 03:45:18 +0900181 cmpl = (void *)sd->s_sibling;
Tejun Heo8619f972007-06-14 03:45:18 +0900182 complete(cmpl);
Tejun Heob6b4a432007-06-14 03:45:18 +0900183}
184
185/**
186 * sysfs_get_active_two - get active references to sysfs_dirent and parent
187 * @sd: sysfs_dirent of interest
188 *
189 * Get active reference to @sd and its parent. Parent's active
190 * reference is grabbed first. This function is noop if @sd is
191 * NULL.
192 *
193 * RETURNS:
194 * Pointer to @sd on success, NULL on failure.
195 */
196struct sysfs_dirent *sysfs_get_active_two(struct sysfs_dirent *sd)
197{
198 if (sd) {
199 if (sd->s_parent && unlikely(!sysfs_get_active(sd->s_parent)))
200 return NULL;
201 if (unlikely(!sysfs_get_active(sd))) {
202 sysfs_put_active(sd->s_parent);
203 return NULL;
204 }
205 }
206 return sd;
207}
208
209/**
210 * sysfs_put_active_two - put active references to sysfs_dirent and parent
211 * @sd: sysfs_dirent of interest
212 *
213 * Put active references to @sd and its parent. This function is
214 * noop if @sd is NULL.
215 */
216void sysfs_put_active_two(struct sysfs_dirent *sd)
217{
218 if (sd) {
219 sysfs_put_active(sd);
220 sysfs_put_active(sd->s_parent);
221 }
222}
223
224/**
225 * sysfs_deactivate - deactivate sysfs_dirent
226 * @sd: sysfs_dirent to deactivate
227 *
Tejun Heo8619f972007-06-14 03:45:18 +0900228 * Deny new active references and drain existing ones.
Tejun Heob6b4a432007-06-14 03:45:18 +0900229 */
Tejun Heofb6896d2007-06-14 04:27:24 +0900230static void sysfs_deactivate(struct sysfs_dirent *sd)
Tejun Heob6b4a432007-06-14 03:45:18 +0900231{
Tejun Heo8619f972007-06-14 03:45:18 +0900232 DECLARE_COMPLETION_ONSTACK(wait);
233 int v;
Tejun Heob6b4a432007-06-14 03:45:18 +0900234
Tejun Heo380e6fb2007-06-14 04:27:22 +0900235 BUG_ON(sd->s_sibling || !(sd->s_flags & SYSFS_FLAG_REMOVED));
Tejun Heo0c73f182007-06-14 03:45:18 +0900236 sd->s_sibling = (void *)&wait;
Tejun Heo8619f972007-06-14 03:45:18 +0900237
238 /* atomic_add_return() is a mb(), put_active() will always see
Tejun Heo0c73f182007-06-14 03:45:18 +0900239 * the updated sd->s_sibling.
Tejun Heob6b4a432007-06-14 03:45:18 +0900240 */
Tejun Heo8619f972007-06-14 03:45:18 +0900241 v = atomic_add_return(SD_DEACTIVATED_BIAS, &sd->s_active);
242
243 if (v != SD_DEACTIVATED_BIAS)
244 wait_for_completion(&wait);
245
Tejun Heo0c73f182007-06-14 03:45:18 +0900246 sd->s_sibling = NULL;
Tejun Heob6b4a432007-06-14 03:45:18 +0900247}
248
Tejun Heo42b37df2007-06-14 03:45:17 +0900249static int sysfs_alloc_ino(ino_t *pino)
Tejun Heo2b611bb2007-06-14 03:45:13 +0900250{
251 int ino, rc;
252
253 retry:
254 spin_lock(&sysfs_ino_lock);
255 rc = ida_get_new_above(&sysfs_ino_ida, 2, &ino);
256 spin_unlock(&sysfs_ino_lock);
257
258 if (rc == -EAGAIN) {
259 if (ida_pre_get(&sysfs_ino_ida, GFP_KERNEL))
260 goto retry;
261 rc = -ENOMEM;
262 }
263
264 *pino = ino;
265 return rc;
266}
267
268static void sysfs_free_ino(ino_t ino)
269{
270 spin_lock(&sysfs_ino_lock);
271 ida_remove(&sysfs_ino_ida, ino);
272 spin_unlock(&sysfs_ino_lock);
273}
274
Tejun Heofa7f9122007-06-14 03:45:13 +0900275void release_sysfs_dirent(struct sysfs_dirent * sd)
276{
Tejun Heo13b30862007-06-14 03:45:14 +0900277 struct sysfs_dirent *parent_sd;
278
279 repeat:
Tejun Heo3007e992007-06-14 04:27:23 +0900280 /* Moving/renaming is always done while holding reference.
281 * sd->s_parent won't change beneath us.
282 */
Tejun Heo13b30862007-06-14 03:45:14 +0900283 parent_sd = sd->s_parent;
284
Tejun Heob402d722007-06-14 04:27:21 +0900285 if (sysfs_type(sd) == SYSFS_KOBJ_LINK)
Tejun Heob1fc3d62007-09-20 16:05:11 +0900286 sysfs_put(sd->s_symlink.target_sd);
Tejun Heob402d722007-06-14 04:27:21 +0900287 if (sysfs_type(sd) & SYSFS_COPY_NAME)
Tejun Heo0c096b52007-06-14 03:45:15 +0900288 kfree(sd->s_name);
Eric W. Biederman4c3da222009-11-04 02:50:06 -0800289 if (sd->s_iattr && sd->s_iattr->ia_secdata)
290 security_release_secctx(sd->s_iattr->ia_secdata,
291 sd->s_iattr->ia_secdata_len);
Tejun Heofa7f9122007-06-14 03:45:13 +0900292 kfree(sd->s_iattr);
Tejun Heo2b611bb2007-06-14 03:45:13 +0900293 sysfs_free_ino(sd->s_ino);
Tejun Heofa7f9122007-06-14 03:45:13 +0900294 kmem_cache_free(sysfs_dir_cachep, sd);
Tejun Heo13b30862007-06-14 03:45:14 +0900295
296 sd = parent_sd;
297 if (sd && atomic_dec_and_test(&sd->s_count))
298 goto repeat;
Tejun Heofa7f9122007-06-14 03:45:13 +0900299}
300
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800301static int sysfs_dentry_delete(struct dentry *dentry)
302{
303 struct sysfs_dirent *sd = dentry->d_fsdata;
304 return !!(sd->s_flags & SYSFS_FLAG_REMOVED);
305}
306
307static int sysfs_dentry_revalidate(struct dentry *dentry, struct nameidata *nd)
308{
309 struct sysfs_dirent *sd = dentry->d_fsdata;
310 int is_dir;
311
312 mutex_lock(&sysfs_mutex);
313
314 /* The sysfs dirent has been deleted */
315 if (sd->s_flags & SYSFS_FLAG_REMOVED)
316 goto out_bad;
317
318 mutex_unlock(&sysfs_mutex);
319out_valid:
320 return 1;
321out_bad:
322 /* Remove the dentry from the dcache hashes.
323 * If this is a deleted dentry we use d_drop instead of d_delete
324 * so sysfs doesn't need to cope with negative dentries.
325 */
326 is_dir = (sysfs_type(sd) == SYSFS_DIR);
327 mutex_unlock(&sysfs_mutex);
328 if (is_dir) {
329 /* If we have submounts we must allow the vfs caches
330 * to lie about the state of the filesystem to prevent
331 * leaks and other nasty things.
332 */
333 if (have_submounts(dentry))
334 goto out_valid;
335 shrink_dcache_parent(dentry);
336 }
337 d_drop(dentry);
338 return 0;
339}
340
Eric W. Biederman28a027c2009-11-07 23:27:00 -0800341static void sysfs_dentry_iput(struct dentry *dentry, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342{
343 struct sysfs_dirent * sd = dentry->d_fsdata;
344
Eric W. Biederman5a26b792007-08-20 21:36:30 +0900345 sysfs_put(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 iput(inode);
347}
348
Al Viroee1ec322009-02-20 06:01:46 +0000349static const struct dentry_operations sysfs_dentry_ops = {
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800350 .d_revalidate = sysfs_dentry_revalidate,
351 .d_delete = sysfs_dentry_delete,
Eric W. Biederman28a027c2009-11-07 23:27:00 -0800352 .d_iput = sysfs_dentry_iput,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353};
354
Tejun Heo3e519032007-06-14 03:45:15 +0900355struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356{
Tejun Heo0c096b52007-06-14 03:45:15 +0900357 char *dup_name = NULL;
Akinobu Mita01da2422007-07-14 11:03:35 +0900358 struct sysfs_dirent *sd;
Tejun Heo0c096b52007-06-14 03:45:15 +0900359
360 if (type & SYSFS_COPY_NAME) {
361 name = dup_name = kstrdup(name, GFP_KERNEL);
362 if (!name)
Akinobu Mita01da2422007-07-14 11:03:35 +0900363 return NULL;
Tejun Heo0c096b52007-06-14 03:45:15 +0900364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800366 sd = kmem_cache_zalloc(sysfs_dir_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 if (!sd)
Akinobu Mita01da2422007-07-14 11:03:35 +0900368 goto err_out1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Tejun Heo0c096b52007-06-14 03:45:15 +0900370 if (sysfs_alloc_ino(&sd->s_ino))
Akinobu Mita01da2422007-07-14 11:03:35 +0900371 goto err_out2;
Tejun Heo2b611bb2007-06-14 03:45:13 +0900372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 atomic_set(&sd->s_count, 1);
Tejun Heo8619f972007-06-14 03:45:18 +0900374 atomic_set(&sd->s_active, 0);
Tejun Heoa26cd722007-06-14 03:45:14 +0900375
Tejun Heo0c096b52007-06-14 03:45:15 +0900376 sd->s_name = name;
Tejun Heoa26cd722007-06-14 03:45:14 +0900377 sd->s_mode = mode;
Tejun Heob402d722007-06-14 04:27:21 +0900378 sd->s_flags = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 return sd;
Tejun Heo0c096b52007-06-14 03:45:15 +0900381
Akinobu Mita01da2422007-07-14 11:03:35 +0900382 err_out2:
Tejun Heo0c096b52007-06-14 03:45:15 +0900383 kmem_cache_free(sysfs_dir_cachep, sd);
Akinobu Mita01da2422007-07-14 11:03:35 +0900384 err_out1:
385 kfree(dup_name);
Tejun Heo0c096b52007-06-14 03:45:15 +0900386 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
388
Tejun Heofb6896d2007-06-14 04:27:24 +0900389static int sysfs_ilookup_test(struct inode *inode, void *arg)
390{
391 struct sysfs_dirent *sd = arg;
392 return inode->i_ino == sd->s_ino;
393}
394
Tejun Heo3007e992007-06-14 04:27:23 +0900395/**
Tejun Heofb6896d2007-06-14 04:27:24 +0900396 * sysfs_addrm_start - prepare for sysfs_dirent add/remove
397 * @acxt: pointer to sysfs_addrm_cxt to be used
398 * @parent_sd: parent sysfs_dirent
Tejun Heo3007e992007-06-14 04:27:23 +0900399 *
Tejun Heofb6896d2007-06-14 04:27:24 +0900400 * This function is called when the caller is about to add or
401 * remove sysfs_dirent under @parent_sd. This function acquires
402 * sysfs_mutex, grabs inode for @parent_sd if available and lock
403 * i_mutex of it. @acxt is used to keep and pass context to
404 * other addrm functions.
Tejun Heo3007e992007-06-14 04:27:23 +0900405 *
406 * LOCKING:
Tejun Heofb6896d2007-06-14 04:27:24 +0900407 * Kernel thread context (may sleep). sysfs_mutex is locked on
408 * return. i_mutex of parent inode is locked on return if
409 * available.
Tejun Heo3007e992007-06-14 04:27:23 +0900410 */
Tejun Heofb6896d2007-06-14 04:27:24 +0900411void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt,
412 struct sysfs_dirent *parent_sd)
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700413{
Tejun Heofb6896d2007-06-14 04:27:24 +0900414 struct inode *inode;
Tejun Heoa26cd722007-06-14 03:45:14 +0900415
Tejun Heofb6896d2007-06-14 04:27:24 +0900416 memset(acxt, 0, sizeof(*acxt));
417 acxt->parent_sd = parent_sd;
418
Tejun Heo45c076c2008-09-28 07:48:08 +0900419 /* Lookup parent inode. inode initialization is protected by
420 * sysfs_mutex, so inode existence can be determined by
421 * looking up inode while holding sysfs_mutex.
Tejun Heofb6896d2007-06-14 04:27:24 +0900422 */
423 mutex_lock(&sysfs_mutex);
424
Tejun Heo45c076c2008-09-28 07:48:08 +0900425 inode = ilookup5(sysfs_sb, parent_sd->s_ino, sysfs_ilookup_test,
426 parent_sd);
427 if (inode) {
428 WARN_ON(inode->i_state & I_NEW);
Tejun Heofb6896d2007-06-14 04:27:24 +0900429
Tejun Heofb6896d2007-06-14 04:27:24 +0900430 /* parent inode available */
431 acxt->parent_inode = inode;
432
433 /* sysfs_mutex is below i_mutex in lock hierarchy.
434 * First, trylock i_mutex. If fails, unlock
435 * sysfs_mutex and lock them in order.
436 */
437 if (!mutex_trylock(&inode->i_mutex)) {
438 mutex_unlock(&sysfs_mutex);
439 mutex_lock(&inode->i_mutex);
440 mutex_lock(&sysfs_mutex);
441 }
Tejun Heo45c076c2008-09-28 07:48:08 +0900442 }
Tejun Heofb6896d2007-06-14 04:27:24 +0900443}
444
445/**
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200446 * __sysfs_add_one - add sysfs_dirent to parent without warning
447 * @acxt: addrm context to use
448 * @sd: sysfs_dirent to be added
449 *
450 * Get @acxt->parent_sd and set sd->s_parent to it and increment
451 * nlink of parent inode if @sd is a directory and link into the
452 * children list of the parent.
453 *
454 * This function should be called between calls to
455 * sysfs_addrm_start() and sysfs_addrm_finish() and should be
456 * passed the same @acxt as passed to sysfs_addrm_start().
457 *
458 * LOCKING:
459 * Determined by sysfs_addrm_start().
460 *
461 * RETURNS:
462 * 0 on success, -EEXIST if entry with the given name already
463 * exists.
464 */
465int __sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
466{
Eric W. Biederman6b0bfe92009-11-20 16:08:51 -0800467 struct sysfs_inode_attrs *ps_iattr;
468
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200469 if (sysfs_find_dirent(acxt->parent_sd, sd->s_name))
470 return -EEXIST;
471
472 sd->s_parent = sysfs_get(acxt->parent_sd);
473
474 if (sysfs_type(sd) == SYSFS_DIR && acxt->parent_inode)
475 inc_nlink(acxt->parent_inode);
476
477 acxt->cnt++;
478
479 sysfs_link_sibling(sd);
480
Eric W. Biederman6b0bfe92009-11-20 16:08:51 -0800481 /* Update timestamps on the parent */
482 ps_iattr = acxt->parent_sd->s_iattr;
483 if (ps_iattr) {
484 struct iattr *ps_iattrs = &ps_iattr->ia_iattr;
485 ps_iattrs->ia_ctime = ps_iattrs->ia_mtime = CURRENT_TIME;
486 }
487
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200488 return 0;
489}
490
491/**
Alex Chiang425cb022009-02-12 10:56:59 -0700492 * sysfs_pathname - return full path to sysfs dirent
493 * @sd: sysfs_dirent whose path we want
494 * @path: caller allocated buffer
495 *
496 * Gives the name "/" to the sysfs_root entry; any path returned
497 * is relative to wherever sysfs is mounted.
498 *
499 * XXX: does no error checking on @path size
500 */
501static char *sysfs_pathname(struct sysfs_dirent *sd, char *path)
502{
503 if (sd->s_parent) {
504 sysfs_pathname(sd->s_parent, path);
505 strcat(path, "/");
506 }
507 strcat(path, sd->s_name);
508 return path;
509}
510
511/**
Tejun Heofb6896d2007-06-14 04:27:24 +0900512 * sysfs_add_one - add sysfs_dirent to parent
513 * @acxt: addrm context to use
514 * @sd: sysfs_dirent to be added
515 *
516 * Get @acxt->parent_sd and set sd->s_parent to it and increment
Tejun Heo181b2e42007-09-20 16:05:09 +0900517 * nlink of parent inode if @sd is a directory and link into the
518 * children list of the parent.
Tejun Heofb6896d2007-06-14 04:27:24 +0900519 *
520 * This function should be called between calls to
521 * sysfs_addrm_start() and sysfs_addrm_finish() and should be
522 * passed the same @acxt as passed to sysfs_addrm_start().
523 *
524 * LOCKING:
525 * Determined by sysfs_addrm_start().
Tejun Heo23dc2792007-08-02 21:38:03 +0900526 *
527 * RETURNS:
528 * 0 on success, -EEXIST if entry with the given name already
529 * exists.
Tejun Heofb6896d2007-06-14 04:27:24 +0900530 */
Tejun Heo23dc2792007-08-02 21:38:03 +0900531int sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
Tejun Heofb6896d2007-06-14 04:27:24 +0900532{
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200533 int ret;
Tejun Heo23dc2792007-08-02 21:38:03 +0900534
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200535 ret = __sysfs_add_one(acxt, sd);
Alex Chiang425cb022009-02-12 10:56:59 -0700536 if (ret == -EEXIST) {
537 char *path = kzalloc(PATH_MAX, GFP_KERNEL);
538 WARN(1, KERN_WARNING
539 "sysfs: cannot create duplicate filename '%s'\n",
540 (path == NULL) ? sd->s_name :
541 strcat(strcat(sysfs_pathname(acxt->parent_sd, path), "/"),
542 sd->s_name));
543 kfree(path);
544 }
545
Cornelia Huck36ce6da2008-06-10 11:09:08 +0200546 return ret;
Tejun Heofb6896d2007-06-14 04:27:24 +0900547}
548
549/**
550 * sysfs_remove_one - remove sysfs_dirent from parent
551 * @acxt: addrm context to use
Jean Delvare9fd5b1c2008-01-08 18:11:24 +0100552 * @sd: sysfs_dirent to be removed
Tejun Heofb6896d2007-06-14 04:27:24 +0900553 *
554 * Mark @sd removed and drop nlink of parent inode if @sd is a
Tejun Heo181b2e42007-09-20 16:05:09 +0900555 * directory. @sd is unlinked from the children list.
Tejun Heofb6896d2007-06-14 04:27:24 +0900556 *
557 * This function should be called between calls to
558 * sysfs_addrm_start() and sysfs_addrm_finish() and should be
559 * passed the same @acxt as passed to sysfs_addrm_start().
560 *
561 * LOCKING:
562 * Determined by sysfs_addrm_start().
563 */
564void sysfs_remove_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
565{
Eric W. Biederman6b0bfe92009-11-20 16:08:51 -0800566 struct sysfs_inode_attrs *ps_iattr;
567
Tejun Heo41fc1c22007-08-02 21:38:03 +0900568 BUG_ON(sd->s_flags & SYSFS_FLAG_REMOVED);
569
570 sysfs_unlink_sibling(sd);
Tejun Heofb6896d2007-06-14 04:27:24 +0900571
Eric W. Biederman6b0bfe92009-11-20 16:08:51 -0800572 /* Update timestamps on the parent */
573 ps_iattr = acxt->parent_sd->s_iattr;
574 if (ps_iattr) {
575 struct iattr *ps_iattrs = &ps_iattr->ia_iattr;
576 ps_iattrs->ia_ctime = ps_iattrs->ia_mtime = CURRENT_TIME;
577 }
578
Tejun Heofb6896d2007-06-14 04:27:24 +0900579 sd->s_flags |= SYSFS_FLAG_REMOVED;
580 sd->s_sibling = acxt->removed;
581 acxt->removed = sd;
582
583 if (sysfs_type(sd) == SYSFS_DIR && acxt->parent_inode)
584 drop_nlink(acxt->parent_inode);
585
586 acxt->cnt++;
587}
588
589/**
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800590 * sysfs_dec_nlink - Decrement link count for the specified sysfs_dirent
Tejun Heoa0edd7c2007-06-14 04:27:24 +0900591 * @sd: target sysfs_dirent
592 *
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800593 * Decrement nlink for @sd. @sd must have been unlinked from its
Tejun Heoa0edd7c2007-06-14 04:27:24 +0900594 * parent on entry to this function such that it can't be looked
595 * up anymore.
Tejun Heoa0edd7c2007-06-14 04:27:24 +0900596 */
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800597static void sysfs_dec_nlink(struct sysfs_dirent *sd)
Tejun Heoa0edd7c2007-06-14 04:27:24 +0900598{
Tejun Heoa0edd7c2007-06-14 04:27:24 +0900599 struct inode *inode;
600
Eric W. Biederman89bec092007-08-20 21:36:30 +0900601 inode = ilookup(sysfs_sb, sd->s_ino);
602 if (!inode)
603 return;
604
Tejun Heoa0edd7c2007-06-14 04:27:24 +0900605 /* adjust nlink and update timestamp */
Eric W. Biederman89bec092007-08-20 21:36:30 +0900606 mutex_lock(&inode->i_mutex);
Tejun Heoa0edd7c2007-06-14 04:27:24 +0900607
Eric W. Biederman89bec092007-08-20 21:36:30 +0900608 inode->i_ctime = CURRENT_TIME;
609 drop_nlink(inode);
610 if (sysfs_type(sd) == SYSFS_DIR)
Tejun Heoa0edd7c2007-06-14 04:27:24 +0900611 drop_nlink(inode);
Tejun Heoa0edd7c2007-06-14 04:27:24 +0900612
Eric W. Biederman89bec092007-08-20 21:36:30 +0900613 mutex_unlock(&inode->i_mutex);
614
615 iput(inode);
Tejun Heoa0edd7c2007-06-14 04:27:24 +0900616}
617
618/**
Tejun Heofb6896d2007-06-14 04:27:24 +0900619 * sysfs_addrm_finish - finish up sysfs_dirent add/remove
620 * @acxt: addrm context to finish up
621 *
622 * Finish up sysfs_dirent add/remove. Resources acquired by
623 * sysfs_addrm_start() are released and removed sysfs_dirents are
624 * cleaned up. Timestamps on the parent inode are updated.
625 *
626 * LOCKING:
627 * All mutexes acquired by sysfs_addrm_start() are released.
Tejun Heofb6896d2007-06-14 04:27:24 +0900628 */
Tejun Heo990e53f2007-08-02 21:38:03 +0900629void sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt)
Tejun Heofb6896d2007-06-14 04:27:24 +0900630{
631 /* release resources acquired by sysfs_addrm_start() */
632 mutex_unlock(&sysfs_mutex);
633 if (acxt->parent_inode) {
634 struct inode *inode = acxt->parent_inode;
635
636 /* if added/removed, update timestamps on the parent */
637 if (acxt->cnt)
638 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
639
640 mutex_unlock(&inode->i_mutex);
641 iput(inode);
Tejun Heo13b30862007-06-14 03:45:14 +0900642 }
Tejun Heofb6896d2007-06-14 04:27:24 +0900643
644 /* kill removed sysfs_dirents */
645 while (acxt->removed) {
646 struct sysfs_dirent *sd = acxt->removed;
647
648 acxt->removed = sd->s_sibling;
649 sd->s_sibling = NULL;
650
Eric W. Biedermane8f077c2009-11-07 23:27:01 -0800651 sysfs_dec_nlink(sd);
Tejun Heofb6896d2007-06-14 04:27:24 +0900652 sysfs_deactivate(sd);
Eric W. Biedermane0edd3c2009-03-04 11:57:20 -0800653 unmap_bin_file(sd);
Tejun Heofb6896d2007-06-14 04:27:24 +0900654 sysfs_put(sd);
655 }
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700656}
657
Tejun Heof0b0af42007-06-14 04:27:22 +0900658/**
659 * sysfs_find_dirent - find sysfs_dirent with the given name
660 * @parent_sd: sysfs_dirent to search under
661 * @name: name to look for
Maneesh Sonic5168652006-03-09 19:40:14 +0530662 *
Tejun Heof0b0af42007-06-14 04:27:22 +0900663 * Look for sysfs_dirent with name @name under @parent_sd.
Maneesh Sonic5168652006-03-09 19:40:14 +0530664 *
Tejun Heof0b0af42007-06-14 04:27:22 +0900665 * LOCKING:
Tejun Heo3007e992007-06-14 04:27:23 +0900666 * mutex_lock(sysfs_mutex)
Tejun Heof0b0af42007-06-14 04:27:22 +0900667 *
668 * RETURNS:
669 * Pointer to sysfs_dirent if found, NULL if not.
Maneesh Sonic5168652006-03-09 19:40:14 +0530670 */
Tejun Heof0b0af42007-06-14 04:27:22 +0900671struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd,
672 const unsigned char *name)
Maneesh Sonic5168652006-03-09 19:40:14 +0530673{
Tejun Heof0b0af42007-06-14 04:27:22 +0900674 struct sysfs_dirent *sd;
Maneesh Sonic5168652006-03-09 19:40:14 +0530675
Tejun Heobc747f32007-09-20 16:05:12 +0900676 for (sd = parent_sd->s_dir.children; sd; sd = sd->s_sibling)
Eric W. Biederman3efa65b2007-08-20 21:36:30 +0900677 if (!strcmp(sd->s_name, name))
Tejun Heof0b0af42007-06-14 04:27:22 +0900678 return sd;
679 return NULL;
680}
Maneesh Sonic5168652006-03-09 19:40:14 +0530681
Tejun Heof0b0af42007-06-14 04:27:22 +0900682/**
683 * sysfs_get_dirent - find and get sysfs_dirent with the given name
684 * @parent_sd: sysfs_dirent to search under
685 * @name: name to look for
686 *
687 * Look for sysfs_dirent with name @name under @parent_sd and get
688 * it if found.
689 *
690 * LOCKING:
Tejun Heo3007e992007-06-14 04:27:23 +0900691 * Kernel thread context (may sleep). Grabs sysfs_mutex.
Tejun Heof0b0af42007-06-14 04:27:22 +0900692 *
693 * RETURNS:
694 * Pointer to sysfs_dirent if found, NULL if not.
695 */
696struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
697 const unsigned char *name)
698{
699 struct sysfs_dirent *sd;
700
Tejun Heo3007e992007-06-14 04:27:23 +0900701 mutex_lock(&sysfs_mutex);
Tejun Heof0b0af42007-06-14 04:27:22 +0900702 sd = sysfs_find_dirent(parent_sd, name);
703 sysfs_get(sd);
Tejun Heo3007e992007-06-14 04:27:23 +0900704 mutex_unlock(&sysfs_mutex);
Tejun Heof0b0af42007-06-14 04:27:22 +0900705
706 return sd;
Maneesh Sonic5168652006-03-09 19:40:14 +0530707}
Neil Brownf1282c82008-07-16 08:58:04 +1000708EXPORT_SYMBOL_GPL(sysfs_get_dirent);
Maneesh Sonic5168652006-03-09 19:40:14 +0530709
Tejun Heo608e2662007-06-14 04:27:22 +0900710static int create_dir(struct kobject *kobj, struct sysfs_dirent *parent_sd,
711 const char *name, struct sysfs_dirent **p_sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 umode_t mode = S_IFDIR| S_IRWXU | S_IRUGO | S_IXUGO;
Tejun Heo51225032007-06-14 04:27:25 +0900714 struct sysfs_addrm_cxt acxt;
Tejun Heodfeb9fb2007-06-14 03:45:14 +0900715 struct sysfs_dirent *sd;
Tejun Heo23dc2792007-08-02 21:38:03 +0900716 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Tejun Heofc9f54b2007-06-14 03:45:17 +0900718 /* allocate */
Tejun Heo3e519032007-06-14 03:45:15 +0900719 sd = sysfs_new_dirent(name, mode, SYSFS_DIR);
Tejun Heoa26cd722007-06-14 03:45:14 +0900720 if (!sd)
Tejun Heo51225032007-06-14 04:27:25 +0900721 return -ENOMEM;
Tejun Heob1fc3d62007-09-20 16:05:11 +0900722 sd->s_dir.kobj = kobj;
Tejun Heodfeb9fb2007-06-14 03:45:14 +0900723
Tejun Heo51225032007-06-14 04:27:25 +0900724 /* link in */
725 sysfs_addrm_start(&acxt, parent_sd);
Tejun Heo23dc2792007-08-02 21:38:03 +0900726 rc = sysfs_add_one(&acxt, sd);
727 sysfs_addrm_finish(&acxt);
Tejun Heo967e35d2007-07-18 16:38:11 +0900728
Tejun Heo23dc2792007-08-02 21:38:03 +0900729 if (rc == 0)
730 *p_sd = sd;
731 else
Tejun Heo967e35d2007-07-18 16:38:11 +0900732 sysfs_put(sd);
Tejun Heofc9f54b2007-06-14 03:45:17 +0900733
Tejun Heo23dc2792007-08-02 21:38:03 +0900734 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
736
Tejun Heo608e2662007-06-14 04:27:22 +0900737int sysfs_create_subdir(struct kobject *kobj, const char *name,
738 struct sysfs_dirent **p_sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Tejun Heo608e2662007-06-14 04:27:22 +0900740 return create_dir(kobj, kobj->sd, name, p_sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
743/**
744 * sysfs_create_dir - create a directory for an object.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 * @kobj: object we're creating directory for.
746 */
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900747int sysfs_create_dir(struct kobject * kobj)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
Tejun Heo608e2662007-06-14 04:27:22 +0900749 struct sysfs_dirent *parent_sd, *sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 int error = 0;
751
752 BUG_ON(!kobj);
753
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900754 if (kobj->parent)
Tejun Heo608e2662007-06-14 04:27:22 +0900755 parent_sd = kobj->parent->sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 else
Eric W. Biederman7d0c7d62007-08-20 21:36:30 +0900757 parent_sd = &sysfs_root;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Tejun Heo608e2662007-06-14 04:27:22 +0900759 error = create_dir(kobj, parent_sd, kobject_name(kobj), &sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (!error)
Tejun Heo608e2662007-06-14 04:27:22 +0900761 kobj->sd = sd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return error;
763}
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765static struct dentry * sysfs_lookup(struct inode *dir, struct dentry *dentry,
766 struct nameidata *nd)
767{
Tejun Heo6cb52142007-07-31 19:15:08 +0900768 struct dentry *ret = NULL;
Tejun Heoa7a04752007-08-02 21:38:02 +0900769 struct sysfs_dirent *parent_sd = dentry->d_parent->d_fsdata;
770 struct sysfs_dirent *sd;
Tejun Heofc9f54b2007-06-14 03:45:17 +0900771 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Tejun Heo6cb52142007-07-31 19:15:08 +0900773 mutex_lock(&sysfs_mutex);
774
Eric W. Biederman94777e02007-08-20 21:36:30 +0900775 sd = sysfs_find_dirent(parent_sd, dentry->d_name.name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
Tejun Heofc9f54b2007-06-14 03:45:17 +0900777 /* no such entry */
Tejun Heoe49452c2008-01-16 12:06:14 +0900778 if (!sd) {
779 ret = ERR_PTR(-ENOENT);
Tejun Heo6cb52142007-07-31 19:15:08 +0900780 goto out_unlock;
Tejun Heoe49452c2008-01-16 12:06:14 +0900781 }
Tejun Heofc9f54b2007-06-14 03:45:17 +0900782
783 /* attach dentry and inode */
Tejun Heo8312a8d2007-06-14 03:45:17 +0900784 inode = sysfs_get_inode(sd);
Tejun Heo6cb52142007-07-31 19:15:08 +0900785 if (!inode) {
786 ret = ERR_PTR(-ENOMEM);
787 goto out_unlock;
788 }
Tejun Heo3007e992007-06-14 04:27:23 +0900789
Tejun Heod6b4fd22007-09-20 16:05:11 +0900790 /* instantiate and hash dentry */
791 dentry->d_op = &sysfs_dentry_ops;
792 dentry->d_fsdata = sysfs_get(sd);
Eric W. Biederman119dd522007-08-20 21:36:29 +0900793 d_instantiate(dentry, inode);
Tejun Heod6b4fd22007-09-20 16:05:11 +0900794 d_rehash(dentry);
Tejun Heofc9f54b2007-06-14 03:45:17 +0900795
Tejun Heo6cb52142007-07-31 19:15:08 +0900796 out_unlock:
Tejun Heo3007e992007-06-14 04:27:23 +0900797 mutex_unlock(&sysfs_mutex);
Tejun Heo6cb52142007-07-31 19:15:08 +0900798 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799}
800
Arjan van de Venc5ef1c42007-02-12 00:55:40 -0800801const struct inode_operations sysfs_dir_inode_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 .lookup = sysfs_lookup,
Eric W. Biedermane61ab4a2009-11-20 16:08:53 -0800803 .permission = sysfs_permission,
Maneesh Soni988d1862005-05-31 10:39:14 +0530804 .setattr = sysfs_setattr,
Eric W. Biedermane61ab4a2009-11-20 16:08:53 -0800805 .getattr = sysfs_getattr,
David P. Quigleyddd29ec2009-09-09 14:25:37 -0400806 .setxattr = sysfs_setxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807};
808
Tejun Heo608e2662007-06-14 04:27:22 +0900809static void remove_dir(struct sysfs_dirent *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Tejun Heofb6896d2007-06-14 04:27:24 +0900811 struct sysfs_addrm_cxt acxt;
812
813 sysfs_addrm_start(&acxt, sd->s_parent);
Tejun Heofb6896d2007-06-14 04:27:24 +0900814 sysfs_remove_one(&acxt, sd);
815 sysfs_addrm_finish(&acxt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
Tejun Heo608e2662007-06-14 04:27:22 +0900818void sysfs_remove_subdir(struct sysfs_dirent *sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Tejun Heo608e2662007-06-14 04:27:22 +0900820 remove_dir(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821}
822
823
Tejun Heo608e2662007-06-14 04:27:22 +0900824static void __sysfs_remove_dir(struct sysfs_dirent *dir_sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
Tejun Heofb6896d2007-06-14 04:27:24 +0900826 struct sysfs_addrm_cxt acxt;
Tejun Heo0c73f182007-06-14 03:45:18 +0900827 struct sysfs_dirent **pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
Tejun Heo608e2662007-06-14 04:27:22 +0900829 if (!dir_sd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 return;
831
Tejun Heo608e2662007-06-14 04:27:22 +0900832 pr_debug("sysfs %s: removing dir\n", dir_sd->s_name);
Tejun Heofb6896d2007-06-14 04:27:24 +0900833 sysfs_addrm_start(&acxt, dir_sd);
Tejun Heobc747f32007-09-20 16:05:12 +0900834 pos = &dir_sd->s_dir.children;
Tejun Heo0c73f182007-06-14 03:45:18 +0900835 while (*pos) {
836 struct sysfs_dirent *sd = *pos;
837
Eric W. Biederman3efa65b2007-08-20 21:36:30 +0900838 if (sysfs_type(sd) != SYSFS_DIR)
Tejun Heofb6896d2007-06-14 04:27:24 +0900839 sysfs_remove_one(&acxt, sd);
Tejun Heo41fc1c22007-08-02 21:38:03 +0900840 else
Tejun Heo0c73f182007-06-14 03:45:18 +0900841 pos = &(*pos)->s_sibling;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 }
Tejun Heofb6896d2007-06-14 04:27:24 +0900843 sysfs_addrm_finish(&acxt);
Tejun Heo0ab66082007-06-14 03:45:16 +0900844
Tejun Heo608e2662007-06-14 04:27:22 +0900845 remove_dir(dir_sd);
Eric W. Biedermanb592fcf2007-01-24 12:35:52 -0700846}
847
848/**
849 * sysfs_remove_dir - remove an object's directory.
850 * @kobj: object.
851 *
852 * The only thing special about this is that we remove any files in
853 * the directory before we remove the directory, and we've inlined
854 * what used to be sysfs_rmdir() below, instead of calling separately.
855 */
856
857void sysfs_remove_dir(struct kobject * kobj)
858{
Tejun Heo608e2662007-06-14 04:27:22 +0900859 struct sysfs_dirent *sd = kobj->sd;
Tejun Heoaecdced2007-06-14 03:45:15 +0900860
Tejun Heo5f995322007-06-14 04:27:23 +0900861 spin_lock(&sysfs_assoc_lock);
Tejun Heo608e2662007-06-14 04:27:22 +0900862 kobj->sd = NULL;
Tejun Heo5f995322007-06-14 04:27:23 +0900863 spin_unlock(&sysfs_assoc_lock);
Tejun Heoaecdced2007-06-14 03:45:15 +0900864
Tejun Heo608e2662007-06-14 04:27:22 +0900865 __sysfs_remove_dir(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
867
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900868int sysfs_rename_dir(struct kobject * kobj, const char *new_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869{
Eric W. Biederman9918f9a2007-08-20 21:36:31 +0900870 struct sysfs_dirent *sd = kobj->sd;
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900871 struct dentry *parent = NULL;
Tejun Heo51225032007-06-14 04:27:25 +0900872 struct dentry *old_dentry = NULL, *new_dentry = NULL;
873 const char *dup_name = NULL;
Tejun Heo996b7372007-06-14 03:45:14 +0900874 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Eric W. Biederman932ea2e2007-08-20 21:36:30 +0900876 mutex_lock(&sysfs_rename_mutex);
877
Eric W. Biederman9918f9a2007-08-20 21:36:31 +0900878 error = 0;
879 if (strcmp(sd->s_name, new_name) == 0)
880 goto out; /* nothing to rename */
881
Tejun Heoff869de2007-08-02 21:38:02 +0900882 /* get the original dentry */
Tejun Heo51225032007-06-14 04:27:25 +0900883 old_dentry = sysfs_get_dentry(sd);
884 if (IS_ERR(old_dentry)) {
885 error = PTR_ERR(old_dentry);
Tejun Heo456ef152008-01-16 12:10:53 +0900886 old_dentry = NULL;
Eric W. Biederman9918f9a2007-08-20 21:36:31 +0900887 goto out;
Tejun Heo51225032007-06-14 04:27:25 +0900888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Tejun Heoff869de2007-08-02 21:38:02 +0900890 parent = old_dentry->d_parent;
Tejun Heo51225032007-06-14 04:27:25 +0900891
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900892 /* lock parent and get dentry for new name */
893 mutex_lock(&parent->d_inode->i_mutex);
Eric W. Biederman9918f9a2007-08-20 21:36:31 +0900894 mutex_lock(&sysfs_mutex);
Tejun Heo996b7372007-06-14 03:45:14 +0900895
896 error = -EEXIST;
Eric W. Biederman9918f9a2007-08-20 21:36:31 +0900897 if (sysfs_find_dirent(sd->s_parent, new_name))
898 goto out_unlock;
899
900 error = -ENOMEM;
901 new_dentry = d_alloc_name(parent, new_name);
902 if (!new_dentry)
Tejun Heo51225032007-06-14 04:27:25 +0900903 goto out_unlock;
Tejun Heo996b7372007-06-14 03:45:14 +0900904
Eric W. Biederman0b4a4fe2008-07-03 18:05:28 -0700905 /* rename sysfs_dirent */
Tejun Heo0c096b52007-06-14 03:45:15 +0900906 error = -ENOMEM;
907 new_name = dup_name = kstrdup(new_name, GFP_KERNEL);
908 if (!new_name)
Eric W. Biederman9918f9a2007-08-20 21:36:31 +0900909 goto out_unlock;
Tejun Heo996b7372007-06-14 03:45:14 +0900910
Tejun Heo51225032007-06-14 04:27:25 +0900911 dup_name = sd->s_name;
Tejun Heo0c096b52007-06-14 03:45:15 +0900912 sd->s_name = new_name;
913
Tejun Heoff869de2007-08-02 21:38:02 +0900914 /* rename */
Tejun Heo996b7372007-06-14 03:45:14 +0900915 d_add(new_dentry, NULL);
Eric W. Biederman5a26b792007-08-20 21:36:30 +0900916 d_move(old_dentry, new_dentry);
Tejun Heo996b7372007-06-14 03:45:14 +0900917
Tejun Heo996b7372007-06-14 03:45:14 +0900918 error = 0;
Tejun Heo996b7372007-06-14 03:45:14 +0900919 out_unlock:
Eric W. Biederman9918f9a2007-08-20 21:36:31 +0900920 mutex_unlock(&sysfs_mutex);
Eric W. Biederman90bc6132007-07-31 19:15:08 +0900921 mutex_unlock(&parent->d_inode->i_mutex);
Tejun Heo51225032007-06-14 04:27:25 +0900922 kfree(dup_name);
Tejun Heo51225032007-06-14 04:27:25 +0900923 dput(old_dentry);
924 dput(new_dentry);
Eric W. Biederman9918f9a2007-08-20 21:36:31 +0900925 out:
Eric W. Biederman932ea2e2007-08-20 21:36:30 +0900926 mutex_unlock(&sysfs_rename_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927 return error;
928}
929
Tejun Heo51225032007-06-14 04:27:25 +0900930int sysfs_move_dir(struct kobject *kobj, struct kobject *new_parent_kobj)
Cornelia Huck8a824722006-11-20 17:07:51 +0100931{
Tejun Heo51225032007-06-14 04:27:25 +0900932 struct sysfs_dirent *sd = kobj->sd;
933 struct sysfs_dirent *new_parent_sd;
934 struct dentry *old_parent, *new_parent = NULL;
935 struct dentry *old_dentry = NULL, *new_dentry = NULL;
Cornelia Huck8a824722006-11-20 17:07:51 +0100936 int error;
937
Eric W. Biederman932ea2e2007-08-20 21:36:30 +0900938 mutex_lock(&sysfs_rename_mutex);
Tejun Heo51225032007-06-14 04:27:25 +0900939 BUG_ON(!sd->s_parent);
Cornelia Hucka6a83572009-10-06 15:33:35 +0200940 new_parent_sd = (new_parent_kobj && new_parent_kobj->sd) ?
941 new_parent_kobj->sd : &sysfs_root;
Cornelia Huck8a824722006-11-20 17:07:51 +0100942
Eric W. Biederman45aaae92007-08-20 21:36:31 +0900943 error = 0;
944 if (sd->s_parent == new_parent_sd)
945 goto out; /* nothing to move */
946
Tejun Heo51225032007-06-14 04:27:25 +0900947 /* get dentries */
948 old_dentry = sysfs_get_dentry(sd);
949 if (IS_ERR(old_dentry)) {
950 error = PTR_ERR(old_dentry);
Tejun Heo456ef152008-01-16 12:10:53 +0900951 old_dentry = NULL;
Eric W. Biederman45aaae92007-08-20 21:36:31 +0900952 goto out;
Tejun Heo51225032007-06-14 04:27:25 +0900953 }
Eric W. Biederman5a26b792007-08-20 21:36:30 +0900954 old_parent = old_dentry->d_parent;
Tejun Heo51225032007-06-14 04:27:25 +0900955
956 new_parent = sysfs_get_dentry(new_parent_sd);
957 if (IS_ERR(new_parent)) {
958 error = PTR_ERR(new_parent);
Tejun Heo456ef152008-01-16 12:10:53 +0900959 new_parent = NULL;
Eric W. Biederman45aaae92007-08-20 21:36:31 +0900960 goto out;
Tejun Heo51225032007-06-14 04:27:25 +0900961 }
962
Cornelia Huck8a824722006-11-20 17:07:51 +0100963again:
Tejun Heo51225032007-06-14 04:27:25 +0900964 mutex_lock(&old_parent->d_inode->i_mutex);
965 if (!mutex_trylock(&new_parent->d_inode->i_mutex)) {
966 mutex_unlock(&old_parent->d_inode->i_mutex);
Cornelia Huck8a824722006-11-20 17:07:51 +0100967 goto again;
968 }
Eric W. Biederman45aaae92007-08-20 21:36:31 +0900969 mutex_lock(&sysfs_mutex);
Cornelia Huck8a824722006-11-20 17:07:51 +0100970
Eric W. Biederman45aaae92007-08-20 21:36:31 +0900971 error = -EEXIST;
972 if (sysfs_find_dirent(new_parent_sd, sd->s_name))
Tejun Heo51225032007-06-14 04:27:25 +0900973 goto out_unlock;
Eric W. Biederman45aaae92007-08-20 21:36:31 +0900974
975 error = -ENOMEM;
976 new_dentry = d_alloc_name(new_parent, sd->s_name);
977 if (!new_dentry)
978 goto out_unlock;
979
980 error = 0;
Cornelia Huck8a824722006-11-20 17:07:51 +0100981 d_add(new_dentry, NULL);
Eric W. Biederman5a26b792007-08-20 21:36:30 +0900982 d_move(old_dentry, new_dentry);
Cornelia Huck8a824722006-11-20 17:07:51 +0100983
984 /* Remove from old parent's list and insert into new parent's list. */
Tejun Heo0c73f182007-06-14 03:45:18 +0900985 sysfs_unlink_sibling(sd);
Tejun Heo7f7cfff2007-06-14 03:45:17 +0900986 sysfs_get(new_parent_sd);
Peter Oberparleiter0f58b442009-07-14 17:56:15 +0200987 drop_nlink(old_parent->d_inode);
Tejun Heo7f7cfff2007-06-14 03:45:17 +0900988 sysfs_put(sd->s_parent);
989 sd->s_parent = new_parent_sd;
Peter Oberparleiter0f58b442009-07-14 17:56:15 +0200990 inc_nlink(new_parent->d_inode);
Tejun Heo0c73f182007-06-14 03:45:18 +0900991 sysfs_link_sibling(sd);
Cornelia Huck8a824722006-11-20 17:07:51 +0100992
Tejun Heo51225032007-06-14 04:27:25 +0900993 out_unlock:
Eric W. Biederman45aaae92007-08-20 21:36:31 +0900994 mutex_unlock(&sysfs_mutex);
Tejun Heo51225032007-06-14 04:27:25 +0900995 mutex_unlock(&new_parent->d_inode->i_mutex);
996 mutex_unlock(&old_parent->d_inode->i_mutex);
Eric W. Biederman45aaae92007-08-20 21:36:31 +0900997 out:
Tejun Heo51225032007-06-14 04:27:25 +0900998 dput(new_parent);
999 dput(old_dentry);
1000 dput(new_dentry);
Eric W. Biederman932ea2e2007-08-20 21:36:30 +09001001 mutex_unlock(&sysfs_rename_mutex);
Cornelia Huck8a824722006-11-20 17:07:51 +01001002 return error;
1003}
1004
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005/* Relationship between s_mode and the DT_xxx types */
1006static inline unsigned char dt_type(struct sysfs_dirent *sd)
1007{
1008 return (sd->s_mode >> 12) & 15;
1009}
1010
1011static int sysfs_readdir(struct file * filp, void * dirent, filldir_t filldir)
1012{
Josef "Jeff" Sipekf427f5d2006-12-08 02:36:36 -08001013 struct dentry *dentry = filp->f_path.dentry;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 struct sysfs_dirent * parent_sd = dentry->d_fsdata;
Eric W. Biederman3efa65b2007-08-20 21:36:30 +09001015 struct sysfs_dirent *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 ino_t ino;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Eric W. Biederman3efa65b2007-08-20 21:36:30 +09001018 if (filp->f_pos == 0) {
1019 ino = parent_sd->s_ino;
1020 if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) == 0)
1021 filp->f_pos++;
1022 }
1023 if (filp->f_pos == 1) {
1024 if (parent_sd->s_parent)
1025 ino = parent_sd->s_parent->s_ino;
1026 else
Eric Sandeendc351252007-06-11 14:02:45 +09001027 ino = parent_sd->s_ino;
Eric W. Biederman3efa65b2007-08-20 21:36:30 +09001028 if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 filp->f_pos++;
Eric W. Biederman3efa65b2007-08-20 21:36:30 +09001030 }
1031 if ((filp->f_pos > 1) && (filp->f_pos < INT_MAX)) {
1032 mutex_lock(&sysfs_mutex);
1033
1034 /* Skip the dentries we have already reported */
Tejun Heobc747f32007-09-20 16:05:12 +09001035 pos = parent_sd->s_dir.children;
Eric W. Biederman3efa65b2007-08-20 21:36:30 +09001036 while (pos && (filp->f_pos > pos->s_ino))
1037 pos = pos->s_sibling;
1038
1039 for ( ; pos; pos = pos->s_sibling) {
1040 const char * name;
1041 int len;
1042
1043 name = pos->s_name;
1044 len = strlen(name);
1045 filp->f_pos = ino = pos->s_ino;
1046
1047 if (filldir(dirent, name, len, filp->f_pos, ino,
1048 dt_type(pos)) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 break;
Eric W. Biederman3efa65b2007-08-20 21:36:30 +09001050 }
1051 if (!pos)
1052 filp->f_pos = INT_MAX;
1053 mutex_unlock(&sysfs_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 }
1055 return 0;
1056}
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001059const struct file_operations sysfs_dir_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 .read = generic_read_dir,
1061 .readdir = sysfs_readdir,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +02001062 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063};