1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* -*- mode: c; c-basic-offset: 8; -*-
3 * vim: noexpandtab sw=8 ts=8 sts=0:
5 * dir.c - Operations for configfs directories.
8 * sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
10 * configfs Copyright (C) 2005 Oracle. All rights reserved.
16 #include <linux/fsnotify.h>
17 #include <linux/mount.h>
18 #include <linux/module.h>
19 #include <linux/slab.h>
20 #include <linux/err.h>
22 #include <linux/configfs.h>
23 #include "configfs_internal.h"
26 * Protects mutations of configfs_dirent linkage together with proper i_mutex
27 * Also protects mutations of symlinks linkage to target configfs_dirent
28 * Mutators of configfs_dirent linkage must *both* have the proper inode locked
29 * and configfs_dirent_lock locked, in that order.
30 * This allows one to safely traverse configfs_dirent trees and symlinks without
31 * having to lock inodes.
33 * Protects setting of CONFIGFS_USET_DROPPING: checking the flag
34 * unlocked is not reliable unless in detach_groups() called from
35 * rmdir()/unregister() and from configfs_attach_group()
37 DEFINE_SPINLOCK(configfs_dirent_lock);
40 * All of link_obj/unlink_obj/link_group/unlink_group require that
41 * subsys->su_mutex is held.
42 * But parent configfs_subsystem is NULL when config_item is root.
43 * Use this mutex when config_item is root.
45 static DEFINE_MUTEX(configfs_subsystem_mutex);
47 static void configfs_d_iput(struct dentry * dentry,
50 struct configfs_dirent *sd = dentry->d_fsdata;
53 /* Coordinate with configfs_readdir */
54 spin_lock(&configfs_dirent_lock);
56 * Set sd->s_dentry to null only when this dentry is the one
57 * that is going to be killed. Otherwise configfs_d_iput may
58 * run just after configfs_attach_attr and set sd->s_dentry to
59 * NULL even it's still in use.
61 if (sd->s_dentry == dentry)
64 spin_unlock(&configfs_dirent_lock);
70 const struct dentry_operations configfs_dentry_ops = {
71 .d_iput = configfs_d_iput,
72 .d_delete = always_delete_dentry,
78 * Helpers to make lockdep happy with our recursive locking of default groups'
79 * inodes (see configfs_attach_group() and configfs_detach_group()).
80 * We put default groups i_mutexes in separate classes according to their depth
81 * from the youngest non-default group ancestor.
83 * For a non-default group A having default groups A/B, A/C, and A/C/D, default
84 * groups A/B and A/C will have their inode's mutex in class
85 * default_group_class[0], and default group A/C/D will be in
86 * default_group_class[1].
88 * The lock classes are declared and assigned in inode.c, according to the
90 * The s_depth value is initialized to -1, adjusted to >= 0 when attaching
91 * default groups, and reset to -1 when all default groups are attached. During
92 * attachment, if configfs_create() sees s_depth > 0, the lock class of the new
93 * inode's mutex is set to default_group_class[s_depth - 1].
96 static void configfs_init_dirent_depth(struct configfs_dirent *sd)
101 static void configfs_set_dir_dirent_depth(struct configfs_dirent *parent_sd,
102 struct configfs_dirent *sd)
104 int parent_depth = parent_sd->s_depth;
106 if (parent_depth >= 0)
107 sd->s_depth = parent_depth + 1;
111 configfs_adjust_dir_dirent_depth_before_populate(struct configfs_dirent *sd)
114 * item's i_mutex class is already setup, so s_depth is now only
115 * used to set new sub-directories s_depth, which is always done
116 * with item's i_mutex locked.
119 * sd->s_depth == -1 iff we are a non default group.
120 * else (we are a default group) sd->s_depth > 0 (see
123 if (sd->s_depth == -1)
125 * We are a non default group and we are going to create
132 configfs_adjust_dir_dirent_depth_after_populate(struct configfs_dirent *sd)
134 /* We will not create default groups anymore. */
138 #else /* CONFIG_LOCKDEP */
140 static void configfs_init_dirent_depth(struct configfs_dirent *sd)
144 static void configfs_set_dir_dirent_depth(struct configfs_dirent *parent_sd,
145 struct configfs_dirent *sd)
150 configfs_adjust_dir_dirent_depth_before_populate(struct configfs_dirent *sd)
155 configfs_adjust_dir_dirent_depth_after_populate(struct configfs_dirent *sd)
159 #endif /* CONFIG_LOCKDEP */
161 static struct configfs_fragment *new_fragment(void)
163 struct configfs_fragment *p;
165 p = kmalloc(sizeof(struct configfs_fragment), GFP_KERNEL);
167 atomic_set(&p->frag_count, 1);
168 init_rwsem(&p->frag_sem);
169 p->frag_dead = false;
174 void put_fragment(struct configfs_fragment *frag)
176 if (frag && atomic_dec_and_test(&frag->frag_count))
180 struct configfs_fragment *get_fragment(struct configfs_fragment *frag)
183 atomic_inc(&frag->frag_count);
188 * Allocates a new configfs_dirent and links it to the parent configfs_dirent
190 static struct configfs_dirent *configfs_new_dirent(struct configfs_dirent *parent_sd,
191 void *element, int type,
192 struct configfs_fragment *frag)
194 struct configfs_dirent * sd;
196 sd = kmem_cache_zalloc(configfs_dir_cachep, GFP_KERNEL);
198 return ERR_PTR(-ENOMEM);
200 atomic_set(&sd->s_count, 1);
201 INIT_LIST_HEAD(&sd->s_children);
202 sd->s_element = element;
204 configfs_init_dirent_depth(sd);
205 spin_lock(&configfs_dirent_lock);
206 if (parent_sd->s_type & CONFIGFS_USET_DROPPING) {
207 spin_unlock(&configfs_dirent_lock);
208 kmem_cache_free(configfs_dir_cachep, sd);
209 return ERR_PTR(-ENOENT);
211 sd->s_frag = get_fragment(frag);
212 list_add(&sd->s_sibling, &parent_sd->s_children);
213 spin_unlock(&configfs_dirent_lock);
220 * Return -EEXIST if there is already a configfs element with the same
221 * name for the same parent.
223 * called with parent inode's i_mutex held
225 static int configfs_dirent_exists(struct configfs_dirent *parent_sd,
226 const unsigned char *new)
228 struct configfs_dirent * sd;
230 list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
232 const unsigned char *existing = configfs_get_name(sd);
233 if (strcmp(existing, new))
244 int configfs_make_dirent(struct configfs_dirent * parent_sd,
245 struct dentry * dentry, void * element,
246 umode_t mode, int type, struct configfs_fragment *frag)
248 struct configfs_dirent * sd;
250 sd = configfs_new_dirent(parent_sd, element, type, frag);
255 sd->s_dentry = dentry;
257 dentry->d_fsdata = configfs_get(sd);
262 static void configfs_remove_dirent(struct dentry *dentry)
264 struct configfs_dirent *sd = dentry->d_fsdata;
268 spin_lock(&configfs_dirent_lock);
269 list_del_init(&sd->s_sibling);
270 spin_unlock(&configfs_dirent_lock);
275 * configfs_create_dir - create a directory for an config_item.
276 * @item: config_itemwe're creating directory for.
277 * @dentry: config_item's dentry.
279 * Note: user-created entries won't be allowed under this new directory
280 * until it is validated by configfs_dir_set_ready()
283 static int configfs_create_dir(struct config_item *item, struct dentry *dentry,
284 struct configfs_fragment *frag)
287 umode_t mode = S_IFDIR| S_IRWXU | S_IRUGO | S_IXUGO;
288 struct dentry *p = dentry->d_parent;
293 error = configfs_dirent_exists(p->d_fsdata, dentry->d_name.name);
297 error = configfs_make_dirent(p->d_fsdata, dentry, item, mode,
298 CONFIGFS_DIR | CONFIGFS_USET_CREATING,
303 configfs_set_dir_dirent_depth(p->d_fsdata, dentry->d_fsdata);
304 inode = configfs_create(dentry, mode);
308 inode->i_op = &configfs_dir_inode_operations;
309 inode->i_fop = &configfs_dir_operations;
310 /* directory inodes start off with i_nlink == 2 (for "." entry) */
312 d_instantiate(dentry, inode);
314 dget(dentry); /* pin directory dentries in core */
315 inc_nlink(d_inode(p));
316 item->ci_dentry = dentry;
320 configfs_put(dentry->d_fsdata);
321 configfs_remove_dirent(dentry);
322 return PTR_ERR(inode);
326 * Allow userspace to create new entries under a new directory created with
327 * configfs_create_dir(), and under all of its chidlren directories recursively.
328 * @sd configfs_dirent of the new directory to validate
330 * Caller must hold configfs_dirent_lock.
332 static void configfs_dir_set_ready(struct configfs_dirent *sd)
334 struct configfs_dirent *child_sd;
336 sd->s_type &= ~CONFIGFS_USET_CREATING;
337 list_for_each_entry(child_sd, &sd->s_children, s_sibling)
338 if (child_sd->s_type & CONFIGFS_USET_CREATING)
339 configfs_dir_set_ready(child_sd);
343 * Check that a directory does not belong to a directory hierarchy being
344 * attached and not validated yet.
345 * @sd configfs_dirent of the directory to check
347 * @return non-zero iff the directory was validated
349 * Note: takes configfs_dirent_lock, so the result may change from false to true
350 * in two consecutive calls, but never from true to false.
352 int configfs_dirent_is_ready(struct configfs_dirent *sd)
356 spin_lock(&configfs_dirent_lock);
357 ret = !(sd->s_type & CONFIGFS_USET_CREATING);
358 spin_unlock(&configfs_dirent_lock);
363 int configfs_create_link(struct configfs_dirent *target, struct dentry *parent,
364 struct dentry *dentry, char *body)
367 umode_t mode = S_IFLNK | S_IRWXUGO;
368 struct configfs_dirent *p = parent->d_fsdata;
371 err = configfs_make_dirent(p, dentry, target, mode, CONFIGFS_ITEM_LINK,
376 inode = configfs_create(dentry, mode);
380 inode->i_link = body;
381 inode->i_op = &configfs_symlink_inode_operations;
382 d_instantiate(dentry, inode);
383 dget(dentry); /* pin link dentries in core */
387 configfs_put(dentry->d_fsdata);
388 configfs_remove_dirent(dentry);
389 return PTR_ERR(inode);
392 static void remove_dir(struct dentry * d)
394 struct dentry * parent = dget(d->d_parent);
396 configfs_remove_dirent(d);
398 if (d_really_is_positive(d))
399 simple_rmdir(d_inode(parent),d);
401 pr_debug(" o %pd removing done (%d)\n", d, d_count(d));
407 * configfs_remove_dir - remove an config_item's directory.
408 * @item: config_item we're removing.
410 * The only thing special about this is that we remove any files in
411 * the directory before we remove the directory, and we've inlined
412 * what used to be configfs_rmdir() below, instead of calling separately.
414 * Caller holds the mutex of the item's inode
417 static void configfs_remove_dir(struct config_item * item)
419 struct dentry * dentry = dget(item->ci_dentry);
426 * Drop reference from dget() on entrance.
432 /* attaches attribute's configfs_dirent to the dentry corresponding to the
435 static int configfs_attach_attr(struct configfs_dirent * sd, struct dentry * dentry)
437 struct configfs_attribute * attr = sd->s_element;
440 spin_lock(&configfs_dirent_lock);
441 dentry->d_fsdata = configfs_get(sd);
442 sd->s_dentry = dentry;
443 spin_unlock(&configfs_dirent_lock);
445 inode = configfs_create(dentry, (attr->ca_mode & S_IALLUGO) | S_IFREG);
448 return PTR_ERR(inode);
450 if (sd->s_type & CONFIGFS_ITEM_BIN_ATTR) {
452 inode->i_fop = &configfs_bin_file_operations;
454 inode->i_size = PAGE_SIZE;
455 inode->i_fop = &configfs_file_operations;
457 d_add(dentry, inode);
461 static struct dentry * configfs_lookup(struct inode *dir,
462 struct dentry *dentry,
465 struct configfs_dirent * parent_sd = dentry->d_parent->d_fsdata;
466 struct configfs_dirent * sd;
471 * Fake invisibility if dir belongs to a group/default groups hierarchy
474 * This forbids userspace to read/write attributes of items which may
475 * not complete their initialization, since the dentries of the
476 * attributes won't be instantiated.
479 if (!configfs_dirent_is_ready(parent_sd))
482 list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
483 if (sd->s_type & CONFIGFS_NOT_PINNED) {
484 const unsigned char * name = configfs_get_name(sd);
486 if (strcmp(name, dentry->d_name.name))
490 err = configfs_attach_attr(sd, dentry);
497 * If it doesn't exist and it isn't a NOT_PINNED item,
498 * it must be negative.
500 if (dentry->d_name.len > NAME_MAX)
501 return ERR_PTR(-ENAMETOOLONG);
511 * Only subdirectories count here. Files (CONFIGFS_NOT_PINNED) are
512 * attributes and are removed by rmdir(). We recurse, setting
513 * CONFIGFS_USET_DROPPING on all children that are candidates for
515 * If there is an error, the caller will reset the flags via
516 * configfs_detach_rollback().
518 static int configfs_detach_prep(struct dentry *dentry, struct dentry **wait)
520 struct configfs_dirent *parent_sd = dentry->d_fsdata;
521 struct configfs_dirent *sd;
524 /* Mark that we're trying to drop the group */
525 parent_sd->s_type |= CONFIGFS_USET_DROPPING;
528 if (parent_sd->s_links)
532 list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
533 if (!sd->s_element ||
534 (sd->s_type & CONFIGFS_NOT_PINNED))
536 if (sd->s_type & CONFIGFS_USET_DEFAULT) {
537 /* Abort if racing with mkdir() */
538 if (sd->s_type & CONFIGFS_USET_IN_MKDIR) {
540 *wait= dget(sd->s_dentry);
545 * Yup, recursive. If there's a problem, blame
546 * deep nesting of default_groups
548 ret = configfs_detach_prep(sd->s_dentry, wait);
562 * Walk the tree, resetting CONFIGFS_USET_DROPPING wherever it was
565 static void configfs_detach_rollback(struct dentry *dentry)
567 struct configfs_dirent *parent_sd = dentry->d_fsdata;
568 struct configfs_dirent *sd;
570 parent_sd->s_type &= ~CONFIGFS_USET_DROPPING;
572 list_for_each_entry(sd, &parent_sd->s_children, s_sibling)
573 if (sd->s_type & CONFIGFS_USET_DEFAULT)
574 configfs_detach_rollback(sd->s_dentry);
577 static void detach_attrs(struct config_item * item)
579 struct dentry * dentry = dget(item->ci_dentry);
580 struct configfs_dirent * parent_sd;
581 struct configfs_dirent * sd, * tmp;
586 pr_debug("configfs %s: dropping attrs for dir\n",
587 dentry->d_name.name);
589 parent_sd = dentry->d_fsdata;
590 list_for_each_entry_safe(sd, tmp, &parent_sd->s_children, s_sibling) {
591 if (!sd->s_element || !(sd->s_type & CONFIGFS_NOT_PINNED))
593 spin_lock(&configfs_dirent_lock);
594 list_del_init(&sd->s_sibling);
595 spin_unlock(&configfs_dirent_lock);
596 configfs_drop_dentry(sd, dentry);
601 * Drop reference from dget() on entrance.
606 static int populate_attrs(struct config_item *item)
608 const struct config_item_type *t = item->ci_type;
609 struct configfs_attribute *attr;
610 struct configfs_bin_attribute *bin_attr;
617 for (i = 0; (attr = t->ct_attrs[i]) != NULL; i++) {
618 if ((error = configfs_create_file(item, attr)))
622 if (t->ct_bin_attrs) {
623 for (i = 0; (bin_attr = t->ct_bin_attrs[i]) != NULL; i++) {
624 error = configfs_create_bin_file(item, bin_attr);
636 static int configfs_attach_group(struct config_item *parent_item,
637 struct config_item *item,
638 struct dentry *dentry,
639 struct configfs_fragment *frag);
640 static void configfs_detach_group(struct config_item *item);
642 static void detach_groups(struct config_group *group)
644 struct dentry * dentry = dget(group->cg_item.ci_dentry);
645 struct dentry *child;
646 struct configfs_dirent *parent_sd;
647 struct configfs_dirent *sd, *tmp;
652 parent_sd = dentry->d_fsdata;
653 list_for_each_entry_safe(sd, tmp, &parent_sd->s_children, s_sibling) {
654 if (!sd->s_element ||
655 !(sd->s_type & CONFIGFS_USET_DEFAULT))
658 child = sd->s_dentry;
660 inode_lock(d_inode(child));
662 configfs_detach_group(sd->s_element);
663 d_inode(child)->i_flags |= S_DEAD;
666 inode_unlock(d_inode(child));
673 * Drop reference from dget() on entrance.
679 * This fakes mkdir(2) on a default_groups[] entry. It
680 * creates a dentry, attachs it, and then does fixup
683 * We could, perhaps, tweak our parent's ->mkdir for a minute and
684 * try using vfs_mkdir. Just a thought.
686 static int create_default_group(struct config_group *parent_group,
687 struct config_group *group,
688 struct configfs_fragment *frag)
691 struct configfs_dirent *sd;
692 /* We trust the caller holds a reference to parent */
693 struct dentry *child, *parent = parent_group->cg_item.ci_dentry;
695 if (!group->cg_item.ci_name)
696 group->cg_item.ci_name = group->cg_item.ci_namebuf;
699 child = d_alloc_name(parent, group->cg_item.ci_name);
703 ret = configfs_attach_group(&parent_group->cg_item,
704 &group->cg_item, child, frag);
706 sd = child->d_fsdata;
707 sd->s_type |= CONFIGFS_USET_DEFAULT;
709 BUG_ON(d_inode(child));
718 static int populate_groups(struct config_group *group,
719 struct configfs_fragment *frag)
721 struct config_group *new_group;
724 list_for_each_entry(new_group, &group->default_groups, group_entry) {
725 ret = create_default_group(group, new_group, frag);
727 detach_groups(group);
735 void configfs_remove_default_groups(struct config_group *group)
737 struct config_group *g, *n;
739 list_for_each_entry_safe(g, n, &group->default_groups, group_entry) {
740 list_del(&g->group_entry);
741 config_item_put(&g->cg_item);
744 EXPORT_SYMBOL(configfs_remove_default_groups);
747 * All of link_obj/unlink_obj/link_group/unlink_group require that
748 * subsys->su_mutex is held.
751 static void unlink_obj(struct config_item *item)
753 struct config_group *group;
755 group = item->ci_group;
757 list_del_init(&item->ci_entry);
759 item->ci_group = NULL;
760 item->ci_parent = NULL;
762 /* Drop the reference for ci_entry */
763 config_item_put(item);
765 /* Drop the reference for ci_parent */
766 config_group_put(group);
770 static void link_obj(struct config_item *parent_item, struct config_item *item)
773 * Parent seems redundant with group, but it makes certain
774 * traversals much nicer.
776 item->ci_parent = parent_item;
779 * We hold a reference on the parent for the child's ci_parent
782 item->ci_group = config_group_get(to_config_group(parent_item));
783 list_add_tail(&item->ci_entry, &item->ci_group->cg_children);
786 * We hold a reference on the child for ci_entry on the parent's
789 config_item_get(item);
792 static void unlink_group(struct config_group *group)
794 struct config_group *new_group;
796 list_for_each_entry(new_group, &group->default_groups, group_entry)
797 unlink_group(new_group);
799 group->cg_subsys = NULL;
800 unlink_obj(&group->cg_item);
803 static void link_group(struct config_group *parent_group, struct config_group *group)
805 struct config_group *new_group;
806 struct configfs_subsystem *subsys = NULL; /* gcc is a turd */
808 link_obj(&parent_group->cg_item, &group->cg_item);
810 if (parent_group->cg_subsys)
811 subsys = parent_group->cg_subsys;
812 else if (configfs_is_root(&parent_group->cg_item))
813 subsys = to_configfs_subsystem(group);
816 group->cg_subsys = subsys;
818 list_for_each_entry(new_group, &group->default_groups, group_entry)
819 link_group(group, new_group);
823 * The goal is that configfs_attach_item() (and
824 * configfs_attach_group()) can be called from either the VFS or this
825 * module. That is, they assume that the items have been created,
826 * the dentry allocated, and the dcache is all ready to go.
828 * If they fail, they must clean up after themselves as if they
829 * had never been called. The caller (VFS or local function) will
830 * handle cleaning up the dcache bits.
832 * configfs_detach_group() and configfs_detach_item() behave similarly on
833 * the way out. They assume that the proper semaphores are held, they
834 * clean up the configfs items, and they expect their callers will
835 * handle the dcache bits.
837 static int configfs_attach_item(struct config_item *parent_item,
838 struct config_item *item,
839 struct dentry *dentry,
840 struct configfs_fragment *frag)
844 ret = configfs_create_dir(item, dentry, frag);
846 ret = populate_attrs(item);
849 * We are going to remove an inode and its dentry but
850 * the VFS may already have hit and used them. Thus,
851 * we must lock them as rmdir() would.
853 inode_lock(d_inode(dentry));
854 configfs_remove_dir(item);
855 d_inode(dentry)->i_flags |= S_DEAD;
857 inode_unlock(d_inode(dentry));
865 /* Caller holds the mutex of the item's inode */
866 static void configfs_detach_item(struct config_item *item)
869 configfs_remove_dir(item);
872 static int configfs_attach_group(struct config_item *parent_item,
873 struct config_item *item,
874 struct dentry *dentry,
875 struct configfs_fragment *frag)
878 struct configfs_dirent *sd;
880 ret = configfs_attach_item(parent_item, item, dentry, frag);
882 sd = dentry->d_fsdata;
883 sd->s_type |= CONFIGFS_USET_DIR;
886 * FYI, we're faking mkdir in populate_groups()
887 * We must lock the group's inode to avoid races with the VFS
888 * which can already hit the inode and try to add/remove entries
891 * We must also lock the inode to remove it safely in case of
892 * error, as rmdir() would.
894 inode_lock_nested(d_inode(dentry), I_MUTEX_CHILD);
895 configfs_adjust_dir_dirent_depth_before_populate(sd);
896 ret = populate_groups(to_config_group(item), frag);
898 configfs_detach_item(item);
899 d_inode(dentry)->i_flags |= S_DEAD;
902 configfs_adjust_dir_dirent_depth_after_populate(sd);
903 inode_unlock(d_inode(dentry));
911 /* Caller holds the mutex of the group's inode */
912 static void configfs_detach_group(struct config_item *item)
914 detach_groups(to_config_group(item));
915 configfs_detach_item(item);
919 * After the item has been detached from the filesystem view, we are
920 * ready to tear it out of the hierarchy. Notify the client before
921 * we do that so they can perform any cleanup that requires
922 * navigating the hierarchy. A client does not need to provide this
923 * callback. The subsystem semaphore MUST be held by the caller, and
924 * references must be valid for both items. It also assumes the
925 * caller has validated ci_type.
927 static void client_disconnect_notify(struct config_item *parent_item,
928 struct config_item *item)
930 const struct config_item_type *type;
932 type = parent_item->ci_type;
935 if (type->ct_group_ops && type->ct_group_ops->disconnect_notify)
936 type->ct_group_ops->disconnect_notify(to_config_group(parent_item),
941 * Drop the initial reference from make_item()/make_group()
942 * This function assumes that reference is held on item
943 * and that item holds a valid reference to the parent. Also, it
944 * assumes the caller has validated ci_type.
946 static void client_drop_item(struct config_item *parent_item,
947 struct config_item *item)
949 const struct config_item_type *type;
951 type = parent_item->ci_type;
955 * If ->drop_item() exists, it is responsible for the
958 if (type->ct_group_ops && type->ct_group_ops->drop_item)
959 type->ct_group_ops->drop_item(to_config_group(parent_item),
962 config_item_put(item);
966 static void configfs_dump_one(struct configfs_dirent *sd, int level)
968 pr_info("%*s\"%s\":\n", level, " ", configfs_get_name(sd));
970 #define type_print(_type) if (sd->s_type & _type) pr_info("%*s %s\n", level, " ", #_type);
971 type_print(CONFIGFS_ROOT);
972 type_print(CONFIGFS_DIR);
973 type_print(CONFIGFS_ITEM_ATTR);
974 type_print(CONFIGFS_ITEM_LINK);
975 type_print(CONFIGFS_USET_DIR);
976 type_print(CONFIGFS_USET_DEFAULT);
977 type_print(CONFIGFS_USET_DROPPING);
981 static int configfs_dump(struct configfs_dirent *sd, int level)
983 struct configfs_dirent *child_sd;
986 configfs_dump_one(sd, level);
988 if (!(sd->s_type & (CONFIGFS_DIR|CONFIGFS_ROOT)))
991 list_for_each_entry(child_sd, &sd->s_children, s_sibling) {
992 ret = configfs_dump(child_sd, level + 2);
1003 * configfs_depend_item() and configfs_undepend_item()
1005 * WARNING: Do not call these from a configfs callback!
1007 * This describes these functions and their helpers.
1009 * Allow another kernel system to depend on a config_item. If this
1010 * happens, the item cannot go away until the dependent can live without
1011 * it. The idea is to give client modules as simple an interface as
1012 * possible. When a system asks them to depend on an item, they just
1013 * call configfs_depend_item(). If the item is live and the client
1014 * driver is in good shape, we'll happily do the work for them.
1016 * Why is the locking complex? Because configfs uses the VFS to handle
1017 * all locking, but this function is called outside the normal
1018 * VFS->configfs path. So it must take VFS locks to prevent the
1019 * VFS->configfs stuff (configfs_mkdir(), configfs_rmdir(), etc). This is
1020 * why you can't call these functions underneath configfs callbacks.
1022 * Note, btw, that this can be called at *any* time, even when a configfs
1023 * subsystem isn't registered, or when configfs is loading or unloading.
1024 * Just like configfs_register_subsystem(). So we take the same
1025 * precautions. We pin the filesystem. We lock configfs_dirent_lock.
1026 * If we can find the target item in the
1027 * configfs tree, it must be part of the subsystem tree as well, so we
1028 * do not need the subsystem semaphore. Holding configfs_dirent_lock helps
1029 * locking out mkdir() and rmdir(), who might be racing us.
1033 * configfs_depend_prep()
1035 * Only subdirectories count here. Files (CONFIGFS_NOT_PINNED) are
1036 * attributes. This is similar but not the same to configfs_detach_prep().
1037 * Note that configfs_detach_prep() expects the parent to be locked when it
1038 * is called, but we lock the parent *inside* configfs_depend_prep(). We
1039 * do that so we can unlock it if we find nothing.
1041 * Here we do a depth-first search of the dentry hierarchy looking for
1043 * We deliberately ignore items tagged as dropping since they are virtually
1044 * dead, as well as items in the middle of attachment since they virtually
1045 * do not exist yet. This completes the locking out of racing mkdir() and
1047 * Note: subdirectories in the middle of attachment start with s_type =
1048 * CONFIGFS_DIR|CONFIGFS_USET_CREATING set by create_dir(). When
1049 * CONFIGFS_USET_CREATING is set, we ignore the item. The actual set of
1050 * s_type is in configfs_new_dirent(), which has configfs_dirent_lock.
1052 * If the target is not found, -ENOENT is bubbled up.
1054 * This adds a requirement that all config_items be unique!
1056 * This is recursive. There isn't
1057 * much on the stack, though, so folks that need this function - be careful
1058 * about your stack! Patches will be accepted to make it iterative.
1060 static int configfs_depend_prep(struct dentry *origin,
1061 struct config_item *target)
1063 struct configfs_dirent *child_sd, *sd;
1066 BUG_ON(!origin || !origin->d_fsdata);
1067 sd = origin->d_fsdata;
1069 if (sd->s_element == target) /* Boo-yah */
1072 list_for_each_entry(child_sd, &sd->s_children, s_sibling) {
1073 if ((child_sd->s_type & CONFIGFS_DIR) &&
1074 !(child_sd->s_type & CONFIGFS_USET_DROPPING) &&
1075 !(child_sd->s_type & CONFIGFS_USET_CREATING)) {
1076 ret = configfs_depend_prep(child_sd->s_dentry,
1079 goto out; /* Child path boo-yah */
1083 /* We looped all our children and didn't find target */
1090 static int configfs_do_depend_item(struct dentry *subsys_dentry,
1091 struct config_item *target)
1093 struct configfs_dirent *p;
1096 spin_lock(&configfs_dirent_lock);
1097 /* Scan the tree, return 0 if found */
1098 ret = configfs_depend_prep(subsys_dentry, target);
1100 goto out_unlock_dirent_lock;
1103 * We are sure that the item is not about to be removed by rmdir(), and
1104 * not in the middle of attachment by mkdir().
1106 p = target->ci_dentry->d_fsdata;
1107 p->s_dependent_count += 1;
1109 out_unlock_dirent_lock:
1110 spin_unlock(&configfs_dirent_lock);
1115 static inline struct configfs_dirent *
1116 configfs_find_subsys_dentry(struct configfs_dirent *root_sd,
1117 struct config_item *subsys_item)
1119 struct configfs_dirent *p;
1120 struct configfs_dirent *ret = NULL;
1122 list_for_each_entry(p, &root_sd->s_children, s_sibling) {
1123 if (p->s_type & CONFIGFS_DIR &&
1124 p->s_element == subsys_item) {
1134 int configfs_depend_item(struct configfs_subsystem *subsys,
1135 struct config_item *target)
1138 struct configfs_dirent *subsys_sd;
1139 struct config_item *s_item = &subsys->su_group.cg_item;
1140 struct dentry *root;
1143 * Pin the configfs filesystem. This means we can safely access
1144 * the root of the configfs filesystem.
1146 root = configfs_pin_fs();
1148 return PTR_ERR(root);
1151 * Next, lock the root directory. We're going to check that the
1152 * subsystem is really registered, and so we need to lock out
1153 * configfs_[un]register_subsystem().
1155 inode_lock(d_inode(root));
1157 subsys_sd = configfs_find_subsys_dentry(root->d_fsdata, s_item);
1163 /* Ok, now we can trust subsys/s_item */
1164 ret = configfs_do_depend_item(subsys_sd->s_dentry, target);
1167 inode_unlock(d_inode(root));
1170 * If we succeeded, the fs is pinned via other methods. If not,
1171 * we're done with it anyway. So release_fs() is always right.
1173 configfs_release_fs();
1177 EXPORT_SYMBOL(configfs_depend_item);
1180 * Release the dependent linkage. This is much simpler than
1181 * configfs_depend_item() because we know that the client driver is
1182 * pinned, thus the subsystem is pinned, and therefore configfs is pinned.
1184 void configfs_undepend_item(struct config_item *target)
1186 struct configfs_dirent *sd;
1189 * Since we can trust everything is pinned, we just need
1190 * configfs_dirent_lock.
1192 spin_lock(&configfs_dirent_lock);
1194 sd = target->ci_dentry->d_fsdata;
1195 BUG_ON(sd->s_dependent_count < 1);
1197 sd->s_dependent_count -= 1;
1200 * After this unlock, we cannot trust the item to stay alive!
1201 * DO NOT REFERENCE item after this unlock.
1203 spin_unlock(&configfs_dirent_lock);
1205 EXPORT_SYMBOL(configfs_undepend_item);
1208 * caller_subsys is a caller's subsystem not target's. This is used to
1209 * determine if we should lock root and check subsys or not. When we are
1210 * in the same subsystem as our target there is no need to do locking as
1211 * we know that subsys is valid and is not unregistered during this function
1212 * as we are called from callback of one of his children and VFS holds a lock
1213 * on some inode. Otherwise we have to lock our root to ensure that target's
1214 * subsystem it is not unregistered during this function.
1216 int configfs_depend_item_unlocked(struct configfs_subsystem *caller_subsys,
1217 struct config_item *target)
1219 struct configfs_subsystem *target_subsys;
1220 struct config_group *root, *parent;
1221 struct configfs_dirent *subsys_sd;
1224 /* Disallow this function for configfs root */
1225 if (configfs_is_root(target))
1228 parent = target->ci_group;
1230 * This may happen when someone is trying to depend root
1231 * directory of some subsystem
1233 if (configfs_is_root(&parent->cg_item)) {
1234 target_subsys = to_configfs_subsystem(to_config_group(target));
1237 target_subsys = parent->cg_subsys;
1238 /* Find a cofnigfs root as we may need it for locking */
1239 for (root = parent; !configfs_is_root(&root->cg_item);
1240 root = root->cg_item.ci_group)
1244 if (target_subsys != caller_subsys) {
1246 * We are in other configfs subsystem, so we have to do
1247 * additional locking to prevent other subsystem from being
1250 inode_lock(d_inode(root->cg_item.ci_dentry));
1253 * As we are trying to depend item from other subsystem
1254 * we have to check if this subsystem is still registered
1256 subsys_sd = configfs_find_subsys_dentry(
1257 root->cg_item.ci_dentry->d_fsdata,
1258 &target_subsys->su_group.cg_item);
1260 goto out_root_unlock;
1262 subsys_sd = target_subsys->su_group.cg_item.ci_dentry->d_fsdata;
1265 /* Now we can execute core of depend item */
1266 ret = configfs_do_depend_item(subsys_sd->s_dentry, target);
1268 if (target_subsys != caller_subsys)
1271 * We were called from subsystem other than our target so we
1272 * took some locks so now it's time to release them
1274 inode_unlock(d_inode(root->cg_item.ci_dentry));
1278 EXPORT_SYMBOL(configfs_depend_item_unlocked);
1280 static int configfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1284 struct config_group *group = NULL;
1285 struct config_item *item = NULL;
1286 struct config_item *parent_item;
1287 struct configfs_subsystem *subsys;
1288 struct configfs_dirent *sd;
1289 const struct config_item_type *type;
1290 struct module *subsys_owner = NULL, *new_item_owner = NULL;
1291 struct configfs_fragment *frag;
1294 sd = dentry->d_parent->d_fsdata;
1297 * Fake invisibility if dir belongs to a group/default groups hierarchy
1300 if (!configfs_dirent_is_ready(sd)) {
1305 if (!(sd->s_type & CONFIGFS_USET_DIR)) {
1310 frag = new_fragment();
1316 /* Get a working ref for the duration of this function */
1317 parent_item = configfs_get_config_item(dentry->d_parent);
1318 type = parent_item->ci_type;
1319 subsys = to_config_group(parent_item)->cg_subsys;
1322 if (!type || !type->ct_group_ops ||
1323 (!type->ct_group_ops->make_group &&
1324 !type->ct_group_ops->make_item)) {
1325 ret = -EPERM; /* Lack-of-mkdir returns -EPERM */
1330 * The subsystem may belong to a different module than the item
1331 * being created. We don't want to safely pin the new item but
1332 * fail to pin the subsystem it sits under.
1334 if (!subsys->su_group.cg_item.ci_type) {
1338 subsys_owner = subsys->su_group.cg_item.ci_type->ct_owner;
1339 if (!try_module_get(subsys_owner)) {
1344 name = kmalloc(dentry->d_name.len + 1, GFP_KERNEL);
1347 goto out_subsys_put;
1350 snprintf(name, dentry->d_name.len + 1, "%s", dentry->d_name.name);
1352 mutex_lock(&subsys->su_mutex);
1353 if (type->ct_group_ops->make_group) {
1354 group = type->ct_group_ops->make_group(to_config_group(parent_item), name);
1356 group = ERR_PTR(-ENOMEM);
1357 if (!IS_ERR(group)) {
1358 link_group(to_config_group(parent_item), group);
1359 item = &group->cg_item;
1361 ret = PTR_ERR(group);
1363 item = type->ct_group_ops->make_item(to_config_group(parent_item), name);
1365 item = ERR_PTR(-ENOMEM);
1367 link_obj(parent_item, item);
1369 ret = PTR_ERR(item);
1371 mutex_unlock(&subsys->su_mutex);
1376 * If ret != 0, then link_obj() was never called.
1377 * There are no extra references to clean up.
1379 goto out_subsys_put;
1383 * link_obj() has been called (via link_group() for groups).
1384 * From here on out, errors must clean that up.
1387 type = item->ci_type;
1393 new_item_owner = type->ct_owner;
1394 if (!try_module_get(new_item_owner)) {
1400 * I hate doing it this way, but if there is
1401 * an error, module_put() probably should
1402 * happen after any cleanup.
1407 * Make racing rmdir() fail if it did not tag parent with
1408 * CONFIGFS_USET_DROPPING
1409 * Note: if CONFIGFS_USET_DROPPING is already set, attach_group() will
1410 * fail and let rmdir() terminate correctly
1412 spin_lock(&configfs_dirent_lock);
1413 /* This will make configfs_detach_prep() fail */
1414 sd->s_type |= CONFIGFS_USET_IN_MKDIR;
1415 spin_unlock(&configfs_dirent_lock);
1418 ret = configfs_attach_group(parent_item, item, dentry, frag);
1420 ret = configfs_attach_item(parent_item, item, dentry, frag);
1422 spin_lock(&configfs_dirent_lock);
1423 sd->s_type &= ~CONFIGFS_USET_IN_MKDIR;
1425 configfs_dir_set_ready(dentry->d_fsdata);
1426 spin_unlock(&configfs_dirent_lock);
1430 /* Tear down everything we built up */
1431 mutex_lock(&subsys->su_mutex);
1433 client_disconnect_notify(parent_item, item);
1435 unlink_group(group);
1438 client_drop_item(parent_item, item);
1440 mutex_unlock(&subsys->su_mutex);
1443 module_put(new_item_owner);
1448 module_put(subsys_owner);
1452 * link_obj()/link_group() took a reference from child->parent,
1453 * so the parent is safely pinned. We can drop our working
1456 config_item_put(parent_item);
1463 static int configfs_rmdir(struct inode *dir, struct dentry *dentry)
1465 struct config_item *parent_item;
1466 struct config_item *item;
1467 struct configfs_subsystem *subsys;
1468 struct configfs_dirent *sd;
1469 struct configfs_fragment *frag;
1470 struct module *subsys_owner = NULL, *dead_item_owner = NULL;
1473 sd = dentry->d_fsdata;
1474 if (sd->s_type & CONFIGFS_USET_DEFAULT)
1477 /* Get a working ref until we have the child */
1478 parent_item = configfs_get_config_item(dentry->d_parent);
1479 subsys = to_config_group(parent_item)->cg_subsys;
1482 if (!parent_item->ci_type) {
1483 config_item_put(parent_item);
1487 /* configfs_mkdir() shouldn't have allowed this */
1488 BUG_ON(!subsys->su_group.cg_item.ci_type);
1489 subsys_owner = subsys->su_group.cg_item.ci_type->ct_owner;
1492 * Ensure that no racing symlink() will make detach_prep() fail while
1493 * the new link is temporarily attached
1496 struct dentry *wait;
1498 mutex_lock(&configfs_symlink_mutex);
1499 spin_lock(&configfs_dirent_lock);
1501 * Here's where we check for dependents. We're protected by
1502 * configfs_dirent_lock.
1503 * If no dependent, atomically tag the item as dropping.
1505 ret = sd->s_dependent_count ? -EBUSY : 0;
1507 ret = configfs_detach_prep(dentry, &wait);
1509 configfs_detach_rollback(dentry);
1511 spin_unlock(&configfs_dirent_lock);
1512 mutex_unlock(&configfs_symlink_mutex);
1515 if (ret != -EAGAIN) {
1516 config_item_put(parent_item);
1520 /* Wait until the racing operation terminates */
1521 inode_lock(d_inode(wait));
1522 inode_unlock(d_inode(wait));
1525 } while (ret == -EAGAIN);
1528 if (down_write_killable(&frag->frag_sem)) {
1529 spin_lock(&configfs_dirent_lock);
1530 configfs_detach_rollback(dentry);
1531 spin_unlock(&configfs_dirent_lock);
1532 config_item_put(parent_item);
1535 frag->frag_dead = true;
1536 up_write(&frag->frag_sem);
1538 /* Get a working ref for the duration of this function */
1539 item = configfs_get_config_item(dentry);
1541 /* Drop reference from above, item already holds one. */
1542 config_item_put(parent_item);
1545 dead_item_owner = item->ci_type->ct_owner;
1547 if (sd->s_type & CONFIGFS_USET_DIR) {
1548 configfs_detach_group(item);
1550 mutex_lock(&subsys->su_mutex);
1551 client_disconnect_notify(parent_item, item);
1552 unlink_group(to_config_group(item));
1554 configfs_detach_item(item);
1556 mutex_lock(&subsys->su_mutex);
1557 client_disconnect_notify(parent_item, item);
1561 client_drop_item(parent_item, item);
1562 mutex_unlock(&subsys->su_mutex);
1564 /* Drop our reference from above */
1565 config_item_put(item);
1567 module_put(dead_item_owner);
1568 module_put(subsys_owner);
1573 const struct inode_operations configfs_dir_inode_operations = {
1574 .mkdir = configfs_mkdir,
1575 .rmdir = configfs_rmdir,
1576 .symlink = configfs_symlink,
1577 .unlink = configfs_unlink,
1578 .lookup = configfs_lookup,
1579 .setattr = configfs_setattr,
1582 const struct inode_operations configfs_root_inode_operations = {
1583 .lookup = configfs_lookup,
1584 .setattr = configfs_setattr,
1587 static int configfs_dir_open(struct inode *inode, struct file *file)
1589 struct dentry * dentry = file->f_path.dentry;
1590 struct configfs_dirent * parent_sd = dentry->d_fsdata;
1593 inode_lock(d_inode(dentry));
1595 * Fake invisibility if dir belongs to a group/default groups hierarchy
1599 if (configfs_dirent_is_ready(parent_sd)) {
1600 file->private_data = configfs_new_dirent(parent_sd, NULL, 0, NULL);
1601 if (IS_ERR(file->private_data))
1602 err = PTR_ERR(file->private_data);
1606 inode_unlock(d_inode(dentry));
1611 static int configfs_dir_close(struct inode *inode, struct file *file)
1613 struct dentry * dentry = file->f_path.dentry;
1614 struct configfs_dirent * cursor = file->private_data;
1616 inode_lock(d_inode(dentry));
1617 spin_lock(&configfs_dirent_lock);
1618 list_del_init(&cursor->s_sibling);
1619 spin_unlock(&configfs_dirent_lock);
1620 inode_unlock(d_inode(dentry));
1622 release_configfs_dirent(cursor);
1627 /* Relationship between s_mode and the DT_xxx types */
1628 static inline unsigned char dt_type(struct configfs_dirent *sd)
1630 return (sd->s_mode >> 12) & 15;
1633 static int configfs_readdir(struct file *file, struct dir_context *ctx)
1635 struct dentry *dentry = file->f_path.dentry;
1636 struct super_block *sb = dentry->d_sb;
1637 struct configfs_dirent * parent_sd = dentry->d_fsdata;
1638 struct configfs_dirent *cursor = file->private_data;
1639 struct list_head *p, *q = &cursor->s_sibling;
1642 if (!dir_emit_dots(file, ctx))
1644 spin_lock(&configfs_dirent_lock);
1646 list_move(q, &parent_sd->s_children);
1647 for (p = q->next; p != &parent_sd->s_children; p = p->next) {
1648 struct configfs_dirent *next;
1651 struct inode *inode = NULL;
1653 next = list_entry(p, struct configfs_dirent, s_sibling);
1654 if (!next->s_element)
1658 * We'll have a dentry and an inode for
1659 * PINNED items and for open attribute
1660 * files. We lock here to prevent a race
1661 * with configfs_d_iput() clearing
1662 * s_dentry before calling iput().
1664 * Why do we go to the trouble? If
1665 * someone has an attribute file open,
1666 * the inode number should match until
1667 * they close it. Beyond that, we don't
1670 dentry = next->s_dentry;
1672 inode = d_inode(dentry);
1675 spin_unlock(&configfs_dirent_lock);
1677 ino = iunique(sb, 2);
1679 name = configfs_get_name(next);
1682 if (!dir_emit(ctx, name, len, ino, dt_type(next)))
1685 spin_lock(&configfs_dirent_lock);
1690 spin_unlock(&configfs_dirent_lock);
1694 static loff_t configfs_dir_lseek(struct file *file, loff_t offset, int whence)
1696 struct dentry * dentry = file->f_path.dentry;
1700 offset += file->f_pos;
1709 if (offset != file->f_pos) {
1710 file->f_pos = offset;
1711 if (file->f_pos >= 2) {
1712 struct configfs_dirent *sd = dentry->d_fsdata;
1713 struct configfs_dirent *cursor = file->private_data;
1714 struct list_head *p;
1715 loff_t n = file->f_pos - 2;
1717 spin_lock(&configfs_dirent_lock);
1718 list_del(&cursor->s_sibling);
1719 p = sd->s_children.next;
1720 while (n && p != &sd->s_children) {
1721 struct configfs_dirent *next;
1722 next = list_entry(p, struct configfs_dirent,
1724 if (next->s_element)
1728 list_add_tail(&cursor->s_sibling, p);
1729 spin_unlock(&configfs_dirent_lock);
1735 const struct file_operations configfs_dir_operations = {
1736 .open = configfs_dir_open,
1737 .release = configfs_dir_close,
1738 .llseek = configfs_dir_lseek,
1739 .read = generic_read_dir,
1740 .iterate_shared = configfs_readdir,
1744 * configfs_register_group - creates a parent-child relation between two groups
1745 * @parent_group: parent group
1746 * @group: child group
1748 * link groups, creates dentry for the child and attaches it to the
1751 * Return: 0 on success, negative errno code on error
1753 int configfs_register_group(struct config_group *parent_group,
1754 struct config_group *group)
1756 struct configfs_subsystem *subsys = parent_group->cg_subsys;
1757 struct dentry *parent;
1758 struct configfs_fragment *frag;
1761 frag = new_fragment();
1765 mutex_lock(&subsys->su_mutex);
1766 link_group(parent_group, group);
1767 mutex_unlock(&subsys->su_mutex);
1769 parent = parent_group->cg_item.ci_dentry;
1771 inode_lock_nested(d_inode(parent), I_MUTEX_PARENT);
1772 ret = create_default_group(parent_group, group, frag);
1776 spin_lock(&configfs_dirent_lock);
1777 configfs_dir_set_ready(group->cg_item.ci_dentry->d_fsdata);
1778 spin_unlock(&configfs_dirent_lock);
1779 inode_unlock(d_inode(parent));
1783 inode_unlock(d_inode(parent));
1784 mutex_lock(&subsys->su_mutex);
1785 unlink_group(group);
1786 mutex_unlock(&subsys->su_mutex);
1790 EXPORT_SYMBOL(configfs_register_group);
1793 * configfs_unregister_group() - unregisters a child group from its parent
1794 * @group: parent group to be unregistered
1796 * Undoes configfs_register_group()
1798 void configfs_unregister_group(struct config_group *group)
1800 struct configfs_subsystem *subsys = group->cg_subsys;
1801 struct dentry *dentry = group->cg_item.ci_dentry;
1802 struct dentry *parent = group->cg_item.ci_parent->ci_dentry;
1803 struct configfs_dirent *sd = dentry->d_fsdata;
1804 struct configfs_fragment *frag = sd->s_frag;
1806 down_write(&frag->frag_sem);
1807 frag->frag_dead = true;
1808 up_write(&frag->frag_sem);
1810 inode_lock_nested(d_inode(parent), I_MUTEX_PARENT);
1811 spin_lock(&configfs_dirent_lock);
1812 configfs_detach_prep(dentry, NULL);
1813 spin_unlock(&configfs_dirent_lock);
1815 configfs_detach_group(&group->cg_item);
1816 d_inode(dentry)->i_flags |= S_DEAD;
1819 fsnotify_rmdir(d_inode(parent), dentry);
1820 inode_unlock(d_inode(parent));
1824 mutex_lock(&subsys->su_mutex);
1825 unlink_group(group);
1826 mutex_unlock(&subsys->su_mutex);
1828 EXPORT_SYMBOL(configfs_unregister_group);
1831 * configfs_register_default_group() - allocates and registers a child group
1832 * @parent_group: parent group
1833 * @name: child group name
1834 * @item_type: child item type description
1836 * boilerplate to allocate and register a child group with its parent. We need
1837 * kzalloc'ed memory because child's default_group is initially empty.
1839 * Return: allocated config group or ERR_PTR() on error
1841 struct config_group *
1842 configfs_register_default_group(struct config_group *parent_group,
1844 const struct config_item_type *item_type)
1847 struct config_group *group;
1849 group = kzalloc(sizeof(*group), GFP_KERNEL);
1851 return ERR_PTR(-ENOMEM);
1852 config_group_init_type_name(group, name, item_type);
1854 ret = configfs_register_group(parent_group, group);
1857 return ERR_PTR(ret);
1861 EXPORT_SYMBOL(configfs_register_default_group);
1864 * configfs_unregister_default_group() - unregisters and frees a child group
1865 * @group: the group to act on
1867 void configfs_unregister_default_group(struct config_group *group)
1869 configfs_unregister_group(group);
1872 EXPORT_SYMBOL(configfs_unregister_default_group);
1874 int configfs_register_subsystem(struct configfs_subsystem *subsys)
1877 struct config_group *group = &subsys->su_group;
1878 struct dentry *dentry;
1879 struct dentry *root;
1880 struct configfs_dirent *sd;
1881 struct configfs_fragment *frag;
1883 frag = new_fragment();
1887 root = configfs_pin_fs();
1890 return PTR_ERR(root);
1893 if (!group->cg_item.ci_name)
1894 group->cg_item.ci_name = group->cg_item.ci_namebuf;
1896 sd = root->d_fsdata;
1897 mutex_lock(&configfs_subsystem_mutex);
1898 link_group(to_config_group(sd->s_element), group);
1899 mutex_unlock(&configfs_subsystem_mutex);
1901 inode_lock_nested(d_inode(root), I_MUTEX_PARENT);
1904 dentry = d_alloc_name(root, group->cg_item.ci_name);
1906 d_add(dentry, NULL);
1908 err = configfs_attach_group(sd->s_element, &group->cg_item,
1911 BUG_ON(d_inode(dentry));
1915 spin_lock(&configfs_dirent_lock);
1916 configfs_dir_set_ready(dentry->d_fsdata);
1917 spin_unlock(&configfs_dirent_lock);
1921 inode_unlock(d_inode(root));
1924 mutex_lock(&configfs_subsystem_mutex);
1925 unlink_group(group);
1926 mutex_unlock(&configfs_subsystem_mutex);
1927 configfs_release_fs();
1934 void configfs_unregister_subsystem(struct configfs_subsystem *subsys)
1936 struct config_group *group = &subsys->su_group;
1937 struct dentry *dentry = group->cg_item.ci_dentry;
1938 struct dentry *root = dentry->d_sb->s_root;
1939 struct configfs_dirent *sd = dentry->d_fsdata;
1940 struct configfs_fragment *frag = sd->s_frag;
1942 if (dentry->d_parent != root) {
1943 pr_err("Tried to unregister non-subsystem!\n");
1947 down_write(&frag->frag_sem);
1948 frag->frag_dead = true;
1949 up_write(&frag->frag_sem);
1951 inode_lock_nested(d_inode(root),
1953 inode_lock_nested(d_inode(dentry), I_MUTEX_CHILD);
1954 mutex_lock(&configfs_symlink_mutex);
1955 spin_lock(&configfs_dirent_lock);
1956 if (configfs_detach_prep(dentry, NULL)) {
1957 pr_err("Tried to unregister non-empty subsystem!\n");
1959 spin_unlock(&configfs_dirent_lock);
1960 mutex_unlock(&configfs_symlink_mutex);
1961 configfs_detach_group(&group->cg_item);
1962 d_inode(dentry)->i_flags |= S_DEAD;
1964 inode_unlock(d_inode(dentry));
1967 fsnotify_rmdir(d_inode(root), dentry);
1969 inode_unlock(d_inode(root));
1973 mutex_lock(&configfs_subsystem_mutex);
1974 unlink_group(group);
1975 mutex_unlock(&configfs_subsystem_mutex);
1976 configfs_release_fs();
1979 EXPORT_SYMBOL(configfs_register_subsystem);
1980 EXPORT_SYMBOL(configfs_unregister_subsystem);