install 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  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-hotspot'
  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. if [[ ! -v ip6_net ]]; then # if ip6_net not set
  95. ip6_net=""
  96. if [[ -e /tmp/.ynh-vpnclient-started ]]; then
  97. vpnclient_ip6_net=$(ynh_app_setting_get vpnclient ip6_net 2>&1)
  98. if [[ $vpnclient_ip6_net =~ :: ]]; then
  99. ip6_net=${vpnclient_ip6_net}
  100. fi
  101. fi
  102. fi
  103. hot_reload_usb_wifi_cards
  104. wifi_device=$(iw_devices | awk -F\| '{ print $1 }')
  105. ynh_app_setting_set --app=$app --key=multissid --value=1
  106. ynh_app_setting_set --app=$app --key=ssid_nb --value=1
  107. ynh_app_setting_set --app=$app --key=wifi_ssid --value="${wifi_ssid}"
  108. ynh_app_setting_set --app=$app --key=wifi_secure --value=1
  109. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="${wifi_passphrase}"
  110. ynh_app_setting_set --app=$app --key=wifi_device --value="${wifi_device}"
  111. ynh_app_setting_set --app=$app --key=wifi_channel --value=6
  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=dns --value="10.0.242.1"
  115. ynh_app_setting_set --app=$app --key=ip4_nat_prefix --value=10.0.242
  116. ynh_app_setting_set --app=$app --key=captive_portal --value=0
  117. ynh_app_setting_set --app=$app --key=captive_portal_url --value=""
  118. if [[ -z $wifi_device ]]; then
  119. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  120. else
  121. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  122. fi
  123. #=================================================
  124. # COPY CONFIGS
  125. #=================================================
  126. ynh_script_progression --message="Copying configuration files..."
  127. mkdir -pm 0755 /etc/dnsmasq.dhcpd/
  128. chown root: /etc/dnsmasq.dhcpd/
  129. mkdir -pm 0755 /etc/hotspot/
  130. touch /etc/hotspot/allowed.csv
  131. chown -R root: /etc/hotspot/
  132. install -b -o root -g root -m 0644 ../conf/hostapd.*.conf /etc/hostapd/
  133. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv6.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv6.conf.tpl
  134. install -b -o root -g root -m 0644 ../conf/dnsmasq_dhcpdv4.conf.tpl /etc/dnsmasq.dhcpd/dhcpdv4.conf.tpl
  135. # Copy init script
  136. install -o root -g root -m 0755 ../conf/$service_name /usr/local/bin/
  137. install -o root -g root -m 0755 ../conf/captiveportal_fakedns /usr/local/bin/
  138. install -o root -g root -m 0755 ../conf/captiveportal_allow /usr/local/bin/
  139. #=================================================
  140. # CONFIGURE HOSTAPD
  141. #=================================================
  142. ynh_script_progression --message="Configuring hostapd..."
  143. ## hostapd
  144. ynh_replace_string --match_string="^DAEMON_CONF=$" --replace_string="&/etc/hostapd/hostapd.conf" --target_file=/etc/init.d/hostapd
  145. ynh_store_file_checksum --file="/etc/init.d/hostapd"
  146. # We also need to put this in /etc/default/hostapd because on some setup
  147. # like RPi, the version of hostapd is different and /etc/init.d/hostapd
  148. # isnt used ... instead the service is "pure systemd" ...
  149. echo "DAEMON_CONF=/etc/hostapd/hostapd.conf" > /etc/default/hostapd
  150. # Set default inits
  151. # The boot order of these services are important, so they are disabled by default
  152. # and the ynh-hotspot service handles them.
  153. systemctl disable hostapd --quiet 2>&1
  154. systemctl stop hostapd 2>&1
  155. systemctl unmask hostapd 2>&1 # On some system e.g. RPi, for some reason hostapd is masked after install ...
  156. #=================================================
  157. # SETUP SYSTEMD
  158. #=================================================
  159. ynh_script_progression --message="Configuring a systemd service..."
  160. # Create a dedicated systemd config
  161. ynh_add_systemd_config --service=$service_name
  162. ynh_add_systemd_config --service=captiveportal_fakedns --template=captiveportal_fakedns
  163. #=================================================
  164. # INTEGRATE SERVICE IN YUNOHOST
  165. #=================================================
  166. ynh_script_progression --message="Integrating service in YunoHost..."
  167. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd"
  168. yunohost service add captiveportal_fakedns --description "Captive portal dns service" --test_status "systemctl is-active captiveportal_fakedns"
  169. #=================================================
  170. # START SYSTEMD SERVICE
  171. #=================================================
  172. ynh_script_progression --message="Starting a systemd service..."
  173. # Start a systemd service if device is present
  174. if [[ $wifi_device == "" ]]; then
  175. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (please, check the web admin)" >&2
  176. else
  177. ynh_systemd_action --service_name=$service_name --action="start" --log_path=systemd #--line_match="Started YunoHost Wifi Hotspot"
  178. fi
  179. #=================================================
  180. # END OF SCRIPT
  181. #=================================================
  182. ynh_script_progression --message="Installation of $app completed"