class.c 9.4 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * class.c - basic device class management
 *
 * Copyright (c) 2002-3 Patrick Mochel
 * Copyright (c) 2002-3 Open Source Development Labs
 * Copyright (c) 2003-2004 Greg Kroah-Hartman
 * Copyright (c) 2003-2004 IBM Corp.
 *
 * This file is released under the GPLv2
 *
 */

#include <linux/device.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/string.h>
#include <linux/kdev_t.h>
18
#include <linux/err.h>
T
Tim Schmielau 已提交
19
#include <linux/slab.h>
20
#include <linux/genhd.h>
L
Linus Torvalds 已提交
21 22 23
#include "base.h"

#define to_class_attr(_attr) container_of(_attr, struct class_attribute, attr)
24
#define to_class(obj) container_of(obj, struct class, subsys.kobj)
L
Linus Torvalds 已提交
25

26 27
static ssize_t class_attr_show(struct kobject *kobj, struct attribute *attr,
			       char *buf)
L
Linus Torvalds 已提交
28
{
29 30
	struct class_attribute *class_attr = to_class_attr(attr);
	struct class *dc = to_class(kobj);
31
	ssize_t ret = -EIO;
L
Linus Torvalds 已提交
32 33 34 35 36 37

	if (class_attr->show)
		ret = class_attr->show(dc, buf);
	return ret;
}

38 39
static ssize_t class_attr_store(struct kobject *kobj, struct attribute *attr,
				const char *buf, size_t count)
L
Linus Torvalds 已提交
40
{
41 42
	struct class_attribute *class_attr = to_class_attr(attr);
	struct class *dc = to_class(kobj);
43
	ssize_t ret = -EIO;
L
Linus Torvalds 已提交
44 45 46 47 48 49

	if (class_attr->store)
		ret = class_attr->store(dc, buf, count);
	return ret;
}

50
static void class_release(struct kobject *kobj)
L
Linus Torvalds 已提交
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
{
	struct class *class = to_class(kobj);

	pr_debug("class '%s': release.\n", class->name);

	if (class->class_release)
		class->class_release(class);
	else
		pr_debug("class '%s' does not have a release() function, "
			 "be careful\n", class->name);
}

static struct sysfs_ops class_sysfs_ops = {
	.show	= class_attr_show,
	.store	= class_attr_store,
};

68
static struct kobj_type class_ktype = {
L
Linus Torvalds 已提交
69 70 71 72 73
	.sysfs_ops	= &class_sysfs_ops,
	.release	= class_release,
};

/* Hotplug events for classes go to the class_obj subsys */
74
static struct kset *class_kset;
L
Linus Torvalds 已提交
75 76


77
int class_create_file(struct class *cls, const struct class_attribute *attr)
L
Linus Torvalds 已提交
78 79
{
	int error;
80
	if (cls)
81
		error = sysfs_create_file(&cls->subsys.kobj, &attr->attr);
82
	else
L
Linus Torvalds 已提交
83 84 85 86
		error = -EINVAL;
	return error;
}

87
void class_remove_file(struct class *cls, const struct class_attribute *attr)
L
Linus Torvalds 已提交
88 89
{
	if (cls)
90
		sysfs_remove_file(&cls->subsys.kobj, &attr->attr);
L
Linus Torvalds 已提交
91 92
}

93
static struct class *class_get(struct class *cls)
L
Linus Torvalds 已提交
94 95
{
	if (cls)
96 97
		return container_of(kset_get(&cls->subsys),
				    struct class, subsys);
L
Linus Torvalds 已提交
98 99 100
	return NULL;
}

101
static void class_put(struct class *cls)
L
Linus Torvalds 已提交
102
{
103
	if (cls)
104
		kset_put(&cls->subsys);
L
Linus Torvalds 已提交
105 106
}

107
static int add_class_attrs(struct class *cls)
L
Linus Torvalds 已提交
108 109 110 111 112 113
{
	int i;
	int error = 0;

	if (cls->class_attrs) {
		for (i = 0; attr_name(cls->class_attrs[i]); i++) {
114
			error = class_create_file(cls, &cls->class_attrs[i]);
L
Linus Torvalds 已提交
115
			if (error)
116
				goto error;
L
Linus Torvalds 已提交
117 118
		}
	}
119
done:
L
Linus Torvalds 已提交
120
	return error;
121
error:
L
Linus Torvalds 已提交
122
	while (--i >= 0)
123 124
		class_remove_file(cls, &cls->class_attrs[i]);
	goto done;
L
Linus Torvalds 已提交
125 126
}

