freedombone-utils-dns 7.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # DNS 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. # DNS
  31. NAMESERVER1='213.73.91.35'
  32. NAMESERVER2='85.214.20.141'
  33. NAMESERVER3='213.73.91.35'
  34. NAMESERVER4='85.214.73.63'
  35. NAMESERVER5='8.8.8.8'
  36. NAMESERVER6='4.4.4.4'
  37. # parameters used when adding a new domain
  38. DDNS_PROVIDER="default@freedns.afraid.org"
  39. DDNS_USERNAME=
  40. DDNS_PASSWORD=
  41. INADYN_REPO="https://github.com/bashrc/inadyn"
  42. INADYN_COMMIT='fadbe17f520d337dfb8d69ee4bf1fcaa23fce0d6'
  43. # web site used to obtain the external IP address of the system
  44. GET_IP_ADDRESS_URL="checkip.two-dns.de"
  45. # other possible services to obtain the external IP address
  46. EXTERNAL_IP_SERVICES=( \
  47. 'https://check.torproject.org/' \
  48. 'https://www.whatsmydns.net/whats-my-ip-address.html' \
  49. 'https://www.privateinternetaccess.com/pages/whats-my-ip/' \
  50. 'http://checkip.two-dns.de' \
  51. 'http://ip.dnsexit.com' \
  52. 'http://ifconfig.me/ip' \
  53. 'http://ipecho.net/plain' \
  54. 'http://checkip.dyndns.org/plain' \
  55. 'http://ipogre.com/linux.php' \
  56. 'http://whatismyipaddress.com/' \
  57. 'http://ip.my-proxy.com/' \
  58. 'http://websiteipaddress.com/WhatIsMyIp' \
  59. 'http://getmyipaddress.org/' \
  60. 'http://www.my-ip-address.net/' \
  61. 'http://myexternalip.com/raw' \
  62. 'http://www.canyouseeme.org/' \
  63. 'http://www.trackip.net/' \
  64. 'http://icanhazip.com/' \
  65. 'http://www.iplocation.net/' \
  66. 'http://www.howtofindmyipaddress.com/' \
  67. 'http://www.ipchicken.com/' \
  68. 'http://whatsmyip.net/' \
  69. 'http://www.ip-adress.com/' \
  70. 'http://checkmyip.com/' \
  71. 'http://www.tracemyip.org/' \
  72. 'http://checkmyip.net/' \
  73. 'http://www.lawrencegoetz.com/programs/ipinfo/' \
  74. 'http://www.findmyip.co/' \
  75. 'http://ip-lookup.net/' \
  76. 'http://www.dslreports.com/whois' \
  77. 'http://www.mon-ip.com/en/my-ip/' \
  78. 'http://www.myip.ru' \
  79. 'http://ipgoat.com/' \
  80. 'http://www.myipnumber.com/my-ip-address.asp' \
  81. 'http://www.whatsmyipaddress.net/' \
  82. 'http://formyip.com/' \
  83. 'http://www.displaymyip.com/' \
  84. 'http://www.bobborst.com/tools/whatsmyip/' \
  85. 'http://www.geoiptool.com/' \
  86. 'http://checkip.dyndns.com/' \
  87. 'http://myexternalip.com/' \
  88. 'http://www.ip-adress.eu/' \
  89. 'http://www.infosniper.net/' \
  90. 'http://wtfismyip.com/' \
  91. 'http://ipinfo.io/' \
  92. 'http://httpbin.org/ip')
  93. function create_freedns_updater {
  94. if [[ $ONION_ONLY != "no" ]]; then
  95. return
  96. fi
  97. # currently inadyn doesn't work as expected with freeDNS, so this is a workaround
  98. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  99. return
  100. fi
  101. if [[ $DDNS_PROVIDER != *"freedns"* ]]; then
  102. return
  103. fi
  104. if [[ $SYSTEM_TYPE == "mesh"* ]]; then
  105. return
  106. fi
  107. # remove any legacy command
  108. if [ -f /usr/bin/dynamicdns ]; then
  109. rm /usr/bin/dynamicdns
  110. fi
  111. if grep -q "dynamicdns" /etc/crontab; then
  112. sed -i '/dynamicdns/d' /etc/crontab
  113. fi
  114. # add the update command to cron
  115. if ! grep -q "/usr/local/bin/freedombone-freedns" /etc/crontab; then
  116. function_check cron_add_mins
  117. cron_add_mins 3 '/usr/local/bin/freedombone-freedns'
  118. systemctl restart cron
  119. fi
  120. mark_completed $FUNCNAME
  121. }
  122. function add_ddns_domain {
  123. if [ ! $1 ]; then
  124. echo $'ddns domain not specified'
  125. exit 5638
  126. fi
  127. CURRENT_DDNS_DOMAIN="$1"
  128. if [[ $ONION_ONLY != "no" ]]; then
  129. return
  130. fi
  131. if [ ! -f /etc/inadyn.conf ]; then
  132. echo $'Unable to find inadyn configuration file /etc/inadyn.conf'
  133. exit 5745
  134. fi
  135. if ! grep -q "$DDNS_PROVIDER" /etc/inadyn.conf; then
  136. echo '' >> /etc/inadyn.conf
  137. echo "system $DDNS_PROVIDER" >> /etc/inadyn.conf
  138. echo ' ssl' >> /etc/inadyn.conf
  139. echo " checkip-url $GET_IP_ADDRESS_URL /" >> /etc/inadyn.conf
  140. if [ $DDNS_USERNAME ]; then
  141. echo " username $DDNS_USERNAME" >> /etc/inadyn.conf
  142. fi
  143. if [ $DDNS_PASSWORD ]; then
  144. echo " password $DDNS_PASSWORD" >> /etc/inadyn.conf
  145. fi
  146. fi
  147. if ! grep -q "$CURRENT_DDNS_DOMAIN" /etc/inadyn.conf; then
  148. echo " alias $CURRENT_DDNS_DOMAIN" >> /etc/inadyn.conf
  149. fi
  150. chmod 600 /etc/inadyn.conf
  151. systemctl restart inadyn
  152. systemctl daemon-reload
  153. }
  154. function remove_ddns_domain {
  155. if [ ! $1 ]; then
  156. echo $'ddns domain not specified'
  157. exit 5638
  158. fi
  159. CURRENT_DDNS_DOMAIN="$1"
  160. if [[ $ONION_ONLY != "no" ]]; then
  161. return
  162. fi
  163. if [ ! -f /etc/inadyn.conf ]; then
  164. echo $'Unable to find inadyn configuration file /etc/inadyn.conf'
  165. exit 5745
  166. fi
  167. if grep -q "$CURRENT_DDNS_DOMAIN" /etc/inadyn.conf; then
  168. systemctl stop inadyn
  169. sed -i "/alias $CURRENT_DDNS_DOMAIN/d" /etc/inadyn.conf
  170. systemctl start inadyn
  171. systemctl daemon-reload
  172. fi
  173. }
  174. function configure_dns {
  175. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  176. return
  177. fi
  178. # allow changes to resolv.conf
  179. chattr -i /etc/resolv.conf
  180. echo 'domain localdomain' > /etc/resolv.conf
  181. echo 'search localdomain' >> /etc/resolv.conf
  182. echo "nameserver $NAMESERVER1" >> /etc/resolv.conf
  183. echo "nameserver $NAMESERVER2" >> /etc/resolv.conf
  184. echo "nameserver $NAMESERVER3" >> /etc/resolv.conf
  185. echo "nameserver $NAMESERVER4" >> /etc/resolv.conf
  186. echo "nameserver $NAMESERVER5" >> /etc/resolv.conf
  187. echo "nameserver $NAMESERVER6" >> /etc/resolv.conf
  188. # prevent resolv.conf from changing
  189. chattr +i /etc/resolv.conf
  190. mark_completed $FUNCNAME
  191. }
  192. function set_hostname {
  193. DEFAULT_DOMAIN_NAME="$1"
  194. echo "$DEFAULT_DOMAIN_NAME" > /etc/hostname
  195. hostname $DEFAULT_DOMAIN_NAME
  196. echo "$DEFAULT_DOMAIN_NAME" > /etc/mailname
  197. if grep -q "127.0.1.1" /etc/hosts; then
  198. sed -i "s/127.0.1.1.*/127.0.1.1 $DEFAULT_DOMAIN_NAME/g" /etc/hosts
  199. else
  200. echo "127.0.1.1 $DEFAULT_DOMAIN_NAME" >> /etc/hosts
  201. fi
  202. }
  203. function set_your_domain_name {
  204. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  205. return
  206. fi
  207. function_check set_hostname
  208. set_hostname $DEFAULT_DOMAIN_NAME
  209. mark_completed $FUNCNAME
  210. }
  211. function configure_firewall_for_dns {
  212. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  213. return
  214. fi
  215. if [[ $INSTALLED_WITHIN_DOCKER == "yes" ]]; then
  216. # docker does its own firewalling
  217. return
  218. fi
  219. iptables -A INPUT -p udp -m udp --dport 1024:65535 --sport 53 -j ACCEPT
  220. function_check save_firewall_settings
  221. save_firewall_settings
  222. mark_completed $FUNCNAME
  223. }
  224. # NOTE: deliberately no exit 0