sysfs: Support sysfs_notify from atomic context with new sysfs_notify_dirent
[linux-2.6/kvm.git] / fs / sysfs / dir.c
blob53bc7fc31af3b3881807df4279a8bc83e5e3ed6a
1 /*
2 * fs/sysfs/dir.c - sysfs core and dir operation implementation
4 * Copyright (c) 2001-3 Patrick Mochel
5 * Copyright (c) 2007 SUSE Linux Products GmbH
6 * Copyright (c) 2007 Tejun Heo <teheo@suse.de>
8 * This file is released under the GPLv2.
10 * Please see Documentation/filesystems/sysfs.txt for more information.
13 #undef DEBUG
15 #include <linux/fs.h>
16 #include <linux/mount.h>
17 #include <linux/module.h>
18 #include <linux/kobject.h>
19 #include <linux/namei.h>
20 #include <linux/idr.h>
21 #include <linux/completion.h>
22 #include <linux/mutex.h>
23 #include <linux/slab.h>
24 #include "sysfs.h"
26 DEFINE_MUTEX(sysfs_mutex);
27 DEFINE_MUTEX(sysfs_rename_mutex);
28 DEFINE_SPINLOCK(sysfs_assoc_lock);
30 static DEFINE_SPINLOCK(sysfs_ino_lock);
31 static DEFINE_IDA(sysfs_ino_ida);
33 /**
34 * sysfs_link_sibling - link sysfs_dirent into sibling list
35 * @sd: sysfs_dirent of interest
37 * Link @sd into its sibling list which starts from
38 * sd->s_parent->s_dir.children.
40 * Locking:
41 * mutex_lock(sysfs_mutex)
43 static void sysfs_link_sibling(struct sysfs_dirent *sd)
45 struct sysfs_dirent *parent_sd = sd->s_parent;
46 struct sysfs_dirent **pos;
48 BUG_ON(sd->s_sibling);
50 /* Store directory entries in order by ino. This allows
51 * readdir to properly restart without having to add a
52 * cursor into the s_dir.children list.
54 for (pos = &parent_sd->s_dir.children; *pos; pos = &(*pos)->s_sibling) {
55 if (sd->s_ino < (*pos)->s_ino)
56 break;
58 sd->s_sibling = *pos;
59 *pos = sd;
62 /**
63 * sysfs_unlink_sibling - unlink sysfs_dirent from sibling list
64 * @sd: sysfs_dirent of interest
66 * Unlink @sd from its sibling list which starts from
67 * sd->s_parent->s_dir.children.
69 * Locking:
70 * mutex_lock(sysfs_mutex)
72 static void sysfs_unlink_sibling(struct sysfs_dirent *sd)
74 struct sysfs_dirent **pos;
76 for (pos = &sd->s_parent->s_dir.children; *pos;
77 pos = &(*pos)->s_sibling) {
78 if (*pos == sd) {
79 *pos = sd->s_sibling;
80 sd->s_sibling = NULL;
81 break;
86 /**
87 * sysfs_get_dentry - get dentry for the given sysfs_dirent
88 * @sd: sysfs_dirent of interest
90 * Get dentry for @sd. Dentry is looked up if currently not
91 * present. This function descends from the root looking up
92 * dentry for each step.
94 * LOCKING:
95 * mutex_lock(sysfs_rename_mutex)
97 * RETURNS:
98 * Pointer to found dentry on success, ERR_PTR() value on error.
100 struct dentry *sysfs_get_dentry(struct sysfs_dirent *sd)
102 struct dentry *dentry = dget(sysfs_sb->s_root);
104 while (dentry->d_fsdata != sd) {
105 struct sysfs_dirent *cur;
106 struct dentry *parent;
108 /* find the first ancestor which hasn't been looked up */
109 cur = sd;
110 while (cur->s_parent != dentry->d_fsdata)
111 cur = cur->s_parent;
113 /* look it up */
114 parent = dentry;
115 mutex_lock(&parent->d_inode->i_mutex);
116 dentry = lookup_one_noperm(cur->s_name, parent);
117 mutex_unlock(&parent->d_inode->i_mutex);
118 dput(parent);
120 if (IS_ERR(dentry))
121 break;
123 return dentry;
127 * sysfs_get_active - get an active reference to sysfs_dirent
128 * @sd: sysfs_dirent to get an active reference to
130 * Get an active reference of @sd. This function is noop if @sd
131 * is NULL.
133 * RETURNS:
134 * Pointer to @sd on success, NULL on failure.
136 static struct sysfs_dirent *sysfs_get_active(struct sysfs_dirent *sd)
138 if (unlikely(!sd))
139 return NULL;
141 while (1) {
142 int v, t;
144 v = atomic_read(&sd->s_active);
145 if (unlikely(v < 0))
146 return NULL;
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;
154 cpu_relax();
159 * sysfs_put_active - put an active reference to sysfs_dirent
160 * @sd: sysfs_dirent to put an active reference to
162 * Put an active reference to @sd. This function is noop if @sd
163 * is NULL.
165 static void sysfs_put_active(struct sysfs_dirent *sd)
167 struct completion *cmpl;
168 int v;
170 if (unlikely(!sd))
171 return;
173 v = atomic_dec_return(&sd->s_active);
174 if (likely(v != SD_DEACTIVATED_BIAS))
175 return;
177 /* atomic_dec_return() is a mb(), we'll always see the updated
178 * sd->s_sibling.
180 cmpl = (void *)sd->s_sibling;
181 complete(cmpl);
185 * sysfs_get_active_two - get active references to sysfs_dirent and parent
186 * @sd: sysfs_dirent of interest
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.
192 * RETURNS:
193 * Pointer to @sd on success, NULL on failure.
195 struct sysfs_dirent *sysfs_get_active_two(struct sysfs_dirent *sd)
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;
205 return sd;
209 * sysfs_put_active_two - put active references to sysfs_dirent and parent
210 * @sd: sysfs_dirent of interest
212 * Put active references to @sd and its parent. This function is
213 * noop if @sd is NULL.
215 void sysfs_put_active_two(struct sysfs_dirent *sd)
217 if (sd) {
218 sysfs_put_active(sd);
219 sysfs_put_active(sd->s_parent);
224 * sysfs_deactivate - deactivate sysfs_dirent
225 * @sd: sysfs_dirent to deactivate
227 * Deny new active references and drain existing ones.
229 static void sysfs_deactivate(struct sysfs_dirent *sd)
231 DECLARE_COMPLETION_ONSTACK(wait);
232 int v;
234 BUG_ON(sd->s_sibling || !(sd->s_flags & SYSFS_FLAG_REMOVED));
235 sd->s_sibling = (void *)&wait;
237 /* atomic_add_return() is a mb(), put_active() will always see
238 * the updated sd->s_sibling.
240 v = atomic_add_return(SD_DEACTIVATED_BIAS, &sd->s_active);
242 if (v != SD_DEACTIVATED_BIAS)
243 wait_for_completion(&wait);
245 sd->s_sibling = NULL;
248 static int sysfs_alloc_ino(ino_t *pino)
250 int ino, rc;
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);
257 if (rc == -EAGAIN) {
258 if (ida_pre_get(&sysfs_ino_ida, GFP_KERNEL))
259 goto retry;
260 rc = -ENOMEM;
263 *pino = ino;
264 return rc;
267 static void sysfs_free_ino(ino_t ino)
269 spin_lock(&sysfs_ino_lock);
270 ida_remove(&sysfs_ino_ida, ino);
271 spin_unlock(&sysfs_ino_lock);
274 void release_sysfs_dirent(struct sysfs_dirent * sd)
276 struct sysfs_dirent *parent_sd;
278 repeat:
279 /* Moving/renaming is always done while holding reference.
280 * sd->s_parent won't change beneath us.
282 parent_sd = sd->s_parent;
284 if (sysfs_type(sd) == SYSFS_KOBJ_LINK)
285 sysfs_put(sd->s_symlink.target_sd);
286 if (sysfs_type(sd) & SYSFS_COPY_NAME)
287 kfree(sd->s_name);
288 kfree(sd->s_iattr);
289 sysfs_free_ino(sd->s_ino);
290 kmem_cache_free(sysfs_dir_cachep, sd);
292 sd = parent_sd;
293 if (sd && atomic_dec_and_test(&sd->s_count))
294 goto repeat;
297 static void sysfs_d_iput(struct dentry * dentry, struct inode * inode)
299 struct sysfs_dirent * sd = dentry->d_fsdata;
301 sysfs_put(sd);
302 iput(inode);
305 static struct dentry_operations sysfs_dentry_ops = {
306 .d_iput = sysfs_d_iput,
309 struct sysfs_dirent *sysfs_new_dirent(const char *name, umode_t mode, int type)
311 char *dup_name = NULL;
312 struct sysfs_dirent *sd;
314 if (type & SYSFS_COPY_NAME) {
315 name = dup_name = kstrdup(name, GFP_KERNEL);
316 if (!name)
317 return NULL;
320 sd = kmem_cache_zalloc(sysfs_dir_cachep, GFP_KERNEL);
321 if (!sd)
322 goto err_out1;
324 if (sysfs_alloc_ino(&sd->s_ino))
325 goto err_out2;
327 atomic_set(&sd->s_count, 1);
328 atomic_set(&sd->s_active, 0);
330 sd->s_name = name;
331 sd->s_mode = mode;
332 sd->s_flags = type;
334 return sd;
336 err_out2:
337 kmem_cache_free(sysfs_dir_cachep, sd);
338 err_out1:
339 kfree(dup_name);
340 return NULL;
343 static int sysfs_ilookup_test(struct inode *inode, void *arg)
345 struct sysfs_dirent *sd = arg;
346 return inode->i_ino == sd->s_ino;
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
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.
360 * LOCKING:
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.
365 void sysfs_addrm_start(struct sysfs_addrm_cxt *acxt,
366 struct sysfs_dirent *parent_sd)
368 struct inode *inode;
370 memset(acxt, 0, sizeof(*acxt));
371 acxt->parent_sd = parent_sd;
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.
378 mutex_lock(&sysfs_mutex);
380 inode = ilookup5_nowait(sysfs_sb, parent_sd->s_ino, sysfs_ilookup_test,
381 parent_sd);
383 if (inode && !(inode->i_state & I_NEW)) {
384 /* parent inode available */
385 acxt->parent_inode = inode;
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.
391 if (!mutex_trylock(&inode->i_mutex)) {
392 mutex_unlock(&sysfs_mutex);
393 mutex_lock(&inode->i_mutex);
394 mutex_lock(&sysfs_mutex);
396 } else
397 iput(inode);
401 * __sysfs_add_one - add sysfs_dirent to parent without warning
402 * @acxt: addrm context to use
403 * @sd: sysfs_dirent to be added
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.
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().
413 * LOCKING:
414 * Determined by sysfs_addrm_start().
416 * RETURNS:
417 * 0 on success, -EEXIST if entry with the given name already
418 * exists.
420 int __sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
422 if (sysfs_find_dirent(acxt->parent_sd, sd->s_name))
423 return -EEXIST;
425 sd->s_parent = sysfs_get(acxt->parent_sd);
427 if (sysfs_type(sd) == SYSFS_DIR && acxt->parent_inode)
428 inc_nlink(acxt->parent_inode);
430 acxt->cnt++;
432 sysfs_link_sibling(sd);
434 return 0;
438 * sysfs_add_one - add sysfs_dirent to parent
439 * @acxt: addrm context to use
440 * @sd: sysfs_dirent to be added
442 * Get @acxt->parent_sd and set sd->s_parent to it and increment
443 * nlink of parent inode if @sd is a directory and link into the
444 * children list of the parent.
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().
450 * LOCKING:
451 * Determined by sysfs_addrm_start().
453 * RETURNS:
454 * 0 on success, -EEXIST if entry with the given name already
455 * exists.
457 int sysfs_add_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
459 int ret;
461 ret = __sysfs_add_one(acxt, sd);
462 WARN(ret == -EEXIST, KERN_WARNING "sysfs: duplicate filename '%s' "
463 "can not be created\n", sd->s_name);
464 return ret;
468 * sysfs_remove_one - remove sysfs_dirent from parent
469 * @acxt: addrm context to use
470 * @sd: sysfs_dirent to be removed
472 * Mark @sd removed and drop nlink of parent inode if @sd is a
473 * directory. @sd is unlinked from the children list.
475 * This function should be called between calls to
476 * sysfs_addrm_start() and sysfs_addrm_finish() and should be
477 * passed the same @acxt as passed to sysfs_addrm_start().
479 * LOCKING:
480 * Determined by sysfs_addrm_start().
482 void sysfs_remove_one(struct sysfs_addrm_cxt *acxt, struct sysfs_dirent *sd)
484 BUG_ON(sd->s_flags & SYSFS_FLAG_REMOVED);
486 sysfs_unlink_sibling(sd);
488 sd->s_flags |= SYSFS_FLAG_REMOVED;
489 sd->s_sibling = acxt->removed;
490 acxt->removed = sd;
492 if (sysfs_type(sd) == SYSFS_DIR && acxt->parent_inode)
493 drop_nlink(acxt->parent_inode);
495 acxt->cnt++;
499 * sysfs_drop_dentry - drop dentry for the specified sysfs_dirent
500 * @sd: target sysfs_dirent
502 * Drop dentry for @sd. @sd must have been unlinked from its
503 * parent on entry to this function such that it can't be looked
504 * up anymore.
506 static void sysfs_drop_dentry(struct sysfs_dirent *sd)
508 struct inode *inode;
509 struct dentry *dentry;
511 inode = ilookup(sysfs_sb, sd->s_ino);
512 if (!inode)
513 return;
515 /* Drop any existing dentries associated with sd.
517 * For the dentry to be properly freed we need to grab a
518 * reference to the dentry under the dcache lock, unhash it,
519 * and then put it. The playing with the dentry count allows
520 * dput to immediately free the dentry if it is not in use.
522 repeat:
523 spin_lock(&dcache_lock);
524 list_for_each_entry(dentry, &inode->i_dentry, d_alias) {
525 if (d_unhashed(dentry))
526 continue;
527 dget_locked(dentry);
528 spin_lock(&dentry->d_lock);
529 __d_drop(dentry);
530 spin_unlock(&dentry->d_lock);
531 spin_unlock(&dcache_lock);
532 dput(dentry);
533 goto repeat;
535 spin_unlock(&dcache_lock);
537 /* adjust nlink and update timestamp */
538 mutex_lock(&inode->i_mutex);
540 inode->i_ctime = CURRENT_TIME;
541 drop_nlink(inode);
542 if (sysfs_type(sd) == SYSFS_DIR)
543 drop_nlink(inode);
545 mutex_unlock(&inode->i_mutex);
547 iput(inode);
551 * sysfs_addrm_finish - finish up sysfs_dirent add/remove
552 * @acxt: addrm context to finish up
554 * Finish up sysfs_dirent add/remove. Resources acquired by
555 * sysfs_addrm_start() are released and removed sysfs_dirents are
556 * cleaned up. Timestamps on the parent inode are updated.
558 * LOCKING:
559 * All mutexes acquired by sysfs_addrm_start() are released.
561 void sysfs_addrm_finish(struct sysfs_addrm_cxt *acxt)
563 /* release resources acquired by sysfs_addrm_start() */
564 mutex_unlock(&sysfs_mutex);
565 if (acxt->parent_inode) {
566 struct inode *inode = acxt->parent_inode;
568 /* if added/removed, update timestamps on the parent */
569 if (acxt->cnt)
570 inode->i_ctime = inode->i_mtime = CURRENT_TIME;
572 mutex_unlock(&inode->i_mutex);
573 iput(inode);
576 /* kill removed sysfs_dirents */
577 while (acxt->removed) {
578 struct sysfs_dirent *sd = acxt->removed;
580 acxt->removed = sd->s_sibling;
581 sd->s_sibling = NULL;
583 sysfs_drop_dentry(sd);
584 sysfs_deactivate(sd);
585 sysfs_put(sd);
590 * sysfs_find_dirent - find sysfs_dirent with the given name
591 * @parent_sd: sysfs_dirent to search under
592 * @name: name to look for
594 * Look for sysfs_dirent with name @name under @parent_sd.
596 * LOCKING:
597 * mutex_lock(sysfs_mutex)
599 * RETURNS:
600 * Pointer to sysfs_dirent if found, NULL if not.
602 struct sysfs_dirent *sysfs_find_dirent(struct sysfs_dirent *parent_sd,
603 const unsigned char *name)
605 struct sysfs_dirent *sd;
607 for (sd = parent_sd->s_dir.children; sd; sd = sd->s_sibling)
608 if (!strcmp(sd->s_name, name))
609 return sd;
610 return NULL;
614 * sysfs_get_dirent - find and get sysfs_dirent with the given name
615 * @parent_sd: sysfs_dirent to search under
616 * @name: name to look for
618 * Look for sysfs_dirent with name @name under @parent_sd and get
619 * it if found.
621 * LOCKING:
622 * Kernel thread context (may sleep). Grabs sysfs_mutex.
624 * RETURNS:
625 * Pointer to sysfs_dirent if found, NULL if not.
627 struct sysfs_dirent *sysfs_get_dirent(struct sysfs_dirent *parent_sd,
628 const unsigned char *name)
630 struct sysfs_dirent *sd;
632 mutex_lock(&sysfs_mutex);
633 sd = sysfs_find_dirent(parent_sd, name);
634 sysfs_get(sd);
635 mutex_unlock(&sysfs_mutex);
637 return sd;
639 EXPORT_SYMBOL_GPL(sysfs_get_dirent);
641 static int create_dir(struct kobject *kobj, struct sysfs_dirent *parent_sd,
642 const char *name, struct sysfs_dirent **p_sd)
644 umode_t mode = S_IFDIR| S_IRWXU | S_IRUGO | S_IXUGO;
645 struct sysfs_addrm_cxt acxt;
646 struct sysfs_dirent *sd;
647 int rc;
649 /* allocate */
650 sd = sysfs_new_dirent(name, mode, SYSFS_DIR);
651 if (!sd)
652 return -ENOMEM;
653 sd->s_dir.kobj = kobj;
655 /* link in */
656 sysfs_addrm_start(&acxt, parent_sd);
657 rc = sysfs_add_one(&acxt, sd);
658 sysfs_addrm_finish(&acxt);
660 if (rc == 0)
661 *p_sd = sd;
662 else
663 sysfs_put(sd);
665 return rc;
668 int sysfs_create_subdir(struct kobject *kobj, const char *name,
669 struct sysfs_dirent **p_sd)
671 return create_dir(kobj, kobj->sd, name, p_sd);
675 * sysfs_create_dir - create a directory for an object.
676 * @kobj: object we're creating directory for.
678 int sysfs_create_dir(struct kobject * kobj)
680 struct sysfs_dirent *parent_sd, *sd;
681 int error = 0;
683 BUG_ON(!kobj);
685 if (kobj->parent)
686 parent_sd = kobj->parent->sd;
687 else
688 parent_sd = &sysfs_root;
690 error = create_dir(kobj, parent_sd, kobject_name(kobj), &sd);
691 if (!error)
692 kobj->sd = sd;
693 return error;
696 static struct dentry * sysfs_lookup(struct inode *dir, struct dentry *dentry,
697 struct nameidata *nd)
699 struct dentry *ret = NULL;
700 struct sysfs_dirent *parent_sd = dentry->d_parent->d_fsdata;
701 struct sysfs_dirent *sd;
702 struct inode *inode;
704 mutex_lock(&sysfs_mutex);
706 sd = sysfs_find_dirent(parent_sd, dentry->d_name.name);
708 /* no such entry */
709 if (!sd) {
710 ret = ERR_PTR(-ENOENT);
711 goto out_unlock;
714 /* attach dentry and inode */
715 inode = sysfs_get_inode(sd);
716 if (!inode) {
717 ret = ERR_PTR(-ENOMEM);
718 goto out_unlock;
721 /* instantiate and hash dentry */
722 dentry->d_op = &sysfs_dentry_ops;
723 dentry->d_fsdata = sysfs_get(sd);
724 d_instantiate(dentry, inode);
725 d_rehash(dentry);
727 out_unlock:
728 mutex_unlock(&sysfs_mutex);
729 return ret;
732 const struct inode_operations sysfs_dir_inode_operations = {
733 .lookup = sysfs_lookup,
734 .setattr = sysfs_setattr,
737 static void remove_dir(struct sysfs_dirent *sd)
739 struct sysfs_addrm_cxt acxt;
741 sysfs_addrm_start(&acxt, sd->s_parent);
742 sysfs_remove_one(&acxt, sd);
743 sysfs_addrm_finish(&acxt);
746 void sysfs_remove_subdir(struct sysfs_dirent *sd)
748 remove_dir(sd);
752 static void __sysfs_remove_dir(struct sysfs_dirent *dir_sd)
754 struct sysfs_addrm_cxt acxt;
755 struct sysfs_dirent **pos;
757 if (!dir_sd)
758 return;
760 pr_debug("sysfs %s: removing dir\n", dir_sd->s_name);
761 sysfs_addrm_start(&acxt, dir_sd);
762 pos = &dir_sd->s_dir.children;
763 while (*pos) {
764 struct sysfs_dirent *sd = *pos;
766 if (sysfs_type(sd) != SYSFS_DIR)
767 sysfs_remove_one(&acxt, sd);
768 else
769 pos = &(*pos)->s_sibling;
771 sysfs_addrm_finish(&acxt);
773 remove_dir(dir_sd);
777 * sysfs_remove_dir - remove an object's directory.
778 * @kobj: object.
780 * The only thing special about this is that we remove any files in
781 * the directory before we remove the directory, and we've inlined
782 * what used to be sysfs_rmdir() below, instead of calling separately.
785 void sysfs_remove_dir(struct kobject * kobj)
787 struct sysfs_dirent *sd = kobj->sd;
789 spin_lock(&sysfs_assoc_lock);
790 kobj->sd = NULL;
791 spin_unlock(&sysfs_assoc_lock);
793 __sysfs_remove_dir(sd);
796 int sysfs_rename_dir(struct kobject * kobj, const char *new_name)
798 struct sysfs_dirent *sd = kobj->sd;
799 struct dentry *parent = NULL;
800 struct dentry *old_dentry = NULL, *new_dentry = NULL;
801 const char *dup_name = NULL;
802 int error;
804 mutex_lock(&sysfs_rename_mutex);
806 error = 0;
807 if (strcmp(sd->s_name, new_name) == 0)
808 goto out; /* nothing to rename */
810 /* get the original dentry */
811 old_dentry = sysfs_get_dentry(sd);
812 if (IS_ERR(old_dentry)) {
813 error = PTR_ERR(old_dentry);
814 old_dentry = NULL;
815 goto out;
818 parent = old_dentry->d_parent;
820 /* lock parent and get dentry for new name */
821 mutex_lock(&parent->d_inode->i_mutex);
822 mutex_lock(&sysfs_mutex);
824 error = -EEXIST;
825 if (sysfs_find_dirent(sd->s_parent, new_name))
826 goto out_unlock;
828 error = -ENOMEM;
829 new_dentry = d_alloc_name(parent, new_name);
830 if (!new_dentry)
831 goto out_unlock;
833 /* rename kobject and sysfs_dirent */
834 error = -ENOMEM;
835 new_name = dup_name = kstrdup(new_name, GFP_KERNEL);
836 if (!new_name)
837 goto out_unlock;
839 error = kobject_set_name(kobj, "%s", new_name);
840 if (error)
841 goto out_unlock;
843 dup_name = sd->s_name;
844 sd->s_name = new_name;
846 /* rename */
847 d_add(new_dentry, NULL);
848 d_move(old_dentry, new_dentry);
850 error = 0;
851 out_unlock:
852 mutex_unlock(&sysfs_mutex);
853 mutex_unlock(&parent->d_inode->i_mutex);
854 kfree(dup_name);
855 dput(old_dentry);
856 dput(new_dentry);
857 out:
858 mutex_unlock(&sysfs_rename_mutex);
859 return error;
862 int sysfs_move_dir(struct kobject *kobj, struct kobject *new_parent_kobj)
864 struct sysfs_dirent *sd = kobj->sd;
865 struct sysfs_dirent *new_parent_sd;
866 struct dentry *old_parent, *new_parent = NULL;
867 struct dentry *old_dentry = NULL, *new_dentry = NULL;
868 int error;
870 mutex_lock(&sysfs_rename_mutex);
871 BUG_ON(!sd->s_parent);
872 new_parent_sd = new_parent_kobj->sd ? new_parent_kobj->sd : &sysfs_root;
874 error = 0;
875 if (sd->s_parent == new_parent_sd)
876 goto out; /* nothing to move */
878 /* get dentries */
879 old_dentry = sysfs_get_dentry(sd);
880 if (IS_ERR(old_dentry)) {
881 error = PTR_ERR(old_dentry);
882 old_dentry = NULL;
883 goto out;
885 old_parent = old_dentry->d_parent;
887 new_parent = sysfs_get_dentry(new_parent_sd);
888 if (IS_ERR(new_parent)) {
889 error = PTR_ERR(new_parent);
890 new_parent = NULL;
891 goto out;
894 again:
895 mutex_lock(&old_parent->d_inode->i_mutex);
896 if (!mutex_trylock(&new_parent->d_inode->i_mutex)) {
897 mutex_unlock(&old_parent->d_inode->i_mutex);
898 goto again;
900 mutex_lock(&sysfs_mutex);
902 error = -EEXIST;
903 if (sysfs_find_dirent(new_parent_sd, sd->s_name))
904 goto out_unlock;
906 error = -ENOMEM;
907 new_dentry = d_alloc_name(new_parent, sd->s_name);
908 if (!new_dentry)
909 goto out_unlock;
911 error = 0;
912 d_add(new_dentry, NULL);
913 d_move(old_dentry, new_dentry);
915 /* Remove from old parent's list and insert into new parent's list. */
916 sysfs_unlink_sibling(sd);
917 sysfs_get(new_parent_sd);
918 sysfs_put(sd->s_parent);
919 sd->s_parent = new_parent_sd;
920 sysfs_link_sibling(sd);
922 out_unlock:
923 mutex_unlock(&sysfs_mutex);
924 mutex_unlock(&new_parent->d_inode->i_mutex);
925 mutex_unlock(&old_parent->d_inode->i_mutex);
926 out:
927 dput(new_parent);
928 dput(old_dentry);
929 dput(new_dentry);
930 mutex_unlock(&sysfs_rename_mutex);
931 return error;
934 /* Relationship between s_mode and the DT_xxx types */
935 static inline unsigned char dt_type(struct sysfs_dirent *sd)
937 return (sd->s_mode >> 12) & 15;
940 static int sysfs_readdir(struct file * filp, void * dirent, filldir_t filldir)
942 struct dentry *dentry = filp->f_path.dentry;
943 struct sysfs_dirent * parent_sd = dentry->d_fsdata;
944 struct sysfs_dirent *pos;
945 ino_t ino;
947 if (filp->f_pos == 0) {
948 ino = parent_sd->s_ino;
949 if (filldir(dirent, ".", 1, filp->f_pos, ino, DT_DIR) == 0)
950 filp->f_pos++;
952 if (filp->f_pos == 1) {
953 if (parent_sd->s_parent)
954 ino = parent_sd->s_parent->s_ino;
955 else
956 ino = parent_sd->s_ino;
957 if (filldir(dirent, "..", 2, filp->f_pos, ino, DT_DIR) == 0)
958 filp->f_pos++;
960 if ((filp->f_pos > 1) && (filp->f_pos < INT_MAX)) {
961 mutex_lock(&sysfs_mutex);
963 /* Skip the dentries we have already reported */
964 pos = parent_sd->s_dir.children;
965 while (pos && (filp->f_pos > pos->s_ino))
966 pos = pos->s_sibling;
968 for ( ; pos; pos = pos->s_sibling) {
969 const char * name;
970 int len;
972 name = pos->s_name;
973 len = strlen(name);
974 filp->f_pos = ino = pos->s_ino;
976 if (filldir(dirent, name, len, filp->f_pos, ino,
977 dt_type(pos)) < 0)
978 break;
980 if (!pos)
981 filp->f_pos = INT_MAX;
982 mutex_unlock(&sysfs_mutex);
984 return 0;
988 const struct file_operations sysfs_dir_operations = {
989 .read = generic_read_dir,
990 .readdir = sysfs_readdir,