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.

99 lines
3.3 KiB

  1. #!/bin/sh
  2. # /usr/lib/ddns/luci_dns_helper.sh
  3. #
  4. # Written in August 2014
  5. # by Christian Schoenebeck <christian dot schoenebeck at gmail dot com>
  6. # This script is used by luci-app-ddns
  7. # - getting registered IP
  8. # - check if possible to get local IP
  9. # - verifing given DNS- or Proxy-Server
  10. #
  11. # variables in small chars are read from /etc/config/ddns as parameter given here
  12. # variables in big chars are defined inside these scripts as gloval vars
  13. # variables in big chars beginning with "__" are local defined inside functions only
  14. # set -vx #script debugger
  15. [ $# -lt 2 ] && exit 1
  16. . /usr/lib/ddns/dynamic_dns_functions.sh # global vars are also defined here
  17. # preset some variables, wrong or not set in dynamic_dns_functions.sh
  18. SECTION_ID="lucihelper"
  19. LOGFILE="$LOGDIR/$SECTION_ID.log"
  20. DATFILE="$RUNDIR/$SECTION_ID.dat" # save stdout data of WGet and other extern programs called
  21. ERRFILE="$RUNDIR/$SECTION_ID.err" # save stderr output of WGet and other extern programs called
  22. VERBOSE_MODE=0 # no console logging
  23. # global variables normally set by reading DDNS UCI configuration
  24. use_syslog=0 # no syslog
  25. use_logfile=0 # by default no logfile, can be changed here
  26. __RET=0
  27. case "$1" in
  28. get_registered_ip)
  29. local IP
  30. domain=$2 # Hostname/Domain
  31. use_ipv6=${3:-"0"} # Use IPv6 - default IPv4
  32. force_ipversion=${4:-"0"} # Force IP Version - default 0 - No
  33. force_dnstcp=${5:-"0"} # Force TCP on DNS - default 0 - No
  34. dns_server=${6:-""} # DNS server - default No DNS
  35. write_log 7 "-----> get_registered_ip IP"
  36. get_registered_ip IP
  37. __RET=$?
  38. [ $__RET -ne 0 ] && IP=""
  39. echo -n "$IP" # suppress LF
  40. ;;
  41. verify_dns)
  42. # $2 : dns-server to verify # no need for force_dnstcp because
  43. # verify with nc (netcat) uses tcp anyway
  44. use_ipv6=${3:-"0"} # Use IPv6 - default IPv4
  45. force_ipversion=${4:-"0"} # Force IP Version - default 0 - No
  46. write_log 7 "-----> verify_dns '$2'"
  47. verify_dns "$2"
  48. __RET=$?
  49. ;;
  50. verify_proxy)
  51. # $2 : proxy string to verify
  52. use_ipv6=${3:-"0"} # Use IPv6 - default IPv4
  53. force_ipversion=${4:-"0"} # Force IP Version - default 0 - No
  54. write_log 7 "-----> verify_proxy '$2'"
  55. verify_proxy "$2"
  56. __RET=$?
  57. ;;
  58. get_local_ip)
  59. local IP
  60. use_ipv6="$2" # Use IPv6
  61. ip_source="$3" # IP source
  62. ip_network="$4" # set if source = "network" otherwise "-"
  63. ip_url="$5" # set if source = "web" otherwise "-"
  64. ip_interface="$6" # set if source = "interface" itherwiase "-"
  65. ip_script="$7" # set if source = "script" otherwise "-"
  66. proxy="$8" # proxy if set
  67. force_ipversion="0" # not needed but must be set
  68. use_https="0" # not needed but must be set
  69. [ -n "$proxy" -a "$ip_source" = "web" ] && {
  70. # proxy defined, used for ip_source=web
  71. export HTTP_PROXY="http://$proxy"
  72. export HTTPS_PROXY="http://$proxy"
  73. export http_proxy="http://$proxy"
  74. export https_proxy="http://$proxy"
  75. }
  76. # don't need IP only the return code
  77. [ "$ip_source" = "web" -o "$ip_source" = "script" ] && {
  78. # we wait only 3 seconds for an
  79. # answer from "web" or "script"
  80. write_log 7 "-----> timeout 3 -- get_local_ip IP"
  81. timeout 3 -- get_local_ip IP
  82. } || {
  83. write_log 7 "-----> get_local_ip IP"
  84. get_local_ip IP
  85. }
  86. __RET=$?
  87. ;;
  88. *)
  89. __RET=255
  90. ;;
  91. esac
  92. # remove out and err file
  93. [ -f $DATFILE ] && rm -f $DATFILE
  94. [ -f $ERRFILE ] && rm -f $ERRFILE
  95. return $__RET