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