Entropy (computing)

In computing, entropy is the randomness collected by an operating system or application for use in cryptography or other uses that require random data. This randomness is often collected from hardware sources (variance in fan noise or HDD), either pre-existing ones such as mouse movements or specially provided randomness generators. A lack of entropy can have a negative impact on performance and security.

Linux kernel

The Linux kernel generates entropy from keyboard timings, mouse movements, and IDE timings and makes the random character data available to other operating system processes through the special files /dev/random and /dev/urandom. This capability was introduced in Linux version 1.3.30.[1]

There are some Linux kernel patches allowing one to use more entropy sources.[2] The audio_entropyd project, which is included in some operating systems such as Fedora, allows audio data to be used as an entropy source.[3] Also available are video_entropyd which calculates random data from a video-source and entropybroker which includes these three and can be used to distribute the entropy data to systems not capable of running any of these (e.g. virtual machines). Furthermore, one can use the HAVEGE algorithm through haveged to pool entropy.[4] In some systems, network interrupts can be used as an entropy source as well.[5]

OpenBSD kernel

OpenBSD has integrated cryptography as one of its main goals and has always worked on increasing its entropy for encryption but also for randomising many parts of the OS, including various internal operations of its kernel. Around 2011, two of the random devices were dropped and linked into a single source as it could produce hundreds of megabytes per second of high quality random data on an average system. This made depletion of random data by userland programs impossible on OpenBSD once enough entropy has initially been gathered.

Hurd kernel

A driver ported from the Linux kernel has been made available for the Hurd kernel.[6]

Solaris

/dev/random and /dev/urandom have been available as Sun packages or patches for Solaris since Solaris 2.6,[7] and have been a standard feature since Solaris 9.[8] As of Solaris 10, administrators can remove existing entropy sources or define new ones via the kernel-level cryptographic framework.

A 3rd-party kernel module implementing /dev/random is also available for releases dating back to Solaris 2.4.[7]

OS/2

There is a software package for OS/2 that allows software processes to retrieve random data.[9]

Windows

Microsoft Windows releases newer than Windows 95 use CryptoAPI to gather entropy in a similar fashion to Linux kernel's /dev/random.[10]

Windows's CryptoAPI uses the binary registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Cryptography\RNG\Seed to store a seeded value from all of its entropy sources.[11]

Because CryptoAPI is closed-source, some free and open source software applications running on the Windows platform use other measures to get randomness. For example, GnuPG, as of version 1.06, uses a variety of sources such as the number of free bytes in memory that combined with a random seed generates desired randomness it needs.[12]

Programmers using CAPI can get entropy by calling CAPI's CryptGenRandom(), after properly initializing it.[13]

CryptoAPI was deprecated from NT 6.0 and higher. New API is called Cryptography API: Next Generation (CNG)[14]

Newer version of Windows are able to use a variety of entropy sources:

  • TPM if available and enabled on motherboard
  • Entropy from UEFI interface (if booted from UEFI)[15]
  • RDRAND CPU instruction if available
  • Hardware system clock (RTC)
  • OEM0 ACPI table content

Embedded Systems

Embedded Systems have difficulty gathering enough entropy as they are often very simple devices with short boot times, and key generation operations that require sufficient entropy are often one of the first things a system may do. Common entropy sources may not exist on these devices, or will not have been active long enough during boot to ensure sufficient entropy exists. Embedded devices often lack rotating disk drives, human interface devices, and even fans, and the network interface, if any, will not have been active for long enough to provide much entropy. Lacking easy access to entropy, some devices may use hard-coded keys to seed random generators, or seed random generators from easily-guessed unique identifiers such as the device's MAC address. A simple study demonstrated the widespread use of weak keys by finding many embedded systems such as routers using the same keys. It was thought that the number of weak keys found would have been far higher if simple and often attacker determinable one-time unique identifiers had not been incorporated into the entropy of some of these systems.[16]

Other systems

There are some software packages that allow one to use a userspace process to gather random characters, exactly what /dev/random does, such as EGD, the Entropy Gathering Daemon.[17]

Hardware-originated entropy

Modern CPUs and hardware often feature integrated generators that can provide high-quality and high-speed entropy to operating systems. On systems based on the Linux kernel, one can read the entropy generated from such a device through /dev/hw_random.[18] However, sometimes /dev/hw_random may be slow;[19] usually around 80 KiB/s.[20]

There are some companies manufacturing entropy generation devices, and some of them are shipped with drivers for Linux.[21]

