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>
34 #include <linux/configfs.h>
35 #include "configfs_internal.h"
37 DECLARE_RWSEM(configfs_rename_sem
);
39 static void configfs_d_iput(struct dentry
* dentry
,
42 struct configfs_dirent
* sd
= dentry
->d_fsdata
;
45 BUG_ON(sd
->s_dentry
!= dentry
);
53 * We _must_ delete our dentries on last dput, as the chain-to-parent
54 * behavior is required to clear the parents of default_groups.
56 static int configfs_d_delete(struct dentry
*dentry
)
61 static struct dentry_operations configfs_dentry_ops
= {
62 .d_iput
= configfs_d_iput
,
63 /* simple_delete_dentry() isn't exported */
64 .d_delete
= configfs_d_delete
,
68 * Allocates a new configfs_dirent and links it to the parent configfs_dirent
70 static struct configfs_dirent
*configfs_new_dirent(struct configfs_dirent
* parent_sd
,
73 struct configfs_dirent
* sd
;
75 sd
= kmem_cache_zalloc(configfs_dir_cachep
, GFP_KERNEL
);
79 atomic_set(&sd
->s_count
, 1);
80 INIT_LIST_HEAD(&sd
->s_links
);
81 INIT_LIST_HEAD(&sd
->s_children
);
82 list_add(&sd
->s_sibling
, &parent_sd
->s_children
);
83 sd
->s_element
= element
;
90 * Return -EEXIST if there is already a configfs element with the same
91 * name for the same parent.
93 * called with parent inode's i_mutex held
95 static int configfs_dirent_exists(struct configfs_dirent
*parent_sd
,
96 const unsigned char *new)
98 struct configfs_dirent
* sd
;
100 list_for_each_entry(sd
, &parent_sd
->s_children
, s_sibling
) {
102 const unsigned char *existing
= configfs_get_name(sd
);
103 if (strcmp(existing
, new))
114 int configfs_make_dirent(struct configfs_dirent
* parent_sd
,
115 struct dentry
* dentry
, void * element
,
116 umode_t mode
, int type
)
118 struct configfs_dirent
* sd
;
120 sd
= configfs_new_dirent(parent_sd
, element
);
126 sd
->s_dentry
= dentry
;
128 dentry
->d_fsdata
= configfs_get(sd
);
129 dentry
->d_op
= &configfs_dentry_ops
;
135 static int init_dir(struct inode
* inode
)
137 inode
->i_op
= &configfs_dir_inode_operations
;
138 inode
->i_fop
= &configfs_dir_operations
;
140 /* directory inodes start off with i_nlink == 2 (for "." entry) */
145 static int configfs_init_file(struct inode
* inode
)
147 inode
->i_size
= PAGE_SIZE
;
148 inode
->i_fop
= &configfs_file_operations
;
152 static int init_symlink(struct inode
* inode
)
154 inode
->i_op
= &configfs_symlink_inode_operations
;
158 static int create_dir(struct config_item
* k
, struct dentry
* p
,
162 umode_t mode
= S_IFDIR
| S_IRWXU
| S_IRUGO
| S_IXUGO
;
164 error
= configfs_dirent_exists(p
->d_fsdata
, d
->d_name
.name
);
166 error
= configfs_make_dirent(p
->d_fsdata
, d
, k
, mode
,
169 error
= configfs_create(d
, mode
, init_dir
);
171 inc_nlink(p
->d_inode
);
172 (d
)->d_op
= &configfs_dentry_ops
;
174 struct configfs_dirent
*sd
= d
->d_fsdata
;
176 list_del_init(&sd
->s_sibling
);
186 * configfs_create_dir - create a directory for an config_item.
187 * @item: config_itemwe're creating directory for.
188 * @dentry: config_item's dentry.
191 static int configfs_create_dir(struct config_item
* item
, struct dentry
*dentry
)
193 struct dentry
* parent
;
199 parent
= item
->ci_parent
->ci_dentry
;
200 else if (configfs_mount
&& configfs_mount
->mnt_sb
)
201 parent
= configfs_mount
->mnt_sb
->s_root
;
205 error
= create_dir(item
,parent
,dentry
);
207 item
->ci_dentry
= dentry
;
211 int configfs_create_link(struct configfs_symlink
*sl
,
212 struct dentry
*parent
,
213 struct dentry
*dentry
)
216 umode_t mode
= S_IFLNK
| S_IRWXUGO
;
218 err
= configfs_make_dirent(parent
->d_fsdata
, dentry
, sl
, mode
,
221 err
= configfs_create(dentry
, mode
, init_symlink
);
223 dentry
->d_op
= &configfs_dentry_ops
;
225 struct configfs_dirent
*sd
= dentry
->d_fsdata
;
227 list_del_init(&sd
->s_sibling
);
235 static void remove_dir(struct dentry
* d
)
237 struct dentry
* parent
= dget(d
->d_parent
);
238 struct configfs_dirent
* sd
;
241 list_del_init(&sd
->s_sibling
);
244 simple_rmdir(parent
->d_inode
,d
);
246 pr_debug(" o %s removing done (%d)\n",d
->d_name
.name
,
247 atomic_read(&d
->d_count
));
253 * configfs_remove_dir - remove an config_item's directory.
254 * @item: config_item we're removing.
256 * The only thing special about this is that we remove any files in
257 * the directory before we remove the directory, and we've inlined
258 * what used to be configfs_rmdir() below, instead of calling separately.
261 static void configfs_remove_dir(struct config_item
* item
)
263 struct dentry
* dentry
= dget(item
->ci_dentry
);
270 * Drop reference from dget() on entrance.
276 /* attaches attribute's configfs_dirent to the dentry corresponding to the
279 static int configfs_attach_attr(struct configfs_dirent
* sd
, struct dentry
* dentry
)
281 struct configfs_attribute
* attr
= sd
->s_element
;
284 dentry
->d_fsdata
= configfs_get(sd
);
285 sd
->s_dentry
= dentry
;
286 error
= configfs_create(dentry
, (attr
->ca_mode
& S_IALLUGO
) | S_IFREG
,
293 dentry
->d_op
= &configfs_dentry_ops
;
299 static struct dentry
* configfs_lookup(struct inode
*dir
,
300 struct dentry
*dentry
,
301 struct nameidata
*nd
)
303 struct configfs_dirent
* parent_sd
= dentry
->d_parent
->d_fsdata
;
304 struct configfs_dirent
* sd
;
308 list_for_each_entry(sd
, &parent_sd
->s_children
, s_sibling
) {
309 if (sd
->s_type
& CONFIGFS_NOT_PINNED
) {
310 const unsigned char * name
= configfs_get_name(sd
);
312 if (strcmp(name
, dentry
->d_name
.name
))
316 err
= configfs_attach_attr(sd
, dentry
);
323 * If it doesn't exist and it isn't a NOT_PINNED item,
324 * it must be negative.
326 return simple_lookup(dir
, dentry
, nd
);
333 * Only subdirectories count here. Files (CONFIGFS_NOT_PINNED) are
334 * attributes and are removed by rmdir(). We recurse, taking i_mutex
335 * on all children that are candidates for default detach. If the
336 * result is clean, then configfs_detach_group() will handle dropping
337 * i_mutex. If there is an error, the caller will clean up the i_mutex
338 * holders via configfs_detach_rollback().
340 static int configfs_detach_prep(struct dentry
*dentry
)
342 struct configfs_dirent
*parent_sd
= dentry
->d_fsdata
;
343 struct configfs_dirent
*sd
;
347 if (!list_empty(&parent_sd
->s_links
))
351 list_for_each_entry(sd
, &parent_sd
->s_children
, s_sibling
) {
352 if (sd
->s_type
& CONFIGFS_NOT_PINNED
)
354 if (sd
->s_type
& CONFIGFS_USET_DEFAULT
) {
355 mutex_lock(&sd
->s_dentry
->d_inode
->i_mutex
);
356 /* Mark that we've taken i_mutex */
357 sd
->s_type
|= CONFIGFS_USET_DROPPING
;
360 * Yup, recursive. If there's a problem, blame
361 * deep nesting of default_groups
363 ret
= configfs_detach_prep(sd
->s_dentry
);
377 * Walk the tree, dropping i_mutex wherever CONFIGFS_USET_DROPPING is
380 static void configfs_detach_rollback(struct dentry
*dentry
)
382 struct configfs_dirent
*parent_sd
= dentry
->d_fsdata
;
383 struct configfs_dirent
*sd
;
385 list_for_each_entry(sd
, &parent_sd
->s_children
, s_sibling
) {
386 if (sd
->s_type
& CONFIGFS_USET_DEFAULT
) {
387 configfs_detach_rollback(sd
->s_dentry
);
389 if (sd
->s_type
& CONFIGFS_USET_DROPPING
) {
390 sd
->s_type
&= ~CONFIGFS_USET_DROPPING
;
391 mutex_unlock(&sd
->s_dentry
->d_inode
->i_mutex
);
397 static void detach_attrs(struct config_item
* item
)
399 struct dentry
* dentry
= dget(item
->ci_dentry
);
400 struct configfs_dirent
* parent_sd
;
401 struct configfs_dirent
* sd
, * tmp
;
406 pr_debug("configfs %s: dropping attrs for dir\n",
407 dentry
->d_name
.name
);
409 parent_sd
= dentry
->d_fsdata
;
410 list_for_each_entry_safe(sd
, tmp
, &parent_sd
->s_children
, s_sibling
) {
411 if (!sd
->s_element
|| !(sd
->s_type
& CONFIGFS_NOT_PINNED
))
413 list_del_init(&sd
->s_sibling
);
414 configfs_drop_dentry(sd
, dentry
);
419 * Drop reference from dget() on entrance.
424 static int populate_attrs(struct config_item
*item
)
426 struct config_item_type
*t
= item
->ci_type
;
427 struct configfs_attribute
*attr
;
434 for (i
= 0; (attr
= t
->ct_attrs
[i
]) != NULL
; i
++) {
435 if ((error
= configfs_create_file(item
, attr
)))
446 static int configfs_attach_group(struct config_item
*parent_item
,
447 struct config_item
*item
,
448 struct dentry
*dentry
);
449 static void configfs_detach_group(struct config_item
*item
);
451 static void detach_groups(struct config_group
*group
)
453 struct dentry
* dentry
= dget(group
->cg_item
.ci_dentry
);
454 struct dentry
*child
;
455 struct configfs_dirent
*parent_sd
;
456 struct configfs_dirent
*sd
, *tmp
;
461 parent_sd
= dentry
->d_fsdata
;
462 list_for_each_entry_safe(sd
, tmp
, &parent_sd
->s_children
, s_sibling
) {
463 if (!sd
->s_element
||
464 !(sd
->s_type
& CONFIGFS_USET_DEFAULT
))
467 child
= sd
->s_dentry
;
469 configfs_detach_group(sd
->s_element
);
470 child
->d_inode
->i_flags
|= S_DEAD
;
473 * From rmdir/unregister, a configfs_detach_prep() pass
474 * has taken our i_mutex for us. Drop it.
475 * From mkdir/register cleanup, there is no sem held.
477 if (sd
->s_type
& CONFIGFS_USET_DROPPING
)
478 mutex_unlock(&child
->d_inode
->i_mutex
);
485 * Drop reference from dget() on entrance.
491 * This fakes mkdir(2) on a default_groups[] entry. It
492 * creates a dentry, attachs it, and then does fixup
495 * We could, perhaps, tweak our parent's ->mkdir for a minute and
496 * try using vfs_mkdir. Just a thought.
498 static int create_default_group(struct config_group
*parent_group
,
499 struct config_group
*group
)
503 struct configfs_dirent
*sd
;
504 /* We trust the caller holds a reference to parent */
505 struct dentry
*child
, *parent
= parent_group
->cg_item
.ci_dentry
;
507 if (!group
->cg_item
.ci_name
)
508 group
->cg_item
.ci_name
= group
->cg_item
.ci_namebuf
;
509 name
.name
= group
->cg_item
.ci_name
;
510 name
.len
= strlen(name
.name
);
511 name
.hash
= full_name_hash(name
.name
, name
.len
);
514 child
= d_alloc(parent
, &name
);
518 ret
= configfs_attach_group(&parent_group
->cg_item
,
519 &group
->cg_item
, child
);
521 sd
= child
->d_fsdata
;
522 sd
->s_type
|= CONFIGFS_USET_DEFAULT
;
532 static int populate_groups(struct config_group
*group
)
534 struct config_group
*new_group
;
535 struct dentry
*dentry
= group
->cg_item
.ci_dentry
;
539 if (group
->default_groups
) {
541 * FYI, we're faking mkdir here
542 * I'm not sure we need this semaphore, as we're called
543 * from our parent's mkdir. That holds our parent's
544 * i_mutex, so afaik lookup cannot continue through our
545 * parent to find us, let alone mess with our tree.
546 * That said, taking our i_mutex is closer to mkdir
547 * emulation, and shouldn't hurt.
549 mutex_lock(&dentry
->d_inode
->i_mutex
);
551 for (i
= 0; group
->default_groups
[i
]; i
++) {
552 new_group
= group
->default_groups
[i
];
554 ret
= create_default_group(group
, new_group
);
559 mutex_unlock(&dentry
->d_inode
->i_mutex
);
563 detach_groups(group
);
569 * All of link_obj/unlink_obj/link_group/unlink_group require that
570 * subsys->su_mutex is held.
573 static void unlink_obj(struct config_item
*item
)
575 struct config_group
*group
;
577 group
= item
->ci_group
;
579 list_del_init(&item
->ci_entry
);
581 item
->ci_group
= NULL
;
582 item
->ci_parent
= NULL
;
584 /* Drop the reference for ci_entry */
585 config_item_put(item
);
587 /* Drop the reference for ci_parent */
588 config_group_put(group
);
592 static void link_obj(struct config_item
*parent_item
, struct config_item
*item
)
595 * Parent seems redundant with group, but it makes certain
596 * traversals much nicer.
598 item
->ci_parent
= parent_item
;
601 * We hold a reference on the parent for the child's ci_parent
604 item
->ci_group
= config_group_get(to_config_group(parent_item
));
605 list_add_tail(&item
->ci_entry
, &item
->ci_group
->cg_children
);
608 * We hold a reference on the child for ci_entry on the parent's
611 config_item_get(item
);
614 static void unlink_group(struct config_group
*group
)
617 struct config_group
*new_group
;
619 if (group
->default_groups
) {
620 for (i
= 0; group
->default_groups
[i
]; i
++) {
621 new_group
= group
->default_groups
[i
];
622 unlink_group(new_group
);
626 group
->cg_subsys
= NULL
;
627 unlink_obj(&group
->cg_item
);
630 static void link_group(struct config_group
*parent_group
, struct config_group
*group
)
633 struct config_group
*new_group
;
634 struct configfs_subsystem
*subsys
= NULL
; /* gcc is a turd */
636 link_obj(&parent_group
->cg_item
, &group
->cg_item
);
638 if (parent_group
->cg_subsys
)
639 subsys
= parent_group
->cg_subsys
;
640 else if (configfs_is_root(&parent_group
->cg_item
))
641 subsys
= to_configfs_subsystem(group
);
644 group
->cg_subsys
= subsys
;
646 if (group
->default_groups
) {
647 for (i
= 0; group
->default_groups
[i
]; i
++) {
648 new_group
= group
->default_groups
[i
];
649 link_group(group
, new_group
);
655 * The goal is that configfs_attach_item() (and
656 * configfs_attach_group()) can be called from either the VFS or this
657 * module. That is, they assume that the items have been created,
658 * the dentry allocated, and the dcache is all ready to go.
660 * If they fail, they must clean up after themselves as if they
661 * had never been called. The caller (VFS or local function) will
662 * handle cleaning up the dcache bits.
664 * configfs_detach_group() and configfs_detach_item() behave similarly on
665 * the way out. They assume that the proper semaphores are held, they
666 * clean up the configfs items, and they expect their callers will
667 * handle the dcache bits.
669 static int configfs_attach_item(struct config_item
*parent_item
,
670 struct config_item
*item
,
671 struct dentry
*dentry
)
675 ret
= configfs_create_dir(item
, dentry
);
677 ret
= populate_attrs(item
);
679 configfs_remove_dir(item
);
687 static void configfs_detach_item(struct config_item
*item
)
690 configfs_remove_dir(item
);
693 static int configfs_attach_group(struct config_item
*parent_item
,
694 struct config_item
*item
,
695 struct dentry
*dentry
)
698 struct configfs_dirent
*sd
;
700 ret
= configfs_attach_item(parent_item
, item
, dentry
);
702 sd
= dentry
->d_fsdata
;
703 sd
->s_type
|= CONFIGFS_USET_DIR
;
705 ret
= populate_groups(to_config_group(item
));
707 configfs_detach_item(item
);
715 static void configfs_detach_group(struct config_item
*item
)
717 detach_groups(to_config_group(item
));
718 configfs_detach_item(item
);
722 * After the item has been detached from the filesystem view, we are
723 * ready to tear it out of the hierarchy. Notify the client before
724 * we do that so they can perform any cleanup that requires
725 * navigating the hierarchy. A client does not need to provide this
726 * callback. The subsystem semaphore MUST be held by the caller, and
727 * references must be valid for both items. It also assumes the
728 * caller has validated ci_type.
730 static void client_disconnect_notify(struct config_item
*parent_item
,
731 struct config_item
*item
)
733 struct config_item_type
*type
;
735 type
= parent_item
->ci_type
;
738 if (type
->ct_group_ops
&& type
->ct_group_ops
->disconnect_notify
)
739 type
->ct_group_ops
->disconnect_notify(to_config_group(parent_item
),
744 * Drop the initial reference from make_item()/make_group()
745 * This function assumes that reference is held on item
746 * and that item holds a valid reference to the parent. Also, it
747 * assumes the caller has validated ci_type.
749 static void client_drop_item(struct config_item
*parent_item
,
750 struct config_item
*item
)
752 struct config_item_type
*type
;
754 type
= parent_item
->ci_type
;
758 * If ->drop_item() exists, it is responsible for the
761 if (type
->ct_group_ops
&& type
->ct_group_ops
->drop_item
)
762 type
->ct_group_ops
->drop_item(to_config_group(parent_item
),
765 config_item_put(item
);
769 static void configfs_dump_one(struct configfs_dirent
*sd
, int level
)
771 printk(KERN_INFO
"%*s\"%s\":\n", level
, " ", configfs_get_name(sd
));
773 #define type_print(_type) if (sd->s_type & _type) printk(KERN_INFO "%*s %s\n", level, " ", #_type);
774 type_print(CONFIGFS_ROOT
);
775 type_print(CONFIGFS_DIR
);
776 type_print(CONFIGFS_ITEM_ATTR
);
777 type_print(CONFIGFS_ITEM_LINK
);
778 type_print(CONFIGFS_USET_DIR
);
779 type_print(CONFIGFS_USET_DEFAULT
);
780 type_print(CONFIGFS_USET_DROPPING
);
784 static int configfs_dump(struct configfs_dirent
*sd
, int level
)
786 struct configfs_dirent
*child_sd
;
789 configfs_dump_one(sd
, level
);
791 if (!(sd
->s_type
& (CONFIGFS_DIR
|CONFIGFS_ROOT
)))
794 list_for_each_entry(child_sd
, &sd
->s_children
, s_sibling
) {
795 ret
= configfs_dump(child_sd
, level
+ 2);
806 * configfs_depend_item() and configfs_undepend_item()
808 * WARNING: Do not call these from a configfs callback!
810 * This describes these functions and their helpers.
812 * Allow another kernel system to depend on a config_item. If this
813 * happens, the item cannot go away until the dependant can live without
814 * it. The idea is to give client modules as simple an interface as
815 * possible. When a system asks them to depend on an item, they just
816 * call configfs_depend_item(). If the item is live and the client
817 * driver is in good shape, we'll happily do the work for them.
819 * Why is the locking complex? Because configfs uses the VFS to handle
820 * all locking, but this function is called outside the normal
821 * VFS->configfs path. So it must take VFS locks to prevent the
822 * VFS->configfs stuff (configfs_mkdir(), configfs_rmdir(), etc). This is
823 * why you can't call these functions underneath configfs callbacks.
825 * Note, btw, that this can be called at *any* time, even when a configfs
826 * subsystem isn't registered, or when configfs is loading or unloading.
827 * Just like configfs_register_subsystem(). So we take the same
828 * precautions. We pin the filesystem. We lock each i_mutex _in_order_
829 * on our way down the tree. If we can find the target item in the
830 * configfs tree, it must be part of the subsystem tree as well, so we
831 * do not need the subsystem semaphore. Holding the i_mutex chain locks
832 * out mkdir() and rmdir(), who might be racing us.
836 * configfs_depend_prep()
838 * Only subdirectories count here. Files (CONFIGFS_NOT_PINNED) are
839 * attributes. This is similar but not the same to configfs_detach_prep().
840 * Note that configfs_detach_prep() expects the parent to be locked when it
841 * is called, but we lock the parent *inside* configfs_depend_prep(). We
842 * do that so we can unlock it if we find nothing.
844 * Here we do a depth-first search of the dentry hierarchy looking for
845 * our object. We take i_mutex on each step of the way down. IT IS
846 * ESSENTIAL THAT i_mutex LOCKING IS ORDERED. If we come back up a branch,
847 * we'll drop the i_mutex.
849 * If the target is not found, -ENOENT is bubbled up and we have released
850 * all locks. If the target was found, the locks will be cleared by
851 * configfs_depend_rollback().
853 * This adds a requirement that all config_items be unique!
855 * This is recursive because the locking traversal is tricky. There isn't
856 * much on the stack, though, so folks that need this function - be careful
857 * about your stack! Patches will be accepted to make it iterative.
859 static int configfs_depend_prep(struct dentry
*origin
,
860 struct config_item
*target
)
862 struct configfs_dirent
*child_sd
, *sd
= origin
->d_fsdata
;
865 BUG_ON(!origin
|| !sd
);
867 /* Lock this guy on the way down */
868 mutex_lock(&sd
->s_dentry
->d_inode
->i_mutex
);
869 if (sd
->s_element
== target
) /* Boo-yah */
872 list_for_each_entry(child_sd
, &sd
->s_children
, s_sibling
) {
873 if (child_sd
->s_type
& CONFIGFS_DIR
) {
874 ret
= configfs_depend_prep(child_sd
->s_dentry
,
877 goto out
; /* Child path boo-yah */
881 /* We looped all our children and didn't find target */
882 mutex_unlock(&sd
->s_dentry
->d_inode
->i_mutex
);
890 * This is ONLY called if configfs_depend_prep() did its job. So we can
891 * trust the entire path from item back up to origin.
893 * We walk backwards from item, unlocking each i_mutex. We finish by
896 static void configfs_depend_rollback(struct dentry
*origin
,
897 struct config_item
*item
)
899 struct dentry
*dentry
= item
->ci_dentry
;
901 while (dentry
!= origin
) {
902 mutex_unlock(&dentry
->d_inode
->i_mutex
);
903 dentry
= dentry
->d_parent
;
906 mutex_unlock(&origin
->d_inode
->i_mutex
);
909 int configfs_depend_item(struct configfs_subsystem
*subsys
,
910 struct config_item
*target
)
913 struct configfs_dirent
*p
, *root_sd
, *subsys_sd
= NULL
;
914 struct config_item
*s_item
= &subsys
->su_group
.cg_item
;
917 * Pin the configfs filesystem. This means we can safely access
918 * the root of the configfs filesystem.
920 ret
= configfs_pin_fs();
925 * Next, lock the root directory. We're going to check that the
926 * subsystem is really registered, and so we need to lock out
927 * configfs_[un]register_subsystem().
929 mutex_lock(&configfs_sb
->s_root
->d_inode
->i_mutex
);
931 root_sd
= configfs_sb
->s_root
->d_fsdata
;
933 list_for_each_entry(p
, &root_sd
->s_children
, s_sibling
) {
934 if (p
->s_type
& CONFIGFS_DIR
) {
935 if (p
->s_element
== s_item
) {
947 /* Ok, now we can trust subsys/s_item */
949 /* Scan the tree, locking i_mutex recursively, return 0 if found */
950 ret
= configfs_depend_prep(subsys_sd
->s_dentry
, target
);
954 /* We hold all i_mutexes from the subsystem down to the target */
955 p
= target
->ci_dentry
->d_fsdata
;
956 p
->s_dependent_count
+= 1;
958 configfs_depend_rollback(subsys_sd
->s_dentry
, target
);
961 mutex_unlock(&configfs_sb
->s_root
->d_inode
->i_mutex
);
964 * If we succeeded, the fs is pinned via other methods. If not,
965 * we're done with it anyway. So release_fs() is always right.
967 configfs_release_fs();
971 EXPORT_SYMBOL(configfs_depend_item
);
974 * Release the dependent linkage. This is much simpler than
975 * configfs_depend_item() because we know that that the client driver is
976 * pinned, thus the subsystem is pinned, and therefore configfs is pinned.
978 void configfs_undepend_item(struct configfs_subsystem
*subsys
,
979 struct config_item
*target
)
981 struct configfs_dirent
*sd
;
984 * Since we can trust everything is pinned, we just need i_mutex
987 mutex_lock(&target
->ci_dentry
->d_inode
->i_mutex
);
989 sd
= target
->ci_dentry
->d_fsdata
;
990 BUG_ON(sd
->s_dependent_count
< 1);
992 sd
->s_dependent_count
-= 1;
995 * After this unlock, we cannot trust the item to stay alive!
996 * DO NOT REFERENCE item after this unlock.
998 mutex_unlock(&target
->ci_dentry
->d_inode
->i_mutex
);
1000 EXPORT_SYMBOL(configfs_undepend_item
);
1002 static int configfs_mkdir(struct inode
*dir
, struct dentry
*dentry
, int mode
)
1004 int ret
, module_got
= 0;
1005 struct config_group
*group
;
1006 struct config_item
*item
;
1007 struct config_item
*parent_item
;
1008 struct configfs_subsystem
*subsys
;
1009 struct configfs_dirent
*sd
;
1010 struct config_item_type
*type
;
1011 struct module
*owner
= NULL
;
1014 if (dentry
->d_parent
== configfs_sb
->s_root
) {
1019 sd
= dentry
->d_parent
->d_fsdata
;
1020 if (!(sd
->s_type
& CONFIGFS_USET_DIR
)) {
1025 /* Get a working ref for the duration of this function */
1026 parent_item
= configfs_get_config_item(dentry
->d_parent
);
1027 type
= parent_item
->ci_type
;
1028 subsys
= to_config_group(parent_item
)->cg_subsys
;
1031 if (!type
|| !type
->ct_group_ops
||
1032 (!type
->ct_group_ops
->make_group
&&
1033 !type
->ct_group_ops
->make_item
)) {
1034 ret
= -EPERM
; /* Lack-of-mkdir returns -EPERM */
1038 name
= kmalloc(dentry
->d_name
.len
+ 1, GFP_KERNEL
);
1044 snprintf(name
, dentry
->d_name
.len
+ 1, "%s", dentry
->d_name
.name
);
1046 mutex_lock(&subsys
->su_mutex
);
1049 if (type
->ct_group_ops
->make_group
) {
1050 group
= type
->ct_group_ops
->make_group(to_config_group(parent_item
), name
);
1052 link_group(to_config_group(parent_item
), group
);
1053 item
= &group
->cg_item
;
1056 item
= type
->ct_group_ops
->make_item(to_config_group(parent_item
), name
);
1058 link_obj(parent_item
, item
);
1060 mutex_unlock(&subsys
->su_mutex
);
1065 * If item == NULL, then link_obj() was never called.
1066 * There are no extra references to clean up.
1073 * link_obj() has been called (via link_group() for groups).
1074 * From here on out, errors must clean that up.
1077 type
= item
->ci_type
;
1083 owner
= type
->ct_owner
;
1084 if (!try_module_get(owner
)) {
1090 * I hate doing it this way, but if there is
1091 * an error, module_put() probably should
1092 * happen after any cleanup.
1097 ret
= configfs_attach_group(parent_item
, item
, dentry
);
1099 ret
= configfs_attach_item(parent_item
, item
, dentry
);
1103 /* Tear down everything we built up */
1104 mutex_lock(&subsys
->su_mutex
);
1106 client_disconnect_notify(parent_item
, item
);
1108 unlink_group(group
);
1111 client_drop_item(parent_item
, item
);
1113 mutex_unlock(&subsys
->su_mutex
);
1121 * link_obj()/link_group() took a reference from child->parent,
1122 * so the parent is safely pinned. We can drop our working
1125 config_item_put(parent_item
);
1131 static int configfs_rmdir(struct inode
*dir
, struct dentry
*dentry
)
1133 struct config_item
*parent_item
;
1134 struct config_item
*item
;
1135 struct configfs_subsystem
*subsys
;
1136 struct configfs_dirent
*sd
;
1137 struct module
*owner
= NULL
;
1140 if (dentry
->d_parent
== configfs_sb
->s_root
)
1143 sd
= dentry
->d_fsdata
;
1144 if (sd
->s_type
& CONFIGFS_USET_DEFAULT
)
1148 * Here's where we check for dependents. We're protected by
1151 if (sd
->s_dependent_count
)
1154 /* Get a working ref until we have the child */
1155 parent_item
= configfs_get_config_item(dentry
->d_parent
);
1156 subsys
= to_config_group(parent_item
)->cg_subsys
;
1159 if (!parent_item
->ci_type
) {
1160 config_item_put(parent_item
);
1164 ret
= configfs_detach_prep(dentry
);
1166 configfs_detach_rollback(dentry
);
1167 config_item_put(parent_item
);
1171 /* Get a working ref for the duration of this function */
1172 item
= configfs_get_config_item(dentry
);
1174 /* Drop reference from above, item already holds one. */
1175 config_item_put(parent_item
);
1178 owner
= item
->ci_type
->ct_owner
;
1180 if (sd
->s_type
& CONFIGFS_USET_DIR
) {
1181 configfs_detach_group(item
);
1183 mutex_lock(&subsys
->su_mutex
);
1184 client_disconnect_notify(parent_item
, item
);
1185 unlink_group(to_config_group(item
));
1187 configfs_detach_item(item
);
1189 mutex_lock(&subsys
->su_mutex
);
1190 client_disconnect_notify(parent_item
, item
);
1194 client_drop_item(parent_item
, item
);
1195 mutex_unlock(&subsys
->su_mutex
);
1197 /* Drop our reference from above */
1198 config_item_put(item
);
1205 const struct inode_operations configfs_dir_inode_operations
= {
1206 .mkdir
= configfs_mkdir
,
1207 .rmdir
= configfs_rmdir
,
1208 .symlink
= configfs_symlink
,
1209 .unlink
= configfs_unlink
,
1210 .lookup
= configfs_lookup
,
1211 .setattr
= configfs_setattr
,
1215 int configfs_rename_dir(struct config_item
* item
, const char *new_name
)
1218 struct dentry
* new_dentry
, * parent
;
1220 if (!strcmp(config_item_name(item
), new_name
))
1226 down_write(&configfs_rename_sem
);
1227 parent
= item
->parent
->dentry
;
1229 mutex_lock(&parent
->d_inode
->i_mutex
);
1231 new_dentry
= lookup_one_len(new_name
, parent
, strlen(new_name
));
1232 if (!IS_ERR(new_dentry
)) {
1233 if (!new_dentry
->d_inode
) {
1234 error
= config_item_set_name(item
, "%s", new_name
);
1236 d_add(new_dentry
, NULL
);
1237 d_move(item
->dentry
, new_dentry
);
1240 d_delete(new_dentry
);
1245 mutex_unlock(&parent
->d_inode
->i_mutex
);
1246 up_write(&configfs_rename_sem
);
1252 static int configfs_dir_open(struct inode
*inode
, struct file
*file
)
1254 struct dentry
* dentry
= file
->f_path
.dentry
;
1255 struct configfs_dirent
* parent_sd
= dentry
->d_fsdata
;
1257 mutex_lock(&dentry
->d_inode
->i_mutex
);
1258 file
->private_data
= configfs_new_dirent(parent_sd
, NULL
);
1259 mutex_unlock(&dentry
->d_inode
->i_mutex
);
1261 return file
->private_data
? 0 : -ENOMEM
;
1265 static int configfs_dir_close(struct inode
*inode
, struct file
*file
)
1267 struct dentry
* dentry
= file
->f_path
.dentry
;
1268 struct configfs_dirent
* cursor
= file
->private_data
;
1270 mutex_lock(&dentry
->d_inode
->i_mutex
);
1271 list_del_init(&cursor
->s_sibling
);
1272 mutex_unlock(&dentry
->d_inode
->i_mutex
);
1274 release_configfs_dirent(cursor
);
1279 /* Relationship between s_mode and the DT_xxx types */
1280 static inline unsigned char dt_type(struct configfs_dirent
*sd
)
1282 return (sd
->s_mode
>> 12) & 15;
1285 static int configfs_readdir(struct file
* filp
, void * dirent
, filldir_t filldir
)
1287 struct dentry
*dentry
= filp
->f_path
.dentry
;
1288 struct configfs_dirent
* parent_sd
= dentry
->d_fsdata
;
1289 struct configfs_dirent
*cursor
= filp
->private_data
;
1290 struct list_head
*p
, *q
= &cursor
->s_sibling
;
1292 int i
= filp
->f_pos
;
1296 ino
= dentry
->d_inode
->i_ino
;
1297 if (filldir(dirent
, ".", 1, i
, ino
, DT_DIR
) < 0)
1303 ino
= parent_ino(dentry
);
1304 if (filldir(dirent
, "..", 2, i
, ino
, DT_DIR
) < 0)
1310 if (filp
->f_pos
== 2) {
1311 list_move(q
, &parent_sd
->s_children
);
1313 for (p
=q
->next
; p
!= &parent_sd
->s_children
; p
=p
->next
) {
1314 struct configfs_dirent
*next
;
1318 next
= list_entry(p
, struct configfs_dirent
,
1320 if (!next
->s_element
)
1323 name
= configfs_get_name(next
);
1326 ino
= next
->s_dentry
->d_inode
->i_ino
;
1328 ino
= iunique(configfs_sb
, 2);
1330 if (filldir(dirent
, name
, len
, filp
->f_pos
, ino
,
1342 static loff_t
configfs_dir_lseek(struct file
* file
, loff_t offset
, int origin
)
1344 struct dentry
* dentry
= file
->f_path
.dentry
;
1346 mutex_lock(&dentry
->d_inode
->i_mutex
);
1349 offset
+= file
->f_pos
;
1354 mutex_unlock(&file
->f_path
.dentry
->d_inode
->i_mutex
);
1357 if (offset
!= file
->f_pos
) {
1358 file
->f_pos
= offset
;
1359 if (file
->f_pos
>= 2) {
1360 struct configfs_dirent
*sd
= dentry
->d_fsdata
;
1361 struct configfs_dirent
*cursor
= file
->private_data
;
1362 struct list_head
*p
;
1363 loff_t n
= file
->f_pos
- 2;
1365 list_del(&cursor
->s_sibling
);
1366 p
= sd
->s_children
.next
;
1367 while (n
&& p
!= &sd
->s_children
) {
1368 struct configfs_dirent
*next
;
1369 next
= list_entry(p
, struct configfs_dirent
,
1371 if (next
->s_element
)
1375 list_add_tail(&cursor
->s_sibling
, p
);
1378 mutex_unlock(&dentry
->d_inode
->i_mutex
);
1382 const struct file_operations configfs_dir_operations
= {
1383 .open
= configfs_dir_open
,
1384 .release
= configfs_dir_close
,
1385 .llseek
= configfs_dir_lseek
,
1386 .read
= generic_read_dir
,
1387 .readdir
= configfs_readdir
,
1390 int configfs_register_subsystem(struct configfs_subsystem
*subsys
)
1393 struct config_group
*group
= &subsys
->su_group
;
1395 struct dentry
*dentry
;
1396 struct configfs_dirent
*sd
;
1398 err
= configfs_pin_fs();
1402 if (!group
->cg_item
.ci_name
)
1403 group
->cg_item
.ci_name
= group
->cg_item
.ci_namebuf
;
1405 sd
= configfs_sb
->s_root
->d_fsdata
;
1406 link_group(to_config_group(sd
->s_element
), group
);
1408 mutex_lock(&configfs_sb
->s_root
->d_inode
->i_mutex
);
1410 name
.name
= group
->cg_item
.ci_name
;
1411 name
.len
= strlen(name
.name
);
1412 name
.hash
= full_name_hash(name
.name
, name
.len
);
1415 dentry
= d_alloc(configfs_sb
->s_root
, &name
);
1417 d_add(dentry
, NULL
);
1419 err
= configfs_attach_group(sd
->s_element
, &group
->cg_item
,
1427 mutex_unlock(&configfs_sb
->s_root
->d_inode
->i_mutex
);
1430 unlink_group(group
);
1431 configfs_release_fs();
1437 void configfs_unregister_subsystem(struct configfs_subsystem
*subsys
)
1439 struct config_group
*group
= &subsys
->su_group
;
1440 struct dentry
*dentry
= group
->cg_item
.ci_dentry
;
1442 if (dentry
->d_parent
!= configfs_sb
->s_root
) {
1443 printk(KERN_ERR
"configfs: Tried to unregister non-subsystem!\n");
1447 mutex_lock_nested(&configfs_sb
->s_root
->d_inode
->i_mutex
,
1449 mutex_lock_nested(&dentry
->d_inode
->i_mutex
, I_MUTEX_CHILD
);
1450 if (configfs_detach_prep(dentry
)) {
1451 printk(KERN_ERR
"configfs: Tried to unregister non-empty subsystem!\n");
1453 configfs_detach_group(&group
->cg_item
);
1454 dentry
->d_inode
->i_flags
|= S_DEAD
;
1455 mutex_unlock(&dentry
->d_inode
->i_mutex
);
1459 mutex_unlock(&configfs_sb
->s_root
->d_inode
->i_mutex
);
1463 unlink_group(group
);
1464 configfs_release_fs();
1467 EXPORT_SYMBOL(configfs_register_subsystem
);
1468 EXPORT_SYMBOL(configfs_unregister_subsystem
);