4522e0755773cdc1c5a2d293808b474a87d375ca
[sfrench/cifs-2.6.git] / fs / configfs / dir.c
1 /* -*- mode: c; c-basic-offset: 8; -*-
2  * vim: noexpandtab sw=8 ts=8 sts=0:
3  *
4  * dir.c - Operations for configfs directories.
5  *
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.
10  *
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.
15  *
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.
20  *
21  * Based on sysfs:
22  *      sysfs is Copyright (C) 2001, 2002, 2003 Patrick Mochel
23  *
24  * configfs Copyright (C) 2005 Oracle.  All rights reserved.
25  */
26
27 #undef DEBUG
28
29 #include <linux/fs.h>
30 #include <linux/mount.h>
31 #include <linux/module.h>
32 #include <linux/slab.h>
33 #include <linux/err.h>
34
35 #include <linux/configfs.h>
36 #include "configfs_internal.h"
37
38 DECLARE_RWSEM(configfs_rename_sem);
39 /*
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.
46  *
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()
50  */
51 DEFINE_SPINLOCK(configfs_dirent_lock);
52
53 static void configfs_d_iput(struct dentry * dentry,
54                             struct inode * inode)
55 {
56         struct configfs_dirent *sd = dentry->d_fsdata;
57
58         if (sd) {
59                 BUG_ON(sd->s_dentry != dentry);
60                 /* Coordinate with configfs_readdir */
61                 spin_lock(&configfs_dirent_lock);
62                 sd->s_dentry = NULL;
63                 spin_unlock(&configfs_dirent_lock);
64                 configfs_put(sd);
65         }
66         iput(inode);
67 }
68
69 const struct dentry_operations configfs_dentry_ops = {
70         .d_iput         = configfs_d_iput,
71         .d_delete       = always_delete_dentry,
72 };
73
74 #ifdef CONFIG_LOCKDEP
75
76 /*
77  * Helpers to make lockdep happy with our recursive locking of default groups'
78  * inodes (see configfs_attach_group() and configfs_detach_group()).
79  * We put default groups i_mutexes in separate classes according to their depth
80  * from the youngest non-default group ancestor.
81  *
82  * For a non-default group A having default groups A/B, A/C, and A/C/D, default
83  * groups A/B and A/C will have their inode's mutex in class
84  * default_group_class[0], and default group A/C/D will be in
85  * default_group_class[1].
86  *
87  * The lock classes are declared and assigned in inode.c, according to the
88  * s_depth value.
89  * The s_depth value is initialized to -1, adjusted to >= 0 when attaching
90  * default groups, and reset to -1 when all default groups are attached. During
91  * attachment, if configfs_create() sees s_depth > 0, the lock class of the new
92  * inode's mutex is set to default_group_class[s_depth - 1].
93  */
94
95 static void configfs_init_dirent_depth(struct configfs_dirent *sd)
96 {
97         sd->s_depth = -1;
98 }
99
100 static void configfs_set_dir_dirent_depth(struct configfs_dirent *parent_sd,
101                                           struct configfs_dirent *sd)
102 {
103         int parent_depth = parent_sd->s_depth;
104
105         if (parent_depth >= 0)
106                 sd->s_depth = parent_depth + 1;
107 }
108
109 static void
110 configfs_adjust_dir_dirent_depth_before_populate(struct configfs_dirent *sd)
111 {
112         /*
113          * item's i_mutex class is already setup, so s_depth is now only
114          * used to set new sub-directories s_depth, which is always done
115          * with item's i_mutex locked.
116          */
117         /*
118          *  sd->s_depth == -1 iff we are a non default group.
119          *  else (we are a default group) sd->s_depth > 0 (see
120          *  create_dir()).
121          */
122         if (sd->s_depth == -1)
123                 /*
124                  * We are a non default group and we are going to create
125                  * default groups.
126                  */
127                 sd->s_depth = 0;
128 }
129
130 static void
131 configfs_adjust_dir_dirent_depth_after_populate(struct configfs_dirent *sd)
132 {
133         /* We will not create default groups anymore. */
134         sd->s_depth = -1;
135 }
136
137 #else /* CONFIG_LOCKDEP */
138
139 static void configfs_init_dirent_depth(struct configfs_dirent *sd)
140 {
141 }
142
143 static void configfs_set_dir_dirent_depth(struct configfs_dirent *parent_sd,
144                                           struct configfs_dirent *sd)
145 {
146 }
147
148 static void
149 configfs_adjust_dir_dirent_depth_before_populate(struct configfs_dirent *sd)
150 {
151 }
152
153 static void
154 configfs_adjust_dir_dirent_depth_after_populate(struct configfs_dirent *sd)
155 {
156 }
157
158 #endif /* CONFIG_LOCKDEP */
159
160 /*
161  * Allocates a new configfs_dirent and links it to the parent configfs_dirent
162  */
163 static struct configfs_dirent *configfs_new_dirent(struct configfs_dirent *parent_sd,
164                                                    void *element, int type)
165 {
166         struct configfs_dirent * sd;
167
168         sd = kmem_cache_zalloc(configfs_dir_cachep, GFP_KERNEL);
169         if (!sd)
170                 return ERR_PTR(-ENOMEM);
171
172         atomic_set(&sd->s_count, 1);
173         INIT_LIST_HEAD(&sd->s_links);
174         INIT_LIST_HEAD(&sd->s_children);
175         sd->s_element = element;
176         sd->s_type = type;
177         configfs_init_dirent_depth(sd);
178         spin_lock(&configfs_dirent_lock);
179         if (parent_sd->s_type & CONFIGFS_USET_DROPPING) {
180                 spin_unlock(&configfs_dirent_lock);
181                 kmem_cache_free(configfs_dir_cachep, sd);
182                 return ERR_PTR(-ENOENT);
183         }
184         list_add(&sd->s_sibling, &parent_sd->s_children);
185         spin_unlock(&configfs_dirent_lock);
186
187         return sd;
188 }
189
190 /*
191  *
192  * Return -EEXIST if there is already a configfs element with the same
193  * name for the same parent.
194  *
195  * called with parent inode's i_mutex held
196  */
197 static int configfs_dirent_exists(struct configfs_dirent *parent_sd,
198                                   const unsigned char *new)
199 {
200         struct configfs_dirent * sd;
201
202         list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
203                 if (sd->s_element) {
204                         const unsigned char *existing = configfs_get_name(sd);
205                         if (strcmp(existing, new))
206                                 continue;
207                         else
208                                 return -EEXIST;
209                 }
210         }
211
212         return 0;
213 }
214
215
216 int configfs_make_dirent(struct configfs_dirent * parent_sd,
217                          struct dentry * dentry, void * element,
218                          umode_t mode, int type)
219 {
220         struct configfs_dirent * sd;
221
222         sd = configfs_new_dirent(parent_sd, element, type);
223         if (IS_ERR(sd))
224                 return PTR_ERR(sd);
225
226         sd->s_mode = mode;
227         sd->s_dentry = dentry;
228         if (dentry)
229                 dentry->d_fsdata = configfs_get(sd);
230
231         return 0;
232 }
233
234 static int init_dir(struct inode * inode)
235 {
236         inode->i_op = &configfs_dir_inode_operations;
237         inode->i_fop = &configfs_dir_operations;
238
239         /* directory inodes start off with i_nlink == 2 (for "." entry) */
240         inc_nlink(inode);
241         return 0;
242 }
243
244 static int configfs_init_file(struct inode * inode)
245 {
246         inode->i_size = PAGE_SIZE;
247         inode->i_fop = &configfs_file_operations;
248         return 0;
249 }
250
251 static int init_symlink(struct inode * inode)
252 {
253         inode->i_op = &configfs_symlink_inode_operations;
254         return 0;
255 }
256
257 static int create_dir(struct config_item *k, struct dentry *d)
258 {
259         int error;
260         umode_t mode = S_IFDIR| S_IRWXU | S_IRUGO | S_IXUGO;
261         struct dentry *p = d->d_parent;
262
263         BUG_ON(!k);
264
265         error = configfs_dirent_exists(p->d_fsdata, d->d_name.name);
266         if (!error)
267                 error = configfs_make_dirent(p->d_fsdata, d, k, mode,
268                                              CONFIGFS_DIR | CONFIGFS_USET_CREATING);
269         if (!error) {
270                 configfs_set_dir_dirent_depth(p->d_fsdata, d->d_fsdata);
271                 error = configfs_create(d, mode, init_dir);
272                 if (!error) {
273                         inc_nlink(p->d_inode);
274                 } else {
275                         struct configfs_dirent *sd = d->d_fsdata;
276                         if (sd) {
277                                 spin_lock(&configfs_dirent_lock);
278                                 list_del_init(&sd->s_sibling);
279                                 spin_unlock(&configfs_dirent_lock);
280                                 configfs_put(sd);
281                         }
282                 }
283         }
284         return error;
285 }
286
287
288 /**
289  *      configfs_create_dir - create a directory for an config_item.
290  *      @item:          config_itemwe're creating directory for.
291  *      @dentry:        config_item's dentry.
292  *
293  *      Note: user-created entries won't be allowed under this new directory
294  *      until it is validated by configfs_dir_set_ready()
295  */
296
297 static int configfs_create_dir(struct config_item * item, struct dentry *dentry)
298 {
299         int error = create_dir(item, dentry);
300         if (!error)
301                 item->ci_dentry = dentry;
302         return error;
303 }
304
305 /*
306  * Allow userspace to create new entries under a new directory created with
307  * configfs_create_dir(), and under all of its chidlren directories recursively.
308  * @sd          configfs_dirent of the new directory to validate
309  *
310  * Caller must hold configfs_dirent_lock.
311  */
312 static void configfs_dir_set_ready(struct configfs_dirent *sd)
313 {
314         struct configfs_dirent *child_sd;
315
316         sd->s_type &= ~CONFIGFS_USET_CREATING;
317         list_for_each_entry(child_sd, &sd->s_children, s_sibling)
318                 if (child_sd->s_type & CONFIGFS_USET_CREATING)
319                         configfs_dir_set_ready(child_sd);
320 }
321
322 /*
323  * Check that a directory does not belong to a directory hierarchy being
324  * attached and not validated yet.
325  * @sd          configfs_dirent of the directory to check
326  *
327  * @return      non-zero iff the directory was validated
328  *
329  * Note: takes configfs_dirent_lock, so the result may change from false to true
330  * in two consecutive calls, but never from true to false.
331  */
332 int configfs_dirent_is_ready(struct configfs_dirent *sd)
333 {
334         int ret;
335
336         spin_lock(&configfs_dirent_lock);
337         ret = !(sd->s_type & CONFIGFS_USET_CREATING);
338         spin_unlock(&configfs_dirent_lock);
339
340         return ret;
341 }
342
343 int configfs_create_link(struct configfs_symlink *sl,
344                          struct dentry *parent,
345                          struct dentry *dentry)
346 {
347         int err = 0;
348         umode_t mode = S_IFLNK | S_IRWXUGO;
349
350         err = configfs_make_dirent(parent->d_fsdata, dentry, sl, mode,
351                                    CONFIGFS_ITEM_LINK);
352         if (!err) {
353                 err = configfs_create(dentry, mode, init_symlink);
354                 if (err) {
355                         struct configfs_dirent *sd = dentry->d_fsdata;
356                         if (sd) {
357                                 spin_lock(&configfs_dirent_lock);
358                                 list_del_init(&sd->s_sibling);
359                                 spin_unlock(&configfs_dirent_lock);
360                                 configfs_put(sd);
361                         }
362                 }
363         }
364         return err;
365 }
366
367 static void remove_dir(struct dentry * d)
368 {
369         struct dentry * parent = dget(d->d_parent);
370         struct configfs_dirent * sd;
371
372         sd = d->d_fsdata;
373         spin_lock(&configfs_dirent_lock);
374         list_del_init(&sd->s_sibling);
375         spin_unlock(&configfs_dirent_lock);
376         configfs_put(sd);
377         if (d->d_inode)
378                 simple_rmdir(parent->d_inode,d);
379
380         pr_debug(" o %s removing done (%d)\n",d->d_name.name, d_count(d));
381
382         dput(parent);
383 }
384
385 /**
386  * configfs_remove_dir - remove an config_item's directory.
387  * @item:       config_item we're removing.
388  *
389  * The only thing special about this is that we remove any files in
390  * the directory before we remove the directory, and we've inlined
391  * what used to be configfs_rmdir() below, instead of calling separately.
392  *
393  * Caller holds the mutex of the item's inode
394  */
395
396 static void configfs_remove_dir(struct config_item * item)
397 {
398         struct dentry * dentry = dget(item->ci_dentry);
399
400         if (!dentry)
401                 return;
402
403         remove_dir(dentry);
404         /**
405          * Drop reference from dget() on entrance.
406          */
407         dput(dentry);
408 }
409
410
411 /* attaches attribute's configfs_dirent to the dentry corresponding to the
412  * attribute file
413  */
414 static int configfs_attach_attr(struct configfs_dirent * sd, struct dentry * dentry)
415 {
416         struct configfs_attribute * attr = sd->s_element;
417         int error;
418
419         dentry->d_fsdata = configfs_get(sd);
420         sd->s_dentry = dentry;
421         error = configfs_create(dentry, (attr->ca_mode & S_IALLUGO) | S_IFREG,
422                                 configfs_init_file);
423         if (error) {
424                 configfs_put(sd);
425                 return error;
426         }
427
428         d_rehash(dentry);
429
430         return 0;
431 }
432
433 static struct dentry * configfs_lookup(struct inode *dir,
434                                        struct dentry *dentry,
435                                        unsigned int flags)
436 {
437         struct configfs_dirent * parent_sd = dentry->d_parent->d_fsdata;
438         struct configfs_dirent * sd;
439         int found = 0;
440         int err;
441
442         /*
443          * Fake invisibility if dir belongs to a group/default groups hierarchy
444          * being attached
445          *
446          * This forbids userspace to read/write attributes of items which may
447          * not complete their initialization, since the dentries of the
448          * attributes won't be instantiated.
449          */
450         err = -ENOENT;
451         if (!configfs_dirent_is_ready(parent_sd))
452                 goto out;
453
454         list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
455                 if (sd->s_type & CONFIGFS_NOT_PINNED) {
456                         const unsigned char * name = configfs_get_name(sd);
457
458                         if (strcmp(name, dentry->d_name.name))
459                                 continue;
460
461                         found = 1;
462                         err = configfs_attach_attr(sd, dentry);
463                         break;
464                 }
465         }
466
467         if (!found) {
468                 /*
469                  * If it doesn't exist and it isn't a NOT_PINNED item,
470                  * it must be negative.
471                  */
472                 if (dentry->d_name.len > NAME_MAX)
473                         return ERR_PTR(-ENAMETOOLONG);
474                 d_add(dentry, NULL);
475                 return NULL;
476         }
477
478 out:
479         return ERR_PTR(err);
480 }
481
482 /*
483  * Only subdirectories count here.  Files (CONFIGFS_NOT_PINNED) are
484  * attributes and are removed by rmdir().  We recurse, setting
485  * CONFIGFS_USET_DROPPING on all children that are candidates for
486  * default detach.
487  * If there is an error, the caller will reset the flags via
488  * configfs_detach_rollback().
489  */
490 static int configfs_detach_prep(struct dentry *dentry, struct mutex **wait_mutex)
491 {
492         struct configfs_dirent *parent_sd = dentry->d_fsdata;
493         struct configfs_dirent *sd;
494         int ret;
495
496         /* Mark that we're trying to drop the group */
497         parent_sd->s_type |= CONFIGFS_USET_DROPPING;
498
499         ret = -EBUSY;
500         if (!list_empty(&parent_sd->s_links))
501                 goto out;
502
503         ret = 0;
504         list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
505                 if (!sd->s_element ||
506                     (sd->s_type & CONFIGFS_NOT_PINNED))
507                         continue;
508                 if (sd->s_type & CONFIGFS_USET_DEFAULT) {
509                         /* Abort if racing with mkdir() */
510                         if (sd->s_type & CONFIGFS_USET_IN_MKDIR) {
511                                 if (wait_mutex)
512                                         *wait_mutex = &sd->s_dentry->d_inode->i_mutex;
513                                 return -EAGAIN;
514                         }
515
516                         /*
517                          * Yup, recursive.  If there's a problem, blame
518                          * deep nesting of default_groups
519                          */
520                         ret = configfs_detach_prep(sd->s_dentry, wait_mutex);
521                         if (!ret)
522                                 continue;
523                 } else
524                         ret = -ENOTEMPTY;
525
526                 break;
527         }
528
529 out:
530         return ret;
531 }
532
533 /*
534  * Walk the tree, resetting CONFIGFS_USET_DROPPING wherever it was
535  * set.
536  */
537 static void configfs_detach_rollback(struct dentry *dentry)
538 {
539         struct configfs_dirent *parent_sd = dentry->d_fsdata;
540         struct configfs_dirent *sd;
541
542         parent_sd->s_type &= ~CONFIGFS_USET_DROPPING;
543
544         list_for_each_entry(sd, &parent_sd->s_children, s_sibling)
545                 if (sd->s_type & CONFIGFS_USET_DEFAULT)
546                         configfs_detach_rollback(sd->s_dentry);
547 }
548
549 static void detach_attrs(struct config_item * item)
550 {
551         struct dentry * dentry = dget(item->ci_dentry);
552         struct configfs_dirent * parent_sd;
553         struct configfs_dirent * sd, * tmp;
554
555         if (!dentry)
556                 return;
557
558         pr_debug("configfs %s: dropping attrs for  dir\n",
559                  dentry->d_name.name);
560
561         parent_sd = dentry->d_fsdata;
562         list_for_each_entry_safe(sd, tmp, &parent_sd->s_children, s_sibling) {
563                 if (!sd->s_element || !(sd->s_type & CONFIGFS_NOT_PINNED))
564                         continue;
565                 spin_lock(&configfs_dirent_lock);
566                 list_del_init(&sd->s_sibling);
567                 spin_unlock(&configfs_dirent_lock);
568                 configfs_drop_dentry(sd, dentry);
569                 configfs_put(sd);
570         }
571
572         /**
573          * Drop reference from dget() on entrance.
574          */
575         dput(dentry);
576 }
577
578 static int populate_attrs(struct config_item *item)
579 {
580         struct config_item_type *t = item->ci_type;
581         struct configfs_attribute *attr;
582         int error = 0;
583         int i;
584
585         if (!t)
586                 return -EINVAL;
587         if (t->ct_attrs) {
588                 for (i = 0; (attr = t->ct_attrs[i]) != NULL; i++) {
589                         if ((error = configfs_create_file(item, attr)))
590                                 break;
591                 }
592         }
593
594         if (error)
595                 detach_attrs(item);
596
597         return error;
598 }
599
600 static int configfs_attach_group(struct config_item *parent_item,
601                                  struct config_item *item,
602                                  struct dentry *dentry);
603 static void configfs_detach_group(struct config_item *item);
604
605 static void detach_groups(struct config_group *group)
606 {
607         struct dentry * dentry = dget(group->cg_item.ci_dentry);
608         struct dentry *child;
609         struct configfs_dirent *parent_sd;
610         struct configfs_dirent *sd, *tmp;
611
612         if (!dentry)
613                 return;
614
615         parent_sd = dentry->d_fsdata;
616         list_for_each_entry_safe(sd, tmp, &parent_sd->s_children, s_sibling) {
617                 if (!sd->s_element ||
618                     !(sd->s_type & CONFIGFS_USET_DEFAULT))
619                         continue;
620
621                 child = sd->s_dentry;
622
623                 mutex_lock(&child->d_inode->i_mutex);
624
625                 configfs_detach_group(sd->s_element);
626                 child->d_inode->i_flags |= S_DEAD;
627                 dont_mount(child);
628
629                 mutex_unlock(&child->d_inode->i_mutex);
630
631                 d_delete(child);
632                 dput(child);
633         }
634
635         /**
636          * Drop reference from dget() on entrance.
637          */
638         dput(dentry);
639 }
640
641 /*
642  * This fakes mkdir(2) on a default_groups[] entry.  It
643  * creates a dentry, attachs it, and then does fixup
644  * on the sd->s_type.
645  *
646  * We could, perhaps, tweak our parent's ->mkdir for a minute and
647  * try using vfs_mkdir.  Just a thought.
648  */
649 static int create_default_group(struct config_group *parent_group,
650                                 struct config_group *group)
651 {
652         int ret;
653         struct configfs_dirent *sd;
654         /* We trust the caller holds a reference to parent */
655         struct dentry *child, *parent = parent_group->cg_item.ci_dentry;
656
657         if (!group->cg_item.ci_name)
658                 group->cg_item.ci_name = group->cg_item.ci_namebuf;
659
660         ret = -ENOMEM;
661         child = d_alloc_name(parent, group->cg_item.ci_name);
662         if (child) {
663                 d_add(child, NULL);
664
665                 ret = configfs_attach_group(&parent_group->cg_item,
666                                             &group->cg_item, child);
667                 if (!ret) {
668                         sd = child->d_fsdata;
669                         sd->s_type |= CONFIGFS_USET_DEFAULT;
670                 } else {
671                         BUG_ON(child->d_inode);
672                         d_drop(child);
673                         dput(child);
674                 }
675         }
676
677         return ret;
678 }
679
680 static int populate_groups(struct config_group *group)
681 {
682         struct config_group *new_group;
683         int ret = 0;
684         int i;
685
686         if (group->default_groups) {
687                 for (i = 0; group->default_groups[i]; i++) {
688                         new_group = group->default_groups[i];
689
690                         ret = create_default_group(group, new_group);
691                         if (ret) {
692                                 detach_groups(group);
693                                 break;
694                         }
695                 }
696         }
697
698         return ret;
699 }
700
701 /*
702  * All of link_obj/unlink_obj/link_group/unlink_group require that
703  * subsys->su_mutex is held.
704  */
705
706 static void unlink_obj(struct config_item *item)
707 {
708         struct config_group *group;
709
710         group = item->ci_group;
711         if (group) {
712                 list_del_init(&item->ci_entry);
713
714                 item->ci_group = NULL;
715                 item->ci_parent = NULL;
716
717                 /* Drop the reference for ci_entry */
718                 config_item_put(item);
719
720                 /* Drop the reference for ci_parent */
721                 config_group_put(group);
722         }
723 }
724
725 static void link_obj(struct config_item *parent_item, struct config_item *item)
726 {
727         /*
728          * Parent seems redundant with group, but it makes certain
729          * traversals much nicer.
730          */
731         item->ci_parent = parent_item;
732
733         /*
734          * We hold a reference on the parent for the child's ci_parent
735          * link.
736          */
737         item->ci_group = config_group_get(to_config_group(parent_item));
738         list_add_tail(&item->ci_entry, &item->ci_group->cg_children);
739
740         /*
741          * We hold a reference on the child for ci_entry on the parent's
742          * cg_children
743          */
744         config_item_get(item);
745 }
746
747 static void unlink_group(struct config_group *group)
748 {
749         int i;
750         struct config_group *new_group;
751
752         if (group->default_groups) {
753                 for (i = 0; group->default_groups[i]; i++) {
754                         new_group = group->default_groups[i];
755                         unlink_group(new_group);
756                 }
757         }
758
759         group->cg_subsys = NULL;
760         unlink_obj(&group->cg_item);
761 }
762
763 static void link_group(struct config_group *parent_group, struct config_group *group)
764 {
765         int i;
766         struct config_group *new_group;
767         struct configfs_subsystem *subsys = NULL; /* gcc is a turd */
768
769         link_obj(&parent_group->cg_item, &group->cg_item);
770
771         if (parent_group->cg_subsys)
772                 subsys = parent_group->cg_subsys;
773         else if (configfs_is_root(&parent_group->cg_item))
774                 subsys = to_configfs_subsystem(group);
775         else
776                 BUG();
777         group->cg_subsys = subsys;
778
779         if (group->default_groups) {
780                 for (i = 0; group->default_groups[i]; i++) {
781                         new_group = group->default_groups[i];
782                         link_group(group, new_group);
783                 }
784         }
785 }
786
787 /*
788  * The goal is that configfs_attach_item() (and
789  * configfs_attach_group()) can be called from either the VFS or this
790  * module.  That is, they assume that the items have been created,
791  * the dentry allocated, and the dcache is all ready to go.
792  *
793  * If they fail, they must clean up after themselves as if they
794  * had never been called.  The caller (VFS or local function) will
795  * handle cleaning up the dcache bits.
796  *
797  * configfs_detach_group() and configfs_detach_item() behave similarly on
798  * the way out.  They assume that the proper semaphores are held, they
799  * clean up the configfs items, and they expect their callers will
800  * handle the dcache bits.
801  */
802 static int configfs_attach_item(struct config_item *parent_item,
803                                 struct config_item *item,
804                                 struct dentry *dentry)
805 {
806         int ret;
807
808         ret = configfs_create_dir(item, dentry);
809         if (!ret) {
810                 ret = populate_attrs(item);
811                 if (ret) {
812                         /*
813                          * We are going to remove an inode and its dentry but
814                          * the VFS may already have hit and used them. Thus,
815                          * we must lock them as rmdir() would.
816                          */
817                         mutex_lock(&dentry->d_inode->i_mutex);
818                         configfs_remove_dir(item);
819                         dentry->d_inode->i_flags |= S_DEAD;
820                         dont_mount(dentry);
821                         mutex_unlock(&dentry->d_inode->i_mutex);
822                         d_delete(dentry);
823                 }
824         }
825
826         return ret;
827 }
828
829 /* Caller holds the mutex of the item's inode */
830 static void configfs_detach_item(struct config_item *item)
831 {
832         detach_attrs(item);
833         configfs_remove_dir(item);
834 }
835
836 static int configfs_attach_group(struct config_item *parent_item,
837                                  struct config_item *item,
838                                  struct dentry *dentry)
839 {
840         int ret;
841         struct configfs_dirent *sd;
842
843         ret = configfs_attach_item(parent_item, item, dentry);
844         if (!ret) {
845                 sd = dentry->d_fsdata;
846                 sd->s_type |= CONFIGFS_USET_DIR;
847
848                 /*
849                  * FYI, we're faking mkdir in populate_groups()
850                  * We must lock the group's inode to avoid races with the VFS
851                  * which can already hit the inode and try to add/remove entries
852                  * under it.
853                  *
854                  * We must also lock the inode to remove it safely in case of
855                  * error, as rmdir() would.
856                  */
857                 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_CHILD);
858                 configfs_adjust_dir_dirent_depth_before_populate(sd);
859                 ret = populate_groups(to_config_group(item));
860                 if (ret) {
861                         configfs_detach_item(item);
862                         dentry->d_inode->i_flags |= S_DEAD;
863                         dont_mount(dentry);
864                 }
865                 configfs_adjust_dir_dirent_depth_after_populate(sd);
866                 mutex_unlock(&dentry->d_inode->i_mutex);
867                 if (ret)
868                         d_delete(dentry);
869         }
870
871         return ret;
872 }
873
874 /* Caller holds the mutex of the group's inode */
875 static void configfs_detach_group(struct config_item *item)
876 {
877         detach_groups(to_config_group(item));
878         configfs_detach_item(item);
879 }
880
881 /*
882  * After the item has been detached from the filesystem view, we are
883  * ready to tear it out of the hierarchy.  Notify the client before
884  * we do that so they can perform any cleanup that requires
885  * navigating the hierarchy.  A client does not need to provide this
886  * callback.  The subsystem semaphore MUST be held by the caller, and
887  * references must be valid for both items.  It also assumes the
888  * caller has validated ci_type.
889  */
890 static void client_disconnect_notify(struct config_item *parent_item,
891                                      struct config_item *item)
892 {
893         struct config_item_type *type;
894
895         type = parent_item->ci_type;
896         BUG_ON(!type);
897
898         if (type->ct_group_ops && type->ct_group_ops->disconnect_notify)
899                 type->ct_group_ops->disconnect_notify(to_config_group(parent_item),
900                                                       item);
901 }
902
903 /*
904  * Drop the initial reference from make_item()/make_group()
905  * This function assumes that reference is held on item
906  * and that item holds a valid reference to the parent.  Also, it
907  * assumes the caller has validated ci_type.
908  */
909 static void client_drop_item(struct config_item *parent_item,
910                              struct config_item *item)
911 {
912         struct config_item_type *type;
913
914         type = parent_item->ci_type;
915         BUG_ON(!type);
916
917         /*
918          * If ->drop_item() exists, it is responsible for the
919          * config_item_put().
920          */
921         if (type->ct_group_ops && type->ct_group_ops->drop_item)
922                 type->ct_group_ops->drop_item(to_config_group(parent_item),
923                                               item);
924         else
925                 config_item_put(item);
926 }
927
928 #ifdef DEBUG
929 static void configfs_dump_one(struct configfs_dirent *sd, int level)
930 {
931         printk(KERN_INFO "%*s\"%s\":\n", level, " ", configfs_get_name(sd));
932
933 #define type_print(_type) if (sd->s_type & _type) printk(KERN_INFO "%*s %s\n", level, " ", #_type);
934         type_print(CONFIGFS_ROOT);
935         type_print(CONFIGFS_DIR);
936         type_print(CONFIGFS_ITEM_ATTR);
937         type_print(CONFIGFS_ITEM_LINK);
938         type_print(CONFIGFS_USET_DIR);
939         type_print(CONFIGFS_USET_DEFAULT);
940         type_print(CONFIGFS_USET_DROPPING);
941 #undef type_print
942 }
943
944 static int configfs_dump(struct configfs_dirent *sd, int level)
945 {
946         struct configfs_dirent *child_sd;
947         int ret = 0;
948
949         configfs_dump_one(sd, level);
950
951         if (!(sd->s_type & (CONFIGFS_DIR|CONFIGFS_ROOT)))
952                 return 0;
953
954         list_for_each_entry(child_sd, &sd->s_children, s_sibling) {
955                 ret = configfs_dump(child_sd, level + 2);
956                 if (ret)
957                         break;
958         }
959
960         return ret;
961 }
962 #endif
963
964
965 /*
966  * configfs_depend_item() and configfs_undepend_item()
967  *
968  * WARNING: Do not call these from a configfs callback!
969  *
970  * This describes these functions and their helpers.
971  *
972  * Allow another kernel system to depend on a config_item.  If this
973  * happens, the item cannot go away until the dependent can live without
974  * it.  The idea is to give client modules as simple an interface as
975  * possible.  When a system asks them to depend on an item, they just
976  * call configfs_depend_item().  If the item is live and the client
977  * driver is in good shape, we'll happily do the work for them.
978  *
979  * Why is the locking complex?  Because configfs uses the VFS to handle
980  * all locking, but this function is called outside the normal
981  * VFS->configfs path.  So it must take VFS locks to prevent the
982  * VFS->configfs stuff (configfs_mkdir(), configfs_rmdir(), etc).  This is
983  * why you can't call these functions underneath configfs callbacks.
984  *
985  * Note, btw, that this can be called at *any* time, even when a configfs
986  * subsystem isn't registered, or when configfs is loading or unloading.
987  * Just like configfs_register_subsystem().  So we take the same
988  * precautions.  We pin the filesystem.  We lock configfs_dirent_lock.
989  * If we can find the target item in the
990  * configfs tree, it must be part of the subsystem tree as well, so we
991  * do not need the subsystem semaphore.  Holding configfs_dirent_lock helps
992  * locking out mkdir() and rmdir(), who might be racing us.
993  */
994
995 /*
996  * configfs_depend_prep()
997  *
998  * Only subdirectories count here.  Files (CONFIGFS_NOT_PINNED) are
999  * attributes.  This is similar but not the same to configfs_detach_prep().
1000  * Note that configfs_detach_prep() expects the parent to be locked when it
1001  * is called, but we lock the parent *inside* configfs_depend_prep().  We
1002  * do that so we can unlock it if we find nothing.
1003  *
1004  * Here we do a depth-first search of the dentry hierarchy looking for
1005  * our object.
1006  * We deliberately ignore items tagged as dropping since they are virtually
1007  * dead, as well as items in the middle of attachment since they virtually
1008  * do not exist yet. This completes the locking out of racing mkdir() and
1009  * rmdir().
1010  * Note: subdirectories in the middle of attachment start with s_type =
1011  * CONFIGFS_DIR|CONFIGFS_USET_CREATING set by create_dir().  When
1012  * CONFIGFS_USET_CREATING is set, we ignore the item.  The actual set of
1013  * s_type is in configfs_new_dirent(), which has configfs_dirent_lock.
1014  *
1015  * If the target is not found, -ENOENT is bubbled up.
1016  *
1017  * This adds a requirement that all config_items be unique!
1018  *
1019  * This is recursive.  There isn't
1020  * much on the stack, though, so folks that need this function - be careful
1021  * about your stack!  Patches will be accepted to make it iterative.
1022  */
1023 static int configfs_depend_prep(struct dentry *origin,
1024                                 struct config_item *target)
1025 {
1026         struct configfs_dirent *child_sd, *sd;
1027         int ret = 0;
1028
1029         BUG_ON(!origin || !origin->d_fsdata);
1030         sd = origin->d_fsdata;
1031
1032         if (sd->s_element == target)  /* Boo-yah */
1033                 goto out;
1034
1035         list_for_each_entry(child_sd, &sd->s_children, s_sibling) {
1036                 if ((child_sd->s_type & CONFIGFS_DIR) &&
1037                     !(child_sd->s_type & CONFIGFS_USET_DROPPING) &&
1038                     !(child_sd->s_type & CONFIGFS_USET_CREATING)) {
1039                         ret = configfs_depend_prep(child_sd->s_dentry,
1040                                                    target);
1041                         if (!ret)
1042                                 goto out;  /* Child path boo-yah */
1043                 }
1044         }
1045
1046         /* We looped all our children and didn't find target */
1047         ret = -ENOENT;
1048
1049 out:
1050         return ret;
1051 }
1052
1053 int configfs_depend_item(struct configfs_subsystem *subsys,
1054                          struct config_item *target)
1055 {
1056         int ret;
1057         struct configfs_dirent *p, *root_sd, *subsys_sd = NULL;
1058         struct config_item *s_item = &subsys->su_group.cg_item;
1059         struct dentry *root;
1060
1061         /*
1062          * Pin the configfs filesystem.  This means we can safely access
1063          * the root of the configfs filesystem.
1064          */
1065         root = configfs_pin_fs();
1066         if (IS_ERR(root))
1067                 return PTR_ERR(root);
1068
1069         /*
1070          * Next, lock the root directory.  We're going to check that the
1071          * subsystem is really registered, and so we need to lock out
1072          * configfs_[un]register_subsystem().
1073          */
1074         mutex_lock(&root->d_inode->i_mutex);
1075
1076         root_sd = root->d_fsdata;
1077
1078         list_for_each_entry(p, &root_sd->s_children, s_sibling) {
1079                 if (p->s_type & CONFIGFS_DIR) {
1080                         if (p->s_element == s_item) {
1081                                 subsys_sd = p;
1082                                 break;
1083                         }
1084                 }
1085         }
1086
1087         if (!subsys_sd) {
1088                 ret = -ENOENT;
1089                 goto out_unlock_fs;
1090         }
1091
1092         /* Ok, now we can trust subsys/s_item */
1093
1094         spin_lock(&configfs_dirent_lock);
1095         /* Scan the tree, return 0 if found */
1096         ret = configfs_depend_prep(subsys_sd->s_dentry, target);
1097         if (ret)
1098                 goto out_unlock_dirent_lock;
1099
1100         /*
1101          * We are sure that the item is not about to be removed by rmdir(), and
1102          * not in the middle of attachment by mkdir().
1103          */
1104         p = target->ci_dentry->d_fsdata;
1105         p->s_dependent_count += 1;
1106
1107 out_unlock_dirent_lock:
1108         spin_unlock(&configfs_dirent_lock);
1109 out_unlock_fs:
1110         mutex_unlock(&root->d_inode->i_mutex);
1111
1112         /*
1113          * If we succeeded, the fs is pinned via other methods.  If not,
1114          * we're done with it anyway.  So release_fs() is always right.
1115          */
1116         configfs_release_fs();
1117
1118         return ret;
1119 }
1120 EXPORT_SYMBOL(configfs_depend_item);
1121
1122 /*
1123  * Release the dependent linkage.  This is much simpler than
1124  * configfs_depend_item() because we know that that the client driver is
1125  * pinned, thus the subsystem is pinned, and therefore configfs is pinned.
1126  */
1127 void configfs_undepend_item(struct configfs_subsystem *subsys,
1128                             struct config_item *target)
1129 {
1130         struct configfs_dirent *sd;
1131
1132         /*
1133          * Since we can trust everything is pinned, we just need
1134          * configfs_dirent_lock.
1135          */
1136         spin_lock(&configfs_dirent_lock);
1137
1138         sd = target->ci_dentry->d_fsdata;
1139         BUG_ON(sd->s_dependent_count < 1);
1140
1141         sd->s_dependent_count -= 1;
1142
1143         /*
1144          * After this unlock, we cannot trust the item to stay alive!
1145          * DO NOT REFERENCE item after this unlock.
1146          */
1147         spin_unlock(&configfs_dirent_lock);
1148 }
1149 EXPORT_SYMBOL(configfs_undepend_item);
1150
1151 static int configfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1152 {
1153         int ret = 0;
1154         int module_got = 0;
1155         struct config_group *group = NULL;
1156         struct config_item *item = NULL;
1157         struct config_item *parent_item;
1158         struct configfs_subsystem *subsys;
1159         struct configfs_dirent *sd;
1160         struct config_item_type *type;
1161         struct module *subsys_owner = NULL, *new_item_owner = NULL;
1162         char *name;
1163
1164         sd = dentry->d_parent->d_fsdata;
1165
1166         /*
1167          * Fake invisibility if dir belongs to a group/default groups hierarchy
1168          * being attached
1169          */
1170         if (!configfs_dirent_is_ready(sd)) {
1171                 ret = -ENOENT;
1172                 goto out;
1173         }
1174
1175         if (!(sd->s_type & CONFIGFS_USET_DIR)) {
1176                 ret = -EPERM;
1177                 goto out;
1178         }
1179
1180         /* Get a working ref for the duration of this function */
1181         parent_item = configfs_get_config_item(dentry->d_parent);
1182         type = parent_item->ci_type;
1183         subsys = to_config_group(parent_item)->cg_subsys;
1184         BUG_ON(!subsys);
1185
1186         if (!type || !type->ct_group_ops ||
1187             (!type->ct_group_ops->make_group &&
1188              !type->ct_group_ops->make_item)) {
1189                 ret = -EPERM;  /* Lack-of-mkdir returns -EPERM */
1190                 goto out_put;
1191         }
1192
1193         /*
1194          * The subsystem may belong to a different module than the item
1195          * being created.  We don't want to safely pin the new item but
1196          * fail to pin the subsystem it sits under.
1197          */
1198         if (!subsys->su_group.cg_item.ci_type) {
1199                 ret = -EINVAL;
1200                 goto out_put;
1201         }
1202         subsys_owner = subsys->su_group.cg_item.ci_type->ct_owner;
1203         if (!try_module_get(subsys_owner)) {
1204                 ret = -EINVAL;
1205                 goto out_put;
1206         }
1207
1208         name = kmalloc(dentry->d_name.len + 1, GFP_KERNEL);
1209         if (!name) {
1210                 ret = -ENOMEM;
1211                 goto out_subsys_put;
1212         }
1213
1214         snprintf(name, dentry->d_name.len + 1, "%s", dentry->d_name.name);
1215
1216         mutex_lock(&subsys->su_mutex);
1217         if (type->ct_group_ops->make_group) {
1218                 group = type->ct_group_ops->make_group(to_config_group(parent_item), name);
1219                 if (!group)
1220                         group = ERR_PTR(-ENOMEM);
1221                 if (!IS_ERR(group)) {
1222                         link_group(to_config_group(parent_item), group);
1223                         item = &group->cg_item;
1224                 } else
1225                         ret = PTR_ERR(group);
1226         } else {
1227                 item = type->ct_group_ops->make_item(to_config_group(parent_item), name);
1228                 if (!item)
1229                         item = ERR_PTR(-ENOMEM);
1230                 if (!IS_ERR(item))
1231                         link_obj(parent_item, item);
1232                 else
1233                         ret = PTR_ERR(item);
1234         }
1235         mutex_unlock(&subsys->su_mutex);
1236
1237         kfree(name);
1238         if (ret) {
1239                 /*
1240                  * If ret != 0, then link_obj() was never called.
1241                  * There are no extra references to clean up.
1242                  */
1243                 goto out_subsys_put;
1244         }
1245
1246         /*
1247          * link_obj() has been called (via link_group() for groups).
1248          * From here on out, errors must clean that up.
1249          */
1250
1251         type = item->ci_type;
1252         if (!type) {
1253                 ret = -EINVAL;
1254                 goto out_unlink;
1255         }
1256
1257         new_item_owner = type->ct_owner;
1258         if (!try_module_get(new_item_owner)) {
1259                 ret = -EINVAL;
1260                 goto out_unlink;
1261         }
1262
1263         /*
1264          * I hate doing it this way, but if there is
1265          * an error,  module_put() probably should
1266          * happen after any cleanup.
1267          */
1268         module_got = 1;
1269
1270         /*
1271          * Make racing rmdir() fail if it did not tag parent with
1272          * CONFIGFS_USET_DROPPING
1273          * Note: if CONFIGFS_USET_DROPPING is already set, attach_group() will
1274          * fail and let rmdir() terminate correctly
1275          */
1276         spin_lock(&configfs_dirent_lock);
1277         /* This will make configfs_detach_prep() fail */
1278         sd->s_type |= CONFIGFS_USET_IN_MKDIR;
1279         spin_unlock(&configfs_dirent_lock);
1280
1281         if (group)
1282                 ret = configfs_attach_group(parent_item, item, dentry);
1283         else
1284                 ret = configfs_attach_item(parent_item, item, dentry);
1285
1286         spin_lock(&configfs_dirent_lock);
1287         sd->s_type &= ~CONFIGFS_USET_IN_MKDIR;
1288         if (!ret)
1289                 configfs_dir_set_ready(dentry->d_fsdata);
1290         spin_unlock(&configfs_dirent_lock);
1291
1292 out_unlink:
1293         if (ret) {
1294                 /* Tear down everything we built up */
1295                 mutex_lock(&subsys->su_mutex);
1296
1297                 client_disconnect_notify(parent_item, item);
1298                 if (group)
1299                         unlink_group(group);
1300                 else
1301                         unlink_obj(item);
1302                 client_drop_item(parent_item, item);
1303
1304                 mutex_unlock(&subsys->su_mutex);
1305
1306                 if (module_got)
1307                         module_put(new_item_owner);
1308         }
1309
1310 out_subsys_put:
1311         if (ret)
1312                 module_put(subsys_owner);
1313
1314 out_put:
1315         /*
1316          * link_obj()/link_group() took a reference from child->parent,
1317          * so the parent is safely pinned.  We can drop our working
1318          * reference.
1319          */
1320         config_item_put(parent_item);
1321
1322 out:
1323         return ret;
1324 }
1325
1326 static int configfs_rmdir(struct inode *dir, struct dentry *dentry)
1327 {
1328         struct config_item *parent_item;
1329         struct config_item *item;
1330         struct configfs_subsystem *subsys;
1331         struct configfs_dirent *sd;
1332         struct module *subsys_owner = NULL, *dead_item_owner = NULL;
1333         int ret;
1334
1335         sd = dentry->d_fsdata;
1336         if (sd->s_type & CONFIGFS_USET_DEFAULT)
1337                 return -EPERM;
1338
1339         /* Get a working ref until we have the child */
1340         parent_item = configfs_get_config_item(dentry->d_parent);
1341         subsys = to_config_group(parent_item)->cg_subsys;
1342         BUG_ON(!subsys);
1343
1344         if (!parent_item->ci_type) {
1345                 config_item_put(parent_item);
1346                 return -EINVAL;
1347         }
1348
1349         /* configfs_mkdir() shouldn't have allowed this */
1350         BUG_ON(!subsys->su_group.cg_item.ci_type);
1351         subsys_owner = subsys->su_group.cg_item.ci_type->ct_owner;
1352
1353         /*
1354          * Ensure that no racing symlink() will make detach_prep() fail while
1355          * the new link is temporarily attached
1356          */
1357         do {
1358                 struct mutex *wait_mutex;
1359
1360                 mutex_lock(&configfs_symlink_mutex);
1361                 spin_lock(&configfs_dirent_lock);
1362                 /*
1363                  * Here's where we check for dependents.  We're protected by
1364                  * configfs_dirent_lock.
1365                  * If no dependent, atomically tag the item as dropping.
1366                  */
1367                 ret = sd->s_dependent_count ? -EBUSY : 0;
1368                 if (!ret) {
1369                         ret = configfs_detach_prep(dentry, &wait_mutex);
1370                         if (ret)
1371                                 configfs_detach_rollback(dentry);
1372                 }
1373                 spin_unlock(&configfs_dirent_lock);
1374                 mutex_unlock(&configfs_symlink_mutex);
1375
1376                 if (ret) {
1377                         if (ret != -EAGAIN) {
1378                                 config_item_put(parent_item);
1379                                 return ret;
1380                         }
1381
1382                         /* Wait until the racing operation terminates */
1383                         mutex_lock(wait_mutex);
1384                         mutex_unlock(wait_mutex);
1385                 }
1386         } while (ret == -EAGAIN);
1387
1388         /* Get a working ref for the duration of this function */
1389         item = configfs_get_config_item(dentry);
1390
1391         /* Drop reference from above, item already holds one. */
1392         config_item_put(parent_item);
1393
1394         if (item->ci_type)
1395                 dead_item_owner = item->ci_type->ct_owner;
1396
1397         if (sd->s_type & CONFIGFS_USET_DIR) {
1398                 configfs_detach_group(item);
1399
1400                 mutex_lock(&subsys->su_mutex);
1401                 client_disconnect_notify(parent_item, item);
1402                 unlink_group(to_config_group(item));
1403         } else {
1404                 configfs_detach_item(item);
1405
1406                 mutex_lock(&subsys->su_mutex);
1407                 client_disconnect_notify(parent_item, item);
1408                 unlink_obj(item);
1409         }
1410
1411         client_drop_item(parent_item, item);
1412         mutex_unlock(&subsys->su_mutex);
1413
1414         /* Drop our reference from above */
1415         config_item_put(item);
1416
1417         module_put(dead_item_owner);
1418         module_put(subsys_owner);
1419
1420         return 0;
1421 }
1422
1423 const struct inode_operations configfs_dir_inode_operations = {
1424         .mkdir          = configfs_mkdir,
1425         .rmdir          = configfs_rmdir,
1426         .symlink        = configfs_symlink,
1427         .unlink         = configfs_unlink,
1428         .lookup         = configfs_lookup,
1429         .setattr        = configfs_setattr,
1430 };
1431
1432 const struct inode_operations configfs_root_inode_operations = {
1433         .lookup         = configfs_lookup,
1434         .setattr        = configfs_setattr,
1435 };
1436
1437 #if 0
1438 int configfs_rename_dir(struct config_item * item, const char *new_name)
1439 {
1440         int error = 0;
1441         struct dentry * new_dentry, * parent;
1442
1443         if (!strcmp(config_item_name(item), new_name))
1444                 return -EINVAL;
1445
1446         if (!item->parent)
1447                 return -EINVAL;
1448
1449         down_write(&configfs_rename_sem);
1450         parent = item->parent->dentry;
1451
1452         mutex_lock(&parent->d_inode->i_mutex);
1453
1454         new_dentry = lookup_one_len(new_name, parent, strlen(new_name));
1455         if (!IS_ERR(new_dentry)) {
1456                 if (!new_dentry->d_inode) {
1457                         error = config_item_set_name(item, "%s", new_name);
1458                         if (!error) {
1459                                 d_add(new_dentry, NULL);
1460                                 d_move(item->dentry, new_dentry);
1461                         }
1462                         else
1463                                 d_delete(new_dentry);
1464                 } else
1465                         error = -EEXIST;
1466                 dput(new_dentry);
1467         }
1468         mutex_unlock(&parent->d_inode->i_mutex);
1469         up_write(&configfs_rename_sem);
1470
1471         return error;
1472 }
1473 #endif
1474
1475 static int configfs_dir_open(struct inode *inode, struct file *file)
1476 {
1477         struct dentry * dentry = file->f_path.dentry;
1478         struct configfs_dirent * parent_sd = dentry->d_fsdata;
1479         int err;
1480
1481         mutex_lock(&dentry->d_inode->i_mutex);
1482         /*
1483          * Fake invisibility if dir belongs to a group/default groups hierarchy
1484          * being attached
1485          */
1486         err = -ENOENT;
1487         if (configfs_dirent_is_ready(parent_sd)) {
1488                 file->private_data = configfs_new_dirent(parent_sd, NULL, 0);
1489                 if (IS_ERR(file->private_data))
1490                         err = PTR_ERR(file->private_data);
1491                 else
1492                         err = 0;
1493         }
1494         mutex_unlock(&dentry->d_inode->i_mutex);
1495
1496         return err;
1497 }
1498
1499 static int configfs_dir_close(struct inode *inode, struct file *file)
1500 {
1501         struct dentry * dentry = file->f_path.dentry;
1502         struct configfs_dirent * cursor = file->private_data;
1503
1504         mutex_lock(&dentry->d_inode->i_mutex);
1505         spin_lock(&configfs_dirent_lock);
1506         list_del_init(&cursor->s_sibling);
1507         spin_unlock(&configfs_dirent_lock);
1508         mutex_unlock(&dentry->d_inode->i_mutex);
1509
1510         release_configfs_dirent(cursor);
1511
1512         return 0;
1513 }
1514
1515 /* Relationship between s_mode and the DT_xxx types */
1516 static inline unsigned char dt_type(struct configfs_dirent *sd)
1517 {
1518         return (sd->s_mode >> 12) & 15;
1519 }
1520
1521 static int configfs_readdir(struct file *file, struct dir_context *ctx)
1522 {
1523         struct dentry *dentry = file->f_path.dentry;
1524         struct super_block *sb = dentry->d_sb;
1525         struct configfs_dirent * parent_sd = dentry->d_fsdata;
1526         struct configfs_dirent *cursor = file->private_data;
1527         struct list_head *p, *q = &cursor->s_sibling;
1528         ino_t ino = 0;
1529
1530         if (!dir_emit_dots(file, ctx))
1531                 return 0;
1532         if (ctx->pos == 2) {
1533                 spin_lock(&configfs_dirent_lock);
1534                 list_move(q, &parent_sd->s_children);
1535                 spin_unlock(&configfs_dirent_lock);
1536         }
1537         for (p = q->next; p != &parent_sd->s_children; p = p->next) {
1538                 struct configfs_dirent *next;
1539                 const char *name;
1540                 int len;
1541                 struct inode *inode = NULL;
1542
1543                 next = list_entry(p, struct configfs_dirent, s_sibling);
1544                 if (!next->s_element)
1545                         continue;
1546
1547                 name = configfs_get_name(next);
1548                 len = strlen(name);
1549
1550                 /*
1551                  * We'll have a dentry and an inode for
1552                  * PINNED items and for open attribute
1553                  * files.  We lock here to prevent a race
1554                  * with configfs_d_iput() clearing
1555                  * s_dentry before calling iput().
1556                  *
1557                  * Why do we go to the trouble?  If
1558                  * someone has an attribute file open,
1559                  * the inode number should match until
1560                  * they close it.  Beyond that, we don't
1561                  * care.
1562                  */
1563                 spin_lock(&configfs_dirent_lock);
1564                 dentry = next->s_dentry;
1565                 if (dentry)
1566                         inode = dentry->d_inode;
1567                 if (inode)
1568                         ino = inode->i_ino;
1569                 spin_unlock(&configfs_dirent_lock);
1570                 if (!inode)
1571                         ino = iunique(sb, 2);
1572
1573                 if (!dir_emit(ctx, name, len, ino, dt_type(next)))
1574                         return 0;
1575
1576                 spin_lock(&configfs_dirent_lock);
1577                 list_move(q, p);
1578                 spin_unlock(&configfs_dirent_lock);
1579                 p = q;
1580                 ctx->pos++;
1581         }
1582         return 0;
1583 }
1584
1585 static loff_t configfs_dir_lseek(struct file *file, loff_t offset, int whence)
1586 {
1587         struct dentry * dentry = file->f_path.dentry;
1588
1589         mutex_lock(&dentry->d_inode->i_mutex);
1590         switch (whence) {
1591                 case 1:
1592                         offset += file->f_pos;
1593                 case 0:
1594                         if (offset >= 0)
1595                                 break;
1596                 default:
1597                         mutex_unlock(&file_inode(file)->i_mutex);
1598                         return -EINVAL;
1599         }
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;
1607
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,
1614                                                    s_sibling);
1615                                 if (next->s_element)
1616                                         n--;
1617                                 p = p->next;
1618                         }
1619                         list_add_tail(&cursor->s_sibling, p);
1620                         spin_unlock(&configfs_dirent_lock);
1621                 }
1622         }
1623         mutex_unlock(&dentry->d_inode->i_mutex);
1624         return offset;
1625 }
1626
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         .iterate        = configfs_readdir,
1633 };
1634
1635 int configfs_register_subsystem(struct configfs_subsystem *subsys)
1636 {
1637         int err;
1638         struct config_group *group = &subsys->su_group;
1639         struct dentry *dentry;
1640         struct dentry *root;
1641         struct configfs_dirent *sd;
1642
1643         root = configfs_pin_fs();
1644         if (IS_ERR(root))
1645                 return PTR_ERR(root);
1646
1647         if (!group->cg_item.ci_name)
1648                 group->cg_item.ci_name = group->cg_item.ci_namebuf;
1649
1650         sd = root->d_fsdata;
1651         link_group(to_config_group(sd->s_element), group);
1652
1653         mutex_lock_nested(&root->d_inode->i_mutex, I_MUTEX_PARENT);
1654
1655         err = -ENOMEM;
1656         dentry = d_alloc_name(root, group->cg_item.ci_name);
1657         if (dentry) {
1658                 d_add(dentry, NULL);
1659
1660                 err = configfs_attach_group(sd->s_element, &group->cg_item,
1661                                             dentry);
1662                 if (err) {
1663                         BUG_ON(dentry->d_inode);
1664                         d_drop(dentry);
1665                         dput(dentry);
1666                 } else {
1667                         spin_lock(&configfs_dirent_lock);
1668                         configfs_dir_set_ready(dentry->d_fsdata);
1669                         spin_unlock(&configfs_dirent_lock);
1670                 }
1671         }
1672
1673         mutex_unlock(&root->d_inode->i_mutex);
1674
1675         if (err) {
1676                 unlink_group(group);
1677                 configfs_release_fs();
1678         }
1679
1680         return err;
1681 }
1682
1683 void configfs_unregister_subsystem(struct configfs_subsystem *subsys)
1684 {
1685         struct config_group *group = &subsys->su_group;
1686         struct dentry *dentry = group->cg_item.ci_dentry;
1687         struct dentry *root = dentry->d_sb->s_root;
1688
1689         if (dentry->d_parent != root) {
1690                 printk(KERN_ERR "configfs: Tried to unregister non-subsystem!\n");
1691                 return;
1692         }
1693
1694         mutex_lock_nested(&root->d_inode->i_mutex,
1695                           I_MUTEX_PARENT);
1696         mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_CHILD);
1697         mutex_lock(&configfs_symlink_mutex);
1698         spin_lock(&configfs_dirent_lock);
1699         if (configfs_detach_prep(dentry, NULL)) {
1700                 printk(KERN_ERR "configfs: Tried to unregister non-empty subsystem!\n");
1701         }
1702         spin_unlock(&configfs_dirent_lock);
1703         mutex_unlock(&configfs_symlink_mutex);
1704         configfs_detach_group(&group->cg_item);
1705         dentry->d_inode->i_flags |= S_DEAD;
1706         dont_mount(dentry);
1707         mutex_unlock(&dentry->d_inode->i_mutex);
1708
1709         d_delete(dentry);
1710
1711         mutex_unlock(&root->d_inode->i_mutex);
1712
1713         dput(dentry);
1714
1715         unlink_group(group);
1716         configfs_release_fs();
1717 }
1718
1719 EXPORT_SYMBOL(configfs_register_subsystem);
1720 EXPORT_SYMBOL(configfs_unregister_subsystem);