blob: 647499a3479b851272703b8ae19d70a8f0fe4eb4 [file] [log] [blame]
Joel Becker7063fbf2005-12-15 14:29:43 -08001/* -*- 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>
Louis Rilling107ed402008-06-16 19:01:00 +020033#include <linux/err.h>
Joel Becker7063fbf2005-12-15 14:29:43 -080034
35#include <linux/configfs.h>
36#include "configfs_internal.h"
37
38DECLARE_RWSEM(configfs_rename_sem);
Louis Rilling6f610762008-06-16 19:00:58 +020039/*
40 * Protects mutations of configfs_dirent linkage together with proper i_mutex
Louis Rilling5301a772008-06-16 19:00:59 +020041 * Also protects mutations of symlinks linkage to target configfs_dirent
Louis Rilling6f610762008-06-16 19:00:58 +020042 * Mutators of configfs_dirent linkage must *both* have the proper inode locked
43 * and configfs_dirent_lock locked, in that order.
Louis Rilling5301a772008-06-16 19:00:59 +020044 * This allows one to safely traverse configfs_dirent trees and symlinks without
45 * having to lock inodes.
Louis Rillingb3e76af2008-06-16 19:01:01 +020046 *
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()
Louis Rilling6f610762008-06-16 19:00:58 +020050 */
51DEFINE_SPINLOCK(configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -080052
53static 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 sd->s_dentry = NULL;
61 configfs_put(sd);
62 }
63 iput(inode);
64}
65
66/*
67 * We _must_ delete our dentries on last dput, as the chain-to-parent
68 * behavior is required to clear the parents of default_groups.
69 */
70static int configfs_d_delete(struct dentry *dentry)
71{
72 return 1;
73}
74
75static struct dentry_operations configfs_dentry_ops = {
76 .d_iput = configfs_d_iput,
77 /* simple_delete_dentry() isn't exported */
78 .d_delete = configfs_d_delete,
79};
80
81/*
82 * Allocates a new configfs_dirent and links it to the parent configfs_dirent
83 */
84static struct configfs_dirent *configfs_new_dirent(struct configfs_dirent * parent_sd,
85 void * element)
86{
87 struct configfs_dirent * sd;
88
Robert P. J. Dayc3762222007-02-10 01:45:03 -080089 sd = kmem_cache_zalloc(configfs_dir_cachep, GFP_KERNEL);
Joel Becker7063fbf2005-12-15 14:29:43 -080090 if (!sd)
Louis Rilling107ed402008-06-16 19:01:00 +020091 return ERR_PTR(-ENOMEM);
Joel Becker7063fbf2005-12-15 14:29:43 -080092
Joel Becker7063fbf2005-12-15 14:29:43 -080093 atomic_set(&sd->s_count, 1);
94 INIT_LIST_HEAD(&sd->s_links);
95 INIT_LIST_HEAD(&sd->s_children);
Joel Becker7063fbf2005-12-15 14:29:43 -080096 sd->s_element = element;
Louis Rilling6f610762008-06-16 19:00:58 +020097 spin_lock(&configfs_dirent_lock);
Louis Rillingb3e76af2008-06-16 19:01:01 +020098 if (parent_sd->s_type & CONFIGFS_USET_DROPPING) {
99 spin_unlock(&configfs_dirent_lock);
100 kmem_cache_free(configfs_dir_cachep, sd);
101 return ERR_PTR(-ENOENT);
102 }
Louis Rilling6f610762008-06-16 19:00:58 +0200103 list_add(&sd->s_sibling, &parent_sd->s_children);
104 spin_unlock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -0800105
106 return sd;
107}
108
Joel Beckerb4c98f62006-09-13 11:01:19 -0700109/*
110 *
111 * Return -EEXIST if there is already a configfs element with the same
112 * name for the same parent.
113 *
114 * called with parent inode's i_mutex held
115 */
Adrian Bunk58d206c2006-11-20 03:24:00 +0100116static int configfs_dirent_exists(struct configfs_dirent *parent_sd,
117 const unsigned char *new)
Joel Beckerb4c98f62006-09-13 11:01:19 -0700118{
119 struct configfs_dirent * sd;
120
121 list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
122 if (sd->s_element) {
123 const unsigned char *existing = configfs_get_name(sd);
124 if (strcmp(existing, new))
125 continue;
126 else
127 return -EEXIST;
128 }
129 }
130
131 return 0;
132}
133
134
Joel Becker7063fbf2005-12-15 14:29:43 -0800135int configfs_make_dirent(struct configfs_dirent * parent_sd,
136 struct dentry * dentry, void * element,
137 umode_t mode, int type)
138{
139 struct configfs_dirent * sd;
140
141 sd = configfs_new_dirent(parent_sd, element);
Louis Rilling107ed402008-06-16 19:01:00 +0200142 if (IS_ERR(sd))
143 return PTR_ERR(sd);
Joel Becker7063fbf2005-12-15 14:29:43 -0800144
145 sd->s_mode = mode;
146 sd->s_type = type;
147 sd->s_dentry = dentry;
148 if (dentry) {
149 dentry->d_fsdata = configfs_get(sd);
150 dentry->d_op = &configfs_dentry_ops;
151 }
152
153 return 0;
154}
155
156static int init_dir(struct inode * inode)
157{
158 inode->i_op = &configfs_dir_inode_operations;
159 inode->i_fop = &configfs_dir_operations;
160
161 /* directory inodes start off with i_nlink == 2 (for "." entry) */
Dave Hansend8c76e62006-09-30 23:29:04 -0700162 inc_nlink(inode);
Joel Becker7063fbf2005-12-15 14:29:43 -0800163 return 0;
164}
165
Dave Hansence8d2cd2007-10-16 23:31:13 -0700166static int configfs_init_file(struct inode * inode)
Joel Becker7063fbf2005-12-15 14:29:43 -0800167{
168 inode->i_size = PAGE_SIZE;
169 inode->i_fop = &configfs_file_operations;
170 return 0;
171}
172
173static int init_symlink(struct inode * inode)
174{
175 inode->i_op = &configfs_symlink_inode_operations;
176 return 0;
177}
178
179static int create_dir(struct config_item * k, struct dentry * p,
180 struct dentry * d)
181{
182 int error;
183 umode_t mode = S_IFDIR| S_IRWXU | S_IRUGO | S_IXUGO;
184
Joel Beckerb4c98f62006-09-13 11:01:19 -0700185 error = configfs_dirent_exists(p->d_fsdata, d->d_name.name);
186 if (!error)
187 error = configfs_make_dirent(p->d_fsdata, d, k, mode,
Louis Rilling2a109f22008-07-04 16:56:05 +0200188 CONFIGFS_DIR | CONFIGFS_USET_CREATING);
Joel Becker7063fbf2005-12-15 14:29:43 -0800189 if (!error) {
Joel Becker3d0f89b2006-01-25 13:31:07 -0800190 error = configfs_create(d, mode, init_dir);
Joel Becker7063fbf2005-12-15 14:29:43 -0800191 if (!error) {
Dave Hansend8c76e62006-09-30 23:29:04 -0700192 inc_nlink(p->d_inode);
Joel Becker7063fbf2005-12-15 14:29:43 -0800193 (d)->d_op = &configfs_dentry_ops;
Joel Becker3d0f89b2006-01-25 13:31:07 -0800194 } else {
195 struct configfs_dirent *sd = d->d_fsdata;
196 if (sd) {
Louis Rilling6f610762008-06-16 19:00:58 +0200197 spin_lock(&configfs_dirent_lock);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800198 list_del_init(&sd->s_sibling);
Louis Rilling6f610762008-06-16 19:00:58 +0200199 spin_unlock(&configfs_dirent_lock);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800200 configfs_put(sd);
201 }
Joel Becker7063fbf2005-12-15 14:29:43 -0800202 }
203 }
204 return error;
205}
206
207
208/**
209 * configfs_create_dir - create a directory for an config_item.
210 * @item: config_itemwe're creating directory for.
211 * @dentry: config_item's dentry.
Louis Rilling2a109f22008-07-04 16:56:05 +0200212 *
213 * Note: user-created entries won't be allowed under this new directory
214 * until it is validated by configfs_dir_set_ready()
Joel Becker7063fbf2005-12-15 14:29:43 -0800215 */
216
217static int configfs_create_dir(struct config_item * item, struct dentry *dentry)
218{
219 struct dentry * parent;
220 int error = 0;
221
222 BUG_ON(!item);
223
224 if (item->ci_parent)
225 parent = item->ci_parent->ci_dentry;
226 else if (configfs_mount && configfs_mount->mnt_sb)
227 parent = configfs_mount->mnt_sb->s_root;
228 else
229 return -EFAULT;
230
231 error = create_dir(item,parent,dentry);
232 if (!error)
233 item->ci_dentry = dentry;
234 return error;
235}
236
Louis Rilling2a109f22008-07-04 16:56:05 +0200237/*
238 * Allow userspace to create new entries under a new directory created with
239 * configfs_create_dir(), and under all of its chidlren directories recursively.
240 * @sd configfs_dirent of the new directory to validate
241 *
242 * Caller must hold configfs_dirent_lock.
243 */
244static void configfs_dir_set_ready(struct configfs_dirent *sd)
245{
246 struct configfs_dirent *child_sd;
247
248 sd->s_type &= ~CONFIGFS_USET_CREATING;
249 list_for_each_entry(child_sd, &sd->s_children, s_sibling)
250 if (child_sd->s_type & CONFIGFS_USET_CREATING)
251 configfs_dir_set_ready(child_sd);
252}
253
254/*
255 * Check that a directory does not belong to a directory hierarchy being
256 * attached and not validated yet.
257 * @sd configfs_dirent of the directory to check
258 *
259 * @return non-zero iff the directory was validated
260 *
261 * Note: takes configfs_dirent_lock, so the result may change from false to true
262 * in two consecutive calls, but never from true to false.
263 */
264int configfs_dirent_is_ready(struct configfs_dirent *sd)
265{
266 int ret;
267
268 spin_lock(&configfs_dirent_lock);
269 ret = !(sd->s_type & CONFIGFS_USET_CREATING);
270 spin_unlock(&configfs_dirent_lock);
271
272 return ret;
273}
274
Joel Becker7063fbf2005-12-15 14:29:43 -0800275int configfs_create_link(struct configfs_symlink *sl,
276 struct dentry *parent,
277 struct dentry *dentry)
278{
279 int err = 0;
280 umode_t mode = S_IFLNK | S_IRWXUGO;
281
Joel Becker3d0f89b2006-01-25 13:31:07 -0800282 err = configfs_make_dirent(parent->d_fsdata, dentry, sl, mode,
283 CONFIGFS_ITEM_LINK);
Joel Becker7063fbf2005-12-15 14:29:43 -0800284 if (!err) {
Joel Becker3d0f89b2006-01-25 13:31:07 -0800285 err = configfs_create(dentry, mode, init_symlink);
Joel Becker7063fbf2005-12-15 14:29:43 -0800286 if (!err)
287 dentry->d_op = &configfs_dentry_ops;
Joel Becker3d0f89b2006-01-25 13:31:07 -0800288 else {
289 struct configfs_dirent *sd = dentry->d_fsdata;
290 if (sd) {
Louis Rilling6f610762008-06-16 19:00:58 +0200291 spin_lock(&configfs_dirent_lock);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800292 list_del_init(&sd->s_sibling);
Louis Rilling6f610762008-06-16 19:00:58 +0200293 spin_unlock(&configfs_dirent_lock);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800294 configfs_put(sd);
295 }
296 }
Joel Becker7063fbf2005-12-15 14:29:43 -0800297 }
298 return err;
299}
300
301static void remove_dir(struct dentry * d)
302{
303 struct dentry * parent = dget(d->d_parent);
304 struct configfs_dirent * sd;
305
306 sd = d->d_fsdata;
Louis Rilling6f610762008-06-16 19:00:58 +0200307 spin_lock(&configfs_dirent_lock);
Joel Beckere7515d02006-03-10 11:42:30 -0800308 list_del_init(&sd->s_sibling);
Louis Rilling6f610762008-06-16 19:00:58 +0200309 spin_unlock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -0800310 configfs_put(sd);
311 if (d->d_inode)
312 simple_rmdir(parent->d_inode,d);
313
314 pr_debug(" o %s removing done (%d)\n",d->d_name.name,
315 atomic_read(&d->d_count));
316
317 dput(parent);
318}
319
320/**
321 * configfs_remove_dir - remove an config_item's directory.
322 * @item: config_item we're removing.
323 *
324 * The only thing special about this is that we remove any files in
325 * the directory before we remove the directory, and we've inlined
326 * what used to be configfs_rmdir() below, instead of calling separately.
327 */
328
329static void configfs_remove_dir(struct config_item * item)
330{
331 struct dentry * dentry = dget(item->ci_dentry);
332
333 if (!dentry)
334 return;
335
336 remove_dir(dentry);
337 /**
338 * Drop reference from dget() on entrance.
339 */
340 dput(dentry);
341}
342
343
344/* attaches attribute's configfs_dirent to the dentry corresponding to the
345 * attribute file
346 */
347static int configfs_attach_attr(struct configfs_dirent * sd, struct dentry * dentry)
348{
349 struct configfs_attribute * attr = sd->s_element;
350 int error;
351
Joel Becker7063fbf2005-12-15 14:29:43 -0800352 dentry->d_fsdata = configfs_get(sd);
353 sd->s_dentry = dentry;
Dave Hansence8d2cd2007-10-16 23:31:13 -0700354 error = configfs_create(dentry, (attr->ca_mode & S_IALLUGO) | S_IFREG,
355 configfs_init_file);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800356 if (error) {
357 configfs_put(sd);
358 return error;
359 }
360
361 dentry->d_op = &configfs_dentry_ops;
Joel Becker7063fbf2005-12-15 14:29:43 -0800362 d_rehash(dentry);
363
364 return 0;
365}
366
367static struct dentry * configfs_lookup(struct inode *dir,
368 struct dentry *dentry,
369 struct nameidata *nd)
370{
371 struct configfs_dirent * parent_sd = dentry->d_parent->d_fsdata;
372 struct configfs_dirent * sd;
373 int found = 0;
Louis Rilling2a109f22008-07-04 16:56:05 +0200374 int err;
375
376 /*
377 * Fake invisibility if dir belongs to a group/default groups hierarchy
378 * being attached
379 *
380 * This forbids userspace to read/write attributes of items which may
381 * not complete their initialization, since the dentries of the
382 * attributes won't be instantiated.
383 */
384 err = -ENOENT;
385 if (!configfs_dirent_is_ready(parent_sd))
386 goto out;
Joel Becker7063fbf2005-12-15 14:29:43 -0800387
388 list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
389 if (sd->s_type & CONFIGFS_NOT_PINNED) {
390 const unsigned char * name = configfs_get_name(sd);
391
392 if (strcmp(name, dentry->d_name.name))
393 continue;
394
395 found = 1;
396 err = configfs_attach_attr(sd, dentry);
397 break;
398 }
399 }
400
401 if (!found) {
402 /*
403 * If it doesn't exist and it isn't a NOT_PINNED item,
404 * it must be negative.
405 */
406 return simple_lookup(dir, dentry, nd);
407 }
408
Louis Rilling2a109f22008-07-04 16:56:05 +0200409out:
Joel Becker7063fbf2005-12-15 14:29:43 -0800410 return ERR_PTR(err);
411}
412
413/*
414 * Only subdirectories count here. Files (CONFIGFS_NOT_PINNED) are
Louis Rillingb3e76af2008-06-16 19:01:01 +0200415 * attributes and are removed by rmdir(). We recurse, setting
416 * CONFIGFS_USET_DROPPING on all children that are candidates for
417 * default detach.
418 * If there is an error, the caller will reset the flags via
419 * configfs_detach_rollback().
Joel Becker7063fbf2005-12-15 14:29:43 -0800420 */
Louis Rilling6d8344b2008-06-16 19:01:02 +0200421static int configfs_detach_prep(struct dentry *dentry, struct mutex **wait_mutex)
Joel Becker7063fbf2005-12-15 14:29:43 -0800422{
423 struct configfs_dirent *parent_sd = dentry->d_fsdata;
424 struct configfs_dirent *sd;
425 int ret;
426
Louis Rilling4768e9b2008-06-23 14:16:17 +0200427 /* Mark that we're trying to drop the group */
428 parent_sd->s_type |= CONFIGFS_USET_DROPPING;
429
Joel Becker7063fbf2005-12-15 14:29:43 -0800430 ret = -EBUSY;
431 if (!list_empty(&parent_sd->s_links))
432 goto out;
433
434 ret = 0;
435 list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
436 if (sd->s_type & CONFIGFS_NOT_PINNED)
437 continue;
438 if (sd->s_type & CONFIGFS_USET_DEFAULT) {
Louis Rilling6d8344b2008-06-16 19:01:02 +0200439 /* Abort if racing with mkdir() */
440 if (sd->s_type & CONFIGFS_USET_IN_MKDIR) {
441 if (wait_mutex)
442 *wait_mutex = &sd->s_dentry->d_inode->i_mutex;
443 return -EAGAIN;
444 }
Joel Becker7063fbf2005-12-15 14:29:43 -0800445
Joel Becker631d1fe2007-06-18 18:06:09 -0700446 /*
447 * Yup, recursive. If there's a problem, blame
448 * deep nesting of default_groups
449 */
Louis Rilling6d8344b2008-06-16 19:01:02 +0200450 ret = configfs_detach_prep(sd->s_dentry, wait_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -0800451 if (!ret)
Joel Beckere7515d02006-03-10 11:42:30 -0800452 continue;
Joel Becker7063fbf2005-12-15 14:29:43 -0800453 } else
454 ret = -ENOTEMPTY;
455
456 break;
457 }
458
459out:
460 return ret;
461}
462
463/*
Louis Rillingb3e76af2008-06-16 19:01:01 +0200464 * Walk the tree, resetting CONFIGFS_USET_DROPPING wherever it was
Joel Becker7063fbf2005-12-15 14:29:43 -0800465 * set.
466 */
467static void configfs_detach_rollback(struct dentry *dentry)
468{
469 struct configfs_dirent *parent_sd = dentry->d_fsdata;
470 struct configfs_dirent *sd;
471
Louis Rilling4768e9b2008-06-23 14:16:17 +0200472 parent_sd->s_type &= ~CONFIGFS_USET_DROPPING;
473
474 list_for_each_entry(sd, &parent_sd->s_children, s_sibling)
475 if (sd->s_type & CONFIGFS_USET_DEFAULT)
Joel Becker7063fbf2005-12-15 14:29:43 -0800476 configfs_detach_rollback(sd->s_dentry);
Joel Becker7063fbf2005-12-15 14:29:43 -0800477}
478
479static void detach_attrs(struct config_item * item)
480{
481 struct dentry * dentry = dget(item->ci_dentry);
482 struct configfs_dirent * parent_sd;
483 struct configfs_dirent * sd, * tmp;
484
485 if (!dentry)
486 return;
487
488 pr_debug("configfs %s: dropping attrs for dir\n",
489 dentry->d_name.name);
490
491 parent_sd = dentry->d_fsdata;
492 list_for_each_entry_safe(sd, tmp, &parent_sd->s_children, s_sibling) {
493 if (!sd->s_element || !(sd->s_type & CONFIGFS_NOT_PINNED))
494 continue;
Louis Rilling6f610762008-06-16 19:00:58 +0200495 spin_lock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -0800496 list_del_init(&sd->s_sibling);
Louis Rilling6f610762008-06-16 19:00:58 +0200497 spin_unlock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -0800498 configfs_drop_dentry(sd, dentry);
499 configfs_put(sd);
500 }
501
502 /**
503 * Drop reference from dget() on entrance.
504 */
505 dput(dentry);
506}
507
508static int populate_attrs(struct config_item *item)
509{
510 struct config_item_type *t = item->ci_type;
511 struct configfs_attribute *attr;
512 int error = 0;
513 int i;
514
515 if (!t)
516 return -EINVAL;
517 if (t->ct_attrs) {
518 for (i = 0; (attr = t->ct_attrs[i]) != NULL; i++) {
519 if ((error = configfs_create_file(item, attr)))
520 break;
521 }
522 }
523
524 if (error)
525 detach_attrs(item);
526
527 return error;
528}
529
530static int configfs_attach_group(struct config_item *parent_item,
531 struct config_item *item,
532 struct dentry *dentry);
533static void configfs_detach_group(struct config_item *item);
534
535static void detach_groups(struct config_group *group)
536{
537 struct dentry * dentry = dget(group->cg_item.ci_dentry);
538 struct dentry *child;
539 struct configfs_dirent *parent_sd;
540 struct configfs_dirent *sd, *tmp;
541
542 if (!dentry)
543 return;
544
545 parent_sd = dentry->d_fsdata;
546 list_for_each_entry_safe(sd, tmp, &parent_sd->s_children, s_sibling) {
547 if (!sd->s_element ||
548 !(sd->s_type & CONFIGFS_USET_DEFAULT))
549 continue;
550
551 child = sd->s_dentry;
552
Louis Rillingb3e76af2008-06-16 19:01:01 +0200553 mutex_lock(&child->d_inode->i_mutex);
554
Joel Becker7063fbf2005-12-15 14:29:43 -0800555 configfs_detach_group(sd->s_element);
556 child->d_inode->i_flags |= S_DEAD;
557
Louis Rillingb3e76af2008-06-16 19:01:01 +0200558 mutex_unlock(&child->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -0800559
560 d_delete(child);
561 dput(child);
562 }
563
564 /**
565 * Drop reference from dget() on entrance.
566 */
567 dput(dentry);
568}
569
570/*
571 * This fakes mkdir(2) on a default_groups[] entry. It
572 * creates a dentry, attachs it, and then does fixup
573 * on the sd->s_type.
574 *
575 * We could, perhaps, tweak our parent's ->mkdir for a minute and
576 * try using vfs_mkdir. Just a thought.
577 */
578static int create_default_group(struct config_group *parent_group,
579 struct config_group *group)
580{
581 int ret;
582 struct qstr name;
583 struct configfs_dirent *sd;
584 /* We trust the caller holds a reference to parent */
585 struct dentry *child, *parent = parent_group->cg_item.ci_dentry;
586
587 if (!group->cg_item.ci_name)
588 group->cg_item.ci_name = group->cg_item.ci_namebuf;
589 name.name = group->cg_item.ci_name;
590 name.len = strlen(name.name);
591 name.hash = full_name_hash(name.name, name.len);
592
593 ret = -ENOMEM;
594 child = d_alloc(parent, &name);
595 if (child) {
596 d_add(child, NULL);
597
598 ret = configfs_attach_group(&parent_group->cg_item,
599 &group->cg_item, child);
600 if (!ret) {
601 sd = child->d_fsdata;
602 sd->s_type |= CONFIGFS_USET_DEFAULT;
603 } else {
604 d_delete(child);
605 dput(child);
606 }
607 }
608
609 return ret;
610}
611
612static int populate_groups(struct config_group *group)
613{
614 struct config_group *new_group;
615 struct dentry *dentry = group->cg_item.ci_dentry;
616 int ret = 0;
617 int i;
618
Eric Sesterhenncbca6922006-03-23 00:36:54 +0100619 if (group->default_groups) {
Joel Beckereed7a0d2006-04-11 21:37:20 -0700620 /*
621 * FYI, we're faking mkdir here
Joel Becker7063fbf2005-12-15 14:29:43 -0800622 * I'm not sure we need this semaphore, as we're called
623 * from our parent's mkdir. That holds our parent's
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800624 * i_mutex, so afaik lookup cannot continue through our
Joel Becker7063fbf2005-12-15 14:29:43 -0800625 * parent to find us, let alone mess with our tree.
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800626 * That said, taking our i_mutex is closer to mkdir
Joel Beckereed7a0d2006-04-11 21:37:20 -0700627 * emulation, and shouldn't hurt.
628 */
Joonwoo Parkba611ed2007-12-26 12:09:57 +0900629 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_CHILD);
Joel Becker7063fbf2005-12-15 14:29:43 -0800630
631 for (i = 0; group->default_groups[i]; i++) {
632 new_group = group->default_groups[i];
633
634 ret = create_default_group(group, new_group);
635 if (ret)
636 break;
637 }
638
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800639 mutex_unlock(&dentry->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -0800640 }
641
642 if (ret)
643 detach_groups(group);
644
645 return ret;
646}
647
648/*
649 * All of link_obj/unlink_obj/link_group/unlink_group require that
Joel Beckere6bd07a2007-07-06 23:33:17 -0700650 * subsys->su_mutex is held.
Joel Becker7063fbf2005-12-15 14:29:43 -0800651 */
652
653static void unlink_obj(struct config_item *item)
654{
655 struct config_group *group;
656
657 group = item->ci_group;
658 if (group) {
659 list_del_init(&item->ci_entry);
660
661 item->ci_group = NULL;
662 item->ci_parent = NULL;
Joel Beckereed7a0d2006-04-11 21:37:20 -0700663
664 /* Drop the reference for ci_entry */
Joel Becker7063fbf2005-12-15 14:29:43 -0800665 config_item_put(item);
666
Joel Beckereed7a0d2006-04-11 21:37:20 -0700667 /* Drop the reference for ci_parent */
Joel Becker7063fbf2005-12-15 14:29:43 -0800668 config_group_put(group);
669 }
670}
671
672static void link_obj(struct config_item *parent_item, struct config_item *item)
673{
Joel Beckereed7a0d2006-04-11 21:37:20 -0700674 /*
675 * Parent seems redundant with group, but it makes certain
676 * traversals much nicer.
677 */
Joel Becker7063fbf2005-12-15 14:29:43 -0800678 item->ci_parent = parent_item;
Joel Beckereed7a0d2006-04-11 21:37:20 -0700679
680 /*
681 * We hold a reference on the parent for the child's ci_parent
682 * link.
683 */
Joel Becker7063fbf2005-12-15 14:29:43 -0800684 item->ci_group = config_group_get(to_config_group(parent_item));
685 list_add_tail(&item->ci_entry, &item->ci_group->cg_children);
686
Joel Beckereed7a0d2006-04-11 21:37:20 -0700687 /*
688 * We hold a reference on the child for ci_entry on the parent's
689 * cg_children
690 */
Joel Becker7063fbf2005-12-15 14:29:43 -0800691 config_item_get(item);
692}
693
694static void unlink_group(struct config_group *group)
695{
696 int i;
697 struct config_group *new_group;
698
699 if (group->default_groups) {
700 for (i = 0; group->default_groups[i]; i++) {
701 new_group = group->default_groups[i];
702 unlink_group(new_group);
703 }
704 }
705
706 group->cg_subsys = NULL;
707 unlink_obj(&group->cg_item);
708}
709
710static void link_group(struct config_group *parent_group, struct config_group *group)
711{
712 int i;
713 struct config_group *new_group;
714 struct configfs_subsystem *subsys = NULL; /* gcc is a turd */
715
716 link_obj(&parent_group->cg_item, &group->cg_item);
717
718 if (parent_group->cg_subsys)
719 subsys = parent_group->cg_subsys;
720 else if (configfs_is_root(&parent_group->cg_item))
721 subsys = to_configfs_subsystem(group);
722 else
723 BUG();
724 group->cg_subsys = subsys;
725
726 if (group->default_groups) {
727 for (i = 0; group->default_groups[i]; i++) {
728 new_group = group->default_groups[i];
729 link_group(group, new_group);
730 }
731 }
732}
733
734/*
735 * The goal is that configfs_attach_item() (and
736 * configfs_attach_group()) can be called from either the VFS or this
737 * module. That is, they assume that the items have been created,
738 * the dentry allocated, and the dcache is all ready to go.
739 *
740 * If they fail, they must clean up after themselves as if they
741 * had never been called. The caller (VFS or local function) will
742 * handle cleaning up the dcache bits.
743 *
744 * configfs_detach_group() and configfs_detach_item() behave similarly on
745 * the way out. They assume that the proper semaphores are held, they
746 * clean up the configfs items, and they expect their callers will
747 * handle the dcache bits.
748 */
749static int configfs_attach_item(struct config_item *parent_item,
750 struct config_item *item,
751 struct dentry *dentry)
752{
753 int ret;
754
755 ret = configfs_create_dir(item, dentry);
756 if (!ret) {
757 ret = populate_attrs(item);
758 if (ret) {
759 configfs_remove_dir(item);
760 d_delete(dentry);
761 }
762 }
763
764 return ret;
765}
766
767static void configfs_detach_item(struct config_item *item)
768{
769 detach_attrs(item);
770 configfs_remove_dir(item);
771}
772
773static int configfs_attach_group(struct config_item *parent_item,
774 struct config_item *item,
775 struct dentry *dentry)
776{
777 int ret;
778 struct configfs_dirent *sd;
779
780 ret = configfs_attach_item(parent_item, item, dentry);
781 if (!ret) {
782 sd = dentry->d_fsdata;
783 sd->s_type |= CONFIGFS_USET_DIR;
784
785 ret = populate_groups(to_config_group(item));
786 if (ret) {
787 configfs_detach_item(item);
788 d_delete(dentry);
789 }
790 }
791
792 return ret;
793}
794
795static void configfs_detach_group(struct config_item *item)
796{
797 detach_groups(to_config_group(item));
798 configfs_detach_item(item);
799}
800
801/*
Joel Becker299894c2006-10-06 17:33:23 -0700802 * After the item has been detached from the filesystem view, we are
803 * ready to tear it out of the hierarchy. Notify the client before
804 * we do that so they can perform any cleanup that requires
805 * navigating the hierarchy. A client does not need to provide this
806 * callback. The subsystem semaphore MUST be held by the caller, and
807 * references must be valid for both items. It also assumes the
808 * caller has validated ci_type.
809 */
810static void client_disconnect_notify(struct config_item *parent_item,
811 struct config_item *item)
812{
813 struct config_item_type *type;
814
815 type = parent_item->ci_type;
816 BUG_ON(!type);
817
818 if (type->ct_group_ops && type->ct_group_ops->disconnect_notify)
819 type->ct_group_ops->disconnect_notify(to_config_group(parent_item),
820 item);
821}
822
823/*
Joel Becker7063fbf2005-12-15 14:29:43 -0800824 * Drop the initial reference from make_item()/make_group()
825 * This function assumes that reference is held on item
826 * and that item holds a valid reference to the parent. Also, it
827 * assumes the caller has validated ci_type.
828 */
829static void client_drop_item(struct config_item *parent_item,
830 struct config_item *item)
831{
832 struct config_item_type *type;
833
834 type = parent_item->ci_type;
835 BUG_ON(!type);
836
Joel Beckereed7a0d2006-04-11 21:37:20 -0700837 /*
838 * If ->drop_item() exists, it is responsible for the
839 * config_item_put().
840 */
Joel Becker7063fbf2005-12-15 14:29:43 -0800841 if (type->ct_group_ops && type->ct_group_ops->drop_item)
842 type->ct_group_ops->drop_item(to_config_group(parent_item),
Joel Becker299894c2006-10-06 17:33:23 -0700843 item);
Joel Becker7063fbf2005-12-15 14:29:43 -0800844 else
845 config_item_put(item);
846}
847
Joel Becker631d1fe2007-06-18 18:06:09 -0700848#ifdef DEBUG
849static void configfs_dump_one(struct configfs_dirent *sd, int level)
850{
851 printk(KERN_INFO "%*s\"%s\":\n", level, " ", configfs_get_name(sd));
852
853#define type_print(_type) if (sd->s_type & _type) printk(KERN_INFO "%*s %s\n", level, " ", #_type);
854 type_print(CONFIGFS_ROOT);
855 type_print(CONFIGFS_DIR);
856 type_print(CONFIGFS_ITEM_ATTR);
857 type_print(CONFIGFS_ITEM_LINK);
858 type_print(CONFIGFS_USET_DIR);
859 type_print(CONFIGFS_USET_DEFAULT);
860 type_print(CONFIGFS_USET_DROPPING);
861#undef type_print
862}
863
864static int configfs_dump(struct configfs_dirent *sd, int level)
865{
866 struct configfs_dirent *child_sd;
867 int ret = 0;
868
869 configfs_dump_one(sd, level);
870
871 if (!(sd->s_type & (CONFIGFS_DIR|CONFIGFS_ROOT)))
872 return 0;
873
874 list_for_each_entry(child_sd, &sd->s_children, s_sibling) {
875 ret = configfs_dump(child_sd, level + 2);
876 if (ret)
877 break;
878 }
879
880 return ret;
881}
882#endif
883
884
885/*
886 * configfs_depend_item() and configfs_undepend_item()
887 *
888 * WARNING: Do not call these from a configfs callback!
889 *
890 * This describes these functions and their helpers.
891 *
892 * Allow another kernel system to depend on a config_item. If this
893 * happens, the item cannot go away until the dependant can live without
894 * it. The idea is to give client modules as simple an interface as
895 * possible. When a system asks them to depend on an item, they just
896 * call configfs_depend_item(). If the item is live and the client
897 * driver is in good shape, we'll happily do the work for them.
898 *
899 * Why is the locking complex? Because configfs uses the VFS to handle
900 * all locking, but this function is called outside the normal
901 * VFS->configfs path. So it must take VFS locks to prevent the
902 * VFS->configfs stuff (configfs_mkdir(), configfs_rmdir(), etc). This is
903 * why you can't call these functions underneath configfs callbacks.
904 *
905 * Note, btw, that this can be called at *any* time, even when a configfs
906 * subsystem isn't registered, or when configfs is loading or unloading.
907 * Just like configfs_register_subsystem(). So we take the same
908 * precautions. We pin the filesystem. We lock each i_mutex _in_order_
909 * on our way down the tree. If we can find the target item in the
910 * configfs tree, it must be part of the subsystem tree as well, so we
911 * do not need the subsystem semaphore. Holding the i_mutex chain locks
912 * out mkdir() and rmdir(), who might be racing us.
913 */
914
915/*
916 * configfs_depend_prep()
917 *
918 * Only subdirectories count here. Files (CONFIGFS_NOT_PINNED) are
919 * attributes. This is similar but not the same to configfs_detach_prep().
920 * Note that configfs_detach_prep() expects the parent to be locked when it
921 * is called, but we lock the parent *inside* configfs_depend_prep(). We
922 * do that so we can unlock it if we find nothing.
923 *
924 * Here we do a depth-first search of the dentry hierarchy looking for
925 * our object. We take i_mutex on each step of the way down. IT IS
926 * ESSENTIAL THAT i_mutex LOCKING IS ORDERED. If we come back up a branch,
927 * we'll drop the i_mutex.
928 *
929 * If the target is not found, -ENOENT is bubbled up and we have released
930 * all locks. If the target was found, the locks will be cleared by
931 * configfs_depend_rollback().
932 *
933 * This adds a requirement that all config_items be unique!
934 *
935 * This is recursive because the locking traversal is tricky. There isn't
936 * much on the stack, though, so folks that need this function - be careful
937 * about your stack! Patches will be accepted to make it iterative.
938 */
939static int configfs_depend_prep(struct dentry *origin,
940 struct config_item *target)
941{
942 struct configfs_dirent *child_sd, *sd = origin->d_fsdata;
943 int ret = 0;
944
945 BUG_ON(!origin || !sd);
946
947 /* Lock this guy on the way down */
948 mutex_lock(&sd->s_dentry->d_inode->i_mutex);
949 if (sd->s_element == target) /* Boo-yah */
950 goto out;
951
952 list_for_each_entry(child_sd, &sd->s_children, s_sibling) {
953 if (child_sd->s_type & CONFIGFS_DIR) {
954 ret = configfs_depend_prep(child_sd->s_dentry,
955 target);
956 if (!ret)
957 goto out; /* Child path boo-yah */
958 }
959 }
960
961 /* We looped all our children and didn't find target */
962 mutex_unlock(&sd->s_dentry->d_inode->i_mutex);
963 ret = -ENOENT;
964
965out:
966 return ret;
967}
968
969/*
970 * This is ONLY called if configfs_depend_prep() did its job. So we can
971 * trust the entire path from item back up to origin.
972 *
973 * We walk backwards from item, unlocking each i_mutex. We finish by
974 * unlocking origin.
975 */
976static void configfs_depend_rollback(struct dentry *origin,
977 struct config_item *item)
978{
979 struct dentry *dentry = item->ci_dentry;
980
981 while (dentry != origin) {
982 mutex_unlock(&dentry->d_inode->i_mutex);
983 dentry = dentry->d_parent;
984 }
985
986 mutex_unlock(&origin->d_inode->i_mutex);
987}
988
989int configfs_depend_item(struct configfs_subsystem *subsys,
990 struct config_item *target)
991{
992 int ret;
993 struct configfs_dirent *p, *root_sd, *subsys_sd = NULL;
994 struct config_item *s_item = &subsys->su_group.cg_item;
995
996 /*
997 * Pin the configfs filesystem. This means we can safely access
998 * the root of the configfs filesystem.
999 */
1000 ret = configfs_pin_fs();
1001 if (ret)
1002 return ret;
1003
1004 /*
1005 * Next, lock the root directory. We're going to check that the
1006 * subsystem is really registered, and so we need to lock out
1007 * configfs_[un]register_subsystem().
1008 */
1009 mutex_lock(&configfs_sb->s_root->d_inode->i_mutex);
1010
1011 root_sd = configfs_sb->s_root->d_fsdata;
1012
1013 list_for_each_entry(p, &root_sd->s_children, s_sibling) {
1014 if (p->s_type & CONFIGFS_DIR) {
1015 if (p->s_element == s_item) {
1016 subsys_sd = p;
1017 break;
1018 }
1019 }
1020 }
1021
1022 if (!subsys_sd) {
1023 ret = -ENOENT;
1024 goto out_unlock_fs;
1025 }
1026
1027 /* Ok, now we can trust subsys/s_item */
1028
1029 /* Scan the tree, locking i_mutex recursively, return 0 if found */
1030 ret = configfs_depend_prep(subsys_sd->s_dentry, target);
1031 if (ret)
1032 goto out_unlock_fs;
1033
1034 /* We hold all i_mutexes from the subsystem down to the target */
1035 p = target->ci_dentry->d_fsdata;
1036 p->s_dependent_count += 1;
1037
1038 configfs_depend_rollback(subsys_sd->s_dentry, target);
1039
1040out_unlock_fs:
1041 mutex_unlock(&configfs_sb->s_root->d_inode->i_mutex);
1042
1043 /*
1044 * If we succeeded, the fs is pinned via other methods. If not,
1045 * we're done with it anyway. So release_fs() is always right.
1046 */
1047 configfs_release_fs();
1048
1049 return ret;
1050}
1051EXPORT_SYMBOL(configfs_depend_item);
1052
1053/*
1054 * Release the dependent linkage. This is much simpler than
1055 * configfs_depend_item() because we know that that the client driver is
1056 * pinned, thus the subsystem is pinned, and therefore configfs is pinned.
1057 */
1058void configfs_undepend_item(struct configfs_subsystem *subsys,
1059 struct config_item *target)
1060{
1061 struct configfs_dirent *sd;
1062
1063 /*
1064 * Since we can trust everything is pinned, we just need i_mutex
1065 * on the item.
1066 */
1067 mutex_lock(&target->ci_dentry->d_inode->i_mutex);
1068
1069 sd = target->ci_dentry->d_fsdata;
1070 BUG_ON(sd->s_dependent_count < 1);
1071
1072 sd->s_dependent_count -= 1;
1073
1074 /*
1075 * After this unlock, we cannot trust the item to stay alive!
1076 * DO NOT REFERENCE item after this unlock.
1077 */
1078 mutex_unlock(&target->ci_dentry->d_inode->i_mutex);
1079}
1080EXPORT_SYMBOL(configfs_undepend_item);
Joel Becker7063fbf2005-12-15 14:29:43 -08001081
1082static int configfs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1083{
Joel Beckera6795e92008-07-17 15:21:29 -07001084 int ret = 0;
1085 int module_got = 0;
1086 struct config_group *group = NULL;
1087 struct config_item *item = NULL;
Joel Becker7063fbf2005-12-15 14:29:43 -08001088 struct config_item *parent_item;
1089 struct configfs_subsystem *subsys;
1090 struct configfs_dirent *sd;
1091 struct config_item_type *type;
Joel Beckereed7a0d2006-04-11 21:37:20 -07001092 struct module *owner = NULL;
Joel Becker7063fbf2005-12-15 14:29:43 -08001093 char *name;
1094
Joel Becker84efad12006-03-27 18:46:09 -08001095 if (dentry->d_parent == configfs_sb->s_root) {
1096 ret = -EPERM;
1097 goto out;
1098 }
Joel Becker7063fbf2005-12-15 14:29:43 -08001099
1100 sd = dentry->d_parent->d_fsdata;
Louis Rilling2a109f22008-07-04 16:56:05 +02001101
1102 /*
1103 * Fake invisibility if dir belongs to a group/default groups hierarchy
1104 * being attached
1105 */
1106 if (!configfs_dirent_is_ready(sd)) {
1107 ret = -ENOENT;
1108 goto out;
1109 }
1110
Joel Becker84efad12006-03-27 18:46:09 -08001111 if (!(sd->s_type & CONFIGFS_USET_DIR)) {
1112 ret = -EPERM;
1113 goto out;
1114 }
Joel Becker7063fbf2005-12-15 14:29:43 -08001115
Joel Becker84efad12006-03-27 18:46:09 -08001116 /* Get a working ref for the duration of this function */
Joel Becker7063fbf2005-12-15 14:29:43 -08001117 parent_item = configfs_get_config_item(dentry->d_parent);
1118 type = parent_item->ci_type;
1119 subsys = to_config_group(parent_item)->cg_subsys;
1120 BUG_ON(!subsys);
1121
1122 if (!type || !type->ct_group_ops ||
1123 (!type->ct_group_ops->make_group &&
1124 !type->ct_group_ops->make_item)) {
Joel Becker84efad12006-03-27 18:46:09 -08001125 ret = -EPERM; /* Lack-of-mkdir returns -EPERM */
1126 goto out_put;
Joel Becker7063fbf2005-12-15 14:29:43 -08001127 }
1128
1129 name = kmalloc(dentry->d_name.len + 1, GFP_KERNEL);
1130 if (!name) {
Joel Becker84efad12006-03-27 18:46:09 -08001131 ret = -ENOMEM;
1132 goto out_put;
Joel Becker7063fbf2005-12-15 14:29:43 -08001133 }
Joel Becker84efad12006-03-27 18:46:09 -08001134
Joel Becker7063fbf2005-12-15 14:29:43 -08001135 snprintf(name, dentry->d_name.len + 1, "%s", dentry->d_name.name);
1136
Joel Beckere6bd07a2007-07-06 23:33:17 -07001137 mutex_lock(&subsys->su_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001138 if (type->ct_group_ops->make_group) {
Joel Beckerf89ab862008-07-17 14:53:48 -07001139 group = type->ct_group_ops->make_group(to_config_group(parent_item), name);
Joel Beckera6795e92008-07-17 15:21:29 -07001140 if (!group)
1141 group = ERR_PTR(-ENOMEM);
1142 if (!IS_ERR(group)) {
Joel Becker7063fbf2005-12-15 14:29:43 -08001143 link_group(to_config_group(parent_item), group);
1144 item = &group->cg_item;
Joel Beckera6795e92008-07-17 15:21:29 -07001145 } else
1146 ret = PTR_ERR(group);
Joel Becker7063fbf2005-12-15 14:29:43 -08001147 } else {
Joel Beckerf89ab862008-07-17 14:53:48 -07001148 item = type->ct_group_ops->make_item(to_config_group(parent_item), name);
Joel Beckera6795e92008-07-17 15:21:29 -07001149 if (!item)
1150 item = ERR_PTR(-ENOMEM);
1151 if (!IS_ERR(item))
Joel Becker7063fbf2005-12-15 14:29:43 -08001152 link_obj(parent_item, item);
Joel Beckera6795e92008-07-17 15:21:29 -07001153 else
1154 ret = PTR_ERR(item);
Joel Becker7063fbf2005-12-15 14:29:43 -08001155 }
Joel Beckere6bd07a2007-07-06 23:33:17 -07001156 mutex_unlock(&subsys->su_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001157
1158 kfree(name);
Joel Beckera6795e92008-07-17 15:21:29 -07001159 if (ret) {
Joel Beckereed7a0d2006-04-11 21:37:20 -07001160 /*
Joel Beckerdacdd0e2008-07-17 16:54:19 -07001161 * If ret != 0, then link_obj() was never called.
Joel Beckereed7a0d2006-04-11 21:37:20 -07001162 * There are no extra references to clean up.
1163 */
Joel Becker84efad12006-03-27 18:46:09 -08001164 goto out_put;
Joel Becker7063fbf2005-12-15 14:29:43 -08001165 }
1166
Joel Beckereed7a0d2006-04-11 21:37:20 -07001167 /*
1168 * link_obj() has been called (via link_group() for groups).
1169 * From here on out, errors must clean that up.
1170 */
1171
Joel Becker7063fbf2005-12-15 14:29:43 -08001172 type = item->ci_type;
Joel Beckereed7a0d2006-04-11 21:37:20 -07001173 if (!type) {
1174 ret = -EINVAL;
1175 goto out_unlink;
1176 }
Joel Becker7063fbf2005-12-15 14:29:43 -08001177
Joel Beckereed7a0d2006-04-11 21:37:20 -07001178 owner = type->ct_owner;
1179 if (!try_module_get(owner)) {
1180 ret = -EINVAL;
1181 goto out_unlink;
1182 }
Joel Becker7063fbf2005-12-15 14:29:43 -08001183
Joel Beckereed7a0d2006-04-11 21:37:20 -07001184 /*
1185 * I hate doing it this way, but if there is
1186 * an error, module_put() probably should
1187 * happen after any cleanup.
1188 */
1189 module_got = 1;
1190
Louis Rilling6d8344b2008-06-16 19:01:02 +02001191 /*
1192 * Make racing rmdir() fail if it did not tag parent with
1193 * CONFIGFS_USET_DROPPING
1194 * Note: if CONFIGFS_USET_DROPPING is already set, attach_group() will
1195 * fail and let rmdir() terminate correctly
1196 */
1197 spin_lock(&configfs_dirent_lock);
1198 /* This will make configfs_detach_prep() fail */
1199 sd->s_type |= CONFIGFS_USET_IN_MKDIR;
1200 spin_unlock(&configfs_dirent_lock);
1201
Joel Beckereed7a0d2006-04-11 21:37:20 -07001202 if (group)
1203 ret = configfs_attach_group(parent_item, item, dentry);
1204 else
1205 ret = configfs_attach_item(parent_item, item, dentry);
1206
Louis Rilling6d8344b2008-06-16 19:01:02 +02001207 spin_lock(&configfs_dirent_lock);
1208 sd->s_type &= ~CONFIGFS_USET_IN_MKDIR;
Louis Rilling2a109f22008-07-04 16:56:05 +02001209 if (!ret)
1210 configfs_dir_set_ready(dentry->d_fsdata);
Louis Rilling6d8344b2008-06-16 19:01:02 +02001211 spin_unlock(&configfs_dirent_lock);
1212
Joel Beckereed7a0d2006-04-11 21:37:20 -07001213out_unlink:
1214 if (ret) {
1215 /* Tear down everything we built up */
Joel Beckere6bd07a2007-07-06 23:33:17 -07001216 mutex_lock(&subsys->su_mutex);
Joel Becker299894c2006-10-06 17:33:23 -07001217
1218 client_disconnect_notify(parent_item, item);
Joel Beckereed7a0d2006-04-11 21:37:20 -07001219 if (group)
1220 unlink_group(group);
1221 else
1222 unlink_obj(item);
1223 client_drop_item(parent_item, item);
Joel Becker299894c2006-10-06 17:33:23 -07001224
Joel Beckere6bd07a2007-07-06 23:33:17 -07001225 mutex_unlock(&subsys->su_mutex);
Joel Beckereed7a0d2006-04-11 21:37:20 -07001226
1227 if (module_got)
1228 module_put(owner);
Joel Becker7063fbf2005-12-15 14:29:43 -08001229 }
1230
Joel Becker84efad12006-03-27 18:46:09 -08001231out_put:
1232 /*
Joel Beckereed7a0d2006-04-11 21:37:20 -07001233 * link_obj()/link_group() took a reference from child->parent,
1234 * so the parent is safely pinned. We can drop our working
1235 * reference.
Joel Becker84efad12006-03-27 18:46:09 -08001236 */
1237 config_item_put(parent_item);
1238
1239out:
Joel Becker7063fbf2005-12-15 14:29:43 -08001240 return ret;
1241}
1242
1243static int configfs_rmdir(struct inode *dir, struct dentry *dentry)
1244{
1245 struct config_item *parent_item;
1246 struct config_item *item;
1247 struct configfs_subsystem *subsys;
1248 struct configfs_dirent *sd;
1249 struct module *owner = NULL;
1250 int ret;
1251
1252 if (dentry->d_parent == configfs_sb->s_root)
1253 return -EPERM;
1254
1255 sd = dentry->d_fsdata;
1256 if (sd->s_type & CONFIGFS_USET_DEFAULT)
1257 return -EPERM;
1258
Joel Becker631d1fe2007-06-18 18:06:09 -07001259 /*
1260 * Here's where we check for dependents. We're protected by
1261 * i_mutex.
1262 */
1263 if (sd->s_dependent_count)
1264 return -EBUSY;
1265
Joel Becker84efad12006-03-27 18:46:09 -08001266 /* Get a working ref until we have the child */
Joel Becker7063fbf2005-12-15 14:29:43 -08001267 parent_item = configfs_get_config_item(dentry->d_parent);
1268 subsys = to_config_group(parent_item)->cg_subsys;
1269 BUG_ON(!subsys);
1270
1271 if (!parent_item->ci_type) {
1272 config_item_put(parent_item);
1273 return -EINVAL;
1274 }
1275
Louis Rilling9a73d782008-06-20 14:09:22 +02001276 /*
1277 * Ensure that no racing symlink() will make detach_prep() fail while
1278 * the new link is temporarily attached
1279 */
1280 mutex_lock(&configfs_symlink_mutex);
Louis Rillingb3e76af2008-06-16 19:01:01 +02001281 spin_lock(&configfs_dirent_lock);
Louis Rilling6d8344b2008-06-16 19:01:02 +02001282 do {
1283 struct mutex *wait_mutex;
1284
1285 ret = configfs_detach_prep(dentry, &wait_mutex);
1286 if (ret) {
1287 configfs_detach_rollback(dentry);
1288 spin_unlock(&configfs_dirent_lock);
Louis Rilling9a73d782008-06-20 14:09:22 +02001289 mutex_unlock(&configfs_symlink_mutex);
Louis Rilling6d8344b2008-06-16 19:01:02 +02001290 if (ret != -EAGAIN) {
1291 config_item_put(parent_item);
1292 return ret;
1293 }
1294
1295 /* Wait until the racing operation terminates */
1296 mutex_lock(wait_mutex);
1297 mutex_unlock(wait_mutex);
1298
Louis Rilling9a73d782008-06-20 14:09:22 +02001299 mutex_lock(&configfs_symlink_mutex);
Louis Rilling6d8344b2008-06-16 19:01:02 +02001300 spin_lock(&configfs_dirent_lock);
1301 }
1302 } while (ret == -EAGAIN);
Louis Rillingb3e76af2008-06-16 19:01:01 +02001303 spin_unlock(&configfs_dirent_lock);
Louis Rilling9a73d782008-06-20 14:09:22 +02001304 mutex_unlock(&configfs_symlink_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001305
Joel Becker84efad12006-03-27 18:46:09 -08001306 /* Get a working ref for the duration of this function */
Joel Becker7063fbf2005-12-15 14:29:43 -08001307 item = configfs_get_config_item(dentry);
1308
1309 /* Drop reference from above, item already holds one. */
1310 config_item_put(parent_item);
1311
1312 if (item->ci_type)
1313 owner = item->ci_type->ct_owner;
1314
1315 if (sd->s_type & CONFIGFS_USET_DIR) {
1316 configfs_detach_group(item);
1317
Joel Beckere6bd07a2007-07-06 23:33:17 -07001318 mutex_lock(&subsys->su_mutex);
Joel Becker299894c2006-10-06 17:33:23 -07001319 client_disconnect_notify(parent_item, item);
Joel Becker7063fbf2005-12-15 14:29:43 -08001320 unlink_group(to_config_group(item));
1321 } else {
1322 configfs_detach_item(item);
1323
Joel Beckere6bd07a2007-07-06 23:33:17 -07001324 mutex_lock(&subsys->su_mutex);
Joel Becker299894c2006-10-06 17:33:23 -07001325 client_disconnect_notify(parent_item, item);
Joel Becker7063fbf2005-12-15 14:29:43 -08001326 unlink_obj(item);
1327 }
1328
1329 client_drop_item(parent_item, item);
Joel Beckere6bd07a2007-07-06 23:33:17 -07001330 mutex_unlock(&subsys->su_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001331
1332 /* Drop our reference from above */
1333 config_item_put(item);
1334
1335 module_put(owner);
1336
1337 return 0;
1338}
1339
Arjan van de Ven754661f2007-02-12 00:55:38 -08001340const struct inode_operations configfs_dir_inode_operations = {
Joel Becker7063fbf2005-12-15 14:29:43 -08001341 .mkdir = configfs_mkdir,
1342 .rmdir = configfs_rmdir,
1343 .symlink = configfs_symlink,
1344 .unlink = configfs_unlink,
1345 .lookup = configfs_lookup,
Joel Becker3d0f89b2006-01-25 13:31:07 -08001346 .setattr = configfs_setattr,
Joel Becker7063fbf2005-12-15 14:29:43 -08001347};
1348
1349#if 0
1350int configfs_rename_dir(struct config_item * item, const char *new_name)
1351{
1352 int error = 0;
1353 struct dentry * new_dentry, * parent;
1354
1355 if (!strcmp(config_item_name(item), new_name))
1356 return -EINVAL;
1357
1358 if (!item->parent)
1359 return -EINVAL;
1360
1361 down_write(&configfs_rename_sem);
1362 parent = item->parent->dentry;
1363
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001364 mutex_lock(&parent->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001365
1366 new_dentry = lookup_one_len(new_name, parent, strlen(new_name));
1367 if (!IS_ERR(new_dentry)) {
Joel Beckere7515d02006-03-10 11:42:30 -08001368 if (!new_dentry->d_inode) {
Joel Becker7063fbf2005-12-15 14:29:43 -08001369 error = config_item_set_name(item, "%s", new_name);
1370 if (!error) {
1371 d_add(new_dentry, NULL);
1372 d_move(item->dentry, new_dentry);
1373 }
1374 else
1375 d_delete(new_dentry);
1376 } else
1377 error = -EEXIST;
1378 dput(new_dentry);
1379 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001380 mutex_unlock(&parent->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001381 up_write(&configfs_rename_sem);
1382
1383 return error;
1384}
1385#endif
1386
1387static int configfs_dir_open(struct inode *inode, struct file *file)
1388{
Josef "Jeff" Sipek867fa492006-12-08 02:36:47 -08001389 struct dentry * dentry = file->f_path.dentry;
Joel Becker7063fbf2005-12-15 14:29:43 -08001390 struct configfs_dirent * parent_sd = dentry->d_fsdata;
Louis Rilling2a109f22008-07-04 16:56:05 +02001391 int err;
Joel Becker7063fbf2005-12-15 14:29:43 -08001392
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001393 mutex_lock(&dentry->d_inode->i_mutex);
Louis Rilling2a109f22008-07-04 16:56:05 +02001394 /*
1395 * Fake invisibility if dir belongs to a group/default groups hierarchy
1396 * being attached
1397 */
1398 err = -ENOENT;
1399 if (configfs_dirent_is_ready(parent_sd)) {
1400 file->private_data = configfs_new_dirent(parent_sd, NULL);
1401 if (IS_ERR(file->private_data))
1402 err = PTR_ERR(file->private_data);
1403 else
1404 err = 0;
1405 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001406 mutex_unlock(&dentry->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001407
Louis Rilling2a109f22008-07-04 16:56:05 +02001408 return err;
Joel Becker7063fbf2005-12-15 14:29:43 -08001409}
1410
1411static int configfs_dir_close(struct inode *inode, struct file *file)
1412{
Josef "Jeff" Sipek867fa492006-12-08 02:36:47 -08001413 struct dentry * dentry = file->f_path.dentry;
Joel Becker7063fbf2005-12-15 14:29:43 -08001414 struct configfs_dirent * cursor = file->private_data;
1415
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001416 mutex_lock(&dentry->d_inode->i_mutex);
Louis Rilling6f610762008-06-16 19:00:58 +02001417 spin_lock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -08001418 list_del_init(&cursor->s_sibling);
Louis Rilling6f610762008-06-16 19:00:58 +02001419 spin_unlock(&configfs_dirent_lock);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001420 mutex_unlock(&dentry->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001421
1422 release_configfs_dirent(cursor);
1423
1424 return 0;
1425}
1426
1427/* Relationship between s_mode and the DT_xxx types */
1428static inline unsigned char dt_type(struct configfs_dirent *sd)
1429{
1430 return (sd->s_mode >> 12) & 15;
1431}
1432
1433static int configfs_readdir(struct file * filp, void * dirent, filldir_t filldir)
1434{
Josef "Jeff" Sipek867fa492006-12-08 02:36:47 -08001435 struct dentry *dentry = filp->f_path.dentry;
Joel Becker7063fbf2005-12-15 14:29:43 -08001436 struct configfs_dirent * parent_sd = dentry->d_fsdata;
1437 struct configfs_dirent *cursor = filp->private_data;
1438 struct list_head *p, *q = &cursor->s_sibling;
1439 ino_t ino;
1440 int i = filp->f_pos;
1441
1442 switch (i) {
1443 case 0:
1444 ino = dentry->d_inode->i_ino;
1445 if (filldir(dirent, ".", 1, i, ino, DT_DIR) < 0)
1446 break;
1447 filp->f_pos++;
1448 i++;
1449 /* fallthrough */
1450 case 1:
1451 ino = parent_ino(dentry);
1452 if (filldir(dirent, "..", 2, i, ino, DT_DIR) < 0)
1453 break;
1454 filp->f_pos++;
1455 i++;
1456 /* fallthrough */
1457 default:
1458 if (filp->f_pos == 2) {
Louis Rilling6f610762008-06-16 19:00:58 +02001459 spin_lock(&configfs_dirent_lock);
Akinobu Mitaf1166292006-06-26 00:24:46 -07001460 list_move(q, &parent_sd->s_children);
Louis Rilling6f610762008-06-16 19:00:58 +02001461 spin_unlock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -08001462 }
1463 for (p=q->next; p!= &parent_sd->s_children; p=p->next) {
1464 struct configfs_dirent *next;
1465 const char * name;
1466 int len;
1467
1468 next = list_entry(p, struct configfs_dirent,
1469 s_sibling);
1470 if (!next->s_element)
1471 continue;
1472
1473 name = configfs_get_name(next);
1474 len = strlen(name);
1475 if (next->s_dentry)
1476 ino = next->s_dentry->d_inode->i_ino;
1477 else
1478 ino = iunique(configfs_sb, 2);
1479
1480 if (filldir(dirent, name, len, filp->f_pos, ino,
1481 dt_type(next)) < 0)
1482 return 0;
1483
Louis Rilling6f610762008-06-16 19:00:58 +02001484 spin_lock(&configfs_dirent_lock);
Akinobu Mitaf1166292006-06-26 00:24:46 -07001485 list_move(q, p);
Louis Rilling6f610762008-06-16 19:00:58 +02001486 spin_unlock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -08001487 p = q;
1488 filp->f_pos++;
1489 }
1490 }
1491 return 0;
1492}
1493
1494static loff_t configfs_dir_lseek(struct file * file, loff_t offset, int origin)
1495{
Josef "Jeff" Sipek867fa492006-12-08 02:36:47 -08001496 struct dentry * dentry = file->f_path.dentry;
Joel Becker7063fbf2005-12-15 14:29:43 -08001497
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001498 mutex_lock(&dentry->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001499 switch (origin) {
1500 case 1:
1501 offset += file->f_pos;
1502 case 0:
1503 if (offset >= 0)
1504 break;
1505 default:
Josef "Jeff" Sipek867fa492006-12-08 02:36:47 -08001506 mutex_unlock(&file->f_path.dentry->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001507 return -EINVAL;
1508 }
1509 if (offset != file->f_pos) {
1510 file->f_pos = offset;
1511 if (file->f_pos >= 2) {
1512 struct configfs_dirent *sd = dentry->d_fsdata;
1513 struct configfs_dirent *cursor = file->private_data;
1514 struct list_head *p;
1515 loff_t n = file->f_pos - 2;
1516
Louis Rilling6f610762008-06-16 19:00:58 +02001517 spin_lock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -08001518 list_del(&cursor->s_sibling);
1519 p = sd->s_children.next;
1520 while (n && p != &sd->s_children) {
1521 struct configfs_dirent *next;
1522 next = list_entry(p, struct configfs_dirent,
1523 s_sibling);
1524 if (next->s_element)
1525 n--;
1526 p = p->next;
1527 }
1528 list_add_tail(&cursor->s_sibling, p);
Louis Rilling6f610762008-06-16 19:00:58 +02001529 spin_unlock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -08001530 }
1531 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001532 mutex_unlock(&dentry->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001533 return offset;
1534}
1535
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001536const struct file_operations configfs_dir_operations = {
Joel Becker7063fbf2005-12-15 14:29:43 -08001537 .open = configfs_dir_open,
1538 .release = configfs_dir_close,
1539 .llseek = configfs_dir_lseek,
1540 .read = generic_read_dir,
1541 .readdir = configfs_readdir,
1542};
1543
1544int configfs_register_subsystem(struct configfs_subsystem *subsys)
1545{
1546 int err;
1547 struct config_group *group = &subsys->su_group;
1548 struct qstr name;
1549 struct dentry *dentry;
1550 struct configfs_dirent *sd;
1551
1552 err = configfs_pin_fs();
1553 if (err)
1554 return err;
1555
1556 if (!group->cg_item.ci_name)
1557 group->cg_item.ci_name = group->cg_item.ci_namebuf;
1558
1559 sd = configfs_sb->s_root->d_fsdata;
1560 link_group(to_config_group(sd->s_element), group);
1561
Joonwoo Parkba611ed2007-12-26 12:09:57 +09001562 mutex_lock_nested(&configfs_sb->s_root->d_inode->i_mutex,
1563 I_MUTEX_PARENT);
Joel Becker7063fbf2005-12-15 14:29:43 -08001564
1565 name.name = group->cg_item.ci_name;
1566 name.len = strlen(name.name);
1567 name.hash = full_name_hash(name.name, name.len);
1568
1569 err = -ENOMEM;
1570 dentry = d_alloc(configfs_sb->s_root, &name);
Joel Beckerafdf04e2007-03-05 15:49:49 -08001571 if (dentry) {
1572 d_add(dentry, NULL);
Joel Becker7063fbf2005-12-15 14:29:43 -08001573
Joel Beckerafdf04e2007-03-05 15:49:49 -08001574 err = configfs_attach_group(sd->s_element, &group->cg_item,
1575 dentry);
1576 if (err) {
1577 d_delete(dentry);
1578 dput(dentry);
Louis Rilling2a109f22008-07-04 16:56:05 +02001579 } else {
1580 spin_lock(&configfs_dirent_lock);
1581 configfs_dir_set_ready(dentry->d_fsdata);
1582 spin_unlock(&configfs_dirent_lock);
Joel Beckerafdf04e2007-03-05 15:49:49 -08001583 }
1584 }
Joel Becker7063fbf2005-12-15 14:29:43 -08001585
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001586 mutex_unlock(&configfs_sb->s_root->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001587
Joel Beckerafdf04e2007-03-05 15:49:49 -08001588 if (err) {
1589 unlink_group(group);
1590 configfs_release_fs();
Joel Becker7063fbf2005-12-15 14:29:43 -08001591 }
1592
1593 return err;
1594}
1595
1596void configfs_unregister_subsystem(struct configfs_subsystem *subsys)
1597{
1598 struct config_group *group = &subsys->su_group;
1599 struct dentry *dentry = group->cg_item.ci_dentry;
1600
1601 if (dentry->d_parent != configfs_sb->s_root) {
1602 printk(KERN_ERR "configfs: Tried to unregister non-subsystem!\n");
1603 return;
1604 }
1605
Mark Fasheh55ed1602006-10-20 14:55:54 -07001606 mutex_lock_nested(&configfs_sb->s_root->d_inode->i_mutex,
1607 I_MUTEX_PARENT);
1608 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_CHILD);
Louis Rilling9a73d782008-06-20 14:09:22 +02001609 mutex_lock(&configfs_symlink_mutex);
Louis Rillingb3e76af2008-06-16 19:01:01 +02001610 spin_lock(&configfs_dirent_lock);
Louis Rilling6d8344b2008-06-16 19:01:02 +02001611 if (configfs_detach_prep(dentry, NULL)) {
Joel Becker7063fbf2005-12-15 14:29:43 -08001612 printk(KERN_ERR "configfs: Tried to unregister non-empty subsystem!\n");
1613 }
Louis Rillingb3e76af2008-06-16 19:01:01 +02001614 spin_unlock(&configfs_dirent_lock);
Louis Rilling9a73d782008-06-20 14:09:22 +02001615 mutex_unlock(&configfs_symlink_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001616 configfs_detach_group(&group->cg_item);
1617 dentry->d_inode->i_flags |= S_DEAD;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001618 mutex_unlock(&dentry->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001619
1620 d_delete(dentry);
1621
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001622 mutex_unlock(&configfs_sb->s_root->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001623
1624 dput(dentry);
1625
1626 unlink_group(group);
1627 configfs_release_fs();
1628}
1629
1630EXPORT_SYMBOL(configfs_register_subsystem);
1631EXPORT_SYMBOL(configfs_unregister_subsystem);