evdev.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:10k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: evdev.c,v 1.27 2001/05/28 09:06:44 vojtech Exp $
  3.  *
  4.  *  Copyright (c) 1999-2001 Vojtech Pavlik
  5.  *
  6.  *  Event char devices, giving access to raw input device events.
  7.  *
  8.  *  Sponsored by SuSE
  9.  */
  10. /*
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  24.  *
  25.  * Should you need to contact me, the author, you can do so either by
  26.  * e-mail - mail your message to <vojtech@suse.cz>, or by paper mail:
  27.  * Vojtech Pavlik, Ucitelska 1576, Prague 8, 182 00 Czech Republic
  28.  */
  29. #define EVDEV_MINOR_BASE 64
  30. #define EVDEV_MINORS 32
  31. #define EVDEV_BUFFER_SIZE 64
  32. #include <linux/poll.h>
  33. #include <linux/slab.h>
  34. #include <linux/module.h>
  35. #include <linux/init.h>
  36. #include <linux/input.h>
  37. #include <linux/smp_lock.h>
  38. struct evdev {
  39. int exist;
  40. int open;
  41. int minor;
  42. struct input_handle handle;
  43. wait_queue_head_t wait;
  44. devfs_handle_t devfs;
  45. struct evdev_list *list;
  46. };
  47. struct evdev_list {
  48. struct input_event buffer[EVDEV_BUFFER_SIZE];
  49. int head;
  50. int tail;
  51. struct fasync_struct *fasync;
  52. struct evdev *evdev;
  53. struct evdev_list *next;
  54. };
  55. static struct evdev *evdev_table[EVDEV_MINORS] = { NULL, /* ... */ };
  56. static void evdev_event(struct input_handle *handle, unsigned int type, unsigned int code, int value)
  57. {
  58. struct evdev *evdev = handle->private;
  59. struct evdev_list *list = evdev->list;
  60. while (list) {
  61. do_gettimeofday(&list->buffer[list->head].time);
  62. list->buffer[list->head].type = type;
  63. list->buffer[list->head].code = code;
  64. list->buffer[list->head].value = value;
  65. list->head = (list->head + 1) & (EVDEV_BUFFER_SIZE - 1);
  66. kill_fasync(&list->fasync, SIGIO, POLL_IN);
  67. list = list->next;
  68. }
  69. wake_up_interruptible(&evdev->wait);
  70. }
  71. static int evdev_fasync(int fd, struct file *file, int on)
  72. {
  73. int retval;
  74. struct evdev_list *list = file->private_data;
  75. retval = fasync_helper(fd, file, on, &list->fasync);
  76. return retval < 0 ? retval : 0;
  77. }
  78. static int evdev_release(struct inode * inode, struct file * file)
  79. {
  80. struct evdev_list *list = file->private_data;
  81. struct evdev_list **listptr;
  82. lock_kernel();
  83. listptr = &list->evdev->list;
  84. evdev_fasync(-1, file, 0);
  85. while (*listptr && (*listptr != list))
  86. listptr = &((*listptr)->next);
  87. *listptr = (*listptr)->next;
  88. if (!--list->evdev->open) {
  89. if (list->evdev->exist) {
  90. input_close_device(&list->evdev->handle);
  91. } else {
  92. input_unregister_minor(list->evdev->devfs);
  93. evdev_table[list->evdev->minor] = NULL;
  94. kfree(list->evdev);
  95. }
  96. }
  97. kfree(list);
  98. unlock_kernel();
  99. return 0;
  100. }
  101. static int evdev_open(struct inode * inode, struct file * file)
  102. {
  103. struct evdev_list *list;
  104. int i = MINOR(inode->i_rdev) - EVDEV_MINOR_BASE;
  105. if (i >= EVDEV_MINORS || !evdev_table[i])
  106. return -ENODEV;
  107. if (!(list = kmalloc(sizeof(struct evdev_list), GFP_KERNEL)))
  108. return -ENOMEM;
  109. memset(list, 0, sizeof(struct evdev_list));
  110. list->evdev = evdev_table[i];
  111. list->next = evdev_table[i]->list;
  112. evdev_table[i]->list = list;
  113. file->private_data = list;
  114. if (!list->evdev->open++)
  115. if (list->evdev->exist)
  116. input_open_device(&list->evdev->handle);
  117. return 0;
  118. }
  119. static ssize_t evdev_write(struct file * file, const char * buffer, size_t count, loff_t *ppos)
  120. {
  121. struct evdev_list *list = file->private_data;
  122. struct input_event event;
  123. int retval = 0;
  124. while (retval < count) {
  125. if (copy_from_user(&event, buffer + retval, sizeof(struct input_event)))
  126. return -EFAULT;
  127. input_event(list->evdev->handle.dev, event.type, event.code, event.value);
  128. retval += sizeof(struct input_event);
  129. }
  130. return retval;
  131. }
  132. static ssize_t evdev_read(struct file * file, char * buffer, size_t count, loff_t *ppos)
  133. {
  134. DECLARE_WAITQUEUE(wait, current);
  135. struct evdev_list *list = file->private_data;
  136. int retval = 0;
  137. if (list->head == list->tail) {
  138. add_wait_queue(&list->evdev->wait, &wait);
  139. current->state = TASK_INTERRUPTIBLE;
  140. while (list->head == list->tail) {
  141. if (!list->evdev->exist) {
  142. retval = -ENODEV;
  143. break;
  144. }
  145. if (file->f_flags & O_NONBLOCK) {
  146. retval = -EAGAIN;
  147. break;
  148. }
  149. if (signal_pending(current)) {
  150. retval = -ERESTARTSYS;
  151. break;
  152. }
  153. schedule();
  154. }
  155. current->state = TASK_RUNNING;
  156. remove_wait_queue(&list->evdev->wait, &wait);
  157. }
  158. if (retval)
  159. return retval;
  160. while (list->head != list->tail && retval + sizeof(struct input_event) <= count) {
  161. if (copy_to_user(buffer + retval, list->buffer + list->tail,
  162.  sizeof(struct input_event))) return -EFAULT;
  163. list->tail = (list->tail + 1) & (EVDEV_BUFFER_SIZE - 1);
  164. retval += sizeof(struct input_event);
  165. }
  166. return retval;
  167. }
  168. /* No kernel lock - fine */
  169. static unsigned int evdev_poll(struct file *file, poll_table *wait)
  170. {
  171. struct evdev_list *list = file->private_data;
  172. poll_wait(file, &list->evdev->wait, wait);
  173. if (list->head != list->tail)
  174. return POLLIN | POLLRDNORM;
  175. return 0;
  176. }
  177. static int evdev_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg)
  178. {
  179. struct evdev_list *list = file->private_data;
  180. struct evdev *evdev = list->evdev;
  181. struct input_dev *dev = evdev->handle.dev;
  182. int retval;
  183. switch (cmd) {
  184. case EVIOCGVERSION:
  185. return put_user(EV_VERSION, (int *) arg);
  186. case EVIOCGID:
  187. if ((retval = put_user(dev->idbus,     ((short *) arg) + 0))) return retval;
  188. if ((retval = put_user(dev->idvendor,  ((short *) arg) + 1))) return retval;
  189. if ((retval = put_user(dev->idproduct, ((short *) arg) + 2))) return retval;
  190. if ((retval = put_user(dev->idversion, ((short *) arg) + 3))) return retval;
  191. return 0;
  192. case EVIOCSFF:
  193. if (dev->upload_effect) {
  194. struct ff_effect effect;
  195. int err;
  196. if (copy_from_user((void*)(&effect), (void*)arg, sizeof(effect))) {
  197. return -EINVAL;
  198. }
  199. err = dev->upload_effect(dev, &effect);
  200. if (put_user(effect.id, &(((struct ff_effect*)arg)->id))) {
  201. return -EINVAL;
  202. }
  203. return err;
  204. }
  205. else return -ENOSYS;
  206. case EVIOCRMFF:
  207. if (dev->erase_effect) {
  208. return dev->erase_effect(dev, (int)arg);
  209. }
  210. else return -ENOSYS;
  211. case EVIOCGEFFECTS:
  212. put_user(dev->ff_effects_max, (int*) arg);
  213. return 0;
  214. default:
  215. if (_IOC_TYPE(cmd) != 'E' || _IOC_DIR(cmd) != _IOC_READ)
  216. return -EINVAL;
  217. if ((_IOC_NR(cmd) & ~EV_MAX) == _IOC_NR(EVIOCGBIT(0,0))) {
  218. long *bits;
  219. int len;
  220. switch (_IOC_NR(cmd) & EV_MAX) {
  221. case      0: bits = dev->evbit;  len = EV_MAX;  break;
  222. case EV_KEY: bits = dev->keybit; len = KEY_MAX; break;
  223. case EV_REL: bits = dev->relbit; len = REL_MAX; break;
  224. case EV_ABS: bits = dev->absbit; len = ABS_MAX; break;
  225. case EV_LED: bits = dev->ledbit; len = LED_MAX; break;
  226. case EV_SND: bits = dev->sndbit; len = SND_MAX; break;
  227. case EV_FF:  bits = dev->ffbit;  len = FF_MAX;  break;
  228. default: return -EINVAL;
  229. }
  230. len = NBITS(len) * sizeof(long);
  231. if (len > _IOC_SIZE(cmd)) {
  232. printk(KERN_WARNING "evdev.c: Truncating bitfield length from %d to %dn",
  233. len, _IOC_SIZE(cmd));
  234. len = _IOC_SIZE(cmd);
  235. }
  236. return copy_to_user((char *) arg, bits, len) ? -EFAULT : len;
  237. }
  238. if (_IOC_NR(cmd) == _IOC_NR(EVIOCGNAME(0))) {
  239. int len;
  240. if (!dev->name) return 0;
  241. len = strlen(dev->name) + 1;
  242. if (len > _IOC_SIZE(cmd)) len = _IOC_SIZE(cmd);
  243. return copy_to_user((char *) arg, dev->name, len) ? -EFAULT : len;
  244. }
  245. if ((_IOC_NR(cmd) & ~ABS_MAX) == _IOC_NR(EVIOCGABS(0))) {
  246. int t = _IOC_NR(cmd) & ABS_MAX;
  247. if ((retval = put_user(dev->abs[t],     ((int *) arg) + 0))) return retval;
  248. if ((retval = put_user(dev->absmin[t],  ((int *) arg) + 1))) return retval;
  249. if ((retval = put_user(dev->absmax[t],  ((int *) arg) + 2))) return retval;
  250. if ((retval = put_user(dev->absfuzz[t], ((int *) arg) + 3))) return retval;
  251. if ((retval = put_user(dev->absflat[t], ((int *) arg) + 4))) return retval;
  252. return 0;
  253. }
  254. }
  255. return -EINVAL;
  256. }
  257. static struct file_operations evdev_fops = {
  258. owner: THIS_MODULE,
  259. read: evdev_read,
  260. write: evdev_write,
  261. poll: evdev_poll,
  262. open: evdev_open,
  263. release: evdev_release,
  264. ioctl: evdev_ioctl,
  265. fasync: evdev_fasync,
  266. };
  267. static struct input_handle *evdev_connect(struct input_handler *handler, struct input_dev *dev)
  268. {
  269. struct evdev *evdev;
  270. int minor;
  271. for (minor = 0; minor < EVDEV_MINORS && evdev_table[minor]; minor++);
  272. if (minor == EVDEV_MINORS) {
  273. printk(KERN_ERR "evdev: no more free evdev devicesn");
  274. return NULL;
  275. }
  276. if (!(evdev = kmalloc(sizeof(struct evdev), GFP_KERNEL)))
  277. return NULL;
  278. memset(evdev, 0, sizeof(struct evdev));
  279. init_waitqueue_head(&evdev->wait);
  280. evdev->minor = minor;
  281. evdev_table[minor] = evdev;
  282. evdev->handle.dev = dev;
  283. evdev->handle.handler = handler;
  284. evdev->handle.private = evdev;
  285. evdev->exist = 1;
  286. evdev->devfs = input_register_minor("event%d", minor, EVDEV_MINOR_BASE);
  287. // printk(KERN_INFO "event%d: Event device for input%dn", minor, dev->number);
  288. return &evdev->handle;
  289. }
  290. static void evdev_disconnect(struct input_handle *handle)
  291. {
  292. struct evdev *evdev = handle->private;
  293. evdev->exist = 0;
  294. if (evdev->open) {
  295. input_close_device(handle);
  296. wake_up_interruptible(&evdev->wait);
  297. } else {
  298. input_unregister_minor(evdev->devfs);
  299. evdev_table[evdev->minor] = NULL;
  300. kfree(evdev);
  301. }
  302. }
  303. static struct input_handler evdev_handler = {
  304. event: evdev_event,
  305. connect: evdev_connect,
  306. disconnect: evdev_disconnect,
  307. fops: &evdev_fops,
  308. minor: EVDEV_MINOR_BASE,
  309. };
  310. static int __init evdev_init(void)
  311. {
  312. input_register_handler(&evdev_handler);
  313. return 0;
  314. }
  315. static void __exit evdev_exit(void)
  316. {
  317. input_unregister_handler(&evdev_handler);
  318. }
  319. module_init(evdev_init);
  320. module_exit(evdev_exit);
  321. MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
  322. MODULE_DESCRIPTION("Event character device driver");
  323. MODULE_LICENSE("GPL");