You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

162 lines
4.0 KiB

  1. #!/bin/sh
  2. # Copyright 2016 Dan Luedtke <mail@danrl.com>
  3. # Licensed to the public under the Apache License 2.0.
  4. WG=/usr/bin/wg
  5. if [ ! -x $WG ]; then
  6. logger -t "wireguard" "error: missing wireguard-tools (${WG})"
  7. exit 0
  8. fi
  9. [ -n "$INCLUDE_ONLY" ] || {
  10. . /lib/functions.sh
  11. . ../netifd-proto.sh
  12. init_proto "$@"
  13. }
  14. proto_wireguard_init_config() {
  15. proto_config_add_string "private_key"
  16. proto_config_add_int "listen_port"
  17. proto_config_add_int "mtu"
  18. proto_config_add_string "preshared_key"
  19. available=1
  20. no_proto_task=1
  21. }
  22. proto_wireguard_setup_peer() {
  23. local peer_config="$1"
  24. local public_key
  25. local allowed_ips
  26. local route_allowed_ips
  27. local endpoint_host
  28. local endpoint_port
  29. local persistent_keepalive
  30. config_get public_key "${peer_config}" "public_key"
  31. config_get allowed_ips "${peer_config}" "allowed_ips"
  32. config_get_bool route_allowed_ips "${peer_config}" "route_allowed_ips" 0
  33. config_get endpoint_host "${peer_config}" "endpoint_host"
  34. config_get endpoint_port "${peer_config}" "endpoint_port"
  35. config_get persistent_keepalive "${peer_config}" "persistent_keepalive"
  36. # peer configuration
  37. echo "[Peer]" >> "${wg_cfg}"
  38. echo "PublicKey=${public_key}" >> "${wg_cfg}"
  39. for allowed_ip in $allowed_ips; do
  40. echo "AllowedIPs=${allowed_ip}" >> "${wg_cfg}"
  41. done
  42. if [ "${endpoint_host}" ]; then
  43. case "${endpoint_host}" in
  44. *:*)
  45. endpoint="[${endpoint_host}]"
  46. ;;
  47. *)
  48. endpoint="${endpoint_host}"
  49. ;;
  50. esac
  51. if [ "${endpoint_port}" ]; then
  52. endpoint="${endpoint}:${endpoint_port}"
  53. else
  54. endpoint="${endpoint}:51820"
  55. fi
  56. echo "Endpoint=${endpoint}" >> "${wg_cfg}"
  57. fi
  58. if [ "${persistent_keepalive}" ]; then
  59. echo "PersistentKeepalive=${persistent_keepalive}" >> "${wg_cfg}"
  60. fi
  61. # add routes for allowed ips
  62. if [ ${route_allowed_ips} -ne 0 ]; then
  63. for allowed_ip in ${allowed_ips}; do
  64. case "${allowed_ip}" in
  65. *:*/*)
  66. proto_add_ipv6_route "${allowed_ip%%/*}" "${allowed_ip##*/}"
  67. ;;
  68. */*)
  69. proto_add_ipv4_route "${allowed_ip%%/*}" "${allowed_ip##*/}"
  70. ;;
  71. esac
  72. done
  73. fi
  74. }
  75. proto_wireguard_setup() {
  76. local config="$1"
  77. local wg_dir="/tmp/wireguard"
  78. local wg_cfg="${wg_dir}/${config}"
  79. local private_key
  80. local listen_port
  81. local mtu
  82. local preshared_key
  83. # load configuration
  84. config_load network
  85. config_get private_key "${config}" "private_key"
  86. config_get listen_port "${config}" "listen_port"
  87. config_get mtu "${config}" "mtu"
  88. config_get preshared_key "${config}" "preshared_key"
  89. # create interface
  90. ip link del dev "${config}" 2>/dev/null
  91. ip link add dev "${config}" type wireguard
  92. if [ "${mtu}" ]; then
  93. ip link set mtu "${mtu}" dev "${config}"
  94. fi
  95. proto_init_update "${config}" 1
  96. # generate configuration file
  97. umask 077
  98. mkdir -p "${wg_dir}"
  99. echo "[Interface]" > "${wg_cfg}"
  100. echo "PrivateKey=${private_key}" >> "${wg_cfg}"
  101. if [ "${listen_port}" ]; then
  102. echo "ListenPort=${listen_port}" >> "${wg_cfg}"
  103. fi
  104. if [ "${preshared_key}" ]; then
  105. echo "PresharedKey=${preshared_key}" >> "${wg_cfg}"
  106. fi
  107. config_foreach proto_wireguard_setup_peer "wireguard_${config}"
  108. # apply configuration file
  109. ${WG} setconf ${config} "${wg_cfg}"
  110. WG_RETURN=$?
  111. # delete configuration file
  112. rm -f "${wg_cfg}"
  113. # check status
  114. if [ ${WG_RETURN} -ne 0 ]; then
  115. sleep 5
  116. proto_setup_failed "${config}"
  117. exit 1
  118. fi
  119. # endpoint dependency
  120. wg show "${config}" endpoints | while IFS=$'\t:' read -r key ip port; do
  121. [ -n "${port}" ] || continue
  122. echo "adding host depedency for ${ip} at ${config}"
  123. proto_add_host_dependency "${config}" "${ip}"
  124. done
  125. proto_send_update "${config}"
  126. }
  127. proto_wireguard_teardown() {
  128. local config="$1"
  129. ip link del dev "${config}" >/dev/null 2>&1
  130. }
  131. [ -n "$INCLUDE_ONLY" ] || {
  132. add_protocol wireguard
  133. }