install 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. #!/bin/bash
  2. # Wifi Hotspot app for YunoHost
  3. # Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  4. # Contribute at https://github.com/labriqueinternet/hotspot_ynh
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU Affero General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU Affero General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU Affero General Public License
  17. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. # This is an upgrade?
  19. upgrade=$([ "${HOTSPOT_UPGRADE}" == 1 ] && echo true || echo false)
  20. # Retrieve arguments
  21. domain=${1}
  22. url_path=${2}
  23. wifi_ssid=${3}
  24. wifi_passphrase=${4}
  25. firmware_nonfree=${5}
  26. if ! $upgrade; then
  27. # Check YunoHost version
  28. ynh_version=$(sudo dpkg -l yunohost | grep ii | awk '{ print $3 }' | sed 's/\.//g')
  29. if [ "${ynh_version}" -lt 220 ]; then
  30. echo "ERROR: You need a YunoHost version equals or greater than 2.2.0" >&2
  31. exit 1
  32. fi
  33. sudo systemctl is-active dnsmasq &> /dev/null
  34. if [ $? -ne 0 ]; then
  35. echo "ERROR: You need to enable dnsmasq instead of bind9 (apt-get remove bind9 && systemctl start dnsmasq)" >&2
  36. exit 1
  37. fi
  38. # Check arguments
  39. if [ -z "${wifi_ssid}" -o -z "${wifi_passphrase}" ]; then
  40. echo "ERROR: Your Wifi Hotspot needs a name and a password" >&2
  41. exit 1
  42. fi
  43. wifi_passphrase_length="$(echo -n "${wifi_passphrase}" | wc -c)"
  44. if [ "${wifi_passphrase_length}" -lt 8 -o "${wifi_passphrase_length}" -gt 63 ]; then
  45. echo "ERROR: Your password must from 8 to 63 characters (WPA2 passphrase)" >&2
  46. exit 1
  47. fi
  48. echo "${wifi_passphrase}" | grep -qP '[^[:print:]]'
  49. if [ $? -eq 0 ]; then
  50. echo "ERROR: Only printable ASCII characters are permitted in your password (WPA2 passphrase)" >&2
  51. exit 1
  52. fi
  53. # Check domain/path availability
  54. sudo yunohost app checkurl ${domain}${url_path} -a hotspot
  55. if [ ! $? -eq 0 ]; then
  56. exit 1
  57. fi
  58. fi
  59. # Install packages
  60. packages='php5-fpm sipcalc hostapd iptables iw dnsmasq'
  61. export DEBIAN_FRONTEND=noninteractive
  62. # Packaged USB Wireless Device firmwares
  63. # Based on https://wiki.debian.org/WiFi#USB_Devices
  64. if [ "${firmware_nonfree}" == yes ]; then
  65. packages="$packages firmware-atheros atmel-firmware firmware-linux-free firmware-linux-nonfree firmware-realtek firmware-ralink firmware-libertas zd1211-firmware"
  66. else
  67. packages="$packages firmware-linux-free"
  68. # Extract from http://packages.trisquel.info/toutatis-updates/open-ath9k-htc-firmware
  69. # https://www.fsf.org/news/ryf-certification-thinkpenguin-usb-with-atheros-chip
  70. # https://wiki.debian.org/ath9k_htc/open_firmware
  71. sudo install -b -o root -g root -m 0644 ../conf/firmware_htc-7010.fw /lib/firmware/htc_7010.fw
  72. sudo install -b -o root -g root -m 0644 ../conf/firmware_htc-9271.fw /lib/firmware/htc_9271.fw
  73. fi
  74. sudo apt-get --assume-yes --force-yes install ${packages}
  75. if [ $? -ne 0 ]; then
  76. sudo apt-get update
  77. sudo apt-get --assume-yes --force-yes install ${packages}
  78. fi
  79. if ! $upgrade; then
  80. # Compute extra arguments
  81. if [ -z "${ip6_net}" ]; then
  82. ip6_net=none
  83. ip6_addr=none
  84. if [ -e /tmp/.ynh-vpnclient-started ]; then
  85. vpnclient_ip6_net=$(sudo yunohost app setting vpnclient ip6_net 2>&1)
  86. vpnclient_ip6_addr=$(sudo yunohost app setting vpnclient ip6_addr 2>&1)
  87. if [[ "${vpnclient_ip6_net}" =~ :: && "${vpnclient_ip6_addr}" =~ :: ]]; then
  88. ip6_net=${vpnclient_ip6_net}
  89. ip6_addr=${vpnclient_ip6_addr}
  90. fi
  91. fi
  92. fi
  93. wifi_device=$(sudo bash ../conf/iw_devices | awk -F\| '{ print $1 }')
  94. if [ -z "${wifi_device}" ]; then
  95. echo "ERROR: No wifi interface found" >&2
  96. exit 1
  97. fi
  98. # Save arguments
  99. sudo yunohost app setting hotspot service_enabled -v 1
  100. sudo yunohost app setting hotspot multissid -v 1
  101. sudo yunohost app setting hotspot wifi_ssid -v "${wifi_ssid}"
  102. sudo yunohost app setting hotspot wifi_secure -v 1
  103. sudo yunohost app setting hotspot wifi_passphrase -v "${wifi_passphrase}"
  104. sudo yunohost app setting hotspot wifi_device -v "${wifi_device}"
  105. sudo yunohost app setting hotspot wifi_channel -v 6
  106. sudo yunohost app setting hotspot ip6_addr -v "${ip6_addr}"
  107. sudo yunohost app setting hotspot ip6_firewall -v 1
  108. sudo yunohost app setting hotspot ip6_net -v "${ip6_net}"
  109. sudo yunohost app setting hotspot ip6_dns0 -v 2001:913::8
  110. sudo yunohost app setting hotspot ip6_dns1 -v 2001:910:800::12
  111. sudo yunohost app setting hotspot ip4_dns0 -v 80.67.188.188
  112. sudo yunohost app setting hotspot ip4_dns1 -v 80.67.169.12
  113. sudo yunohost app setting hotspot ip4_nat_prefix -v 10.0.242
  114. sudo yunohost app setting hotspot vpnclient -v no
  115. fi
  116. # Save git commit
  117. gitcommit=$(git rev-parse HEAD)
  118. sudo yunohost app setting hotspot gitcommit -v "${gitcommit}"
  119. # Install custom scripts
  120. sudo install -o root -g root -m 0755 ../conf/iw_multissid /usr/local/bin/
  121. sudo install -o root -g root -m 0755 ../conf/iw_devices /usr/local/bin/
  122. sudo install -o root -g root -m 0755 ../conf/iw_ssids /usr/local/bin/
  123. sudo install -o root -g root -m 0755 ../conf/ipv6_expanded /usr/local/bin/
  124. sudo install -o root -g root -m 0755 ../conf/ipv6_compressed /usr/local/bin/
  125. # Copy confs
  126. sudo mkdir -pm 0755 /var/log/nginx/
  127. sudo mkdir -pm 0755 /etc/dnsmasq.dhcpd/
  128. sudo chown root: /etc/dnsmasq.dhcpd/
  129. sudo install -b -o root -g root -m 0644 ../conf/hostapd.conf.tpl? /etc/hostapd/
  130. sudo install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv6.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl
  131. sudo install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv4.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl
  132. sudo install -b -o root -g root -m 0644 ../conf/nginx_wifiadmin.conf "/etc/nginx/conf.d/${domain}.d/wifiadmin.conf"
  133. sudo install -b -o root -g root -m 0644 ../conf/phpfpm_wifiadmin.conf /etc/php5/fpm/pool.d/wifiadmin.conf
  134. # Copy web sources
  135. sudo mkdir -pm 0755 /var/www/wifiadmin/
  136. sudo cp -a ../sources/* /var/www/wifiadmin/
  137. sudo chown -R root: /var/www/wifiadmin/
  138. sudo chmod -R 0644 /var/www/wifiadmin/*
  139. sudo find /var/www/wifiadmin/ -type d -exec chmod +x {} \;
  140. # Fix confs
  141. ## hostapd
  142. sudo sed 's|^DAEMON_CONF=$|&/etc/hostapd/hostapd.conf|' -i /etc/init.d/hostapd
  143. ## nginx
  144. sudo sed "s|<TPL:NGINX_LOCATION>|${url_path}|g" -i "/etc/nginx/conf.d/${domain}.d/wifiadmin.conf"
  145. sudo sed 's|<TPL:NGINX_REALPATH>|/var/www/wifiadmin/|g' -i "/etc/nginx/conf.d/${domain}.d/wifiadmin.conf"
  146. sudo sed 's|<TPL:PHP_NAME>|wifiadmin|g' -i "/etc/nginx/conf.d/${domain}.d/wifiadmin.conf"
  147. ## php-fpm
  148. sudo sed 's|<TPL:PHP_NAME>|wifiadmin|g' -i /etc/php5/fpm/pool.d/wifiadmin.conf
  149. sudo sed 's|<TPL:PHP_USER>|admin|g' -i /etc/php5/fpm/pool.d/wifiadmin.conf
  150. sudo sed 's|<TPL:PHP_GROUP>|admins|g' -i /etc/php5/fpm/pool.d/wifiadmin.conf
  151. sudo sed 's|<TPL:NGINX_REALPATH>|/var/www/wifiadmin/|g' -i /etc/php5/fpm/pool.d/wifiadmin.conf
  152. # Fix sources
  153. sudo sed "s|<TPL:NGINX_LOCATION>|${url_path}|g" -i /var/www/wifiadmin/config.php
  154. # Copy init script
  155. sudo install -o root -g root -m 0755 ../conf/ynh-hotspot /usr/local/bin/
  156. sudo install -o root -g root -m 0644 ../conf/ynh-hotspot.service /etc/systemd/system/
  157. # Update firewall for DHCP
  158. sudo yunohost firewall allow --no-upnp --ipv6 UDP 547
  159. sudo yunohost firewall allow --no-upnp UDP 67
  160. # Set default inits
  161. # The boot order of these services are important, so they are disabled by default
  162. # and the ynh-hotspot service handles them.
  163. sudo systemctl disable hostapd
  164. sudo systemctl stop hostapd
  165. sudo systemctl enable php5-fpm
  166. sudo systemctl restart php5-fpm
  167. sudo systemctl reload nginx
  168. # Remove IPv6 address set if there is a VPN installed
  169. if [ "${ip6_addr}" != none ]; then
  170. sudo ip -6 address show dev tun0 2> /dev/null | grep -q "${ip6_addr}/"
  171. if [ "$?" -eq 0 ]; then
  172. sudo ip address delete "${ip6_addr}/128" dev tun0 &> /dev/null
  173. fi
  174. fi
  175. sudo systemctl enable ynh-hotspot
  176. sudo yunohost service add ynh-hotspot
  177. if ! $upgrade; then
  178. sudo systemctl start ynh-hotspot
  179. fi
  180. sudo yunohost app ssowatconf
  181. exit 0