install 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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. ip4_nat_prefix_index=${app##*__}
  97. if [[ "${ip4_nat_prefix_index}" == "${app}" ]]; then
  98. ip4_nat_prefix_index=0
  99. fi
  100. ip4_nat_prefix="10.${ip4_nat_prefix_index}.242"
  101. ip4_dns="${ip4_nat_prefix}.1"
  102. hot_reload_usb_wifi_cards
  103. wifi_device=$(unused_iw_devices | head -n 1)
  104. wifi_secure=1
  105. wifi_channel=6
  106. ynh_app_setting_set --app=$app --key=wifi_ssid --value="${wifi_ssid}"
  107. ynh_app_setting_set --app=$app --key=wifi_secure --value="${wifi_secure}"
  108. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="${wifi_passphrase}"
  109. ynh_app_setting_set --app=$app --key=wifi_device --value="${wifi_device}"
  110. ynh_app_setting_set --app=$app --key=wifi_channel --value="${wifi_channel}"
  111. ynh_app_setting_set --app=$app --key=advanced --value=0
  112. ynh_app_setting_set --app=$app --key=ip6_firewall --value=1
  113. ynh_app_setting_set --app=$app --key=ip6_net --value="${ip6_net}"
  114. ynh_app_setting_set --app=$app --key=ip6_dns --value="${ip6_dns}"
  115. ynh_app_setting_set --app=$app --key=ip4_dns --value="${ip4_dns}"
  116. ynh_app_setting_set --app=$app --key=ip4_nat_prefix --value="${ip4_nat_prefix}"
  117. if [[ -z $wifi_device ]]; then
  118. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  119. else
  120. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  121. fi
  122. #=================================================
  123. # COPY CONFIGS
  124. #=================================================
  125. ynh_script_progression --message="Copying configuration files..."
  126. mkdir -pm 0755 /etc/hostapd/$app/
  127. chown root: /etc/hostapd/$app/
  128. mkdir -pm 0755 /etc/dnsmasq.$app/
  129. chown root: /etc/dnsmasq.$app/
  130. install -b -o root -g root -m 0644 ../conf/hostapd.conf.tpl /etc/hostapd/$app/hostapd.conf.tpl
  131. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv6.conf.tpl /etc/dnsmasq.$app/dhcpdv6.conf.tpl
  132. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv4.conf.tpl /etc/dnsmasq.$app/dhcpdv4.conf.tpl
  133. # Copy init script
  134. ynh_add_config --template="../conf/ynh-hotspot" --destination="/usr/local/bin/$service_name"
  135. chmod 0755 "/usr/local/bin/$service_name"
  136. # Copy openvpn scripts
  137. mkdir -pm 0755 /etc/openvpn/scripts
  138. mkdir -pm 0755 /etc/openvpn/scripts/route-up.d
  139. mkdir -pm 0755 /etc/openvpn/scripts/route-down.d
  140. ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-up.d/90-$service_name"
  141. ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-down.d/90-$service_name"
  142. chmod 0755 "/etc/openvpn/scripts/route-up.d/90-${service_name}"
  143. chmod 0755 "/etc/openvpn/scripts/route-down.d/90-${service_name}"
  144. #=================================================
  145. # CONFIGURE HOSTAPD
  146. #=================================================
  147. ynh_script_progression --message="Configuring hostapd..."
  148. # Set default inits
  149. # The boot order of these services are important, so they are disabled by default
  150. # and the ynh-hotspot service handles them.
  151. systemctl disable hostapd --quiet 2>&1
  152. systemctl stop hostapd 2>&1
  153. systemctl unmask hostapd 2>&1 # On some system e.g. RPi, for some reason hostapd is masked after install ...
  154. if [[ -n "${wifi_device}" ]]; then
  155. configure_hostapd
  156. configure_dhcp
  157. fi
  158. #=================================================
  159. # SETUP SYSTEMD
  160. #=================================================
  161. ynh_script_progression --message="Configuring a systemd service..."
  162. # Create a dedicated systemd config
  163. ynh_add_systemd_config --service=$service_name
  164. # Create custom systemd config for hostapd to handle multiple wifi devices
  165. ynh_add_systemd_config --service="hostapd@$app" --template="../conf/systemd_hostapd.service"
  166. #=================================================
  167. # INTEGRATE SERVICE IN YUNOHOST
  168. #=================================================
  169. ynh_script_progression --message="Integrating service in YunoHost..."
  170. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd@$app"
  171. #=================================================
  172. # START SYSTEMD SERVICE
  173. #=================================================
  174. ynh_script_progression --message="Starting a systemd service..."
  175. # Start a systemd service if device is present
  176. if [[ $wifi_device == "" ]]; then
  177. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  178. else
  179. ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  180. fi
  181. #=================================================
  182. # END OF SCRIPT
  183. #=================================================
  184. ynh_script_progression --message="Installation of $app completed"