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

嵌入式Linux

开发平台:

Unix_Linux

  1. Hardware driver for Intel i810 Random Number Generator (RNG)
  2. Copyright 2000,2001 Jeff Garzik <jgarzik@mandrakesoft.com>
  3. Copyright 2000,2001 Philipp Rumpf <prumpf@mandrakesoft.com>
  4. Introduction:
  5. The i810_rng device driver is software that makes use of a
  6. special hardware feature on the Intel i8xx-based chipsets,
  7. a Random Number Generator (RNG).
  8. In order to make effective use of this device driver, you
  9. should download the support software as well.  Download the
  10. latest version of the "intel-rng-tools" package from the
  11. i810_rng driver's official Web site:
  12. http://sourceforge.net/projects/gkernel/
  13. About the Intel RNG hardware, from the firmware hub datasheet:
  14. The Firmware Hub integrates a Random Number Generator (RNG)
  15. using thermal noise generated from inherently random quantum
  16. mechanical properties of silicon. When not generating new random
  17. bits the RNG circuitry will enter a low power state. Intel will
  18. provide a binary software driver to give third party software
  19. access to our RNG for use as a security feature. At this time,
  20. the RNG is only to be used with a system in an OS-present state.
  21. Theory of operation:
  22. Character driver.  Using the standard open()
  23. and read() system calls, you can read random data from
  24. the i810 RNG device.  This data is NOT CHECKED by any
  25. fitness tests, and could potentially be bogus (if the
  26. hardware is faulty or has been tampered with).  Data is only
  27. output if the hardware "has-data" flag is set, but nevertheless
  28. a security-conscious person would run fitness tests on the
  29. data before assuming it is truly random.
  30. /dev/intel_rng is char device major 10, minor 183.
  31. Driver notes:
  32. * FIXME: support poll(2)
  33. NOTE: request_mem_region was removed, for two reasons:
  34. 1) Only one RNG is supported by this driver, 2) The location
  35. used by the RNG is a fixed location in MMIO-addressable memory,
  36. 3) users with properly working BIOS e820 handling will always
  37. have the region in which the RNG is located reserved, so
  38. request_mem_region calls always fail for proper setups.
  39. However, for people who use mem=XX, BIOS e820 information is
  40. -not- in /proc/iomem, and request_mem_region(RNG_ADDR) can
  41. succeed.
  42. Driver details:
  43. Based on:
  44. Intel 82802AB/82802AC Firmware Hub (FWH) Datasheet
  45. May 1999 Order Number: 290658-002 R
  46. Intel 82802 Firmware Hub: Random Number Generator
  47. Programmer's Reference Manual
  48. December 1999 Order Number: 298029-001 R
  49. Intel 82802 Firmware HUB Random Number Generator Driver
  50. Copyright (c) 2000 Matt Sottek <msottek@quiknet.com>
  51. Special thanks to Matt Sottek.  I did the "guts", he
  52. did the "brains" and all the testing.
  53. Change history:
  54. Version 0.9.6:
  55. * Internal driver cleanups, prep for 1.0.0 release.
  56. Version 0.9.5:
  57. * Rip out entropy injection via timer.  It never ever worked,
  58.   and a better solution (rngd) is now available.
  59. Version 0.9.4:
  60. * Fix: Remove request_mem_region
  61. * Fix: Horrible bugs in FIPS calculation and test execution
  62. Version 0.9.3:
  63. * Clean up rng_read a bit.
  64. * Update i810_rng driver Web site URL.
  65. * Increase default timer interval to 4 samples per second.
  66. * Abort if mem region is not available.
  67. * BSS zero-initialization cleanup.
  68. * Call misc_register() from rng_init_one.
  69. * Fix O_NONBLOCK to occur before we schedule.
  70. Version 0.9.2:
  71. * Simplify open blocking logic
  72. Version 0.9.1:
  73. * Support i815 chipsets too (Matt Sottek)
  74. * Fix reference counting when statically compiled (prumpf)
  75. * Rewrite rng_dev_read (prumpf)
  76. * Make module races less likely (prumpf)
  77. * Small miscellaneous bug fixes (prumpf)
  78. * Use pci table for PCI id list
  79. Version 0.9.0:
  80. * Don't register a pci_driver, because we are really
  81.   using PCI bridge vendor/device ids, and someone
  82.   may want to register a driver for the bridge. (bug fix)
  83. * Don't let the usage count go negative (bug fix)
  84. * Clean up spinlocks (bug fix)
  85. * Enable PCI device, if necessary (bug fix)
  86. * iounmap on module unload (bug fix)
  87. * If RNG chrdev is already in use when open(2) is called,
  88.   sleep until it is available.
  89. * Remove redundant globals rng_allocated, rng_use_count
  90. * Convert numeric globals to unsigned
  91. * Module unload cleanup
  92. Version 0.6.2:
  93. * Clean up spinlocks.  Since we don't have any interrupts
  94.   to worry about, but we do have a timer to worry about,
  95.   we use spin_lock_bh everywhere except the timer function
  96.   itself.
  97. * Fix module load/unload.
  98. * Fix timer function and h/w enable/disable logic
  99. * New timer interval sysctl
  100. * Clean up sysctl names