install 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC START
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. source _common.sh
  8. source /usr/share/yunohost/helpers
  9. #=================================================
  10. # MANAGE SCRIPT FAILURE
  11. #=================================================
  12. ynh_clean_setup () {
  13. ynh_clean_check_starting
  14. }
  15. # Exit if an error occurs during the execution of the script
  16. ynh_abort_if_errors
  17. #=================================================
  18. # RETRIEVE ARGUMENTS FROM THE MANIFEST
  19. #=================================================
  20. wifi_ssid=$YNH_APP_ARG_WIFI_SSID
  21. wifi_passphrase=$YNH_APP_ARG_WIFI_PASSPHRASE
  22. firmware_nonfree=$YNH_APP_ARG_FIRMWARE_NONFREE
  23. app=$YNH_APP_INSTANCE_NAME
  24. # the service name must match the service template files
  25. service_name=ynh-$app
  26. #=================================================
  27. # CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
  28. #=================================================
  29. ynh_script_progression --message="Validating installation parameters..."
  30. # Check arguments
  31. if [[ -z $wifi_ssid ]] || [[ -z $wifi_passphrase ]]; then
  32. ynh_die --message="Your Wifi Hotspot needs a name and a password"
  33. fi
  34. # Check passphrase length
  35. wifi_passphrase_length="$(wc -c <<< "${wifi_passphrase}")"
  36. if [[ $wifi_passphrase_length -lt 8 ]] || [[ $wifi_passphrase_length -gt 63 ]]; then
  37. ynh_die --message="Your password must from 8 to 63 characters (WPA2 passphrase)"
  38. fi
  39. # Check no special characters are present in the passphrase
  40. if [[ $wifi_passphrase =~ [^[:print:]] ]]; then
  41. ynh_die --message="Only printable ASCII characters are permitted in your password (WPA2 passphrase)"
  42. fi
  43. #=================================================
  44. # STORE SETTINGS FROM MANIFEST
  45. #=================================================
  46. ynh_script_progression --message="Storing installation settings..."
  47. ynh_app_setting_set --app=$app --key=wifi_ssid --value="$wifi_ssid"
  48. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="$wifi_passphrase"
  49. ynh_app_setting_set --app=$app --key=firmware_nonfree --value="$firmware_nonfree"
  50. ynh_app_setting_set --app=$app --key=service_name --value=$service_name
  51. #=================================================
  52. # STANDARD MODIFICATIONS
  53. #=================================================
  54. # FIND AND OPEN A PORT
  55. #=================================================
  56. ynh_script_progression --message="Configuring firewall..."
  57. # Update firewall for DHCP
  58. ynh_exec_warn_less yunohost firewall allow --no-upnp --ipv6 UDP 547
  59. ynh_exec_warn_less yunohost firewall allow --no-upnp UDP 67
  60. # Meh idk where to put this ... On RPi, by default wlan is blocked
  61. if test -e /usr/sbin/rfkill && rfkill | grep wlan | grep -q -w 'blocked'
  62. then
  63. ynh_print_info "Unblocking wlan interface..."
  64. /usr/sbin/rfkill unblock wlan
  65. fi
  66. #=================================================
  67. # INSTALL NONFREE FIRWARE IF REQUESTED
  68. #=================================================
  69. ynh_script_progression --message="Installing firmware..."
  70. export DEBIAN_FRONTEND=noninteractive
  71. # Packaged USB Wireless Device firmwares
  72. # Based on https://wiki.debian.org/WiFi#USB_Devices
  73. if [[ $firmware_nonfree -eq 1 ]]; then
  74. check_armbian_nonfree_conflict
  75. ynh_install_extra_app_dependencies --repo="deb http://deb.debian.org/debian $(ynh_get_debian_release) non-free" --package="$nonfree_firmware_packages"
  76. else
  77. pkg_dependencies="$pkg_dependencies $free_firmware_packages"
  78. fi
  79. #=================================================
  80. # INSTALL DEPENDENCIES
  81. #=================================================
  82. ynh_script_progression --message="Installing dependencies..."
  83. ynh_install_app_dependencies $pkg_dependencies
  84. #=================================================
  85. # CREATE DEDICATED USER
  86. #=================================================
  87. ynh_script_progression --message="Configuring system user..."
  88. # Create a system user
  89. ynh_system_user_create --username=$app
  90. #=================================================
  91. # SPECIFIC SETTINGS
  92. #=================================================
  93. ynh_script_progression --message="Configuring hotspot..."
  94. ip6_net=""
  95. ip6_dns=""
  96. if [[ ! -v ip6_net ]]; then # if ip6_net not set
  97. if [[ -e /tmp/.ynh-vpnclient-started ]]; then
  98. vpnclient_ip6_net=$(ynh_app_setting_get vpnclient ip6_net 2>&1)
  99. if [[ $vpnclient_ip6_net =~ :: ]]; then
  100. ip6_net=${vpnclient_ip6_net}
  101. ip6_dns="${ip6_net}1"
  102. fi
  103. fi
  104. fi
  105. ip4_nat_prefix_index=${app##*__}
  106. if [[ "${ip4_nat_prefix_index}" == "${app}" ]]; then
  107. ip4_nat_prefix_index=0
  108. fi
  109. ip4_nat_prefix="10.${ip4_nat_prefix_index}.242"
  110. ip4_dns="${ip4_nat_prefix}.1"
  111. hot_reload_usb_wifi_cards
  112. wifi_device=$(iw_devices | awk -F\| '{ print $1 }')
  113. ynh_app_setting_set --app=$app --key=wifi_ssid --value="${wifi_ssid}"
  114. ynh_app_setting_set --app=$app --key=wifi_secure --value=1
  115. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="${wifi_passphrase}"
  116. ynh_app_setting_set --app=$app --key=wifi_device --value="${wifi_device}"
  117. ynh_app_setting_set --app=$app --key=wifi_channel --value=6
  118. ynh_app_setting_set --app=$app --key=ip6_firewall --value=1
  119. ynh_app_setting_set --app=$app --key=ip6_dns --value="${ip6_dns}"
  120. ynh_app_setting_set --app=$app --key=ip6_net --value="${ip6_net}"
  121. ynh_app_setting_set --app=$app --key=ip4_dns --value="${ip4_dns}"
  122. ynh_app_setting_set --app=$app --key=ip4_nat_prefix --value="${ip4_nat_prefix}"
  123. if [[ -z $wifi_device ]]; then
  124. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  125. else
  126. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  127. fi
  128. #=================================================
  129. # COPY CONFIGS
  130. #=================================================
  131. ynh_script_progression --message="Copying configuration files..."
  132. mkdir -pm 0755 /etc/hostapd/$app/
  133. chown root: /etc/hostapd/$app/
  134. mkdir -pm 0755 /etc/dnsmasq.$app/
  135. chown root: /etc/dnsmasq.$app/
  136. install -b -o root -g root -m 0644 ../conf/hostapd.conf.tpl /etc/hostapd/$app/hostapd.conf.tpl
  137. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv6.conf.tpl /etc/dnsmasq.$app/dhcpdv6.conf.tpl
  138. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv4.conf.tpl /etc/dnsmasq.$app/dhcpdv4.conf.tpl
  139. # Copy init script
  140. ynh_add_config --template="../conf/ynh-hotspot" --destination="/usr/local/bin/$service_name"
  141. chmod 0755 "/usr/local/bin/$service_name"
  142. # Copy openvpn scripts
  143. mkdir -pm 0755 /etc/openvpn/scripts
  144. mkdir -pm 0755 /etc/openvpn/scripts/route-up.d
  145. mkdir -pm 0755 /etc/openvpn/scripts/route-down.d
  146. ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-up.d/90-$service_name"
  147. ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-down.d/90-$service_name"
  148. chmod 0755 "/etc/openvpn/scripts/route-up.d/90-${service_name}"
  149. chmod 0755 "/etc/openvpn/scripts/route-down.d/90-${service_name}"
  150. #=================================================
  151. # CONFIGURE HOSTAPD
  152. #=================================================
  153. ynh_script_progression --message="Configuring hostapd..."
  154. # Set default inits
  155. # The boot order of these services are important, so they are disabled by default
  156. # and the ynh-hotspot service handles them.
  157. systemctl disable hostapd --quiet 2>&1
  158. systemctl stop hostapd 2>&1
  159. systemctl unmask hostapd 2>&1 # On some system e.g. RPi, for some reason hostapd is masked after install ...
  160. #=================================================
  161. # SETUP SYSTEMD
  162. #=================================================
  163. ynh_script_progression --message="Configuring a systemd service..."
  164. # Create a dedicated systemd config
  165. ynh_add_systemd_config --service=$service_name
  166. # Create custom systemd config for hostapd to handle multiple wifi devices
  167. ynh_add_systemd_config --service="hostapd@$app" --template="../conf/systemd_hostapd.service"
  168. #=================================================
  169. # INTEGRATE SERVICE IN YUNOHOST
  170. #=================================================
  171. ynh_script_progression --message="Integrating service in YunoHost..."
  172. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd@$app"
  173. #=================================================
  174. # START SYSTEMD SERVICE
  175. #=================================================
  176. ynh_script_progression --message="Starting a systemd service..."
  177. # Start a systemd service if device is present
  178. if [[ $wifi_device == "" ]]; then
  179. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  180. else
  181. ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  182. fi
  183. #=================================================
  184. # END OF SCRIPT
  185. #=================================================
  186. ynh_script_progression --message="Installation of $app completed"