misc.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. /*
  2. * linux/drivers/char/misc.c
  3. *
  4. * Generic misc open routine by Johan Myreen
  5. *
  6. * Based on code from Linus
  7. *
  8. * Teemu Rantanen's Microsoft Busmouse support and Derrick Cole's
  9. * changes incorporated into 0.97pl4
  10. * by Peter Cervasio (pete%q106fm.uucp@wupost.wustl.edu) (08SEP92)
  11. * See busmouse.c for particulars.
  12. *
  13. * Made things a lot mode modular - easy to compile in just one or two
  14. * of the misc drivers, as they are now completely independent. Linus.
  15. *
  16. * Support for loadable modules. 8-Sep-95 Philip Blundell <pjb27@cam.ac.uk>
  17. *
  18. * Fixed a failing symbol register to free the device registration
  19. * Alan Cox <alan@lxorguk.ukuu.org.uk> 21-Jan-96
  20. *
  21. * Dynamic minors and /proc/mice by Alessandro Rubini. 26-Mar-96
  22. *
  23. * Renamed to misc and miscdevice to be more accurate. Alan Cox 26-Mar-96
  24. *
  25. * Handling of mouse minor numbers for kerneld:
  26. * Idea by Jacques Gelinas <jack@solucorp.qc.ca>,
  27. * adapted by Bjorn Ekwall <bj0rn@blox.se>
  28. * corrected by Alan Cox <alan@lxorguk.ukuu.org.uk>
  29. *
  30. * Changes for kmod (from kerneld):
  31. * Cyrus Durgin <cider@speakeasy.org>
  32. *
  33. * Added devfs support. Richard Gooch <rgooch@atnf.csiro.au> 10-Jan-1998
  34. */
  35. #include <linux/module.h>
  36. #include <linux/config.h>
  37. #include <linux/fs.h>
  38. #include <linux/errno.h>
  39. #include <linux/miscdevice.h>
  40. #include <linux/kernel.h>
  41. #include <linux/major.h>
  42. #include <linux/slab.h>
  43. #include <linux/proc_fs.h>
  44. #include <linux/seq_file.h>
  45. #include <linux/stat.h>
  46. #include <linux/init.h>
  47. #include <linux/device.h>
  48. #include <linux/tty.h>
  49. #include <linux/kmod.h>
  50. /*
  51. * Head entry for the doubly linked miscdevice list
  52. */
  53. static LIST_HEAD(misc_list);
  54. static DECLARE_MUTEX(misc_sem);
  55. /*
  56. * Assigned numbers, used for dynamic minors
  57. */
  58. #define DYNAMIC_MINORS 64 /* like dynamic majors */
  59. static unsigned char misc_minors[DYNAMIC_MINORS / 8];
  60. extern int pmu_device_init(void);
  61. #ifdef CONFIG_PROC_FS
  62. static void *misc_seq_start(struct seq_file *seq, loff_t *pos)
  63. {
  64. struct miscdevice *p;
  65. loff_t off = 0;
  66. down(&misc_sem);
  67. list_for_each_entry(p, &misc_list, list) {
  68. if (*pos == off++)
  69. return p;
  70. }
  71. return NULL;
  72. }
  73. static void *misc_seq_next(struct seq_file *seq, void *v, loff_t *pos)
  74. {
  75. struct list_head *n = ((struct miscdevice *)v)->list.next;
  76. ++*pos;
  77. return (n != &misc_list) ? list_entry(n, struct miscdevice, list)
  78. : NULL;
  79. }
  80. static void misc_seq_stop(struct seq_file *seq, void *v)
  81. {
  82. up(&misc_sem);
  83. }
  84. static int misc_seq_show(struct seq_file *seq, void *v)
  85. {
  86. const struct miscdevice *p = v;
  87. seq_printf(seq, "%3i %s\n", p->minor, p->name ? p->name : "");
  88. return 0;
  89. }
  90. static struct seq_operations misc_seq_ops = {
  91. .start = misc_seq_start,
  92. .next = misc_seq_next,
  93. .stop = misc_seq_stop,
  94. .show = misc_seq_show,
  95. };
  96. static int misc_seq_open(struct inode *inode, struct file *file)
  97. {
  98. return seq_open(file, &misc_seq_ops);
  99. }
  100. static struct file_operations misc_proc_fops = {
  101. .owner = THIS_MODULE,
  102. .open = misc_seq_open,
  103. .read = seq_read,
  104. .llseek = seq_lseek,
  105. .release = seq_release,
  106. };
  107. #endif
  108. static int misc_open(struct inode * inode, struct file * file)
  109. {
  110. int minor = iminor(inode);
  111. struct miscdevice *c;
  112. int err = -ENODEV;
  113. const struct file_operations *old_fops, *new_fops = NULL;
  114. down(&misc_sem);
  115. list_for_each_entry(c, &misc_list, list) {
  116. if (c->minor == minor) {
  117. new_fops = fops_get(c->fops);
  118. break;
  119. }
  120. }
  121. if (!new_fops) {
  122. up(&misc_sem);
  123. request_module("char-major-%d-%d", MISC_MAJOR, minor);
  124. down(&misc_sem);
  125. list_for_each_entry(c, &misc_list, list) {
  126. if (c->minor == minor) {
  127. new_fops = fops_get(c->fops);
  128. break;
  129. }
  130. }
  131. if (!new_fops)
  132. goto fail;
  133. }
  134. err = 0;
  135. old_fops = file->f_op;
  136. file->f_op = new_fops;
  137. if (file->f_op->open) {
  138. err=file->f_op->open(inode,file);
  139. if (err) {
  140. fops_put(file->f_op);
  141. file->f_op = fops_get(old_fops);
  142. }
  143. }
  144. fops_put(old_fops);
  145. fail:
  146. up(&misc_sem);
  147. return err;
  148. }
  149. /*
  150. * TODO for 2.7:
  151. * - add a struct kref to struct miscdevice and make all usages of
  152. * them dynamic.
  153. */
  154. static struct class *misc_class;
  155. static struct file_operations misc_fops = {
  156. .owner = THIS_MODULE,
  157. .open = misc_open,
  158. };
  159. /**
  160. * misc_register - register a miscellaneous device
  161. * @misc: device structure
  162. *
  163. * Register a miscellaneous device with the kernel. If the minor
  164. * number is set to %MISC_DYNAMIC_MINOR a minor number is assigned
  165. * and placed in the minor field of the structure. For other cases
  166. * the minor number requested is used.
  167. *
  168. * The structure passed is linked into the kernel and may not be
  169. * destroyed until it has been unregistered.
  170. *
  171. * A zero is returned on success and a negative errno code for
  172. * failure.
  173. */
  174. int misc_register(struct miscdevice * misc)
  175. {
  176. struct miscdevice *c;
  177. dev_t dev;
  178. int err = 0;
  179. down(&misc_sem);
  180. list_for_each_entry(c, &misc_list, list) {
  181. if (c->minor == misc->minor) {
  182. up(&misc_sem);
  183. return -EBUSY;
  184. }
  185. }
  186. if (misc->minor == MISC_DYNAMIC_MINOR) {
  187. int i = DYNAMIC_MINORS;
  188. while (--i >= 0)
  189. if ( (misc_minors[i>>3] & (1 << (i&7))) == 0)
  190. break;
  191. if (i<0) {
  192. up(&misc_sem);
  193. return -EBUSY;
  194. }
  195. misc->minor = i;
  196. }
  197. if (misc->minor < DYNAMIC_MINORS)
  198. misc_minors[misc->minor >> 3] |= 1 << (misc->minor & 7);
  199. dev = MKDEV(MISC_MAJOR, misc->minor);
  200. misc->class = class_device_create(misc_class, NULL, dev, misc->dev,
  201. "%s", misc->name);
  202. if (IS_ERR(misc->class)) {
  203. err = PTR_ERR(misc->class);
  204. goto out;
  205. }
  206. /*
  207. * Add it to the front, so that later devices can "override"
  208. * earlier defaults
  209. */
  210. list_add(&misc->list, &misc_list);
  211. out:
  212. up(&misc_sem);
  213. return err;
  214. }
  215. /**
  216. * misc_deregister - unregister a miscellaneous device
  217. * @misc: device to unregister
  218. *
  219. * Unregister a miscellaneous device that was previously
  220. * successfully registered with misc_register(). Success
  221. * is indicated by a zero return, a negative errno code
  222. * indicates an error.
  223. */
  224. int misc_deregister(struct miscdevice * misc)
  225. {
  226. int i = misc->minor;
  227. if (list_empty(&misc->list))
  228. return -EINVAL;
  229. down(&misc_sem);
  230. list_del(&misc->list);
  231. class_device_destroy(misc_class, MKDEV(MISC_MAJOR, misc->minor));
  232. if (i < DYNAMIC_MINORS && i>0) {
  233. misc_minors[i>>3] &= ~(1 << (misc->minor & 7));
  234. }
  235. up(&misc_sem);
  236. return 0;
  237. }
  238. EXPORT_SYMBOL(misc_register);
  239. EXPORT_SYMBOL(misc_deregister);
  240. static int __init misc_init(void)
  241. {
  242. #ifdef CONFIG_PROC_FS
  243. struct proc_dir_entry *ent;
  244. ent = create_proc_entry("misc", 0, NULL);
  245. if (ent)
  246. ent->proc_fops = &misc_proc_fops;
  247. #endif
  248. misc_class = class_create(THIS_MODULE, "misc");
  249. if (IS_ERR(misc_class))
  250. return PTR_ERR(misc_class);
  251. if (register_chrdev(MISC_MAJOR,"misc",&misc_fops)) {
  252. printk("unable to get major %d for misc devices\n",
  253. MISC_MAJOR);
  254. class_destroy(misc_class);
  255. return -EIO;
  256. }
  257. return 0;
  258. }
  259. subsys_initcall(misc_init);