1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
4 * dir.c - Operations for configfs directories.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public
17 * License along with this program; if not, write to the
18 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 021110-1307, USA.
22 * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
24 * configfs Copyright (C) 2005 Oracle. All rights reserved.
30 #include <linux/mount.h>
31 #include <linux/module.h>
32 #include <linux/slab.h>
33 #include <linux/err.h>
35 #include <linux/configfs.h>
36 #include "configfs_internal.h"
38 DECLARE_RWSEM(configfs_rename_sem
);
40 * Protects mutations of configfs_dirent linkage together with proper i_mutex
41 * Also protects mutations of symlinks linkage to target configfs_dirent
42 * Mutators of configfs_dirent linkage must *both* have the proper inode locked
43 * and configfs_dirent_lock locked, in that order.
44 * This allows one to safely traverse configfs_dirent trees and symlinks without
45 * having to lock inodes.
47 * Protects setting of CONFIGFS_USET_DROPPING: checking the flag
48 * unlocked is not reliable unless in detach_groups() called from
49 * rmdir()/unregister() and from configfs_attach_group()
51 DEFINE_SPINLOCK(configfs_dirent_lock
);
53 static void configfs_d_iput(struct dentry
* dentry
,
56 struct configfs_dirent
*sd
= dentry
->d_fsdata
;
59 /* Coordinate with configfs_readdir */
60 spin_lock(&configfs_dirent_lock
);
62 * Set sd->s_dentry to null only when this dentry is the one
63 * that is going to be killed. Otherwise configfs_d_iput may
64 * run just after configfs_attach_attr and set sd->s_dentry to
65 * NULL even it's still in use.
67 if (sd
->s_dentry
== dentry
)
70 spin_unlock(&configfs_dirent_lock
);
76 const struct dentry_operations configfs_dentry_ops
= {
77 .d_iput
= configfs_d_iput
,
78 .d_delete
= always_delete_dentry
,
84 * Helpers to make lockdep happy with our recursive locking of default groups'
85 * inodes (see configfs_attach_group() and configfs_detach_group()).
86 * We put default groups i_mutexes in separate classes according to their depth
87 * from the youngest non-default group ancestor.
89 * For a non-default group A having default groups A/B, A/C, and A/C/D, default
90 * groups A/B and A/C will have their inode's mutex in class
91 * default_group_class[0], and default group A/C/D will be in
92 * default_group_class[1].
94 * The lock classes are declared and assigned in inode.c, according to the
96 * The s_depth value is initialized to -1, adjusted to >= 0 when attaching
97 * default groups, and reset to -1 when all default groups are attached. During
98 * attachment, if configfs_create() sees s_depth > 0, the lock class of the new
99 * inode's mutex is set to default_group_class[s_depth - 1].
102 static void configfs_init_dirent_depth(struct configfs_dirent
*sd
)
107 static void configfs_set_dir_dirent_depth(struct configfs_dirent
*parent_sd
,
108 struct configfs_dirent
*sd
)
110 int parent_depth
= parent_sd
->s_depth
;
112 if (parent_depth
>= 0)
113 sd
->s_depth
= parent_depth
+ 1;
117 configfs_adjust_dir_dirent_depth_before_populate(struct configfs_dirent
*sd
)
120 * item's i_mutex class is already setup, so s_depth is now only
121 * used to set new sub-directories s_depth, which is always done
122 * with item's i_mutex locked.
125 * sd->s_depth == -1 iff we are a non default group.
126 * else (we are a default group) sd->s_depth > 0 (see
129 if (sd
->s_depth
== -1)
131 * We are a non default group and we are going to create
138 configfs_adjust_dir_dirent_depth_after_populate(struct configfs_dirent
*sd
)
140 /* We will not create default groups anymore. */
144 #else /* CONFIG_LOCKDEP */
146 static void configfs_init_dirent_depth(struct configfs_dirent
*sd
)
150 static void configfs_set_dir_dirent_depth(struct configfs_dirent
*parent_sd
,
151 struct configfs_dirent
*sd
)
156 configfs_adjust_dir_dirent_depth_before_populate(struct configfs_dirent
*sd
)
161 configfs_adjust_dir_dirent_depth_after_populate(struct configfs_dirent
*sd
)
165 #endif /* CONFIG_LOCKDEP */
167 static struct configfs_fragment
*new_fragment(void)
169 struct configfs_fragment
*p
;
171 p
= kmalloc(sizeof(struct configfs_fragment
), GFP_KERNEL
);
173 atomic_set(&p
->frag_count
, 1);
174 init_rwsem(&p
->frag_sem
);
175 p
->frag_dead
= false;
180 void put_fragment(struct configfs_fragment
*frag
)
182 if (frag
&& atomic_dec_and_test(&frag
->frag_count
))
186 struct configfs_fragment
*get_fragment(struct configfs_fragment
*frag
)
189 atomic_inc(&frag
->frag_count
);
194 * Allocates a new configfs_dirent and links it to the parent configfs_dirent
196 static struct configfs_dirent
*configfs_new_dirent(struct configfs_dirent
*parent_sd
,
197 void *element
, int type
,
198 struct configfs_fragment
*frag
)
200 struct configfs_dirent
* sd
;
202 sd
= kmem_cache_zalloc(configfs_dir_cachep
, GFP_KERNEL
);
204 return ERR_PTR(-ENOMEM
);
206 atomic_set(&sd
->s_count
, 1);
207 INIT_LIST_HEAD(&sd
->s_links
);
208 INIT_LIST_HEAD(&sd
->s_children
);
209 sd
->s_element
= element
;
211 configfs_init_dirent_depth(sd
);
212 spin_lock(&configfs_dirent_lock
);
213 if (parent_sd
->s_type
& CONFIGFS_USET_DROPPING
) {
214 spin_unlock(&configfs_dirent_lock
);
215 kmem_cache_free(configfs_dir_cachep
, sd
);
216 return ERR_PTR(-ENOENT
);
218 sd
->s_frag
= get_fragment(frag
);
219 list_add(&sd
->s_sibling
, &parent_sd
->s_children
);
220 spin_unlock(&configfs_dirent_lock
);
227 * Return -EEXIST if there is already a configfs element with the same
228 * name for the same parent.
230 * called with parent inode's i_mutex held
232 static int configfs_dirent_exists(struct configfs_dirent
*parent_sd
,
233 const unsigned char *new)
235 struct configfs_dirent
* sd
;
237 list_for_each_entry(sd
, &parent_sd
->s_children
, s_sibling
) {
239 const unsigned char *existing
= configfs_get_name(sd
);
240 if (strcmp(existing
, new))
251 int configfs_make_dirent(struct configfs_dirent
* parent_sd
,
252 struct dentry
* dentry
, void * element
,
253 umode_t mode
, int type
, struct configfs_fragment
*frag
)
255 struct configfs_dirent
* sd
;
257 sd
= configfs_new_dirent(parent_sd
, element
, type
, frag
);
262 sd
->s_dentry
= dentry
;
264 dentry
->d_fsdata
= configfs_get(sd
);
269 static void init_dir(struct inode
* inode
)
271 inode
->i_op
= &configfs_dir_inode_operations
;
272 inode
->i_fop
= &configfs_dir_operations
;
274 /* directory inodes start off with i_nlink == 2 (for "." entry) */
278 static void configfs_init_file(struct inode
* inode
)
280 inode
->i_size
= PAGE_SIZE
;
281 inode
->i_fop
= &configfs_file_operations
;
284 static void configfs_init_bin_file(struct inode
*inode
)
287 inode
->i_fop
= &configfs_bin_file_operations
;
290 static void init_symlink(struct inode
* inode
)
292 inode
->i_op
= &configfs_symlink_inode_operations
;
296 * configfs_create_dir - create a directory for an config_item.
297 * @item: config_itemwe're creating directory for.
298 * @dentry: config_item's dentry.
300 * Note: user-created entries won't be allowed under this new directory
301 * until it is validated by configfs_dir_set_ready()
304 static int configfs_create_dir(struct config_item
*item
, struct dentry
*dentry
,
305 struct configfs_fragment
*frag
)
308 umode_t mode
= S_IFDIR
| S_IRWXU
| S_IRUGO
| S_IXUGO
;
309 struct dentry
*p
= dentry
->d_parent
;
313 error
= configfs_dirent_exists(p
->d_fsdata
, dentry
->d_name
.name
);
317 error
= configfs_make_dirent(p
->d_fsdata
, dentry
, item
, mode
,
318 CONFIGFS_DIR
| CONFIGFS_USET_CREATING
,
323 configfs_set_dir_dirent_depth(p
->d_fsdata
, dentry
->d_fsdata
);
324 error
= configfs_create(dentry
, mode
, init_dir
);
326 inc_nlink(d_inode(p
));
327 item
->ci_dentry
= dentry
;
329 struct configfs_dirent
*sd
= dentry
->d_fsdata
;
331 spin_lock(&configfs_dirent_lock
);
332 list_del_init(&sd
->s_sibling
);
333 spin_unlock(&configfs_dirent_lock
);
341 * Allow userspace to create new entries under a new directory created with
342 * configfs_create_dir(), and under all of its chidlren directories recursively.
343 * @sd configfs_dirent of the new directory to validate
345 * Caller must hold configfs_dirent_lock.
347 static void configfs_dir_set_ready(struct configfs_dirent
*sd
)
349 struct configfs_dirent
*child_sd
;
351 sd
->s_type
&= ~CONFIGFS_USET_CREATING
;
352 list_for_each_entry(child_sd
, &sd
->s_children
, s_sibling
)
353 if (child_sd
->s_type
& CONFIGFS_USET_CREATING
)
354 configfs_dir_set_ready(child_sd
);
358 * Check that a directory does not belong to a directory hierarchy being
359 * attached and not validated yet.
360 * @sd configfs_dirent of the directory to check
362 * @return non-zero iff the directory was validated
364 * Note: takes configfs_dirent_lock, so the result may change from false to true
365 * in two consecutive calls, but never from true to false.
367 int configfs_dirent_is_ready(struct configfs_dirent
*sd
)
371 spin_lock(&configfs_dirent_lock
);
372 ret
= !(sd
->s_type
& CONFIGFS_USET_CREATING
);
373 spin_unlock(&configfs_dirent_lock
);
378 int configfs_create_link(struct configfs_symlink
*sl
,
379 struct dentry
*parent
,
380 struct dentry
*dentry
)
383 umode_t mode
= S_IFLNK
| S_IRWXUGO
;
384 struct configfs_dirent
*p
= parent
->d_fsdata
;
386 err
= configfs_make_dirent(p
, dentry
, sl
, mode
,
387 CONFIGFS_ITEM_LINK
, p
->s_frag
);
389 err
= configfs_create(dentry
, mode
, init_symlink
);
391 struct configfs_dirent
*sd
= dentry
->d_fsdata
;
393 spin_lock(&configfs_dirent_lock
);
394 list_del_init(&sd
->s_sibling
);
395 spin_unlock(&configfs_dirent_lock
);
403 static void remove_dir(struct dentry
* d
)
405 struct dentry
* parent
= dget(d
->d_parent
);
406 struct configfs_dirent
* sd
;
409 spin_lock(&configfs_dirent_lock
);
410 list_del_init(&sd
->s_sibling
);
411 spin_unlock(&configfs_dirent_lock
);
413 if (d_really_is_positive(d
))
414 simple_rmdir(d_inode(parent
),d
);
416 pr_debug(" o %pd removing done (%d)\n", d
, d_count(d
));
422 * configfs_remove_dir - remove an config_item's directory.
423 * @item: config_item we're removing.
425 * The only thing special about this is that we remove any files in
426 * the directory before we remove the directory, and we've inlined
427 * what used to be configfs_rmdir() below, instead of calling separately.
429 * Caller holds the mutex of the item's inode
432 static void configfs_remove_dir(struct config_item
* item
)
434 struct dentry
* dentry
= dget(item
->ci_dentry
);
441 * Drop reference from dget() on entrance.
447 /* attaches attribute's configfs_dirent to the dentry corresponding to the
450 static int configfs_attach_attr(struct configfs_dirent
* sd
, struct dentry
* dentry
)
452 struct configfs_attribute
* attr
= sd
->s_element
;
455 spin_lock(&configfs_dirent_lock
);
456 dentry
->d_fsdata
= configfs_get(sd
);
457 sd
->s_dentry
= dentry
;
458 spin_unlock(&configfs_dirent_lock
);
460 error
= configfs_create(dentry
, (attr
->ca_mode
& S_IALLUGO
) | S_IFREG
,
461 (sd
->s_type
& CONFIGFS_ITEM_BIN_ATTR
) ?
462 configfs_init_bin_file
:
469 static struct dentry
* configfs_lookup(struct inode
*dir
,
470 struct dentry
*dentry
,
473 struct configfs_dirent
* parent_sd
= dentry
->d_parent
->d_fsdata
;
474 struct configfs_dirent
* sd
;
479 * Fake invisibility if dir belongs to a group/default groups hierarchy
482 * This forbids userspace to read/write attributes of items which may
483 * not complete their initialization, since the dentries of the
484 * attributes won't be instantiated.
487 if (!configfs_dirent_is_ready(parent_sd
))
490 list_for_each_entry(sd
, &parent_sd
->s_children
, s_sibling
) {
491 if (sd
->s_type
& CONFIGFS_NOT_PINNED
) {
492 const unsigned char * name
= configfs_get_name(sd
);
494 if (strcmp(name
, dentry
->d_name
.name
))
498 err
= configfs_attach_attr(sd
, dentry
);
505 * If it doesn't exist and it isn't a NOT_PINNED item,
506 * it must be negative.
508 if (dentry
->d_name
.len
> NAME_MAX
)
509 return ERR_PTR(-ENAMETOOLONG
);
519 * Only subdirectories count here. Files (CONFIGFS_NOT_PINNED) are
520 * attributes and are removed by rmdir(). We recurse, setting
521 * CONFIGFS_USET_DROPPING on all children that are candidates for
523 * If there is an error, the caller will reset the flags via
524 * configfs_detach_rollback().
526 static int configfs_detach_prep(struct dentry
*dentry
, struct dentry
**wait
)
528 struct configfs_dirent
*parent_sd
= dentry
->d_fsdata
;
529 struct configfs_dirent
*sd
;
532 /* Mark that we're trying to drop the group */
533 parent_sd
->s_type
|= CONFIGFS_USET_DROPPING
;
536 if (!list_empty(&parent_sd
->s_links
))
540 list_for_each_entry(sd
, &parent_sd
->s_children
, s_sibling
) {
541 if (!sd
->s_element
||
542 (sd
->s_type
& CONFIGFS_NOT_PINNED
))
544 if (sd
->s_type
& CONFIGFS_USET_DEFAULT
) {
545 /* Abort if racing with mkdir() */
546 if (sd
->s_type
& CONFIGFS_USET_IN_MKDIR
) {
548 *wait
= dget(sd
->s_dentry
);
553 * Yup, recursive. If there's a problem, blame
554 * deep nesting of default_groups
556 ret
= configfs_detach_prep(sd
->s_dentry
, wait
);
570 * Walk the tree, resetting CONFIGFS_USET_DROPPING wherever it was
573 static void configfs_detach_rollback(struct dentry
*dentry
)
575 struct configfs_dirent
*parent_sd
= dentry
->d_fsdata
;
576 struct configfs_dirent
*sd
;
578 parent_sd
->s_type
&= ~CONFIGFS_USET_DROPPING
;
580 list_for_each_entry(sd
, &parent_sd
->s_children
, s_sibling
)
581 if (sd
->s_type
& CONFIGFS_USET_DEFAULT
)
582 configfs_detach_rollback(sd
->s_dentry
);
585 static void detach_attrs(struct config_item
* item
)
587 struct dentry
* dentry
= dget(item
->ci_dentry
);
588 struct configfs_dirent
* parent_sd
;
589 struct configfs_dirent
* sd
, * tmp
;
594 pr_debug("configfs %s: dropping attrs for dir\n",
595 dentry
->d_name
.name
);
597 parent_sd
= dentry
->d_fsdata
;
598 list_for_each_entry_safe(sd
, tmp
, &parent_sd
->s_children
, s_sibling
) {
599 if (!sd
->s_element
|| !(sd
->s_type
& CONFIGFS_NOT_PINNED
))
601 spin_lock(&configfs_dirent_lock
);
602 list_del_init(&sd
->s_sibling
);
603 spin_unlock(&configfs_dirent_lock
);
604 configfs_drop_dentry(sd
, dentry
);
609 * Drop reference from dget() on entrance.
614 static int populate_attrs(struct config_item
*item
)
616 struct config_item_type
*t
= item
->ci_type
;
617 struct configfs_attribute
*attr
;
618 struct configfs_bin_attribute
*bin_attr
;
625 for (i
= 0; (attr
= t
->ct_attrs
[i
]) != NULL
; i
++) {
626 if ((error
= configfs_create_file(item
, attr
)))
630 if (t
->ct_bin_attrs
) {
631 for (i
= 0; (bin_attr
= t
->ct_bin_attrs
[i
]) != NULL
; i
++) {
632 error
= configfs_create_bin_file(item
, bin_attr
);
644 static int configfs_attach_group(struct config_item
*parent_item
,
645 struct config_item
*item
,
646 struct dentry
*dentry
,
647 struct configfs_fragment
*frag
);
648 static void configfs_detach_group(struct config_item
*item
);
650 static void detach_groups(struct config_group
*group
)
652 struct dentry
* dentry
= dget(group
->cg_item
.ci_dentry
);
653 struct dentry
*child
;
654 struct configfs_dirent
*parent_sd
;
655 struct configfs_dirent
*sd
, *tmp
;
660 parent_sd
= dentry
->d_fsdata
;
661 list_for_each_entry_safe(sd
, tmp
, &parent_sd
->s_children
, s_sibling
) {
662 if (!sd
->s_element
||
663 !(sd
->s_type
& CONFIGFS_USET_DEFAULT
))
666 child
= sd
->s_dentry
;
668 inode_lock(d_inode(child
));
670 configfs_detach_group(sd
->s_element
);
671 d_inode(child
)->i_flags
|= S_DEAD
;
674 inode_unlock(d_inode(child
));
681 * Drop reference from dget() on entrance.
687 * This fakes mkdir(2) on a default_groups[] entry. It
688 * creates a dentry, attachs it, and then does fixup
691 * We could, perhaps, tweak our parent's ->mkdir for a minute and
692 * try using vfs_mkdir. Just a thought.
694 static int create_default_group(struct config_group
*parent_group
,
695 struct config_group
*group
,
696 struct configfs_fragment
*frag
)
699 struct configfs_dirent
*sd
;
700 /* We trust the caller holds a reference to parent */
701 struct dentry
*child
, *parent
= parent_group
->cg_item
.ci_dentry
;
703 if (!group
->cg_item
.ci_name
)
704 group
->cg_item
.ci_name
= group
->cg_item
.ci_namebuf
;
707 child
= d_alloc_name(parent
, group
->cg_item
.ci_name
);
711 ret
= configfs_attach_group(&parent_group
->cg_item
,
712 &group
->cg_item
, child
, frag
);
714 sd
= child
->d_fsdata
;
715 sd
->s_type
|= CONFIGFS_USET_DEFAULT
;
717 BUG_ON(d_inode(child
));
726 static int populate_groups(struct config_group
*group
,
727 struct configfs_fragment
*frag
)
729 struct config_group
*new_group
;
732 list_for_each_entry(new_group
, &group
->default_groups
, group_entry
) {
733 ret
= create_default_group(group
, new_group
, frag
);
735 detach_groups(group
);
743 void configfs_remove_default_groups(struct config_group
*group
)
745 struct config_group
*g
, *n
;
747 list_for_each_entry_safe(g
, n
, &group
->default_groups
, group_entry
) {
748 list_del(&g
->group_entry
);
749 config_item_put(&g
->cg_item
);
752 EXPORT_SYMBOL(configfs_remove_default_groups
);
755 * All of link_obj/unlink_obj/link_group/unlink_group require that
756 * subsys->su_mutex is held.
759 static void unlink_obj(struct config_item
*item
)
761 struct config_group
*group
;
763 group
= item
->ci_group
;
765 list_del_init(&item
->ci_entry
);
767 item
->ci_group
= NULL
;
768 item
->ci_parent
= NULL
;
770 /* Drop the reference for ci_entry */
771 config_item_put(item
);
773 /* Drop the reference for ci_parent */
774 config_group_put(group
);
778 static void link_obj(struct config_item
*parent_item
, struct config_item
*item
)
781 * Parent seems redundant with group, but it makes certain
782 * traversals much nicer.
784 item
->ci_parent
= parent_item
;
787 * We hold a reference on the parent for the child's ci_parent
790 item
->ci_group
= config_group_get(to_config_group(parent_item
));
791 list_add_tail(&item
->ci_entry
, &item
->ci_group
->cg_children
);
794 * We hold a reference on the child for ci_entry on the parent's
797 config_item_get(item
);
800 static void unlink_group(struct config_group
*group
)
802 struct config_group
*new_group
;
804 list_for_each_entry(new_group
, &group
->default_groups
, group_entry
)
805 unlink_group(new_group
);
807 group
->cg_subsys
= NULL
;
808 unlink_obj(&group
->cg_item
);
811 static void link_group(struct config_group
*parent_group
, struct config_group
*group
)
813 struct config_group
*new_group
;
814 struct configfs_subsystem
*subsys
= NULL
; /* gcc is a turd */
816 link_obj(&parent_group
->cg_item
, &group
->cg_item
);
818 if (parent_group
->cg_subsys
)
819 subsys
= parent_group
->cg_subsys
;
820 else if (configfs_is_root(&parent_group
->cg_item
))
821 subsys
= to_configfs_subsystem(group
);
824 group
->cg_subsys
= subsys
;
826 list_for_each_entry(new_group
, &group
->default_groups
, group_entry
)
827 link_group(group
, new_group
);
831 * The goal is that configfs_attach_item() (and
832 * configfs_attach_group()) can be called from either the VFS or this
833 * module. That is, they assume that the items have been created,
834 * the dentry allocated, and the dcache is all ready to go.
836 * If they fail, they must clean up after themselves as if they
837 * had never been called. The caller (VFS or local function) will
838 * handle cleaning up the dcache bits.
840 * configfs_detach_group() and configfs_detach_item() behave similarly on
841 * the way out. They assume that the proper semaphores are held, they
842 * clean up the configfs items, and they expect their callers will
843 * handle the dcache bits.
845 static int configfs_attach_item(struct config_item
*parent_item
,
846 struct config_item
*item
,
847 struct dentry
*dentry
,
848 struct configfs_fragment
*frag
)
852 ret
= configfs_create_dir(item
, dentry
, frag
);
854 ret
= populate_attrs(item
);
857 * We are going to remove an inode and its dentry but
858 * the VFS may already have hit and used them. Thus,
859 * we must lock them as rmdir() would.
861 inode_lock(d_inode(dentry
));
862 configfs_remove_dir(item
);
863 d_inode(dentry
)->i_flags
|= S_DEAD
;
865 inode_unlock(d_inode(dentry
));
873 /* Caller holds the mutex of the item's inode */
874 static void configfs_detach_item(struct config_item
*item
)
877 configfs_remove_dir(item
);
880 static int configfs_attach_group(struct config_item
*parent_item
,
881 struct config_item
*item
,
882 struct dentry
*dentry
,
883 struct configfs_fragment
*frag
)
886 struct configfs_dirent
*sd
;
888 ret
= configfs_attach_item(parent_item
, item
, dentry
, frag
);
890 sd
= dentry
->d_fsdata
;
891 sd
->s_type
|= CONFIGFS_USET_DIR
;
894 * FYI, we're faking mkdir in populate_groups()
895 * We must lock the group's inode to avoid races with the VFS
896 * which can already hit the inode and try to add/remove entries
899 * We must also lock the inode to remove it safely in case of
900 * error, as rmdir() would.
902 inode_lock_nested(d_inode(dentry
), I_MUTEX_CHILD
);
903 configfs_adjust_dir_dirent_depth_before_populate(sd
);
904 ret
= populate_groups(to_config_group(item
), frag
);
906 configfs_detach_item(item
);
907 d_inode(dentry
)->i_flags
|= S_DEAD
;
910 configfs_adjust_dir_dirent_depth_after_populate(sd
);
911 inode_unlock(d_inode(dentry
));
919 /* Caller holds the mutex of the group's inode */
920 static void configfs_detach_group(struct config_item
*item
)
922 detach_groups(to_config_group(item
));
923 configfs_detach_item(item
);
927 * After the item has been detached from the filesystem view, we are
928 * ready to tear it out of the hierarchy. Notify the client before
929 * we do that so they can perform any cleanup that requires
930 * navigating the hierarchy. A client does not need to provide this
931 * callback. The subsystem semaphore MUST be held by the caller, and
932 * references must be valid for both items. It also assumes the
933 * caller has validated ci_type.
935 static void client_disconnect_notify(struct config_item
*parent_item
,
936 struct config_item
*item
)
938 struct config_item_type
*type
;
940 type
= parent_item
->ci_type
;
943 if (type
->ct_group_ops
&& type
->ct_group_ops
->disconnect_notify
)
944 type
->ct_group_ops
->disconnect_notify(to_config_group(parent_item
),
949 * Drop the initial reference from make_item()/make_group()
950 * This function assumes that reference is held on item
951 * and that item holds a valid reference to the parent. Also, it
952 * assumes the caller has validated ci_type.
954 static void client_drop_item(struct config_item
*parent_item
,
955 struct config_item
*item
)
957 struct config_item_type
*type
;
959 type
= parent_item
->ci_type
;
963 * If ->drop_item() exists, it is responsible for the
966 if (type
->ct_group_ops
&& type
->ct_group_ops
->drop_item
)
967 type
->ct_group_ops
->drop_item(to_config_group(parent_item
),
970 config_item_put(item
);
974 static void configfs_dump_one(struct configfs_dirent
*sd
, int level
)
976 pr_info("%*s\"%s\":\n", level
, " ", configfs_get_name(sd
));
978 #define type_print(_type) if (sd->s_type & _type) pr_info("%*s %s\n", level, " ", #_type);
979 type_print(CONFIGFS_ROOT
);
980 type_print(CONFIGFS_DIR
);
981 type_print(CONFIGFS_ITEM_ATTR
);
982 type_print(CONFIGFS_ITEM_LINK
);
983 type_print(CONFIGFS_USET_DIR
);
984 type_print(CONFIGFS_USET_DEFAULT
);
985 type_print(CONFIGFS_USET_DROPPING
);
989 static int configfs_dump(struct configfs_dirent
*sd
, int level
)
991 struct configfs_dirent
*child_sd
;
994 configfs_dump_one(sd
, level
);
996 if (!(sd
->s_type
& (CONFIGFS_DIR
|CONFIGFS_ROOT
)))
999 list_for_each_entry(child_sd
, &sd
->s_children
, s_sibling
) {
1000 ret
= configfs_dump(child_sd
, level
+ 2);
1011 * configfs_depend_item() and configfs_undepend_item()
1013 * WARNING: Do not call these from a configfs callback!
1015 * This describes these functions and their helpers.
1017 * Allow another kernel system to depend on a config_item. If this
1018 * happens, the item cannot go away until the dependent can live without
1019 * it. The idea is to give client modules as simple an interface as
1020 * possible. When a system asks them to depend on an item, they just
1021 * call configfs_depend_item(). If the item is live and the client
1022 * driver is in good shape, we'll happily do the work for them.
1024 * Why is the locking complex? Because configfs uses the VFS to handle
1025 * all locking, but this function is called outside the normal
1026 * VFS->configfs path. So it must take VFS locks to prevent the
1027 * VFS->configfs stuff (configfs_mkdir(), configfs_rmdir(), etc). This is
1028 * why you can't call these functions underneath configfs callbacks.
1030 * Note, btw, that this can be called at *any* time, even when a configfs
1031 * subsystem isn't registered, or when configfs is loading or unloading.
1032 * Just like configfs_register_subsystem(). So we take the same
1033 * precautions. We pin the filesystem. We lock configfs_dirent_lock.
1034 * If we can find the target item in the
1035 * configfs tree, it must be part of the subsystem tree as well, so we
1036 * do not need the subsystem semaphore. Holding configfs_dirent_lock helps
1037 * locking out mkdir() and rmdir(), who might be racing us.
1041 * configfs_depend_prep()
1043 * Only subdirectories count here. Files (CONFIGFS_NOT_PINNED) are
1044 * attributes. This is similar but not the same to configfs_detach_prep().
1045 * Note that configfs_detach_prep() expects the parent to be locked when it
1046 * is called, but we lock the parent *inside* configfs_depend_prep(). We
1047 * do that so we can unlock it if we find nothing.
1049 * Here we do a depth-first search of the dentry hierarchy looking for
1051 * We deliberately ignore items tagged as dropping since they are virtually
1052 * dead, as well as items in the middle of attachment since they virtually
1053 * do not exist yet. This completes the locking out of racing mkdir() and
1055 * Note: subdirectories in the middle of attachment start with s_type =
1056 * CONFIGFS_DIR|CONFIGFS_USET_CREATING set by create_dir(). When
1057 * CONFIGFS_USET_CREATING is set, we ignore the item. The actual set of
1058 * s_type is in configfs_new_dirent(), which has configfs_dirent_lock.
1060 * If the target is not found, -ENOENT is bubbled up.
1062 * This adds a requirement that all config_items be unique!
1064 * This is recursive. There isn't
1065 * much on the stack, though, so folks that need this function - be careful
1066 * about your stack! Patches will be accepted to make it iterative.
1068 static int configfs_depend_prep(struct dentry
*origin
,
1069 struct config_item
*target
)
1071 struct configfs_dirent
*child_sd
, *sd
;
1074 BUG_ON(!origin
|| !origin
->d_fsdata
);
1075 sd
= origin
->d_fsdata
;
1077 if (sd
->s_element
== target
) /* Boo-yah */
1080 list_for_each_entry(child_sd
, &sd
->s_children
, s_sibling
) {
1081 if ((child_sd
->s_type
& CONFIGFS_DIR
) &&
1082 !(child_sd
->s_type
& CONFIGFS_USET_DROPPING
) &&
1083 !(child_sd
->s_type
& CONFIGFS_USET_CREATING
)) {
1084 ret
= configfs_depend_prep(child_sd
->s_dentry
,
1087 goto out
; /* Child path boo-yah */
1091 /* We looped all our children and didn't find target */
1098 static int configfs_do_depend_item(struct dentry
*subsys_dentry
,
1099 struct config_item
*target
)
1101 struct configfs_dirent
*p
;
1104 spin_lock(&configfs_dirent_lock
);
1105 /* Scan the tree, return 0 if found */
1106 ret
= configfs_depend_prep(subsys_dentry
, target
);
1108 goto out_unlock_dirent_lock
;
1111 * We are sure that the item is not about to be removed by rmdir(), and
1112 * not in the middle of attachment by mkdir().
1114 p
= target
->ci_dentry
->d_fsdata
;
1115 p
->s_dependent_count
+= 1;
1117 out_unlock_dirent_lock
:
1118 spin_unlock(&configfs_dirent_lock
);
1123 static inline struct configfs_dirent
*
1124 configfs_find_subsys_dentry(struct configfs_dirent
*root_sd
,
1125 struct config_item
*subsys_item
)
1127 struct configfs_dirent
*p
;
1128 struct configfs_dirent
*ret
= NULL
;
1130 list_for_each_entry(p
, &root_sd
->s_children
, s_sibling
) {
1131 if (p
->s_type
& CONFIGFS_DIR
&&
1132 p
->s_element
== subsys_item
) {
1142 int configfs_depend_item(struct configfs_subsystem
*subsys
,
1143 struct config_item
*target
)
1146 struct configfs_dirent
*subsys_sd
;
1147 struct config_item
*s_item
= &subsys
->su_group
.cg_item
;
1148 struct dentry
*root
;
1151 * Pin the configfs filesystem. This means we can safely access
1152 * the root of the configfs filesystem.
1154 root
= configfs_pin_fs();
1156 return PTR_ERR(root
);
1159 * Next, lock the root directory. We're going to check that the
1160 * subsystem is really registered, and so we need to lock out
1161 * configfs_[un]register_subsystem().
1163 inode_lock(d_inode(root
));
1165 subsys_sd
= configfs_find_subsys_dentry(root
->d_fsdata
, s_item
);
1171 /* Ok, now we can trust subsys/s_item */
1172 ret
= configfs_do_depend_item(subsys_sd
->s_dentry
, target
);
1175 inode_unlock(d_inode(root
));
1178 * If we succeeded, the fs is pinned via other methods. If not,
1179 * we're done with it anyway. So release_fs() is always right.
1181 configfs_release_fs();
1185 EXPORT_SYMBOL(configfs_depend_item
);
1188 * Release the dependent linkage. This is much simpler than
1189 * configfs_depend_item() because we know that that the client driver is
1190 * pinned, thus the subsystem is pinned, and therefore configfs is pinned.
1192 void configfs_undepend_item(struct config_item
*target
)
1194 struct configfs_dirent
*sd
;
1197 * Since we can trust everything is pinned, we just need
1198 * configfs_dirent_lock.
1200 spin_lock(&configfs_dirent_lock
);
1202 sd
= target
->ci_dentry
->d_fsdata
;
1203 BUG_ON(sd
->s_dependent_count
< 1);
1205 sd
->s_dependent_count
-= 1;
1208 * After this unlock, we cannot trust the item to stay alive!
1209 * DO NOT REFERENCE item after this unlock.
1211 spin_unlock(&configfs_dirent_lock
);
1213 EXPORT_SYMBOL(configfs_undepend_item
);
1216 * caller_subsys is a caller's subsystem not target's. This is used to
1217 * determine if we should lock root and check subsys or not. When we are
1218 * in the same subsystem as our target there is no need to do locking as
1219 * we know that subsys is valid and is not unregistered during this function
1220 * as we are called from callback of one of his children and VFS holds a lock
1221 * on some inode. Otherwise we have to lock our root to ensure that target's
1222 * subsystem it is not unregistered during this function.
1224 int configfs_depend_item_unlocked(struct configfs_subsystem
*caller_subsys
,
1225 struct config_item
*target
)
1227 struct configfs_subsystem
*target_subsys
;
1228 struct config_group
*root
, *parent
;
1229 struct configfs_dirent
*subsys_sd
;
1232 /* Disallow this function for configfs root */
1233 if (configfs_is_root(target
))
1236 parent
= target
->ci_group
;
1238 * This may happen when someone is trying to depend root
1239 * directory of some subsystem
1241 if (configfs_is_root(&parent
->cg_item
)) {
1242 target_subsys
= to_configfs_subsystem(to_config_group(target
));
1245 target_subsys
= parent
->cg_subsys
;
1246 /* Find a cofnigfs root as we may need it for locking */
1247 for (root
= parent
; !configfs_is_root(&root
->cg_item
);
1248 root
= root
->cg_item
.ci_group
)
1252 if (target_subsys
!= caller_subsys
) {
1254 * We are in other configfs subsystem, so we have to do
1255 * additional locking to prevent other subsystem from being
1258 inode_lock(d_inode(root
->cg_item
.ci_dentry
));
1261 * As we are trying to depend item from other subsystem
1262 * we have to check if this subsystem is still registered
1264 subsys_sd
= configfs_find_subsys_dentry(
1265 root
->cg_item
.ci_dentry
->d_fsdata
,
1266 &target_subsys
->su_group
.cg_item
);
1268 goto out_root_unlock
;
1270 subsys_sd
= target_subsys
->su_group
.cg_item
.ci_dentry
->d_fsdata
;
1273 /* Now we can execute core of depend item */
1274 ret
= configfs_do_depend_item(subsys_sd
->s_dentry
, target
);
1276 if (target_subsys
!= caller_subsys
)
1279 * We were called from subsystem other than our target so we
1280 * took some locks so now it's time to release them
1282 inode_unlock(d_inode(root
->cg_item
.ci_dentry
));
1286 EXPORT_SYMBOL(configfs_depend_item_unlocked
);
1288 static int configfs_mkdir(struct inode
*dir
, struct dentry
*dentry
, umode_t mode
)
1292 struct config_group
*group
= NULL
;
1293 struct config_item
*item
= NULL
;
1294 struct config_item
*parent_item
;
1295 struct configfs_subsystem
*subsys
;
1296 struct configfs_dirent
*sd
;
1297 struct config_item_type
*type
;
1298 struct module
*subsys_owner
= NULL
, *new_item_owner
= NULL
;
1299 struct configfs_fragment
*frag
;
1302 sd
= dentry
->d_parent
->d_fsdata
;
1305 * Fake invisibility if dir belongs to a group/default groups hierarchy
1308 if (!configfs_dirent_is_ready(sd
)) {
1313 if (!(sd
->s_type
& CONFIGFS_USET_DIR
)) {
1318 frag
= new_fragment();
1324 /* Get a working ref for the duration of this function */
1325 parent_item
= configfs_get_config_item(dentry
->d_parent
);
1326 type
= parent_item
->ci_type
;
1327 subsys
= to_config_group(parent_item
)->cg_subsys
;
1330 if (!type
|| !type
->ct_group_ops
||
1331 (!type
->ct_group_ops
->make_group
&&
1332 !type
->ct_group_ops
->make_item
)) {
1333 ret
= -EPERM
; /* Lack-of-mkdir returns -EPERM */
1338 * The subsystem may belong to a different module than the item
1339 * being created. We don't want to safely pin the new item but
1340 * fail to pin the subsystem it sits under.
1342 if (!subsys
->su_group
.cg_item
.ci_type
) {
1346 subsys_owner
= subsys
->su_group
.cg_item
.ci_type
->ct_owner
;
1347 if (!try_module_get(subsys_owner
)) {
1352 name
= kmalloc(dentry
->d_name
.len
+ 1, GFP_KERNEL
);
1355 goto out_subsys_put
;
1358 snprintf(name
, dentry
->d_name
.len
+ 1, "%s", dentry
->d_name
.name
);
1360 mutex_lock(&subsys
->su_mutex
);
1361 if (type
->ct_group_ops
->make_group
) {
1362 group
= type
->ct_group_ops
->make_group(to_config_group(parent_item
), name
);
1364 group
= ERR_PTR(-ENOMEM
);
1365 if (!IS_ERR(group
)) {
1366 link_group(to_config_group(parent_item
), group
);
1367 item
= &group
->cg_item
;
1369 ret
= PTR_ERR(group
);
1371 item
= type
->ct_group_ops
->make_item(to_config_group(parent_item
), name
);
1373 item
= ERR_PTR(-ENOMEM
);
1375 link_obj(parent_item
, item
);
1377 ret
= PTR_ERR(item
);
1379 mutex_unlock(&subsys
->su_mutex
);
1384 * If ret != 0, then link_obj() was never called.
1385 * There are no extra references to clean up.
1387 goto out_subsys_put
;
1391 * link_obj() has been called (via link_group() for groups).
1392 * From here on out, errors must clean that up.
1395 type
= item
->ci_type
;
1401 new_item_owner
= type
->ct_owner
;
1402 if (!try_module_get(new_item_owner
)) {
1408 * I hate doing it this way, but if there is
1409 * an error, module_put() probably should
1410 * happen after any cleanup.
1415 * Make racing rmdir() fail if it did not tag parent with
1416 * CONFIGFS_USET_DROPPING
1417 * Note: if CONFIGFS_USET_DROPPING is already set, attach_group() will
1418 * fail and let rmdir() terminate correctly
1420 spin_lock(&configfs_dirent_lock
);
1421 /* This will make configfs_detach_prep() fail */
1422 sd
->s_type
|= CONFIGFS_USET_IN_MKDIR
;
1423 spin_unlock(&configfs_dirent_lock
);
1426 ret
= configfs_attach_group(parent_item
, item
, dentry
, frag
);
1428 ret
= configfs_attach_item(parent_item
, item
, dentry
, frag
);
1430 spin_lock(&configfs_dirent_lock
);
1431 sd
->s_type
&= ~CONFIGFS_USET_IN_MKDIR
;
1433 configfs_dir_set_ready(dentry
->d_fsdata
);
1434 spin_unlock(&configfs_dirent_lock
);
1438 /* Tear down everything we built up */
1439 mutex_lock(&subsys
->su_mutex
);
1441 client_disconnect_notify(parent_item
, item
);
1443 unlink_group(group
);
1446 client_drop_item(parent_item
, item
);
1448 mutex_unlock(&subsys
->su_mutex
);
1451 module_put(new_item_owner
);
1456 module_put(subsys_owner
);
1460 * link_obj()/link_group() took a reference from child->parent,
1461 * so the parent is safely pinned. We can drop our working
1464 config_item_put(parent_item
);
1471 static int configfs_rmdir(struct inode
*dir
, struct dentry
*dentry
)
1473 struct config_item
*parent_item
;
1474 struct config_item
*item
;
1475 struct configfs_subsystem
*subsys
;
1476 struct configfs_dirent
*sd
;
1477 struct configfs_fragment
*frag
;
1478 struct module
*subsys_owner
= NULL
, *dead_item_owner
= NULL
;
1481 sd
= dentry
->d_fsdata
;
1482 if (sd
->s_type
& CONFIGFS_USET_DEFAULT
)
1485 /* Get a working ref until we have the child */
1486 parent_item
= configfs_get_config_item(dentry
->d_parent
);
1487 subsys
= to_config_group(parent_item
)->cg_subsys
;
1490 if (!parent_item
->ci_type
) {
1491 config_item_put(parent_item
);
1495 /* configfs_mkdir() shouldn't have allowed this */
1496 BUG_ON(!subsys
->su_group
.cg_item
.ci_type
);
1497 subsys_owner
= subsys
->su_group
.cg_item
.ci_type
->ct_owner
;
1500 * Ensure that no racing symlink() will make detach_prep() fail while
1501 * the new link is temporarily attached
1504 struct dentry
*wait
;
1506 mutex_lock(&configfs_symlink_mutex
);
1507 spin_lock(&configfs_dirent_lock
);
1509 * Here's where we check for dependents. We're protected by
1510 * configfs_dirent_lock.
1511 * If no dependent, atomically tag the item as dropping.
1513 ret
= sd
->s_dependent_count
? -EBUSY
: 0;
1515 ret
= configfs_detach_prep(dentry
, &wait
);
1517 configfs_detach_rollback(dentry
);
1519 spin_unlock(&configfs_dirent_lock
);
1520 mutex_unlock(&configfs_symlink_mutex
);
1523 if (ret
!= -EAGAIN
) {
1524 config_item_put(parent_item
);
1528 /* Wait until the racing operation terminates */
1529 inode_lock(d_inode(wait
));
1530 inode_unlock(d_inode(wait
));
1533 } while (ret
== -EAGAIN
);
1536 if (down_write_killable(&frag
->frag_sem
)) {
1537 spin_lock(&configfs_dirent_lock
);
1538 configfs_detach_rollback(dentry
);
1539 spin_unlock(&configfs_dirent_lock
);
1540 config_item_put(parent_item
);
1543 frag
->frag_dead
= true;
1544 up_write(&frag
->frag_sem
);
1546 /* Get a working ref for the duration of this function */
1547 item
= configfs_get_config_item(dentry
);
1549 /* Drop reference from above, item already holds one. */
1550 config_item_put(parent_item
);
1553 dead_item_owner
= item
->ci_type
->ct_owner
;
1555 if (sd
->s_type
& CONFIGFS_USET_DIR
) {
1556 configfs_detach_group(item
);
1558 mutex_lock(&subsys
->su_mutex
);
1559 client_disconnect_notify(parent_item
, item
);
1560 unlink_group(to_config_group(item
));
1562 configfs_detach_item(item
);
1564 mutex_lock(&subsys
->su_mutex
);
1565 client_disconnect_notify(parent_item
, item
);
1569 client_drop_item(parent_item
, item
);
1570 mutex_unlock(&subsys
->su_mutex
);
1572 /* Drop our reference from above */
1573 config_item_put(item
);
1575 module_put(dead_item_owner
);
1576 module_put(subsys_owner
);
1581 const struct inode_operations configfs_dir_inode_operations
= {
1582 .mkdir
= configfs_mkdir
,
1583 .rmdir
= configfs_rmdir
,
1584 .symlink
= configfs_symlink
,
1585 .unlink
= configfs_unlink
,
1586 .lookup
= configfs_lookup
,
1587 .setattr
= configfs_setattr
,
1590 const struct inode_operations configfs_root_inode_operations
= {
1591 .lookup
= configfs_lookup
,
1592 .setattr
= configfs_setattr
,
1596 int configfs_rename_dir(struct config_item
* item
, const char *new_name
)
1599 struct dentry
* new_dentry
, * parent
;
1601 if (!strcmp(config_item_name(item
), new_name
))
1607 down_write(&configfs_rename_sem
);
1608 parent
= item
->parent
->dentry
;
1610 inode_lock(d_inode(parent
));
1612 new_dentry
= lookup_one_len(new_name
, parent
, strlen(new_name
));
1613 if (!IS_ERR(new_dentry
)) {
1614 if (d_really_is_negative(new_dentry
)) {
1615 error
= config_item_set_name(item
, "%s", new_name
);
1617 d_add(new_dentry
, NULL
);
1618 d_move(item
->dentry
, new_dentry
);
1621 d_delete(new_dentry
);
1626 inode_unlock(d_inode(parent
));
1627 up_write(&configfs_rename_sem
);
1633 static int configfs_dir_open(struct inode
*inode
, struct file
*file
)
1635 struct dentry
* dentry
= file
->f_path
.dentry
;
1636 struct configfs_dirent
* parent_sd
= dentry
->d_fsdata
;
1639 inode_lock(d_inode(dentry
));
1641 * Fake invisibility if dir belongs to a group/default groups hierarchy
1645 if (configfs_dirent_is_ready(parent_sd
)) {
1646 file
->private_data
= configfs_new_dirent(parent_sd
, NULL
, 0, NULL
);
1647 if (IS_ERR(file
->private_data
))
1648 err
= PTR_ERR(file
->private_data
);
1652 inode_unlock(d_inode(dentry
));
1657 static int configfs_dir_close(struct inode
*inode
, struct file
*file
)
1659 struct dentry
* dentry
= file
->f_path
.dentry
;
1660 struct configfs_dirent
* cursor
= file
->private_data
;
1662 inode_lock(d_inode(dentry
));
1663 spin_lock(&configfs_dirent_lock
);
1664 list_del_init(&cursor
->s_sibling
);
1665 spin_unlock(&configfs_dirent_lock
);
1666 inode_unlock(d_inode(dentry
));
1668 release_configfs_dirent(cursor
);
1673 /* Relationship between s_mode and the DT_xxx types */
1674 static inline unsigned char dt_type(struct configfs_dirent
*sd
)
1676 return (sd
->s_mode
>> 12) & 15;
1679 static int configfs_readdir(struct file
*file
, struct dir_context
*ctx
)
1681 struct dentry
*dentry
= file
->f_path
.dentry
;
1682 struct super_block
*sb
= dentry
->d_sb
;
1683 struct configfs_dirent
* parent_sd
= dentry
->d_fsdata
;
1684 struct configfs_dirent
*cursor
= file
->private_data
;
1685 struct list_head
*p
, *q
= &cursor
->s_sibling
;
1688 if (!dir_emit_dots(file
, ctx
))
1690 spin_lock(&configfs_dirent_lock
);
1692 list_move(q
, &parent_sd
->s_children
);
1693 for (p
= q
->next
; p
!= &parent_sd
->s_children
; p
= p
->next
) {
1694 struct configfs_dirent
*next
;
1697 struct inode
*inode
= NULL
;
1699 next
= list_entry(p
, struct configfs_dirent
, s_sibling
);
1700 if (!next
->s_element
)
1704 * We'll have a dentry and an inode for
1705 * PINNED items and for open attribute
1706 * files. We lock here to prevent a race
1707 * with configfs_d_iput() clearing
1708 * s_dentry before calling iput().
1710 * Why do we go to the trouble? If
1711 * someone has an attribute file open,
1712 * the inode number should match until
1713 * they close it. Beyond that, we don't
1716 dentry
= next
->s_dentry
;
1718 inode
= d_inode(dentry
);
1721 spin_unlock(&configfs_dirent_lock
);
1723 ino
= iunique(sb
, 2);
1725 name
= configfs_get_name(next
);
1728 if (!dir_emit(ctx
, name
, len
, ino
, dt_type(next
)))
1731 spin_lock(&configfs_dirent_lock
);
1736 spin_unlock(&configfs_dirent_lock
);
1740 static loff_t
configfs_dir_lseek(struct file
*file
, loff_t offset
, int whence
)
1742 struct dentry
* dentry
= file
->f_path
.dentry
;
1746 offset
+= file
->f_pos
;
1753 if (offset
!= file
->f_pos
) {
1754 file
->f_pos
= offset
;
1755 if (file
->f_pos
>= 2) {
1756 struct configfs_dirent
*sd
= dentry
->d_fsdata
;
1757 struct configfs_dirent
*cursor
= file
->private_data
;
1758 struct list_head
*p
;
1759 loff_t n
= file
->f_pos
- 2;
1761 spin_lock(&configfs_dirent_lock
);
1762 list_del(&cursor
->s_sibling
);
1763 p
= sd
->s_children
.next
;
1764 while (n
&& p
!= &sd
->s_children
) {
1765 struct configfs_dirent
*next
;
1766 next
= list_entry(p
, struct configfs_dirent
,
1768 if (next
->s_element
)
1772 list_add_tail(&cursor
->s_sibling
, p
);
1773 spin_unlock(&configfs_dirent_lock
);
1779 const struct file_operations configfs_dir_operations
= {
1780 .open
= configfs_dir_open
,
1781 .release
= configfs_dir_close
,
1782 .llseek
= configfs_dir_lseek
,
1783 .read
= generic_read_dir
,
1784 .iterate_shared
= configfs_readdir
,
1788 * configfs_register_group - creates a parent-child relation between two groups
1789 * @parent_group: parent group
1790 * @group: child group
1792 * link groups, creates dentry for the child and attaches it to the
1795 * Return: 0 on success, negative errno code on error
1797 int configfs_register_group(struct config_group
*parent_group
,
1798 struct config_group
*group
)
1800 struct configfs_subsystem
*subsys
= parent_group
->cg_subsys
;
1801 struct dentry
*parent
;
1802 struct configfs_fragment
*frag
;
1805 frag
= new_fragment();
1809 mutex_lock(&subsys
->su_mutex
);
1810 link_group(parent_group
, group
);
1811 mutex_unlock(&subsys
->su_mutex
);
1813 parent
= parent_group
->cg_item
.ci_dentry
;
1815 inode_lock_nested(d_inode(parent
), I_MUTEX_PARENT
);
1816 ret
= create_default_group(parent_group
, group
, frag
);
1820 spin_lock(&configfs_dirent_lock
);
1821 configfs_dir_set_ready(group
->cg_item
.ci_dentry
->d_fsdata
);
1822 spin_unlock(&configfs_dirent_lock
);
1823 inode_unlock(d_inode(parent
));
1827 inode_unlock(d_inode(parent
));
1828 mutex_lock(&subsys
->su_mutex
);
1829 unlink_group(group
);
1830 mutex_unlock(&subsys
->su_mutex
);
1834 EXPORT_SYMBOL(configfs_register_group
);
1837 * configfs_unregister_group() - unregisters a child group from its parent
1838 * @group: parent group to be unregistered
1840 * Undoes configfs_register_group()
1842 void configfs_unregister_group(struct config_group
*group
)
1844 struct configfs_subsystem
*subsys
= group
->cg_subsys
;
1845 struct dentry
*dentry
= group
->cg_item
.ci_dentry
;
1846 struct dentry
*parent
= group
->cg_item
.ci_parent
->ci_dentry
;
1847 struct configfs_dirent
*sd
= dentry
->d_fsdata
;
1848 struct configfs_fragment
*frag
= sd
->s_frag
;
1850 down_write(&frag
->frag_sem
);
1851 frag
->frag_dead
= true;
1852 up_write(&frag
->frag_sem
);
1854 inode_lock_nested(d_inode(parent
), I_MUTEX_PARENT
);
1855 spin_lock(&configfs_dirent_lock
);
1856 configfs_detach_prep(dentry
, NULL
);
1857 spin_unlock(&configfs_dirent_lock
);
1859 configfs_detach_group(&group
->cg_item
);
1860 d_inode(dentry
)->i_flags
|= S_DEAD
;
1863 inode_unlock(d_inode(parent
));
1867 mutex_lock(&subsys
->su_mutex
);
1868 unlink_group(group
);
1869 mutex_unlock(&subsys
->su_mutex
);
1871 EXPORT_SYMBOL(configfs_unregister_group
);
1874 * configfs_register_default_group() - allocates and registers a child group
1875 * @parent_group: parent group
1876 * @name: child group name
1877 * @item_type: child item type description
1879 * boilerplate to allocate and register a child group with its parent. We need
1880 * kzalloc'ed memory because child's default_group is initially empty.
1882 * Return: allocated config group or ERR_PTR() on error
1884 struct config_group
*
1885 configfs_register_default_group(struct config_group
*parent_group
,
1887 struct config_item_type
*item_type
)
1890 struct config_group
*group
;
1892 group
= kzalloc(sizeof(*group
), GFP_KERNEL
);
1894 return ERR_PTR(-ENOMEM
);
1895 config_group_init_type_name(group
, name
, item_type
);
1897 ret
= configfs_register_group(parent_group
, group
);
1900 return ERR_PTR(ret
);
1904 EXPORT_SYMBOL(configfs_register_default_group
);
1907 * configfs_unregister_default_group() - unregisters and frees a child group
1908 * @group: the group to act on
1910 void configfs_unregister_default_group(struct config_group
*group
)
1912 configfs_unregister_group(group
);
1915 EXPORT_SYMBOL(configfs_unregister_default_group
);
1917 int configfs_register_subsystem(struct configfs_subsystem
*subsys
)
1920 struct config_group
*group
= &subsys
->su_group
;
1921 struct dentry
*dentry
;
1922 struct dentry
*root
;
1923 struct configfs_dirent
*sd
;
1924 struct configfs_fragment
*frag
;
1926 frag
= new_fragment();
1930 root
= configfs_pin_fs();
1933 return PTR_ERR(root
);
1936 if (!group
->cg_item
.ci_name
)
1937 group
->cg_item
.ci_name
= group
->cg_item
.ci_namebuf
;
1939 sd
= root
->d_fsdata
;
1940 link_group(to_config_group(sd
->s_element
), group
);
1942 inode_lock_nested(d_inode(root
), I_MUTEX_PARENT
);
1945 dentry
= d_alloc_name(root
, group
->cg_item
.ci_name
);
1947 d_add(dentry
, NULL
);
1949 err
= configfs_attach_group(sd
->s_element
, &group
->cg_item
,
1952 BUG_ON(d_inode(dentry
));
1956 spin_lock(&configfs_dirent_lock
);
1957 configfs_dir_set_ready(dentry
->d_fsdata
);
1958 spin_unlock(&configfs_dirent_lock
);
1962 inode_unlock(d_inode(root
));
1965 unlink_group(group
);
1966 configfs_release_fs();
1973 void configfs_unregister_subsystem(struct configfs_subsystem
*subsys
)
1975 struct config_group
*group
= &subsys
->su_group
;
1976 struct dentry
*dentry
= group
->cg_item
.ci_dentry
;
1977 struct dentry
*root
= dentry
->d_sb
->s_root
;
1978 struct configfs_dirent
*sd
= dentry
->d_fsdata
;
1979 struct configfs_fragment
*frag
= sd
->s_frag
;
1981 if (dentry
->d_parent
!= root
) {
1982 pr_err("Tried to unregister non-subsystem!\n");
1986 down_write(&frag
->frag_sem
);
1987 frag
->frag_dead
= true;
1988 up_write(&frag
->frag_sem
);
1990 inode_lock_nested(d_inode(root
),
1992 inode_lock_nested(d_inode(dentry
), I_MUTEX_CHILD
);
1993 mutex_lock(&configfs_symlink_mutex
);
1994 spin_lock(&configfs_dirent_lock
);
1995 if (configfs_detach_prep(dentry
, NULL
)) {
1996 pr_err("Tried to unregister non-empty subsystem!\n");
1998 spin_unlock(&configfs_dirent_lock
);
1999 mutex_unlock(&configfs_symlink_mutex
);
2000 configfs_detach_group(&group
->cg_item
);
2001 d_inode(dentry
)->i_flags
|= S_DEAD
;
2003 inode_unlock(d_inode(dentry
));
2007 inode_unlock(d_inode(root
));
2011 unlink_group(group
);
2012 configfs_release_fs();
2015 EXPORT_SYMBOL(configfs_register_subsystem
);
2016 EXPORT_SYMBOL(configfs_unregister_subsystem
);