_common.sh 3.6 KB

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