2014-04-27 22:00:15 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-08-05 21:13:07 +00:00
|
|
|
"log"
|
2014-10-04 17:20:15 +00:00
|
|
|
"net/url"
|
2014-04-27 22:00:15 +00:00
|
|
|
"os"
|
2014-09-23 20:39:12 +00:00
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
|
2014-11-15 18:04:32 +00:00
|
|
|
"golang.org/x/crypto/ssh/terminal"
|
2014-04-27 22:00:15 +00:00
|
|
|
|
2014-07-28 18:20:32 +00:00
|
|
|
"github.com/fd0/khepri"
|
2014-09-23 20:39:12 +00:00
|
|
|
"github.com/fd0/khepri/backend"
|
2014-04-27 22:00:15 +00:00
|
|
|
"github.com/jessevdk/go-flags"
|
|
|
|
)
|
|
|
|
|
2014-11-15 18:08:15 +00:00
|
|
|
var version = "compiled manually"
|
|
|
|
|
|
|
|
var opts struct {
|
2014-09-23 19:16:54 +00:00
|
|
|
Repo string `short:"r" long:"repo" description:"Repository directory to backup to/restore from"`
|
2014-04-27 22:00:15 +00:00
|
|
|
}
|
|
|
|
|
2014-08-03 13:16:56 +00:00
|
|
|
func errx(code int, format string, data ...interface{}) {
|
2014-04-27 22:00:15 +00:00
|
|
|
if len(format) > 0 && format[len(format)-1] != '\n' {
|
|
|
|
format += "\n"
|
|
|
|
}
|
|
|
|
fmt.Fprintf(os.Stderr, format, data...)
|
|
|
|
os.Exit(code)
|
|
|
|
}
|
|
|
|
|
2014-09-23 20:39:12 +00:00
|
|
|
type commandFunc func(backend.Server, *khepri.Key, []string) error
|
2014-04-27 22:00:15 +00:00
|
|
|
|
|
|
|
var commands map[string]commandFunc
|
|
|
|
|
2014-11-15 18:08:15 +00:00
|
|
|
func readPassword(prompt string) string {
|
2014-09-23 20:39:12 +00:00
|
|
|
p := os.Getenv("KHEPRI_PASSWORD")
|
|
|
|
if p != "" {
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Print(prompt)
|
|
|
|
pw, err := terminal.ReadPassword(int(os.Stdin.Fd()))
|
|
|
|
if err != nil {
|
|
|
|
errx(2, "unable to read password: %v", err)
|
|
|
|
}
|
|
|
|
fmt.Println()
|
|
|
|
|
|
|
|
return string(pw)
|
|
|
|
}
|
|
|
|
|
2014-10-04 17:20:15 +00:00
|
|
|
func commandInit(repo string) error {
|
2014-11-15 18:08:15 +00:00
|
|
|
pw := readPassword("enter password for new backend: ")
|
|
|
|
pw2 := readPassword("enter password again: ")
|
2014-10-04 17:20:15 +00:00
|
|
|
|
|
|
|
if pw != pw2 {
|
|
|
|
errx(1, "passwords do not match")
|
|
|
|
}
|
|
|
|
|
|
|
|
be, err := create(repo)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "creating backend at %s failed: %v\n", repo, err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = khepri.CreateKey(be, pw)
|
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintf(os.Stderr, "creating key in backend at %s failed: %v\n", repo, err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Printf("created khepri backend at %s\n", be.Location())
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Open the backend specified by URI.
|
|
|
|
// Valid formats are:
|
|
|
|
// * /foo/bar -> local repository at /foo/bar
|
|
|
|
// * sftp://user@host/foo/bar -> remote sftp repository on host for user at path foo/bar
|
|
|
|
// * sftp://host//tmp/backup -> remote sftp repository on host at path /tmp/backup
|
|
|
|
func open(u string) (backend.Server, error) {
|
|
|
|
url, err := url.Parse(u)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if url.Scheme == "" {
|
|
|
|
return backend.OpenLocal(url.Path)
|
|
|
|
}
|
2014-11-15 18:08:15 +00:00
|
|
|
|
|
|
|
args := []string{url.Host}
|
|
|
|
if url.User != nil && url.User.Username() != "" {
|
|
|
|
args = append(args, "-l")
|
|
|
|
args = append(args, url.User.Username())
|
|
|
|
}
|
|
|
|
args = append(args, "-s")
|
|
|
|
args = append(args, "sftp")
|
|
|
|
return backend.OpenSFTP(url.Path[1:], "ssh", args...)
|
2014-10-04 17:20:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Create the backend specified by URI.
|
|
|
|
func create(u string) (backend.Server, error) {
|
|
|
|
url, err := url.Parse(u)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if url.Scheme == "" {
|
|
|
|
return backend.CreateLocal(url.Path)
|
|
|
|
}
|
2014-11-15 18:08:15 +00:00
|
|
|
|
|
|
|
args := []string{url.Host}
|
|
|
|
if url.User != nil && url.User.Username() != "" {
|
|
|
|
args = append(args, "-l")
|
|
|
|
args = append(args, url.User.Username())
|
|
|
|
}
|
|
|
|
args = append(args, "-s")
|
|
|
|
args = append(args, "sftp")
|
|
|
|
return backend.CreateSFTP(url.Path[1:], "ssh", args...)
|
2014-10-04 17:20:15 +00:00
|
|
|
}
|
|
|
|
|
2014-04-27 22:00:15 +00:00
|
|
|
func init() {
|
|
|
|
commands = make(map[string]commandFunc)
|
|
|
|
commands["backup"] = commandBackup
|
|
|
|
commands["restore"] = commandRestore
|
2014-08-01 20:20:28 +00:00
|
|
|
commands["list"] = commandList
|
2014-08-04 20:55:54 +00:00
|
|
|
commands["snapshots"] = commandSnapshots
|
2014-10-05 12:44:59 +00:00
|
|
|
commands["cat"] = commandCat
|
|
|
|
commands["ls"] = commandLs
|
2014-04-27 22:00:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2014-08-05 21:13:07 +00:00
|
|
|
log.SetOutput(os.Stdout)
|
|
|
|
|
2014-11-15 18:08:15 +00:00
|
|
|
opts.Repo = os.Getenv("KHEPRI_REPOSITORY")
|
|
|
|
if opts.Repo == "" {
|
|
|
|
opts.Repo = "khepri-backup"
|
2014-04-27 22:00:15 +00:00
|
|
|
}
|
|
|
|
|
2014-11-15 18:08:15 +00:00
|
|
|
args, err := flags.Parse(&opts)
|
2014-04-27 22:00:15 +00:00
|
|
|
if e, ok := err.(*flags.Error); ok && e.Type == flags.ErrHelp {
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
2014-09-23 20:39:12 +00:00
|
|
|
if len(args) == 0 {
|
|
|
|
cmds := []string{"init"}
|
|
|
|
for k := range commands {
|
|
|
|
cmds = append(cmds, k)
|
|
|
|
}
|
|
|
|
sort.Strings(cmds)
|
|
|
|
fmt.Printf("nothing to do, available commands: [%v]\n", strings.Join(cmds, "|"))
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
2014-09-23 19:16:54 +00:00
|
|
|
cmd := args[0]
|
|
|
|
|
2014-11-15 18:08:15 +00:00
|
|
|
switch cmd {
|
|
|
|
case "init":
|
|
|
|
err = commandInit(opts.Repo)
|
2014-09-23 19:16:54 +00:00
|
|
|
if err != nil {
|
|
|
|
errx(1, "error executing command %q: %v", cmd, err)
|
2014-04-27 22:00:15 +00:00
|
|
|
}
|
2014-11-15 18:08:15 +00:00
|
|
|
return
|
2014-04-27 22:00:15 +00:00
|
|
|
|
2014-11-15 18:08:15 +00:00
|
|
|
case "version":
|
|
|
|
fmt.Printf("%v\n", version)
|
2014-09-23 19:16:54 +00:00
|
|
|
return
|
|
|
|
}
|
2014-04-27 22:00:15 +00:00
|
|
|
|
|
|
|
f, ok := commands[cmd]
|
|
|
|
if !ok {
|
2014-08-03 13:16:56 +00:00
|
|
|
errx(1, "unknown command: %q\n", cmd)
|
2014-04-27 22:00:15 +00:00
|
|
|
}
|
|
|
|
|
2014-09-23 20:39:12 +00:00
|
|
|
// read_password("enter password: ")
|
2014-11-15 18:08:15 +00:00
|
|
|
repo, err := open(opts.Repo)
|
2014-04-27 22:00:15 +00:00
|
|
|
if err != nil {
|
2014-09-23 19:16:54 +00:00
|
|
|
errx(1, "unable to open repo: %v", err)
|
2014-04-27 22:00:15 +00:00
|
|
|
}
|
|
|
|
|
2014-11-15 18:08:15 +00:00
|
|
|
key, err := khepri.SearchKey(repo, readPassword("Enter Password for Repository: "))
|
2014-09-23 20:39:12 +00:00
|
|
|
if err != nil {
|
|
|
|
errx(2, "unable to open repo: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = f(repo, key, args[1:])
|
2014-04-27 22:00:15 +00:00
|
|
|
if err != nil {
|
2014-08-03 13:16:56 +00:00
|
|
|
errx(1, "error executing command %q: %v", cmd, err)
|
2014-04-27 22:00:15 +00:00
|
|
|
}
|
|
|
|
}
|