install 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  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. domain=$YNH_APP_ARG_DOMAIN
  34. path_url=$YNH_APP_ARG_PATH
  35. wifi_ssid=$YNH_APP_ARG_WIFI_SSID
  36. wifi_passphrase=$YNH_APP_ARG_WIFI_PASSPHRASE
  37. firmware_nonfree=$YNH_APP_ARG_FIRMWARE_NONFREE
  38. app=$YNH_APP_INSTANCE_NAME
  39. # the service name must match the service template files
  40. service_name='ynh-hotspot'
  41. #=================================================
  42. # CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
  43. #=================================================
  44. ynh_script_progression --message="Validating installation parameters..."
  45. final_path=/var/www/$app
  46. test ! -e "$final_path" || ynh_die --message="This path already contains a folder"
  47. # Register (book) web path
  48. ynh_webpath_register --app=$app --domain=$domain --path_url=$path_url
  49. # If we're on armbian, force $firmware_nonfree
  50. # because armbian-firmware conflicts with the non-free packages ...
  51. if dpkg --list | grep -q armbian-firmware; then
  52. echo "You are running Armbian and non-free firmware are known to conflict with armbian-firwmare. " >&2
  53. firmware_nonfree=0
  54. echo "Variable firmware_non_free has been forced to 'no'" >&2
  55. fi
  56. if [ $firmware_nonfree = "no" ]; then
  57. firmware_nonfree=0
  58. elif [ $firmware_nonfree = "yes" ]; then
  59. firmware_nonfree=1
  60. fi
  61. # Check arguments
  62. if [[ -z $wifi_ssid || -z $wifi_passphrase ]]; then
  63. ynh_die --message="Your Wifi Hotspot needs a name and a password"
  64. fi
  65. # Check passphrase length
  66. wifi_passphrase_length="$(echo -n "${wifi_passphrase}" | wc -c)"
  67. if [[ $wifi_passphrase_length -lt 8 || $wifi_passphrase_length -gt 63 ]]; then
  68. ynh_die --message="Your password must from 8 to 63 characters (WPA2 passphrase)"
  69. fi
  70. # Check no special characters are present in the passphrase
  71. if [[ $wifi_passphrase =~ [^[:print:]] ]]; then
  72. ynh_die --message="Only printable ASCII characters are permitted in your password (WPA2 passphrase)"
  73. fi
  74. #=================================================
  75. # RUN PREREQUISITES
  76. #=================================================
  77. source ./prerequisites
  78. #=================================================
  79. # STORE SETTINGS FROM MANIFEST
  80. #=================================================
  81. ynh_script_progression --message="Storing installation settings..."
  82. ynh_app_setting_set --app=$app --key=domain --value="$domain"
  83. ynh_app_setting_set --app=$app --key=wifi_ssid --value="$wifi_ssid"
  84. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="$wifi_passphrase"
  85. ynh_app_setting_set --app=$app --key=firmware_nonfree --value="$firmware_nonfree"
  86. #=================================================
  87. # STANDARD MODIFICATIONS
  88. #=================================================
  89. # FIND AND OPEN A PORT
  90. #=================================================
  91. ynh_script_progression --message="Configuring firewall..."
  92. # Update firewall for DHCP
  93. ynh_exec_warn_less yunohost firewall allow --no-upnp --ipv6 UDP 547
  94. ynh_exec_warn_less yunohost firewall allow --no-upnp UDP 67
  95. #=================================================
  96. # INSTALL NONFREE FIRWARE IF REQUESTED
  97. #=================================================
  98. ynh_script_progression --message="Installing firmware..."
  99. export DEBIAN_FRONTEND=noninteractive
  100. # Packaged USB Wireless Device firmwares
  101. # Based on https://wiki.debian.org/WiFi#USB_Devices
  102. if [[ $firmware_nonfree -eq 1 ]]; then
  103. # check if non-free is set on sources.list
  104. if ! grep -q non-free /etc/apt/sources.list ; then
  105. sed '/debian/{s/main/& non-free/}' -i /etc/apt/sources.list
  106. fi
  107. packages=$nonfree_packages
  108. else
  109. packages=$free_packages
  110. # Extract from http://packages.trisquel.info/toutatis-updates/open-ath9k-htc-firmware
  111. # https://www.fsf.org/news/ryf-certification-thinkpenguin-usb-with-atheros-chip
  112. # https://wiki.debian.org/ath9k_htc/open_firmware
  113. mkdir -p /lib/firmware
  114. install -b -o root -g root -m 0644 ../conf/firmware_htc-7010.fw /lib/firmware/htc_7010.fw
  115. install -b -o root -g root -m 0644 ../conf/firmware_htc-9271.fw /lib/firmware/htc_9271.fw
  116. fi
  117. #=================================================
  118. # INSTALL DEPENDENCIES
  119. #=================================================
  120. ynh_script_progression --message="Creating a MySQL database..."
  121. ynh_install_app_dependencies "$pkg_dependencies" "$packages"
  122. #=================================================
  123. # NGINX CONFIGURATION
  124. #=================================================
  125. ynh_script_progression --message="Configuring nginx web server..."
  126. # Create a dedicated nginx config
  127. ynh_add_nginx_config
  128. #=================================================
  129. # CREATE DEDICATED USER
  130. #=================================================
  131. ynh_script_progression --message="Configuring system user..."
  132. # Create a system user
  133. ynh_system_user_create --username=$app
  134. # Ensure the system user has enough sudo permissions
  135. install -b -o root -g root -m 0440 ../conf/sudoers.conf /etc/sudoers.d/${app}_ynh
  136. ynh_replace_string --match_string="__HOTSPOT_SYSUSER__" --replace_string="${app}" --target_file="/etc/sudoers.d/${app}_ynh"
  137. #=================================================
  138. # PHP-FPM CONFIGURATION
  139. #=================================================
  140. ynh_script_progression --message="Configuring php-fpm..."
  141. # Create a dedicated php-fpm config
  142. ynh_add_fpm_config
  143. phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
  144. #=================================================
  145. # INSTALL CUSTOM SCRIPTS
  146. #=================================================
  147. ynh_script_progression --message="Installing custom script..."
  148. install -o root -g root -m 0755 ../conf/iw_multissid /usr/local/bin/
  149. install -o root -g root -m 0755 ../conf/iw_devices /usr/local/bin/
  150. install -o root -g root -m 0755 ../conf/iw_ssids /usr/local/bin/
  151. install -o root -g root -m 0755 ../conf/ipv6_expanded /usr/local/bin/
  152. install -o root -g root -m 0755 ../conf/ipv6_compressed /usr/local/bin/
  153. if [[ ! -v ip6_net ]]; then # if ip6_net not set
  154. ip6_net=none
  155. ip6_addr=none
  156. if [[ -e /tmp/.ynh-vpnclient-started ]]; then
  157. vpnclient_ip6_net=$(ynh_app_setting_get vpnclient ip6_net 2>&1)
  158. vpnclient_ip6_addr=$(ynh_app_setting_get vpnclient ip6_addr 2>&1)
  159. if [[ $vpnclient_ip6_net =~ :: && $vpnclient_ip6_addr =~ :: ]]; then
  160. ip6_net=${vpnclient_ip6_net}
  161. ip6_addr=${vpnclient_ip6_addr}
  162. fi
  163. fi
  164. fi
  165. wifi_device=$(bash ../conf/iw_devices | awk -F\| '{ print $1 }')
  166. ynh_app_setting_set --app=$app --key=multissid --value=1
  167. ynh_app_setting_set --app=$app --key=wifi_ssid --value="${wifi_ssid}"
  168. ynh_app_setting_set --app=$app --key=wifi_secure --value=1
  169. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="${wifi_passphrase}"
  170. ynh_app_setting_set --app=$app --key=wifi_device --value="${wifi_device}"
  171. ynh_app_setting_set --app=$app --key=wifi_channel --value=6
  172. ynh_app_setting_set --app=$app --key=ip6_addr --value="${ip6_addr}"
  173. ynh_app_setting_set --app=$app --key=ip6_firewall --value=1
  174. ynh_app_setting_set --app=$app --key=ip6_net --value="${ip6_net}"
  175. ynh_app_setting_set --app=$app --key=ip6_dns0 --value=2001:913::8
  176. ynh_app_setting_set --app=$app --key=ip6_dns1 --value=2001:910:800::12
  177. ynh_app_setting_set --app=$app --key=ip4_dns0 --value=80.67.188.188
  178. ynh_app_setting_set --app=$app --key=ip4_dns1 --value=80.67.169.12
  179. ynh_app_setting_set --app=$app --key=ip4_nat_prefix --value=10.0.242
  180. ynh_app_setting_set --app=$app --key=vpnclient --value=no
  181. ynh_app_setting_set --app=$app --key=service_name --value=$service_name
  182. if [[ -z $wifi_device ]]; then
  183. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  184. wifi_device=none
  185. else
  186. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  187. fi
  188. #=================================================
  189. # COPY CONFIGS
  190. #=================================================
  191. ynh_script_progression --message="Copying configuration..."
  192. mkdir -pm 0755 /etc/dnsmasq.dhcpd/
  193. chown root: /etc/dnsmasq.dhcpd/
  194. install -b -o root -g root -m 0644 ../conf/hostapd.conf.tpl? /etc/hostapd/
  195. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv6.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl
  196. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv4.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl
  197. # Copy init script
  198. install -o root -g root -m 0755 ../conf/$service_name /usr/local/bin/
  199. ynh_replace_string --match_string="__PHPVERSION__" --replace_string="${phpversion}" --target_file="/usr/local/bin/$service_name"
  200. #=================================================
  201. # COPY WEB SOURCES
  202. #=================================================
  203. ynh_script_progression --message="Copy web sources..."
  204. ynh_app_setting_set --app=$app --key=final_path --value=$final_path
  205. mkdir -pm 0755 ${final_path}/
  206. cp -a ../sources/* ${final_path}/
  207. chown -R $app: ${final_path}/
  208. chmod -R 0644 ${final_path}/*
  209. find ${final_path}/ -type d -exec chmod +x {} \;
  210. #=================================================
  211. # FIX CONFIGS
  212. #=================================================
  213. ynh_script_progression --message="Fix config..."
  214. ## hostapd
  215. ynh_replace_string --match_string="^DAEMON_CONF=$" --replace_string="&/etc/hostapd/hostapd.conf" --target_file=/etc/init.d/hostapd
  216. # We also need to put this in /etc/default/hostapd because on some setup
  217. # like RPi, the version of hostapd is different and /etc/init.d/hostapd
  218. # isnt used ... instead the service is "pure systemd" ...
  219. echo "DAEMON_CONF=/etc/hostapd/hostapd.conf" > /etc/default/hostapd
  220. # Fix sources
  221. ynh_replace_string --match_string="__PATH__" --replace_string="${path_url}" --target_file="$final_path/config.php"
  222. #=================================================
  223. # STORE THE CONFIG FILE CHECKSUM
  224. #=================================================
  225. ynh_script_progression --message="Storing the config file checksum..."
  226. # Calculate and store the config file checksum into the app settings
  227. ynh_store_file_checksum --file="$final_path/config.php"
  228. ynh_store_file_checksum --file="/etc/init.d/hostapd"
  229. #=================================================
  230. # SETUP SYSTEMD
  231. #=================================================
  232. ynh_script_progression --message="Configuring a systemd service..."
  233. # Create a dedicated systemd config
  234. ynh_add_systemd_config --service=$service_name
  235. # Set default inits
  236. # The boot order of these services are important, so they are disabled by default
  237. # and the ynh-hotspot service handles them.
  238. systemctl disable hostapd
  239. systemctl stop hostapd
  240. systemctl unmask hostapd # On some system e.g. RPi, for some reason hostapd is masked after install ...
  241. # Remove IPv6 address set if there is a VPN installed
  242. if [[ $ip6_addr != none ]]; then
  243. if ip -6 address show dev tun0 2> /dev/null | grep -q "${ip6_addr}/"; then
  244. ip address delete "${ip6_addr}/128" dev tun0 &> /dev/null
  245. fi
  246. fi
  247. #=================================================
  248. # INTEGRATE SERVICE IN YUNOHOST
  249. #=================================================
  250. ynh_script_progression --message="Integrating service in YunoHost..."
  251. yunohost service add $service_name --description "Creates a Wi-Fi access point" --log_type "systemd" --need_lock
  252. #=================================================
  253. # START SYSTEMD SERVICE
  254. #=================================================
  255. ynh_script_progression --message="Starting a systemd service..."
  256. # Start a systemd service if device is present
  257. if [[ $wifi_device == none ]]; then
  258. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  259. else
  260. ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  261. fi
  262. #=================================================
  263. # RELOAD NGINX AND PHP-FPM
  264. #=================================================
  265. ynh_script_progression --message="Reloading nginx web server..."
  266. ynh_systemd_action --service_name=php$phpversion-fpm --action=reload
  267. ynh_systemd_action --service_name=nginx --action=reload
  268. #=================================================
  269. # END OF SCRIPT
  270. #=================================================
  271. ynh_script_progression --message="Installation of $app completed"