forked from cerc-io/plugeth
cmd/devp2p: add dns nuke-route53 command (#22695)
This commit is contained in:
parent
424656519a
commit
653b7e959d
@ -107,22 +107,48 @@ func (c *route53Client) deploy(name string, t *dnsdisc.Tree) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
log.Info(fmt.Sprintf("Found %d TXT records", len(existing)))
|
log.Info(fmt.Sprintf("Found %d TXT records", len(existing)))
|
||||||
|
|
||||||
records := t.ToTXT(name)
|
records := t.ToTXT(name)
|
||||||
changes := c.computeChanges(name, records, existing)
|
changes := c.computeChanges(name, records, existing)
|
||||||
|
|
||||||
|
// Submit to API.
|
||||||
|
comment := fmt.Sprintf("enrtree update of %s at seq %d", name, t.Seq())
|
||||||
|
return c.submitChanges(changes, comment)
|
||||||
|
}
|
||||||
|
|
||||||
|
// deleteDomain removes all TXT records of the given domain.
|
||||||
|
func (c *route53Client) deleteDomain(name string) error {
|
||||||
|
if err := c.checkZone(name); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Compute DNS changes.
|
||||||
|
existing, err := c.collectRecords(name)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
log.Info(fmt.Sprintf("Found %d TXT records", len(existing)))
|
||||||
|
changes := makeDeletionChanges(existing, nil)
|
||||||
|
|
||||||
|
// Submit to API.
|
||||||
|
comment := "enrtree delete of " + name
|
||||||
|
return c.submitChanges(changes, comment)
|
||||||
|
}
|
||||||
|
|
||||||
|
// submitChanges submits the given DNS changes to Route53.
|
||||||
|
func (c *route53Client) submitChanges(changes []types.Change, comment string) error {
|
||||||
if len(changes) == 0 {
|
if len(changes) == 0 {
|
||||||
log.Info("No DNS changes needed")
|
log.Info("No DNS changes needed")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Submit all change batches.
|
var err error
|
||||||
batches := splitChanges(changes, route53ChangeSizeLimit, route53ChangeCountLimit)
|
batches := splitChanges(changes, route53ChangeSizeLimit, route53ChangeCountLimit)
|
||||||
changesToCheck := make([]*route53.ChangeResourceRecordSetsOutput, len(batches))
|
changesToCheck := make([]*route53.ChangeResourceRecordSetsOutput, len(batches))
|
||||||
for i, changes := range batches {
|
for i, changes := range batches {
|
||||||
log.Info(fmt.Sprintf("Submitting %d changes to Route53", len(changes)))
|
log.Info(fmt.Sprintf("Submitting %d changes to Route53", len(changes)))
|
||||||
batch := &types.ChangeBatch{
|
batch := &types.ChangeBatch{
|
||||||
Changes: changes,
|
Changes: changes,
|
||||||
Comment: aws.String(fmt.Sprintf("enrtree update %d/%d of %s at seq %d", i+1, len(batches), name, t.Seq())),
|
Comment: aws.String(fmt.Sprintf("%s (%d/%d)", comment, i+1, len(batches))),
|
||||||
}
|
}
|
||||||
req := &route53.ChangeResourceRecordSetsInput{HostedZoneId: &c.zoneID, ChangeBatch: batch}
|
req := &route53.ChangeResourceRecordSetsInput{HostedZoneId: &c.zoneID, ChangeBatch: batch}
|
||||||
changesToCheck[i], err = c.api.ChangeResourceRecordSets(context.TODO(), req)
|
changesToCheck[i], err = c.api.ChangeResourceRecordSets(context.TODO(), req)
|
||||||
@ -151,7 +177,6 @@ func (c *route53Client) deploy(name string, t *dnsdisc.Tree) error {
|
|||||||
time.Sleep(30 * time.Second)
|
time.Sleep(30 * time.Second)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -186,7 +211,8 @@ func (c *route53Client) findZoneID(name string) (string, error) {
|
|||||||
return "", errors.New("can't find zone ID for " + name)
|
return "", errors.New("can't find zone ID for " + name)
|
||||||
}
|
}
|
||||||
|
|
||||||
// computeChanges creates DNS changes for the given record.
|
// computeChanges creates DNS changes for the given set of DNS discovery records.
|
||||||
|
// The 'existing' arg is the set of records that already exist on Route53.
|
||||||
func (c *route53Client) computeChanges(name string, records map[string]string, existing map[string]recordSet) []types.Change {
|
func (c *route53Client) computeChanges(name string, records map[string]string, existing map[string]recordSet) []types.Change {
|
||||||
// Convert all names to lowercase.
|
// Convert all names to lowercase.
|
||||||
lrecords := make(map[string]string, len(records))
|
lrecords := make(map[string]string, len(records))
|
||||||
@ -223,16 +249,23 @@ func (c *route53Client) computeChanges(name string, records map[string]string, e
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Iterate over the old records and delete anything stale.
|
// Iterate over the old records and delete anything stale.
|
||||||
for path, set := range existing {
|
changes = append(changes, makeDeletionChanges(existing, records)...)
|
||||||
if _, ok := records[path]; ok {
|
|
||||||
continue
|
// Ensure changes are in the correct order.
|
||||||
}
|
sortChanges(changes)
|
||||||
// Stale entry, nuke it.
|
return changes
|
||||||
log.Info(fmt.Sprintf("Deleting %s = %q", path, strings.Join(set.values, "")))
|
|
||||||
changes = append(changes, newTXTChange("DELETE", path, set.ttl, set.values...))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
sortChanges(changes)
|
// makeDeletionChanges creates record changes which delete all records not contained in 'keep'.
|
||||||
|
func makeDeletionChanges(records map[string]recordSet, keep map[string]string) []types.Change {
|
||||||
|
var changes []types.Change
|
||||||
|
for path, set := range records {
|
||||||
|
if _, ok := keep[path]; ok {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
log.Info(fmt.Sprintf("Deleting %s = %s", path, strings.Join(set.values, "")))
|
||||||
|
changes = append(changes, newTXTChange("DELETE", path, set.ttl, set.values...))
|
||||||
|
}
|
||||||
return changes
|
return changes
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,6 +43,7 @@ var (
|
|||||||
dnsTXTCommand,
|
dnsTXTCommand,
|
||||||
dnsCloudflareCommand,
|
dnsCloudflareCommand,
|
||||||
dnsRoute53Command,
|
dnsRoute53Command,
|
||||||
|
dnsRoute53NukeCommand,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
dnsSyncCommand = cli.Command{
|
dnsSyncCommand = cli.Command{
|
||||||
@ -84,6 +85,18 @@ var (
|
|||||||
route53RegionFlag,
|
route53RegionFlag,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
dnsRoute53NukeCommand = cli.Command{
|
||||||
|
Name: "nuke-route53",
|
||||||
|
Usage: "Deletes DNS TXT records of a subdomain on Amazon Route53",
|
||||||
|
ArgsUsage: "<domain>",
|
||||||
|
Action: dnsNukeRoute53,
|
||||||
|
Flags: []cli.Flag{
|
||||||
|
route53AccessKeyFlag,
|
||||||
|
route53AccessSecretFlag,
|
||||||
|
route53ZoneIDFlag,
|
||||||
|
route53RegionFlag,
|
||||||
|
},
|
||||||
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
@ -174,6 +187,9 @@ func dnsSign(ctx *cli.Context) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// directoryName returns the directory name of the given path.
|
||||||
|
// For example, when dir is "foo/bar", it returns "bar".
|
||||||
|
// When dir is ".", and the working directory is "example/foo", it returns "foo".
|
||||||
func directoryName(dir string) string {
|
func directoryName(dir string) string {
|
||||||
abs, err := filepath.Abs(dir)
|
abs, err := filepath.Abs(dir)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -182,7 +198,7 @@ func directoryName(dir string) string {
|
|||||||
return filepath.Base(abs)
|
return filepath.Base(abs)
|
||||||
}
|
}
|
||||||
|
|
||||||
// dnsToTXT peforms dnsTXTCommand.
|
// dnsToTXT performs dnsTXTCommand.
|
||||||
func dnsToTXT(ctx *cli.Context) error {
|
func dnsToTXT(ctx *cli.Context) error {
|
||||||
if ctx.NArg() < 1 {
|
if ctx.NArg() < 1 {
|
||||||
return fmt.Errorf("need tree definition directory as argument")
|
return fmt.Errorf("need tree definition directory as argument")
|
||||||
@ -199,9 +215,9 @@ func dnsToTXT(ctx *cli.Context) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// dnsToCloudflare peforms dnsCloudflareCommand.
|
// dnsToCloudflare performs dnsCloudflareCommand.
|
||||||
func dnsToCloudflare(ctx *cli.Context) error {
|
func dnsToCloudflare(ctx *cli.Context) error {
|
||||||
if ctx.NArg() < 1 {
|
if ctx.NArg() != 1 {
|
||||||
return fmt.Errorf("need tree definition directory as argument")
|
return fmt.Errorf("need tree definition directory as argument")
|
||||||
}
|
}
|
||||||
domain, t, err := loadTreeDefinitionForExport(ctx.Args().Get(0))
|
domain, t, err := loadTreeDefinitionForExport(ctx.Args().Get(0))
|
||||||
@ -212,9 +228,9 @@ func dnsToCloudflare(ctx *cli.Context) error {
|
|||||||
return client.deploy(domain, t)
|
return client.deploy(domain, t)
|
||||||
}
|
}
|
||||||
|
|
||||||
// dnsToRoute53 peforms dnsRoute53Command.
|
// dnsToRoute53 performs dnsRoute53Command.
|
||||||
func dnsToRoute53(ctx *cli.Context) error {
|
func dnsToRoute53(ctx *cli.Context) error {
|
||||||
if ctx.NArg() < 1 {
|
if ctx.NArg() != 1 {
|
||||||
return fmt.Errorf("need tree definition directory as argument")
|
return fmt.Errorf("need tree definition directory as argument")
|
||||||
}
|
}
|
||||||
domain, t, err := loadTreeDefinitionForExport(ctx.Args().Get(0))
|
domain, t, err := loadTreeDefinitionForExport(ctx.Args().Get(0))
|
||||||
@ -225,6 +241,15 @@ func dnsToRoute53(ctx *cli.Context) error {
|
|||||||
return client.deploy(domain, t)
|
return client.deploy(domain, t)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// dnsNukeRoute53 performs dnsRoute53NukeCommand.
|
||||||
|
func dnsNukeRoute53(ctx *cli.Context) error {
|
||||||
|
if ctx.NArg() != 1 {
|
||||||
|
return fmt.Errorf("need domain name as argument")
|
||||||
|
}
|
||||||
|
client := newRoute53Client(ctx)
|
||||||
|
return client.deleteDomain(ctx.Args().First())
|
||||||
|
}
|
||||||
|
|
||||||
// loadSigningKey loads a private key in Ethereum keystore format.
|
// loadSigningKey loads a private key in Ethereum keystore format.
|
||||||
func loadSigningKey(keyfile string) *ecdsa.PrivateKey {
|
func loadSigningKey(keyfile string) *ecdsa.PrivateKey {
|
||||||
keyjson, err := ioutil.ReadFile(keyfile)
|
keyjson, err := ioutil.ReadFile(keyfile)
|
||||||
|
Loading…
Reference in New Issue
Block a user