On Debian, one can install the rng-tools package (apt-get install rng-tools) that supports the true random number generators (TRNGs) found in CPUs supporting the RDRAND instruction, Trusted Platform Modules and in some Intel, AMD, or VIA chipsets,[22] effectively increasing the entropy collected into /dev/random and potentially improving the cryptographic potential. This is especially useful on headless systems that have no other sources of entropy.

Practical implications

System administrators, especially those supervising Internet servers, have to ensure that the server processes will not halt because of entropy depletion. Entropy on servers utilising the Linux kernel, or any other kernel or userspace process that generates entropy from the console and the storage subsystem, is often less than ideal because of the lack of a mouse and keyboard, thus servers have to generate their entropy from a limited set of resources such as IDE timings.

The entropy pool size in Linux is viewable through the file /proc/sys/kernel/random/entropy_avail and should generally be at least 2000 bits (out of a maximum of 4096).[23][24] Entropy changes frequently.

Administrators responsible for systems that have low or zero entropy should not attempt to use /dev/urandom as a substitute for /dev/random as this may cause SSL/TLS connections to have lower-grade encryption.[25]

Some software systems change their Diffie-Hellman keys often, and this may in some cases help a server to continue functioning normally even with an entropy bottleneck.[26]

On servers with low entropy, a process can appear hung when it is waiting for random characters to appear in /dev/random (on Linux-based systems). For example, there was a known problem in Debian that caused exim4 to hang in some cases because of this.[27]

Security

Entropy sources can be used for keyboard timing attacks.[28]

Entropy can affect the cryptography (TLS/SSL) of a server: If a server fails to use a proper source of randomness, the keys generated by the server will be insecure. In some cases a cracker (malicious attacker) can guess some bits of entropy from the output of a pseudorandom number generator (PRNG), and this happens when not enough entropy is introduced into the PRNG.[29]

Potential sources

Commonly used entropy sources include the mouse, keyboard, and IDE timings, but there are other potential sources. For example, one could collect entropy from the computer's microphone, or by building a sensor to measure the air turbulence inside a disk drive.[30]

For Unix/BSD derivatives there exists a USB based solution that utilizes an ARM Cortex CPU for filtering / securing the bit stream generated by two entropy generator sources in the system.[31]

See also

References

  1. random(4) - Linux man page (die.net)
  2. Robotic Tendencies ยป Missing entropy
  3. Fedora Package Database - audio-entropyd
  4. "haveged - A simple entropy daemon". Retrieved 3 April 2011.
  5. Entropy and Random Devices | LinuxLink by TimeSys - Your Embedded Linux Resource
  6. /dev/{,u}random driver for GNU/Hurd (ibofobi.dk)
  7. Solaris /dev/random through emulation
  8. "Solaris /dev/random". Archived from the original on 2008-05-11. Retrieved 2007-10-17.
  9. Rexx Entropy Gathering Daemon for OS/2
  10. GPL command-line shred alternative for Windows
  11. Source for entropy on Windows platforms with CryptoAPI installed
  12. How does Windows GnuPG generate random numbers on keygen?
  13. http://www.cs.berkeley.edu/~daw/rnd/cryptoapi-rand http://archives.seul.org/or/cvs/Mar-2004/msg00078.html
  14. https://docs.microsoft.com/en-us/windows-hardware/drivers/bringup/uefi-entropy-gathering-protocol
  15. Constantin, Lucian. "Millions of embedded devices use the same hard-coded SSH and TLS private keys". Network World. Retrieved 2018-11-05.
  16. Secure Programs HOWTO - Random Numbers
  17. 'Re: SSL/TLS entropy problem,' - MARC
  18. Re: /dev/hw_random
  19. Re: /dev/hw_random
  20. http://www.std.com/~reinhold/truenoise.html http://random.com.hr/products/random/hg324.html Archived 2008-05-13 at the Wayback Machine
  21. Re: [exim] no reply to STARTTLS
  22. random(4) Linux man page, die.net
  23. SSL/TLS entropy problem, a.k.a. pops timeouts (was: sasl ldap problem)
  24. Josefsson, Simon; [TLS] Re: Short Ephermal Diffie-Hellman keys (ietf.org mailing list)
  25. [gnutls-dev] gnutls_rsa_params_init hangs. Is regenerating rsa-params once a day too frequent?, lists.gnupg.org
  26. Zalewski, Michal; Unix entropy source can be used for keystroke timing attacks, 2003
  27. Re: entropy depletion (was: SSL/TLS passive sniffing) Archived 2011-05-17 at the Wayback Machine, 2005
  28. Build your own cryptographically safe server/client protocol - 4.8.3. Collecting entropy
  29. http://www.entropykey.co.uk Archived July 22, 2010, at the Wayback Machine
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.