_common.sh 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #!/bin/bash
  2. function other_hotspot_apps()
  3. {
  4. local app_shortname="${app%%__*}"
  5. local hotspot_apps=$(yunohost app list --output-as json | jq -r .apps[].id | grep -F $app_shortname)
  6. # Remove this app from hotspot apps list
  7. grep -F -x -v $app <<< ${hotspot_apps}
  8. }
  9. function iw_devices()
  10. {
  11. /sbin/iw dev | grep Interface | grep -v 'mon\.' | grep -v hotspot | awk '{ print $NF }'
  12. }
  13. function used_iw_devices()
  14. {
  15. for hotspot_app in $(other_hotspot_apps); do
  16. hotspot_wifi_device=$(ynh_app_setting_get --app=$hotspot_app --key=wifi_device)
  17. if [[ -n "${hotspot_wifi_device}" ]]; then
  18. echo "${hotspot_wifi_device}"
  19. fi
  20. done
  21. }
  22. function unused_iw_devices()
  23. {
  24. # Only prints devices that are not in the list of used devices
  25. iw_devices | grep -F -v -f <(used_iw_devices)
  26. }
  27. function hot_reload_usb_wifi_cards()
  28. {
  29. modulesList="acx-mac80211 ar5523 ar9170usb at76c50x-usb at76_usb ath9k_htc carl9170 orinoco_usb p54usb prism2_usb r8712u r8192s_usb r8192u_usb rndis_wlan rt2500usb rt2800usb rt2870sta rt73usb rtl8187 rtl8192cu usb8xxx vt6656_stage zd1201 zd1211rw"
  30. modprobe --quiet --remove $modulesList || true
  31. possibleUsbDevicesNeedingReload=$(dmesg | grep -Pio '(?<=usb )[0-9-]+(?=:.*firmware)' | sort | uniq)
  32. for usbPath in $possibleUsbDevicesNeedingReload; do
  33. if [[ -f "/sys/bus/usb/devices/$usbPath/authorized" ]]; then
  34. echo "Try to reload driver for usb $usbPath" >&2
  35. echo 0 > /sys/bus/usb/devices/$usbPath/authorized
  36. echo 1 > /sys/bus/usb/devices/$usbPath/authorized
  37. # Wait for driver reloading
  38. sleep 2
  39. fi
  40. done
  41. }
  42. function configure_hostapd()
  43. {
  44. if [[ "${wifi_secure}" -eq 1 ]]; then
  45. sec_comment=""
  46. else
  47. sec_comment="#"
  48. fi
  49. ynh_add_config --template="../conf/hostapd.conf" --destination="/etc/hostapd/$app/hostapd.conf"
  50. }
  51. function configure_dhcp()
  52. {
  53. ynh_add_config --template="../conf/dnsmasq_dhcpdv4.conf" --destination="/etc/dnsmasq.$app/dhcpdv4.conf"
  54. if [[ -n "${ip6_net}" ]] && [[ "${ip6_net}" != "none" ]]; then
  55. ynh_add_config --template="../conf/dnsmasq_dhcpdv6.conf" --destination="/etc/dnsmasq.$app/dhcpdv6.conf"
  56. fi
  57. }