2018-05-25 17:56:07 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
# Author: Janos Lenart <janos@lenart.io>
|
|
|
|
|
|
|
|
######## Public functions #####################
|
|
|
|
|
|
|
|
# Usage: dns_gcloud_add _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
|
|
|
|
dns_gcloud_add() {
|
|
|
|
fulldomain=$1
|
|
|
|
txtvalue=$2
|
|
|
|
_info "Using gcloud"
|
|
|
|
_debug fulldomain "$fulldomain"
|
|
|
|
_debug txtvalue "$txtvalue"
|
|
|
|
|
|
|
|
_dns_gcloud_find_zone || return $?
|
|
|
|
|
|
|
|
# Add an extra RR
|
|
|
|
_dns_gcloud_start_tr || return $?
|
|
|
|
_dns_gcloud_get_rrdatas || return $?
|
|
|
|
echo "$rrdatas" | _dns_gcloud_remove_rrs || return $?
|
2018-05-25 18:22:40 +00:00
|
|
|
printf "%s\n%s\n" "$rrdatas" "\"$txtvalue\"" | grep -v '^$' | _dns_gcloud_add_rrs || return $?
|
2018-05-25 17:56:07 +00:00
|
|
|
_dns_gcloud_execute_tr || return $?
|
|
|
|
|
|
|
|
_info "$fulldomain record added"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Usage: dns_gcloud_rm _acme-challenge.www.domain.com "XKrxpRBosdIKFzxW_CT3KLZNf6q0HG9i01zxXp5CPBs"
|
|
|
|
# Remove the txt record after validation.
|
|
|
|
dns_gcloud_rm() {
|
|
|
|
fulldomain=$1
|
|
|
|
txtvalue=$2
|
|
|
|
_info "Using gcloud"
|
|
|
|
_debug fulldomain "$fulldomain"
|
|
|
|
_debug txtvalue "$txtvalue"
|
|
|
|
|
|
|
|
_dns_gcloud_find_zone || return $?
|
|
|
|
|
|
|
|
# Remove one RR
|
|
|
|
_dns_gcloud_start_tr || return $?
|
|
|
|
_dns_gcloud_get_rrdatas || return $?
|
|
|
|
echo "$rrdatas" | _dns_gcloud_remove_rrs || return $?
|
2022-09-23 14:39:53 +00:00
|
|
|
echo "$rrdatas" | grep -F -v -- "\"$txtvalue\"" | _dns_gcloud_add_rrs || return $?
|
2018-05-25 17:56:07 +00:00
|
|
|
_dns_gcloud_execute_tr || return $?
|
|
|
|
|
|
|
|
_info "$fulldomain record added"
|
|
|
|
}
|
|
|
|
|
|
|
|
#################### Private functions below ##################################
|
|
|
|
|
|
|
|
_dns_gcloud_start_tr() {
|
2018-05-25 18:22:40 +00:00
|
|
|
if ! trd=$(mktemp -d); then
|
2018-05-25 17:56:07 +00:00
|
|
|
_err "_dns_gcloud_start_tr: failed to create temporary directory"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
tr="$trd/tr.yaml"
|
|
|
|
_debug tr "$tr"
|
|
|
|
|
|
|
|
if ! gcloud dns record-sets transaction start \
|
2018-05-25 18:22:40 +00:00
|
|
|
--transaction-file="$tr" \
|
|
|
|
--zone="$managedZone"; then
|
2018-05-25 17:56:07 +00:00
|
|
|
rm -r "$trd"
|
|
|
|
_err "_dns_gcloud_start_tr: failed to execute transaction"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
_dns_gcloud_execute_tr() {
|
|
|
|
if ! gcloud dns record-sets transaction execute \
|
2018-05-25 18:22:40 +00:00
|
|
|
--transaction-file="$tr" \
|
|
|
|
--zone="$managedZone"; then
|
|
|
|
_debug tr "$(cat "$tr")"
|
2018-05-25 17:56:07 +00:00
|
|
|
rm -r "$trd"
|
|
|
|
_err "_dns_gcloud_execute_tr: failed to execute transaction"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
rm -r "$trd"
|
|
|
|
|
2018-05-25 18:22:40 +00:00
|
|
|
for i in $(seq 1 120); do
|
2018-05-25 17:56:07 +00:00
|
|
|
if gcloud dns record-sets changes list \
|
2018-08-15 11:01:43 +00:00
|
|
|
--zone="$managedZone" \
|
2020-08-17 14:18:20 +00:00
|
|
|
--filter='status != done' |
|
|
|
|
grep -q '^.*'; then
|
2018-05-25 18:22:40 +00:00
|
|
|
_info "_dns_gcloud_execute_tr: waiting for transaction to be comitted ($i/120)..."
|
|
|
|
sleep 5
|
2018-05-25 17:56:07 +00:00
|
|
|
else
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
_err "_dns_gcloud_execute_tr: transaction is still pending after 10 minutes"
|
|
|
|
rm -r "$trd"
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
_dns_gcloud_remove_rrs() {
|
2019-05-28 11:46:19 +00:00
|
|
|
if ! xargs -r gcloud dns record-sets transaction remove \
|
2018-05-25 18:22:40 +00:00
|
|
|
--name="$fulldomain." \
|
|
|
|
--ttl="$ttl" \
|
|
|
|
--type=TXT \
|
|
|
|
--zone="$managedZone" \
|
2022-06-01 14:51:01 +00:00
|
|
|
--transaction-file="$tr" --; then
|
2018-05-25 18:22:40 +00:00
|
|
|
_debug tr "$(cat "$tr")"
|
2018-05-25 17:56:07 +00:00
|
|
|
rm -r "$trd"
|
|
|
|
_err "_dns_gcloud_remove_rrs: failed to remove RRs"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
_dns_gcloud_add_rrs() {
|
|
|
|
ttl=60
|
2019-05-28 11:46:19 +00:00
|
|
|
if ! xargs -r gcloud dns record-sets transaction add \
|
2018-05-25 18:22:40 +00:00
|
|
|
--name="$fulldomain." \
|
|
|
|
--ttl="$ttl" \
|
|
|
|
--type=TXT \
|
|
|
|
--zone="$managedZone" \
|
2022-06-01 14:51:01 +00:00
|
|
|
--transaction-file="$tr" --; then
|
2018-05-25 18:22:40 +00:00
|
|
|
_debug tr "$(cat "$tr")"
|
2018-05-25 17:56:07 +00:00
|
|
|
rm -r "$trd"
|
|
|
|
_err "_dns_gcloud_add_rrs: failed to add RRs"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
_dns_gcloud_find_zone() {
|
|
|
|
# Prepare a filter that matches zones that are suiteable for this entry.
|
|
|
|
# For example, _acme-challenge.something.domain.com might need to go into something.domain.com or domain.com;
|
|
|
|
# this function finds the longest postfix that has a managed zone.
|
|
|
|
part="$fulldomain"
|
|
|
|
filter="dnsName=( "
|
|
|
|
while [ "$part" != "" ]; do
|
|
|
|
filter="$filter$part. "
|
2018-05-25 18:22:40 +00:00
|
|
|
part="$(echo "$part" | sed 's/[^.]*\.*//')"
|
2018-05-25 17:56:07 +00:00
|
|
|
done
|
2020-01-14 12:55:44 +00:00
|
|
|
filter="$filter) AND visibility=public"
|
2018-05-25 17:56:07 +00:00
|
|
|
_debug filter "$filter"
|
|
|
|
|
2019-04-07 19:04:03 +00:00
|
|
|
# List domains and find the zone with the deepest sub-domain (in case of some levels of delegation)
|
2018-05-25 17:56:07 +00:00
|
|
|
if ! match=$(gcloud dns managed-zones list \
|
2018-05-25 18:22:40 +00:00
|
|
|
--format="value(name, dnsName)" \
|
2020-08-17 14:18:20 +00:00
|
|
|
--filter="$filter" |
|
|
|
|
while read -r dnsName name; do
|
2019-04-08 11:44:41 +00:00
|
|
|
printf "%s\t%s\t%s\n" "$(echo "$name" | awk -F"." '{print NF-1}')" "$dnsName" "$name"
|
2020-08-17 14:18:20 +00:00
|
|
|
done |
|
|
|
|
sort -n -r | _head_n 1 | cut -f2,3 | grep '^.*'); then
|
2018-05-25 17:56:07 +00:00
|
|
|
_err "_dns_gcloud_find_zone: Can't find a matching managed zone! Perhaps wrong project or gcloud credentials?"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
dnsName=$(echo "$match" | cut -f2)
|
|
|
|
_debug dnsName "$dnsName"
|
|
|
|
managedZone=$(echo "$match" | cut -f1)
|
|
|
|
_debug managedZone "$managedZone"
|
|
|
|
}
|
|
|
|
|
|
|
|
_dns_gcloud_get_rrdatas() {
|
|
|
|
if ! rrdatas=$(gcloud dns record-sets list \
|
2018-05-25 18:22:40 +00:00
|
|
|
--zone="$managedZone" \
|
|
|
|
--name="$fulldomain." \
|
|
|
|
--type=TXT \
|
|
|
|
--format="value(ttl,rrdatas)"); then
|
2018-05-25 17:56:07 +00:00
|
|
|
_err "_dns_gcloud_get_rrdatas: Failed to list record-sets"
|
|
|
|
rm -r "$trd"
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
ttl=$(echo "$rrdatas" | cut -f1)
|
2021-10-20 16:18:02 +00:00
|
|
|
# starting with version 353.0.0 gcloud seems to
|
|
|
|
# separate records with a semicolon instead of commas
|
|
|
|
# see also https://cloud.google.com/sdk/docs/release-notes#35300_2021-08-17
|
|
|
|
rrdatas=$(echo "$rrdatas" | cut -f2 | sed 's/"[,;]"/"\n"/g')
|
2018-05-25 17:56:07 +00:00
|
|
|
}
|