freedombone-utils-turn 7.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # TURN server functions
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 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. TURN_PORT=3478
  31. TURN_HTTP_PORT=3407
  32. TURN_ONION_PORT=8110
  33. function generate_turn_key {
  34. local turnkey="${1}"
  35. local filepath="${2}"
  36. echo "lt-cred-mech" > "${filepath}"
  37. echo "use-auth-secret" >> "${filepath}"
  38. echo "static-auth-secret=${turnkey}" >> "${filepath}"
  39. echo "realm=turn.${DEFAULT_DOMAIN_NAME}" >> "${filepath}"
  40. if [[ $ONION_ONLY == 'no' ]]; then
  41. echo "cert=$MATRIX_DATA_DIR/${DEFAULT_DOMAIN_NAME}.tls.crt" >> "${filepath}"
  42. echo "pkey=$MATRIX_DATA_DIR/${DEFAULT_DOMAIN_NAME}.tls.key" >> "${filepath}"
  43. fi
  44. }
  45. function remove_turn {
  46. firewall_remove ${TURN_HTTP_PORT}
  47. systemctl stop turn
  48. systemctl disable turn
  49. if [ -f /etc/systemd/system/turn.service ]; then
  50. rm /etc/systemd/system/turn.service
  51. fi
  52. apt-get -y remove coturn
  53. rm -rf /var/lib/turn
  54. sed -i "/# TURN Server/,/# End of TURN Server/d" /etc/nginx/sites-available/${DEFAULT_DOMAIN_NAME}
  55. remove_onion_service turn ${TURN_ONION_PORT}
  56. systemctl restart nginx
  57. }
  58. function install_turn {
  59. create_default_web_site
  60. # append the matrix server to the web site config
  61. turn_nginx_site=/etc/nginx/sites-available/$DEFAULT_DOMAIN_NAME
  62. if ! grep "# End of TURN Server" $turn_nginx_site; then
  63. if [[ $ONION_ONLY == "no" ]]; then
  64. echo '# TURN Server' >> $turn_nginx_site
  65. echo 'server {' >> $turn_nginx_site
  66. echo " listen ${TURN_HTTP_PORT} ssl;" >> $turn_nginx_site
  67. echo " listen [::]:${TURN_HTTP_PORT} ssl;" >> $turn_nginx_site
  68. echo " server_name ${DEFAULT_DOMAIN_NAME};" >> $turn_nginx_site
  69. echo '' >> $turn_nginx_site
  70. echo ' # Security' >> $turn_nginx_site
  71. function_check nginx_ssl
  72. nginx_ssl ${DEFAULT_DOMAIN_NAME}
  73. function_check nginx_disable_sniffing
  74. nginx_disable_sniffing ${DEFAULT_DOMAIN_NAME}
  75. echo ' add_header Strict-Transport-Security max-age=15768000;' >> $turn_nginx_site
  76. echo '' >> $turn_nginx_site
  77. echo ' # Logs' >> $turn_nginx_site
  78. echo ' access_log /dev/null;' >> $turn_nginx_site
  79. echo ' error_log /dev/null;' >> $turn_nginx_site
  80. echo '' >> $turn_nginx_site
  81. echo ' # Index' >> $turn_nginx_site
  82. echo ' index index.html;' >> $turn_nginx_site
  83. echo '' >> $turn_nginx_site
  84. echo ' # Location' >> $turn_nginx_site
  85. echo ' location / {' >> $turn_nginx_site
  86. function_check nginx_limits
  87. nginx_limits ${DEFAULT_DOMAIN_NAME} '15m'
  88. echo " proxy_pass http://localhost:${TURN_PORT};" >> $turn_nginx_site
  89. echo ' proxy_set_header X-Forwarded-For $remote_addr;' >> $turn_nginx_site
  90. echo ' }' >> $turn_nginx_site
  91. echo '}' >> $turn_nginx_site
  92. echo '' >> $turn_nginx_site
  93. else
  94. echo '# TURN Server' >> $turn_nginx_site
  95. fi
  96. echo 'server {' >> $turn_nginx_site
  97. echo " listen 127.0.0.1:$TURN_ONION_PORT default_server;" >> $turn_nginx_site
  98. echo " server_name $DEFAULT_DOMAIN_NAME;" >> $turn_nginx_site
  99. echo '' >> $turn_nginx_site
  100. function_check nginx_disable_sniffing
  101. nginx_disable_sniffing $DEFAULT_DOMAIN_NAME
  102. echo '' >> $turn_nginx_site
  103. echo ' # Logs' >> $turn_nginx_site
  104. echo ' access_log /dev/null;' >> $turn_nginx_site
  105. echo ' error_log /dev/null;' >> $turn_nginx_site
  106. echo '' >> $turn_nginx_site
  107. echo ' # Location' >> $turn_nginx_site
  108. echo ' location / {' >> $turn_nginx_site
  109. function_check nginx_limits
  110. nginx_limits $DEFAULT_DOMAIN_NAME '15m'
  111. echo " proxy_pass http://localhost:${TURN_PORT};" >> $turn_nginx_site
  112. echo ' proxy_set_header X-Forwarded-For $remote_addr;' >> $turn_nginx_site
  113. echo ' }' >> $turn_nginx_site
  114. echo '}' >> $turn_nginx_site
  115. echo '# End of TURN Server' >> $turn_nginx_site
  116. fi
  117. export DEBIAN_FRONTEND=noninteractive
  118. apt-get -yq install coreutils coturn \
  119. curl file gcc git libevent-2.0-5 \
  120. libevent-dev libffi-dev libffi6 \
  121. libgnutls28-dev libjpeg62-turbo \
  122. libjpeg62-turbo-dev libldap-2.4-2 \
  123. libldap2-dev libsasl2-dev \
  124. libsqlite3-dev libssl-dev \
  125. libssl1.0.0 libtool libxml2 \
  126. libxml2-dev libxslt1-dev libxslt1.1 \
  127. make python python-dev \
  128. python-pip python-psycopg2 \
  129. python-virtualenv sqlite unzip \
  130. zlib1g zlib1g-dev
  131. pip install --upgrade pip
  132. pip install --upgrade python-ldap
  133. pip install --upgrade lxml
  134. if [ ! -d /var/lib/turn ]; then
  135. mkdir /var/lib/turn
  136. fi
  137. turnkey="$(create_password 30)"
  138. generate_turn_key $turnkey /var/lib/turn/turnserver.conf
  139. chmod -R 700 /var/lib/turn/turnserver.conf
  140. chown -R matrix:matrix /var/lib/turn
  141. echo '[Unit]' > /etc/systemd/system/turn.service
  142. echo 'Description=TURN server' >> /etc/systemd/system/turn.service
  143. echo 'After=network.target nginx.target' >> /etc/systemd/system/turn.service
  144. echo '' >> /etc/systemd/system/turn.service
  145. echo '[Service]' >> /etc/systemd/system/turn.service
  146. echo 'Type=simple' >> /etc/systemd/system/turn.service
  147. echo 'User=matrix' >> /etc/systemd/system/turn.service
  148. echo "WorkingDirectory=/var/lib/turn" >> /etc/systemd/system/turn.service
  149. echo "ExecStart=/usr/bin/turnserver -c /var/lib/turn/turnserver.conf --pidfile /var/lib/matrix/homeserver.pid" >> /etc/systemd/system/turn.service
  150. echo "Environment=REPORT_STATS=\"no\"" >> /etc/systemd/system/turn.service
  151. echo 'Restart=always' >> /etc/systemd/system/turn.service
  152. echo 'RestartSec=10' >> /etc/systemd/system/turn.service
  153. echo '' >> /etc/systemd/system/turn.service
  154. echo '[Install]' >> /etc/systemd/system/turn.service
  155. echo 'WantedBy=multi-user.target' >> /etc/systemd/system/turn.service
  156. systemctl enable turn
  157. systemctl daemon-reload
  158. systemctl start turn
  159. firewall_add turn ${TURN_HTTP_PORT}
  160. TURN_ONION_HOSTNAME=$(add_onion_service turn ${TURN_PORT} ${TURN_ONION_PORT})
  161. systemctl restart nginx
  162. }
  163. # NOTE: deliberately no exit 0