install 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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. ynh_clean_setup () {
  29. ynh_clean_check_starting
  30. }
  31. # Exit if an error occurs during the execution of the script
  32. ynh_abort_if_errors
  33. #=================================================
  34. # RETRIEVE ARGUMENTS FROM THE MANIFEST
  35. #=================================================
  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. # the service name must match the service template files
  41. service_name='ynh-hotspot'
  42. #=================================================
  43. # CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
  44. #=================================================
  45. ynh_script_progression --message="Validating installation parameters..."
  46. if [ $firmware_nonfree = "no" ]; then
  47. firmware_nonfree=0
  48. elif [ $firmware_nonfree = "yes" ]; then
  49. firmware_nonfree=1
  50. fi
  51. # Check arguments
  52. if [[ -z $wifi_ssid || -z $wifi_passphrase ]]; then
  53. ynh_die --message="Your Wifi Hotspot needs a name and a password"
  54. fi
  55. # Check passphrase length
  56. wifi_passphrase_length="$(echo -n "${wifi_passphrase}" | wc -c)"
  57. if [[ $wifi_passphrase_length -lt 8 || $wifi_passphrase_length -gt 63 ]]; then
  58. ynh_die --message="Your password must from 8 to 63 characters (WPA2 passphrase)"
  59. fi
  60. # Check no special characters are present in the passphrase
  61. if [[ $wifi_passphrase =~ [^[:print:]] ]]; then
  62. ynh_die --message="Only printable ASCII characters are permitted in your password (WPA2 passphrase)"
  63. fi
  64. #=================================================
  65. # STORE SETTINGS FROM MANIFEST
  66. #=================================================
  67. ynh_script_progression --message="Storing installation settings..."
  68. ynh_app_setting_set --app=$app --key=domain --value=$domain
  69. ynh_app_setting_set --app=$app --key=wifi_ssid --value="$wifi_ssid"
  70. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="$wifi_passphrase"
  71. ynh_app_setting_set --app=$app --key=firmware_nonfree --value="$firmware_nonfree"
  72. ynh_app_setting_set --app=$app --key=service_name --value=$service_name
  73. #=================================================
  74. # STANDARD MODIFICATIONS
  75. #=================================================
  76. # FIND AND OPEN A PORT
  77. #=================================================
  78. ynh_script_progression --message="Configuring firewall..."
  79. # Update firewall for DHCP
  80. ynh_exec_warn_less yunohost firewall allow --no-upnp --ipv6 UDP 547
  81. ynh_exec_warn_less yunohost firewall allow --no-upnp UDP 67
  82. #=================================================
  83. # INSTALL NONFREE FIRWARE IF REQUESTED
  84. #=================================================
  85. ynh_script_progression --message="Installing firmware..."
  86. export DEBIAN_FRONTEND=noninteractive
  87. # Packaged USB Wireless Device firmwares
  88. # Based on https://wiki.debian.org/WiFi#USB_Devices
  89. if [[ $firmware_nonfree -eq 1 ]]; then
  90. check_armbian_nonfree_conflict
  91. ynh_install_extra_app_dependencies --repo="deb http://deb.debian.org/debian $(ynh_get_debian_release) non-free" --package="$nonfree_firmware_packages"
  92. else
  93. pkg_dependencies="$pkg_dependencies $free_firmware_packages"
  94. fi
  95. #=================================================
  96. # INSTALL DEPENDENCIES
  97. #=================================================
  98. ynh_script_progression --message="Installing dependencies..."
  99. ynh_install_app_dependencies $pkg_dependencies
  100. #=================================================
  101. # CREATE DEDICATED USER
  102. #=================================================
  103. ynh_script_progression --message="Configuring system user..."
  104. # Create a system user
  105. ynh_system_user_create --username=$app
  106. # Ensure the system user has enough sudo permissions
  107. install -b -o root -g root -m 0440 ../conf/sudoers.conf /etc/sudoers.d/${app}_ynh
  108. ynh_replace_string --match_string="__HOTSPOT_SYSUSER__" --replace_string="${app}" --target_file="/etc/sudoers.d/${app}_ynh"
  109. #=================================================
  110. # INSTALL CUSTOM SCRIPTS
  111. #=================================================
  112. ynh_script_progression --message="Installing custom script..."
  113. install -o root -g root -m 0755 ../conf/iw_multissid /usr/local/bin/
  114. install -o root -g root -m 0755 ../conf/iw_devices /usr/local/bin/
  115. install -o root -g root -m 0755 ../conf/iw_ssids /usr/local/bin/
  116. install -o root -g root -m 0755 ../conf/ipv6_expanded /usr/local/bin/
  117. install -o root -g root -m 0755 ../conf/ipv6_compressed /usr/local/bin/
  118. if [[ ! -v ip6_net ]]; then # if ip6_net not set
  119. ip6_net=none
  120. ip6_addr=none
  121. if [[ -e /tmp/.ynh-vpnclient-started ]]; then
  122. vpnclient_ip6_net=$(ynh_app_setting_get vpnclient ip6_net 2>&1)
  123. vpnclient_ip6_addr=$(ynh_app_setting_get vpnclient ip6_addr 2>&1)
  124. if [[ $vpnclient_ip6_net =~ :: && $vpnclient_ip6_addr =~ :: ]]; then
  125. ip6_net=${vpnclient_ip6_net}
  126. ip6_addr=${vpnclient_ip6_addr}
  127. fi
  128. fi
  129. fi
  130. hot_reload_usb_wifi_cards
  131. wifi_device=$(bash ../conf/iw_devices | awk -F\| '{ print $1 }')
  132. ynh_app_setting_set --app=$app --key=multissid --value=1
  133. ynh_app_setting_set --app=$app --key=ssid_nb --value=1
  134. ynh_app_setting_set --app=$app --key=wifi_ssid --value="${wifi_ssid}"
  135. ynh_app_setting_set --app=$app --key=wifi_secure --value=1
  136. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="${wifi_passphrase}"
  137. ynh_app_setting_set --app=$app --key=wifi_device --value="${wifi_device}"
  138. ynh_app_setting_set --app=$app --key=wifi_channel --value=6
  139. ynh_app_setting_set --app=$app --key=ip6_addr --value="${ip6_addr}"
  140. ynh_app_setting_set --app=$app --key=ip6_firewall --value=1
  141. ynh_app_setting_set --app=$app --key=ip6_net --value="${ip6_net}"
  142. ynh_app_setting_set --app=$app --key=dns --value="2001:913::8,2001:910:800::12,80.67.188.188,80.67.169.12"
  143. ynh_app_setting_set --app=$app --key=ip4_nat_prefix --value=10.0.242
  144. ynh_app_setting_set --app=$app --key=vpnclient --value=no
  145. if [[ -z $wifi_device ]]; then
  146. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  147. else
  148. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  149. fi
  150. #=================================================
  151. # COPY CONFIGS
  152. #=================================================
  153. ynh_script_progression --message="Copying configuration..."
  154. mkdir -pm 0755 /etc/dnsmasq.dhcpd/
  155. chown root: /etc/dnsmasq.dhcpd/
  156. install -b -o root -g root -m 0644 ../conf/hostapd.conf.tpl? /etc/hostapd/
  157. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv6.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl
  158. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv4.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl
  159. # Copy init script
  160. install -o root -g root -m 0755 ../conf/$service_name /usr/local/bin/
  161. #=================================================
  162. # CONFIGURE HOSTAPD
  163. #=================================================
  164. ynh_script_progression --message="Configuring hostapd..."
  165. ## hostapd
  166. ynh_replace_string --match_string="^DAEMON_CONF=$" --replace_string="&/etc/hostapd/hostapd.conf" --target_file=/etc/init.d/hostapd
  167. # We also need to put this in /etc/default/hostapd because on some setup
  168. # like RPi, the version of hostapd is different and /etc/init.d/hostapd
  169. # isnt used ... instead the service is "pure systemd" ...
  170. echo "DAEMON_CONF=/etc/hostapd/hostapd.conf" > /etc/default/hostapd
  171. # Set default inits
  172. # The boot order of these services are important, so they are disabled by default
  173. # and the ynh-hotspot service handles them.
  174. systemctl disable hostapd --quiet
  175. systemctl stop hostapd
  176. systemctl unmask hostapd # On some system e.g. RPi, for some reason hostapd is masked after install ...
  177. #=================================================
  178. # STORE THE CONFIG FILE CHECKSUM
  179. #=================================================
  180. ynh_script_progression --message="Storing the config file checksum..."
  181. # Calculate and store the config file checksum into the app settings
  182. ynh_store_file_checksum --file="/etc/init.d/hostapd"
  183. #=================================================
  184. # SETUP SYSTEMD
  185. #=================================================
  186. ynh_script_progression --message="Configuring a systemd service..."
  187. # Create a dedicated systemd config
  188. ynh_add_systemd_config --service=$service_name
  189. # Remove IPv6 address set if there is a VPN installed
  190. if [[ $ip6_addr != "" ]]; then
  191. if ip -6 address show dev tun0 2> /dev/null | grep -q "${ip6_addr}/"; then
  192. ip address delete "${ip6_addr}/128" dev tun0 &> /dev/null
  193. fi
  194. fi
  195. #=================================================
  196. # INTEGRATE SERVICE IN YUNOHOST
  197. #=================================================
  198. ynh_script_progression --message="Integrating service in YunoHost..."
  199. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd"
  200. #=================================================
  201. # START SYSTEMD SERVICE
  202. #=================================================
  203. ynh_script_progression --message="Starting a systemd service..."
  204. # Start a systemd service if device is present
  205. if [[ $wifi_device == "" ]]; then
  206. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  207. else
  208. ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  209. fi
  210. #=================================================
  211. # END OF SCRIPT
  212. #=================================================
  213. ynh_script_progression --message="Installation of $app completed"