127
static void remove_class_attrs(struct class *cls)
L
Linus Torvalds 已提交
128 129 130 131 132
{
	int i;

	if (cls->class_attrs) {
		for (i = 0; attr_name(cls->class_attrs[i]); i++)
133
			class_remove_file(cls, &cls->class_attrs[i]);
L
Linus Torvalds 已提交
134 135 136
	}
}

137
int class_register(struct class *cls)
L
Linus Torvalds 已提交
138 139 140 141 142
{
	int error;

	pr_debug("device class '%s': registering\n", cls->name);

143
	INIT_LIST_HEAD(&cls->devices);
L
Linus Torvalds 已提交
144
	INIT_LIST_HEAD(&cls->interfaces);
145
	kset_init(&cls->class_dirs);
L
Linus Torvalds 已提交
146
	init_MUTEX(&cls->sem);
147
	error = kobject_set_name(&cls->subsys.kobj, "%s", cls->name);
L
Linus Torvalds 已提交
148 149 150
	if (error)
		return error;

151 152 153 154
	/* set the default /sys/dev directory for devices of this class */
	if (!cls->dev_kobj)
		cls->dev_kobj = sysfs_dev_char_kobj;

155
#if defined(CONFIG_SYSFS_DEPRECATED) && defined(CONFIG_BLOCK)
156 157 158 159
	/* let the block class directory show up in the root of sysfs */
	if (cls != &block_class)
		cls->subsys.kobj.kset = class_kset;
#else
160
	cls->subsys.kobj.kset = class_kset;
161
#endif
162
	cls->subsys.kobj.ktype = &class_ktype;
L
Linus Torvalds 已提交
163

164
	error = kset_register(&cls->subsys);
L
Linus Torvalds 已提交
165 166 167 168 169 170 171
	if (!error) {
		error = add_class_attrs(class_get(cls));
		class_put(cls);
	}
	return error;
}

172
void class_unregister(struct class *cls)
L
Linus Torvalds 已提交
173 174 175
{
	pr_debug("device class '%s': unregistering\n", cls->name);
	remove_class_attrs(cls);
176
	kset_unregister(&cls->subsys);
L
Linus Torvalds 已提交
177 178
}

179 180
static void class_create_release(struct class *cls)
{
181
	pr_debug("%s called for %s\n", __func__, cls->name);
182 183 184
	kfree(cls);
}

185 186 187 188 189 190
/**
 * class_create - create a struct class structure
 * @owner: pointer to the module that is to "own" this struct class
 * @name: pointer to a string for the name of this class.
 *
 * This is used to create a struct class pointer that can then be used
191
 * in calls to device_create().
192 193 194 195
 *
 * Note, the pointer created here is to be destroyed when finished by
 * making a call to class_destroy().
 */
196
struct class *class_create(struct module *owner, const char *name)
197 198 199 200
{
	struct class *cls;
	int retval;

201
	cls = kzalloc(sizeof(*cls), GFP_KERNEL);
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
	if (!cls) {
		retval = -ENOMEM;
		goto error;
	}

	cls->name = name;
	cls->owner = owner;
	cls->class_release = class_create_release;

	retval = class_register(cls);
	if (retval)
		goto error;

	return cls;

error:
	kfree(cls);
	return ERR_PTR(retval);
}

222 223
/**
 * class_destroy - destroys a struct class structure
224
 * @cls: pointer to the struct class that is to be destroyed
225 226 227 228
 *
 * Note, the pointer to be destroyed must have been created with a call
 * to class_create().
 */
229 230 231 232 233 234 235
void class_destroy(struct class *cls)
{
	if ((cls == NULL) || (IS_ERR(cls)))
		return;

	class_unregister(cls);
}
L
Linus Torvalds 已提交
236

237 238 239 240 241 242 243 244 245 246
#ifdef CONFIG_SYSFS_DEPRECATED
char *make_class_name(const char *name, struct kobject *kobj)
{
	char *class_name;
	int size;

	size = strlen(name) + strlen(kobject_name(kobj)) + 2;

	class_name = kmalloc(size, GFP_KERNEL);
	if (!class_name)
247
		return NULL;
248 249 250 251 252 253 254 255

	strcpy(class_name, name);
	strcat(class_name, ":");
	strcat(class_name, kobject_name(kobj));
	return class_name;
}
#endif

256 257 258
/**
 * class_for_each_device - device iterator
 * @class: the class we're iterating
259
 * @start: the device to start with in the list, if any.
260 261 262 263
 * @data: data for the callback
 * @fn: function to be called for each device
 *
 * Iterate over @class's list of devices, and call @fn for each,
264 265 266
 * passing it @data.  If @start is set, the list iteration will start
 * there, otherwise if it is NULL, the iteration starts at the
 * beginning of the list.
267 268 269 270 271 272 273 274
 *
 * We check the return of @fn each time. If it returns anything
 * other than 0, we break out and return that value.
 *
 * Note, we hold class->sem in this function, so it can not be
 * re-acquired in @fn, otherwise it will self-deadlocking. For
 * example, calls to add or remove class members would be verboten.
 */
