2017-10-17 11:06:40 +00:00
|
|
|
package save
|
2016-10-26 02:20:24 +00:00
|
|
|
|
|
|
|
import (
|
2017-10-17 08:15:11 +00:00
|
|
|
"flag"
|
2016-10-26 02:20:24 +00:00
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/hashicorp/consul/api"
|
2017-10-17 08:15:11 +00:00
|
|
|
"github.com/hashicorp/consul/command/flags"
|
2016-11-04 04:36:25 +00:00
|
|
|
"github.com/hashicorp/consul/snapshot"
|
2017-10-17 08:15:11 +00:00
|
|
|
"github.com/mitchellh/cli"
|
2020-04-24 22:34:47 +00:00
|
|
|
"github.com/rboyer/safeio"
|
2016-10-26 02:20:24 +00:00
|
|
|
)
|
|
|
|
|
2017-10-17 08:15:11 +00:00
|
|
|
func New(ui cli.Ui) *cmd {
|
|
|
|
c := &cmd{UI: ui}
|
|
|
|
c.init()
|
|
|
|
return c
|
2016-10-26 02:20:24 +00:00
|
|
|
}
|
|
|
|
|
2017-10-17 08:15:11 +00:00
|
|
|
type cmd struct {
|
|
|
|
UI cli.Ui
|
|
|
|
flags *flag.FlagSet
|
|
|
|
http *flags.HTTPFlags
|
2017-10-17 13:44:20 +00:00
|
|
|
help string
|
2017-10-17 08:15:11 +00:00
|
|
|
}
|
2016-10-26 02:20:24 +00:00
|
|
|
|
2017-10-17 08:15:11 +00:00
|
|
|
func (c *cmd) init() {
|
|
|
|
c.flags = flag.NewFlagSet("", flag.ContinueOnError)
|
|
|
|
c.http = &flags.HTTPFlags{}
|
|
|
|
flags.Merge(c.flags, c.http.ClientFlags())
|
|
|
|
flags.Merge(c.flags, c.http.ServerFlags())
|
2017-10-17 22:00:01 +00:00
|
|
|
c.help = flags.Usage(help, c.flags)
|
2016-10-26 02:20:24 +00:00
|
|
|
}
|
|
|
|
|
2017-10-17 08:15:11 +00:00
|
|
|
func (c *cmd) Run(args []string) int {
|
|
|
|
if err := c.flags.Parse(args); err != nil {
|
2016-10-26 02:20:24 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
var file string
|
|
|
|
|
2017-10-17 08:15:11 +00:00
|
|
|
args = c.flags.Args()
|
2016-10-26 02:20:24 +00:00
|
|
|
switch len(args) {
|
|
|
|
case 0:
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error("Missing FILE argument")
|
2016-10-26 02:20:24 +00:00
|
|
|
return 1
|
|
|
|
case 1:
|
|
|
|
file = args[0]
|
|
|
|
default:
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Too many arguments (expected 1, got %d)", len(args)))
|
2016-10-26 02:20:24 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create and test the HTTP client
|
2017-10-17 08:15:11 +00:00
|
|
|
client, err := c.http.APIClient()
|
2016-10-26 02:20:24 +00:00
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error connecting to Consul agent: %s", err))
|
2016-10-26 02:20:24 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
// Take the snapshot.
|
|
|
|
snap, qm, err := client.Snapshot().Save(&api.QueryOptions{
|
2017-10-17 08:15:11 +00:00
|
|
|
AllowStale: c.http.Stale(),
|
2016-10-26 02:20:24 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error saving snapshot: %s", err))
|
2016-10-26 02:20:24 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
defer snap.Close()
|
|
|
|
|
2020-04-24 22:34:47 +00:00
|
|
|
// Save the file first.
|
|
|
|
unverifiedFile := file + ".unverified"
|
|
|
|
if _, err := safeio.WriteToFile(snap, unverifiedFile, 0666); err != nil {
|
|
|
|
c.UI.Error(fmt.Sprintf("Error writing unverified snapshot file: %s", err))
|
2016-10-26 02:20:24 +00:00
|
|
|
return 1
|
|
|
|
}
|
2020-04-24 22:34:47 +00:00
|
|
|
defer os.Remove(unverifiedFile)
|
2016-10-26 02:20:24 +00:00
|
|
|
|
|
|
|
// Read it back to verify.
|
2020-04-24 22:34:47 +00:00
|
|
|
f, err := os.Open(unverifiedFile)
|
2016-10-26 02:20:24 +00:00
|
|
|
if err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error opening snapshot file for verify: %s", err))
|
2016-10-26 02:20:24 +00:00
|
|
|
return 1
|
|
|
|
}
|
2016-10-31 23:37:27 +00:00
|
|
|
if _, err := snapshot.Verify(f); err != nil {
|
2016-10-26 02:20:24 +00:00
|
|
|
f.Close()
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error verifying snapshot file: %s", err))
|
2016-10-26 02:20:24 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
if err := f.Close(); err != nil {
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Error(fmt.Sprintf("Error closing snapshot file after verify: %s", err))
|
2016-10-26 02:20:24 +00:00
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2020-04-24 22:34:47 +00:00
|
|
|
if err := safeio.Rename(unverifiedFile, file); err != nil {
|
|
|
|
c.UI.Error(fmt.Sprintf("Error renaming %q to %q: %v", unverifiedFile, file, err))
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2017-04-21 00:02:42 +00:00
|
|
|
c.UI.Info(fmt.Sprintf("Saved and verified snapshot to index %d", qm.LastIndex))
|
2016-10-26 02:20:24 +00:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2017-10-17 13:44:20 +00:00
|
|
|
func (c *cmd) Synopsis() string {
|
|
|
|
return synopsis
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *cmd) Help() string {
|
|
|
|
return c.help
|
|
|
|
}
|
|
|
|
|
|
|
|
const synopsis = "Saves snapshot of Consul server state"
|
|
|
|
const help = `
|
|
|
|
Usage: consul snapshot save [options] FILE
|
2017-10-17 08:15:11 +00:00
|
|
|
|
|
|
|
Retrieves an atomic, point-in-time snapshot of the state of the Consul servers
|
|
|
|
which includes key/value entries, service catalog, prepared queries, sessions,
|
|
|
|
and ACLs.
|
|
|
|
|
|
|
|
If ACLs are enabled, a management token must be supplied in order to perform
|
|
|
|
snapshot operations.
|
|
|
|
|
|
|
|
To create a snapshot from the leader server and save it to "backup.snap":
|
|
|
|
|
|
|
|
$ consul snapshot save backup.snap
|
|
|
|
|
|
|
|
To create a potentially stale snapshot from any available server (useful if no
|
|
|
|
leader is available):
|
|
|
|
|
|
|
|
$ consul snapshot save -stale backup.snap
|
|
|
|
|
2017-10-17 13:44:20 +00:00
|
|
|
For a full list of options and examples, please see the Consul documentation.
|
|
|
|
`
|