1
2
3
4
5
6
7#include <linux/init.h>
8#include <linux/fs.h>
9#include <linux/kdev_t.h>
10#include <linux/slab.h>
11#include <linux/string.h>
12
13#include <linux/major.h>
14#include <linux/errno.h>
15#include <linux/module.h>
16#include <linux/smp_lock.h>
17#include <linux/seq_file.h>
18
19#include <linux/kobject.h>
20#include <linux/kobj_map.h>
21#include <linux/cdev.h>
22#include <linux/mutex.h>
23#include <linux/backing-dev.h>
24
25#include "internal.h"
26
27
28
29
30
31
32
33
34struct backing_dev_info directly_mappable_cdev_bdi = {
35 .capabilities = (
36#ifdef CONFIG_MMU
37
38 BDI_CAP_MAP_COPY |
39#endif
40
41 BDI_CAP_MAP_DIRECT |
42 BDI_CAP_READ_MAP | BDI_CAP_WRITE_MAP | BDI_CAP_EXEC_MAP),
43};
44
45static struct kobj_map *cdev_map;
46
47static DEFINE_MUTEX(chrdevs_lock);
48
49static struct char_device_struct {
50 struct char_device_struct *next;
51 unsigned int major;
52 unsigned int baseminor;
53 int minorct;
54 char name[64];
55 struct cdev *cdev;
56} *chrdevs[CHRDEV_MAJOR_HASH_SIZE];
57
58
59static inline int major_to_index(int major)
60{
61 return major % CHRDEV_MAJOR_HASH_SIZE;
62}
63
64#ifdef CONFIG_PROC_FS
65
66void chrdev_show(struct seq_file *f, off_t offset)
67{
68 struct char_device_struct *cd;
69
70 if (offset < CHRDEV_MAJOR_HASH_SIZE) {
71 mutex_lock(&chrdevs_lock);
72 for (cd = chrdevs[offset]; cd; cd = cd->next)
73 seq_printf(f, "%3d %s\n", cd->major, cd->name);
74 mutex_unlock(&chrdevs_lock);
75 }
76}
77
78#endif
79
80
81
82
83
84
85
86
87
88
89
90
91static struct char_device_struct *
92__register_chrdev_region(unsigned int major, unsigned int baseminor,
93 int minorct, const char *name)
94{
95 struct char_device_struct *cd, **cp;
96 int ret = 0;
97 int i;
98
99 cd = kzalloc(sizeof(struct char_device_struct), GFP_KERNEL);
100 if (cd == NULL)
101 return ERR_PTR(-ENOMEM);
102
103 mutex_lock(&chrdevs_lock);
104
105
106 if (major == 0) {
107 for (i = ARRAY_SIZE(chrdevs)-1; i > 0; i--) {
108 if (chrdevs[i] == NULL)
109 break;
110 }
111
112 if (i == 0) {
113 ret = -EBUSY;
114 goto out;
115 }
116 major = i;
117 ret = major;
118 }
119
120 cd->major = major;
121 cd->baseminor = baseminor;
122 cd->minorct = minorct;
123 strlcpy(cd->name, name, sizeof(cd->name));
124
125 i = major_to_index(major);
126
127 for (cp = &chrdevs[i]; *cp; cp = &(*cp)->next)
128 if ((*cp)->major > major ||
129 ((*cp)->major == major &&
130 (((*cp)->baseminor >= baseminor) ||
131 ((*cp)->baseminor + (*cp)->minorct > baseminor))))
132 break;
133
134
135 if (*cp && (*cp)->major == major) {
136 int old_min = (*cp)->baseminor;
137 int old_max = (*cp)->baseminor + (*cp)->minorct - 1;
138 int new_min = baseminor;
139 int new_max = baseminor + minorct - 1;
140
141
142 if (new_max >= old_min && new_max <= old_max) {
143 ret = -EBUSY;
144 goto out;
145 }
146
147
148 if (new_min <= old_max && new_min >= old_min) {
149 ret = -EBUSY;
150 goto out;
151 }
152 }
153
154 cd->next = *cp;
155 *cp = cd;
156 mutex_unlock(&chrdevs_lock);
157 return cd;
158out:
159 mutex_unlock(&chrdevs_lock);
160 kfree(cd);
161 return ERR_PTR(ret);
162}
163
164static struct char_device_struct *
165__unregister_chrdev_region(unsigned major, unsigned baseminor, int minorct)
166{
167 struct char_device_struct *cd = NULL, **cp;
168 int i = major_to_index(major);
169
170 mutex_lock(&chrdevs_lock);
171 for (cp = &chrdevs[i]; *cp; cp = &(*cp)->next)
172 if ((*cp)->major == major &&
173 (*cp)->baseminor == baseminor &&
174 (*cp)->minorct == minorct)
175 break;
176 if (*cp) {
177 cd = *cp;
178 *cp = cd->next;
179 }
180 mutex_unlock(&chrdevs_lock);
181 return cd;
182}
183
184
185
186
187
188
189
190
191
192
193int register_chrdev_region(dev_t from, unsigned count, const char *name)
194{
195 struct char_device_struct *cd;
196 dev_t to = from + count;
197 dev_t n, next;
198
199 for (n = from; n < to; n = next) {
200 next = MKDEV(MAJOR(n)+1, 0);
201 if (next > to)
202 next = to;
203 cd = __register_chrdev_region(MAJOR(n), MINOR(n),
204 next - n, name);
205 if (IS_ERR(cd))
206 goto fail;
207 }
208 return 0;
209fail:
210 to = n;
211 for (n = from; n < to; n = next) {
212 next = MKDEV(MAJOR(n)+1, 0);
213 kfree(__unregister_chrdev_region(MAJOR(n), MINOR(n), next - n));
214 }
215 return PTR_ERR(cd);
216}
217
218
219
220
221
222
223
224
225
226
227
228
229int alloc_chrdev_region(dev_t *dev, unsigned baseminor, unsigned count,
230 const char *name)
231{
232 struct char_device_struct *cd;
233 cd = __register_chrdev_region(0, baseminor, count, name);
234 if (IS_ERR(cd))
235 return PTR_ERR(cd);
236 *dev = MKDEV(cd->major, cd->baseminor);
237 return 0;
238}
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262int register_chrdev(unsigned int major, const char *name,
263 const struct file_operations *fops)
264{
265 struct char_device_struct *cd;
266 struct cdev *cdev;
267 char *s;
268 int err = -ENOMEM;
269
270 cd = __register_chrdev_region(major, 0, 256, name);
271 if (IS_ERR(cd))
272 return PTR_ERR(cd);
273
274 cdev = cdev_alloc();
275 if (!cdev)
276 goto out2;
277
278 cdev->owner = fops->owner;
279 cdev->ops = fops;
280 kobject_set_name(&cdev->kobj, "%s", name);
281 for (s = strchr(kobject_name(&cdev->kobj),'/'); s; s = strchr(s, '/'))
282 *s = '!';
283
284 err = cdev_add(cdev, MKDEV(cd->major, 0), 256);
285 if (err)
286 goto out;
287
288 cd->cdev = cdev;
289
290 return major ? 0 : cd->major;
291out:
292 kobject_put(&cdev->kobj);
293out2:
294 kfree(__unregister_chrdev_region(cd->major, 0, 256));
295 return err;
296}
297
298
299
300
301
302
303
304
305
306
307void unregister_chrdev_region(dev_t from, unsigned count)
308{
309 dev_t to = from + count;
310 dev_t n, next;
311
312 for (n = from; n < to; n = next) {
313 next = MKDEV(MAJOR(n)+1, 0);
314 if (next > to)
315 next = to;
316 kfree(__unregister_chrdev_region(MAJOR(n), MINOR(n), next - n));
317 }
318}
319
320void unregister_chrdev(unsigned int major, const char *name)
321{
322 struct char_device_struct *cd;
323 cd = __unregister_chrdev_region(major, 0, 256);
324 if (cd && cd->cdev)
325 cdev_del(cd->cdev);
326 kfree(cd);
327}
328
329static DEFINE_SPINLOCK(cdev_lock);
330
331static struct kobject *cdev_get(struct cdev *p)
332{
333 struct module *owner = p->owner;
334 struct kobject *kobj;
335
336 if (owner && !try_module_get(owner))
337 return NULL;
338 kobj = kobject_get(&p->kobj);
339 if (!kobj)
340 module_put(owner);
341 return kobj;
342}
343
344void cdev_put(struct cdev *p)
345{
346 if (p) {
347 struct module *owner = p->owner;
348 kobject_put(&p->kobj);
349 module_put(owner);
350 }
351}
352
353
354
355
356static int chrdev_open(struct inode *inode, struct file *filp)
357{
358 struct cdev *p;
359 struct cdev *new = NULL;
360 int ret = 0;
361
362 spin_lock(&cdev_lock);
363 p = inode->i_cdev;
364 if (!p) {
365 struct kobject *kobj;
366 int idx;
367 spin_unlock(&cdev_lock);
368 kobj = kobj_lookup(cdev_map, inode->i_rdev, &idx);
369 if (!kobj)
370 return -ENXIO;
371 new = container_of(kobj, struct cdev, kobj);
372 spin_lock(&cdev_lock);
373
374
375 p = inode->i_cdev;
376 if (!p) {
377 inode->i_cdev = p = new;
378 inode->i_cindex = idx;
379 list_add(&inode->i_devices, &p->list);
380 new = NULL;
381 } else if (!cdev_get(p))
382 ret = -ENXIO;
383 } else if (!cdev_get(p))
384 ret = -ENXIO;
385 spin_unlock(&cdev_lock);
386 cdev_put(new);
387 if (ret)
388 return ret;
389
390 ret = -ENXIO;
391 filp->f_op = fops_get(p->ops);
392 if (!filp->f_op)
393 goto out_cdev_put;
394
395 if (filp->f_op->open) {
396 ret = filp->f_op->open(inode,filp);
397 if (ret)
398 goto out_cdev_put;
399 }
400
401 return 0;
402
403 out_cdev_put:
404 cdev_put(p);
405 return ret;
406}
407
408void cd_forget(struct inode *inode)
409{
410 spin_lock(&cdev_lock);
411 list_del_init(&inode->i_devices);
412 inode->i_cdev = NULL;
413 spin_unlock(&cdev_lock);
414}
415
416static void cdev_purge(struct cdev *cdev)
417{
418 spin_lock(&cdev_lock);
419 while (!list_empty(&cdev->list)) {
420 struct inode *inode;
421 inode = container_of(cdev->list.next, struct inode, i_devices);
422 list_del_init(&inode->i_devices);
423 inode->i_cdev = NULL;
424 }
425 spin_unlock(&cdev_lock);
426}
427
428
429
430
431
432
433const struct file_operations def_chr_fops = {
434 .open = chrdev_open,
435};
436
437static struct kobject *exact_match(dev_t dev, int *part, void *data)
438{
439 struct cdev *p = data;
440 return &p->kobj;
441}
442
443static int exact_lock(dev_t dev, void *data)
444{
445 struct cdev *p = data;
446 return cdev_get(p) ? 0 : -1;
447}
448
449
450
451
452
453
454
455
456
457
458
459int cdev_add(struct cdev *p, dev_t dev, unsigned count)
460{
461 p->dev = dev;
462 p->count = count;
463 return kobj_map(cdev_map, dev, count, NULL, exact_match, exact_lock, p);
464}
465
466static void cdev_unmap(dev_t dev, unsigned count)
467{
468 kobj_unmap(cdev_map, dev, count);
469}
470
471
472
473
474
475
476
477
478void cdev_del(struct cdev *p)
479{
480 cdev_unmap(p->dev, p->count);
481 kobject_put(&p->kobj);
482}
483
484
485static void cdev_default_release(struct kobject *kobj)
486{
487 struct cdev *p = container_of(kobj, struct cdev, kobj);
488 cdev_purge(p);
489}
490
491static void cdev_dynamic_release(struct kobject *kobj)
492{
493 struct cdev *p = container_of(kobj, struct cdev, kobj);
494 cdev_purge(p);
495 kfree(p);
496}
497
498static struct kobj_type ktype_cdev_default = {
499 .release = cdev_default_release,
500};
501
502static struct kobj_type ktype_cdev_dynamic = {
503 .release = cdev_dynamic_release,
504};
505
506
507
508
509
510
511struct cdev *cdev_alloc(void)
512{
513 struct cdev *p = kzalloc(sizeof(struct cdev), GFP_KERNEL);
514 if (p) {
515 INIT_LIST_HEAD(&p->list);
516 kobject_init(&p->kobj, &ktype_cdev_dynamic);
517 }
518 return p;
519}
520
521
522
523
524
525
526
527
528
529void cdev_init(struct cdev *cdev, const struct file_operations *fops)
530{
531 memset(cdev, 0, sizeof *cdev);
532 INIT_LIST_HEAD(&cdev->list);
533 kobject_init(&cdev->kobj, &ktype_cdev_default);
534 cdev->ops = fops;
535}
536
537static struct kobject *base_probe(dev_t dev, int *part, void *data)
538{
539 if (request_module("char-major-%d-%d", MAJOR(dev), MINOR(dev)) > 0)
540
541 request_module("char-major-%d", MAJOR(dev));
542 return NULL;
543}
544
545void __init chrdev_init(void)
546{
547 cdev_map = kobj_map_init(base_probe, &chrdevs_lock);
548 bdi_init(&directly_mappable_cdev_bdi);
549}
550
551
552
553EXPORT_SYMBOL(register_chrdev_region);
554EXPORT_SYMBOL(unregister_chrdev_region);
555EXPORT_SYMBOL(alloc_chrdev_region);
556EXPORT_SYMBOL(cdev_init);
557EXPORT_SYMBOL(cdev_alloc);
558EXPORT_SYMBOL(cdev_del);
559EXPORT_SYMBOL(cdev_add);
560EXPORT_SYMBOL(register_chrdev);
561EXPORT_SYMBOL(unregister_chrdev);
562EXPORT_SYMBOL(directly_mappable_cdev_bdi);
563