2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-01 08:30:49 +00:00
restic/src/restic/backend/s3/s3.go

294 lines
6.5 KiB
Go
Raw Normal View History

2015-05-10 15:20:58 +00:00
package s3
import (
"io"
"path"
2016-08-31 20:39:36 +00:00
"restic"
2015-05-10 15:20:58 +00:00
"strings"
2016-09-01 20:17:37 +00:00
"restic/errors"
"github.com/minio/minio-go"
2015-05-10 15:20:58 +00:00
"restic/debug"
2015-05-10 15:20:58 +00:00
)
const connLimit = 10
2015-05-10 15:20:58 +00:00
2016-01-26 21:19:10 +00:00
// s3 is a backend which stores the data on an S3 endpoint.
type s3 struct {
client *minio.Client
connChan chan struct{}
bucketname string
prefix string
}
// Open opens the S3 backend at bucket and region. The bucket is created if it
// does not exist yet.
2016-08-31 20:39:36 +00:00
func Open(cfg Config) (restic.Backend, error) {
2016-09-27 20:35:08 +00:00
debug.Log("open, config %#v", cfg)
2015-05-10 15:20:58 +00:00
client, err := minio.New(cfg.Endpoint, cfg.KeyID, cfg.Secret, !cfg.UseHTTP)
if err != nil {
2016-08-29 19:54:50 +00:00
return nil, errors.Wrap(err, "minio.New")
}
be := &s3{client: client, bucketname: cfg.Bucket, prefix: cfg.Prefix}
be.createConnections()
found, err := client.BucketExists(cfg.Bucket)
2016-08-21 14:14:58 +00:00
if err != nil {
debug.Log("BucketExists(%v) returned err %v", cfg.Bucket, err)
2016-08-29 19:54:50 +00:00
return nil, errors.Wrap(err, "client.BucketExists")
2016-08-21 14:14:58 +00:00
}
if !found {
// create new bucket with default ACL in default region
err = client.MakeBucket(cfg.Bucket, "")
if err != nil {
2016-08-29 19:54:50 +00:00
return nil, errors.Wrap(err, "client.MakeBucket")
}
}
return be, nil
}
2016-08-31 20:39:36 +00:00
func (be *s3) s3path(t restic.FileType, name string) string {
if t == restic.ConfigFile {
return path.Join(be.prefix, string(t))
2016-02-14 14:40:15 +00:00
}
return path.Join(be.prefix, string(t), name)
2016-02-14 14:40:15 +00:00
}
2016-01-26 21:19:10 +00:00
func (be *s3) createConnections() {
be.connChan = make(chan struct{}, connLimit)
for i := 0; i < connLimit; i++ {
be.connChan <- struct{}{}
}
2015-05-10 15:20:58 +00:00
}
// Location returns this backend's location (the bucket name).
2016-01-26 21:19:10 +00:00
func (be *s3) Location() string {
return be.bucketname
2015-05-10 15:20:58 +00:00
}
2016-01-23 13:12:12 +00:00
// Load returns the data stored in the backend for h at the given offset
// and saves it in p. Load has the same semantics as io.ReaderAt.
2016-08-31 20:39:36 +00:00
func (be s3) Load(h restic.Handle, p []byte, off int64) (n int, err error) {
var obj *minio.Object
2016-09-27 20:35:08 +00:00
debug.Log("%v, offset %v, len %v", h, off, len(p))
objName := be.s3path(h.Type, h.Name)
2016-01-23 13:12:12 +00:00
<-be.connChan
defer func() {
be.connChan <- struct{}{}
}()
2016-08-07 12:50:24 +00:00
obj, err = be.client.GetObject(be.bucketname, objName)
2016-08-07 12:50:24 +00:00
if err != nil {
2016-09-27 20:35:08 +00:00
debug.Log(" err %v", err)
2016-08-29 19:54:50 +00:00
return 0, errors.Wrap(err, "client.GetObject")
2016-01-23 13:12:12 +00:00
}
// make sure that the object is closed properly.
2016-01-24 00:15:35 +00:00
defer func() {
e := obj.Close()
if err == nil {
2016-08-29 19:54:50 +00:00
err = errors.Wrap(e, "Close")
}
2016-01-24 00:15:35 +00:00
}()
info, err := obj.Stat()
if err != nil {
2016-08-29 19:54:50 +00:00
return 0, errors.Wrap(err, "obj.Stat")
}
// handle negative offsets
if off < 0 {
// if the negative offset is larger than the object itself, read from
// the beginning.
if -off > info.Size {
off = 0
} else {
// otherwise compute the offset from the end of the file.
off = info.Size + off
}
}
// return an error if the offset is beyond the end of the file
if off > info.Size {
return 0, errors.Wrap(io.EOF, "")
}
var nextError error
// manually create an io.ErrUnexpectedEOF
if off+int64(len(p)) > info.Size {
newlen := info.Size - off
p = p[:newlen]
nextError = io.ErrUnexpectedEOF
2016-09-27 20:35:08 +00:00
debug.Log(" capped buffer to %v byte", len(p))
}
n, err = obj.ReadAt(p, off)
if int64(n) == info.Size-off && errors.Cause(err) == io.EOF {
err = nil
}
if err == nil {
err = nextError
}
return n, err
2016-01-23 13:12:12 +00:00
}
2016-01-24 00:15:35 +00:00
// Save stores data in the backend at the handle.
func (be s3) Save(h restic.Handle, rd io.Reader) (err error) {
2016-01-24 00:15:35 +00:00
if err := h.Valid(); err != nil {
return err
}
debug.Log("Save %v", h)
2016-01-24 00:15:35 +00:00
objName := be.s3path(h.Type, h.Name)
2016-01-24 00:15:35 +00:00
// Check key does not already exist
_, err = be.client.StatObject(be.bucketname, objName)
if err == nil {
2016-09-27 20:35:08 +00:00
debug.Log("%v already exists", h)
return errors.New("key already exists")
}
2016-01-24 00:15:35 +00:00
<-be.connChan
defer func() {
be.connChan <- struct{}{}
}()
debug.Log("PutObject(%v, %v)",
be.bucketname, objName)
n, err := be.client.PutObject(be.bucketname, objName, rd, "binary/octet-stream")
debug.Log("%v -> %v bytes, err %#v", objName, n, err)
2016-01-24 00:15:35 +00:00
2016-08-29 19:54:50 +00:00
return errors.Wrap(err, "client.PutObject")
2016-01-24 00:15:35 +00:00
}
2016-01-23 22:27:58 +00:00
// Stat returns information about a blob.
2016-08-31 20:39:36 +00:00
func (be s3) Stat(h restic.Handle) (bi restic.FileInfo, err error) {
2016-09-27 20:35:08 +00:00
debug.Log("%v", h)
objName := be.s3path(h.Type, h.Name)
var obj *minio.Object
obj, err = be.client.GetObject(be.bucketname, objName)
2016-01-23 22:27:58 +00:00
if err != nil {
2016-09-27 20:35:08 +00:00
debug.Log("GetObject() err %v", err)
2016-08-31 20:39:36 +00:00
return restic.FileInfo{}, errors.Wrap(err, "client.GetObject")
2016-01-23 22:27:58 +00:00
}
// make sure that the object is closed properly.
defer func() {
e := obj.Close()
if err == nil {
2016-08-29 19:54:50 +00:00
err = errors.Wrap(e, "Close")
}
}()
2016-01-23 22:27:58 +00:00
fi, err := obj.Stat()
if err != nil {
2016-09-27 20:35:08 +00:00
debug.Log("Stat() err %v", err)
2016-08-31 20:39:36 +00:00
return restic.FileInfo{}, errors.Wrap(err, "Stat")
2016-01-23 22:27:58 +00:00
}
2016-08-31 20:39:36 +00:00
return restic.FileInfo{Size: fi.Size}, nil
2016-01-23 22:27:58 +00:00
}
2015-05-10 15:20:58 +00:00
// Test returns true if a blob of the given type and name exists in the backend.
2016-08-31 20:39:36 +00:00
func (be *s3) Test(t restic.FileType, name string) (bool, error) {
2015-05-10 15:20:58 +00:00
found := false
objName := be.s3path(t, name)
_, err := be.client.StatObject(be.bucketname, objName)
if err == nil {
2015-05-10 15:20:58 +00:00
found = true
}
// If error, then not found
return found, nil
}
// Remove removes the blob with the given name and type.
2016-08-31 20:39:36 +00:00
func (be *s3) Remove(t restic.FileType, name string) error {
objName := be.s3path(t, name)
err := be.client.RemoveObject(be.bucketname, objName)
2016-09-27 20:35:08 +00:00
debug.Log("%v %v -> err %v", t, name, err)
2016-08-29 19:54:50 +00:00
return errors.Wrap(err, "client.RemoveObject")
2015-05-10 15:20:58 +00:00
}
// List returns a channel that yields all names of blobs of type t. A
// goroutine is started for this. If the channel done is closed, sending
// stops.
2016-08-31 20:39:36 +00:00
func (be *s3) List(t restic.FileType, done <-chan struct{}) <-chan string {
2016-09-27 20:35:08 +00:00
debug.Log("listing %v", t)
2015-05-10 15:20:58 +00:00
ch := make(chan string)
prefix := be.s3path(t, "") + "/"
2015-05-10 15:20:58 +00:00
2015-12-28 23:27:29 +00:00
listresp := be.client.ListObjects(be.bucketname, prefix, true, done)
2015-05-10 15:20:58 +00:00
go func() {
defer close(ch)
for obj := range listresp {
2015-12-28 23:27:29 +00:00
m := strings.TrimPrefix(obj.Key, prefix)
2015-05-10 15:20:58 +00:00
if m == "" {
continue
}
select {
case ch <- m:
case <-done:
return
}
}
}()
return ch
}
// Remove keys for a specified backend type.
2016-08-31 20:39:36 +00:00
func (be *s3) removeKeys(t restic.FileType) error {
done := make(chan struct{})
defer close(done)
2016-08-31 20:39:36 +00:00
for key := range be.List(restic.DataFile, done) {
err := be.Remove(restic.DataFile, key)
if err != nil {
return err
}
}
return nil
}
// Delete removes all restic keys in the bucket. It will not remove the bucket itself.
2016-01-26 21:19:10 +00:00
func (be *s3) Delete() error {
2016-08-31 20:39:36 +00:00
alltypes := []restic.FileType{
restic.DataFile,
restic.KeyFile,
restic.LockFile,
restic.SnapshotFile,
restic.IndexFile}
for _, t := range alltypes {
err := be.removeKeys(t)
if err != nil {
return nil
}
}
2016-08-31 20:39:36 +00:00
return be.Remove(restic.ConfigFile, "")
2015-05-10 15:20:58 +00:00
}
// Close does nothing
2016-01-26 21:19:10 +00:00
func (be *s3) Close() error { return nil }