2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-12 13:52:22 +00:00
restic/cmd/restic/main.go

184 lines
4.0 KiB
Go
Raw Normal View History

2014-04-27 22:00:15 +00:00
package main
import (
2014-12-07 15:30:52 +00:00
"errors"
2014-04-27 22:00:15 +00:00
"fmt"
2014-10-04 17:20:15 +00:00
"net/url"
2014-04-27 22:00:15 +00:00
"os"
2014-11-16 21:50:20 +00:00
"runtime"
2014-09-23 20:39:12 +00:00
2014-11-15 18:04:32 +00:00
"golang.org/x/crypto/ssh/terminal"
2014-04-27 22:00:15 +00:00
"github.com/jessevdk/go-flags"
2014-12-05 20:45:49 +00:00
"github.com/restic/restic"
"github.com/restic/restic/backend"
2015-01-14 21:08:48 +00:00
"github.com/restic/restic/debug"
2014-04-27 22:00:15 +00:00
)
var version = "compiled manually"
var opts struct {
Repo string `short:"r" long:"repo" description:"Repository directory to backup to/restore from"`
2014-04-27 22:00:15 +00:00
}
2014-12-07 15:30:52 +00:00
var parser = flags.NewParser(&opts, flags.Default)
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-11-25 22:07:00 +00:00
func readPassword(env string, prompt string) string {
if env != "" {
p := os.Getenv(env)
if p != "" {
return p
}
2014-09-23 20:39:12 +00:00
}
fmt.Fprint(os.Stderr, prompt)
2014-09-23 20:39:12 +00:00
pw, err := terminal.ReadPassword(int(os.Stdin.Fd()))
if err != nil {
errx(2, "unable to read password: %v", err)
}
fmt.Fprintln(os.Stderr)
2014-09-23 20:39:12 +00:00
return string(pw)
}
2014-12-07 15:30:52 +00:00
type CmdInit struct{}
func (cmd CmdInit) Execute(args []string) error {
if opts.Repo == "" {
return errors.New("Please specify repository location (-r)")
}
2014-12-05 20:45:49 +00:00
pw := readPassword("RESTIC_PASSWORD", "enter password for new backend: ")
pw2 := readPassword("RESTIC_PASSWORD", "enter password again: ")
2014-10-04 17:20:15 +00:00
if pw != pw2 {
errx(1, "passwords do not match")
}
2014-12-07 15:30:52 +00:00
be, err := create(opts.Repo)
2014-10-04 17:20:15 +00:00
if err != nil {
2014-12-07 15:30:52 +00:00
fmt.Fprintf(os.Stderr, "creating backend at %s failed: %v\n", opts.Repo, err)
2014-10-04 17:20:15 +00:00
os.Exit(1)
}
2014-12-21 16:02:49 +00:00
s := restic.NewServer(be)
_, err = restic.CreateKey(s, pw)
2014-10-04 17:20:15 +00:00
if err != nil {
2014-12-07 15:30:52 +00:00
fmt.Fprintf(os.Stderr, "creating key in backend at %s failed: %v\n", opts.Repo, err)
2014-10-04 17:20:15 +00:00
os.Exit(1)
}
2014-12-21 16:02:49 +00:00
fmt.Printf("created restic backend at %s\n", opts.Repo)
2014-10-04 17:20:15 +00:00
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
2014-12-21 16:02:49 +00:00
func open(u string) (backend.Backend, error) {
2014-10-04 17:20:15 +00:00
url, err := url.Parse(u)
if err != nil {
return nil, err
}
if url.Scheme == "" {
return backend.OpenLocal(url.Path)
}
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.
2014-12-21 16:02:49 +00:00
func create(u string) (backend.Backend, error) {
2014-10-04 17:20:15 +00:00
url, err := url.Parse(u)
if err != nil {
return nil, err
}
if url.Scheme == "" {
return backend.CreateLocal(url.Path)
}
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-12-21 17:10:19 +00:00
func OpenRepo() (restic.Server, error) {
if opts.Repo == "" {
return restic.Server{}, errors.New("Please specify repository location (-r)")
}
2014-12-07 15:30:52 +00:00
be, err := open(opts.Repo)
if err != nil {
2014-12-21 17:10:19 +00:00
return restic.Server{}, err
2014-12-07 15:30:52 +00:00
}
2014-12-21 16:02:49 +00:00
s := restic.NewServer(be)
2014-12-21 17:10:19 +00:00
err = s.SearchKey(readPassword("RESTIC_PASSWORD", "Enter Password for Repository: "))
2014-12-07 15:30:52 +00:00
if err != nil {
2014-12-21 17:10:19 +00:00
return restic.Server{}, fmt.Errorf("unable to open repo: %v", err)
2014-12-07 15:30:52 +00:00
}
2014-12-21 17:10:19 +00:00
return s, nil
2014-12-07 15:30:52 +00:00
}
2014-04-27 22:00:15 +00:00
func init() {
2014-11-16 21:50:20 +00:00
// set GOMAXPROCS to number of CPUs
runtime.GOMAXPROCS(runtime.NumCPU())
2014-12-07 15:30:52 +00:00
_, err := parser.AddCommand("init",
"create repository",
"The init command creates a new repository",
&CmdInit{})
if err != nil {
panic(err)
}
2014-04-27 22:00:15 +00:00
}
func main() {
// defer profile.Start(profile.MemProfileRate(100000), profile.ProfilePath(".")).Stop()
2014-12-05 20:45:49 +00:00
opts.Repo = os.Getenv("RESTIC_REPOSITORY")
2014-04-27 22:00:15 +00:00
2015-01-14 21:08:48 +00:00
debug.Log("restic", "main %#v", os.Args)
2014-12-07 15:30:52 +00:00
_, err := parser.Parse()
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 err != nil {
2014-12-07 15:30:52 +00:00
os.Exit(1)
2014-04-27 22:00:15 +00:00
}
2015-02-08 12:40:11 +00:00
// this prints some statistics for memory management using the debug package
restic.PoolAlloc()
2014-04-27 22:00:15 +00:00
}