class.c 10.0 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>
21
#include <linux/mutex.h>
L
Linus Torvalds 已提交
22 23 24 25
#include "base.h"

#define to_class_attr(_attr) container_of(_attr, struct class_attribute, attr)

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

	if (class_attr->show)
34
		ret = class_attr->show(cp->class, buf);
L
Linus Torvalds 已提交
35 36 37
	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
	struct class_attribute *class_attr = to_class_attr(attr);
42
	struct class_private *cp = to_class(kobj);
43
	ssize_t ret = -EIO;
L
Linus Torvalds 已提交
44 45

	if (class_attr->store)
46
		ret = class_attr->store(cp->class, buf, count);
L
Linus Torvalds 已提交
47 48 49
	return ret;
}

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

	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,
};

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

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


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

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

95
static struct class *class_get(struct class *cls)
L
Linus Torvalds 已提交
96 97
{
	if (cls)
98
		kset_get(&cls->p->class_subsys);
99
	return cls;
L
Linus Torvalds 已提交
100 101
}

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

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

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

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

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

138
int __class_register(struct class *cls, struct lock_class_key *key)
L
Linus Torvalds 已提交
139
{
140
	struct class_private *cp;
L
Linus Torvalds 已提交
141 142 143 144
	int error;

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

145 146 147
	cp = kzalloc(sizeof(*cp), GFP_KERNEL);
	if (!cp)
		return -ENOMEM;
148
	INIT_LIST_HEAD(&cp->class_devices);
149
	INIT_LIST_HEAD(&cp->class_interfaces);
150
	kset_init(&cp->class_dirs);
151
	__mutex_init(&cp->class_mutex, "struct class mutex", key);
152
	error = kobject_set_name(&cp->class_subsys.kobj, "%s", cls->name);
153 154
	if (error) {
		kfree(cp);
L
Linus Torvalds 已提交
155
		return error;
156
	}
L
Linus Torvalds 已提交
157

158 159 160 161
	/* set the default /sys/dev directory for devices of this class */
	if (!cls->dev_kobj)
		cls->dev_kobj = sysfs_dev_char_kobj;

162
#if defined(CONFIG_SYSFS_DEPRECATED) && defined(CONFIG_BLOCK)
163 164
	/* let the block class directory show up in the root of sysfs */
	if (cls != &block_class)
165
		cp->class_subsys.kobj.kset = class_kset;
166
#else
167
	cp->class_subsys.kobj.kset = class_kset;
168
#endif
169
	cp->class_subsys.kobj.ktype = &class_ktype;
170 171
	cp->class = cls;
	cls->p = cp;
L
Linus Torvalds 已提交
172

173
	error = kset_register(&cp->class_subsys);
174 175 176
	if (error) {
		kfree(cp);
		return error;
L
Linus Torvalds 已提交
177
	}
178 179
	error = add_class_attrs(class_get(cls));
	class_put(cls);
L
Linus Torvalds 已提交
180 181
	return error;
}
182
EXPORT_SYMBOL_GPL(__class_register);
L
Linus Torvalds 已提交
183

184
void class_unregister(struct class *cls)
L
Linus Torvalds 已提交
185 186 187
{
	pr_debug("device class '%s': unregistering\n", cls->name);
	remove_class_attrs(cls);
188
	kset_unregister(&cls->p->class_subsys);
L
Linus Torvalds 已提交
189 190
}

191 192
static void class_create_release(struct class *cls)
{
193
	pr_debug("%s called for %s\n", __func__, cls->name);
194 195 196
	kfree(cls);
}

197 198 199 200 201 202
/**
 * 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
203
 * in calls to device_create().
204 205 206 207
 *
 * Note, the pointer created here is to be destroyed when finished by
 * making a call to class_destroy().
 */
208 209
struct class *__class_create(struct module *owner, const char *name,
			     struct lock_class_key *key)
210 211 212 213
{
	struct class *cls;
	int retval;

214
	cls = kzalloc(sizeof(*cls), GFP_KERNEL);
215 216 217 218 219 220 221 222 223
	if (!cls) {
		retval = -ENOMEM;
		goto error;
	}

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

224
	retval = __class_register(cls, key);
225 226 227 228 229 230 231 232 233
	if (retval)
		goto error;

	return cls;

error:
	kfree(cls);
	return ERR_PTR(retval);
}
234
EXPORT_SYMBOL_GPL(__class_create);
235

236 237
/**
 * class_destroy - destroys a struct class structure
238
 * @cls: pointer to the struct class that is to be destroyed
239 240 241 242
 *
 * Note, the pointer to be destroyed must have been created with a call
 * to class_create().
 */
