attribute_container.c 12.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * attribute_container.c - implementation of a simple container for classes
 *
 * Copyright (c) 2005 - James Bottomley <James.Bottomley@steeleye.com>
 *
 * This file is licensed under GPLv2
 *
 * The basic idea here is to enable a device to be attached to an
 * aritrary numer of classes without having to allocate storage for them.
 * Instead, the contained classes select the devices they need to attach
 * to via a matching function.
 */

#include <linux/attribute_container.h>
#include <linux/device.h>
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/list.h>
#include <linux/module.h>
20
#include <linux/mutex.h>
L
Linus Torvalds 已提交
21

22 23
#include "base.h"

L
Linus Torvalds 已提交
24 25 26
/* This is a private structure used to tie the classdev and the
 * container .. it should never be visible outside this file */
struct internal_container {
27
	struct klist_node node;
L
Linus Torvalds 已提交
28
	struct attribute_container *cont;
29
	struct device classdev;
L
Linus Torvalds 已提交
30 31
};

32 33 34 35
static void internal_container_klist_get(struct klist_node *n)
{
	struct internal_container *ic =
		container_of(n, struct internal_container, node);
36
	get_device(&ic->classdev);
37 38 39 40 41 42
}

static void internal_container_klist_put(struct klist_node *n)
{
	struct internal_container *ic =
		container_of(n, struct internal_container, node);
43
	put_device(&ic->classdev);
44 45 46
}


L
Linus Torvalds 已提交
47 48 49 50 51 52 53 54
/**
 * attribute_container_classdev_to_container - given a classdev, return the container
 *
 * @classdev: the class device created by attribute_container_add_device.
 *
 * Returns the container associated with this classdev.
 */
struct attribute_container *
55
attribute_container_classdev_to_container(struct device *classdev)
L
Linus Torvalds 已提交
56 57 58 59 60 61 62
{
	struct internal_container *ic =
		container_of(classdev, struct internal_container, classdev);
	return ic->cont;
}
EXPORT_SYMBOL_GPL(attribute_container_classdev_to_container);

63
static LIST_HEAD(attribute_container_list);
L
Linus Torvalds 已提交
64

65
static DEFINE_MUTEX(attribute_container_mutex);
L
Linus Torvalds 已提交
66 67 68 69 70 71 72 73 74 75 76

/**
 * attribute_container_register - register an attribute container
 *
 * @cont: The container to register.  This must be allocated by the
 *        callee and should also be zeroed by it.
 */
int
attribute_container_register(struct attribute_container *cont)
{
	INIT_LIST_HEAD(&cont->node);
77
	klist_init(&cont->containers, internal_container_klist_get,
78
		   internal_container_klist_put);
79

80
	mutex_lock(&attribute_container_mutex);
L
Linus Torvalds 已提交
81
	list_add_tail(&cont->node, &attribute_container_list);
82
	mutex_unlock(&attribute_container_mutex);
L
Linus Torvalds 已提交
83 84 85 86 87 88 89 90 91 92 93 94 95 96

	return 0;
}
EXPORT_SYMBOL_GPL(attribute_container_register);

/**
 * attribute_container_unregister - remove a container registration
 *
 * @cont: previously registered container to remove
 */
int
attribute_container_unregister(struct attribute_container *cont)
{
	int retval = -EBUSY;
97
	mutex_lock(&attribute_container_mutex);
98 99
	spin_lock(&cont->containers.k_lock);
	if (!list_empty(&cont->containers.k_list))
L
Linus Torvalds 已提交
100 101 102 103
		goto out;
	retval = 0;
	list_del(&cont->node);
 out:
104
	spin_unlock(&cont->containers.k_lock);
105
	mutex_unlock(&attribute_container_mutex);
L
Linus Torvalds 已提交
106
	return retval;
107

L
Linus Torvalds 已提交
108 109 110 111
}
EXPORT_SYMBOL_GPL(attribute_container_unregister);

