_common.sh 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. #!/bin/bash
  2. #=================================================
  3. # COMMON VARIABLES
  4. #=================================================
  5. pkg_dependencies="sipcalc hostapd iw kmod"
  6. nonfree_firmware_packages="firmware-atheros firmware-realtek firmware-ralink firmware-libertas atmel-firmware firmware-zd1211"
  7. free_firmware_packages="firmware-ath9k-htc"
  8. #=================================================
  9. # PERSONAL HELPERS
  10. #=================================================
  11. function other_hotspot_apps()
  12. {
  13. local app_shortname="${app%%__*}"
  14. local hotspot_apps=$(yunohost app list --output-as json | jq -r .apps[].id | grep -F $app_shortname)
  15. # Remove this app from hotspot apps list
  16. grep -F -x -v $app <<< ${hotspot_apps}
  17. }
  18. function iw_devices()
  19. {
  20. /sbin/iw dev | grep Interface | grep -v 'mon\.' | grep -v hotspot | awk '{ print $NF }'
  21. }
  22. function used_iw_devices()
  23. {
  24. for hotspot_app in $(other_hotspot_apps); do
  25. hotspot_wifi_device=$(ynh_app_setting_get --app=$hotspot_app --key=wifi_device)
  26. if [[ -n "${hotspot_wifi_device}" ]]; then
  27. echo "${hotspot_wifi_device}"
  28. fi
  29. done
  30. }
  31. function unused_iw_devices()
  32. {
  33. # Only prints devices that are not in the list of used devices
  34. iw_devices | grep -F -v -f <(used_iw_devices)
  35. }
  36. function check_armbian_nonfree_conflict()
  37. {
  38. # If we're on armbian, force $firmware_nonfree
  39. # because armbian-firmware conflicts with firmware-misc-nonfree package
  40. if dpkg --list | grep -q armbian-firmware; then
  41. echo "You are running Armbian and firmware-misc-nonfree are known to conflict with armbian-firwmare. " >&2
  42. echo "The package firmware-misc-nonfree is a dependency of firmware-ralink, so firmware-ralink will NOT be installed" >&2
  43. echo "You can manually install firmware-ralink with 'apt -o Dpkg::Options::=\"--force-overwrite\" firmware-ralink'" >&2
  44. nonfree_firmware_packages=$(echo $nonfree_firmware_packages | sed 's/ firmware-ralink//')
  45. fi
  46. }
  47. function hot_reload_usb_wifi_cards()
  48. {
  49. 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"
  50. modprobe --quiet --remove $modulesList || true
  51. possibleUsbDevicesNeedingReload=$(dmesg | grep -Pio '(?<=usb )[0-9-]+(?=:.*firmware)' | sort | uniq)
  52. for usbPath in $possibleUsbDevicesNeedingReload; do
  53. if [[ -f "/sys/bus/usb/devices/$usbPath/authorized" ]]; then
  54. echo "Try to reload driver for usb $usbPath" >&2
  55. echo 0 > /sys/bus/usb/devices/$usbPath/authorized
  56. echo 1 > /sys/bus/usb/devices/$usbPath/authorized
  57. # Wait for driver reloading
  58. sleep 2
  59. fi
  60. done
  61. }
  62. function configure_hostapd()
  63. {
  64. if [[ "${wifi_secure}" -eq 1 ]]; then
  65. sec_comment=""
  66. else
  67. sec_comment="#"
  68. fi
  69. ynh_add_config --template="../conf/hostapd.conf" --destination="/etc/hostapd/$app/hostapd.conf"
  70. }
  71. function configure_dhcp()
  72. {
  73. ynh_add_config --template="../conf/dhcpdv4.conf" --destination="/etc/dnsmasq.$app/dhcpdv4.conf"
  74. if [[ -n "${ip6_net}" ]] && [[ "${ip6_net}" != "none" ]]; then
  75. ynh_add_config --template="../conf/dhcpdv6.conf" --destination="/etc/dnsmasq.$app/dhcpdv6.conf"
  76. fi
  77. }