2015-03-28 11:50:23 +01:00
|
|
|
package sftp
|
2014-10-04 19:20:15 +02:00
|
|
|
|
|
|
|
import (
|
2016-08-28 19:53:18 +02:00
|
|
|
"bufio"
|
2014-10-04 19:20:15 +02:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
2016-08-11 19:10:51 +02:00
|
|
|
"path"
|
2016-08-31 22:39:36 +02:00
|
|
|
"restic"
|
2015-11-02 14:53:34 +01:00
|
|
|
"strings"
|
2016-08-28 19:17:17 +02:00
|
|
|
"time"
|
2014-10-04 19:20:15 +02:00
|
|
|
|
2016-09-01 22:17:37 +02:00
|
|
|
"restic/errors"
|
2016-08-21 17:46:23 +02:00
|
|
|
|
2016-02-14 15:29:28 +01:00
|
|
|
"restic/backend"
|
|
|
|
"restic/debug"
|
2016-08-11 19:10:51 +02:00
|
|
|
|
|
|
|
"github.com/pkg/sftp"
|
2014-10-04 19:20:15 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
tempfileRandomSuffixLength = 10
|
|
|
|
)
|
|
|
|
|
2016-01-24 20:23:50 +01:00
|
|
|
// SFTP is a backend in a directory accessed via SFTP.
|
2014-10-04 19:20:15 +02:00
|
|
|
type SFTP struct {
|
2015-05-03 16:43:27 +02:00
|
|
|
c *sftp.Client
|
|
|
|
p string
|
2014-10-04 19:20:15 +02:00
|
|
|
|
2016-08-28 19:17:17 +02:00
|
|
|
cmd *exec.Cmd
|
|
|
|
result <-chan error
|
2017-04-10 22:40:24 +02:00
|
|
|
|
|
|
|
backend.Layout
|
2017-04-10 22:41:06 +02:00
|
|
|
Config
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
|
|
|
|
2016-08-31 22:51:35 +02:00
|
|
|
var _ restic.Backend = &SFTP{}
|
|
|
|
|
2017-04-10 22:40:24 +02:00
|
|
|
const defaultLayout = "default"
|
|
|
|
|
2015-04-24 19:39:32 -04:00
|
|
|
func startClient(program string, args ...string) (*SFTP, error) {
|
2017-04-03 21:05:42 +02:00
|
|
|
debug.Log("start client %v %v", program, args)
|
2014-10-04 19:20:15 +02:00
|
|
|
// Connect to a remote host and request the sftp subsystem via the 'ssh'
|
|
|
|
// command. This assumes that passwordless login is correctly configured.
|
|
|
|
cmd := exec.Command(program, args...)
|
|
|
|
|
2016-08-28 19:53:18 +02:00
|
|
|
// prefix the errors with the program name
|
|
|
|
stderr, err := cmd.StderrPipe()
|
|
|
|
if err != nil {
|
2016-08-29 21:54:50 +02:00
|
|
|
return nil, errors.Wrap(err, "cmd.StderrPipe")
|
2016-08-28 19:53:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
sc := bufio.NewScanner(stderr)
|
|
|
|
for sc.Scan() {
|
|
|
|
fmt.Fprintf(os.Stderr, "subprocess %v: %v\n", program, sc.Text())
|
|
|
|
}
|
|
|
|
}()
|
2014-10-04 19:20:15 +02:00
|
|
|
|
2015-07-05 11:06:28 +02:00
|
|
|
// ignore signals sent to the parent (e.g. SIGINT)
|
2015-08-16 12:51:01 +02:00
|
|
|
cmd.SysProcAttr = ignoreSigIntProcAttr()
|
2015-07-05 11:06:28 +02:00
|
|
|
|
2014-10-04 19:20:15 +02:00
|
|
|
// get stdin and stdout
|
|
|
|
wr, err := cmd.StdinPipe()
|
|
|
|
if err != nil {
|
2016-08-29 21:54:50 +02:00
|
|
|
return nil, errors.Wrap(err, "cmd.StdinPipe")
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
|
|
|
rd, err := cmd.StdoutPipe()
|
|
|
|
if err != nil {
|
2016-08-29 21:54:50 +02:00
|
|
|
return nil, errors.Wrap(err, "cmd.StdoutPipe")
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// start the process
|
|
|
|
if err := cmd.Start(); err != nil {
|
2016-08-29 21:54:50 +02:00
|
|
|
return nil, errors.Wrap(err, "cmd.Start")
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
|
|
|
|
2016-08-28 19:17:17 +02:00
|
|
|
// wait in a different goroutine
|
|
|
|
ch := make(chan error, 1)
|
|
|
|
go func() {
|
|
|
|
err := cmd.Wait()
|
2016-09-27 22:35:08 +02:00
|
|
|
debug.Log("ssh command exited, err %v", err)
|
2016-08-29 21:54:50 +02:00
|
|
|
ch <- errors.Wrap(err, "cmd.Wait")
|
2016-08-28 19:17:17 +02:00
|
|
|
}()
|
|
|
|
|
2014-10-04 19:20:15 +02:00
|
|
|
// open the SFTP session
|
|
|
|
client, err := sftp.NewClientPipe(rd, wr)
|
|
|
|
if err != nil {
|
2016-08-21 17:48:36 +02:00
|
|
|
return nil, errors.Errorf("unable to start the sftp session, error: %v", err)
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
|
|
|
|
2016-08-28 19:17:17 +02:00
|
|
|
return &SFTP{c: client, cmd: cmd, result: ch}, nil
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
|
|
|
|
2016-01-26 22:16:17 +01:00
|
|
|
func paths(dir string) []string {
|
|
|
|
return []string{
|
|
|
|
dir,
|
|
|
|
Join(dir, backend.Paths.Data),
|
|
|
|
Join(dir, backend.Paths.Snapshots),
|
|
|
|
Join(dir, backend.Paths.Index),
|
|
|
|
Join(dir, backend.Paths.Locks),
|
|
|
|
Join(dir, backend.Paths.Keys),
|
|
|
|
Join(dir, backend.Paths.Temp),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-28 19:17:17 +02:00
|
|
|
// clientError returns an error if the client has exited. Otherwise, nil is
|
|
|
|
// returned immediately.
|
|
|
|
func (r *SFTP) clientError() error {
|
|
|
|
select {
|
|
|
|
case err := <-r.result:
|
2016-09-27 22:35:08 +02:00
|
|
|
debug.Log("client has exited with err %v", err)
|
2016-08-28 19:17:17 +02:00
|
|
|
return err
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-04-10 22:41:20 +02:00
|
|
|
// Open opens an sftp backend as described by the config by running
|
|
|
|
// "ssh" with the appropriate arguments (or cfg.Command, if set).
|
|
|
|
func Open(cfg Config) (*SFTP, error) {
|
|
|
|
debug.Log("open backend with config %#v", cfg)
|
|
|
|
|
|
|
|
cmd, args, err := buildSSHCommand(cfg)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
sftp, err := startClient(cmd, args...)
|
2014-10-04 19:20:15 +02:00
|
|
|
if err != nil {
|
2016-09-27 22:35:08 +02:00
|
|
|
debug.Log("unable to start program: %v", err)
|
2014-10-04 19:20:15 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-04-10 22:40:24 +02:00
|
|
|
l, err := backend.ParseLayout(sftp, cfg.Layout, defaultLayout, cfg.Path)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2014-10-04 19:20:15 +02:00
|
|
|
// test if all necessary dirs and files are there
|
2017-04-10 22:41:20 +02:00
|
|
|
for _, d := range paths(cfg.Path) {
|
2014-10-04 19:20:15 +02:00
|
|
|
if _, err := sftp.c.Lstat(d); err != nil {
|
2016-08-21 17:48:36 +02:00
|
|
|
return nil, errors.Errorf("%s does not exist", d)
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-10 22:41:20 +02:00
|
|
|
sftp.Config = cfg
|
|
|
|
sftp.p = cfg.Path
|
2014-10-04 19:20:15 +02:00
|
|
|
return sftp, nil
|
|
|
|
}
|
|
|
|
|
2017-04-10 22:41:20 +02:00
|
|
|
// Join combines path components with slashes (according to the sftp spec).
|
|
|
|
func (r *SFTP) Join(p ...string) string {
|
|
|
|
return path.Join(p...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReadDir returns the entries for a directory.
|
|
|
|
func (r *SFTP) ReadDir(dir string) ([]os.FileInfo, error) {
|
|
|
|
return r.c.ReadDir(dir)
|
|
|
|
}
|
|
|
|
|
|
|
|
func buildSSHCommand(cfg Config) (cmd string, args []string, err error) {
|
|
|
|
if cfg.Command != "" {
|
|
|
|
return SplitShellArgs(cfg.Command)
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd = "ssh"
|
|
|
|
|
2016-02-15 19:17:41 +01:00
|
|
|
hostport := strings.Split(cfg.Host, ":")
|
2017-04-10 22:41:20 +02:00
|
|
|
args = []string{hostport[0]}
|
2016-02-15 19:17:41 +01:00
|
|
|
if len(hostport) > 1 {
|
|
|
|
args = append(args, "-p", hostport[1])
|
|
|
|
}
|
2015-12-28 18:22:19 +01:00
|
|
|
if cfg.User != "" {
|
|
|
|
args = append(args, "-l")
|
|
|
|
args = append(args, cfg.User)
|
|
|
|
}
|
|
|
|
args = append(args, "-s")
|
|
|
|
args = append(args, "sftp")
|
2017-04-10 22:41:20 +02:00
|
|
|
return cmd, args, nil
|
2015-12-28 18:22:19 +01:00
|
|
|
}
|
|
|
|
|
2017-04-10 22:41:20 +02:00
|
|
|
// Create creates an sftp backend as described by the config by running
|
|
|
|
// "ssh" with the appropriate arguments (or cfg.Command, if set).
|
|
|
|
func create(cfg Config) (*SFTP, error) {
|
|
|
|
cmd, args, err := buildSSHCommand(cfg)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2017-04-03 21:05:42 +02:00
|
|
|
}
|
|
|
|
|
2017-04-10 22:41:20 +02:00
|
|
|
sftp, err := startClient(cmd, args...)
|
2017-04-03 21:05:42 +02:00
|
|
|
if err != nil {
|
2017-04-10 22:41:20 +02:00
|
|
|
debug.Log("unable to start program: %v", err)
|
2017-04-03 21:05:42 +02:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-04-10 22:41:20 +02:00
|
|
|
l, err := backend.ParseLayout(sftp, cfg.Layout, defaultLayout, cfg.Path)
|
2014-10-04 19:20:15 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-05-04 20:39:45 +02:00
|
|
|
// test if config file already exists
|
2017-04-10 22:41:20 +02:00
|
|
|
_, err = sftp.c.Lstat(Join(cfg.Path, backend.Paths.Config))
|
2014-10-04 19:20:15 +02:00
|
|
|
if err == nil {
|
2015-05-03 16:43:27 +02:00
|
|
|
return nil, errors.New("config file already exists")
|
2015-03-14 11:56:45 +01:00
|
|
|
}
|
|
|
|
|
2014-11-16 13:22:19 +01:00
|
|
|
// create paths for data, refs and temp blobs
|
2017-04-10 22:41:20 +02:00
|
|
|
for _, d := range paths(cfg.Path) {
|
2015-03-28 11:50:23 +01:00
|
|
|
err = sftp.mkdirAll(d, backend.Modes.Dir)
|
2017-04-03 21:05:42 +02:00
|
|
|
debug.Log("mkdirAll %v -> %v", d, err)
|
2014-10-04 19:20:15 +02:00
|
|
|
if err != nil {
|
2014-11-30 15:50:30 +01:00
|
|
|
return nil, err
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-28 19:17:17 +02:00
|
|
|
err = sftp.Close()
|
2014-10-04 19:20:15 +02:00
|
|
|
if err != nil {
|
2016-08-29 21:54:50 +02:00
|
|
|
return nil, errors.Wrap(err, "Close")
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
|
|
|
|
2014-10-07 23:19:26 +02:00
|
|
|
// open backend
|
2017-04-10 22:41:20 +02:00
|
|
|
return Open(cfg)
|
2015-12-28 18:22:19 +01:00
|
|
|
}
|
|
|
|
|
2014-10-04 19:20:15 +02:00
|
|
|
// Location returns this backend's location (the directory name).
|
|
|
|
func (r *SFTP) Location() string {
|
|
|
|
return r.p
|
|
|
|
}
|
|
|
|
|
2014-11-30 15:50:30 +01:00
|
|
|
func (r *SFTP) mkdirAll(dir string, mode os.FileMode) error {
|
|
|
|
// check if directory already exists
|
|
|
|
fi, err := r.c.Lstat(dir)
|
|
|
|
if err == nil {
|
|
|
|
if fi.IsDir() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-08-21 17:48:36 +02:00
|
|
|
return errors.Errorf("mkdirAll(%s): entry exists but is not a directory", dir)
|
2014-11-30 15:50:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// create parent directories
|
2016-08-11 19:41:47 +02:00
|
|
|
errMkdirAll := r.mkdirAll(path.Dir(dir), backend.Modes.Dir)
|
2014-11-30 15:50:30 +01:00
|
|
|
|
|
|
|
// create directory
|
|
|
|
errMkdir := r.c.Mkdir(dir)
|
|
|
|
|
|
|
|
// test if directory was created successfully
|
|
|
|
fi, err = r.c.Lstat(dir)
|
|
|
|
if err != nil {
|
|
|
|
// return previous errors
|
2016-08-21 17:48:36 +02:00
|
|
|
return errors.Errorf("mkdirAll(%s): unable to create directories: %v, %v", dir, errMkdirAll, errMkdir)
|
2014-11-30 15:50:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if !fi.IsDir() {
|
2016-08-21 17:48:36 +02:00
|
|
|
return errors.Errorf("mkdirAll(%s): entry exists but is not a directory", dir)
|
2014-11-30 15:50:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// set mode
|
|
|
|
return r.c.Chmod(dir, mode)
|
|
|
|
}
|
|
|
|
|
2015-03-28 11:50:23 +01:00
|
|
|
// Rename temp file to final name according to type and name.
|
2017-01-25 17:48:35 +01:00
|
|
|
func (r *SFTP) renameFile(oldname string, h restic.Handle) error {
|
|
|
|
filename := r.filename(h)
|
2014-11-30 15:50:30 +01:00
|
|
|
|
|
|
|
// create directories if necessary
|
2017-01-25 17:48:35 +01:00
|
|
|
if h.Type == restic.DataFile {
|
2016-08-11 19:41:47 +02:00
|
|
|
err := r.mkdirAll(path.Dir(filename), backend.Modes.Dir)
|
2014-11-30 15:50:30 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-28 11:50:23 +01:00
|
|
|
// test if new file exists
|
|
|
|
if _, err := r.c.Lstat(filename); err == nil {
|
2016-08-21 17:48:36 +02:00
|
|
|
return errors.Errorf("Close(): file %v already exists", filename)
|
2015-03-28 11:50:23 +01:00
|
|
|
}
|
|
|
|
|
2015-03-14 14:29:32 +01:00
|
|
|
err := r.c.Rename(oldname, filename)
|
|
|
|
if err != nil {
|
2016-08-29 21:54:50 +02:00
|
|
|
return errors.Wrap(err, "Rename")
|
2015-03-14 14:29:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// set mode to read-only
|
|
|
|
fi, err := r.c.Lstat(filename)
|
|
|
|
if err != nil {
|
2016-08-29 21:54:50 +02:00
|
|
|
return errors.Wrap(err, "Lstat")
|
2015-03-14 14:29:32 +01:00
|
|
|
}
|
|
|
|
|
2016-08-29 21:54:50 +02:00
|
|
|
err = r.c.Chmod(filename, fi.Mode()&os.FileMode(^uint32(0222)))
|
|
|
|
return errors.Wrap(err, "Chmod")
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
|
|
|
|
2016-08-11 19:10:51 +02:00
|
|
|
// Join joins the given paths and cleans them afterwards. This always uses
|
|
|
|
// forward slashes, which is required by sftp.
|
2015-11-02 14:53:34 +01:00
|
|
|
func Join(parts ...string) string {
|
2016-08-11 19:10:51 +02:00
|
|
|
return path.Clean(path.Join(parts...))
|
2015-11-02 14:53:34 +01:00
|
|
|
}
|
|
|
|
|
2016-08-31 22:39:36 +02:00
|
|
|
// Construct path for given restic.Type and name.
|
2017-01-25 17:48:35 +01:00
|
|
|
func (r *SFTP) filename(h restic.Handle) string {
|
|
|
|
if h.Type == restic.ConfigFile {
|
2015-11-03 18:47:01 +01:00
|
|
|
return Join(r.p, "config")
|
2015-05-03 16:43:27 +02:00
|
|
|
}
|
|
|
|
|
2017-01-25 17:48:35 +01:00
|
|
|
return Join(r.dirname(h), h.Name)
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
|
|
|
|
2015-03-28 11:50:23 +01:00
|
|
|
// Construct directory for given backend.Type.
|
2017-01-25 17:48:35 +01:00
|
|
|
func (r *SFTP) dirname(h restic.Handle) string {
|
2015-03-28 11:50:23 +01:00
|
|
|
var n string
|
2017-01-25 17:48:35 +01:00
|
|
|
switch h.Type {
|
2016-08-31 22:39:36 +02:00
|
|
|
case restic.DataFile:
|
2015-03-28 11:50:23 +01:00
|
|
|
n = backend.Paths.Data
|
2017-01-25 17:48:35 +01:00
|
|
|
if len(h.Name) > 2 {
|
|
|
|
n = Join(n, h.Name[:2])
|
2015-02-11 20:17:55 +01:00
|
|
|
}
|
2016-08-31 22:39:36 +02:00
|
|
|
case restic.SnapshotFile:
|
2015-03-28 11:50:23 +01:00
|
|
|
n = backend.Paths.Snapshots
|
2016-08-31 22:39:36 +02:00
|
|
|
case restic.IndexFile:
|
2015-04-26 15:48:35 +02:00
|
|
|
n = backend.Paths.Index
|
2016-08-31 22:39:36 +02:00
|
|
|
case restic.LockFile:
|
2015-03-28 11:50:23 +01:00
|
|
|
n = backend.Paths.Locks
|
2016-08-31 22:39:36 +02:00
|
|
|
case restic.KeyFile:
|
2015-03-28 11:50:23 +01:00
|
|
|
n = backend.Paths.Keys
|
2014-11-24 22:11:09 +01:00
|
|
|
}
|
2015-11-02 14:53:34 +01:00
|
|
|
return Join(r.p, n)
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
|
|
|
|
2016-01-24 01:15:35 +01:00
|
|
|
// Save stores data in the backend at the handle.
|
2017-01-22 12:32:20 +01:00
|
|
|
func (r *SFTP) Save(h restic.Handle, rd io.Reader) (err error) {
|
2017-04-10 22:40:24 +02:00
|
|
|
debug.Log("Save %v", h)
|
2016-08-28 19:17:17 +02:00
|
|
|
if err := r.clientError(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-01-24 01:15:35 +01:00
|
|
|
if err := h.Valid(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-04-10 22:40:24 +02:00
|
|
|
filename := r.Filename(h)
|
|
|
|
|
|
|
|
// create directories if necessary
|
|
|
|
if h.Type == restic.DataFile {
|
|
|
|
err := r.mkdirAll(path.Dir(filename), backend.Modes.Dir)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// test if new file exists
|
|
|
|
if _, err := r.c.Lstat(filename); err == nil {
|
|
|
|
return errors.Errorf("Close(): file %v already exists", filename)
|
|
|
|
}
|
|
|
|
|
|
|
|
err := r.c.Rename(oldname, filename)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "Rename")
|
|
|
|
}
|
|
|
|
|
|
|
|
// set mode to read-only
|
|
|
|
fi, err := r.c.Lstat(filename)
|
|
|
|
if err != nil {
|
|
|
|
return errors.Wrap(err, "Lstat")
|
|
|
|
}
|
|
|
|
|
|
|
|
err = r.c.Chmod(filename, fi.Mode()&os.FileMode(^uint32(0222)))
|
|
|
|
return errors.Wrap(err, "Chmod")
|
|
|
|
|
2016-01-24 16:59:38 +01:00
|
|
|
filename, tmpfile, err := r.tempFile()
|
2016-08-28 12:34:53 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-01-22 12:32:20 +01:00
|
|
|
n, err := io.Copy(tmpfile, rd)
|
2016-01-24 01:15:35 +01:00
|
|
|
if err != nil {
|
2016-08-29 21:54:50 +02:00
|
|
|
return errors.Wrap(err, "Write")
|
2016-01-24 01:15:35 +01:00
|
|
|
}
|
|
|
|
|
2017-01-22 12:32:20 +01:00
|
|
|
debug.Log("saved %v (%d bytes) to %v", h, n, filename)
|
2016-01-24 16:59:38 +01:00
|
|
|
|
|
|
|
err = tmpfile.Close()
|
2016-01-24 01:15:35 +01:00
|
|
|
if err != nil {
|
2016-08-29 21:54:50 +02:00
|
|
|
return errors.Wrap(err, "Close")
|
2016-01-24 01:15:35 +01:00
|
|
|
}
|
|
|
|
|
2017-01-25 17:48:35 +01:00
|
|
|
err = r.renameFile(filename, h)
|
2016-09-27 22:35:08 +02:00
|
|
|
debug.Log("save %v: rename %v: %v",
|
2016-08-11 19:41:47 +02:00
|
|
|
h, path.Base(filename), err)
|
2016-08-29 21:54:50 +02:00
|
|
|
return err
|
2016-01-24 01:15:35 +01:00
|
|
|
}
|
|
|
|
|
2017-01-23 18:11:10 +01:00
|
|
|
// Load returns a reader that yields the contents of the file at h at the
|
2017-01-22 22:01:12 +01:00
|
|
|
// given offset. If length is nonzero, only a portion of the file is
|
|
|
|
// returned. rd must be closed after use.
|
2017-01-23 18:11:10 +01:00
|
|
|
func (r *SFTP) Load(h restic.Handle, length int, offset int64) (io.ReadCloser, error) {
|
|
|
|
debug.Log("Load %v, length %v, offset %v", h, length, offset)
|
2017-01-22 22:01:12 +01:00
|
|
|
if err := h.Valid(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if offset < 0 {
|
|
|
|
return nil, errors.New("offset is negative")
|
|
|
|
}
|
|
|
|
|
2017-01-25 17:48:35 +01:00
|
|
|
f, err := r.c.Open(r.filename(h))
|
2017-01-22 22:01:12 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if offset > 0 {
|
|
|
|
_, err = f.Seek(offset, 0)
|
|
|
|
if err != nil {
|
2017-01-23 16:20:07 +01:00
|
|
|
_ = f.Close()
|
2017-01-22 22:01:12 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if length > 0 {
|
|
|
|
return backend.LimitReadCloser(f, int64(length)), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return f, nil
|
|
|
|
}
|
|
|
|
|
2016-01-23 23:27:58 +01:00
|
|
|
// Stat returns information about a blob.
|
2016-08-31 22:51:35 +02:00
|
|
|
func (r *SFTP) Stat(h restic.Handle) (restic.FileInfo, error) {
|
2017-01-25 17:48:35 +01:00
|
|
|
debug.Log("Stat(%v)", h)
|
2016-08-28 19:17:17 +02:00
|
|
|
if err := r.clientError(); err != nil {
|
2016-08-31 22:51:35 +02:00
|
|
|
return restic.FileInfo{}, err
|
2016-08-28 19:17:17 +02:00
|
|
|
}
|
|
|
|
|
2016-01-23 23:27:58 +01:00
|
|
|
if err := h.Valid(); err != nil {
|
2016-08-31 22:51:35 +02:00
|
|
|
return restic.FileInfo{}, err
|
2016-01-23 23:27:58 +01:00
|
|
|
}
|
|
|
|
|
2017-01-25 17:48:35 +01:00
|
|
|
fi, err := r.c.Lstat(r.filename(h))
|
2016-01-23 23:27:58 +01:00
|
|
|
if err != nil {
|
2016-08-31 22:51:35 +02:00
|
|
|
return restic.FileInfo{}, errors.Wrap(err, "Lstat")
|
2016-01-23 23:27:58 +01:00
|
|
|
}
|
|
|
|
|
2016-08-31 22:51:35 +02:00
|
|
|
return restic.FileInfo{Size: fi.Size()}, nil
|
2016-01-23 23:27:58 +01:00
|
|
|
}
|
|
|
|
|
2015-03-28 11:50:23 +01:00
|
|
|
// Test returns true if a blob of the given type and name exists in the backend.
|
2017-01-25 17:48:35 +01:00
|
|
|
func (r *SFTP) Test(h restic.Handle) (bool, error) {
|
|
|
|
debug.Log("Test(%v)", h)
|
2016-08-28 19:17:17 +02:00
|
|
|
if err := r.clientError(); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
2017-01-25 17:48:35 +01:00
|
|
|
_, err := r.c.Lstat(r.filename(h))
|
2016-08-29 19:18:57 +02:00
|
|
|
if os.IsNotExist(errors.Cause(err)) {
|
2016-02-13 19:11:41 +01:00
|
|
|
return false, nil
|
|
|
|
}
|
2014-11-30 15:50:30 +01:00
|
|
|
|
2016-02-13 19:11:41 +01:00
|
|
|
if err != nil {
|
2016-08-29 21:54:50 +02:00
|
|
|
return false, errors.Wrap(err, "Lstat")
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
2014-11-30 15:50:30 +01:00
|
|
|
|
|
|
|
return true, nil
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
|
|
|
|
2015-03-28 11:50:23 +01:00
|
|
|
// Remove removes the content stored at name.
|
2017-01-25 17:48:35 +01:00
|
|
|
func (r *SFTP) Remove(h restic.Handle) error {
|
|
|
|
debug.Log("Remove(%v)", h)
|
2016-08-28 19:17:17 +02:00
|
|
|
if err := r.clientError(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-01-25 17:48:35 +01:00
|
|
|
return r.c.Remove(r.filename(h))
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
|
|
|
|
2015-03-28 11:50:23 +01:00
|
|
|
// List returns a channel that yields all names of blobs of type t. A
|
2015-06-28 09:44:06 +02:00
|
|
|
// goroutine is started for this. If the channel done is closed, sending
|
2015-03-28 11:50:23 +01:00
|
|
|
// stops.
|
2016-08-31 22:39:36 +02:00
|
|
|
func (r *SFTP) List(t restic.FileType, done <-chan struct{}) <-chan string {
|
2016-09-27 22:35:08 +02:00
|
|
|
debug.Log("list all %v", t)
|
2015-03-28 11:50:23 +01:00
|
|
|
ch := make(chan string)
|
2014-11-30 15:50:30 +01:00
|
|
|
|
2015-03-28 11:50:23 +01:00
|
|
|
go func() {
|
|
|
|
defer close(ch)
|
2014-11-30 15:50:30 +01:00
|
|
|
|
2016-08-31 22:39:36 +02:00
|
|
|
if t == restic.DataFile {
|
2015-03-28 11:50:23 +01:00
|
|
|
// read first level
|
2017-01-25 17:48:35 +01:00
|
|
|
basedir := r.dirname(restic.Handle{Type: t})
|
2015-03-28 11:50:23 +01:00
|
|
|
|
|
|
|
list1, err := r.c.ReadDir(basedir)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
dirs := make([]string, 0, len(list1))
|
|
|
|
for _, d := range list1 {
|
|
|
|
dirs = append(dirs, d.Name())
|
|
|
|
}
|
2014-11-30 15:50:30 +01:00
|
|
|
|
2015-03-28 11:50:23 +01:00
|
|
|
// read files
|
|
|
|
for _, dir := range dirs {
|
2015-11-02 14:53:34 +01:00
|
|
|
entries, err := r.c.ReadDir(Join(basedir, dir))
|
2015-03-28 11:50:23 +01:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
items := make([]string, 0, len(entries))
|
|
|
|
for _, entry := range entries {
|
|
|
|
items = append(items, entry.Name())
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, file := range items {
|
|
|
|
select {
|
|
|
|
case ch <- file:
|
|
|
|
case <-done:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2017-01-25 17:48:35 +01:00
|
|
|
entries, err := r.c.ReadDir(r.dirname(restic.Handle{Type: t}))
|
2014-11-30 15:50:30 +01:00
|
|
|
if err != nil {
|
2015-03-28 11:50:23 +01:00
|
|
|
return
|
2014-11-30 15:50:30 +01:00
|
|
|
}
|
|
|
|
|
2015-03-28 11:50:23 +01:00
|
|
|
items := make([]string, 0, len(entries))
|
2014-12-01 00:52:12 +01:00
|
|
|
for _, entry := range entries {
|
2015-03-28 11:50:23 +01:00
|
|
|
items = append(items, entry.Name())
|
2014-11-30 15:50:30 +01:00
|
|
|
}
|
2014-10-04 19:20:15 +02:00
|
|
|
|
2015-03-28 11:50:23 +01:00
|
|
|
for _, file := range items {
|
|
|
|
select {
|
|
|
|
case ch <- file:
|
|
|
|
case <-done:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|
2015-03-28 11:50:23 +01:00
|
|
|
}()
|
|
|
|
|
|
|
|
return ch
|
2014-10-04 19:20:15 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-08-28 19:17:17 +02:00
|
|
|
var closeTimeout = 2 * time.Second
|
|
|
|
|
2014-10-04 19:20:15 +02:00
|
|
|
// Close closes the sftp connection and terminates the underlying command.
|
2016-01-24 20:23:50 +01:00
|
|
|
func (r *SFTP) Close() error {
|
2016-09-27 22:35:08 +02:00
|
|
|
debug.Log("")
|
2016-01-24 20:23:50 +01:00
|
|
|
if r == nil {
|
2015-05-01 17:13:03 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-01-26 22:16:17 +01:00
|
|
|
err := r.c.Close()
|
2016-09-27 22:35:08 +02:00
|
|
|
debug.Log("Close returned error %v", err)
|
2015-07-05 11:06:28 +02:00
|
|
|
|
2016-08-28 19:17:17 +02:00
|
|
|
// wait for closeTimeout before killing the process
|
|
|
|
select {
|
|
|
|
case err := <-r.result:
|
|
|
|
return err
|
|
|
|
case <-time.After(closeTimeout):
|
|
|
|
}
|
|
|
|
|
2016-01-24 20:23:50 +01:00
|
|
|
if err := r.cmd.Process.Kill(); err != nil {
|
2015-07-05 11:06:28 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-08-28 19:17:17 +02:00
|
|
|
// get the error, but ignore it
|
|
|
|
<-r.result
|
|
|
|
return nil
|
2014-10-04 19:20:15 +02:00
|
|
|
}
|