install 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. #!/bin/bash
  2. #=================================================
  3. # GENERIC START
  4. #=================================================
  5. # IMPORT GENERIC HELPERS
  6. #=================================================
  7. source _common.sh
  8. source /usr/share/yunohost/helpers
  9. service_name=ynh-$app
  10. ynh_app_setting_set --app=$app --key=service_name --value=$service_name
  11. #=================================================
  12. # CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS
  13. #=================================================
  14. # FIXME : we could probably implement all these checks in manifest.toml directly ?
  15. ynh_script_progression --message="Validating installation parameters..."
  16. # Check arguments
  17. if [[ -z $wifi_ssid ]] || [[ -z $wifi_passphrase ]]; then
  18. ynh_die --message="Your Wifi Hotspot needs a name and a password"
  19. fi
  20. # Check passphrase length
  21. wifi_passphrase_length="$(wc -c <<< "${wifi_passphrase}")"
  22. if [[ $wifi_passphrase_length -lt 8 ]] || [[ $wifi_passphrase_length -gt 63 ]]; then
  23. ynh_die --message="Your password must have between 8 and 63 characters (WPA2 passphrase)"
  24. fi
  25. # Check no special characters are present in the passphrase
  26. if [[ $wifi_passphrase =~ [^[:print:]] ]]; then
  27. ynh_die --message="Only printable ASCII characters are permitted in your password (WPA2 passphrase)"
  28. fi
  29. #=================================================
  30. # STANDARD MODIFICATIONS
  31. #=================================================
  32. # FIND AND OPEN A PORT
  33. #=================================================
  34. ynh_script_progression --message="Configuring firewall..."
  35. # Update firewall for DHCP
  36. # FIXME : move to manifest.toml
  37. ynh_exec_warn_less yunohost firewall allow --no-upnp --ipv6 UDP 547
  38. ynh_exec_warn_less yunohost firewall allow --no-upnp UDP 67
  39. # Meh idk where to put this ... On RPi, by default wlan is blocked
  40. if test -e /usr/sbin/rfkill && rfkill | grep wlan | grep -q -w 'blocked'
  41. then
  42. ynh_print_info "Unblocking wlan interface..."
  43. /usr/sbin/rfkill unblock wlan
  44. fi
  45. #=================================================
  46. # SPECIFIC SETTINGS
  47. #=================================================
  48. ynh_script_progression --message="Configuring hotspot..."
  49. ip6_net=""
  50. ip6_dns=""
  51. ip4_nat_prefix_index=${app##*__}
  52. if [[ "${ip4_nat_prefix_index}" == "${app}" ]]; then
  53. ip4_nat_prefix_index=0
  54. fi
  55. ip4_nat_prefix="10.${ip4_nat_prefix_index}.242"
  56. ip4_dns="${ip4_nat_prefix}.1"
  57. hot_reload_usb_wifi_cards
  58. wifi_device=$(unused_iw_devices | head -n 1)
  59. wifi_secure=1
  60. wifi_channel=6
  61. ynh_app_setting_set --app=$app --key=wifi_secure --value="${wifi_secure}"
  62. ynh_app_setting_set --app=$app --key=wifi_device --value="${wifi_device}"
  63. ynh_app_setting_set --app=$app --key=wifi_channel --value="${wifi_channel}"
  64. ynh_app_setting_set --app=$app --key=advanced --value=0
  65. ynh_app_setting_set --app=$app --key=ip6_firewall --value=1
  66. ynh_app_setting_set --app=$app --key=ip6_net --value="${ip6_net}"
  67. ynh_app_setting_set --app=$app --key=ip6_dns --value="${ip6_dns}"
  68. ynh_app_setting_set --app=$app --key=ip4_dns --value="${ip4_dns}"
  69. ynh_app_setting_set --app=$app --key=ip4_nat_prefix --value="${ip4_nat_prefix}"
  70. ynh_app_setting_set --app=$app --key=captive_portal --value=0
  71. ynh_app_setting_set --app=$app --key=captive_portal_url --value=""
  72. if [[ -z "$wifi_device" ]]; then
  73. ynh_app_setting_set --app=$app --key=service_enabled --value=0
  74. else
  75. ynh_app_setting_set --app=$app --key=service_enabled --value=1
  76. fi
  77. # We must explicitly save the wifi passphrase despite being in the install question
  78. # because password-type questions are not saved automatically
  79. ynh_app_setting_set --app=$app --key=wifi_passphrase --value="$wifi_passphrase"
  80. #=================================================
  81. # COPY CONFIGS
  82. #=================================================
  83. ynh_script_progression --message="Copying configuration files..."
  84. mkdir -pm 0755 /etc/hostapd/$app/
  85. chown root: /etc/hostapd/$app/
  86. mkdir -pm 0755 /etc/dnsmasq.$app/
  87. chown root: /etc/dnsmasq.$app/
  88. touch /etc/hostapd/$app/allowed.csv
  89. # Copy init script
  90. ynh_add_config --template="../conf/ynh-hotspot" --destination="/usr/local/bin/$service_name"
  91. chmod 0755 "/usr/local/bin/$service_name"
  92. ynh_add_config --template="../conf/captiveportal_fakedns" --destination="/usr/local/bin/captiveportal_fakedns"
  93. chmod 0755 "/usr/local/bin/captiveportal_fakedns"
  94. ynh_add_config --template="../conf/captiveportal_allow" --destination="/usr/local/bin/captiveportal_allow"
  95. chmod 0755 "/usr/local/bin/captiveportal_allow"
  96. # Copy openvpn scripts
  97. mkdir -pm 0755 /etc/openvpn/scripts
  98. mkdir -pm 0755 /etc/openvpn/scripts/route-up.d
  99. mkdir -pm 0755 /etc/openvpn/scripts/route-down.d
  100. ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-up.d/90-$service_name"
  101. ynh_add_config --template="../conf/openvpn_90-hotspot" --destination="/etc/openvpn/scripts/route-down.d/90-$service_name"
  102. chmod 0755 "/etc/openvpn/scripts/route-up.d/90-${service_name}"
  103. chmod 0755 "/etc/openvpn/scripts/route-down.d/90-${service_name}"
  104. #=================================================
  105. # CONFIGURE HOSTAPD
  106. #=================================================
  107. ynh_script_progression --message="Configuring hostapd..."
  108. # Disable hostapd, we'll use hostapd@$app instead (for multissid support etc)
  109. systemctl disable hostapd --quiet 2>&1
  110. systemctl stop hostapd 2>&1
  111. systemctl mask hostapd 2>&1
  112. if [[ -n "${wifi_device}" ]]; then
  113. configure_hostapd
  114. configure_dhcp
  115. fi
  116. #=================================================
  117. # SETUP SYSTEMD
  118. #=================================================
  119. ynh_script_progression --message="Configuring systemd service..."
  120. # Create a dedicated systemd config
  121. ynh_add_systemd_config --service=$service_name
  122. # Create custom systemd config for hostapd to handle multiple wifi devices
  123. ynh_add_systemd_config --service="hostapd@$app" --template="../conf/systemd_hostapd.service"
  124. yunohost service add $service_name --description "Creates a Wi-Fi access point" --test_status "systemctl is-active hostapd@$app" --need_lock
  125. ynh_add_systemd_config --service="captiveportal_fakedns" --template="captiveportal_fakedns"
  126. yunohost service add captiveportal_fakedns --description "Captive portal dns service" --test_status "systemctl is-active captiveportal_fakedns"
  127. #=================================================
  128. # START SYSTEMD SERVICE
  129. #=================================================
  130. ynh_script_progression --message="Starting the hotspot..."
  131. # Start a systemd service if device is present
  132. if [[ $wifi_device == "" ]]; then
  133. echo "WARNING: Wifi Hotspot is not started because no wifi device was found (check the Hotspot configuration in the webadmin > Applications > Hotspot > the config panel)" >&2
  134. else
  135. yunohost service start $service_name
  136. fi
  137. #=================================================
  138. # END OF SCRIPT
  139. #=================================================
  140. ynh_script_progression --message="Installation of $app completed"