275 276
int class_for_each_device(struct class *class, struct device *start,
			  void *data, int (*fn)(struct device *, void *))
277 278 279 280 281 282 283 284
{
	struct device *dev;
	int error = 0;

	if (!class)
		return -EINVAL;
	down(&class->sem);
	list_for_each_entry(dev, &class->devices, node) {
285 286 287 288 289
		if (start) {
			if (start == dev)
				start = NULL;
			continue;
		}
290
		dev = get_device(dev);
291 292
		error = fn(dev, data);
		put_device(dev);
293 294 295 296 297 298 299 300 301 302 303 304
		if (error)
			break;
	}
	up(&class->sem);

	return error;
}
EXPORT_SYMBOL_GPL(class_for_each_device);

/**
 * class_find_device - device iterator for locating a particular device
 * @class: the class we're iterating
305
 * @start: Device to begin with
306 307 308 309 310 311 312 313 314 315
 * @data: data for the match function
 * @match: function to check device
 *
 * This is similar to the class_for_each_dev() function above, but it
 * returns a reference to a device that is 'found' for later use, as
 * determined by the @match callback.
 *
 * The callback should return 0 if the device doesn't match and non-zero
 * if it does.  If the callback returns non-zero, this function will
 * return to the caller and not iterate over any more devices.
316
 *
317 318 319 320 321 322
 * Note, you will need to drop the reference with put_device() after use.
 *
 * We hold class->sem in this function, so it can not be
 * re-acquired in @match, otherwise it will self-deadlocking. For
 * example, calls to add or remove class members would be verboten.
 */
323 324 325
struct device *class_find_device(struct class *class, struct device *start,
				 void *data,
				 int (*match)(struct device *, void *))
326 327 328 329 330 331 332 333 334
{
	struct device *dev;
	int found = 0;

	if (!class)
		return NULL;

	down(&class->sem);
	list_for_each_entry(dev, &class->devices, node) {
335 336 337 338 339
		if (start) {
			if (start == dev)
				start = NULL;
			continue;
		}
340
		dev = get_device(dev);
341 342
		if (match(dev, data)) {
			found = 1;
343
			break;
344 345
		} else
			put_device(dev);
346 347 348 349 350 351 352
	}
	up(&class->sem);

	return found ? dev : NULL;
}
EXPORT_SYMBOL_GPL(class_find_device);

L
Linus Torvalds 已提交
353 354 355
int class_interface_register(struct class_interface *class_intf)
{
	struct class *parent;
356
	struct device *dev;
L
Linus Torvalds 已提交
357 358 359 360 361 362 363 364 365 366

	if (!class_intf || !class_intf->class)
		return -ENODEV;

	parent = class_get(class_intf->class);
	if (!parent)
		return -EINVAL;

	down(&parent->sem);
	list_add_tail(&class_intf->node, &parent->interfaces);
367 368 369 370
	if (class_intf->add_dev) {
		list_for_each_entry(dev, &parent->devices, node)
			class_intf->add_dev(dev, class_intf);
	}
L
Linus Torvalds 已提交
371 372 373 374 375 376 377
	up(&parent->sem);

	return 0;
}

void class_interface_unregister(struct class_interface *class_intf)
{
378
	struct class *parent = class_intf->class;
379
	struct device *dev;
L
Linus Torvalds 已提交
380 381 382 383 384 385

	if (!parent)
		return;

	down(&parent->sem);
	list_del_init(&class_intf->node);
386 387 388 389
	if (class_intf->remove_dev) {
		list_for_each_entry(dev, &parent->devices, node)
			class_intf->remove_dev(dev, class_intf);
	}
L
Linus Torvalds 已提交
390 391 392 393 394 395 396
	up(&parent->sem);

	class_put(parent);
}

int __init classes_init(void)
{
397 398 399
	class_kset = kset_create_and_add("class", NULL, NULL);
	if (!class_kset)
		return -ENOMEM;
L
Linus Torvalds 已提交
400 401 402 403 404 405 406
	return 0;
}

EXPORT_SYMBOL_GPL(class_create_file);
EXPORT_SYMBOL_GPL(class_remove_file);
EXPORT_SYMBOL_GPL(class_register);
EXPORT_SYMBOL_GPL(class_unregister);
407 408
EXPORT_SYMBOL_GPL(class_create);
EXPORT_SYMBOL_GPL(class_destroy);
L
Linus Torvalds 已提交
409 410 411

EXPORT_SYMBOL_GPL(class_interface_register);
EXPORT_SYMBOL_GPL(class_interface_unregister);