install 11 KB

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