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 BUG_ON(sd->s_dentry != dentry);
67 * We _must_ delete our dentries on last dput, as the chain-to-parent
68 * behavior is required to clear the parents of default_groups.
70 static int configfs_d_delete(struct dentry *dentry)
75 static struct dentry_operations configfs_dentry_ops = {
76 .d_iput = configfs_d_iput,
77 /* simple_delete_dentry() isn't exported */
78 .d_delete = configfs_d_delete,
82 * Allocates a new configfs_dirent and links it to the parent configfs_dirent
84 static struct configfs_dirent *configfs_new_dirent(struct configfs_dirent * parent_sd,
87 struct configfs_dirent * sd;
89 sd = kmem_cache_zalloc(configfs_dir_cachep, GFP_KERNEL);
91 return ERR_PTR(-ENOMEM);
93 atomic_set(&sd->s_count, 1);
94 INIT_LIST_HEAD(&sd->s_links);
95 INIT_LIST_HEAD(&sd->s_children);
96 sd->s_element = element;
97 spin_lock(&configfs_dirent_lock);
98 if (parent_sd->s_type & CONFIGFS_USET_DROPPING) {
99 spin_unlock(&configfs_dirent_lock);
100 kmem_cache_free(configfs_dir_cachep, sd);
101 return ERR_PTR(-ENOENT);
103 list_add(&sd->s_sibling, &parent_sd->s_children);
104 spin_unlock(&configfs_dirent_lock);
111 * Return -EEXIST if there is already a configfs element with the same
112 * name for the same parent.
114 * called with parent inode's i_mutex held
116 static int configfs_dirent_exists(struct configfs_dirent *parent_sd,
117 const unsigned char *new)
119 struct configfs_dirent * sd;
121 list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
123 const unsigned char *existing = configfs_get_name(sd);
124 if (strcmp(existing, new))
135 int configfs_make_dirent(struct configfs_dirent * parent_sd,
136 struct dentry * dentry, void * element,
137 umode_t mode, int type)
139 struct configfs_dirent * sd;
141 sd = configfs_new_dirent(parent_sd, element);
147 sd->s_dentry = dentry;
149 dentry->d_fsdata = configfs_get(sd);
150 dentry->d_op = &configfs_dentry_ops;
156 static int init_dir(struct inode * inode)
158 inode->i_op = &configfs_dir_inode_operations;
159 inode->i_fop = &configfs_dir_operations;
161 /* directory inodes start off with i_nlink == 2 (for "." entry) */
166 static int configfs_init_file(struct inode * inode)
168 inode->i_size = PAGE_SIZE;
169 inode->i_fop = &configfs_file_operations;
173 static int init_symlink(struct inode * inode)
175 inode->i_op = &configfs_symlink_inode_operations;
179 static int create_dir(struct config_item * k, struct dentry * p,
183 umode_t mode = S_IFDIR| S_IRWXU | S_IRUGO | S_IXUGO;
185 error = configfs_dirent_exists(p->d_fsdata, d->d_name.name);
187 error = configfs_make_dirent(p->d_fsdata, d, k, mode,
188 CONFIGFS_DIR | CONFIGFS_USET_CREATING);
190 error = configfs_create(d, mode, init_dir);
192 inc_nlink(p->d_inode);
193 (d)->d_op = &configfs_dentry_ops;
195 struct configfs_dirent *sd = d->d_fsdata;
197 spin_lock(&configfs_dirent_lock);
198 list_del_init(&sd->s_sibling);
199 spin_unlock(&configfs_dirent_lock);
209 * configfs_create_dir - create a directory for an config_item.
210 * @item: config_itemwe're creating directory for.
211 * @dentry: config_item's dentry.
213 * Note: user-created entries won't be allowed under this new directory
214 * until it is validated by configfs_dir_set_ready()
217 static int configfs_create_dir(struct config_item * item, struct dentry *dentry)
219 struct dentry * parent;
225 parent = item->ci_parent->ci_dentry;
226 else if (configfs_mount && configfs_mount->mnt_sb)
227 parent = configfs_mount->mnt_sb->s_root;
231 error = create_dir(item,parent,dentry);
233 item->ci_dentry = dentry;
238 * Allow userspace to create new entries under a new directory created with
239 * configfs_create_dir(), and under all of its chidlren directories recursively.
240 * @sd configfs_dirent of the new directory to validate
242 * Caller must hold configfs_dirent_lock.
244 static void configfs_dir_set_ready(struct configfs_dirent *sd)
246 struct configfs_dirent *child_sd;
248 sd->s_type &= ~CONFIGFS_USET_CREATING;
249 list_for_each_entry(child_sd, &sd->s_children, s_sibling)
250 if (child_sd->s_type & CONFIGFS_USET_CREATING)
251 configfs_dir_set_ready(child_sd);
255 * Check that a directory does not belong to a directory hierarchy being
256 * attached and not validated yet.
257 * @sd configfs_dirent of the directory to check
259 * @return non-zero iff the directory was validated
261 * Note: takes configfs_dirent_lock, so the result may change from false to true
262 * in two consecutive calls, but never from true to false.
264 int configfs_dirent_is_ready(struct configfs_dirent *sd)
268 spin_lock(&configfs_dirent_lock);
269 ret = !(sd->s_type & CONFIGFS_USET_CREATING);
270 spin_unlock(&configfs_dirent_lock);
275 int configfs_create_link(struct configfs_symlink *sl,
276 struct dentry *parent,
277 struct dentry *dentry)
280 umode_t mode = S_IFLNK | S_IRWXUGO;
282 err = configfs_make_dirent(parent->d_fsdata, dentry, sl, mode,
285 err = configfs_create(dentry, mode, init_symlink);
287 dentry->d_op = &configfs_dentry_ops;
289 struct configfs_dirent *sd = dentry->d_fsdata;
291 spin_lock(&configfs_dirent_lock);
292 list_del_init(&sd->s_sibling);
293 spin_unlock(&configfs_dirent_lock);
301 static void remove_dir(struct dentry * d)
303 struct dentry * parent = dget(d->d_parent);
304 struct configfs_dirent * sd;
307 spin_lock(&configfs_dirent_lock);
308 list_del_init(&sd->s_sibling);
309 spin_unlock(&configfs_dirent_lock);
312 simple_rmdir(parent->d_inode,d);
314 pr_debug(" o %s removing done (%d)\n",d->d_name.name,
315 atomic_read(&d->d_count));
321 * configfs_remove_dir - remove an config_item's directory.
322 * @item: config_item we're removing.
324 * The only thing special about this is that we remove any files in
325 * the directory before we remove the directory, and we've inlined
326 * what used to be configfs_rmdir() below, instead of calling separately.
328 * Caller holds the mutex of the item's inode
331 static void configfs_remove_dir(struct config_item * item)
333 struct dentry * dentry = dget(item->ci_dentry);
340 * Drop reference from dget() on entrance.
346 /* attaches attribute's configfs_dirent to the dentry corresponding to the
349 static int configfs_attach_attr(struct configfs_dirent * sd, struct dentry * dentry)
351 struct configfs_attribute * attr = sd->s_element;
354 dentry->d_fsdata = configfs_get(sd);
355 sd->s_dentry = dentry;
356 error = configfs_create(dentry, (attr->ca_mode & S_IALLUGO) | S_IFREG,
363 dentry->d_op = &configfs_dentry_ops;
369 static struct dentry * configfs_lookup(struct inode *dir,
370 struct dentry *dentry,
371 struct nameidata *nd)
373 struct configfs_dirent * parent_sd = dentry->d_parent->d_fsdata;
374 struct configfs_dirent * sd;
379 * Fake invisibility if dir belongs to a group/default groups hierarchy
382 * This forbids userspace to read/write attributes of items which may
383 * not complete their initialization, since the dentries of the
384 * attributes won't be instantiated.
387 if (!configfs_dirent_is_ready(parent_sd))
390 list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
391 if (sd->s_type & CONFIGFS_NOT_PINNED) {
392 const unsigned char * name = configfs_get_name(sd);
394 if (strcmp(name, dentry->d_name.name))
398 err = configfs_attach_attr(sd, dentry);
405 * If it doesn't exist and it isn't a NOT_PINNED item,
406 * it must be negative.
408 return simple_lookup(dir, dentry, nd);
416 * Only subdirectories count here. Files (CONFIGFS_NOT_PINNED) are
417 * attributes and are removed by rmdir(). We recurse, setting
418 * CONFIGFS_USET_DROPPING on all children that are candidates for
420 * If there is an error, the caller will reset the flags via
421 * configfs_detach_rollback().
423 static int configfs_detach_prep(struct dentry *dentry, struct mutex **wait_mutex)
425 struct configfs_dirent *parent_sd = dentry->d_fsdata;
426 struct configfs_dirent *sd;
429 /* Mark that we're trying to drop the group */
430 parent_sd->s_type |= CONFIGFS_USET_DROPPING;
433 if (!list_empty(&parent_sd->s_links))
437 list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
438 if (!sd->s_element ||
439 (sd->s_type & CONFIGFS_NOT_PINNED))
441 if (sd->s_type & CONFIGFS_USET_DEFAULT) {
442 /* Abort if racing with mkdir() */
443 if (sd->s_type & CONFIGFS_USET_IN_MKDIR) {
445 *wait_mutex = &sd->s_dentry->d_inode->i_mutex;
450 * Yup, recursive. If there's a problem, blame
451 * deep nesting of default_groups
453 ret = configfs_detach_prep(sd->s_dentry, wait_mutex);
467 * Walk the tree, resetting CONFIGFS_USET_DROPPING wherever it was
470 static void configfs_detach_rollback(struct dentry *dentry)
472 struct configfs_dirent *parent_sd = dentry->d_fsdata;
473 struct configfs_dirent *sd;
475 parent_sd->s_type &= ~CONFIGFS_USET_DROPPING;
477 list_for_each_entry(sd, &parent_sd->s_children, s_sibling)
478 if (sd->s_type & CONFIGFS_USET_DEFAULT)
479 configfs_detach_rollback(sd->s_dentry);
482 static void detach_attrs(struct config_item * item)
484 struct dentry * dentry = dget(item->ci_dentry);
485 struct configfs_dirent * parent_sd;
486 struct configfs_dirent * sd, * tmp;
491 pr_debug("configfs %s: dropping attrs for dir\n",
492 dentry->d_name.name);
494 parent_sd = dentry->d_fsdata;
495 list_for_each_entry_safe(sd, tmp, &parent_sd->s_children, s_sibling) {
496 if (!sd->s_element || !(sd->s_type & CONFIGFS_NOT_PINNED))
498 spin_lock(&configfs_dirent_lock);
499 list_del_init(&sd->s_sibling);
500 spin_unlock(&configfs_dirent_lock);
501 configfs_drop_dentry(sd, dentry);
506 * Drop reference from dget() on entrance.
511 static int populate_attrs(struct config_item *item)
513 struct config_item_type *t = item->ci_type;
514 struct configfs_attribute *attr;
521 for (i = 0; (attr = t->ct_attrs[i]) != NULL; i++) {
522 if ((error = configfs_create_file(item, attr)))
533 static int configfs_attach_group(struct config_item *parent_item,
534 struct config_item *item,
535 struct dentry *dentry);
536 static void configfs_detach_group(struct config_item *item);
538 static void detach_groups(struct config_group *group)
540 struct dentry * dentry = dget(group->cg_item.ci_dentry);
541 struct dentry *child;
542 struct configfs_dirent *parent_sd;
543 struct configfs_dirent *sd, *tmp;
548 parent_sd = dentry->d_fsdata;
549 list_for_each_entry_safe(sd, tmp, &parent_sd->s_children, s_sibling) {
550 if (!sd->s_element ||
551 !(sd->s_type & CONFIGFS_USET_DEFAULT))
554 child = sd->s_dentry;
557 * Note: we hide this from lockdep since we have no way
558 * to teach lockdep about recursive
559 * I_MUTEX_PARENT -> I_MUTEX_CHILD patterns along a path
560 * in an inode tree, which are valid as soon as
561 * I_MUTEX_PARENT -> I_MUTEX_CHILD is valid from a
562 * parent inode to one of its children.
565 mutex_lock(&child->d_inode->i_mutex);
568 configfs_detach_group(sd->s_element);
569 child->d_inode->i_flags |= S_DEAD;
572 mutex_unlock(&child->d_inode->i_mutex);
580 * Drop reference from dget() on entrance.
586 * This fakes mkdir(2) on a default_groups[] entry. It
587 * creates a dentry, attachs it, and then does fixup
590 * We could, perhaps, tweak our parent's ->mkdir for a minute and
591 * try using vfs_mkdir. Just a thought.
593 static int create_default_group(struct config_group *parent_group,
594 struct config_group *group)
598 struct configfs_dirent *sd;
599 /* We trust the caller holds a reference to parent */
600 struct dentry *child, *parent = parent_group->cg_item.ci_dentry;
602 if (!group->cg_item.ci_name)
603 group->cg_item.ci_name = group->cg_item.ci_namebuf;
604 name.name = group->cg_item.ci_name;
605 name.len = strlen(name.name);
606 name.hash = full_name_hash(name.name, name.len);
609 child = d_alloc(parent, &name);
613 ret = configfs_attach_group(&parent_group->cg_item,
614 &group->cg_item, child);
616 sd = child->d_fsdata;
617 sd->s_type |= CONFIGFS_USET_DEFAULT;
627 static int populate_groups(struct config_group *group)
629 struct config_group *new_group;
633 if (group->default_groups) {
634 for (i = 0; group->default_groups[i]; i++) {
635 new_group = group->default_groups[i];
637 ret = create_default_group(group, new_group);
639 detach_groups(group);
649 * All of link_obj/unlink_obj/link_group/unlink_group require that
650 * subsys->su_mutex is held.
653 static void unlink_obj(struct config_item *item)
655 struct config_group *group;
657 group = item->ci_group;
659 list_del_init(&item->ci_entry);
661 item->ci_group = NULL;
662 item->ci_parent = NULL;
664 /* Drop the reference for ci_entry */
665 config_item_put(item);
667 /* Drop the reference for ci_parent */
668 config_group_put(group);
672 static void link_obj(struct config_item *parent_item, struct config_item *item)
675 * Parent seems redundant with group, but it makes certain
676 * traversals much nicer.
678 item->ci_parent = parent_item;
681 * We hold a reference on the parent for the child's ci_parent
684 item->ci_group = config_group_get(to_config_group(parent_item));
685 list_add_tail(&item->ci_entry, &item->ci_group->cg_children);
688 * We hold a reference on the child for ci_entry on the parent's
691 config_item_get(item);
694 static void unlink_group(struct config_group *group)
697 struct config_group *new_group;
699 if (group->default_groups) {
700 for (i = 0; group->default_groups[i]; i++) {
701 new_group = group->default_groups[i];
702 unlink_group(new_group);
706 group->cg_subsys = NULL;
707 unlink_obj(&group->cg_item);
710 static void link_group(struct config_group *parent_group, struct config_group *group)
713 struct config_group *new_group;
714 struct configfs_subsystem *subsys = NULL; /* gcc is a turd */
716 link_obj(&parent_group->cg_item, &group->cg_item);
718 if (parent_group->cg_subsys)
719 subsys = parent_group->cg_subsys;
720 else if (configfs_is_root(&parent_group->cg_item))
721 subsys = to_configfs_subsystem(group);
724 group->cg_subsys = subsys;
726 if (group->default_groups) {
727 for (i = 0; group->default_groups[i]; i++) {
728 new_group = group->default_groups[i];
729 link_group(group, new_group);
735 * The goal is that configfs_attach_item() (and
736 * configfs_attach_group()) can be called from either the VFS or this
737 * module. That is, they assume that the items have been created,
738 * the dentry allocated, and the dcache is all ready to go.
740 * If they fail, they must clean up after themselves as if they
741 * had never been called. The caller (VFS or local function) will
742 * handle cleaning up the dcache bits.
744 * configfs_detach_group() and configfs_detach_item() behave similarly on
745 * the way out. They assume that the proper semaphores are held, they
746 * clean up the configfs items, and they expect their callers will
747 * handle the dcache bits.
749 static int configfs_attach_item(struct config_item *parent_item,
750 struct config_item *item,
751 struct dentry *dentry)
755 ret = configfs_create_dir(item, dentry);
757 ret = populate_attrs(item);
760 * We are going to remove an inode and its dentry but
761 * the VFS may already have hit and used them. Thus,
762 * we must lock them as rmdir() would.
764 * Note: we hide this from lockdep since we have no way
765 * to teach lockdep about recursive
766 * I_MUTEX_PARENT -> I_MUTEX_CHILD patterns along a path
767 * in an inode tree, which are valid as soon as
768 * I_MUTEX_PARENT -> I_MUTEX_CHILD is valid from a
769 * parent inode to one of its children.
772 mutex_lock(&dentry->d_inode->i_mutex);
774 configfs_remove_dir(item);
775 dentry->d_inode->i_flags |= S_DEAD;
777 mutex_unlock(&dentry->d_inode->i_mutex);
786 /* Caller holds the mutex of the item's inode */
787 static void configfs_detach_item(struct config_item *item)
790 configfs_remove_dir(item);
793 static int configfs_attach_group(struct config_item *parent_item,
794 struct config_item *item,
795 struct dentry *dentry)
798 struct configfs_dirent *sd;
800 ret = configfs_attach_item(parent_item, item, dentry);
802 sd = dentry->d_fsdata;
803 sd->s_type |= CONFIGFS_USET_DIR;
806 * FYI, we're faking mkdir in populate_groups()
807 * We must lock the group's inode to avoid races with the VFS
808 * which can already hit the inode and try to add/remove entries
811 * We must also lock the inode to remove it safely in case of
812 * error, as rmdir() would.
814 * Note: we hide this from lockdep since we have no way
815 * to teach lockdep about recursive
816 * I_MUTEX_PARENT -> I_MUTEX_CHILD patterns along a path
817 * in an inode tree, which are valid as soon as
818 * I_MUTEX_PARENT -> I_MUTEX_CHILD is valid from a
819 * parent inode to one of its children.
822 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_CHILD);
824 ret = populate_groups(to_config_group(item));
826 configfs_detach_item(item);
827 dentry->d_inode->i_flags |= S_DEAD;
830 mutex_unlock(&dentry->d_inode->i_mutex);
839 /* Caller holds the mutex of the group's inode */
840 static void configfs_detach_group(struct config_item *item)
842 detach_groups(to_config_group(item));
843 configfs_detach_item(item);
847 * After the item has been detached from the filesystem view, we are
848 * ready to tear it out of the hierarchy. Notify the client before
849 * we do that so they can perform any cleanup that requires
850 * navigating the hierarchy. A client does not need to provide this
851 * callback. The subsystem semaphore MUST be held by the caller, and
852 * references must be valid for both items. It also assumes the
853 * caller has validated ci_type.
855 static void client_disconnect_notify(struct config_item *parent_item,
856 struct config_item *item)
858 struct config_item_type *type;
860 type = parent_item->ci_type;
863 if (type->ct_group_ops && type->ct_group_ops->disconnect_notify)
864 type->ct_group_ops->disconnect_notify(to_config_group(parent_item),
869 * Drop the initial reference from make_item()/make_group()
870 * This function assumes that reference is held on item
871 * and that item holds a valid reference to the parent. Also, it
872 * assumes the caller has validated ci_type.
874 static void client_drop_item(struct config_item *parent_item,
875 struct config_item *item)
877 struct config_item_type *type;
879 type = parent_item->ci_type;
883 * If ->drop_item() exists, it is responsible for the
886 if (type->ct_group_ops && type->ct_group_ops->drop_item)
887 type->ct_group_ops->drop_item(to_config_group(parent_item),
890 config_item_put(item);
894 static void configfs_dump_one(struct configfs_dirent *sd, int level)
896 printk(KERN_INFO "%*s\"%s\":\n", level, " ", configfs_get_name(sd));
898 #define type_print(_type) if (sd->s_type & _type) printk(KERN_INFO "%*s %s\n", level, " ", #_type);
899 type_print(CONFIGFS_ROOT);
900 type_print(CONFIGFS_DIR);
901 type_print(CONFIGFS_ITEM_ATTR);
902 type_print(CONFIGFS_ITEM_LINK);
903 type_print(CONFIGFS_USET_DIR);
904 type_print(CONFIGFS_USET_DEFAULT);
905 type_print(CONFIGFS_USET_DROPPING);
909 static int configfs_dump(struct configfs_dirent *sd, int level)
911 struct configfs_dirent *child_sd;
914 configfs_dump_one(sd, level);
916 if (!(sd->s_type & (CONFIGFS_DIR|CONFIGFS_ROOT)))
919 list_for_each_entry(child_sd, &sd->s_children, s_sibling) {
920 ret = configfs_dump(child_sd, level + 2);
931 * configfs_depend_item() and configfs_undepend_item()
933 * WARNING: Do not call these from a configfs callback!
935 * This describes these functions and their helpers.
937 * Allow another kernel system to depend on a config_item. If this
938 * happens, the item cannot go away until the dependant can live without
939 * it. The idea is to give client modules as simple an interface as
940 * possible. When a system asks them to depend on an item, they just
941 * call configfs_depend_item(). If the item is live and the client
942 * driver is in good shape, we'll happily do the work for them.
944 * Why is the locking complex? Because configfs uses the VFS to handle
945 * all locking, but this function is called outside the normal
946 * VFS->configfs path. So it must take VFS locks to prevent the
947 * VFS->configfs stuff (configfs_mkdir(), configfs_rmdir(), etc). This is
948 * why you can't call these functions underneath configfs callbacks.
950 * Note, btw, that this can be called at *any* time, even when a configfs
951 * subsystem isn't registered, or when configfs is loading or unloading.
952 * Just like configfs_register_subsystem(). So we take the same
953 * precautions. We pin the filesystem. We lock each i_mutex _in_order_
954 * on our way down the tree. If we can find the target item in the
955 * configfs tree, it must be part of the subsystem tree as well, so we
956 * do not need the subsystem semaphore. Holding the i_mutex chain locks
957 * out mkdir() and rmdir(), who might be racing us.
961 * configfs_depend_prep()
963 * Only subdirectories count here. Files (CONFIGFS_NOT_PINNED) are
964 * attributes. This is similar but not the same to configfs_detach_prep().
965 * Note that configfs_detach_prep() expects the parent to be locked when it
966 * is called, but we lock the parent *inside* configfs_depend_prep(). We
967 * do that so we can unlock it if we find nothing.
969 * Here we do a depth-first search of the dentry hierarchy looking for
970 * our object. We take i_mutex on each step of the way down. IT IS
971 * ESSENTIAL THAT i_mutex LOCKING IS ORDERED. If we come back up a branch,
972 * we'll drop the i_mutex.
974 * If the target is not found, -ENOENT is bubbled up and we have released
975 * all locks. If the target was found, the locks will be cleared by
976 * configfs_depend_rollback().
978 * This adds a requirement that all config_items be unique!
980 * This is recursive because the locking traversal is tricky. There isn't
981 * much on the stack, though, so folks that need this function - be careful
982 * about your stack! Patches will be accepted to make it iterative.
984 static int configfs_depend_prep(struct dentry *origin,
985 struct config_item *target)
987 struct configfs_dirent *child_sd, *sd = origin->d_fsdata;
990 BUG_ON(!origin || !sd);
992 /* Lock this guy on the way down */
994 * Note: we hide this from lockdep since we have no way
995 * to teach lockdep about recursive
996 * I_MUTEX_PARENT -> I_MUTEX_CHILD patterns along a path
997 * in an inode tree, which are valid as soon as
998 * I_MUTEX_PARENT -> I_MUTEX_CHILD is valid from a
999 * parent inode to one of its children.
1002 mutex_lock(&sd->s_dentry->d_inode->i_mutex);
1004 if (sd->s_element == target) /* Boo-yah */
1007 list_for_each_entry(child_sd, &sd->s_children, s_sibling) {
1008 if (child_sd->s_type & CONFIGFS_DIR) {
1009 ret = configfs_depend_prep(child_sd->s_dentry,
1012 goto out; /* Child path boo-yah */
1016 /* We looped all our children and didn't find target */
1018 mutex_unlock(&sd->s_dentry->d_inode->i_mutex);
1027 * This is ONLY called if configfs_depend_prep() did its job. So we can
1028 * trust the entire path from item back up to origin.
1030 * We walk backwards from item, unlocking each i_mutex. We finish by
1033 static void configfs_depend_rollback(struct dentry *origin,
1034 struct config_item *item)
1036 struct dentry *dentry = item->ci_dentry;
1038 while (dentry != origin) {
1039 /* See comments in configfs_depend_prep() */
1041 mutex_unlock(&dentry->d_inode->i_mutex);
1043 dentry = dentry->d_parent;
1047 mutex_unlock(&origin->d_inode->i_mutex);
1051 int configfs_depend_item(struct configfs_subsystem *subsys,
1052 struct config_item *target)
1055 struct configfs_dirent *p, *root_sd, *subsys_sd = NULL;
1056 struct config_item *s_item = &subsys->su_group.cg_item;
1059 * Pin the configfs filesystem. This means we can safely access
1060 * the root of the configfs filesystem.
1062 ret = configfs_pin_fs();
1067 * Next, lock the root directory. We're going to check that the
1068 * subsystem is really registered, and so we need to lock out
1069 * configfs_[un]register_subsystem().
1071 mutex_lock(&configfs_sb->s_root->d_inode->i_mutex);
1073 root_sd = configfs_sb->s_root->d_fsdata;
1075 list_for_each_entry(p, &root_sd->s_children, s_sibling) {
1076 if (p->s_type & CONFIGFS_DIR) {
1077 if (p->s_element == s_item) {
1089 /* Ok, now we can trust subsys/s_item */
1091 /* Scan the tree, locking i_mutex recursively, return 0 if found */
1092 ret = configfs_depend_prep(subsys_sd->s_dentry, target);
1096 /* We hold all i_mutexes from the subsystem down to the target */
1097 p = target->ci_dentry->d_fsdata;
1098 p->s_dependent_count += 1;
1100 configfs_depend_rollback(subsys_sd->s_dentry, target);
1103 mutex_unlock(&configfs_sb->s_root->d_inode->i_mutex);
1106 * If we succeeded, the fs is pinned via other methods. If not,
1107 * we're done with it anyway. So release_fs() is always right.
1109 configfs_release_fs();
1113 EXPORT_SYMBOL(configfs_depend_item);
1116 * Release the dependent linkage. This is much simpler than
1117 * configfs_depend_item() because we know that that the client driver is
1118 * pinned, thus the subsystem is pinned, and therefore configfs is pinned.
1120 void configfs_undepend_item(struct configfs_subsystem *subsys,
1121 struct config_item *target)
1123 struct configfs_dirent *sd;
1126 * Since we can trust everything is pinned, we just need i_mutex
1129 mutex_lock(&target->ci_dentry->d_inode->i_mutex);
1131 sd = target->ci_dentry->d_fsdata;
1132 BUG_ON(sd->s_dependent_count < 1);
1134 sd->s_dependent_count -= 1;
1137 * After this unlock, we cannot trust the item to stay alive!
1138 * DO NOT REFERENCE item after this unlock.
1140 mutex_unlock(&target->ci_dentry->d_inode->i_mutex);
1142 EXPORT_SYMBOL(configfs_undepend_item);
1144 static int configfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1148 struct config_group *group = NULL;
1149 struct config_item *item = NULL;
1150 struct config_item *parent_item;
1151 struct configfs_subsystem *subsys;
1152 struct configfs_dirent *sd;
1153 struct config_item_type *type;
1154 struct module *subsys_owner = NULL, *new_item_owner = NULL;
1157 if (dentry->d_parent == configfs_sb->s_root) {
1162 sd = dentry->d_parent->d_fsdata;
1165 * Fake invisibility if dir belongs to a group/default groups hierarchy
1168 if (!configfs_dirent_is_ready(sd)) {
1173 if (!(sd->s_type & CONFIGFS_USET_DIR)) {
1178 /* Get a working ref for the duration of this function */
1179 parent_item = configfs_get_config_item(dentry->d_parent);
1180 type = parent_item->ci_type;
1181 subsys = to_config_group(parent_item)->cg_subsys;
1184 if (!type || !type->ct_group_ops ||
1185 (!type->ct_group_ops->make_group &&
1186 !type->ct_group_ops->make_item)) {
1187 ret = -EPERM; /* Lack-of-mkdir returns -EPERM */
1192 * The subsystem may belong to a different module than the item
1193 * being created. We don't want to safely pin the new item but
1194 * fail to pin the subsystem it sits under.
1196 if (!subsys->su_group.cg_item.ci_type) {
1200 subsys_owner = subsys->su_group.cg_item.ci_type->ct_owner;
1201 if (!try_module_get(subsys_owner)) {
1206 name = kmalloc(dentry->d_name.len + 1, GFP_KERNEL);
1209 goto out_subsys_put;
1212 snprintf(name, dentry->d_name.len + 1, "%s", dentry->d_name.name);
1214 mutex_lock(&subsys->su_mutex);
1215 if (type->ct_group_ops->make_group) {
1216 group = type->ct_group_ops->make_group(to_config_group(parent_item), name);
1218 group = ERR_PTR(-ENOMEM);
1219 if (!IS_ERR(group)) {
1220 link_group(to_config_group(parent_item), group);
1221 item = &group->cg_item;
1223 ret = PTR_ERR(group);
1225 item = type->ct_group_ops->make_item(to_config_group(parent_item), name);
1227 item = ERR_PTR(-ENOMEM);
1229 link_obj(parent_item, item);
1231 ret = PTR_ERR(item);
1233 mutex_unlock(&subsys->su_mutex);
1238 * If ret != 0, then link_obj() was never called.
1239 * There are no extra references to clean up.
1241 goto out_subsys_put;
1245 * link_obj() has been called (via link_group() for groups).
1246 * From here on out, errors must clean that up.
1249 type = item->ci_type;
1255 new_item_owner = type->ct_owner;
1256 if (!try_module_get(new_item_owner)) {
1262 * I hate doing it this way, but if there is
1263 * an error, module_put() probably should
1264 * happen after any cleanup.
1269 * Make racing rmdir() fail if it did not tag parent with
1270 * CONFIGFS_USET_DROPPING
1271 * Note: if CONFIGFS_USET_DROPPING is already set, attach_group() will
1272 * fail and let rmdir() terminate correctly
1274 spin_lock(&configfs_dirent_lock);
1275 /* This will make configfs_detach_prep() fail */
1276 sd->s_type |= CONFIGFS_USET_IN_MKDIR;
1277 spin_unlock(&configfs_dirent_lock);
1280 ret = configfs_attach_group(parent_item, item, dentry);
1282 ret = configfs_attach_item(parent_item, item, dentry);
1284 spin_lock(&configfs_dirent_lock);
1285 sd->s_type &= ~CONFIGFS_USET_IN_MKDIR;
1287 configfs_dir_set_ready(dentry->d_fsdata);
1288 spin_unlock(&configfs_dirent_lock);
1292 /* Tear down everything we built up */
1293 mutex_lock(&subsys->su_mutex);
1295 client_disconnect_notify(parent_item, item);
1297 unlink_group(group);
1300 client_drop_item(parent_item, item);
1302 mutex_unlock(&subsys->su_mutex);
1305 module_put(new_item_owner);
1310 module_put(subsys_owner);
1314 * link_obj()/link_group() took a reference from child->parent,
1315 * so the parent is safely pinned. We can drop our working
1318 config_item_put(parent_item);
1324 static int configfs_rmdir(struct inode *dir, struct dentry *dentry)
1326 struct config_item *parent_item;
1327 struct config_item *item;
1328 struct configfs_subsystem *subsys;
1329 struct configfs_dirent *sd;
1330 struct module *subsys_owner = NULL, *dead_item_owner = NULL;
1333 if (dentry->d_parent == configfs_sb->s_root)
1336 sd = dentry->d_fsdata;
1337 if (sd->s_type & CONFIGFS_USET_DEFAULT)
1341 * Here's where we check for dependents. We're protected by
1344 if (sd->s_dependent_count)
1347 /* Get a working ref until we have the child */
1348 parent_item = configfs_get_config_item(dentry->d_parent);
1349 subsys = to_config_group(parent_item)->cg_subsys;
1352 if (!parent_item->ci_type) {
1353 config_item_put(parent_item);
1357 /* configfs_mkdir() shouldn't have allowed this */
1358 BUG_ON(!subsys->su_group.cg_item.ci_type);
1359 subsys_owner = subsys->su_group.cg_item.ci_type->ct_owner;
1362 * Ensure that no racing symlink() will make detach_prep() fail while
1363 * the new link is temporarily attached
1366 struct mutex *wait_mutex;
1368 mutex_lock(&configfs_symlink_mutex);
1369 spin_lock(&configfs_dirent_lock);
1370 ret = configfs_detach_prep(dentry, &wait_mutex);
1372 configfs_detach_rollback(dentry);
1373 spin_unlock(&configfs_dirent_lock);
1374 mutex_unlock(&configfs_symlink_mutex);
1377 if (ret != -EAGAIN) {
1378 config_item_put(parent_item);
1382 /* Wait until the racing operation terminates */
1384 * Note: we hide this from lockdep since we are locked
1385 * with subclass I_MUTEX_NORMAL from vfs_rmdir() (why
1386 * not I_MUTEX_CHILD?), and I_MUTEX_XATTR or
1387 * I_MUTEX_QUOTA are not relevant for the locked inode.
1390 mutex_lock(wait_mutex);
1391 mutex_unlock(wait_mutex);
1394 } while (ret == -EAGAIN);
1396 /* Get a working ref for the duration of this function */
1397 item = configfs_get_config_item(dentry);
1399 /* Drop reference from above, item already holds one. */
1400 config_item_put(parent_item);
1403 dead_item_owner = item->ci_type->ct_owner;
1405 if (sd->s_type & CONFIGFS_USET_DIR) {
1406 configfs_detach_group(item);
1408 mutex_lock(&subsys->su_mutex);
1409 client_disconnect_notify(parent_item, item);
1410 unlink_group(to_config_group(item));
1412 configfs_detach_item(item);
1414 mutex_lock(&subsys->su_mutex);
1415 client_disconnect_notify(parent_item, item);
1419 client_drop_item(parent_item, item);
1420 mutex_unlock(&subsys->su_mutex);
1422 /* Drop our reference from above */
1423 config_item_put(item);
1425 module_put(dead_item_owner);
1426 module_put(subsys_owner);
1431 const struct inode_operations configfs_dir_inode_operations = {
1432 .mkdir = configfs_mkdir,
1433 .rmdir = configfs_rmdir,
1434 .symlink = configfs_symlink,
1435 .unlink = configfs_unlink,
1436 .lookup = configfs_lookup,
1437 .setattr = configfs_setattr,
1441 int configfs_rename_dir(struct config_item * item, const char *new_name)
1444 struct dentry * new_dentry, * parent;
1446 if (!strcmp(config_item_name(item), new_name))
1452 down_write(&configfs_rename_sem);
1453 parent = item->parent->dentry;
1455 mutex_lock(&parent->d_inode->i_mutex);
1457 new_dentry = lookup_one_len(new_name, parent, strlen(new_name));
1458 if (!IS_ERR(new_dentry)) {
1459 if (!new_dentry->d_inode) {
1460 error = config_item_set_name(item, "%s", new_name);
1462 d_add(new_dentry, NULL);
1463 d_move(item->dentry, new_dentry);
1466 d_delete(new_dentry);
1471 mutex_unlock(&parent->d_inode->i_mutex);
1472 up_write(&configfs_rename_sem);
1478 static int configfs_dir_open(struct inode *inode, struct file *file)
1480 struct dentry * dentry = file->f_path.dentry;
1481 struct configfs_dirent * parent_sd = dentry->d_fsdata;
1484 mutex_lock(&dentry->d_inode->i_mutex);
1486 * Fake invisibility if dir belongs to a group/default groups hierarchy
1490 if (configfs_dirent_is_ready(parent_sd)) {
1491 file->private_data = configfs_new_dirent(parent_sd, NULL);
1492 if (IS_ERR(file->private_data))
1493 err = PTR_ERR(file->private_data);
1497 mutex_unlock(&dentry->d_inode->i_mutex);
1502 static int configfs_dir_close(struct inode *inode, struct file *file)
1504 struct dentry * dentry = file->f_path.dentry;
1505 struct configfs_dirent * cursor = file->private_data;
1507 mutex_lock(&dentry->d_inode->i_mutex);
1508 spin_lock(&configfs_dirent_lock);
1509 list_del_init(&cursor->s_sibling);
1510 spin_unlock(&configfs_dirent_lock);
1511 mutex_unlock(&dentry->d_inode->i_mutex);
1513 release_configfs_dirent(cursor);
1518 /* Relationship between s_mode and the DT_xxx types */
1519 static inline unsigned char dt_type(struct configfs_dirent *sd)
1521 return (sd->s_mode >> 12) & 15;
1524 static int configfs_readdir(struct file * filp, void * dirent, filldir_t filldir)
1526 struct dentry *dentry = filp->f_path.dentry;
1527 struct configfs_dirent * parent_sd = dentry->d_fsdata;
1528 struct configfs_dirent *cursor = filp->private_data;
1529 struct list_head *p, *q = &cursor->s_sibling;
1531 int i = filp->f_pos;
1535 ino = dentry->d_inode->i_ino;
1536 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
1542 ino = parent_ino(dentry);
1543 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
1549 if (filp->f_pos == 2) {
1550 spin_lock(&configfs_dirent_lock);
1551 list_move(q, &parent_sd->s_children);
1552 spin_unlock(&configfs_dirent_lock);
1554 for (p=q->next; p!= &parent_sd->s_children; p=p->next) {
1555 struct configfs_dirent *next;
1559 next = list_entry(p, struct configfs_dirent,
1561 if (!next->s_element)
1564 name = configfs_get_name(next);
1567 ino = next->s_dentry->d_inode->i_ino;
1569 ino = iunique(configfs_sb, 2);
1571 if (filldir(dirent, name, len, filp->f_pos, ino,
1575 spin_lock(&configfs_dirent_lock);
1577 spin_unlock(&configfs_dirent_lock);
1585 static loff_t configfs_dir_lseek(struct file * file, loff_t offset, int origin)
1587 struct dentry * dentry = file->f_path.dentry;
1589 mutex_lock(&dentry->d_inode->i_mutex);
1592 offset += file->f_pos;
1597 mutex_unlock(&file->f_path.dentry->d_inode->i_mutex);
1600 if (offset != file->f_pos) {
1601 file->f_pos = offset;
1602 if (file->f_pos >= 2) {
1603 struct configfs_dirent *sd = dentry->d_fsdata;
1604 struct configfs_dirent *cursor = file->private_data;
1605 struct list_head *p;
1606 loff_t n = file->f_pos - 2;
1608 spin_lock(&configfs_dirent_lock);
1609 list_del(&cursor->s_sibling);
1610 p = sd->s_children.next;
1611 while (n && p != &sd->s_children) {
1612 struct configfs_dirent *next;
1613 next = list_entry(p, struct configfs_dirent,
1615 if (next->s_element)
1619 list_add_tail(&cursor->s_sibling, p);
1620 spin_unlock(&configfs_dirent_lock);
1623 mutex_unlock(&dentry->d_inode->i_mutex);
1627 const struct file_operations configfs_dir_operations = {
1628 .open = configfs_dir_open,
1629 .release = configfs_dir_close,
1630 .llseek = configfs_dir_lseek,
1631 .read = generic_read_dir,
1632 .readdir = configfs_readdir,
1635 int configfs_register_subsystem(struct configfs_subsystem *subsys)
1638 struct config_group *group = &subsys->su_group;
1640 struct dentry *dentry;
1641 struct configfs_dirent *sd;
1643 err = configfs_pin_fs();
1647 if (!group->cg_item.ci_name)
1648 group->cg_item.ci_name = group->cg_item.ci_namebuf;
1650 sd = configfs_sb->s_root->d_fsdata;
1651 link_group(to_config_group(sd->s_element), group);
1653 mutex_lock_nested(&configfs_sb->s_root->d_inode->i_mutex,
1656 name.name = group->cg_item.ci_name;
1657 name.len = strlen(name.name);
1658 name.hash = full_name_hash(name.name, name.len);
1661 dentry = d_alloc(configfs_sb->s_root, &name);
1663 d_add(dentry, NULL);
1665 err = configfs_attach_group(sd->s_element, &group->cg_item,
1671 spin_lock(&configfs_dirent_lock);
1672 configfs_dir_set_ready(dentry->d_fsdata);
1673 spin_unlock(&configfs_dirent_lock);
1677 mutex_unlock(&configfs_sb->s_root->d_inode->i_mutex);
1680 unlink_group(group);
1681 configfs_release_fs();
1687 void configfs_unregister_subsystem(struct configfs_subsystem *subsys)
1689 struct config_group *group = &subsys->su_group;
1690 struct dentry *dentry = group->cg_item.ci_dentry;
1692 if (dentry->d_parent != configfs_sb->s_root) {
1693 printk(KERN_ERR "configfs: Tried to unregister non-subsystem!\n");
1697 mutex_lock_nested(&configfs_sb->s_root->d_inode->i_mutex,
1699 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_CHILD);
1700 mutex_lock(&configfs_symlink_mutex);
1701 spin_lock(&configfs_dirent_lock);
1702 if (configfs_detach_prep(dentry, NULL)) {
1703 printk(KERN_ERR "configfs: Tried to unregister non-empty subsystem!\n");
1705 spin_unlock(&configfs_dirent_lock);
1706 mutex_unlock(&configfs_symlink_mutex);
1707 configfs_detach_group(&group->cg_item);
1708 dentry->d_inode->i_flags |= S_DEAD;
1709 mutex_unlock(&dentry->d_inode->i_mutex);
1713 mutex_unlock(&configfs_sb->s_root->d_inode->i_mutex);
1717 unlink_group(group);
1718 configfs_release_fs();
1721 EXPORT_SYMBOL(configfs_register_subsystem);
1722 EXPORT_SYMBOL(configfs_unregister_subsystem);