uinput.c 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115
  1. /*
  2. * User level driver support for input subsystem
  3. *
  4. * Heavily based on evdev.c by Vojtech Pavlik
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. *
  20. * Author: Aristeu Sergio Rozanski Filho <aris@cathedrallabs.org>
  21. *
  22. * Changes/Revisions:
  23. * 0.4 01/09/2014 (Benjamin Tissoires <benjamin.tissoires@redhat.com>)
  24. * - add UI_GET_SYSNAME ioctl
  25. * 0.3 09/04/2006 (Anssi Hannula <anssi.hannula@gmail.com>)
  26. * - updated ff support for the changes in kernel interface
  27. * - added MODULE_VERSION
  28. * 0.2 16/10/2004 (Micah Dowty <micah@navi.cx>)
  29. * - added force feedback support
  30. * - added UI_SET_PHYS
  31. * 0.1 20/06/2002
  32. * - first public version
  33. */
  34. #include <uapi/linux/uinput.h>
  35. #include <linux/poll.h>
  36. #include <linux/sched.h>
  37. #include <linux/slab.h>
  38. #include <linux/module.h>
  39. #include <linux/init.h>
  40. #include <linux/fs.h>
  41. #include <linux/miscdevice.h>
  42. #include <linux/overflow.h>
  43. #include <linux/input/mt.h>
  44. #include "../input-compat.h"
  45. #define UINPUT_NAME "uinput"
  46. #define UINPUT_BUFFER_SIZE 16
  47. #define UINPUT_NUM_REQUESTS 16
  48. enum uinput_state { UIST_NEW_DEVICE, UIST_SETUP_COMPLETE, UIST_CREATED };
  49. struct uinput_request {
  50. unsigned int id;
  51. unsigned int code; /* UI_FF_UPLOAD, UI_FF_ERASE */
  52. int retval;
  53. struct completion done;
  54. union {
  55. unsigned int effect_id;
  56. struct {
  57. struct ff_effect *effect;
  58. struct ff_effect *old;
  59. } upload;
  60. } u;
  61. };
  62. struct uinput_device {
  63. struct input_dev *dev;
  64. struct mutex mutex;
  65. enum uinput_state state;
  66. wait_queue_head_t waitq;
  67. unsigned char ready;
  68. unsigned char head;
  69. unsigned char tail;
  70. struct input_event buff[UINPUT_BUFFER_SIZE];
  71. unsigned int ff_effects_max;
  72. struct uinput_request *requests[UINPUT_NUM_REQUESTS];
  73. wait_queue_head_t requests_waitq;
  74. spinlock_t requests_lock;
  75. };
  76. static int uinput_dev_event(struct input_dev *dev,
  77. unsigned int type, unsigned int code, int value)
  78. {
  79. struct uinput_device *udev = input_get_drvdata(dev);
  80. struct timespec64 ts;
  81. ktime_get_ts64(&ts);
  82. udev->buff[udev->head] = (struct input_event) {
  83. .input_event_sec = ts.tv_sec,
  84. .input_event_usec = ts.tv_nsec / NSEC_PER_USEC,
  85. .type = type,
  86. .code = code,
  87. .value = value,
  88. };
  89. udev->head = (udev->head + 1) % UINPUT_BUFFER_SIZE;
  90. wake_up_interruptible(&udev->waitq);
  91. return 0;
  92. }
  93. /* Atomically allocate an ID for the given request. Returns 0 on success. */
  94. static bool uinput_request_alloc_id(struct uinput_device *udev,
  95. struct uinput_request *request)
  96. {
  97. unsigned int id;
  98. bool reserved = false;
  99. spin_lock(&udev->requests_lock);
  100. for (id = 0; id < UINPUT_NUM_REQUESTS; id++) {
  101. if (!udev->requests[id]) {
  102. request->id = id;
  103. udev->requests[id] = request;
  104. reserved = true;
  105. break;
  106. }
  107. }
  108. spin_unlock(&udev->requests_lock);
  109. return reserved;
  110. }
  111. static struct uinput_request *uinput_request_find(struct uinput_device *udev,
  112. unsigned int id)
  113. {
  114. /* Find an input request, by ID. Returns NULL if the ID isn't valid. */
  115. if (id >= UINPUT_NUM_REQUESTS)
  116. return NULL;
  117. return udev->requests[id];
  118. }
  119. static int uinput_request_reserve_slot(struct uinput_device *udev,
  120. struct uinput_request *request)
  121. {
  122. /* Allocate slot. If none are available right away, wait. */
  123. return wait_event_interruptible(udev->requests_waitq,
  124. uinput_request_alloc_id(udev, request));
  125. }
  126. static void uinput_request_release_slot(struct uinput_device *udev,
  127. unsigned int id)
  128. {
  129. /* Mark slot as available */
  130. spin_lock(&udev->requests_lock);
  131. udev->requests[id] = NULL;
  132. spin_unlock(&udev->requests_lock);
  133. wake_up(&udev->requests_waitq);
  134. }
  135. static int uinput_request_send(struct uinput_device *udev,
  136. struct uinput_request *request)
  137. {
  138. int retval;
  139. retval = mutex_lock_interruptible(&udev->mutex);
  140. if (retval)
  141. return retval;
  142. if (udev->state != UIST_CREATED) {
  143. retval = -ENODEV;
  144. goto out;
  145. }
  146. init_completion(&request->done);
  147. /*
  148. * Tell our userspace application about this new request
  149. * by queueing an input event.
  150. */
  151. uinput_dev_event(udev->dev, EV_UINPUT, request->code, request->id);
  152. out:
  153. mutex_unlock(&udev->mutex);
  154. return retval;
  155. }
  156. static int uinput_request_submit(struct uinput_device *udev,
  157. struct uinput_request *request)
  158. {
  159. int retval;
  160. retval = uinput_request_reserve_slot(udev, request);
  161. if (retval)
  162. return retval;
  163. retval = uinput_request_send(udev, request);
  164. if (retval)
  165. goto out;
  166. if (!wait_for_completion_timeout(&request->done, 30 * HZ)) {
  167. retval = -ETIMEDOUT;
  168. goto out;
  169. }
  170. retval = request->retval;
  171. out:
  172. uinput_request_release_slot(udev, request->id);
  173. return retval;
  174. }
  175. /*
  176. * Fail all outstanding requests so handlers don't wait for the userspace
  177. * to finish processing them.
  178. */
  179. static void uinput_flush_requests(struct uinput_device *udev)
  180. {
  181. struct uinput_request *request;
  182. int i;
  183. spin_lock(&udev->requests_lock);
  184. for (i = 0; i < UINPUT_NUM_REQUESTS; i++) {
  185. request = udev->requests[i];
  186. if (request) {
  187. request->retval = -ENODEV;
  188. complete(&request->done);
  189. }
  190. }
  191. spin_unlock(&udev->requests_lock);
  192. }
  193. static void uinput_dev_set_gain(struct input_dev *dev, u16 gain)
  194. {
  195. uinput_dev_event(dev, EV_FF, FF_GAIN, gain);
  196. }
  197. static void uinput_dev_set_autocenter(struct input_dev *dev, u16 magnitude)
  198. {
  199. uinput_dev_event(dev, EV_FF, FF_AUTOCENTER, magnitude);
  200. }
  201. static int uinput_dev_playback(struct input_dev *dev, int effect_id, int value)
  202. {
  203. return uinput_dev_event(dev, EV_FF, effect_id, value);
  204. }
  205. static int uinput_dev_upload_effect(struct input_dev *dev,
  206. struct ff_effect *effect,
  207. struct ff_effect *old)
  208. {
  209. struct uinput_device *udev = input_get_drvdata(dev);
  210. struct uinput_request request;
  211. /*
  212. * uinput driver does not currently support periodic effects with
  213. * custom waveform since it does not have a way to pass buffer of
  214. * samples (custom_data) to userspace. If ever there is a device
  215. * supporting custom waveforms we would need to define an additional
  216. * ioctl (UI_UPLOAD_SAMPLES) but for now we just bail out.
  217. */
  218. if (effect->type == FF_PERIODIC &&
  219. effect->u.periodic.waveform == FF_CUSTOM)
  220. return -EINVAL;
  221. request.code = UI_FF_UPLOAD;
  222. request.u.upload.effect = effect;
  223. request.u.upload.old = old;
  224. return uinput_request_submit(udev, &request);
  225. }
  226. static int uinput_dev_erase_effect(struct input_dev *dev, int effect_id)
  227. {
  228. struct uinput_device *udev = input_get_drvdata(dev);
  229. struct uinput_request request;
  230. if (!test_bit(EV_FF, dev->evbit))
  231. return -ENOSYS;
  232. request.code = UI_FF_ERASE;
  233. request.u.effect_id = effect_id;
  234. return uinput_request_submit(udev, &request);
  235. }
  236. static int uinput_dev_flush(struct input_dev *dev, struct file *file)
  237. {
  238. /*
  239. * If we are called with file == NULL that means we are tearing
  240. * down the device, and therefore we can not handle FF erase
  241. * requests: either we are handling UI_DEV_DESTROY (and holding
  242. * the udev->mutex), or the file descriptor is closed and there is
  243. * nobody on the other side anymore.
  244. */
  245. return file ? input_ff_flush(dev, file) : 0;
  246. }
  247. static void uinput_destroy_device(struct uinput_device *udev)
  248. {
  249. const char *name, *phys;
  250. struct input_dev *dev = udev->dev;
  251. enum uinput_state old_state = udev->state;
  252. udev->state = UIST_NEW_DEVICE;
  253. if (dev) {
  254. name = dev->name;
  255. phys = dev->phys;
  256. if (old_state == UIST_CREATED) {
  257. uinput_flush_requests(udev);
  258. input_unregister_device(dev);
  259. } else {
  260. input_free_device(dev);
  261. }
  262. kfree(name);
  263. kfree(phys);
  264. udev->dev = NULL;
  265. }
  266. }
  267. static int uinput_create_device(struct uinput_device *udev)
  268. {
  269. struct input_dev *dev = udev->dev;
  270. int error, nslot;
  271. if (udev->state != UIST_SETUP_COMPLETE) {
  272. printk(KERN_DEBUG "%s: write device info first\n", UINPUT_NAME);
  273. return -EINVAL;
  274. }
  275. if (test_bit(EV_ABS, dev->evbit)) {
  276. input_alloc_absinfo(dev);
  277. if (!dev->absinfo) {
  278. error = -EINVAL;
  279. goto fail1;
  280. }
  281. if (test_bit(ABS_MT_SLOT, dev->absbit)) {
  282. nslot = input_abs_get_max(dev, ABS_MT_SLOT) + 1;
  283. error = input_mt_init_slots(dev, nslot, 0);
  284. if (error)
  285. goto fail1;
  286. } else if (test_bit(ABS_MT_POSITION_X, dev->absbit)) {
  287. input_set_events_per_packet(dev, 60);
  288. }
  289. }
  290. if (test_bit(EV_FF, dev->evbit) && !udev->ff_effects_max) {
  291. printk(KERN_DEBUG "%s: ff_effects_max should be non-zero when FF_BIT is set\n",
  292. UINPUT_NAME);
  293. error = -EINVAL;
  294. goto fail1;
  295. }
  296. if (udev->ff_effects_max) {
  297. error = input_ff_create(dev, udev->ff_effects_max);
  298. if (error)
  299. goto fail1;
  300. dev->ff->upload = uinput_dev_upload_effect;
  301. dev->ff->erase = uinput_dev_erase_effect;
  302. dev->ff->playback = uinput_dev_playback;
  303. dev->ff->set_gain = uinput_dev_set_gain;
  304. dev->ff->set_autocenter = uinput_dev_set_autocenter;
  305. /*
  306. * The standard input_ff_flush() implementation does
  307. * not quite work for uinput as we can't reasonably
  308. * handle FF requests during device teardown.
  309. */
  310. dev->flush = uinput_dev_flush;
  311. }
  312. dev->event = uinput_dev_event;
  313. input_set_drvdata(udev->dev, udev);
  314. error = input_register_device(udev->dev);
  315. if (error)
  316. goto fail2;
  317. udev->state = UIST_CREATED;
  318. return 0;
  319. fail2: input_ff_destroy(dev);
  320. fail1: uinput_destroy_device(udev);
  321. return error;
  322. }
  323. static int uinput_open(struct inode *inode, struct file *file)
  324. {
  325. struct uinput_device *newdev;
  326. newdev = kzalloc(sizeof(struct uinput_device), GFP_KERNEL);
  327. if (!newdev)
  328. return -ENOMEM;
  329. mutex_init(&newdev->mutex);
  330. spin_lock_init(&newdev->requests_lock);
  331. init_waitqueue_head(&newdev->requests_waitq);
  332. init_waitqueue_head(&newdev->waitq);
  333. newdev->state = UIST_NEW_DEVICE;
  334. file->private_data = newdev;
  335. nonseekable_open(inode, file);
  336. return 0;
  337. }
  338. static int uinput_validate_absinfo(struct input_dev *dev, unsigned int code,
  339. const struct input_absinfo *abs)
  340. {
  341. int min, max, range;
  342. min = abs->minimum;
  343. max = abs->maximum;
  344. if ((min != 0 || max != 0) && max < min) {
  345. printk(KERN_DEBUG
  346. "%s: invalid abs[%02x] min:%d max:%d\n",
  347. UINPUT_NAME, code, min, max);
  348. return -EINVAL;
  349. }
  350. if (!check_sub_overflow(max, min, &range) && abs->flat > range) {
  351. printk(KERN_DEBUG
  352. "%s: abs_flat #%02x out of range: %d (min:%d/max:%d)\n",
  353. UINPUT_NAME, code, abs->flat, min, max);
  354. return -EINVAL;
  355. }
  356. return 0;
  357. }
  358. static int uinput_validate_absbits(struct input_dev *dev)
  359. {
  360. unsigned int cnt;
  361. int error;
  362. if (!test_bit(EV_ABS, dev->evbit))
  363. return 0;
  364. /*
  365. * Check if absmin/absmax/absfuzz/absflat are sane.
  366. */
  367. for_each_set_bit(cnt, dev->absbit, ABS_CNT) {
  368. if (!dev->absinfo)
  369. return -EINVAL;
  370. error = uinput_validate_absinfo(dev, cnt, &dev->absinfo[cnt]);
  371. if (error)
  372. return error;
  373. }
  374. return 0;
  375. }
  376. static int uinput_dev_setup(struct uinput_device *udev,
  377. struct uinput_setup __user *arg)
  378. {
  379. struct uinput_setup setup;
  380. struct input_dev *dev;
  381. if (udev->state == UIST_CREATED)
  382. return -EINVAL;
  383. if (copy_from_user(&setup, arg, sizeof(setup)))
  384. return -EFAULT;
  385. if (!setup.name[0])
  386. return -EINVAL;
  387. dev = udev->dev;
  388. dev->id = setup.id;
  389. udev->ff_effects_max = setup.ff_effects_max;
  390. kfree(dev->name);
  391. dev->name = kstrndup(setup.name, UINPUT_MAX_NAME_SIZE, GFP_KERNEL);
  392. if (!dev->name)
  393. return -ENOMEM;
  394. udev->state = UIST_SETUP_COMPLETE;
  395. return 0;
  396. }
  397. static int uinput_abs_setup(struct uinput_device *udev,
  398. struct uinput_setup __user *arg, size_t size)
  399. {
  400. struct uinput_abs_setup setup = {};
  401. struct input_dev *dev;
  402. int error;
  403. if (size > sizeof(setup))
  404. return -E2BIG;
  405. if (udev->state == UIST_CREATED)
  406. return -EINVAL;
  407. if (copy_from_user(&setup, arg, size))
  408. return -EFAULT;
  409. if (setup.code > ABS_MAX)
  410. return -ERANGE;
  411. dev = udev->dev;
  412. error = uinput_validate_absinfo(dev, setup.code, &setup.absinfo);
  413. if (error)
  414. return error;
  415. input_alloc_absinfo(dev);
  416. if (!dev->absinfo)
  417. return -ENOMEM;
  418. set_bit(setup.code, dev->absbit);
  419. dev->absinfo[setup.code] = setup.absinfo;
  420. return 0;
  421. }
  422. /* legacy setup via write() */
  423. static int uinput_setup_device_legacy(struct uinput_device *udev,
  424. const char __user *buffer, size_t count)
  425. {
  426. struct uinput_user_dev *user_dev;
  427. struct input_dev *dev;
  428. int i;
  429. int retval;
  430. if (count != sizeof(struct uinput_user_dev))
  431. return -EINVAL;
  432. if (!udev->dev) {
  433. udev->dev = input_allocate_device();
  434. if (!udev->dev)
  435. return -ENOMEM;
  436. }
  437. dev = udev->dev;
  438. user_dev = memdup_user(buffer, sizeof(struct uinput_user_dev));
  439. if (IS_ERR(user_dev))
  440. return PTR_ERR(user_dev);
  441. udev->ff_effects_max = user_dev->ff_effects_max;
  442. /* Ensure name is filled in */
  443. if (!user_dev->name[0]) {
  444. retval = -EINVAL;
  445. goto exit;
  446. }
  447. kfree(dev->name);
  448. dev->name = kstrndup(user_dev->name, UINPUT_MAX_NAME_SIZE,
  449. GFP_KERNEL);
  450. if (!dev->name) {
  451. retval = -ENOMEM;
  452. goto exit;
  453. }
  454. dev->id.bustype = user_dev->id.bustype;
  455. dev->id.vendor = user_dev->id.vendor;
  456. dev->id.product = user_dev->id.product;
  457. dev->id.version = user_dev->id.version;
  458. for (i = 0; i < ABS_CNT; i++) {
  459. input_abs_set_max(dev, i, user_dev->absmax[i]);
  460. input_abs_set_min(dev, i, user_dev->absmin[i]);
  461. input_abs_set_fuzz(dev, i, user_dev->absfuzz[i]);
  462. input_abs_set_flat(dev, i, user_dev->absflat[i]);
  463. }
  464. retval = uinput_validate_absbits(dev);
  465. if (retval < 0)
  466. goto exit;
  467. udev->state = UIST_SETUP_COMPLETE;
  468. retval = count;
  469. exit:
  470. kfree(user_dev);
  471. return retval;
  472. }
  473. static ssize_t uinput_inject_events(struct uinput_device *udev,
  474. const char __user *buffer, size_t count)
  475. {
  476. struct input_event ev;
  477. size_t bytes = 0;
  478. if (count != 0 && count < input_event_size())
  479. return -EINVAL;
  480. while (bytes + input_event_size() <= count) {
  481. /*
  482. * Note that even if some events were fetched successfully
  483. * we are still going to return EFAULT instead of partial
  484. * count to let userspace know that it got it's buffers
  485. * all wrong.
  486. */
  487. if (input_event_from_user(buffer + bytes, &ev))
  488. return -EFAULT;
  489. input_event(udev->dev, ev.type, ev.code, ev.value);
  490. bytes += input_event_size();
  491. cond_resched();
  492. }
  493. return bytes;
  494. }
  495. static ssize_t uinput_write(struct file *file, const char __user *buffer,
  496. size_t count, loff_t *ppos)
  497. {
  498. struct uinput_device *udev = file->private_data;
  499. int retval;
  500. if (count == 0)
  501. return 0;
  502. retval = mutex_lock_interruptible(&udev->mutex);
  503. if (retval)
  504. return retval;
  505. retval = udev->state == UIST_CREATED ?
  506. uinput_inject_events(udev, buffer, count) :
  507. uinput_setup_device_legacy(udev, buffer, count);
  508. mutex_unlock(&udev->mutex);
  509. return retval;
  510. }
  511. static bool uinput_fetch_next_event(struct uinput_device *udev,
  512. struct input_event *event)
  513. {
  514. bool have_event;
  515. spin_lock_irq(&udev->dev->event_lock);
  516. have_event = udev->head != udev->tail;
  517. if (have_event) {
  518. *event = udev->buff[udev->tail];
  519. udev->tail = (udev->tail + 1) % UINPUT_BUFFER_SIZE;
  520. }
  521. spin_unlock_irq(&udev->dev->event_lock);
  522. return have_event;
  523. }
  524. static ssize_t uinput_events_to_user(struct uinput_device *udev,
  525. char __user *buffer, size_t count)
  526. {
  527. struct input_event event;
  528. size_t read = 0;
  529. while (read + input_event_size() <= count &&
  530. uinput_fetch_next_event(udev, &event)) {
  531. if (input_event_to_user(buffer + read, &event))
  532. return -EFAULT;
  533. read += input_event_size();
  534. }
  535. return read;
  536. }
  537. static ssize_t uinput_read(struct file *file, char __user *buffer,
  538. size_t count, loff_t *ppos)
  539. {
  540. struct uinput_device *udev = file->private_data;
  541. ssize_t retval;
  542. if (count != 0 && count < input_event_size())
  543. return -EINVAL;
  544. do {
  545. retval = mutex_lock_interruptible(&udev->mutex);
  546. if (retval)
  547. return retval;
  548. if (udev->state != UIST_CREATED)
  549. retval = -ENODEV;
  550. else if (udev->head == udev->tail &&
  551. (file->f_flags & O_NONBLOCK))
  552. retval = -EAGAIN;
  553. else
  554. retval = uinput_events_to_user(udev, buffer, count);
  555. mutex_unlock(&udev->mutex);
  556. if (retval || count == 0)
  557. break;
  558. if (!(file->f_flags & O_NONBLOCK))
  559. retval = wait_event_interruptible(udev->waitq,
  560. udev->head != udev->tail ||
  561. udev->state != UIST_CREATED);
  562. } while (retval == 0);
  563. return retval;
  564. }
  565. static __poll_t uinput_poll(struct file *file, poll_table *wait)
  566. {
  567. struct uinput_device *udev = file->private_data;
  568. poll_wait(file, &udev->waitq, wait);
  569. if (udev->head != udev->tail)
  570. return EPOLLIN | EPOLLRDNORM;
  571. return 0;
  572. }
  573. static int uinput_release(struct inode *inode, struct file *file)
  574. {
  575. struct uinput_device *udev = file->private_data;
  576. uinput_destroy_device(udev);
  577. kfree(udev);
  578. return 0;
  579. }
  580. #ifdef CONFIG_COMPAT
  581. struct uinput_ff_upload_compat {
  582. __u32 request_id;
  583. __s32 retval;
  584. struct ff_effect_compat effect;
  585. struct ff_effect_compat old;
  586. };
  587. static int uinput_ff_upload_to_user(char __user *buffer,
  588. const struct uinput_ff_upload *ff_up)
  589. {
  590. if (in_compat_syscall()) {
  591. struct uinput_ff_upload_compat ff_up_compat;
  592. ff_up_compat.request_id = ff_up->request_id;
  593. ff_up_compat.retval = ff_up->retval;
  594. /*
  595. * It so happens that the pointer that gives us the trouble
  596. * is the last field in the structure. Since we don't support
  597. * custom waveforms in uinput anyway we can just copy the whole
  598. * thing (to the compat size) and ignore the pointer.
  599. */
  600. memcpy(&ff_up_compat.effect, &ff_up->effect,
  601. sizeof(struct ff_effect_compat));
  602. memcpy(&ff_up_compat.old, &ff_up->old,
  603. sizeof(struct ff_effect_compat));
  604. if (copy_to_user(buffer, &ff_up_compat,
  605. sizeof(struct uinput_ff_upload_compat)))
  606. return -EFAULT;
  607. } else {
  608. if (copy_to_user(buffer, ff_up,
  609. sizeof(struct uinput_ff_upload)))
  610. return -EFAULT;
  611. }
  612. return 0;
  613. }
  614. static int uinput_ff_upload_from_user(const char __user *buffer,
  615. struct uinput_ff_upload *ff_up)
  616. {
  617. if (in_compat_syscall()) {
  618. struct uinput_ff_upload_compat ff_up_compat;
  619. if (copy_from_user(&ff_up_compat, buffer,
  620. sizeof(struct uinput_ff_upload_compat)))
  621. return -EFAULT;
  622. ff_up->request_id = ff_up_compat.request_id;
  623. ff_up->retval = ff_up_compat.retval;
  624. memcpy(&ff_up->effect, &ff_up_compat.effect,
  625. sizeof(struct ff_effect_compat));
  626. memcpy(&ff_up->old, &ff_up_compat.old,
  627. sizeof(struct ff_effect_compat));
  628. } else {
  629. if (copy_from_user(ff_up, buffer,
  630. sizeof(struct uinput_ff_upload)))
  631. return -EFAULT;
  632. }
  633. return 0;
  634. }
  635. #else
  636. static int uinput_ff_upload_to_user(char __user *buffer,
  637. const struct uinput_ff_upload *ff_up)
  638. {
  639. if (copy_to_user(buffer, ff_up, sizeof(struct uinput_ff_upload)))
  640. return -EFAULT;
  641. return 0;
  642. }
  643. static int uinput_ff_upload_from_user(const char __user *buffer,
  644. struct uinput_ff_upload *ff_up)
  645. {
  646. if (copy_from_user(ff_up, buffer, sizeof(struct uinput_ff_upload)))
  647. return -EFAULT;
  648. return 0;
  649. }
  650. #endif
  651. #define uinput_set_bit(_arg, _bit, _max) \
  652. ({ \
  653. int __ret = 0; \
  654. if (udev->state == UIST_CREATED) \
  655. __ret = -EINVAL; \
  656. else if ((_arg) > (_max)) \
  657. __ret = -EINVAL; \
  658. else set_bit((_arg), udev->dev->_bit); \
  659. __ret; \
  660. })
  661. static int uinput_str_to_user(void __user *dest, const char *str,
  662. unsigned int maxlen)
  663. {
  664. char __user *p = dest;
  665. int len, ret;
  666. if (!str)
  667. return -ENOENT;
  668. if (maxlen == 0)
  669. return -EINVAL;
  670. len = strlen(str) + 1;
  671. if (len > maxlen)
  672. len = maxlen;
  673. ret = copy_to_user(p, str, len);
  674. if (ret)
  675. return -EFAULT;
  676. /* force terminating '\0' */
  677. ret = put_user(0, p + len - 1);
  678. return ret ? -EFAULT : len;
  679. }
  680. static long uinput_ioctl_handler(struct file *file, unsigned int cmd,
  681. unsigned long arg, void __user *p)
  682. {
  683. int retval;
  684. struct uinput_device *udev = file->private_data;
  685. struct uinput_ff_upload ff_up;
  686. struct uinput_ff_erase ff_erase;
  687. struct uinput_request *req;
  688. char *phys;
  689. const char *name;
  690. unsigned int size;
  691. retval = mutex_lock_interruptible(&udev->mutex);
  692. if (retval)
  693. return retval;
  694. if (!udev->dev) {
  695. udev->dev = input_allocate_device();
  696. if (!udev->dev) {
  697. retval = -ENOMEM;
  698. goto out;
  699. }
  700. }
  701. switch (cmd) {
  702. case UI_GET_VERSION:
  703. if (put_user(UINPUT_VERSION, (unsigned int __user *)p))
  704. retval = -EFAULT;
  705. goto out;
  706. case UI_DEV_CREATE:
  707. retval = uinput_create_device(udev);
  708. goto out;
  709. case UI_DEV_DESTROY:
  710. uinput_destroy_device(udev);
  711. goto out;
  712. case UI_DEV_SETUP:
  713. retval = uinput_dev_setup(udev, p);
  714. goto out;
  715. /* UI_ABS_SETUP is handled in the variable size ioctls */
  716. case UI_SET_EVBIT:
  717. retval = uinput_set_bit(arg, evbit, EV_MAX);
  718. goto out;
  719. case UI_SET_KEYBIT:
  720. retval = uinput_set_bit(arg, keybit, KEY_MAX);
  721. goto out;
  722. case UI_SET_RELBIT:
  723. retval = uinput_set_bit(arg, relbit, REL_MAX);
  724. goto out;
  725. case UI_SET_ABSBIT:
  726. retval = uinput_set_bit(arg, absbit, ABS_MAX);
  727. goto out;
  728. case UI_SET_MSCBIT:
  729. retval = uinput_set_bit(arg, mscbit, MSC_MAX);
  730. goto out;
  731. case UI_SET_LEDBIT:
  732. retval = uinput_set_bit(arg, ledbit, LED_MAX);
  733. goto out;
  734. case UI_SET_SNDBIT:
  735. retval = uinput_set_bit(arg, sndbit, SND_MAX);
  736. goto out;
  737. case UI_SET_FFBIT:
  738. retval = uinput_set_bit(arg, ffbit, FF_MAX);
  739. goto out;
  740. case UI_SET_SWBIT:
  741. retval = uinput_set_bit(arg, swbit, SW_MAX);
  742. goto out;
  743. case UI_SET_PROPBIT:
  744. retval = uinput_set_bit(arg, propbit, INPUT_PROP_MAX);
  745. goto out;
  746. case UI_SET_PHYS:
  747. if (udev->state == UIST_CREATED) {
  748. retval = -EINVAL;
  749. goto out;
  750. }
  751. phys = strndup_user(p, 1024);
  752. if (IS_ERR(phys)) {
  753. retval = PTR_ERR(phys);
  754. goto out;
  755. }
  756. kfree(udev->dev->phys);
  757. udev->dev->phys = phys;
  758. goto out;
  759. case UI_BEGIN_FF_UPLOAD:
  760. retval = uinput_ff_upload_from_user(p, &ff_up);
  761. if (retval)
  762. goto out;
  763. req = uinput_request_find(udev, ff_up.request_id);
  764. if (!req || req->code != UI_FF_UPLOAD ||
  765. !req->u.upload.effect) {
  766. retval = -EINVAL;
  767. goto out;
  768. }
  769. ff_up.retval = 0;
  770. ff_up.effect = *req->u.upload.effect;
  771. if (req->u.upload.old)
  772. ff_up.old = *req->u.upload.old;
  773. else
  774. memset(&ff_up.old, 0, sizeof(struct ff_effect));
  775. retval = uinput_ff_upload_to_user(p, &ff_up);
  776. goto out;
  777. case UI_BEGIN_FF_ERASE:
  778. if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
  779. retval = -EFAULT;
  780. goto out;
  781. }
  782. req = uinput_request_find(udev, ff_erase.request_id);
  783. if (!req || req->code != UI_FF_ERASE) {
  784. retval = -EINVAL;
  785. goto out;
  786. }
  787. ff_erase.retval = 0;
  788. ff_erase.effect_id = req->u.effect_id;
  789. if (copy_to_user(p, &ff_erase, sizeof(ff_erase))) {
  790. retval = -EFAULT;
  791. goto out;
  792. }
  793. goto out;
  794. case UI_END_FF_UPLOAD:
  795. retval = uinput_ff_upload_from_user(p, &ff_up);
  796. if (retval)
  797. goto out;
  798. req = uinput_request_find(udev, ff_up.request_id);
  799. if (!req || req->code != UI_FF_UPLOAD ||
  800. !req->u.upload.effect) {
  801. retval = -EINVAL;
  802. goto out;
  803. }
  804. req->retval = ff_up.retval;
  805. complete(&req->done);
  806. goto out;
  807. case UI_END_FF_ERASE:
  808. if (copy_from_user(&ff_erase, p, sizeof(ff_erase))) {
  809. retval = -EFAULT;
  810. goto out;
  811. }
  812. req = uinput_request_find(udev, ff_erase.request_id);
  813. if (!req || req->code != UI_FF_ERASE) {
  814. retval = -EINVAL;
  815. goto out;
  816. }
  817. req->retval = ff_erase.retval;
  818. complete(&req->done);
  819. goto out;
  820. }
  821. size = _IOC_SIZE(cmd);
  822. /* Now check variable-length commands */
  823. switch (cmd & ~IOCSIZE_MASK) {
  824. case UI_GET_SYSNAME(0):
  825. if (udev->state != UIST_CREATED) {
  826. retval = -ENOENT;
  827. goto out;
  828. }
  829. name = dev_name(&udev->dev->dev);
  830. retval = uinput_str_to_user(p, name, size);
  831. goto out;
  832. case UI_ABS_SETUP & ~IOCSIZE_MASK:
  833. retval = uinput_abs_setup(udev, p, size);
  834. goto out;
  835. }
  836. retval = -EINVAL;
  837. out:
  838. mutex_unlock(&udev->mutex);
  839. return retval;
  840. }
  841. static long uinput_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
  842. {
  843. return uinput_ioctl_handler(file, cmd, arg, (void __user *)arg);
  844. }
  845. #ifdef CONFIG_COMPAT
  846. /*
  847. * These IOCTLs change their size and thus their numbers between
  848. * 32 and 64 bits.
  849. */
  850. #define UI_SET_PHYS_COMPAT \
  851. _IOW(UINPUT_IOCTL_BASE, 108, compat_uptr_t)
  852. #define UI_BEGIN_FF_UPLOAD_COMPAT \
  853. _IOWR(UINPUT_IOCTL_BASE, 200, struct uinput_ff_upload_compat)
  854. #define UI_END_FF_UPLOAD_COMPAT \
  855. _IOW(UINPUT_IOCTL_BASE, 201, struct uinput_ff_upload_compat)
  856. static long uinput_compat_ioctl(struct file *file,
  857. unsigned int cmd, unsigned long arg)
  858. {
  859. switch (cmd) {
  860. case UI_SET_PHYS_COMPAT:
  861. cmd = UI_SET_PHYS;
  862. break;
  863. case UI_BEGIN_FF_UPLOAD_COMPAT:
  864. cmd = UI_BEGIN_FF_UPLOAD;
  865. break;
  866. case UI_END_FF_UPLOAD_COMPAT:
  867. cmd = UI_END_FF_UPLOAD;
  868. break;
  869. }
  870. return uinput_ioctl_handler(file, cmd, arg, compat_ptr(arg));
  871. }
  872. #endif
  873. static const struct file_operations uinput_fops = {
  874. .owner = THIS_MODULE,
  875. .open = uinput_open,
  876. .release = uinput_release,
  877. .read = uinput_read,
  878. .write = uinput_write,
  879. .poll = uinput_poll,
  880. .unlocked_ioctl = uinput_ioctl,
  881. #ifdef CONFIG_COMPAT
  882. .compat_ioctl = uinput_compat_ioctl,
  883. #endif
  884. .llseek = no_llseek,
  885. };
  886. static struct miscdevice uinput_misc = {
  887. .fops = &uinput_fops,
  888. .minor = UINPUT_MINOR,
  889. .name = UINPUT_NAME,
  890. };
  891. module_misc_device(uinput_misc);
  892. MODULE_ALIAS_MISCDEV(UINPUT_MINOR);
  893. MODULE_ALIAS("devname:" UINPUT_NAME);
  894. MODULE_AUTHOR("Aristeu Sergio Rozanski Filho");
  895. MODULE_DESCRIPTION("User level driver support for input subsystem");
  896. MODULE_LICENSE("GPL");