blob: 4522e0755773cdc1c5a2d293808b474a87d375ca [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{
Joel Becker24307aa2011-05-18 04:08:16 -070056 struct configfs_dirent *sd = dentry->d_fsdata;
Joel Becker7063fbf2005-12-15 14:29:43 -080057
58 if (sd) {
59 BUG_ON(sd->s_dentry != dentry);
Joel Becker24307aa2011-05-18 04:08:16 -070060 /* Coordinate with configfs_readdir */
61 spin_lock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -080062 sd->s_dentry = NULL;
Joel Becker24307aa2011-05-18 04:08:16 -070063 spin_unlock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -080064 configfs_put(sd);
65 }
66 iput(inode);
67}
68
Al Virod463a0c2011-01-12 16:41:05 -050069const struct dentry_operations configfs_dentry_ops = {
Joel Becker7063fbf2005-12-15 14:29:43 -080070 .d_iput = configfs_d_iput,
Al Virob26d4cd2013-10-25 18:47:37 -040071 .d_delete = always_delete_dentry,
Joel Becker7063fbf2005-12-15 14:29:43 -080072};
73
Louis Rillinge74cc062009-01-28 19:18:32 +010074#ifdef CONFIG_LOCKDEP
75
76/*
77 * Helpers to make lockdep happy with our recursive locking of default groups'
78 * inodes (see configfs_attach_group() and configfs_detach_group()).
79 * We put default groups i_mutexes in separate classes according to their depth
80 * from the youngest non-default group ancestor.
81 *
82 * For a non-default group A having default groups A/B, A/C, and A/C/D, default
83 * groups A/B and A/C will have their inode's mutex in class
84 * default_group_class[0], and default group A/C/D will be in
85 * default_group_class[1].
86 *
87 * The lock classes are declared and assigned in inode.c, according to the
88 * s_depth value.
89 * The s_depth value is initialized to -1, adjusted to >= 0 when attaching
90 * default groups, and reset to -1 when all default groups are attached. During
91 * attachment, if configfs_create() sees s_depth > 0, the lock class of the new
92 * inode's mutex is set to default_group_class[s_depth - 1].
93 */
94
95static void configfs_init_dirent_depth(struct configfs_dirent *sd)
96{
97 sd->s_depth = -1;
98}
99
100static void configfs_set_dir_dirent_depth(struct configfs_dirent *parent_sd,
101 struct configfs_dirent *sd)
102{
103 int parent_depth = parent_sd->s_depth;
104
105 if (parent_depth >= 0)
106 sd->s_depth = parent_depth + 1;
107}
108
109static void
110configfs_adjust_dir_dirent_depth_before_populate(struct configfs_dirent *sd)
111{
112 /*
113 * item's i_mutex class is already setup, so s_depth is now only
114 * used to set new sub-directories s_depth, which is always done
115 * with item's i_mutex locked.
116 */
117 /*
118 * sd->s_depth == -1 iff we are a non default group.
119 * else (we are a default group) sd->s_depth > 0 (see
120 * create_dir()).
121 */
122 if (sd->s_depth == -1)
123 /*
124 * We are a non default group and we are going to create
125 * default groups.
126 */
127 sd->s_depth = 0;
128}
129
130static void
131configfs_adjust_dir_dirent_depth_after_populate(struct configfs_dirent *sd)
132{
133 /* We will not create default groups anymore. */
134 sd->s_depth = -1;
135}
136
137#else /* CONFIG_LOCKDEP */
138
139static void configfs_init_dirent_depth(struct configfs_dirent *sd)
140{
141}
142
143static void configfs_set_dir_dirent_depth(struct configfs_dirent *parent_sd,
144 struct configfs_dirent *sd)
145{
146}
147
148static void
149configfs_adjust_dir_dirent_depth_before_populate(struct configfs_dirent *sd)
150{
151}
152
153static void
154configfs_adjust_dir_dirent_depth_after_populate(struct configfs_dirent *sd)
155{
156}
157
158#endif /* CONFIG_LOCKDEP */
159
Joel Becker7063fbf2005-12-15 14:29:43 -0800160/*
161 * Allocates a new configfs_dirent and links it to the parent configfs_dirent
162 */
Louis Rilling420118c2009-01-28 19:18:33 +0100163static struct configfs_dirent *configfs_new_dirent(struct configfs_dirent *parent_sd,
164 void *element, int type)
Joel Becker7063fbf2005-12-15 14:29:43 -0800165{
166 struct configfs_dirent * sd;
167
Robert P. J. Dayc3762222007-02-10 01:45:03 -0800168 sd = kmem_cache_zalloc(configfs_dir_cachep, GFP_KERNEL);
Joel Becker7063fbf2005-12-15 14:29:43 -0800169 if (!sd)
Louis Rilling107ed402008-06-16 19:01:00 +0200170 return ERR_PTR(-ENOMEM);
Joel Becker7063fbf2005-12-15 14:29:43 -0800171
Joel Becker7063fbf2005-12-15 14:29:43 -0800172 atomic_set(&sd->s_count, 1);
173 INIT_LIST_HEAD(&sd->s_links);
174 INIT_LIST_HEAD(&sd->s_children);
Joel Becker7063fbf2005-12-15 14:29:43 -0800175 sd->s_element = element;
Louis Rilling420118c2009-01-28 19:18:33 +0100176 sd->s_type = type;
Louis Rillinge74cc062009-01-28 19:18:32 +0100177 configfs_init_dirent_depth(sd);
Louis Rilling6f610762008-06-16 19:00:58 +0200178 spin_lock(&configfs_dirent_lock);
Louis Rillingb3e76af2008-06-16 19:01:01 +0200179 if (parent_sd->s_type & CONFIGFS_USET_DROPPING) {
180 spin_unlock(&configfs_dirent_lock);
181 kmem_cache_free(configfs_dir_cachep, sd);
182 return ERR_PTR(-ENOENT);
183 }
Louis Rilling6f610762008-06-16 19:00:58 +0200184 list_add(&sd->s_sibling, &parent_sd->s_children);
185 spin_unlock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -0800186
187 return sd;
188}
189
Joel Beckerb4c98f62006-09-13 11:01:19 -0700190/*
191 *
192 * Return -EEXIST if there is already a configfs element with the same
193 * name for the same parent.
194 *
195 * called with parent inode's i_mutex held
196 */
Adrian Bunk58d206c2006-11-20 03:24:00 +0100197static int configfs_dirent_exists(struct configfs_dirent *parent_sd,
198 const unsigned char *new)
Joel Beckerb4c98f62006-09-13 11:01:19 -0700199{
200 struct configfs_dirent * sd;
201
202 list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
203 if (sd->s_element) {
204 const unsigned char *existing = configfs_get_name(sd);
205 if (strcmp(existing, new))
206 continue;
207 else
208 return -EEXIST;
209 }
210 }
211
212 return 0;
213}
214
215
Joel Becker7063fbf2005-12-15 14:29:43 -0800216int configfs_make_dirent(struct configfs_dirent * parent_sd,
217 struct dentry * dentry, void * element,
218 umode_t mode, int type)
219{
220 struct configfs_dirent * sd;
221
Louis Rilling420118c2009-01-28 19:18:33 +0100222 sd = configfs_new_dirent(parent_sd, element, type);
Louis Rilling107ed402008-06-16 19:01:00 +0200223 if (IS_ERR(sd))
224 return PTR_ERR(sd);
Joel Becker7063fbf2005-12-15 14:29:43 -0800225
226 sd->s_mode = mode;
Joel Becker7063fbf2005-12-15 14:29:43 -0800227 sd->s_dentry = dentry;
Nick Pigginfbc8d4c02011-01-07 17:49:21 +1100228 if (dentry)
Joel Becker7063fbf2005-12-15 14:29:43 -0800229 dentry->d_fsdata = configfs_get(sd);
Joel Becker7063fbf2005-12-15 14:29:43 -0800230
231 return 0;
232}
233
234static int init_dir(struct inode * inode)
235{
236 inode->i_op = &configfs_dir_inode_operations;
237 inode->i_fop = &configfs_dir_operations;
238
239 /* directory inodes start off with i_nlink == 2 (for "." entry) */
Dave Hansend8c76e62006-09-30 23:29:04 -0700240 inc_nlink(inode);
Joel Becker7063fbf2005-12-15 14:29:43 -0800241 return 0;
242}
243
Dave Hansence8d2cd2007-10-16 23:31:13 -0700244static int configfs_init_file(struct inode * inode)
Joel Becker7063fbf2005-12-15 14:29:43 -0800245{
246 inode->i_size = PAGE_SIZE;
247 inode->i_fop = &configfs_file_operations;
248 return 0;
249}
250
251static int init_symlink(struct inode * inode)
252{
253 inode->i_op = &configfs_symlink_inode_operations;
254 return 0;
255}
256
Al Viro0dd6c082012-03-17 16:49:20 -0400257static int create_dir(struct config_item *k, struct dentry *d)
Joel Becker7063fbf2005-12-15 14:29:43 -0800258{
259 int error;
260 umode_t mode = S_IFDIR| S_IRWXU | S_IRUGO | S_IXUGO;
Al Viro0dd6c082012-03-17 16:49:20 -0400261 struct dentry *p = d->d_parent;
262
263 BUG_ON(!k);
Joel Becker7063fbf2005-12-15 14:29:43 -0800264
Joel Beckerb4c98f62006-09-13 11:01:19 -0700265 error = configfs_dirent_exists(p->d_fsdata, d->d_name.name);
266 if (!error)
267 error = configfs_make_dirent(p->d_fsdata, d, k, mode,
Louis Rilling2a109f22008-07-04 16:56:05 +0200268 CONFIGFS_DIR | CONFIGFS_USET_CREATING);
Joel Becker7063fbf2005-12-15 14:29:43 -0800269 if (!error) {
Louis Rillinge74cc062009-01-28 19:18:32 +0100270 configfs_set_dir_dirent_depth(p->d_fsdata, d->d_fsdata);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800271 error = configfs_create(d, mode, init_dir);
Joel Becker7063fbf2005-12-15 14:29:43 -0800272 if (!error) {
Dave Hansend8c76e62006-09-30 23:29:04 -0700273 inc_nlink(p->d_inode);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800274 } else {
275 struct configfs_dirent *sd = d->d_fsdata;
276 if (sd) {
Louis Rilling6f610762008-06-16 19:00:58 +0200277 spin_lock(&configfs_dirent_lock);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800278 list_del_init(&sd->s_sibling);
Louis Rilling6f610762008-06-16 19:00:58 +0200279 spin_unlock(&configfs_dirent_lock);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800280 configfs_put(sd);
281 }
Joel Becker7063fbf2005-12-15 14:29:43 -0800282 }
283 }
284 return error;
285}
286
287
288/**
289 * configfs_create_dir - create a directory for an config_item.
290 * @item: config_itemwe're creating directory for.
291 * @dentry: config_item's dentry.
Louis Rilling2a109f22008-07-04 16:56:05 +0200292 *
293 * Note: user-created entries won't be allowed under this new directory
294 * until it is validated by configfs_dir_set_ready()
Joel Becker7063fbf2005-12-15 14:29:43 -0800295 */
296
297static int configfs_create_dir(struct config_item * item, struct dentry *dentry)
298{
Al Viro0dd6c082012-03-17 16:49:20 -0400299 int error = create_dir(item, dentry);
Joel Becker7063fbf2005-12-15 14:29:43 -0800300 if (!error)
301 item->ci_dentry = dentry;
302 return error;
303}
304
Louis Rilling2a109f22008-07-04 16:56:05 +0200305/*
306 * Allow userspace to create new entries under a new directory created with
307 * configfs_create_dir(), and under all of its chidlren directories recursively.
308 * @sd configfs_dirent of the new directory to validate
309 *
310 * Caller must hold configfs_dirent_lock.
311 */
312static void configfs_dir_set_ready(struct configfs_dirent *sd)
313{
314 struct configfs_dirent *child_sd;
315
316 sd->s_type &= ~CONFIGFS_USET_CREATING;
317 list_for_each_entry(child_sd, &sd->s_children, s_sibling)
318 if (child_sd->s_type & CONFIGFS_USET_CREATING)
319 configfs_dir_set_ready(child_sd);
320}
321
322/*
323 * Check that a directory does not belong to a directory hierarchy being
324 * attached and not validated yet.
325 * @sd configfs_dirent of the directory to check
326 *
327 * @return non-zero iff the directory was validated
328 *
329 * Note: takes configfs_dirent_lock, so the result may change from false to true
330 * in two consecutive calls, but never from true to false.
331 */
332int configfs_dirent_is_ready(struct configfs_dirent *sd)
333{
334 int ret;
335
336 spin_lock(&configfs_dirent_lock);
337 ret = !(sd->s_type & CONFIGFS_USET_CREATING);
338 spin_unlock(&configfs_dirent_lock);
339
340 return ret;
341}
342
Joel Becker7063fbf2005-12-15 14:29:43 -0800343int configfs_create_link(struct configfs_symlink *sl,
344 struct dentry *parent,
345 struct dentry *dentry)
346{
347 int err = 0;
348 umode_t mode = S_IFLNK | S_IRWXUGO;
349
Joel Becker3d0f89b2006-01-25 13:31:07 -0800350 err = configfs_make_dirent(parent->d_fsdata, dentry, sl, mode,
351 CONFIGFS_ITEM_LINK);
Joel Becker7063fbf2005-12-15 14:29:43 -0800352 if (!err) {
Joel Becker3d0f89b2006-01-25 13:31:07 -0800353 err = configfs_create(dentry, mode, init_symlink);
Nick Pigginfbc8d4c02011-01-07 17:49:21 +1100354 if (err) {
Joel Becker3d0f89b2006-01-25 13:31:07 -0800355 struct configfs_dirent *sd = dentry->d_fsdata;
356 if (sd) {
Louis Rilling6f610762008-06-16 19:00:58 +0200357 spin_lock(&configfs_dirent_lock);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800358 list_del_init(&sd->s_sibling);
Louis Rilling6f610762008-06-16 19:00:58 +0200359 spin_unlock(&configfs_dirent_lock);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800360 configfs_put(sd);
361 }
362 }
Joel Becker7063fbf2005-12-15 14:29:43 -0800363 }
364 return err;
365}
366
367static void remove_dir(struct dentry * d)
368{
369 struct dentry * parent = dget(d->d_parent);
370 struct configfs_dirent * sd;
371
372 sd = d->d_fsdata;
Louis Rilling6f610762008-06-16 19:00:58 +0200373 spin_lock(&configfs_dirent_lock);
Joel Beckere7515d02006-03-10 11:42:30 -0800374 list_del_init(&sd->s_sibling);
Louis Rilling6f610762008-06-16 19:00:58 +0200375 spin_unlock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -0800376 configfs_put(sd);
377 if (d->d_inode)
378 simple_rmdir(parent->d_inode,d);
379
Linus Torvaldsc75e2472013-07-09 11:26:44 -0700380 pr_debug(" o %s removing done (%d)\n",d->d_name.name, d_count(d));
Joel Becker7063fbf2005-12-15 14:29:43 -0800381
382 dput(parent);
383}
384
385/**
386 * configfs_remove_dir - remove an config_item's directory.
387 * @item: config_item we're removing.
388 *
389 * The only thing special about this is that we remove any files in
390 * the directory before we remove the directory, and we've inlined
391 * what used to be configfs_rmdir() below, instead of calling separately.
Louis Rilling2e2ce172008-07-04 16:56:06 +0200392 *
393 * Caller holds the mutex of the item's inode
Joel Becker7063fbf2005-12-15 14:29:43 -0800394 */
395
396static void configfs_remove_dir(struct config_item * item)
397{
398 struct dentry * dentry = dget(item->ci_dentry);
399
400 if (!dentry)
401 return;
402
403 remove_dir(dentry);
404 /**
405 * Drop reference from dget() on entrance.
406 */
407 dput(dentry);
408}
409
410
411/* attaches attribute's configfs_dirent to the dentry corresponding to the
412 * attribute file
413 */
414static int configfs_attach_attr(struct configfs_dirent * sd, struct dentry * dentry)
415{
416 struct configfs_attribute * attr = sd->s_element;
417 int error;
418
Joel Becker7063fbf2005-12-15 14:29:43 -0800419 dentry->d_fsdata = configfs_get(sd);
420 sd->s_dentry = dentry;
Dave Hansence8d2cd2007-10-16 23:31:13 -0700421 error = configfs_create(dentry, (attr->ca_mode & S_IALLUGO) | S_IFREG,
422 configfs_init_file);
Joel Becker3d0f89b2006-01-25 13:31:07 -0800423 if (error) {
424 configfs_put(sd);
425 return error;
426 }
427
Joel Becker7063fbf2005-12-15 14:29:43 -0800428 d_rehash(dentry);
429
430 return 0;
431}
432
433static struct dentry * configfs_lookup(struct inode *dir,
434 struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400435 unsigned int flags)
Joel Becker7063fbf2005-12-15 14:29:43 -0800436{
437 struct configfs_dirent * parent_sd = dentry->d_parent->d_fsdata;
438 struct configfs_dirent * sd;
439 int found = 0;
Louis Rilling2a109f22008-07-04 16:56:05 +0200440 int err;
441
442 /*
443 * Fake invisibility if dir belongs to a group/default groups hierarchy
444 * being attached
445 *
446 * This forbids userspace to read/write attributes of items which may
447 * not complete their initialization, since the dentries of the
448 * attributes won't be instantiated.
449 */
450 err = -ENOENT;
451 if (!configfs_dirent_is_ready(parent_sd))
452 goto out;
Joel Becker7063fbf2005-12-15 14:29:43 -0800453
454 list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
455 if (sd->s_type & CONFIGFS_NOT_PINNED) {
456 const unsigned char * name = configfs_get_name(sd);
457
458 if (strcmp(name, dentry->d_name.name))
459 continue;
460
461 found = 1;
462 err = configfs_attach_attr(sd, dentry);
463 break;
464 }
465 }
466
467 if (!found) {
468 /*
469 * If it doesn't exist and it isn't a NOT_PINNED item,
470 * it must be negative.
471 */
Nick Pigginfbc8d4c02011-01-07 17:49:21 +1100472 if (dentry->d_name.len > NAME_MAX)
473 return ERR_PTR(-ENAMETOOLONG);
Nick Pigginfbc8d4c02011-01-07 17:49:21 +1100474 d_add(dentry, NULL);
475 return NULL;
Joel Becker7063fbf2005-12-15 14:29:43 -0800476 }
477
Louis Rilling2a109f22008-07-04 16:56:05 +0200478out:
Joel Becker7063fbf2005-12-15 14:29:43 -0800479 return ERR_PTR(err);
480}
481
482/*
483 * Only subdirectories count here. Files (CONFIGFS_NOT_PINNED) are
Louis Rillingb3e76af2008-06-16 19:01:01 +0200484 * attributes and are removed by rmdir(). We recurse, setting
485 * CONFIGFS_USET_DROPPING on all children that are candidates for
486 * default detach.
487 * If there is an error, the caller will reset the flags via
488 * configfs_detach_rollback().
Joel Becker7063fbf2005-12-15 14:29:43 -0800489 */
Louis Rilling6d8344b2008-06-16 19:01:02 +0200490static int configfs_detach_prep(struct dentry *dentry, struct mutex **wait_mutex)
Joel Becker7063fbf2005-12-15 14:29:43 -0800491{
492 struct configfs_dirent *parent_sd = dentry->d_fsdata;
493 struct configfs_dirent *sd;
494 int ret;
495
Louis Rilling4768e9b2008-06-23 14:16:17 +0200496 /* Mark that we're trying to drop the group */
497 parent_sd->s_type |= CONFIGFS_USET_DROPPING;
498
Joel Becker7063fbf2005-12-15 14:29:43 -0800499 ret = -EBUSY;
500 if (!list_empty(&parent_sd->s_links))
501 goto out;
502
503 ret = 0;
504 list_for_each_entry(sd, &parent_sd->s_children, s_sibling) {
Louis Rilling99cefda2008-06-27 13:10:25 +0200505 if (!sd->s_element ||
506 (sd->s_type & CONFIGFS_NOT_PINNED))
Joel Becker7063fbf2005-12-15 14:29:43 -0800507 continue;
508 if (sd->s_type & CONFIGFS_USET_DEFAULT) {
Louis Rilling6d8344b2008-06-16 19:01:02 +0200509 /* Abort if racing with mkdir() */
510 if (sd->s_type & CONFIGFS_USET_IN_MKDIR) {
511 if (wait_mutex)
512 *wait_mutex = &sd->s_dentry->d_inode->i_mutex;
513 return -EAGAIN;
514 }
Joel Becker7063fbf2005-12-15 14:29:43 -0800515
Joel Becker631d1fe2007-06-18 18:06:09 -0700516 /*
517 * Yup, recursive. If there's a problem, blame
518 * deep nesting of default_groups
519 */
Louis Rilling6d8344b2008-06-16 19:01:02 +0200520 ret = configfs_detach_prep(sd->s_dentry, wait_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -0800521 if (!ret)
Joel Beckere7515d02006-03-10 11:42:30 -0800522 continue;
Joel Becker7063fbf2005-12-15 14:29:43 -0800523 } else
524 ret = -ENOTEMPTY;
525
526 break;
527 }
528
529out:
530 return ret;
531}
532
533/*
Louis Rillingb3e76af2008-06-16 19:01:01 +0200534 * Walk the tree, resetting CONFIGFS_USET_DROPPING wherever it was
Joel Becker7063fbf2005-12-15 14:29:43 -0800535 * set.
536 */
537static void configfs_detach_rollback(struct dentry *dentry)
538{
539 struct configfs_dirent *parent_sd = dentry->d_fsdata;
540 struct configfs_dirent *sd;
541
Louis Rilling4768e9b2008-06-23 14:16:17 +0200542 parent_sd->s_type &= ~CONFIGFS_USET_DROPPING;
543
544 list_for_each_entry(sd, &parent_sd->s_children, s_sibling)
545 if (sd->s_type & CONFIGFS_USET_DEFAULT)
Joel Becker7063fbf2005-12-15 14:29:43 -0800546 configfs_detach_rollback(sd->s_dentry);
Joel Becker7063fbf2005-12-15 14:29:43 -0800547}
548
549static void detach_attrs(struct config_item * item)
550{
551 struct dentry * dentry = dget(item->ci_dentry);
552 struct configfs_dirent * parent_sd;
553 struct configfs_dirent * sd, * tmp;
554
555 if (!dentry)
556 return;
557
558 pr_debug("configfs %s: dropping attrs for dir\n",
559 dentry->d_name.name);
560
561 parent_sd = dentry->d_fsdata;
562 list_for_each_entry_safe(sd, tmp, &parent_sd->s_children, s_sibling) {
563 if (!sd->s_element || !(sd->s_type & CONFIGFS_NOT_PINNED))
564 continue;
Louis Rilling6f610762008-06-16 19:00:58 +0200565 spin_lock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -0800566 list_del_init(&sd->s_sibling);
Louis Rilling6f610762008-06-16 19:00:58 +0200567 spin_unlock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -0800568 configfs_drop_dentry(sd, dentry);
569 configfs_put(sd);
570 }
571
572 /**
573 * Drop reference from dget() on entrance.
574 */
575 dput(dentry);
576}
577
578static int populate_attrs(struct config_item *item)
579{
580 struct config_item_type *t = item->ci_type;
581 struct configfs_attribute *attr;
582 int error = 0;
583 int i;
584
585 if (!t)
586 return -EINVAL;
587 if (t->ct_attrs) {
588 for (i = 0; (attr = t->ct_attrs[i]) != NULL; i++) {
589 if ((error = configfs_create_file(item, attr)))
590 break;
591 }
592 }
593
594 if (error)
595 detach_attrs(item);
596
597 return error;
598}
599
600static int configfs_attach_group(struct config_item *parent_item,
601 struct config_item *item,
602 struct dentry *dentry);
603static void configfs_detach_group(struct config_item *item);
604
605static void detach_groups(struct config_group *group)
606{
607 struct dentry * dentry = dget(group->cg_item.ci_dentry);
608 struct dentry *child;
609 struct configfs_dirent *parent_sd;
610 struct configfs_dirent *sd, *tmp;
611
612 if (!dentry)
613 return;
614
615 parent_sd = dentry->d_fsdata;
616 list_for_each_entry_safe(sd, tmp, &parent_sd->s_children, s_sibling) {
617 if (!sd->s_element ||
618 !(sd->s_type & CONFIGFS_USET_DEFAULT))
619 continue;
620
621 child = sd->s_dentry;
622
Louis Rillingb3e76af2008-06-16 19:01:01 +0200623 mutex_lock(&child->d_inode->i_mutex);
624
Joel Becker7063fbf2005-12-15 14:29:43 -0800625 configfs_detach_group(sd->s_element);
626 child->d_inode->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -0400627 dont_mount(child);
Joel Becker7063fbf2005-12-15 14:29:43 -0800628
Louis Rillingb3e76af2008-06-16 19:01:01 +0200629 mutex_unlock(&child->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -0800630
631 d_delete(child);
632 dput(child);
633 }
634
635 /**
636 * Drop reference from dget() on entrance.
637 */
638 dput(dentry);
639}
640
641/*
642 * This fakes mkdir(2) on a default_groups[] entry. It
643 * creates a dentry, attachs it, and then does fixup
644 * on the sd->s_type.
645 *
646 * We could, perhaps, tweak our parent's ->mkdir for a minute and
647 * try using vfs_mkdir. Just a thought.
648 */
649static int create_default_group(struct config_group *parent_group,
650 struct config_group *group)
651{
652 int ret;
Joel Becker7063fbf2005-12-15 14:29:43 -0800653 struct configfs_dirent *sd;
654 /* We trust the caller holds a reference to parent */
655 struct dentry *child, *parent = parent_group->cg_item.ci_dentry;
656
657 if (!group->cg_item.ci_name)
658 group->cg_item.ci_name = group->cg_item.ci_namebuf;
Joel Becker7063fbf2005-12-15 14:29:43 -0800659
660 ret = -ENOMEM;
Al Viroec193cf2013-07-14 17:16:52 +0400661 child = d_alloc_name(parent, group->cg_item.ci_name);
Joel Becker7063fbf2005-12-15 14:29:43 -0800662 if (child) {
663 d_add(child, NULL);
664
665 ret = configfs_attach_group(&parent_group->cg_item,
666 &group->cg_item, child);
667 if (!ret) {
668 sd = child->d_fsdata;
669 sd->s_type |= CONFIGFS_USET_DEFAULT;
670 } else {
Joel Beckerdf7f9962011-02-22 01:09:49 -0800671 BUG_ON(child->d_inode);
672 d_drop(child);
Joel Becker7063fbf2005-12-15 14:29:43 -0800673 dput(child);
674 }
675 }
676
677 return ret;
678}
679
680static int populate_groups(struct config_group *group)
681{
682 struct config_group *new_group;
Joel Becker7063fbf2005-12-15 14:29:43 -0800683 int ret = 0;
684 int i;
685
Eric Sesterhenncbca6922006-03-23 00:36:54 +0100686 if (group->default_groups) {
Joel Becker7063fbf2005-12-15 14:29:43 -0800687 for (i = 0; group->default_groups[i]; i++) {
688 new_group = group->default_groups[i];
689
690 ret = create_default_group(group, new_group);
Louis Rilling2e2ce172008-07-04 16:56:06 +0200691 if (ret) {
692 detach_groups(group);
Joel Becker7063fbf2005-12-15 14:29:43 -0800693 break;
Louis Rilling2e2ce172008-07-04 16:56:06 +0200694 }
Joel Becker7063fbf2005-12-15 14:29:43 -0800695 }
Joel Becker7063fbf2005-12-15 14:29:43 -0800696 }
697
Joel Becker7063fbf2005-12-15 14:29:43 -0800698 return ret;
699}
700
701/*
702 * All of link_obj/unlink_obj/link_group/unlink_group require that
Joel Beckere6bd07a2007-07-06 23:33:17 -0700703 * subsys->su_mutex is held.
Joel Becker7063fbf2005-12-15 14:29:43 -0800704 */
705
706static void unlink_obj(struct config_item *item)
707{
708 struct config_group *group;
709
710 group = item->ci_group;
711 if (group) {
712 list_del_init(&item->ci_entry);
713
714 item->ci_group = NULL;
715 item->ci_parent = NULL;
Joel Beckereed7a0d2006-04-11 21:37:20 -0700716
717 /* Drop the reference for ci_entry */
Joel Becker7063fbf2005-12-15 14:29:43 -0800718 config_item_put(item);
719
Joel Beckereed7a0d2006-04-11 21:37:20 -0700720 /* Drop the reference for ci_parent */
Joel Becker7063fbf2005-12-15 14:29:43 -0800721 config_group_put(group);
722 }
723}
724
725static void link_obj(struct config_item *parent_item, struct config_item *item)
726{
Joel Beckereed7a0d2006-04-11 21:37:20 -0700727 /*
728 * Parent seems redundant with group, but it makes certain
729 * traversals much nicer.
730 */
Joel Becker7063fbf2005-12-15 14:29:43 -0800731 item->ci_parent = parent_item;
Joel Beckereed7a0d2006-04-11 21:37:20 -0700732
733 /*
734 * We hold a reference on the parent for the child's ci_parent
735 * link.
736 */
Joel Becker7063fbf2005-12-15 14:29:43 -0800737 item->ci_group = config_group_get(to_config_group(parent_item));
738 list_add_tail(&item->ci_entry, &item->ci_group->cg_children);
739
Joel Beckereed7a0d2006-04-11 21:37:20 -0700740 /*
741 * We hold a reference on the child for ci_entry on the parent's
742 * cg_children
743 */
Joel Becker7063fbf2005-12-15 14:29:43 -0800744 config_item_get(item);
745}
746
747static void unlink_group(struct config_group *group)
748{
749 int i;
750 struct config_group *new_group;
751
752 if (group->default_groups) {
753 for (i = 0; group->default_groups[i]; i++) {
754 new_group = group->default_groups[i];
755 unlink_group(new_group);
756 }
757 }
758
759 group->cg_subsys = NULL;
760 unlink_obj(&group->cg_item);
761}
762
763static void link_group(struct config_group *parent_group, struct config_group *group)
764{
765 int i;
766 struct config_group *new_group;
767 struct configfs_subsystem *subsys = NULL; /* gcc is a turd */
768
769 link_obj(&parent_group->cg_item, &group->cg_item);
770
771 if (parent_group->cg_subsys)
772 subsys = parent_group->cg_subsys;
773 else if (configfs_is_root(&parent_group->cg_item))
774 subsys = to_configfs_subsystem(group);
775 else
776 BUG();
777 group->cg_subsys = subsys;
778
779 if (group->default_groups) {
780 for (i = 0; group->default_groups[i]; i++) {
781 new_group = group->default_groups[i];
782 link_group(group, new_group);
783 }
784 }
785}
786
787/*
788 * The goal is that configfs_attach_item() (and
789 * configfs_attach_group()) can be called from either the VFS or this
790 * module. That is, they assume that the items have been created,
791 * the dentry allocated, and the dcache is all ready to go.
792 *
793 * If they fail, they must clean up after themselves as if they
794 * had never been called. The caller (VFS or local function) will
795 * handle cleaning up the dcache bits.
796 *
797 * configfs_detach_group() and configfs_detach_item() behave similarly on
798 * the way out. They assume that the proper semaphores are held, they
799 * clean up the configfs items, and they expect their callers will
800 * handle the dcache bits.
801 */
802static int configfs_attach_item(struct config_item *parent_item,
803 struct config_item *item,
804 struct dentry *dentry)
805{
806 int ret;
807
808 ret = configfs_create_dir(item, dentry);
809 if (!ret) {
810 ret = populate_attrs(item);
811 if (ret) {
Louis Rilling2e2ce172008-07-04 16:56:06 +0200812 /*
813 * We are going to remove an inode and its dentry but
814 * the VFS may already have hit and used them. Thus,
815 * we must lock them as rmdir() would.
816 */
817 mutex_lock(&dentry->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -0800818 configfs_remove_dir(item);
Louis Rilling2e2ce172008-07-04 16:56:06 +0200819 dentry->d_inode->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -0400820 dont_mount(dentry);
Louis Rilling2e2ce172008-07-04 16:56:06 +0200821 mutex_unlock(&dentry->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -0800822 d_delete(dentry);
823 }
824 }
825
826 return ret;
827}
828
Louis Rilling2e2ce172008-07-04 16:56:06 +0200829/* Caller holds the mutex of the item's inode */
Joel Becker7063fbf2005-12-15 14:29:43 -0800830static void configfs_detach_item(struct config_item *item)
831{
832 detach_attrs(item);
833 configfs_remove_dir(item);
834}
835
836static int configfs_attach_group(struct config_item *parent_item,
837 struct config_item *item,
838 struct dentry *dentry)
839{
840 int ret;
841 struct configfs_dirent *sd;
842
843 ret = configfs_attach_item(parent_item, item, dentry);
844 if (!ret) {
845 sd = dentry->d_fsdata;
846 sd->s_type |= CONFIGFS_USET_DIR;
847
Louis Rilling2e2ce172008-07-04 16:56:06 +0200848 /*
849 * FYI, we're faking mkdir in populate_groups()
850 * We must lock the group's inode to avoid races with the VFS
851 * which can already hit the inode and try to add/remove entries
852 * under it.
853 *
854 * We must also lock the inode to remove it safely in case of
855 * error, as rmdir() would.
856 */
857 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_CHILD);
Louis Rillinge74cc062009-01-28 19:18:32 +0100858 configfs_adjust_dir_dirent_depth_before_populate(sd);
Joel Becker7063fbf2005-12-15 14:29:43 -0800859 ret = populate_groups(to_config_group(item));
860 if (ret) {
861 configfs_detach_item(item);
Louis Rilling2e2ce172008-07-04 16:56:06 +0200862 dentry->d_inode->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -0400863 dont_mount(dentry);
Joel Becker7063fbf2005-12-15 14:29:43 -0800864 }
Louis Rillinge74cc062009-01-28 19:18:32 +0100865 configfs_adjust_dir_dirent_depth_after_populate(sd);
Louis Rilling2e2ce172008-07-04 16:56:06 +0200866 mutex_unlock(&dentry->d_inode->i_mutex);
867 if (ret)
868 d_delete(dentry);
Joel Becker7063fbf2005-12-15 14:29:43 -0800869 }
870
871 return ret;
872}
873
Louis Rilling2e2ce172008-07-04 16:56:06 +0200874/* Caller holds the mutex of the group's inode */
Joel Becker7063fbf2005-12-15 14:29:43 -0800875static void configfs_detach_group(struct config_item *item)
876{
877 detach_groups(to_config_group(item));
878 configfs_detach_item(item);
879}
880
881/*
Joel Becker299894c2006-10-06 17:33:23 -0700882 * After the item has been detached from the filesystem view, we are
883 * ready to tear it out of the hierarchy. Notify the client before
884 * we do that so they can perform any cleanup that requires
885 * navigating the hierarchy. A client does not need to provide this
886 * callback. The subsystem semaphore MUST be held by the caller, and
887 * references must be valid for both items. It also assumes the
888 * caller has validated ci_type.
889 */
890static void client_disconnect_notify(struct config_item *parent_item,
891 struct config_item *item)
892{
893 struct config_item_type *type;
894
895 type = parent_item->ci_type;
896 BUG_ON(!type);
897
898 if (type->ct_group_ops && type->ct_group_ops->disconnect_notify)
899 type->ct_group_ops->disconnect_notify(to_config_group(parent_item),
900 item);
901}
902
903/*
Joel Becker7063fbf2005-12-15 14:29:43 -0800904 * Drop the initial reference from make_item()/make_group()
905 * This function assumes that reference is held on item
906 * and that item holds a valid reference to the parent. Also, it
907 * assumes the caller has validated ci_type.
908 */
909static void client_drop_item(struct config_item *parent_item,
910 struct config_item *item)
911{
912 struct config_item_type *type;
913
914 type = parent_item->ci_type;
915 BUG_ON(!type);
916
Joel Beckereed7a0d2006-04-11 21:37:20 -0700917 /*
918 * If ->drop_item() exists, it is responsible for the
919 * config_item_put().
920 */
Joel Becker7063fbf2005-12-15 14:29:43 -0800921 if (type->ct_group_ops && type->ct_group_ops->drop_item)
922 type->ct_group_ops->drop_item(to_config_group(parent_item),
Joel Becker299894c2006-10-06 17:33:23 -0700923 item);
Joel Becker7063fbf2005-12-15 14:29:43 -0800924 else
925 config_item_put(item);
926}
927
Joel Becker631d1fe2007-06-18 18:06:09 -0700928#ifdef DEBUG
929static void configfs_dump_one(struct configfs_dirent *sd, int level)
930{
931 printk(KERN_INFO "%*s\"%s\":\n", level, " ", configfs_get_name(sd));
932
933#define type_print(_type) if (sd->s_type & _type) printk(KERN_INFO "%*s %s\n", level, " ", #_type);
934 type_print(CONFIGFS_ROOT);
935 type_print(CONFIGFS_DIR);
936 type_print(CONFIGFS_ITEM_ATTR);
937 type_print(CONFIGFS_ITEM_LINK);
938 type_print(CONFIGFS_USET_DIR);
939 type_print(CONFIGFS_USET_DEFAULT);
940 type_print(CONFIGFS_USET_DROPPING);
941#undef type_print
942}
943
944static int configfs_dump(struct configfs_dirent *sd, int level)
945{
946 struct configfs_dirent *child_sd;
947 int ret = 0;
948
949 configfs_dump_one(sd, level);
950
951 if (!(sd->s_type & (CONFIGFS_DIR|CONFIGFS_ROOT)))
952 return 0;
953
954 list_for_each_entry(child_sd, &sd->s_children, s_sibling) {
955 ret = configfs_dump(child_sd, level + 2);
956 if (ret)
957 break;
958 }
959
960 return ret;
961}
962#endif
963
964
965/*
966 * configfs_depend_item() and configfs_undepend_item()
967 *
968 * WARNING: Do not call these from a configfs callback!
969 *
970 * This describes these functions and their helpers.
971 *
972 * Allow another kernel system to depend on a config_item. If this
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300973 * happens, the item cannot go away until the dependent can live without
Joel Becker631d1fe2007-06-18 18:06:09 -0700974 * it. The idea is to give client modules as simple an interface as
975 * possible. When a system asks them to depend on an item, they just
976 * call configfs_depend_item(). If the item is live and the client
977 * driver is in good shape, we'll happily do the work for them.
978 *
979 * Why is the locking complex? Because configfs uses the VFS to handle
980 * all locking, but this function is called outside the normal
981 * VFS->configfs path. So it must take VFS locks to prevent the
982 * VFS->configfs stuff (configfs_mkdir(), configfs_rmdir(), etc). This is
983 * why you can't call these functions underneath configfs callbacks.
984 *
985 * Note, btw, that this can be called at *any* time, even when a configfs
986 * subsystem isn't registered, or when configfs is loading or unloading.
987 * Just like configfs_register_subsystem(). So we take the same
Louis Rilling420118c2009-01-28 19:18:33 +0100988 * precautions. We pin the filesystem. We lock configfs_dirent_lock.
989 * If we can find the target item in the
Joel Becker631d1fe2007-06-18 18:06:09 -0700990 * configfs tree, it must be part of the subsystem tree as well, so we
Louis Rilling420118c2009-01-28 19:18:33 +0100991 * do not need the subsystem semaphore. Holding configfs_dirent_lock helps
992 * locking out mkdir() and rmdir(), who might be racing us.
Joel Becker631d1fe2007-06-18 18:06:09 -0700993 */
994
995/*
996 * configfs_depend_prep()
997 *
998 * Only subdirectories count here. Files (CONFIGFS_NOT_PINNED) are
999 * attributes. This is similar but not the same to configfs_detach_prep().
1000 * Note that configfs_detach_prep() expects the parent to be locked when it
1001 * is called, but we lock the parent *inside* configfs_depend_prep(). We
1002 * do that so we can unlock it if we find nothing.
1003 *
1004 * Here we do a depth-first search of the dentry hierarchy looking for
Louis Rilling420118c2009-01-28 19:18:33 +01001005 * our object.
1006 * We deliberately ignore items tagged as dropping since they are virtually
1007 * dead, as well as items in the middle of attachment since they virtually
1008 * do not exist yet. This completes the locking out of racing mkdir() and
1009 * rmdir().
1010 * Note: subdirectories in the middle of attachment start with s_type =
1011 * CONFIGFS_DIR|CONFIGFS_USET_CREATING set by create_dir(). When
1012 * CONFIGFS_USET_CREATING is set, we ignore the item. The actual set of
1013 * s_type is in configfs_new_dirent(), which has configfs_dirent_lock.
Joel Becker631d1fe2007-06-18 18:06:09 -07001014 *
Louis Rilling420118c2009-01-28 19:18:33 +01001015 * If the target is not found, -ENOENT is bubbled up.
Joel Becker631d1fe2007-06-18 18:06:09 -07001016 *
1017 * This adds a requirement that all config_items be unique!
1018 *
Louis Rilling420118c2009-01-28 19:18:33 +01001019 * This is recursive. There isn't
Joel Becker631d1fe2007-06-18 18:06:09 -07001020 * much on the stack, though, so folks that need this function - be careful
1021 * about your stack! Patches will be accepted to make it iterative.
1022 */
1023static int configfs_depend_prep(struct dentry *origin,
1024 struct config_item *target)
1025{
Wei Yongjun49deb4b2013-02-21 16:42:43 -08001026 struct configfs_dirent *child_sd, *sd;
Joel Becker631d1fe2007-06-18 18:06:09 -07001027 int ret = 0;
1028
Wei Yongjun49deb4b2013-02-21 16:42:43 -08001029 BUG_ON(!origin || !origin->d_fsdata);
1030 sd = origin->d_fsdata;
Joel Becker631d1fe2007-06-18 18:06:09 -07001031
Joel Becker631d1fe2007-06-18 18:06:09 -07001032 if (sd->s_element == target) /* Boo-yah */
1033 goto out;
1034
1035 list_for_each_entry(child_sd, &sd->s_children, s_sibling) {
Louis Rilling420118c2009-01-28 19:18:33 +01001036 if ((child_sd->s_type & CONFIGFS_DIR) &&
1037 !(child_sd->s_type & CONFIGFS_USET_DROPPING) &&
1038 !(child_sd->s_type & CONFIGFS_USET_CREATING)) {
Joel Becker631d1fe2007-06-18 18:06:09 -07001039 ret = configfs_depend_prep(child_sd->s_dentry,
1040 target);
1041 if (!ret)
1042 goto out; /* Child path boo-yah */
1043 }
1044 }
1045
1046 /* We looped all our children and didn't find target */
Joel Becker631d1fe2007-06-18 18:06:09 -07001047 ret = -ENOENT;
1048
1049out:
1050 return ret;
1051}
1052
Joel Becker631d1fe2007-06-18 18:06:09 -07001053int configfs_depend_item(struct configfs_subsystem *subsys,
1054 struct config_item *target)
1055{
1056 int ret;
1057 struct configfs_dirent *p, *root_sd, *subsys_sd = NULL;
1058 struct config_item *s_item = &subsys->su_group.cg_item;
Al Virob7c177f2012-03-17 16:24:54 -04001059 struct dentry *root;
Joel Becker631d1fe2007-06-18 18:06:09 -07001060
1061 /*
1062 * Pin the configfs filesystem. This means we can safely access
1063 * the root of the configfs filesystem.
1064 */
Al Viro2a152ad2012-03-17 16:53:29 -04001065 root = configfs_pin_fs();
1066 if (IS_ERR(root))
1067 return PTR_ERR(root);
Joel Becker631d1fe2007-06-18 18:06:09 -07001068
1069 /*
1070 * Next, lock the root directory. We're going to check that the
1071 * subsystem is really registered, and so we need to lock out
1072 * configfs_[un]register_subsystem().
1073 */
Al Virob7c177f2012-03-17 16:24:54 -04001074 mutex_lock(&root->d_inode->i_mutex);
Joel Becker631d1fe2007-06-18 18:06:09 -07001075
Al Virob7c177f2012-03-17 16:24:54 -04001076 root_sd = root->d_fsdata;
Joel Becker631d1fe2007-06-18 18:06:09 -07001077
1078 list_for_each_entry(p, &root_sd->s_children, s_sibling) {
1079 if (p->s_type & CONFIGFS_DIR) {
1080 if (p->s_element == s_item) {
1081 subsys_sd = p;
1082 break;
1083 }
1084 }
1085 }
1086
1087 if (!subsys_sd) {
1088 ret = -ENOENT;
1089 goto out_unlock_fs;
1090 }
1091
1092 /* Ok, now we can trust subsys/s_item */
1093
Louis Rilling420118c2009-01-28 19:18:33 +01001094 spin_lock(&configfs_dirent_lock);
1095 /* Scan the tree, return 0 if found */
Joel Becker631d1fe2007-06-18 18:06:09 -07001096 ret = configfs_depend_prep(subsys_sd->s_dentry, target);
1097 if (ret)
Louis Rilling420118c2009-01-28 19:18:33 +01001098 goto out_unlock_dirent_lock;
Joel Becker631d1fe2007-06-18 18:06:09 -07001099
Louis Rilling420118c2009-01-28 19:18:33 +01001100 /*
1101 * We are sure that the item is not about to be removed by rmdir(), and
1102 * not in the middle of attachment by mkdir().
1103 */
Joel Becker631d1fe2007-06-18 18:06:09 -07001104 p = target->ci_dentry->d_fsdata;
1105 p->s_dependent_count += 1;
1106
Louis Rilling420118c2009-01-28 19:18:33 +01001107out_unlock_dirent_lock:
1108 spin_unlock(&configfs_dirent_lock);
Joel Becker631d1fe2007-06-18 18:06:09 -07001109out_unlock_fs:
Al Virob7c177f2012-03-17 16:24:54 -04001110 mutex_unlock(&root->d_inode->i_mutex);
Joel Becker631d1fe2007-06-18 18:06:09 -07001111
1112 /*
1113 * If we succeeded, the fs is pinned via other methods. If not,
1114 * we're done with it anyway. So release_fs() is always right.
1115 */
1116 configfs_release_fs();
1117
1118 return ret;
1119}
1120EXPORT_SYMBOL(configfs_depend_item);
1121
1122/*
1123 * Release the dependent linkage. This is much simpler than
1124 * configfs_depend_item() because we know that that the client driver is
1125 * pinned, thus the subsystem is pinned, and therefore configfs is pinned.
1126 */
1127void configfs_undepend_item(struct configfs_subsystem *subsys,
1128 struct config_item *target)
1129{
1130 struct configfs_dirent *sd;
1131
1132 /*
Louis Rilling420118c2009-01-28 19:18:33 +01001133 * Since we can trust everything is pinned, we just need
1134 * configfs_dirent_lock.
Joel Becker631d1fe2007-06-18 18:06:09 -07001135 */
Louis Rilling420118c2009-01-28 19:18:33 +01001136 spin_lock(&configfs_dirent_lock);
Joel Becker631d1fe2007-06-18 18:06:09 -07001137
1138 sd = target->ci_dentry->d_fsdata;
1139 BUG_ON(sd->s_dependent_count < 1);
1140
1141 sd->s_dependent_count -= 1;
1142
1143 /*
1144 * After this unlock, we cannot trust the item to stay alive!
1145 * DO NOT REFERENCE item after this unlock.
1146 */
Louis Rilling420118c2009-01-28 19:18:33 +01001147 spin_unlock(&configfs_dirent_lock);
Joel Becker631d1fe2007-06-18 18:06:09 -07001148}
1149EXPORT_SYMBOL(configfs_undepend_item);
Joel Becker7063fbf2005-12-15 14:29:43 -08001150
Al Viro18bb1db2011-07-26 01:41:39 -04001151static int configfs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
Joel Becker7063fbf2005-12-15 14:29:43 -08001152{
Joel Beckera6795e92008-07-17 15:21:29 -07001153 int ret = 0;
1154 int module_got = 0;
1155 struct config_group *group = NULL;
1156 struct config_item *item = NULL;
Joel Becker7063fbf2005-12-15 14:29:43 -08001157 struct config_item *parent_item;
1158 struct configfs_subsystem *subsys;
1159 struct configfs_dirent *sd;
1160 struct config_item_type *type;
Joel Becker70526b62008-06-17 15:34:32 -07001161 struct module *subsys_owner = NULL, *new_item_owner = NULL;
Joel Becker7063fbf2005-12-15 14:29:43 -08001162 char *name;
1163
Joel Becker7063fbf2005-12-15 14:29:43 -08001164 sd = dentry->d_parent->d_fsdata;
Louis Rilling2a109f22008-07-04 16:56:05 +02001165
1166 /*
1167 * Fake invisibility if dir belongs to a group/default groups hierarchy
1168 * being attached
1169 */
1170 if (!configfs_dirent_is_ready(sd)) {
1171 ret = -ENOENT;
1172 goto out;
1173 }
1174
Joel Becker84efad12006-03-27 18:46:09 -08001175 if (!(sd->s_type & CONFIGFS_USET_DIR)) {
1176 ret = -EPERM;
1177 goto out;
1178 }
Joel Becker7063fbf2005-12-15 14:29:43 -08001179
Joel Becker84efad12006-03-27 18:46:09 -08001180 /* Get a working ref for the duration of this function */
Joel Becker7063fbf2005-12-15 14:29:43 -08001181 parent_item = configfs_get_config_item(dentry->d_parent);
1182 type = parent_item->ci_type;
1183 subsys = to_config_group(parent_item)->cg_subsys;
1184 BUG_ON(!subsys);
1185
1186 if (!type || !type->ct_group_ops ||
1187 (!type->ct_group_ops->make_group &&
1188 !type->ct_group_ops->make_item)) {
Joel Becker84efad12006-03-27 18:46:09 -08001189 ret = -EPERM; /* Lack-of-mkdir returns -EPERM */
1190 goto out_put;
Joel Becker7063fbf2005-12-15 14:29:43 -08001191 }
1192
Joel Becker70526b62008-06-17 15:34:32 -07001193 /*
1194 * The subsystem may belong to a different module than the item
1195 * being created. We don't want to safely pin the new item but
1196 * fail to pin the subsystem it sits under.
1197 */
1198 if (!subsys->su_group.cg_item.ci_type) {
1199 ret = -EINVAL;
1200 goto out_put;
1201 }
1202 subsys_owner = subsys->su_group.cg_item.ci_type->ct_owner;
1203 if (!try_module_get(subsys_owner)) {
1204 ret = -EINVAL;
1205 goto out_put;
1206 }
1207
Joel Becker7063fbf2005-12-15 14:29:43 -08001208 name = kmalloc(dentry->d_name.len + 1, GFP_KERNEL);
1209 if (!name) {
Joel Becker84efad12006-03-27 18:46:09 -08001210 ret = -ENOMEM;
Joel Becker70526b62008-06-17 15:34:32 -07001211 goto out_subsys_put;
Joel Becker7063fbf2005-12-15 14:29:43 -08001212 }
Joel Becker84efad12006-03-27 18:46:09 -08001213
Joel Becker7063fbf2005-12-15 14:29:43 -08001214 snprintf(name, dentry->d_name.len + 1, "%s", dentry->d_name.name);
1215
Joel Beckere6bd07a2007-07-06 23:33:17 -07001216 mutex_lock(&subsys->su_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001217 if (type->ct_group_ops->make_group) {
Joel Beckerf89ab862008-07-17 14:53:48 -07001218 group = type->ct_group_ops->make_group(to_config_group(parent_item), name);
Joel Beckera6795e92008-07-17 15:21:29 -07001219 if (!group)
1220 group = ERR_PTR(-ENOMEM);
1221 if (!IS_ERR(group)) {
Joel Becker7063fbf2005-12-15 14:29:43 -08001222 link_group(to_config_group(parent_item), group);
1223 item = &group->cg_item;
Joel Beckera6795e92008-07-17 15:21:29 -07001224 } else
1225 ret = PTR_ERR(group);
Joel Becker7063fbf2005-12-15 14:29:43 -08001226 } else {
Joel Beckerf89ab862008-07-17 14:53:48 -07001227 item = type->ct_group_ops->make_item(to_config_group(parent_item), name);
Joel Beckera6795e92008-07-17 15:21:29 -07001228 if (!item)
1229 item = ERR_PTR(-ENOMEM);
1230 if (!IS_ERR(item))
Joel Becker7063fbf2005-12-15 14:29:43 -08001231 link_obj(parent_item, item);
Joel Beckera6795e92008-07-17 15:21:29 -07001232 else
1233 ret = PTR_ERR(item);
Joel Becker7063fbf2005-12-15 14:29:43 -08001234 }
Joel Beckere6bd07a2007-07-06 23:33:17 -07001235 mutex_unlock(&subsys->su_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001236
1237 kfree(name);
Joel Beckera6795e92008-07-17 15:21:29 -07001238 if (ret) {
Joel Beckereed7a0d2006-04-11 21:37:20 -07001239 /*
Joel Beckerdacdd0e2008-07-17 16:54:19 -07001240 * If ret != 0, then link_obj() was never called.
Joel Beckereed7a0d2006-04-11 21:37:20 -07001241 * There are no extra references to clean up.
1242 */
Joel Becker70526b62008-06-17 15:34:32 -07001243 goto out_subsys_put;
Joel Becker7063fbf2005-12-15 14:29:43 -08001244 }
1245
Joel Beckereed7a0d2006-04-11 21:37:20 -07001246 /*
1247 * link_obj() has been called (via link_group() for groups).
1248 * From here on out, errors must clean that up.
1249 */
1250
Joel Becker7063fbf2005-12-15 14:29:43 -08001251 type = item->ci_type;
Joel Beckereed7a0d2006-04-11 21:37:20 -07001252 if (!type) {
1253 ret = -EINVAL;
1254 goto out_unlink;
1255 }
Joel Becker7063fbf2005-12-15 14:29:43 -08001256
Joel Becker70526b62008-06-17 15:34:32 -07001257 new_item_owner = type->ct_owner;
1258 if (!try_module_get(new_item_owner)) {
Joel Beckereed7a0d2006-04-11 21:37:20 -07001259 ret = -EINVAL;
1260 goto out_unlink;
1261 }
Joel Becker7063fbf2005-12-15 14:29:43 -08001262
Joel Beckereed7a0d2006-04-11 21:37:20 -07001263 /*
1264 * I hate doing it this way, but if there is
1265 * an error, module_put() probably should
1266 * happen after any cleanup.
1267 */
1268 module_got = 1;
1269
Louis Rilling6d8344b2008-06-16 19:01:02 +02001270 /*
1271 * Make racing rmdir() fail if it did not tag parent with
1272 * CONFIGFS_USET_DROPPING
1273 * Note: if CONFIGFS_USET_DROPPING is already set, attach_group() will
1274 * fail and let rmdir() terminate correctly
1275 */
1276 spin_lock(&configfs_dirent_lock);
1277 /* This will make configfs_detach_prep() fail */
1278 sd->s_type |= CONFIGFS_USET_IN_MKDIR;
1279 spin_unlock(&configfs_dirent_lock);
1280
Joel Beckereed7a0d2006-04-11 21:37:20 -07001281 if (group)
1282 ret = configfs_attach_group(parent_item, item, dentry);
1283 else
1284 ret = configfs_attach_item(parent_item, item, dentry);
1285
Louis Rilling6d8344b2008-06-16 19:01:02 +02001286 spin_lock(&configfs_dirent_lock);
1287 sd->s_type &= ~CONFIGFS_USET_IN_MKDIR;
Louis Rilling2a109f22008-07-04 16:56:05 +02001288 if (!ret)
1289 configfs_dir_set_ready(dentry->d_fsdata);
Louis Rilling6d8344b2008-06-16 19:01:02 +02001290 spin_unlock(&configfs_dirent_lock);
1291
Joel Beckereed7a0d2006-04-11 21:37:20 -07001292out_unlink:
1293 if (ret) {
1294 /* Tear down everything we built up */
Joel Beckere6bd07a2007-07-06 23:33:17 -07001295 mutex_lock(&subsys->su_mutex);
Joel Becker299894c2006-10-06 17:33:23 -07001296
1297 client_disconnect_notify(parent_item, item);
Joel Beckereed7a0d2006-04-11 21:37:20 -07001298 if (group)
1299 unlink_group(group);
1300 else
1301 unlink_obj(item);
1302 client_drop_item(parent_item, item);
Joel Becker299894c2006-10-06 17:33:23 -07001303
Joel Beckere6bd07a2007-07-06 23:33:17 -07001304 mutex_unlock(&subsys->su_mutex);
Joel Beckereed7a0d2006-04-11 21:37:20 -07001305
1306 if (module_got)
Joel Becker70526b62008-06-17 15:34:32 -07001307 module_put(new_item_owner);
Joel Becker7063fbf2005-12-15 14:29:43 -08001308 }
1309
Joel Becker70526b62008-06-17 15:34:32 -07001310out_subsys_put:
1311 if (ret)
1312 module_put(subsys_owner);
1313
Joel Becker84efad12006-03-27 18:46:09 -08001314out_put:
1315 /*
Joel Beckereed7a0d2006-04-11 21:37:20 -07001316 * link_obj()/link_group() took a reference from child->parent,
1317 * so the parent is safely pinned. We can drop our working
1318 * reference.
Joel Becker84efad12006-03-27 18:46:09 -08001319 */
1320 config_item_put(parent_item);
1321
1322out:
Joel Becker7063fbf2005-12-15 14:29:43 -08001323 return ret;
1324}
1325
1326static int configfs_rmdir(struct inode *dir, struct dentry *dentry)
1327{
1328 struct config_item *parent_item;
1329 struct config_item *item;
1330 struct configfs_subsystem *subsys;
1331 struct configfs_dirent *sd;
Joel Becker70526b62008-06-17 15:34:32 -07001332 struct module *subsys_owner = NULL, *dead_item_owner = NULL;
Joel Becker7063fbf2005-12-15 14:29:43 -08001333 int ret;
1334
Joel Becker7063fbf2005-12-15 14:29:43 -08001335 sd = dentry->d_fsdata;
1336 if (sd->s_type & CONFIGFS_USET_DEFAULT)
1337 return -EPERM;
1338
Joel Becker84efad12006-03-27 18:46:09 -08001339 /* Get a working ref until we have the child */
Joel Becker7063fbf2005-12-15 14:29:43 -08001340 parent_item = configfs_get_config_item(dentry->d_parent);
1341 subsys = to_config_group(parent_item)->cg_subsys;
1342 BUG_ON(!subsys);
1343
1344 if (!parent_item->ci_type) {
1345 config_item_put(parent_item);
1346 return -EINVAL;
1347 }
1348
Joel Becker70526b62008-06-17 15:34:32 -07001349 /* configfs_mkdir() shouldn't have allowed this */
1350 BUG_ON(!subsys->su_group.cg_item.ci_type);
1351 subsys_owner = subsys->su_group.cg_item.ci_type->ct_owner;
1352
Louis Rilling9a73d782008-06-20 14:09:22 +02001353 /*
1354 * Ensure that no racing symlink() will make detach_prep() fail while
1355 * the new link is temporarily attached
1356 */
Louis Rilling6d8344b2008-06-16 19:01:02 +02001357 do {
1358 struct mutex *wait_mutex;
1359
Louis Rillingde6bf182008-08-15 12:37:23 -07001360 mutex_lock(&configfs_symlink_mutex);
1361 spin_lock(&configfs_dirent_lock);
Louis Rilling420118c2009-01-28 19:18:33 +01001362 /*
1363 * Here's where we check for dependents. We're protected by
1364 * configfs_dirent_lock.
1365 * If no dependent, atomically tag the item as dropping.
1366 */
1367 ret = sd->s_dependent_count ? -EBUSY : 0;
1368 if (!ret) {
1369 ret = configfs_detach_prep(dentry, &wait_mutex);
1370 if (ret)
1371 configfs_detach_rollback(dentry);
1372 }
Louis Rillingde6bf182008-08-15 12:37:23 -07001373 spin_unlock(&configfs_dirent_lock);
1374 mutex_unlock(&configfs_symlink_mutex);
1375
1376 if (ret) {
Louis Rilling6d8344b2008-06-16 19:01:02 +02001377 if (ret != -EAGAIN) {
1378 config_item_put(parent_item);
1379 return ret;
1380 }
1381
1382 /* Wait until the racing operation terminates */
1383 mutex_lock(wait_mutex);
1384 mutex_unlock(wait_mutex);
Louis Rilling6d8344b2008-06-16 19:01:02 +02001385 }
1386 } while (ret == -EAGAIN);
Joel Becker7063fbf2005-12-15 14:29:43 -08001387
Joel Becker84efad12006-03-27 18:46:09 -08001388 /* Get a working ref for the duration of this function */
Joel Becker7063fbf2005-12-15 14:29:43 -08001389 item = configfs_get_config_item(dentry);
1390
1391 /* Drop reference from above, item already holds one. */
1392 config_item_put(parent_item);
1393
1394 if (item->ci_type)
Joel Becker70526b62008-06-17 15:34:32 -07001395 dead_item_owner = item->ci_type->ct_owner;
Joel Becker7063fbf2005-12-15 14:29:43 -08001396
1397 if (sd->s_type & CONFIGFS_USET_DIR) {
1398 configfs_detach_group(item);
1399
Joel Beckere6bd07a2007-07-06 23:33:17 -07001400 mutex_lock(&subsys->su_mutex);
Joel Becker299894c2006-10-06 17:33:23 -07001401 client_disconnect_notify(parent_item, item);
Joel Becker7063fbf2005-12-15 14:29:43 -08001402 unlink_group(to_config_group(item));
1403 } else {
1404 configfs_detach_item(item);
1405
Joel Beckere6bd07a2007-07-06 23:33:17 -07001406 mutex_lock(&subsys->su_mutex);
Joel Becker299894c2006-10-06 17:33:23 -07001407 client_disconnect_notify(parent_item, item);
Joel Becker7063fbf2005-12-15 14:29:43 -08001408 unlink_obj(item);
1409 }
1410
1411 client_drop_item(parent_item, item);
Joel Beckere6bd07a2007-07-06 23:33:17 -07001412 mutex_unlock(&subsys->su_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001413
1414 /* Drop our reference from above */
1415 config_item_put(item);
1416
Joel Becker70526b62008-06-17 15:34:32 -07001417 module_put(dead_item_owner);
1418 module_put(subsys_owner);
Joel Becker7063fbf2005-12-15 14:29:43 -08001419
1420 return 0;
1421}
1422
Arjan van de Ven754661f2007-02-12 00:55:38 -08001423const struct inode_operations configfs_dir_inode_operations = {
Joel Becker7063fbf2005-12-15 14:29:43 -08001424 .mkdir = configfs_mkdir,
1425 .rmdir = configfs_rmdir,
1426 .symlink = configfs_symlink,
1427 .unlink = configfs_unlink,
1428 .lookup = configfs_lookup,
Joel Becker3d0f89b2006-01-25 13:31:07 -08001429 .setattr = configfs_setattr,
Joel Becker7063fbf2005-12-15 14:29:43 -08001430};
1431
Al Viro81d44ed12012-03-17 16:13:25 -04001432const struct inode_operations configfs_root_inode_operations = {
1433 .lookup = configfs_lookup,
1434 .setattr = configfs_setattr,
1435};
1436
Joel Becker7063fbf2005-12-15 14:29:43 -08001437#if 0
1438int configfs_rename_dir(struct config_item * item, const char *new_name)
1439{
1440 int error = 0;
1441 struct dentry * new_dentry, * parent;
1442
1443 if (!strcmp(config_item_name(item), new_name))
1444 return -EINVAL;
1445
1446 if (!item->parent)
1447 return -EINVAL;
1448
1449 down_write(&configfs_rename_sem);
1450 parent = item->parent->dentry;
1451
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001452 mutex_lock(&parent->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001453
1454 new_dentry = lookup_one_len(new_name, parent, strlen(new_name));
1455 if (!IS_ERR(new_dentry)) {
Joel Beckere7515d02006-03-10 11:42:30 -08001456 if (!new_dentry->d_inode) {
Joel Becker7063fbf2005-12-15 14:29:43 -08001457 error = config_item_set_name(item, "%s", new_name);
1458 if (!error) {
1459 d_add(new_dentry, NULL);
1460 d_move(item->dentry, new_dentry);
1461 }
1462 else
1463 d_delete(new_dentry);
1464 } else
1465 error = -EEXIST;
1466 dput(new_dentry);
1467 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001468 mutex_unlock(&parent->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001469 up_write(&configfs_rename_sem);
1470
1471 return error;
1472}
1473#endif
1474
1475static int configfs_dir_open(struct inode *inode, struct file *file)
1476{
Josef "Jeff" Sipek867fa492006-12-08 02:36:47 -08001477 struct dentry * dentry = file->f_path.dentry;
Joel Becker7063fbf2005-12-15 14:29:43 -08001478 struct configfs_dirent * parent_sd = dentry->d_fsdata;
Louis Rilling2a109f22008-07-04 16:56:05 +02001479 int err;
Joel Becker7063fbf2005-12-15 14:29:43 -08001480
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001481 mutex_lock(&dentry->d_inode->i_mutex);
Louis Rilling2a109f22008-07-04 16:56:05 +02001482 /*
1483 * Fake invisibility if dir belongs to a group/default groups hierarchy
1484 * being attached
1485 */
1486 err = -ENOENT;
1487 if (configfs_dirent_is_ready(parent_sd)) {
Louis Rilling420118c2009-01-28 19:18:33 +01001488 file->private_data = configfs_new_dirent(parent_sd, NULL, 0);
Louis Rilling2a109f22008-07-04 16:56:05 +02001489 if (IS_ERR(file->private_data))
1490 err = PTR_ERR(file->private_data);
1491 else
1492 err = 0;
1493 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001494 mutex_unlock(&dentry->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001495
Louis Rilling2a109f22008-07-04 16:56:05 +02001496 return err;
Joel Becker7063fbf2005-12-15 14:29:43 -08001497}
1498
1499static int configfs_dir_close(struct inode *inode, struct file *file)
1500{
Josef "Jeff" Sipek867fa492006-12-08 02:36:47 -08001501 struct dentry * dentry = file->f_path.dentry;
Joel Becker7063fbf2005-12-15 14:29:43 -08001502 struct configfs_dirent * cursor = file->private_data;
1503
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001504 mutex_lock(&dentry->d_inode->i_mutex);
Louis Rilling6f610762008-06-16 19:00:58 +02001505 spin_lock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -08001506 list_del_init(&cursor->s_sibling);
Louis Rilling6f610762008-06-16 19:00:58 +02001507 spin_unlock(&configfs_dirent_lock);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001508 mutex_unlock(&dentry->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001509
1510 release_configfs_dirent(cursor);
1511
1512 return 0;
1513}
1514
1515/* Relationship between s_mode and the DT_xxx types */
1516static inline unsigned char dt_type(struct configfs_dirent *sd)
1517{
1518 return (sd->s_mode >> 12) & 15;
1519}
1520
Al Viro52018852013-05-16 01:28:34 -04001521static int configfs_readdir(struct file *file, struct dir_context *ctx)
Joel Becker7063fbf2005-12-15 14:29:43 -08001522{
Al Viro52018852013-05-16 01:28:34 -04001523 struct dentry *dentry = file->f_path.dentry;
Al Virob7c177f2012-03-17 16:24:54 -04001524 struct super_block *sb = dentry->d_sb;
Joel Becker7063fbf2005-12-15 14:29:43 -08001525 struct configfs_dirent * parent_sd = dentry->d_fsdata;
Al Viro52018852013-05-16 01:28:34 -04001526 struct configfs_dirent *cursor = file->private_data;
Joel Becker7063fbf2005-12-15 14:29:43 -08001527 struct list_head *p, *q = &cursor->s_sibling;
Joel Becker24307aa2011-05-18 04:08:16 -07001528 ino_t ino = 0;
Joel Becker7063fbf2005-12-15 14:29:43 -08001529
Al Viro52018852013-05-16 01:28:34 -04001530 if (!dir_emit_dots(file, ctx))
1531 return 0;
1532 if (ctx->pos == 2) {
1533 spin_lock(&configfs_dirent_lock);
1534 list_move(q, &parent_sd->s_children);
1535 spin_unlock(&configfs_dirent_lock);
1536 }
1537 for (p = q->next; p != &parent_sd->s_children; p = p->next) {
1538 struct configfs_dirent *next;
1539 const char *name;
1540 int len;
1541 struct inode *inode = NULL;
Joel Becker7063fbf2005-12-15 14:29:43 -08001542
Al Viro52018852013-05-16 01:28:34 -04001543 next = list_entry(p, struct configfs_dirent, s_sibling);
1544 if (!next->s_element)
1545 continue;
Joel Becker7063fbf2005-12-15 14:29:43 -08001546
Al Viro52018852013-05-16 01:28:34 -04001547 name = configfs_get_name(next);
1548 len = strlen(name);
Joel Becker24307aa2011-05-18 04:08:16 -07001549
Al Viro52018852013-05-16 01:28:34 -04001550 /*
1551 * We'll have a dentry and an inode for
1552 * PINNED items and for open attribute
1553 * files. We lock here to prevent a race
1554 * with configfs_d_iput() clearing
1555 * s_dentry before calling iput().
1556 *
1557 * Why do we go to the trouble? If
1558 * someone has an attribute file open,
1559 * the inode number should match until
1560 * they close it. Beyond that, we don't
1561 * care.
1562 */
1563 spin_lock(&configfs_dirent_lock);
1564 dentry = next->s_dentry;
1565 if (dentry)
1566 inode = dentry->d_inode;
1567 if (inode)
1568 ino = inode->i_ino;
1569 spin_unlock(&configfs_dirent_lock);
1570 if (!inode)
1571 ino = iunique(sb, 2);
Joel Becker7063fbf2005-12-15 14:29:43 -08001572
Al Viro52018852013-05-16 01:28:34 -04001573 if (!dir_emit(ctx, name, len, ino, dt_type(next)))
1574 return 0;
Joel Becker7063fbf2005-12-15 14:29:43 -08001575
Al Viro52018852013-05-16 01:28:34 -04001576 spin_lock(&configfs_dirent_lock);
1577 list_move(q, p);
1578 spin_unlock(&configfs_dirent_lock);
1579 p = q;
1580 ctx->pos++;
Joel Becker7063fbf2005-12-15 14:29:43 -08001581 }
1582 return 0;
1583}
1584
Andrew Morton965c8e52012-12-17 15:59:39 -08001585static loff_t configfs_dir_lseek(struct file *file, loff_t offset, int whence)
Joel Becker7063fbf2005-12-15 14:29:43 -08001586{
Josef "Jeff" Sipek867fa492006-12-08 02:36:47 -08001587 struct dentry * dentry = file->f_path.dentry;
Joel Becker7063fbf2005-12-15 14:29:43 -08001588
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001589 mutex_lock(&dentry->d_inode->i_mutex);
Andrew Morton965c8e52012-12-17 15:59:39 -08001590 switch (whence) {
Joel Becker7063fbf2005-12-15 14:29:43 -08001591 case 1:
1592 offset += file->f_pos;
1593 case 0:
1594 if (offset >= 0)
1595 break;
1596 default:
Al Viro496ad9a2013-01-23 17:07:38 -05001597 mutex_unlock(&file_inode(file)->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001598 return -EINVAL;
1599 }
1600 if (offset != file->f_pos) {
1601 file->f_pos = offset;
1602 if (file->f_pos >= 2) {
1603 struct configfs_dirent *sd = dentry->d_fsdata;
1604 struct configfs_dirent *cursor = file->private_data;
1605 struct list_head *p;
1606 loff_t n = file->f_pos - 2;
1607
Louis Rilling6f610762008-06-16 19:00:58 +02001608 spin_lock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -08001609 list_del(&cursor->s_sibling);
1610 p = sd->s_children.next;
1611 while (n && p != &sd->s_children) {
1612 struct configfs_dirent *next;
1613 next = list_entry(p, struct configfs_dirent,
1614 s_sibling);
1615 if (next->s_element)
1616 n--;
1617 p = p->next;
1618 }
1619 list_add_tail(&cursor->s_sibling, p);
Louis Rilling6f610762008-06-16 19:00:58 +02001620 spin_unlock(&configfs_dirent_lock);
Joel Becker7063fbf2005-12-15 14:29:43 -08001621 }
1622 }
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001623 mutex_unlock(&dentry->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001624 return offset;
1625}
1626
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -08001627const struct file_operations configfs_dir_operations = {
Joel Becker7063fbf2005-12-15 14:29:43 -08001628 .open = configfs_dir_open,
1629 .release = configfs_dir_close,
1630 .llseek = configfs_dir_lseek,
1631 .read = generic_read_dir,
Al Viro52018852013-05-16 01:28:34 -04001632 .iterate = configfs_readdir,
Joel Becker7063fbf2005-12-15 14:29:43 -08001633};
1634
1635int configfs_register_subsystem(struct configfs_subsystem *subsys)
1636{
1637 int err;
1638 struct config_group *group = &subsys->su_group;
Joel Becker7063fbf2005-12-15 14:29:43 -08001639 struct dentry *dentry;
Al Virob7c177f2012-03-17 16:24:54 -04001640 struct dentry *root;
Joel Becker7063fbf2005-12-15 14:29:43 -08001641 struct configfs_dirent *sd;
1642
Al Viro2a152ad2012-03-17 16:53:29 -04001643 root = configfs_pin_fs();
1644 if (IS_ERR(root))
1645 return PTR_ERR(root);
Joel Becker7063fbf2005-12-15 14:29:43 -08001646
1647 if (!group->cg_item.ci_name)
1648 group->cg_item.ci_name = group->cg_item.ci_namebuf;
1649
Al Virob7c177f2012-03-17 16:24:54 -04001650 sd = root->d_fsdata;
Joel Becker7063fbf2005-12-15 14:29:43 -08001651 link_group(to_config_group(sd->s_element), group);
1652
Al Virob7c177f2012-03-17 16:24:54 -04001653 mutex_lock_nested(&root->d_inode->i_mutex, I_MUTEX_PARENT);
Joel Becker7063fbf2005-12-15 14:29:43 -08001654
Joel Becker7063fbf2005-12-15 14:29:43 -08001655 err = -ENOMEM;
Al Viroec193cf2013-07-14 17:16:52 +04001656 dentry = d_alloc_name(root, group->cg_item.ci_name);
Joel Beckerafdf04e2007-03-05 15:49:49 -08001657 if (dentry) {
1658 d_add(dentry, NULL);
Joel Becker7063fbf2005-12-15 14:29:43 -08001659
Joel Beckerafdf04e2007-03-05 15:49:49 -08001660 err = configfs_attach_group(sd->s_element, &group->cg_item,
1661 dentry);
1662 if (err) {
Joel Beckerdf7f9962011-02-22 01:09:49 -08001663 BUG_ON(dentry->d_inode);
1664 d_drop(dentry);
Joel Beckerafdf04e2007-03-05 15:49:49 -08001665 dput(dentry);
Louis Rilling2a109f22008-07-04 16:56:05 +02001666 } else {
1667 spin_lock(&configfs_dirent_lock);
1668 configfs_dir_set_ready(dentry->d_fsdata);
1669 spin_unlock(&configfs_dirent_lock);
Joel Beckerafdf04e2007-03-05 15:49:49 -08001670 }
1671 }
Joel Becker7063fbf2005-12-15 14:29:43 -08001672
Al Virob7c177f2012-03-17 16:24:54 -04001673 mutex_unlock(&root->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001674
Joel Beckerafdf04e2007-03-05 15:49:49 -08001675 if (err) {
1676 unlink_group(group);
1677 configfs_release_fs();
Joel Becker7063fbf2005-12-15 14:29:43 -08001678 }
1679
1680 return err;
1681}
1682
1683void configfs_unregister_subsystem(struct configfs_subsystem *subsys)
1684{
1685 struct config_group *group = &subsys->su_group;
1686 struct dentry *dentry = group->cg_item.ci_dentry;
Al Virob7c177f2012-03-17 16:24:54 -04001687 struct dentry *root = dentry->d_sb->s_root;
Joel Becker7063fbf2005-12-15 14:29:43 -08001688
Al Virob7c177f2012-03-17 16:24:54 -04001689 if (dentry->d_parent != root) {
Joel Becker7063fbf2005-12-15 14:29:43 -08001690 printk(KERN_ERR "configfs: Tried to unregister non-subsystem!\n");
1691 return;
1692 }
1693
Al Virob7c177f2012-03-17 16:24:54 -04001694 mutex_lock_nested(&root->d_inode->i_mutex,
Mark Fasheh55ed1602006-10-20 14:55:54 -07001695 I_MUTEX_PARENT);
1696 mutex_lock_nested(&dentry->d_inode->i_mutex, I_MUTEX_CHILD);
Louis Rilling9a73d782008-06-20 14:09:22 +02001697 mutex_lock(&configfs_symlink_mutex);
Louis Rillingb3e76af2008-06-16 19:01:01 +02001698 spin_lock(&configfs_dirent_lock);
Louis Rilling6d8344b2008-06-16 19:01:02 +02001699 if (configfs_detach_prep(dentry, NULL)) {
Joel Becker7063fbf2005-12-15 14:29:43 -08001700 printk(KERN_ERR "configfs: Tried to unregister non-empty subsystem!\n");
1701 }
Louis Rillingb3e76af2008-06-16 19:01:01 +02001702 spin_unlock(&configfs_dirent_lock);
Louis Rilling9a73d782008-06-20 14:09:22 +02001703 mutex_unlock(&configfs_symlink_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001704 configfs_detach_group(&group->cg_item);
1705 dentry->d_inode->i_flags |= S_DEAD;
Al Virod83c49f2010-04-30 17:17:09 -04001706 dont_mount(dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001707 mutex_unlock(&dentry->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001708
1709 d_delete(dentry);
1710
Al Virob7c177f2012-03-17 16:24:54 -04001711 mutex_unlock(&root->d_inode->i_mutex);
Joel Becker7063fbf2005-12-15 14:29:43 -08001712
1713 dput(dentry);
1714
1715 unlink_group(group);
1716 configfs_release_fs();
1717}
1718
1719EXPORT_SYMBOL(configfs_register_subsystem);
1720EXPORT_SYMBOL(configfs_unregister_subsystem);