243 244 245 246 247 248 249
void class_destroy(struct class *cls)
{
	if ((cls == NULL) || (IS_ERR(cls)))
		return;

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

251 252 253 254 255 256 257 258 259 260
#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)
261
		return NULL;
262 263 264 265 266 267 268 269

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

270 271 272
/**
 * class_for_each_device - device iterator
 * @class: the class we're iterating
273
 * @start: the device to start with in the list, if any.
274 275 276 277
 * @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,
278 279 280
 * 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.
281 282 283 284
 *
 * We check the return of @fn each time. If it returns anything
 * other than 0, we break out and return that value.
 *
285
 * Note, we hold class->class_mutex in this function, so it can not be
286 287 288
 * re-acquired in @fn, otherwise it will self-deadlocking. For
 * example, calls to add or remove class members would be verboten.
 */
289 290
int class_for_each_device(struct class *class, struct device *start,
			  void *data, int (*fn)(struct device *, void *))
291 292 293 294 295 296
{
	struct device *dev;
	int error = 0;

	if (!class)
		return -EINVAL;
297
	mutex_lock(&class->p->class_mutex);
298
	list_for_each_entry(dev, &class->p->class_devices, node) {
299 300 301 302 303
		if (start) {
			if (start == dev)
				start = NULL;
			continue;
		}
304
		dev = get_device(dev);
305 306
		error = fn(dev, data);
		put_device(dev);
307 308 309
		if (error)
			break;
	}
310
	mutex_unlock(&class->p->class_mutex);
311 312 313 314 315 316 317 318

	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
319
 * @start: Device to begin with
320 321 322 323 324 325 326 327 328 329
 * @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.
330
 *
331 332
 * Note, you will need to drop the reference with put_device() after use.
 *
333
 * We hold class->class_mutex in this function, so it can not be
334 335 336
 * re-acquired in @match, otherwise it will self-deadlocking. For
 * example, calls to add or remove class members would be verboten.
 */
337 338 339
struct device *class_find_device(struct class *class, struct device *start,
				 void *data,
				 int (*match)(struct device *, void *))
340 341 342 343 344 345 346
{
	struct device *dev;
	int found = 0;

	if (!class)
		return NULL;

347
	mutex_lock(&class->p->class_mutex);
348
	list_for_each_entry(dev, &class->p->class_devices, node) {
349 350 351 352 353
		if (start) {
			if (start == dev)
				start = NULL;
			continue;
		}
354
		dev = get_device(dev);
355 356
		if (match(dev, data)) {
			found = 1;
357
			break;
358 359
		} else
			put_device(dev);
360
	}
361
	mutex_unlock(&class->p->class_mutex);
362 363 364 365 366

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

L
Linus Torvalds 已提交
367 368 369
int class_interface_register(struct class_interface *class_intf)
{
	struct class *parent;
370
	struct device *dev;
L
Linus Torvalds 已提交
371 372 373 374 375 376 377 378

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

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

379
	mutex_lock(&parent->p->class_mutex);
380
	list_add_tail(&class_intf->node, &parent->p->class_interfaces);
381
	if (class_intf->add_dev) {
382
		list_for_each_entry(dev, &parent->p->class_devices, node)
383 384
			class_intf->add_dev(dev, class_intf);
	}
385
	mutex_unlock(&parent->p->class_mutex);
L
Linus Torvalds 已提交
386 387 388 389 390 391

	return 0;
}

void class_interface_unregister(struct class_interface *class_intf)
{
392
	struct class *parent = class_intf->class;
393
	struct device *dev;
L
Linus Torvalds 已提交
394 395 396 397

	if (!parent)
		return;

398
	mutex_lock(&parent->p->class_mutex);
L
Linus Torvalds 已提交
399
	list_del_init(&class_intf->node);
400
	if (class_intf->remove_dev) {
401
		list_for_each_entry(dev, &parent->p->class_devices, node)
402 403
			class_intf->remove_dev(dev, class_intf);
	}
404
	mutex_unlock(&parent->p->class_mutex);
L
Linus Torvalds 已提交
405 406 407 408 409 410

	class_put(parent);
}

int __init classes_init(void)
{
411 412 413
	class_kset = kset_create_and_add("class", NULL, NULL);
	if (!class_kset)
		return -ENOMEM;
L
Linus Torvalds 已提交
414 415 416 417 418 419
	return 0;
}

EXPORT_SYMBOL_GPL(class_create_file);
EXPORT_SYMBOL_GPL(class_remove_file);
EXPORT_SYMBOL_GPL(class_unregister);
420
EXPORT_SYMBOL_GPL(class_destroy);
L
Linus Torvalds 已提交
421 422 423

EXPORT_SYMBOL_GPL(class_interface_register);
EXPORT_SYMBOL_GPL(class_interface_unregister);