wireguard_watchdog 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #!/bin/sh
  2. # SPDX-License-Identifier: GPL-2.0
  3. #
  4. # Copyright (C) 2018 Aleksandr V. Piskunov <aleksandr.v.piskunov@gmail.com>.
  5. # Copyright (C) 2015-2018 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
  6. #
  7. # This watchdog script tries to re-resolve hostnames for inactive WireGuard peers.
  8. # Use it for peers with a frequently changing dynamic IP.
  9. # persistent_keepalive must be set, recommended value is 25 seconds.
  10. #
  11. # Run this script from cron every minute:
  12. # echo '* * * * * /usr/bin/wireguard_watchdog' >> /etc/crontabs/root
  13. . /lib/functions.sh
  14. check_peer_activity() {
  15. local cfg=$1
  16. local iface=$2
  17. local public_key
  18. local endpoint_host
  19. local endpoint_port
  20. local persistent_keepalive
  21. local last_handshake
  22. local idle_seconds
  23. config_get public_key "${cfg}" "public_key"
  24. config_get endpoint_host "${cfg}" "endpoint_host"
  25. config_get endpoint_port "${cfg}" "endpoint_port"
  26. persistent_keepalive=`wg show ${iface} persistent-keepalive | grep ${public_key} | awk '{print $2}'`
  27. # only process peers with endpoints and keepalive set
  28. [ -z ${endpoint_host} ] && return 0;
  29. [ -z ${persistent_keepalive} -o ${persistent_keepalive} = "off" ] && return 0;
  30. # skip IP addresses
  31. # check taken from packages/net/ddns-scripts/files/dynamic_dns_functions.sh
  32. local IPV4_REGEX="[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}"
  33. local IPV6_REGEX="\(\([0-9A-Fa-f]\{1,4\}:\)\{1,\}\)\(\([0-9A-Fa-f]\{1,4\}\)\{0,1\}\)\(\(:[0-9A-Fa-f]\{1,4\}\)\{1,\}\)"
  34. local IPV4=$(echo ${endpoint_host} | grep -m 1 -o "$IPV4_REGEX$") # do not detect ip in 0.0.0.0.example.com
  35. local IPV6=$(echo ${endpoint_host} | grep -m 1 -o "$IPV6_REGEX")
  36. [ -n "${IPV4}" -o -n "${IPV6}" ] && return 0;
  37. # re-resolve endpoint hostname if not responding for too long
  38. last_handshake=`wg show ${iface} latest-handshakes | grep ${public_key} | awk '{print $2}'`
  39. [ -z ${last_handshake} ] && return 0;
  40. idle_seconds=$((`date +%s`-${last_handshake}))
  41. [ ${idle_seconds} -lt 150 ] && return 0;
  42. logger -t "wireguard_monitor" "${iface} endpoint ${endpoint_host}:${endpoint_port} is not responding for ${idle_seconds} seconds, trying to re-resolve hostname"
  43. wg set ${iface} peer ${public_key} endpoint "${endpoint_host}:${endpoint_port}"
  44. }
  45. # query ubus for all active wireguard interfaces
  46. wg_ifaces=`ubus -S call network.interface dump | jsonfilter -e '@.interface[@.up=true]' | jsonfilter -a -e '@[@.proto="wireguard"].interface' | tr "\n" " "`
  47. # check every peer in every active wireguard interface
  48. config_load network
  49. for iface in $wg_ifaces; do
  50. config_foreach check_peer_activity "wireguard_${iface}" "${iface}"
  51. done