freedombone-mesh-connect 8.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # Blogging functions for mesh clients
  12. #
  13. # License
  14. # =======
  15. #
  16. # This program is free software: you can redistribute it and/or modify
  17. # it under the terms of the GNU Affero General Public License as published by
  18. # the Free Software Foundation, either version 3 of the License, or
  19. # (at your option) any later version.
  20. #
  21. # This program is distributed in the hope that it will be useful,
  22. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. # GNU Affero General Public License for more details.
  25. #
  26. # You should have received a copy of the GNU Affero General Public License
  27. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  28. PROJECT_NAME='freedombone'
  29. export TEXTDOMAIN=${PROJECT_NAME}-mesh-blog
  30. export TEXTDOMAINDIR="/usr/share/locale"
  31. MY_USERNAME='fbone'
  32. OPENVPN_SERVER_NAME="server"
  33. OPENVPN_KEY_FILENAME='client.ovpn'
  34. VPN_COUNTRY_CODE="US"
  35. VPN_AREA="Apparent Free Speech Zone"
  36. VPN_LOCATION="Freedomville"
  37. VPN_ORGANISATION="Freedombone"
  38. VPN_UNIT="Freedombone Unit"
  39. STUNNEL_PORT=3439
  40. VPN_MESH_TLS_PORT=653
  41. function vpn_generate_keys {
  42. # generate host keys
  43. if [ ! -f /etc/openvpn/dh2048.pem ]; then
  44. ${PROJECT_NAME}-dhparam -o /etc/openvpn/dh2048.pem
  45. fi
  46. if [ ! -f /etc/openvpn/dh2048.pem ]; then
  47. echo $'vpn dhparams were not generated' >> /var/log/${PROJECT_NAME}.log
  48. exit 73724523
  49. fi
  50. cp /etc/openvpn/dh2048.pem /etc/openvpn/easy-rsa/keys/dh2048.pem
  51. cd /etc/openvpn/easy-rsa
  52. . ./vars
  53. ./clean-all
  54. vpn_openssl_version='1.0.0'
  55. if [ ! -f openssl-${vpn_openssl_version}.cnf ]; then
  56. echo $"openssl-${vpn_openssl_version}.cnf was not found" >> /var/log/${PROJECT_NAME}.log
  57. exit 7392353
  58. fi
  59. cp openssl-${vpn_openssl_version}.cnf openssl.cnf
  60. if [ -f /etc/openvpn/easy-rsa/keys/${OPENVPN_SERVER_NAME}.crt ]; then
  61. rm /etc/openvpn/easy-rsa/keys/${OPENVPN_SERVER_NAME}.crt
  62. fi
  63. if [ -f /etc/openvpn/easy-rsa/keys/${OPENVPN_SERVER_NAME}.key ]; then
  64. rm /etc/openvpn/easy-rsa/keys/${OPENVPN_SERVER_NAME}.key
  65. fi
  66. if [ -f /etc/openvpn/easy-rsa/keys/${OPENVPN_SERVER_NAME}.csr ]; then
  67. rm /etc/openvpn/easy-rsa/keys/${OPENVPN_SERVER_NAME}.csr
  68. fi
  69. sed -i 's| --interact||g' build-key-server
  70. sed -i 's| --interact||g' build-ca
  71. ./build-ca
  72. ./build-key-server ${OPENVPN_SERVER_NAME}
  73. if [ ! -f /etc/openvpn/easy-rsa/keys/${OPENVPN_SERVER_NAME}.crt ]; then
  74. echo $'OpenVPN crt not found' >> /var/log/${PROJECT_NAME}.log
  75. exit 7823352
  76. fi
  77. server_cert=$(cat /etc/openvpn/easy-rsa/keys/${OPENVPN_SERVER_NAME}.crt)
  78. if [ ${#server_cert} -lt 10 ]; then
  79. cat /etc/openvpn/easy-rsa/keys/${OPENVPN_SERVER_NAME}.crt
  80. echo $'Server cert generation failed' >> /var/log/${PROJECT_NAME}.log
  81. exit 3284682
  82. fi
  83. if [ ! -f /etc/openvpn/easy-rsa/keys/${OPENVPN_SERVER_NAME}.key ]; then
  84. echo $'OpenVPN key not found' >> /var/log/${PROJECT_NAME}.log
  85. exit 6839436
  86. fi
  87. if [ ! -f /etc/openvpn/easy-rsa/keys/ca.key ]; then
  88. echo $'OpenVPN ca not found' >> /var/log/${PROJECT_NAME}.log
  89. exit 7935203
  90. fi
  91. cp /etc/openvpn/easy-rsa/keys/{$OPENVPN_SERVER_NAME.crt,$OPENVPN_SERVER_NAME.key,ca.crt} /etc/openvpn
  92. create_user_vpn_key ${MY_USERNAME}
  93. }
  94. function generate_stunnel_keys {
  95. echo "Creating stunnel keys" >> /var/log/${PROJECT_NAME}.log
  96. openssl req -x509 -nodes -days 3650 -sha256 \
  97. -subj "/O=$VPN_ORGANISATION/OU=$VPN_UNIT/C=$VPN_COUNTRY_CODE/ST=$VPN_AREA/L=$VPN_LOCATION/CN=$HOSTNAME" \
  98. -newkey rsa:2048 -keyout /etc/stunnel/key.pem \
  99. -out /etc/stunnel/cert.pem
  100. if [ ! -f /etc/stunnel/key.pem ]; then
  101. echo $'stunnel key not created' >> /var/log/${PROJECT_NAME}.log
  102. exit 793530
  103. fi
  104. if [ ! -f /etc/stunnel/cert.pem ]; then
  105. echo $'stunnel cert not created' >> /var/log/${PROJECT_NAME}.log
  106. exit 204587
  107. fi
  108. chmod 400 /etc/stunnel/key.pem
  109. chmod 640 /etc/stunnel/cert.pem
  110. cat /etc/stunnel/key.pem /etc/stunnel/cert.pem >> /etc/stunnel/stunnel.pem
  111. chmod 640 /etc/stunnel/stunnel.pem
  112. openssl pkcs12 -export -out /etc/stunnel/stunnel.p12 -inkey /etc/stunnel/key.pem -in /etc/stunnel/cert.pem -passout pass:
  113. if [ ! -f /etc/stunnel/stunnel.p12 ]; then
  114. echo $'stunnel pkcs12 not created' >> /var/log/${PROJECT_NAME}.log
  115. exit 639353
  116. fi
  117. chmod 640 /etc/stunnel/stunnel.p12
  118. cp /etc/stunnel/stunnel.pem /home/$MY_USERNAME/stunnel.pem
  119. cp /etc/stunnel/stunnel.p12 /home/$MY_USERNAME/stunnel.p12
  120. chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/stunnel*
  121. echo "stunnel keys created" >> /var/log/${PROJECT_NAME}.log
  122. }
  123. function mesh_setup_vpn {
  124. vpn_generate_keys
  125. cp /etc/stunnel/stunnel-client.conf /home/$MY_USERNAME/stunnel-client.conf
  126. chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/stunnel*
  127. generate_stunnel_keys
  128. sed -i 's|tun-mtu .*|tun-mtu 1532|g' /home/$MY_USERNAME/client.ovpn
  129. chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/client.ovpn
  130. chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/stunnel*
  131. # create an archive of the vpn client files
  132. cd /home/$MY_USERNAME
  133. tar -czvf vpn.tar.gz stunnel* client.ovpn
  134. chown $MY_USERNAME:$MY_USERNAME /home/$MY_USERNAME/vpn.tar.gz
  135. if [ -f vpn.tar.gz ]; then
  136. zenity --info --title $"Generate VPN client keys" --text $"\nNew VPN client keys have been generated in the /home/fbone directory.\n\nYou can find it by selecting \"Places\" then \"Home Directory\" on the top menu bar. Transmit the vpn.tar.gz file to whoever is running the other mesh network so that they can connect to yours.\n\nThey should uncompress vpn.tar.gz to their /home/fbone directory, forward port $VPN_MESH_TLS_PORT then connect using your IP address or domain name." --width 600
  137. fi
  138. }
  139. function connect_to_mesh {
  140. connect_title=$"Connect to another mesh network"
  141. HIDDEN_SERVICE_PATH=/var/lib/tor/hidden_service_mesh/hostname
  142. if [ -f ${HIDDEN_SERVICE_PATH} ]; then
  143. connect_title=$"Connect from $(cat $HIDDEN_SERVICE_PATH) to another mesh network"
  144. fi
  145. data=$(zenity --entry --title "$connect_title" --text $'Enter the IP address or domain name of the other mesh')
  146. sel=$?
  147. case $sel in
  148. 0)
  149. ip_or_domain="$data"
  150. if [ ${#ip_or_domain} -gt 1 ]; then
  151. if [[ "$ip_or_domain" == *'.'* ]]; then
  152. connect_failed=
  153. if [ ! -f ~/client.ovpn ]; then
  154. connect_failed=1
  155. fi
  156. if [ ! -f ~/stunnel.pem ]; then
  157. connect_failed=1
  158. fi
  159. if [ ! -f ~/stunnel.p12 ]; then
  160. connect_failed=1
  161. fi
  162. if [ $connect_failed ]; then
  163. zenity --info --title $"Connect to another mesh network" --text $"\nObtain the vpn.tar.gz file from the other mesh administrator, uncompress it into the /home/fbone directory and also forwarded port $VPN_MESH_TLS_PORT from your internet router to this system." --width 400
  164. exit 1
  165. fi
  166. sed -i "s|route .*|route $ip_or_domain 255.255.255.255 net_gateway|g" ~/client.ovpn
  167. clear
  168. cd ~/
  169. sudo stunnel stunnel-client.conf
  170. sudo openvpn client.ovpn
  171. fi
  172. fi
  173. ;;
  174. esac
  175. }
  176. data=$(zenity --list 1 $"Connect to another mesh network" 2 $"Generate VPN keys for another mesh network to connect to me" --column="id" --title $"Connect to another mesh network" --column=$"Choose an operation:" --hide-column=1 --print-column=1 --width=500 --height=100)
  177. sel=$?
  178. case $sel in
  179. 1) exit 1;;
  180. 255) exit 1;;
  181. esac
  182. case $data in
  183. 1) connect_to_mesh;;
  184. 2) mesh_setup_vpn;;
  185. esac
  186. exit 0