|
|
|
// Copyright 2019 The go-ethereum Authors
|
|
|
|
// This file is part of go-ethereum.
|
|
|
|
//
|
|
|
|
// go-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// go-ethereum is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/cloudflare/cloudflare-go"
|
|
|
|
"github.com/ethereum/go-ethereum/log"
|
|
|
|
"github.com/ethereum/go-ethereum/p2p/dnsdisc"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
cloudflareTokenFlag = &cli.StringFlag{
|
|
|
|
Name: "token",
|
|
|
|
Usage: "CloudFlare API token",
|
|
|
|
EnvVars: []string{"CLOUDFLARE_API_TOKEN"},
|
|
|
|
}
|
|
|
|
cloudflareZoneIDFlag = &cli.StringFlag{
|
|
|
|
Name: "zoneid",
|
|
|
|
Usage: "CloudFlare Zone ID (optional)",
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
type cloudflareClient struct {
|
|
|
|
*cloudflare.API
|
|
|
|
zoneID string
|
|
|
|
}
|
|
|
|
|
|
|
|
// newCloudflareClient sets up a CloudFlare API client from command line flags.
|
|
|
|
func newCloudflareClient(ctx *cli.Context) *cloudflareClient {
|
|
|
|
token := ctx.String(cloudflareTokenFlag.Name)
|
|
|
|
if token == "" {
|
|
|
|
exit(errors.New("need cloudflare API token to proceed"))
|
|
|
|
}
|
|
|
|
api, err := cloudflare.NewWithAPIToken(token)
|
|
|
|
if err != nil {
|
|
|
|
exit(fmt.Errorf("can't create Cloudflare client: %v", err))
|
|
|
|
}
|
|
|
|
return &cloudflareClient{
|
|
|
|
API: api,
|
|
|
|
zoneID: ctx.String(cloudflareZoneIDFlag.Name),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// deploy uploads the given tree to CloudFlare DNS.
|
|
|
|
func (c *cloudflareClient) deploy(name string, t *dnsdisc.Tree) error {
|
|
|
|
if err := c.checkZone(name); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
records := t.ToTXT(name)
|
|
|
|
return c.uploadRecords(name, records)
|
|
|
|
}
|
|
|
|
|
|
|
|
// checkZone verifies permissions on the CloudFlare DNS Zone for name.
|
|
|
|
func (c *cloudflareClient) checkZone(name string) error {
|
|
|
|
if c.zoneID == "" {
|
|
|
|
log.Info(fmt.Sprintf("Finding CloudFlare zone ID for %s", name))
|
|
|
|
id, err := c.ZoneIDByName(name)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
c.zoneID = id
|
|
|
|
}
|
|
|
|
log.Info(fmt.Sprintf("Checking Permissions on zone %s", c.zoneID))
|
|
|
|
zone, err := c.ZoneDetails(context.Background(), c.zoneID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !strings.HasSuffix(name, "."+zone.Name) {
|
|
|
|
return fmt.Errorf("CloudFlare zone name %q does not match name %q to be deployed", zone.Name, name)
|
|
|
|
}
|
cmd/devp2p: require dns:read, dns:edit permissions for cloudflare deploy (#30326)
This PR adds the `dns:read` and `dns:edit` permissions to the required
set of permissions checked before deploying an ENR tree to Cloudflare.
These permissions are necessary for a successful publish.
**Background**:
The current logic for `devp2p dns to-cloudflare` checks for `zone:edit`
and `zone:read` permissions. However, when running the command with only
these two permissions, the following error occurs:
```
wrong permissions on zone REMOVED-ZONE: map[#zone:edit:false #zone:read:true]
```
Adding `zone:read` and `zone:edit` to the API token led to a different
error:
```
INFO [08-19|14:06:16.782] Retrieving existing TXT records on pos-nodes.hardfork.dev
Authentication error (10000)
```
This suggested that additional permissions were required. I added
`dns:read`, but encountered another error:
```
INFO [08-19|14:11:42.342] Retrieving existing TXT records on pos-nodes.hardfork.dev
INFO [08-19|14:11:42.851] Updating DNS entries
failed to publish REMOVED.pos-nodes.hardfork.dev: Authentication error (10000)
```
Finally, after adding both `dns:read` and `dns:edit` permissions, the
command executed successfully with the following output:
```
INFO [08-19|14:13:07.677] Checking Permissions on zone REMOVED-ZONE
INFO [08-19|14:13:08.014] Retrieving existing TXT records on pos-nodes.hardfork.dev
INFO [08-19|14:13:08.440] Updating DNS entries
INFO [08-19|14:13:08.440] "Updating pos-nodes.hardfork.dev from \"enrtree-root:v1 e=FSED3EDKEKRDDFMCLP746QY6CY l=FDXN3SN67NA5DKA4J2GOK7BVQI seq=1 sig=Glja2c9RviRqOpaaHR0MnHsQwU76nJXadJwFeiXpp8MRTVIhvL0LIireT0yE3ETZArGEmY5Ywz3FVHZ3LR5JTAE\" to \"enrtree-root:v1 e=AB66M4ULYD5OYN4XFFCPVZRLUM l=FDXN3SN67NA5DKA4J2GOK7BVQI seq=1 sig=H8cqDzu0FAzBplK4g3yudhSaNtszIebc2aj4oDm5a5ZE5PAg-xpCnQgVE_53CsgsqQpalD9byafx_FrUT61sagA\""
INFO [08-19|14:13:16.932] Updated DNS entries new=32 updated=1 untouched=100
INFO [08-19|14:13:16.932] Deleting stale DNS entries
INFO [08-19|14:13:24.663] Deleted stale DNS entries count=31
```
With this PR, the required permissions for deploying an ENR tree to
Cloudflare now include `zone:read`, `zone:edit`, `dns:read`, and
`dns:edit`. The initial check now includes all of the necessary
permissions and indicates in the error message which permissions are
missing:
```
INFO [08-19|14:17:20.339] Checking Permissions on zone REMOVED-ZONE
wrong permissions on zone REMOVED-ZONE: map[#dns_records:edit:false #dns_records:read:false #zone:edit:false #zone:read:true]
```
3 months ago
|
|
|
// Necessary permissions for Cloudlare management - Zone:Read, DNS:Read, Zone:Edit, DNS:Edit
|
|
|
|
needPerms := map[string]bool{"#zone:edit": false, "#zone:read": false, "#dns_records:read": false, "#dns_records:edit": false}
|
|
|
|
for _, perm := range zone.Permissions {
|
|
|
|
if _, ok := needPerms[perm]; ok {
|
|
|
|
needPerms[perm] = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for _, ok := range needPerms {
|
|
|
|
if !ok {
|
|
|
|
return fmt.Errorf("wrong permissions on zone %s: %v", c.zoneID, needPerms)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// uploadRecords updates the TXT records at a particular subdomain. All non-root records
|
|
|
|
// will have a TTL of "infinity" and all existing records not in the new map will be
|
|
|
|
// nuked!
|
|
|
|
func (c *cloudflareClient) uploadRecords(name string, records map[string]string) error {
|
|
|
|
// Convert all names to lowercase.
|
|
|
|
lrecords := make(map[string]string, len(records))
|
|
|
|
for name, r := range records {
|
|
|
|
lrecords[strings.ToLower(name)] = r
|
|
|
|
}
|
|
|
|
records = lrecords
|
|
|
|
|
|
|
|
log.Info(fmt.Sprintf("Retrieving existing TXT records on %s", name))
|
|
|
|
entries, _, err := c.ListDNSRecords(context.Background(), cloudflare.ZoneIdentifier(c.zoneID), cloudflare.ListDNSRecordsParams{Type: "TXT"})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
existing := make(map[string]cloudflare.DNSRecord)
|
|
|
|
for _, entry := range entries {
|
|
|
|
if !strings.HasSuffix(entry.Name, name) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
existing[strings.ToLower(entry.Name)] = entry
|
|
|
|
}
|
|
|
|
|
|
|
|
// Iterate over the new records and inject anything missing.
|
|
|
|
log.Info("Updating DNS entries")
|
|
|
|
created := 0
|
|
|
|
updated := 0
|
|
|
|
skipped := 0
|
|
|
|
for path, val := range records {
|
|
|
|
old, exists := existing[path]
|
|
|
|
if !exists {
|
|
|
|
// Entry is unknown, push a new one to Cloudflare.
|
|
|
|
log.Debug(fmt.Sprintf("Creating %s = %q", path, val))
|
|
|
|
created++
|
|
|
|
ttl := rootTTL
|
|
|
|
if path != name {
|
|
|
|
ttl = treeNodeTTLCloudflare // Max TTL permitted by Cloudflare
|
|
|
|
}
|
|
|
|
record := cloudflare.CreateDNSRecordParams{Type: "TXT", Name: path, Content: val, TTL: ttl}
|
|
|
|
_, err = c.CreateDNSRecord(context.Background(), cloudflare.ZoneIdentifier(c.zoneID), record)
|
|
|
|
} else if old.Content != val {
|
|
|
|
// Entry already exists, only change its content.
|
|
|
|
log.Info(fmt.Sprintf("Updating %s from %q to %q", path, old.Content, val))
|
|
|
|
updated++
|
|
|
|
|
|
|
|
record := cloudflare.UpdateDNSRecordParams{
|
|
|
|
Type: old.Type,
|
|
|
|
Name: old.Name,
|
|
|
|
Content: val,
|
|
|
|
Data: old.Data,
|
|
|
|
ID: old.ID,
|
|
|
|
Priority: old.Priority,
|
|
|
|
TTL: old.TTL,
|
|
|
|
Proxied: old.Proxied,
|
|
|
|
Tags: old.Tags,
|
|
|
|
}
|
|
|
|
_, err = c.UpdateDNSRecord(context.Background(), cloudflare.ZoneIdentifier(c.zoneID), record)
|
|
|
|
} else {
|
|
|
|
skipped++
|
|
|
|
log.Debug(fmt.Sprintf("Skipping %s = %q", path, val))
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("failed to publish %s: %v", path, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
log.Info("Updated DNS entries", "new", created, "updated", updated, "untouched", skipped)
|
|
|
|
// Iterate over the old records and delete anything stale.
|
|
|
|
deleted := 0
|
|
|
|
log.Info("Deleting stale DNS entries")
|
|
|
|
for path, entry := range existing {
|
|
|
|
if _, ok := records[path]; ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// Stale entry, nuke it.
|
|
|
|
log.Debug(fmt.Sprintf("Deleting %s = %q", path, entry.Content))
|
|
|
|
deleted++
|
|
|
|
if err := c.DeleteDNSRecord(context.Background(), cloudflare.ZoneIdentifier(c.zoneID), entry.ID); err != nil {
|
|
|
|
return fmt.Errorf("failed to delete %s: %v", path, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
log.Info("Deleted stale DNS entries", "count", deleted)
|
|
|
|
return nil
|
|
|
|
}
|