/* private function used as class release */
112
static void attribute_container_release(struct device *classdev)
L
Linus Torvalds 已提交
113
{
114
	struct internal_container *ic
L
Linus Torvalds 已提交
115
		= container_of(classdev, struct internal_container, classdev);
116
	struct device *dev = classdev->parent;
L
Linus Torvalds 已提交
117 118 119 120 121 122 123 124 125 126 127 128 129 130

	kfree(ic);
	put_device(dev);
}

/**
 * attribute_container_add_device - see if any container is interested in dev
 *
 * @dev: device to add attributes to
 * @fn:	 function to trigger addition of class device.
 *
 * This function allocates storage for the class device(s) to be
 * attached to dev (one for each matching attribute_container).  If no
 * fn is provided, the code will simply register the class device via
131
 * device_add.  If a function is provided, it is expected to add
L
Linus Torvalds 已提交
132 133 134 135
 * the class device at the appropriate time.  One of the things that
 * might be necessary is to allocate and initialise the classdev and
 * then add it a later time.  To do this, call this routine for
 * allocation and initialisation and then use
136
 * attribute_container_device_trigger() to call device_add() on
L
Linus Torvalds 已提交
137 138 139 140 141 142 143
 * it.  Note: after this, the class device contains a reference to dev
 * which is not relinquished until the release of the classdev.
 */
void
attribute_container_add_device(struct device *dev,
			       int (*fn)(struct attribute_container *,
					 struct device *,
144
					 struct device *))
L
Linus Torvalds 已提交
145 146 147
{
	struct attribute_container *cont;

148
	mutex_lock(&attribute_container_mutex);
L
Linus Torvalds 已提交
149 150 151 152 153 154 155 156
	list_for_each_entry(cont, &attribute_container_list, node) {
		struct internal_container *ic;

		if (attribute_container_no_classdevs(cont))
			continue;

		if (!cont->match(cont, dev))
			continue;
157 158

		ic = kzalloc(sizeof(*ic), GFP_KERNEL);
L
Linus Torvalds 已提交
159
		if (!ic) {
160
			dev_err(dev, "failed to allocate class container\n");
L
Linus Torvalds 已提交
161 162
			continue;
		}
163

L
Linus Torvalds 已提交
164
		ic->cont = cont;
165 166
		device_initialize(&ic->classdev);
		ic->classdev.parent = get_device(dev);
L
Linus Torvalds 已提交
167
		ic->classdev.class = cont->class;
168
		cont->class->dev_release = attribute_container_release;
169
		dev_set_name(&ic->classdev, "%s", dev_name(dev));
L
Linus Torvalds 已提交
170 171 172 173
		if (fn)
			fn(cont, dev, &ic->classdev);
		else
			attribute_container_add_class_device(&ic->classdev);
174
		klist_add_tail(&ic->node, &cont->containers);
L
Linus Torvalds 已提交
175
	}
176
	mutex_unlock(&attribute_container_mutex);
L
Linus Torvalds 已提交
177 178
}

179 180 181 182 183 184
/* FIXME: can't break out of this unless klist_iter_exit is also
 * called before doing the break
 */
#define klist_for_each_entry(pos, head, member, iter) \
	for (klist_iter_init(head, iter); (pos = ({ \
		struct klist_node *n = klist_next(iter); \
185 186
		n ? container_of(n, typeof(*pos), member) : \
			({ klist_iter_exit(iter) ; NULL; }); \
187
	})) != NULL;)
188

189

L
Linus Torvalds 已提交
190 191 192 193 194 195 196
/**
 * attribute_container_remove_device - make device eligible for removal.
 *
 * @dev:  The generic device
 * @fn:	  A function to call to remove the device
 *
 * This routine triggers device removal.  If fn is NULL, then it is
197
 * simply done via device_unregister (note that if something
L
Linus Torvalds 已提交
198 199 200 201
 * still has a reference to the classdev, then the memory occupied
 * will not be freed until the classdev is released).  If you want a
 * two phase release: remove from visibility and then delete the
 * device, then you should use this routine with a fn that calls
202 203
 * device_del() and then use attribute_container_device_trigger()
 * to do the final put on the classdev.
L
Linus Torvalds 已提交
204 205 206 207 208
 */
void
attribute_container_remove_device(struct device *dev,
				  void (*fn)(struct attribute_container *,
					     struct device *,
209
					     struct device *))
