freedombone-utils-rng 5.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Random number generation functions
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 2014-2016 Bob Mottram <bob@freedombone.net>
  17. #
  18. # This program is free software: you can redistribute it and/or modify
  19. # it under the terms of the GNU Affero General Public License as published by
  20. # the Free Software Foundation, either version 3 of the License, or
  21. # (at your option) any later version.
  22. #
  23. # This program is distributed in the hope that it will be useful,
  24. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. # GNU Affero General Public License for more details.
  27. #
  28. # You should have received a copy of the GNU Affero General Public License
  29. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  30. # The type of hardware random number generator being used
  31. # This can be empty, "beaglebone" or "onerng"
  32. HWRNG_TYPE=
  33. # Download location for OneRNG driver
  34. ONERNG_PACKAGE="onerng_3.4-1_all.deb"
  35. ONERNG_PACKAGE_DOWNLOAD="https://github.com/OneRNG/onerng.github.io/blob/master/sw/$ONERNG_PACKAGE?raw=true"
  36. # Hash for OneRNG driver
  37. ONERNG_PACKAGE_HASH='78f1c2f52ae573e3b398a695ece7ab9f41868252657ea269f0d5cf0bd4f2eb59'
  38. # device name for OneRNG
  39. ONERNG_DEVICE='ttyACM0'
  40. function check_hwrng {
  41. if [[ $HWRNG_TYPE == "beaglebone" ]]; then
  42. # If hardware random number generation was enabled then make sure that the device exists.
  43. # if /dev/hwrng is not found then any subsequent cryptographic key generation would
  44. # suffer from low entropy and might be insecure
  45. if [ ! -e /dev/hwrng ]; then
  46. ls /dev/hw*
  47. echo $'The hardware random number generator is enabled but could not be detected on'
  48. echo $'/dev/hwrng. There may be a problem with the installation or the Beaglebone hardware.'
  49. exit 75
  50. fi
  51. fi
  52. # If a OneRNG device was installed then verify its firmware
  53. #check_onerng_verification
  54. }
  55. function check_onerng_verification {
  56. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  57. return
  58. fi
  59. if [[ $HWRNG_TYPE != "onerng" ]]; then
  60. return
  61. fi
  62. echo $'Checking OneRNG firmware verification'
  63. last_onerng_validation=$(cat /var/log/syslog.1 | grep "OneRNG: firmware verification" | awk '/./{line=$0} END{print line}')
  64. if [[ $last_onerng_validation != *"passed OK"* ]]; then
  65. last_onerng_validation=$(cat /var/log/syslog | grep "OneRNG: firmware verification" | awk '/./{line=$0} END{print line}')
  66. if [[ $last_onerng_validation != *"passed OK"* ]]; then
  67. echo $last_onerng_validation
  68. echo $'OneRNG firmware verification failed'
  69. exit 735026
  70. fi
  71. fi
  72. echo $'OneRNG firmware verification passed'
  73. # if haveged was previously installed then remove it
  74. apt-get -yq remove haveged
  75. mark_completed $FUNCNAME
  76. }
  77. function install_onerng {
  78. apt-get -yq install rng-tools at python-gnupg
  79. # Move to the installation directory
  80. if [ ! -d $INSTALL_DIR ]; then
  81. mkdir $INSTALL_DIR
  82. fi
  83. cd $INSTALL_DIR
  84. # Download the package
  85. if [ ! -f $ONERNG_PACKAGE ]; then
  86. wget $ONERNG_PACKAGE_DOWNLOAD
  87. mv "$ONERNG_PACKAGE?raw=true" $ONERNG_PACKAGE
  88. fi
  89. if [ ! -f $ONERNG_PACKAGE ]; then
  90. echo $"OneRNG package could not be downloaded"
  91. exit 59249
  92. fi
  93. # Check the hash
  94. hash=$(sha256sum $ONERNG_PACKAGE | awk -F ' ' '{print $1}')
  95. if [[ $hash != $ONERNG_PACKAGE_HASH ]]; then
  96. echo $"OneRNG package: $ONERNG_PACKAGE"
  97. echo $"Hash does not match. This could indicate that the package has been tampered with."
  98. echo $"OneRNG expected package hash: $ONERNG_PACKAGE_HASH"
  99. echo $"OneRNG actual hash: $hash"
  100. exit 25934
  101. fi
  102. # install the package
  103. dpkg -i $ONERNG_PACKAGE
  104. # Check that the install worked
  105. if [ ! -f /etc/onerng.conf ]; then
  106. echo $'OneRNG configuration file not found. The package may not have installed successfully.'
  107. exit 42904
  108. fi
  109. dialog --title $"OneRNG Device" \
  110. --msgbox $"Please plug in the OneRNG device" 6 40
  111. # check rng-tools configuration
  112. if ! grep -q "/dev/$ONERNG_DEVICE" /etc/default/rng-tools; then
  113. echo "HRNGDEVICE=/dev/$ONERNG_DEVICE" >> /etc/default/rng-tools
  114. fi
  115. systemctl restart rng-tools
  116. }
  117. function random_number_generator {
  118. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  119. return
  120. fi
  121. if [[ $INSTALLED_WITHIN_DOCKER == "yes" ]]; then
  122. # it is assumed that docker uses the random number
  123. # generator of the host system
  124. return
  125. fi
  126. # if the hrng type has not been set but /dev/hwrng is detected
  127. if [[ $HWRNG_TYPE != "beaglebone" ]]; then
  128. if [ -e /dev/hwrng ]; then
  129. HWRNG_TYPE="beaglebone"
  130. fi
  131. fi
  132. case $HWRNG_TYPE in
  133. beaglebone)
  134. apt-get -yq install rng-tools
  135. sed -i 's|#HRNGDEVICE=/dev/hwrng|HRNGDEVICE=/dev/hwrng|g' /etc/default/rng-tools
  136. ;;
  137. onerng)
  138. function_check install_onerng
  139. install_onerng
  140. ;;
  141. *)
  142. apt-get -yq install haveged
  143. ;;
  144. esac
  145. mark_completed $FUNCNAME
  146. }
  147. # NOTE: deliberately no exit 0