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.

183 lines
4.6 KiB

  1. #!/bin/sh
  2. # Copyright 2016-2017 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 addresses "${config}" "addresses"
  88. config_get mtu "${config}" "mtu"
  89. config_get preshared_key "${config}" "preshared_key"
  90. # create interface
  91. ip link del dev "${config}" 2>/dev/null
  92. ip link add dev "${config}" type wireguard
  93. if [ "${mtu}" ]; then
  94. ip link set mtu "${mtu}" dev "${config}"
  95. fi
  96. proto_init_update "${config}" 1
  97. # generate configuration file
  98. umask 077
  99. mkdir -p "${wg_dir}"
  100. echo "[Interface]" > "${wg_cfg}"
  101. echo "PrivateKey=${private_key}" >> "${wg_cfg}"
  102. if [ "${listen_port}" ]; then
  103. echo "ListenPort=${listen_port}" >> "${wg_cfg}"
  104. fi
  105. if [ "${preshared_key}" ]; then
  106. echo "PresharedKey=${preshared_key}" >> "${wg_cfg}"
  107. fi
  108. config_foreach proto_wireguard_setup_peer "wireguard_${config}"
  109. # apply configuration file
  110. ${WG} setconf ${config} "${wg_cfg}"
  111. WG_RETURN=$?
  112. # delete configuration file
  113. rm -f "${wg_cfg}"
  114. # check status
  115. if [ ${WG_RETURN} -ne 0 ]; then
  116. sleep 5
  117. proto_setup_failed "${config}"
  118. exit 1
  119. fi
  120. # add ip addresses
  121. for address in ${addresses}; do
  122. case "${address}" in
  123. *:*/*)
  124. proto_add_ipv6_address "${address%%/*}" "${address##*/}"
  125. ;;
  126. *.*/*)
  127. proto_add_ipv4_address "${address%%/*}" "${address##*/}"
  128. ;;
  129. *:*)
  130. proto_add_ipv6_address "${address%%/*}" "128"
  131. ;;
  132. *.*)
  133. proto_add_ipv4_address "${address%%/*}" "32"
  134. ;;
  135. esac
  136. done
  137. # endpoint dependency
  138. wg show "${config}" endpoints | \
  139. sed -E 's/\[?([0-9.:a-f]+)\]?:([0-9]+)/\1 \2/' | \
  140. while IFS=$'\t ' read -r key address port; do
  141. [ -n "${port}" ] || continue
  142. echo "adding host depedency for ${address} at ${config}"
  143. proto_add_host_dependency "${config}" "${address}"
  144. done
  145. proto_send_update "${config}"
  146. }
  147. proto_wireguard_teardown() {
  148. local config="$1"
  149. ip link del dev "${config}" >/dev/null 2>&1
  150. }
  151. [ -n "$INCLUDE_ONLY" ] || {
  152. add_protocol wireguard
  153. }