L
Linus Torvalds 已提交
210 211 212
{
	struct attribute_container *cont;

213
	mutex_lock(&attribute_container_mutex);
L
Linus Torvalds 已提交
214
	list_for_each_entry(cont, &attribute_container_list, node) {
215 216
		struct internal_container *ic;
		struct klist_iter iter;
L
Linus Torvalds 已提交
217 218 219 220 221 222

		if (attribute_container_no_classdevs(cont))
			continue;

		if (!cont->match(cont, dev))
			continue;
223 224

		klist_for_each_entry(ic, &cont->containers, node, &iter) {
225
			if (dev != ic->classdev.parent)
L
Linus Torvalds 已提交
226
				continue;
227
			klist_del(&ic->node);
L
Linus Torvalds 已提交
228 229 230 231
			if (fn)
				fn(cont, dev, &ic->classdev);
			else {
				attribute_container_remove_attrs(&ic->classdev);
232
				device_unregister(&ic->classdev);
L
Linus Torvalds 已提交
233 234 235
			}
		}
	}
236
	mutex_unlock(&attribute_container_mutex);
L
Linus Torvalds 已提交
237 238 239 240 241 242 243 244 245 246 247 248 249
}

/**
 * attribute_container_device_trigger - execute a trigger for each matching classdev
 *
 * @dev:  The generic device to run the trigger for
 * @fn	  the function to execute for each classdev.
 *
 * This funcion is for executing a trigger when you need to know both
 * the container and the classdev.  If you only care about the
 * container, then use attribute_container_trigger() instead.
 */
void
250
attribute_container_device_trigger(struct device *dev,
L
Linus Torvalds 已提交
251 252
				   int (*fn)(struct attribute_container *,
					     struct device *,
253
					     struct device *))
L
Linus Torvalds 已提交
254 255 256
{
	struct attribute_container *cont;

257
	mutex_lock(&attribute_container_mutex);
L
Linus Torvalds 已提交
258
	list_for_each_entry(cont, &attribute_container_list, node) {
259 260
		struct internal_container *ic;
		struct klist_iter iter;
L
Linus Torvalds 已提交
261 262 263 264

		if (!cont->match(cont, dev))
			continue;

265 266 267 268 269
		if (attribute_container_no_classdevs(cont)) {
			fn(cont, dev, NULL);
			continue;
		}

270
		klist_for_each_entry(ic, &cont->containers, node, &iter) {
271
			if (dev == ic->classdev.parent)
L
Linus Torvalds 已提交
272 273 274
				fn(cont, dev, &ic->classdev);
		}
	}
275
	mutex_unlock(&attribute_container_mutex);
L
Linus Torvalds 已提交
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
}

/**
 * attribute_container_trigger - trigger a function for each matching container
 *
 * @dev:  The generic device to activate the trigger for
 * @fn:	  the function to trigger
 *
 * This routine triggers a function that only needs to know the
 * matching containers (not the classdev) associated with a device.
 * It is more lightweight than attribute_container_device_trigger, so
 * should be used in preference unless the triggering function
 * actually needs to know the classdev.
 */
void
attribute_container_trigger(struct device *dev,
			    int (*fn)(struct attribute_container *,
				      struct device *))
{
	struct attribute_container *cont;

297
	mutex_lock(&attribute_container_mutex);
L
Linus Torvalds 已提交
298 299 300 301
	list_for_each_entry(cont, &attribute_container_list, node) {
		if (cont->match(cont, dev))
			fn(cont, dev);
	}
302
	mutex_unlock(&attribute_container_mutex);
L
Linus Torvalds 已提交
303 304 305 306 307 308 309 310 311 312 313
}

/**
 * attribute_container_add_attrs - add attributes
 *
 * @classdev: The class device
 *
 * This simply creates all the class device sysfs files from the
 * attributes listed in the container
 */
