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.

178 lines
6.4 KiB

  1. #!/bin/sh
  2. #
  3. #.Distributed under the terms of the GNU General Public License (GPL) version 2.0
  4. #
  5. # script for sending updates to cloudflare.com
  6. #.based on Ben Kulbertis cloudflare-update-record.sh found at http://gist.github.com/benkulbertis
  7. #.and on George Johnson's cf-ddns.sh found at https://github.com/gstuartj/cf-ddns.sh
  8. #.2016 Christian Schoenebeck <christian dot schoenebeck at gmail dot com>
  9. # CloudFlare API documentation at https://api.cloudflare.com/
  10. #
  11. # This script is parsed by dynamic_dns_functions.sh inside send_update() function
  12. #
  13. # using following options from /etc/config/ddns
  14. # option username - your cloudflare e-mail
  15. # option password - cloudflare api key, you can get it from cloudflare.com/my-account/
  16. # option domain - "hostname@yourdomain.TLD" # syntax changed to remove split_FQDN() function and tld_names.dat.gz
  17. #
  18. # variable __IP already defined with the ip-address to use for update
  19. #
  20. # check parameters
  21. [ -z "$CURL_SSL" ] && write_log 14 "Cloudflare communication require cURL with SSL support. Please install"
  22. [ -z "$username" ] && write_log 14 "Service section not configured correctly! Missing key as 'username'"
  23. [ -z "$password" ] && write_log 14 "Service section not configured correctly! Missing secret as 'password'"
  24. [ $use_https -eq 0 ] && use_https=1 # force HTTPS
  25. # used variables
  26. local __HOST __DOMAIN __TYPE __URLBASE __PRGBASE __RUNPROG __DATA __IPV6 __ZONEID __RECID
  27. local __URLBASE="https://api.cloudflare.com/client/v4"
  28. # split __HOST __DOMAIN from $domain
  29. __HOST=$(printf %s "$domain" | cut -d@ -f1)
  30. __DOMAIN=$(printf %s "$domain" | cut -d@ -f2)
  31. # __HOST != __DOMAIN then host@domain.tld => host.domain.tld
  32. [ "$__HOST" = "$__DOMAIN" ] || __HOST=$(printf %s "$domain" | tr "@" ".")
  33. # set record type
  34. [ $use_ipv6 -eq 0 ] && __TYPE="A" || __TYPE="AAAA"
  35. # transfer function to use for godaddy
  36. # all needed variables are set global here
  37. # so we can use them directly
  38. cloudflare_transfer() {
  39. local __CNT=0
  40. local __ERR
  41. while : ; do
  42. write_log 7 "#> $__RUNPROG"
  43. eval "$__RUNPROG"
  44. __ERR=$? # save communication error
  45. [ $__ERR -eq 0 ] && break # no error break while
  46. write_log 3 "cURL Error: '$__ERR'"
  47. write_log 7 "$(cat $ERRFILE)" # report error
  48. [ $VERBOSE_MODE -gt 1 ] && {
  49. # VERBOSE_MODE > 1 then NO retry
  50. write_log 4 "Transfer failed - Verbose Mode: $VERBOSE_MODE - NO retry on error"
  51. break
  52. }
  53. __CNT=$(( $__CNT + 1 )) # increment error counter
  54. # if error count > retry_count leave here
  55. [ $retry_count -gt 0 -a $__CNT -gt $retry_count ] && \
  56. write_log 14 "Transfer failed after $retry_count retries"
  57. write_log 4 "Transfer failed - retry $__CNT/$retry_count in $RETRY_SECONDS seconds"
  58. sleep $RETRY_SECONDS &
  59. PID_SLEEP=$!
  60. wait $PID_SLEEP # enable trap-handler
  61. PID_SLEEP=0
  62. done
  63. # check for error
  64. grep -q '"success":true' $DATFILE || {
  65. write_log 4 "CloudFlare reported an error:"
  66. write_log 7 "$(cat $DATFILE)" # report error
  67. return 1 # HTTP-Fehler
  68. }
  69. }
  70. # Build base command to use
  71. __PRGBASE="$CURL -RsS -o $DATFILE --stderr $ERRFILE"
  72. # force network/interface-device to use for communication
  73. if [ -n "$bind_network" ]; then
  74. local __DEVICE
  75. network_get_physdev __DEVICE $bind_network || \
  76. write_log 13 "Can not detect local device using 'network_get_physdev $bind_network' - Error: '$?'"
  77. write_log 7 "Force communication via device '$__DEVICE'"
  78. __PRGBASE="$__PRGBASE --interface $__DEVICE"
  79. fi
  80. # force ip version to use
  81. if [ $force_ipversion -eq 1 ]; then
  82. [ $use_ipv6 -eq 0 ] && __PRGBASE="$__PRGBASE -4" || __PRGBASE="$__PRGBASE -6" # force IPv4/IPv6
  83. fi
  84. # set certificate parameters
  85. if [ "$cacert" = "IGNORE" ]; then # idea from Ticket #15327 to ignore server cert
  86. __PRGBASE="$__PRGBASE --insecure" # but not empty better to use "IGNORE"
  87. elif [ -f "$cacert" ]; then
  88. __PRGBASE="$__PRGBASE --cacert $cacert"
  89. elif [ -d "$cacert" ]; then
  90. __PRGBASE="$__PRGBASE --capath $cacert"
  91. elif [ -n "$cacert" ]; then # it's not a file and not a directory but given
  92. write_log 14 "No valid certificate(s) found at '$cacert' for HTTPS communication"
  93. fi
  94. # disable proxy if not set (there might be .wgetrc or .curlrc or wrong environment set)
  95. # or check if libcurl compiled with proxy support
  96. if [ -z "$proxy" ]; then
  97. __PRGBASE="$__PRGBASE --noproxy '*'"
  98. elif [ -z "$CURL_PROXY" ]; then
  99. # if libcurl has no proxy support and proxy should be used then force ERROR
  100. write_log 13 "cURL: libcurl compiled without Proxy support"
  101. fi
  102. # set headers
  103. __PRGBASE="$__PRGBASE --header 'X-Auth-Email: $username' "
  104. __PRGBASE="$__PRGBASE --header 'X-Auth-Key: $password' "
  105. __PRGBASE="$__PRGBASE --header 'Content-Type: application/json' "
  106. # __PRGBASE="$__PRGBASE --header 'Accept: application/json' "
  107. # read zone id for registered domain.TLD
  108. __RUNPROG="$__PRGBASE --request GET '$__URLBASE/zones?name=$__DOMAIN'"
  109. cloudflare_transfer || return 1
  110. # extract zone id
  111. __ZONEID=$(grep -o '"id":"[^"]*' $DATFILE | grep -o '[^"]*$' | head -1)
  112. [ -z "$__ZONEID" ] && {
  113. write_log 4 "Could not detect 'zone id' for domain.tld: '$__DOMAIN'"
  114. return 127
  115. }
  116. # read record id for A or AAAA record of host.domain.TLD
  117. __RUNPROG="$__PRGBASE --request GET '$__URLBASE/zones/$__ZONEID/dns_records?name=$__HOST&type=$__TYPE'"
  118. cloudflare_transfer || return 1
  119. # extract record id
  120. __RECID=$(grep -o '"id":"[^"]*' $DATFILE | grep -o '[^"]*$' | head -1)
  121. [ -z "$__RECID" ] && {
  122. write_log 4 "Could not detect 'record id' for host.domain.tld: '$__HOST'"
  123. return 127
  124. }
  125. # extract current stored IP
  126. __DATA=$(grep -o '"content":"[^"]*' $DATFILE | grep -o '[^"]*$' | head -1)
  127. # check data
  128. [ $use_ipv6 -eq 0 ] \
  129. && __DATA=$(printf "%s" "$__DATA" | grep -m 1 -o "$IPV4_REGEX") \
  130. || __DATA=$(printf "%s" "$__DATA" | grep -m 1 -o "$IPV6_REGEX")
  131. # we got data so verify
  132. [ -n "$__DATA" ] && {
  133. # expand IPv6 for compare
  134. if [ $use_ipv6 -eq 1 ]; then
  135. expand_ipv6 $__IP __IPV6
  136. expand_ipv6 $__DATA __DATA
  137. [ "$__DATA" = "$__IPV6" ] && { # IPv6 no update needed
  138. write_log 7 "IPv6 at CloudFlare.com already up to date"
  139. return 0
  140. }
  141. else
  142. [ "$__DATA" = "$__IP" ] && { # IPv4 no update needed
  143. write_log 7 "IPv4 at CloudFlare.com already up to date"
  144. return 0
  145. }
  146. fi
  147. }
  148. # update is needed
  149. # let's build data to send,
  150. # use file to work around " needed for json
  151. cat > $DATFILE << EOF
  152. {"id":"$__ZONEID","type":"$__TYPE","name":"$__HOST","content":"$__IP"}
  153. EOF
  154. # let's complete transfer command
  155. __RUNPROG="$__PRGBASE --request PUT --data @$DATFILE '$__URLBASE/zones/$__ZONEID/dns_records/$__RECID'"
  156. cloudflare_transfer || return 1
  157. return 0