4 * Copyright (C) 1991, 1992 Linus Torvalds
7 #include <linux/init.h>
9 #include <linux/kdev_t.h>
10 #include <linux/slab.h>
11 #include <linux/string.h>
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>
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>
26 #include <linux/kmod.h>
31 * capabilities for /dev/mem, /dev/kmem and similar directly mappable character
33 * - permits shared-mmap for read, write and/or exec
34 * - does not permit private mmap in NOMMU mode (can't do COW)
35 * - no readahead or I/O queue unplugging required
37 struct backing_dev_info directly_mappable_cdev_bdi
= {
40 /* permit private copies of the data to be taken */
43 /* permit direct mmap, for read, write or exec */
45 BDI_CAP_READ_MAP
| BDI_CAP_WRITE_MAP
| BDI_CAP_EXEC_MAP
),
48 static struct kobj_map
*cdev_map
;
50 static DEFINE_MUTEX(chrdevs_lock
);
52 static struct char_device_struct
{
53 struct char_device_struct
*next
;
55 unsigned int baseminor
;
58 struct cdev
*cdev
; /* will die */
59 } *chrdevs
[CHRDEV_MAJOR_HASH_SIZE
];
61 /* index in the above */
62 static inline int major_to_index(int major
)
64 return major
% CHRDEV_MAJOR_HASH_SIZE
;
69 void chrdev_show(struct seq_file
*f
, off_t offset
)
71 struct char_device_struct
*cd
;
73 if (offset
< CHRDEV_MAJOR_HASH_SIZE
) {
74 mutex_lock(&chrdevs_lock
);
75 for (cd
= chrdevs
[offset
]; cd
; cd
= cd
->next
)
76 seq_printf(f
, "%3d %s\n", cd
->major
, cd
->name
);
77 mutex_unlock(&chrdevs_lock
);
81 #endif /* CONFIG_PROC_FS */
84 * Register a single major with a specified minor range.
86 * If major == 0 this functions will dynamically allocate a major and return
89 * If major > 0 this function will attempt to reserve the passed range of
90 * minors and will return zero on success.
92 * Returns a -ve errno on failure.
94 static struct char_device_struct
*
95 __register_chrdev_region(unsigned int major
, unsigned int baseminor
,
96 int minorct
, const char *name
)
98 struct char_device_struct
*cd
, **cp
;
102 cd
= kzalloc(sizeof(struct char_device_struct
), GFP_KERNEL
);
104 return ERR_PTR(-ENOMEM
);
106 mutex_lock(&chrdevs_lock
);
110 for (i
= ARRAY_SIZE(chrdevs
)-1; i
> 0; i
--) {
111 if (chrdevs
[i
] == NULL
)
124 cd
->baseminor
= baseminor
;
125 cd
->minorct
= minorct
;
126 strncpy(cd
->name
,name
, 64);
128 i
= major_to_index(major
);
130 for (cp
= &chrdevs
[i
]; *cp
; cp
= &(*cp
)->next
)
131 if ((*cp
)->major
> major
||
132 ((*cp
)->major
== major
&&
133 (((*cp
)->baseminor
>= baseminor
) ||
134 ((*cp
)->baseminor
+ (*cp
)->minorct
> baseminor
))))
137 /* Check for overlapping minor ranges. */
138 if (*cp
&& (*cp
)->major
== major
) {
139 int old_min
= (*cp
)->baseminor
;
140 int old_max
= (*cp
)->baseminor
+ (*cp
)->minorct
- 1;
141 int new_min
= baseminor
;
142 int new_max
= baseminor
+ minorct
- 1;
144 /* New driver overlaps from the left. */
145 if (new_max
>= old_min
&& new_max
<= old_max
) {
150 /* New driver overlaps from the right. */
151 if (new_min
<= old_max
&& new_min
>= old_min
) {
159 mutex_unlock(&chrdevs_lock
);
162 mutex_unlock(&chrdevs_lock
);
167 static struct char_device_struct
*
168 __unregister_chrdev_region(unsigned major
, unsigned baseminor
, int minorct
)
170 struct char_device_struct
*cd
= NULL
, **cp
;
171 int i
= major_to_index(major
);
173 mutex_lock(&chrdevs_lock
);
174 for (cp
= &chrdevs
[i
]; *cp
; cp
= &(*cp
)->next
)
175 if ((*cp
)->major
== major
&&
176 (*cp
)->baseminor
== baseminor
&&
177 (*cp
)->minorct
== minorct
)
183 mutex_unlock(&chrdevs_lock
);
188 * register_chrdev_region() - register a range of device numbers
189 * @from: the first in the desired range of device numbers; must include
191 * @count: the number of consecutive device numbers required
192 * @name: the name of the device or driver.
194 * Return value is zero on success, a negative error code on failure.
196 int register_chrdev_region(dev_t from
, unsigned count
, const char *name
)
198 struct char_device_struct
*cd
;
199 dev_t to
= from
+ count
;
202 for (n
= from
; n
< to
; n
= next
) {
203 next
= MKDEV(MAJOR(n
)+1, 0);
206 cd
= __register_chrdev_region(MAJOR(n
), MINOR(n
),
214 for (n
= from
; n
< to
; n
= next
) {
215 next
= MKDEV(MAJOR(n
)+1, 0);
216 kfree(__unregister_chrdev_region(MAJOR(n
), MINOR(n
), next
- n
));
222 * alloc_chrdev_region() - register a range of char device numbers
223 * @dev: output parameter for first assigned number
224 * @baseminor: first of the requested range of minor numbers
225 * @count: the number of minor numbers required
226 * @name: the name of the associated device or driver
228 * Allocates a range of char device numbers. The major number will be
229 * chosen dynamically, and returned (along with the first minor number)
230 * in @dev. Returns zero or a negative error code.
232 int alloc_chrdev_region(dev_t
*dev
, unsigned baseminor
, unsigned count
,
235 struct char_device_struct
*cd
;
236 cd
= __register_chrdev_region(0, baseminor
, count
, name
);
239 *dev
= MKDEV(cd
->major
, cd
->baseminor
);
244 * register_chrdev() - Register a major number for character devices.
245 * @major: major device number or 0 for dynamic allocation
246 * @name: name of this range of devices
247 * @fops: file operations associated with this devices
249 * If @major == 0 this functions will dynamically allocate a major and return
252 * If @major > 0 this function will attempt to reserve a device with the given
253 * major number and will return zero on success.
255 * Returns a -ve errno on failure.
257 * The name of this device has nothing to do with the name of the device in
258 * /dev. It only helps to keep track of the different owners of devices. If
259 * your module name has only one type of devices it's ok to use e.g. the name
260 * of the module here.
262 * This function registers a range of 256 minor numbers. The first minor number
265 int register_chrdev(unsigned int major
, const char *name
,
266 const struct file_operations
*fops
)
268 struct char_device_struct
*cd
;
273 cd
= __register_chrdev_region(major
, 0, 256, name
);
281 cdev
->owner
= fops
->owner
;
283 kobject_set_name(&cdev
->kobj
, "%s", name
);
284 for (s
= strchr(kobject_name(&cdev
->kobj
),'/'); s
; s
= strchr(s
, '/'))
287 err
= cdev_add(cdev
, MKDEV(cd
->major
, 0), 256);
293 return major
? 0 : cd
->major
;
295 kobject_put(&cdev
->kobj
);
297 kfree(__unregister_chrdev_region(cd
->major
, 0, 256));
302 * unregister_chrdev_region() - return a range of device numbers
303 * @from: the first in the range of numbers to unregister
304 * @count: the number of device numbers to unregister
306 * This function will unregister a range of @count device numbers,
307 * starting with @from. The caller should normally be the one who
308 * allocated those numbers in the first place...
310 void unregister_chrdev_region(dev_t from
, unsigned count
)
312 dev_t to
= from
+ count
;
315 for (n
= from
; n
< to
; n
= next
) {
316 next
= MKDEV(MAJOR(n
)+1, 0);
319 kfree(__unregister_chrdev_region(MAJOR(n
), MINOR(n
), next
- n
));
323 void unregister_chrdev(unsigned int major
, const char *name
)
325 struct char_device_struct
*cd
;
326 cd
= __unregister_chrdev_region(major
, 0, 256);
332 static DEFINE_SPINLOCK(cdev_lock
);
334 static struct kobject
*cdev_get(struct cdev
*p
)
336 struct module
*owner
= p
->owner
;
337 struct kobject
*kobj
;
339 if (owner
&& !try_module_get(owner
))
341 kobj
= kobject_get(&p
->kobj
);
347 void cdev_put(struct cdev
*p
)
350 struct module
*owner
= p
->owner
;
351 kobject_put(&p
->kobj
);
357 * Called every time a character special file is opened
359 static int chrdev_open(struct inode
*inode
, struct file
*filp
)
362 struct cdev
*new = NULL
;
365 spin_lock(&cdev_lock
);
368 struct kobject
*kobj
;
370 spin_unlock(&cdev_lock
);
371 kobj
= kobj_lookup(cdev_map
, inode
->i_rdev
, &idx
);
374 new = container_of(kobj
, struct cdev
, kobj
);
375 spin_lock(&cdev_lock
);
376 /* Check i_cdev again in case somebody beat us to it while
377 we dropped the lock. */
380 inode
->i_cdev
= p
= new;
381 inode
->i_cindex
= idx
;
382 list_add(&inode
->i_devices
, &p
->list
);
384 } else if (!cdev_get(p
))
386 } else if (!cdev_get(p
))
388 spin_unlock(&cdev_lock
);
392 filp
->f_op
= fops_get(p
->ops
);
397 if (filp
->f_op
->open
)
398 ret
= filp
->f_op
->open(inode
,filp
);
404 void cd_forget(struct inode
*inode
)
406 spin_lock(&cdev_lock
);
407 list_del_init(&inode
->i_devices
);
408 inode
->i_cdev
= NULL
;
409 spin_unlock(&cdev_lock
);
412 static void cdev_purge(struct cdev
*cdev
)
414 spin_lock(&cdev_lock
);
415 while (!list_empty(&cdev
->list
)) {
417 inode
= container_of(cdev
->list
.next
, struct inode
, i_devices
);
418 list_del_init(&inode
->i_devices
);
419 inode
->i_cdev
= NULL
;
421 spin_unlock(&cdev_lock
);
425 * Dummy default file-operations: the only thing this does
426 * is contain the open that then fills in the correct operations
427 * depending on the special file...
429 const struct file_operations def_chr_fops
= {
433 static struct kobject
*exact_match(dev_t dev
, int *part
, void *data
)
435 struct cdev
*p
= data
;
439 static int exact_lock(dev_t dev
, void *data
)
441 struct cdev
*p
= data
;
442 return cdev_get(p
) ? 0 : -1;
446 * cdev_add() - add a char device to the system
447 * @p: the cdev structure for the device
448 * @dev: the first device number for which this device is responsible
449 * @count: the number of consecutive minor numbers corresponding to this
452 * cdev_add() adds the device represented by @p to the system, making it
453 * live immediately. A negative error code is returned on failure.
455 int cdev_add(struct cdev
*p
, dev_t dev
, unsigned count
)
459 return kobj_map(cdev_map
, dev
, count
, NULL
, exact_match
, exact_lock
, p
);
462 static void cdev_unmap(dev_t dev
, unsigned count
)
464 kobj_unmap(cdev_map
, dev
, count
);
468 * cdev_del() - remove a cdev from the system
469 * @p: the cdev structure to be removed
471 * cdev_del() removes @p from the system, possibly freeing the structure
474 void cdev_del(struct cdev
*p
)
476 cdev_unmap(p
->dev
, p
->count
);
477 kobject_put(&p
->kobj
);
481 static void cdev_default_release(struct kobject
*kobj
)
483 struct cdev
*p
= container_of(kobj
, struct cdev
, kobj
);
487 static void cdev_dynamic_release(struct kobject
*kobj
)
489 struct cdev
*p
= container_of(kobj
, struct cdev
, kobj
);
494 static struct kobj_type ktype_cdev_default
= {
495 .release
= cdev_default_release
,
498 static struct kobj_type ktype_cdev_dynamic
= {
499 .release
= cdev_dynamic_release
,
503 * cdev_alloc() - allocate a cdev structure
505 * Allocates and returns a cdev structure, or NULL on failure.
507 struct cdev
*cdev_alloc(void)
509 struct cdev
*p
= kzalloc(sizeof(struct cdev
), GFP_KERNEL
);
511 INIT_LIST_HEAD(&p
->list
);
512 kobject_init(&p
->kobj
, &ktype_cdev_dynamic
);
518 * cdev_init() - initialize a cdev structure
519 * @cdev: the structure to initialize
520 * @fops: the file_operations for this device
522 * Initializes @cdev, remembering @fops, making it ready to add to the
523 * system with cdev_add().
525 void cdev_init(struct cdev
*cdev
, const struct file_operations
*fops
)
527 memset(cdev
, 0, sizeof *cdev
);
528 INIT_LIST_HEAD(&cdev
->list
);
529 kobject_init(&cdev
->kobj
, &ktype_cdev_default
);
533 static struct kobject
*base_probe(dev_t dev
, int *part
, void *data
)
535 if (request_module("char-major-%d-%d", MAJOR(dev
), MINOR(dev
)) > 0)
536 /* Make old-style 2.4 aliases work */
537 request_module("char-major-%d", MAJOR(dev
));
541 void __init
chrdev_init(void)
543 cdev_map
= kobj_map_init(base_probe
, &chrdevs_lock
);
544 bdi_init(&directly_mappable_cdev_bdi
);
548 /* Let modules do char dev stuff */
549 EXPORT_SYMBOL(register_chrdev_region
);
550 EXPORT_SYMBOL(unregister_chrdev_region
);
551 EXPORT_SYMBOL(alloc_chrdev_region
);
552 EXPORT_SYMBOL(cdev_init
);
553 EXPORT_SYMBOL(cdev_alloc
);
554 EXPORT_SYMBOL(cdev_del
);
555 EXPORT_SYMBOL(cdev_add
);
556 EXPORT_SYMBOL(register_chrdev
);
557 EXPORT_SYMBOL(unregister_chrdev
);
558 EXPORT_SYMBOL(directly_mappable_cdev_bdi
);