chaoskey.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577
  1. /*
  2. * chaoskey - driver for ChaosKey device from Altus Metrum.
  3. *
  4. * This device provides true random numbers using a noise source based
  5. * on a reverse-biased p-n junction in avalanche breakdown. More
  6. * details can be found at http://chaoskey.org
  7. *
  8. * The driver connects to the kernel hardware RNG interface to provide
  9. * entropy for /dev/random and other kernel activities. It also offers
  10. * a separate /dev/ entry to allow for direct access to the random
  11. * bit stream.
  12. *
  13. * Copyright © 2015 Keith Packard <keithp@keithp.com>
  14. *
  15. * This program is free software; you can redistribute it and/or modify
  16. * it under the terms of the GNU General Public License as published by
  17. * the Free Software Foundation; version 2 of the License.
  18. *
  19. * This program is distributed in the hope that it will be useful, but
  20. * WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  22. * General Public License for more details.
  23. */
  24. #include <linux/module.h>
  25. #include <linux/slab.h>
  26. #include <linux/usb.h>
  27. #include <linux/wait.h>
  28. #include <linux/hw_random.h>
  29. #include <linux/mutex.h>
  30. #include <linux/uaccess.h>
  31. static struct usb_driver chaoskey_driver;
  32. static struct usb_class_driver chaoskey_class;
  33. static int chaoskey_rng_read(struct hwrng *rng, void *data,
  34. size_t max, bool wait);
  35. #define usb_dbg(usb_if, format, arg...) \
  36. dev_dbg(&(usb_if)->dev, format, ## arg)
  37. #define usb_err(usb_if, format, arg...) \
  38. dev_err(&(usb_if)->dev, format, ## arg)
  39. /* Version Information */
  40. #define DRIVER_AUTHOR "Keith Packard, keithp@keithp.com"
  41. #define DRIVER_DESC "Altus Metrum ChaosKey driver"
  42. #define DRIVER_SHORT "chaoskey"
  43. MODULE_AUTHOR(DRIVER_AUTHOR);
  44. MODULE_DESCRIPTION(DRIVER_DESC);
  45. MODULE_LICENSE("GPL");
  46. #define CHAOSKEY_VENDOR_ID 0x1d50 /* OpenMoko */
  47. #define CHAOSKEY_PRODUCT_ID 0x60c6 /* ChaosKey */
  48. #define ALEA_VENDOR_ID 0x12d8 /* Araneus */
  49. #define ALEA_PRODUCT_ID 0x0001 /* Alea I */
  50. #define CHAOSKEY_BUF_LEN 64 /* max size of USB full speed packet */
  51. #define NAK_TIMEOUT (HZ) /* normal stall/wait timeout */
  52. #define ALEA_FIRST_TIMEOUT (HZ*3) /* first stall/wait timeout for Alea */
  53. #ifdef CONFIG_USB_DYNAMIC_MINORS
  54. #define USB_CHAOSKEY_MINOR_BASE 0
  55. #else
  56. /* IOWARRIOR_MINOR_BASE + 16, not official yet */
  57. #define USB_CHAOSKEY_MINOR_BASE 224
  58. #endif
  59. static const struct usb_device_id chaoskey_table[] = {
  60. { USB_DEVICE(CHAOSKEY_VENDOR_ID, CHAOSKEY_PRODUCT_ID) },
  61. { USB_DEVICE(ALEA_VENDOR_ID, ALEA_PRODUCT_ID) },
  62. { },
  63. };
  64. MODULE_DEVICE_TABLE(usb, chaoskey_table);
  65. static void chaos_read_callback(struct urb *urb);
  66. /* Driver-local specific stuff */
  67. struct chaoskey {
  68. struct usb_interface *interface;
  69. char in_ep;
  70. struct mutex lock;
  71. struct mutex rng_lock;
  72. int open; /* open count */
  73. bool present; /* device not disconnected */
  74. bool reading; /* ongoing IO */
  75. bool reads_started; /* track first read for Alea */
  76. int size; /* size of buf */
  77. int valid; /* bytes of buf read */
  78. int used; /* bytes of buf consumed */
  79. char *name; /* product + serial */
  80. struct hwrng hwrng; /* Embedded struct for hwrng */
  81. int hwrng_registered; /* registered with hwrng API */
  82. wait_queue_head_t wait_q; /* for timeouts */
  83. struct urb *urb; /* for performing IO */
  84. char *buf;
  85. };
  86. static void chaoskey_free(struct chaoskey *dev)
  87. {
  88. if (dev) {
  89. usb_dbg(dev->interface, "free");
  90. usb_free_urb(dev->urb);
  91. kfree(dev->name);
  92. kfree(dev->buf);
  93. kfree(dev);
  94. }
  95. }
  96. static int chaoskey_probe(struct usb_interface *interface,
  97. const struct usb_device_id *id)
  98. {
  99. struct usb_device *udev = interface_to_usbdev(interface);
  100. struct usb_host_interface *altsetting = interface->cur_altsetting;
  101. struct usb_endpoint_descriptor *epd;
  102. int in_ep;
  103. struct chaoskey *dev;
  104. int result = -ENOMEM;
  105. int size;
  106. int res;
  107. usb_dbg(interface, "probe %s-%s", udev->product, udev->serial);
  108. /* Find the first bulk IN endpoint and its packet size */
  109. res = usb_find_bulk_in_endpoint(altsetting, &epd);
  110. if (res) {
  111. usb_dbg(interface, "no IN endpoint found");
  112. return res;
  113. }
  114. in_ep = usb_endpoint_num(epd);
  115. size = usb_endpoint_maxp(epd);
  116. /* Validate endpoint and size */
  117. if (size <= 0) {
  118. usb_dbg(interface, "invalid size (%d)", size);
  119. return -ENODEV;
  120. }
  121. if (size > CHAOSKEY_BUF_LEN) {
  122. usb_dbg(interface, "size reduced from %d to %d\n",
  123. size, CHAOSKEY_BUF_LEN);
  124. size = CHAOSKEY_BUF_LEN;
  125. }
  126. /* Looks good, allocate and initialize */
  127. dev = kzalloc(sizeof(struct chaoskey), GFP_KERNEL);
  128. if (dev == NULL)
  129. goto out;
  130. dev->buf = kmalloc(size, GFP_KERNEL);
  131. if (dev->buf == NULL)
  132. goto out;
  133. dev->urb = usb_alloc_urb(0, GFP_KERNEL);
  134. if (!dev->urb)
  135. goto out;
  136. usb_fill_bulk_urb(dev->urb,
  137. udev,
  138. usb_rcvbulkpipe(udev, in_ep),
  139. dev->buf,
  140. size,
  141. chaos_read_callback,
  142. dev);
  143. /* Construct a name using the product and serial values. Each
  144. * device needs a unique name for the hwrng code
  145. */
  146. if (udev->product && udev->serial) {
  147. dev->name = kmalloc(strlen(udev->product) + 1 +
  148. strlen(udev->serial) + 1, GFP_KERNEL);
  149. if (dev->name == NULL)
  150. goto out;
  151. strcpy(dev->name, udev->product);
  152. strcat(dev->name, "-");
  153. strcat(dev->name, udev->serial);
  154. }
  155. dev->interface = interface;
  156. dev->in_ep = in_ep;
  157. if (le16_to_cpu(udev->descriptor.idVendor) != ALEA_VENDOR_ID)
  158. dev->reads_started = 1;
  159. dev->size = size;
  160. dev->present = 1;
  161. init_waitqueue_head(&dev->wait_q);
  162. mutex_init(&dev->lock);
  163. mutex_init(&dev->rng_lock);
  164. usb_set_intfdata(interface, dev);
  165. result = usb_register_dev(interface, &chaoskey_class);
  166. if (result) {
  167. usb_err(interface, "Unable to allocate minor number.");
  168. goto out;
  169. }
  170. dev->hwrng.name = dev->name ? dev->name : chaoskey_driver.name;
  171. dev->hwrng.read = chaoskey_rng_read;
  172. dev->hwrng.quality = 1024;
  173. dev->hwrng_registered = (hwrng_register(&dev->hwrng) == 0);
  174. if (!dev->hwrng_registered)
  175. usb_err(interface, "Unable to register with hwrng");
  176. usb_enable_autosuspend(udev);
  177. usb_dbg(interface, "chaoskey probe success, size %d", dev->size);
  178. return 0;
  179. out:
  180. usb_set_intfdata(interface, NULL);
  181. chaoskey_free(dev);
  182. return result;
  183. }
  184. static void chaoskey_disconnect(struct usb_interface *interface)
  185. {
  186. struct chaoskey *dev;
  187. usb_dbg(interface, "disconnect");
  188. dev = usb_get_intfdata(interface);
  189. if (!dev) {
  190. usb_dbg(interface, "disconnect failed - no dev");
  191. return;
  192. }
  193. if (dev->hwrng_registered)
  194. hwrng_unregister(&dev->hwrng);
  195. usb_deregister_dev(interface, &chaoskey_class);
  196. usb_set_intfdata(interface, NULL);
  197. mutex_lock(&dev->lock);
  198. dev->present = 0;
  199. usb_poison_urb(dev->urb);
  200. if (!dev->open) {
  201. mutex_unlock(&dev->lock);
  202. chaoskey_free(dev);
  203. } else
  204. mutex_unlock(&dev->lock);
  205. usb_dbg(interface, "disconnect done");
  206. }
  207. static int chaoskey_open(struct inode *inode, struct file *file)
  208. {
  209. struct chaoskey *dev;
  210. struct usb_interface *interface;
  211. /* get the interface from minor number and driver information */
  212. interface = usb_find_interface(&chaoskey_driver, iminor(inode));
  213. if (!interface)
  214. return -ENODEV;
  215. usb_dbg(interface, "open");
  216. dev = usb_get_intfdata(interface);
  217. if (!dev) {
  218. usb_dbg(interface, "open (dev)");
  219. return -ENODEV;
  220. }
  221. file->private_data = dev;
  222. mutex_lock(&dev->lock);
  223. ++dev->open;
  224. mutex_unlock(&dev->lock);
  225. usb_dbg(interface, "open success");
  226. return 0;
  227. }
  228. static int chaoskey_release(struct inode *inode, struct file *file)
  229. {
  230. struct chaoskey *dev = file->private_data;
  231. struct usb_interface *interface;
  232. if (dev == NULL)
  233. return -ENODEV;
  234. interface = dev->interface;
  235. usb_dbg(interface, "release");
  236. mutex_lock(&dev->lock);
  237. usb_dbg(interface, "open count at release is %d", dev->open);
  238. if (dev->open <= 0) {
  239. usb_dbg(interface, "invalid open count (%d)", dev->open);
  240. mutex_unlock(&dev->lock);
  241. return -ENODEV;
  242. }
  243. --dev->open;
  244. if (!dev->present) {
  245. if (dev->open == 0) {
  246. mutex_unlock(&dev->lock);
  247. chaoskey_free(dev);
  248. } else
  249. mutex_unlock(&dev->lock);
  250. } else
  251. mutex_unlock(&dev->lock);
  252. usb_dbg(interface, "release success");
  253. return 0;
  254. }
  255. static void chaos_read_callback(struct urb *urb)
  256. {
  257. struct chaoskey *dev = urb->context;
  258. int status = urb->status;
  259. usb_dbg(dev->interface, "callback status (%d)", status);
  260. if (status == 0)
  261. dev->valid = urb->actual_length;
  262. else
  263. dev->valid = 0;
  264. dev->used = 0;
  265. /* must be seen first before validity is announced */
  266. smp_wmb();
  267. dev->reading = false;
  268. wake_up(&dev->wait_q);
  269. }
  270. /* Fill the buffer. Called with dev->lock held
  271. */
  272. static int _chaoskey_fill(struct chaoskey *dev)
  273. {
  274. DEFINE_WAIT(wait);
  275. int result;
  276. bool started;
  277. usb_dbg(dev->interface, "fill");
  278. /* Return immediately if someone called before the buffer was
  279. * empty */
  280. if (dev->valid != dev->used) {
  281. usb_dbg(dev->interface, "not empty yet (valid %d used %d)",
  282. dev->valid, dev->used);
  283. return 0;
  284. }
  285. /* Bail if the device has been removed */
  286. if (!dev->present) {
  287. usb_dbg(dev->interface, "device not present");
  288. return -ENODEV;
  289. }
  290. /* Make sure the device is awake */
  291. result = usb_autopm_get_interface(dev->interface);
  292. if (result) {
  293. usb_dbg(dev->interface, "wakeup failed (result %d)", result);
  294. return result;
  295. }
  296. dev->reading = true;
  297. result = usb_submit_urb(dev->urb, GFP_KERNEL);
  298. if (result < 0) {
  299. result = usb_translate_errors(result);
  300. dev->reading = false;
  301. goto out;
  302. }
  303. /* The first read on the Alea takes a little under 2 seconds.
  304. * Reads after the first read take only a few microseconds
  305. * though. Presumably the entropy-generating circuit needs
  306. * time to ramp up. So, we wait longer on the first read.
  307. */
  308. started = dev->reads_started;
  309. dev->reads_started = true;
  310. result = wait_event_interruptible_timeout(
  311. dev->wait_q,
  312. !dev->reading,
  313. (started ? NAK_TIMEOUT : ALEA_FIRST_TIMEOUT) );
  314. if (result < 0)
  315. goto out;
  316. if (result == 0)
  317. result = -ETIMEDOUT;
  318. else
  319. result = dev->valid;
  320. out:
  321. /* Let the device go back to sleep eventually */
  322. usb_autopm_put_interface(dev->interface);
  323. usb_dbg(dev->interface, "read %d bytes", dev->valid);
  324. return result;
  325. }
  326. static ssize_t chaoskey_read(struct file *file,
  327. char __user *buffer,
  328. size_t count,
  329. loff_t *ppos)
  330. {
  331. struct chaoskey *dev;
  332. ssize_t read_count = 0;
  333. int this_time;
  334. int result = 0;
  335. unsigned long remain;
  336. dev = file->private_data;
  337. if (dev == NULL || !dev->present)
  338. return -ENODEV;
  339. usb_dbg(dev->interface, "read %zu", count);
  340. while (count > 0) {
  341. /* Grab the rng_lock briefly to ensure that the hwrng interface
  342. * gets priority over other user access
  343. */
  344. result = mutex_lock_interruptible(&dev->rng_lock);
  345. if (result)
  346. goto bail;
  347. mutex_unlock(&dev->rng_lock);
  348. result = mutex_lock_interruptible(&dev->lock);
  349. if (result)
  350. goto bail;
  351. if (dev->valid == dev->used) {
  352. result = _chaoskey_fill(dev);
  353. if (result < 0) {
  354. mutex_unlock(&dev->lock);
  355. goto bail;
  356. }
  357. }
  358. this_time = dev->valid - dev->used;
  359. if (this_time > count)
  360. this_time = count;
  361. remain = copy_to_user(buffer, dev->buf + dev->used, this_time);
  362. if (remain) {
  363. result = -EFAULT;
  364. /* Consume the bytes that were copied so we don't leak
  365. * data to user space
  366. */
  367. dev->used += this_time - remain;
  368. mutex_unlock(&dev->lock);
  369. goto bail;
  370. }
  371. count -= this_time;
  372. read_count += this_time;
  373. buffer += this_time;
  374. dev->used += this_time;
  375. mutex_unlock(&dev->lock);
  376. }
  377. bail:
  378. if (read_count) {
  379. usb_dbg(dev->interface, "read %zu bytes", read_count);
  380. return read_count;
  381. }
  382. usb_dbg(dev->interface, "empty read, result %d", result);
  383. if (result == -ETIMEDOUT)
  384. result = -EAGAIN;
  385. return result;
  386. }
  387. static int chaoskey_rng_read(struct hwrng *rng, void *data,
  388. size_t max, bool wait)
  389. {
  390. struct chaoskey *dev = container_of(rng, struct chaoskey, hwrng);
  391. int this_time;
  392. usb_dbg(dev->interface, "rng_read max %zu wait %d", max, wait);
  393. if (!dev->present) {
  394. usb_dbg(dev->interface, "device not present");
  395. return 0;
  396. }
  397. /* Hold the rng_lock until we acquire the device lock so that
  398. * this operation gets priority over other user access to the
  399. * device
  400. */
  401. mutex_lock(&dev->rng_lock);
  402. mutex_lock(&dev->lock);
  403. mutex_unlock(&dev->rng_lock);
  404. /* Try to fill the buffer if empty. It doesn't actually matter
  405. * if _chaoskey_fill works; we'll just return zero bytes as
  406. * the buffer will still be empty
  407. */
  408. if (dev->valid == dev->used)
  409. (void) _chaoskey_fill(dev);
  410. this_time = dev->valid - dev->used;
  411. if (this_time > max)
  412. this_time = max;
  413. memcpy(data, dev->buf + dev->used, this_time);
  414. dev->used += this_time;
  415. mutex_unlock(&dev->lock);
  416. usb_dbg(dev->interface, "rng_read this_time %d\n", this_time);
  417. return this_time;
  418. }
  419. #ifdef CONFIG_PM
  420. static int chaoskey_suspend(struct usb_interface *interface,
  421. pm_message_t message)
  422. {
  423. usb_dbg(interface, "suspend");
  424. return 0;
  425. }
  426. static int chaoskey_resume(struct usb_interface *interface)
  427. {
  428. usb_dbg(interface, "resume");
  429. return 0;
  430. }
  431. #else
  432. #define chaoskey_suspend NULL
  433. #define chaoskey_resume NULL
  434. #endif
  435. /* file operation pointers */
  436. static const struct file_operations chaoskey_fops = {
  437. .owner = THIS_MODULE,
  438. .read = chaoskey_read,
  439. .open = chaoskey_open,
  440. .release = chaoskey_release,
  441. .llseek = default_llseek,
  442. };
  443. /* class driver information */
  444. static struct usb_class_driver chaoskey_class = {
  445. .name = "chaoskey%d",
  446. .fops = &chaoskey_fops,
  447. .minor_base = USB_CHAOSKEY_MINOR_BASE,
  448. };
  449. /* usb specific object needed to register this driver with the usb subsystem */
  450. static struct usb_driver chaoskey_driver = {
  451. .name = DRIVER_SHORT,
  452. .probe = chaoskey_probe,
  453. .disconnect = chaoskey_disconnect,
  454. .suspend = chaoskey_suspend,
  455. .resume = chaoskey_resume,
  456. .reset_resume = chaoskey_resume,
  457. .id_table = chaoskey_table,
  458. .supports_autosuspend = 1,
  459. };
  460. module_usb_driver(chaoskey_driver);