int
314
attribute_container_add_attrs(struct device *classdev)
L
Linus Torvalds 已提交
315 316 317
{
	struct attribute_container *cont =
		attribute_container_classdev_to_container(classdev);
318
	struct device_attribute **attrs = cont->attrs;
L
Linus Torvalds 已提交
319 320
	int i, error;

321 322 323
	BUG_ON(attrs && cont->grp);

	if (!attrs && !cont->grp)
L
Linus Torvalds 已提交
324 325
		return 0;

326 327 328
	if (cont->grp)
		return sysfs_create_group(&classdev->kobj, cont->grp);

L
Linus Torvalds 已提交
329
	for (i = 0; attrs[i]; i++) {
330
		sysfs_attr_init(&attrs[i]->attr);
331
		error = device_create_file(classdev, attrs[i]);
L
Linus Torvalds 已提交
332 333 334 335 336 337 338 339
		if (error)
			return error;
	}

	return 0;
}

/**
340
 * attribute_container_add_class_device - same function as device_add
L
Linus Torvalds 已提交
341 342 343
 *
 * @classdev:	the class device to add
 *
344
 * This performs essentially the same function as device_add except for
L
Linus Torvalds 已提交
345 346 347 348
 * attribute containers, namely add the classdev to the system and then
 * create the attribute files
 */
int
349
attribute_container_add_class_device(struct device *classdev)
L
Linus Torvalds 已提交
350
{
351
	int error = device_add(classdev);
L
Linus Torvalds 已提交
352 353 354 355 356 357 358 359 360 361 362 363 364 365
	if (error)
		return error;
	return attribute_container_add_attrs(classdev);
}

/**
 * attribute_container_add_class_device_adapter - simple adapter for triggers
 *
 * This function is identical to attribute_container_add_class_device except
 * that it is designed to be called from the triggers
 */
int
attribute_container_add_class_device_adapter(struct attribute_container *cont,
					     struct device *dev,
366
					     struct device *classdev)
L
Linus Torvalds 已提交
367 368 369 370 371 372 373 374 375 376 377
{
	return attribute_container_add_class_device(classdev);
}

/**
 * attribute_container_remove_attrs - remove any attribute files
 *
 * @classdev: The class device to remove the files from
 *
 */
void
378
attribute_container_remove_attrs(struct device *classdev)
L
Linus Torvalds 已提交
379 380 381
{
	struct attribute_container *cont =
		attribute_container_classdev_to_container(classdev);
382
	struct device_attribute **attrs = cont->attrs;
L
Linus Torvalds 已提交
383 384
	int i;

385
	if (!attrs && !cont->grp)
L
Linus Torvalds 已提交
386 387
		return;

388 389 390 391 392
	if (cont->grp) {
		sysfs_remove_group(&classdev->kobj, cont->grp);
		return ;
	}

L
Linus Torvalds 已提交
393
	for (i = 0; attrs[i]; i++)
394
		device_remove_file(classdev, attrs[i]);
L
Linus Torvalds 已提交
395 396 397 398 399 400 401 402
}

/**
 * attribute_container_class_device_del - equivalent of class_device_del
 *
 * @classdev: the class device
 *
 * This function simply removes all the attribute files and then calls
403
 * device_del.
L
Linus Torvalds 已提交
404 405
 */
void
406
attribute_container_class_device_del(struct device *classdev)
L
Linus Torvalds 已提交
407 408
{
	attribute_container_remove_attrs(classdev);
409
	device_del(classdev);
L
Linus Torvalds 已提交
410 411
}

412 413 414 415 416 417 418 419 420
/**
 * attribute_container_find_class_device - find the corresponding class_device
 *
 * @cont:	the container
 * @dev:	the generic device
 *
 * Looks up the device in the container's list of class devices and returns
 * the corresponding class_device.
 */
421
struct device *
422 423 424
attribute_container_find_class_device(struct attribute_container *cont,
				      struct device *dev)
{
425
	struct device *cdev = NULL;
426
	struct internal_container *ic;
427
	struct klist_iter iter;
428

429
	klist_for_each_entry(ic, &cont->containers, node, &iter) {
430
		if (ic->classdev.parent == dev) {
431
			cdev = &ic->classdev;
432 433
			/* FIXME: must exit iterator then break */
			klist_iter_exit(&iter);
434 435 436 437 438 439 440
			break;
		}
	}

	return cdev;
}
EXPORT_SYMBOL_GPL(attribute_container_find_class_device);