install 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  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. #=================================================
  19. # GENERIC START
  20. #=================================================
  21. # IMPORT GENERIC HELPERS
  22. #=================================================
  23. source _common.sh
  24. source /usr/share/yunohost/helpers
  25. #=================================================
  26. # MANAGE SCRIPT FAILURE
  27. #=================================================
  28. # Exit if an error occurs during the execution of the script
  29. ynh_abort_if_errors
  30. #=================================================
  31. # RETRIEVE ARGUMENTS FROM THE MANIFEST
  32. #=================================================
  33. # Retrieve arguments
  34. domain=$YNH_APP_ARG_DOMAIN
  35. path_url=$YNH_APP_ARG_PATH
  36. wifi_ssid=$YNH_APP_ARG_WIFI_SSID
  37. wifi_passphrase=$YNH_APP_ARG_WIFI_PASSPHRASE
  38. firmware_nonfree=$YNH_APP_ARG_FIRMWARE_NONFREE
  39. app=$YNH_APP_INSTANCE_NAME
  40. #=================================================
  41. # CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
  42. #=================================================
  43. # Check destination directory
  44. final_path="/var/www/$app"
  45. test ! -e "$final_path" || ynh_die "This path already contains a folder"
  46. # Normalize the url path syntax
  47. path_url=$(ynh_normalize_url_path "$path_url")
  48. # Check web path availability
  49. ynh_webpath_available "$domain" "$path_url"
  50. # Register (book) web path
  51. ynh_webpath_register "$app" "$domain" "$path_url"
  52. #=================================================
  53. # STORE SETTINGS FROM MANIFEST
  54. #=================================================
  55. ynh_app_setting_set "$app" domain "$domain"
  56. ynh_app_setting_set "$app" final_path "$final_path"
  57. ynh_app_setting_set "$app" wifi_ssid "$wifi_ssid"
  58. ynh_app_setting_set "$app" wifi_passphrase "$wifi_passphrase"
  59. ynh_app_setting_set "$app" firmware_nonfree "$firmware_nonfree"
  60. #=================================================
  61. # STANDARD MODIFICATIONS
  62. #=================================================
  63. # INSTALL DEPENDENCIES
  64. #=================================================
  65. ynh_install_app_dependencies "$pkg_dependencies"
  66. #=================================================
  67. # SPECIFIC SETUP
  68. #=================================================
  69. # RUN PREREQUISITES
  70. #=================================================
  71. source ./prerequisites
  72. #=================================================
  73. # CHECK PARAMETERS
  74. #=================================================
  75. # Check arguments
  76. if [[ -z $wifi_ssid || -z $wifi_passphrase ]]; then
  77. ynh_die "Your Wifi Hotspot needs a name and a password"
  78. fi
  79. # Check passphrase length
  80. wifi_passphrase_length="$(echo -n "${wifi_passphrase}" | wc -c)"
  81. if [[ $wifi_passphrase_length -lt 8 || $wifi_passphrase_length -gt 63 ]]; then
  82. ynh_die "Your password must from 8 to 63 characters (WPA2 passphrase)"
  83. fi
  84. # Check no special characters are present in the passphrase
  85. if [[ $wifi_passphrase =~ [^[:print:]] ]]; then
  86. ynh_die "Only printable ASCII characters are permitted in your password (WPA2 passphrase)"
  87. fi
  88. #=================================================
  89. # INSTALL NONFREE FIRWARE IF REQUESTED
  90. #=================================================
  91. export DEBIAN_FRONTEND=noninteractive
  92. # Packaged USB Wireless Device firmwares
  93. # Based on https://wiki.debian.org/WiFi#USB_Devices
  94. if [[ $firmware_nonfree -eq 1 ]]; then
  95. # check if non-free is set on sources.list
  96. if ! grep -q non-free /etc/apt/sources.list ; then
  97. sed '/debian/{s/main/& non-free/}' -i /etc/apt/sources.list
  98. fi
  99. packages=$nonfree_packages
  100. else
  101. packages=$free_packages
  102. # Extract from http://packages.trisquel.info/toutatis-updates/open-ath9k-htc-firmware
  103. # https://www.fsf.org/news/ryf-certification-thinkpenguin-usb-with-atheros-chip
  104. # https://wiki.debian.org/ath9k_htc/open_firmware
  105. mkdir -p /lib/firmware
  106. install -b -o root -g root -m 0644 ../conf/firmware_htc-7010.fw /lib/firmware/htc_7010.fw
  107. install -b -o root -g root -m 0644 ../conf/firmware_htc-9271.fw /lib/firmware/htc_9271.fw
  108. fi
  109. apt-get --assume-yes --force-yes install ${packages}
  110. if [[ $? -ne 0 ]]; then
  111. apt-get update
  112. apt-get --assume-yes --force-yes install ${packages}
  113. fi
  114. #=================================================
  115. # CHECK PARAMETERS
  116. #=================================================
  117. if [[ ! -v ip6_net ]]; then # if ip6_net not set
  118. ip6_net=none
  119. ip6_addr=none
  120. if [[ -e /tmp/.ynh-vpnclient-started ]]; then
  121. vpnclient_ip6_net=$(sudo ynh_app_setting_set vpnclient ip6_net 2>&1)
  122. vpnclient_ip6_addr=$(sudo ynh_app_setting_set vpnclient ip6_addr 2>&1)
  123. if [[ $vpnclient_ip6_net =~ :: && $vpnclient_ip6_addr =~ :: ]]; then
  124. ip6_net=${vpnclient_ip6_net}
  125. ip6_addr=${vpnclient_ip6_addr}
  126. fi
  127. fi
  128. fi
  129. wifi_device=$(sudo bash ../conf/iw_devices | awk -F\| '{ print $1 }')
  130. # Save arguments
  131. if [[ -z $wifi_device ]]; then
  132. ynh_app_setting_set $app service_enabled -v 0
  133. wifi_device=none
  134. else
  135. ynh_app_setting_set $app service_enabled -v 1
  136. fi
  137. #=================================================
  138. # SAVE SETTINGS
  139. #=================================================
  140. ynh_app_setting_set $app multissid -v 1
  141. ynh_app_setting_set $app wifi_ssid -v "${wifi_ssid}"
  142. ynh_app_setting_set $app wifi_secure -v 1
  143. ynh_app_setting_set $app wifi_passphrase -v "${wifi_passphrase}"
  144. ynh_app_setting_set $app wifi_device -v "${wifi_device}"
  145. ynh_app_setting_set $app wifi_channel -v 6
  146. ynh_app_setting_set $app ip6_addr -v "${ip6_addr}"
  147. ynh_app_setting_set $app ip6_firewall -v 1
  148. ynh_app_setting_set $app ip6_net -v "${ip6_net}"
  149. ynh_app_setting_set $app ip6_dns0 -v 2001:913::8
  150. ynh_app_setting_set $app ip6_dns1 -v 2001:910:800::12
  151. ynh_app_setting_set $app ip4_dns0 -v 80.67.188.188
  152. ynh_app_setting_set $app ip4_dns1 -v 80.67.169.12
  153. ynh_app_setting_set $app ip4_nat_prefix -v 10.0.242
  154. ynh_app_setting_set $app vpnclient -v no
  155. #=================================================
  156. # INSTALL CUSTOM SCRIPTS
  157. #=================================================
  158. install -o root -g root -m 0755 ../conf/iw_multissid /usr/local/bin/
  159. install -o root -g root -m 0755 ../conf/iw_devices /usr/local/bin/
  160. install -o root -g root -m 0755 ../conf/iw_ssids /usr/local/bin/
  161. install -o root -g root -m 0755 ../conf/ipv6_expanded /usr/local/bin/
  162. install -o root -g root -m 0755 ../conf/ipv6_compressed /usr/local/bin/
  163. #=================================================
  164. # COPY CONFIGS
  165. #=================================================
  166. mkdir -pm 0755 /var/log/nginx/
  167. mkdir -pm 0755 /etc/dnsmasq.dhcpd/
  168. chown root: /etc/dnsmasq.dhcpd/
  169. install -b -o root -g root -m 0644 ../conf/hostapd.conf.tpl? /etc/hostapd/
  170. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv6.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl
  171. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv4.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl
  172. install -b -o root -g root -m 0644 ../conf/nginx_wifiadmin.conf "/etc/nginx/conf.d/${domain}.d/wifiadmin.conf"
  173. install -b -o root -g root -m 0644 ../conf/phpfpm_wifiadmin.conf /etc/php5/fpm/pool.d/wifiadmin.conf
  174. #=================================================
  175. # COPY WEB SOURCES
  176. #=================================================
  177. mkdir -pm 0755 /var/www/wifiadmin/
  178. cp -a ../sources/* /var/www/wifiadmin/
  179. chown -R root: /var/www/wifiadmin/
  180. chmod -R 0644 /var/www/wifiadmin/*
  181. find /var/www/wifiadmin/ -type d -exec chmod +x {} \;
  182. #=================================================
  183. # FIX CONFIGS
  184. #=================================================
  185. ## hostapd
  186. sed 's|^DAEMON_CONF=$|&/etc/hostapd/hostapd.conf|' -i /etc/init.d/hostapd
  187. ## nginx
  188. sed "s|<TPL:NGINX_LOCATION>|${path_url}|g" -i "/etc/nginx/conf.d/${domain}.d/wifiadmin.conf"
  189. sed 's|<TPL:NGINX_REALPATH>|/var/www/wifiadmin/|g' -i "/etc/nginx/conf.d/${domain}.d/wifiadmin.conf"
  190. sed 's|<TPL:PHP_NAME>|wifiadmin|g' -i "/etc/nginx/conf.d/${domain}.d/wifiadmin.conf"
  191. ## php-fpm
  192. sed 's|<TPL:PHP_NAME>|wifiadmin|g' -i /etc/php5/fpm/pool.d/wifiadmin.conf
  193. sed 's|<TPL:PHP_USER>|admin|g' -i /etc/php5/fpm/pool.d/wifiadmin.conf
  194. sed 's|<TPL:PHP_GROUP>|admins|g' -i /etc/php5/fpm/pool.d/wifiadmin.conf
  195. sed 's|<TPL:NGINX_REALPATH>|/var/www/wifiadmin/|g' -i /etc/php5/fpm/pool.d/wifiadmin.conf
  196. # Fix sources
  197. sed "s|<TPL:NGINX_LOCATION>|${path_url}|g" -i /var/www/wifiadmin/config.php
  198. # Copy init script
  199. install -o root -g root -m 0755 ../conf/ynh-hotspot /usr/local/bin/
  200. install -o root -g root -m 0644 ../conf/ynh-hotspot.service /etc/systemd/system/
  201. # Update firewall for DHCP
  202. yunohost firewall allow --no-upnp --ipv6 UDP 547
  203. yunohost firewall allow --no-upnp UDP 67
  204. # Set default inits
  205. # The boot order of these services are important, so they are disabled by default
  206. # and the ynh-hotspot service handles them.
  207. systemctl disable hostapd
  208. systemctl stop hostapd
  209. systemctl enable php5-fpm
  210. systemctl restart php5-fpm
  211. systemctl reload nginx
  212. # Remove IPv6 address set if there is a VPN installed
  213. if [[ $ip6_addr != none ]]; then
  214. ip -6 address show dev tun0 2> /dev/null | grep -q "${ip6_addr}/"
  215. if [[ "$?" -eq 0 ]]; then
  216. ip address delete "${ip6_addr}/128" dev tun0 &> /dev/null
  217. fi
  218. fi
  219. systemctl enable ynh-hotspot
  220. yunohost service add ynh-hotspot
  221. if [[ $wifi_device == none ]]; then
  222. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  223. fi
  224. # start the app
  225. ynh_systemctl start ynh-hotspot
  226. # Reload SSOwat config
  227. yunohost app ssowatconf