2015-05-10 15:20:58 +00:00
|
|
|
package s3
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"io"
|
2015-11-06 21:31:59 +00:00
|
|
|
"os"
|
2015-05-10 15:20:58 +00:00
|
|
|
"strings"
|
|
|
|
|
2015-11-06 21:31:59 +00:00
|
|
|
"github.com/minio/minio-go"
|
2015-05-10 15:20:58 +00:00
|
|
|
|
|
|
|
"github.com/restic/restic/backend"
|
|
|
|
)
|
|
|
|
|
2015-05-13 17:48:52 +00:00
|
|
|
const maxKeysInList = 1000
|
2015-06-14 12:17:38 +00:00
|
|
|
const connLimit = 10
|
2015-06-14 13:02:29 +00:00
|
|
|
const backendPrefix = "restic"
|
2015-05-10 15:20:58 +00:00
|
|
|
|
|
|
|
func s3path(t backend.Type, name string) string {
|
|
|
|
if t == backend.Config {
|
2015-06-14 13:02:29 +00:00
|
|
|
return backendPrefix + "/" + string(t)
|
2015-05-10 15:20:58 +00:00
|
|
|
}
|
2015-06-14 13:02:29 +00:00
|
|
|
return backendPrefix + "/" + string(t) + "/" + name
|
2015-05-10 15:20:58 +00:00
|
|
|
}
|
|
|
|
|
2015-06-14 13:08:39 +00:00
|
|
|
type S3Backend struct {
|
2015-11-06 21:31:59 +00:00
|
|
|
s3api minio.API
|
|
|
|
connChan chan struct{}
|
|
|
|
bucketname string
|
2015-05-15 22:29:48 +00:00
|
|
|
}
|
|
|
|
|
2015-06-28 07:44:06 +00:00
|
|
|
// Open opens the S3 backend at bucket and region.
|
2015-06-14 12:17:38 +00:00
|
|
|
func Open(regionname, bucketname string) (backend.Backend, error) {
|
2015-11-06 21:31:59 +00:00
|
|
|
config := minio.Config{
|
|
|
|
AccessKeyID: os.Getenv("AWS_ACCESS_KEY_ID"),
|
|
|
|
SecretAccessKey: os.Getenv("AWS_SECRET_ACCESS_KEY"),
|
|
|
|
}
|
|
|
|
|
|
|
|
if !strings.Contains(regionname, ".") {
|
|
|
|
// Amazon region name
|
|
|
|
switch regionname {
|
|
|
|
case "us-east-1":
|
|
|
|
config.Endpoint = "https://s3.amazonaws.com"
|
|
|
|
default:
|
|
|
|
config.Endpoint = "https://s3-" + regionname + ".amazonaws.com"
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// S3 compatible endpoint
|
2015-11-07 12:43:15 +00:00
|
|
|
if strings.Contains(regionname, "localhost") || strings.Contains(regionname, "127.0.0.1") {
|
|
|
|
config.Endpoint = "http://" + regionname
|
|
|
|
} else {
|
|
|
|
config.Endpoint = "https://" + regionname
|
|
|
|
}
|
2015-05-10 15:20:58 +00:00
|
|
|
}
|
|
|
|
|
2015-11-06 21:31:59 +00:00
|
|
|
s3api, s3err := minio.New(config)
|
2015-08-26 11:25:05 +00:00
|
|
|
if s3err != nil {
|
|
|
|
return nil, s3err
|
|
|
|
}
|
|
|
|
|
2015-11-06 21:31:59 +00:00
|
|
|
connChan := make(chan struct{}, connLimit)
|
|
|
|
for i := 0; i < connLimit; i++ {
|
|
|
|
connChan <- struct{}{}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &S3Backend{s3api: s3api, bucketname: bucketname, connChan: connChan}, nil
|
2015-05-10 15:20:58 +00:00
|
|
|
}
|
|
|
|
|
2015-05-13 17:48:52 +00:00
|
|
|
// Location returns this backend's location (the bucket name).
|
2015-06-14 13:08:39 +00:00
|
|
|
func (be *S3Backend) Location() string {
|
2015-11-06 21:31:59 +00:00
|
|
|
return be.bucketname
|
2015-05-10 15:20:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type s3Blob struct {
|
2015-06-14 13:08:39 +00:00
|
|
|
b *S3Backend
|
2015-05-10 15:20:58 +00:00
|
|
|
buf *bytes.Buffer
|
|
|
|
final bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bb *s3Blob) Write(p []byte) (int, error) {
|
|
|
|
if bb.final {
|
|
|
|
return 0, errors.New("blob already closed")
|
|
|
|
}
|
|
|
|
|
|
|
|
n, err := bb.buf.Write(p)
|
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bb *s3Blob) Read(p []byte) (int, error) {
|
|
|
|
return bb.buf.Read(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bb *s3Blob) Close() error {
|
|
|
|
bb.final = true
|
|
|
|
bb.buf.Reset()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bb *s3Blob) Size() uint {
|
|
|
|
return uint(bb.buf.Len())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bb *s3Blob) Finalize(t backend.Type, name string) error {
|
|
|
|
if bb.final {
|
|
|
|
return errors.New("Already finalized")
|
|
|
|
}
|
|
|
|
|
|
|
|
bb.final = true
|
|
|
|
|
|
|
|
path := s3path(t, name)
|
2015-05-16 11:48:55 +00:00
|
|
|
|
|
|
|
// Check key does not already exist
|
2015-11-06 21:31:59 +00:00
|
|
|
_, err := bb.b.s3api.StatObject(bb.b.bucketname, path)
|
2015-08-26 11:25:05 +00:00
|
|
|
if err == nil {
|
2015-05-16 11:48:55 +00:00
|
|
|
return errors.New("key already exists!")
|
|
|
|
}
|
|
|
|
|
2015-06-14 12:17:38 +00:00
|
|
|
<-bb.b.connChan
|
2015-11-06 23:46:59 +00:00
|
|
|
err = bb.b.s3api.PutObject(bb.b.bucketname, path, "binary/octet-stream", int64(bb.buf.Len()), bb.buf)
|
2015-06-14 12:17:38 +00:00
|
|
|
bb.b.connChan <- struct{}{}
|
2015-05-10 15:20:58 +00:00
|
|
|
bb.buf.Reset()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create creates a new Blob. The data is available only after Finalize()
|
|
|
|
// has been called on the returned Blob.
|
2015-06-14 13:08:39 +00:00
|
|
|
func (be *S3Backend) Create() (backend.Blob, error) {
|
2015-05-10 15:20:58 +00:00
|
|
|
blob := s3Blob{
|
2015-06-14 13:08:39 +00:00
|
|
|
b: be,
|
2015-05-10 15:20:58 +00:00
|
|
|
buf: &bytes.Buffer{},
|
|
|
|
}
|
|
|
|
|
|
|
|
return &blob, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get returns a reader that yields the content stored under the given
|
|
|
|
// name. The reader should be closed after draining it.
|
2015-06-14 13:08:39 +00:00
|
|
|
func (be *S3Backend) Get(t backend.Type, name string) (io.ReadCloser, error) {
|
2015-06-14 12:47:11 +00:00
|
|
|
path := s3path(t, name)
|
2015-11-06 23:46:59 +00:00
|
|
|
rc, _, err := be.s3api.GetObject(be.bucketname, path)
|
2015-11-06 21:31:59 +00:00
|
|
|
return rc, err
|
2015-05-10 15:20:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetReader returns an io.ReadCloser for the Blob with the given name of
|
|
|
|
// type t at offset and length. If length is 0, the reader reads until EOF.
|
2015-06-14 13:08:39 +00:00
|
|
|
func (be *S3Backend) GetReader(t backend.Type, name string, offset, length uint) (io.ReadCloser, error) {
|
2015-11-07 12:43:15 +00:00
|
|
|
path := s3path(t, name)
|
|
|
|
rc, _, err := be.s3api.GetPartialObject(be.bucketname, path, int64(offset), int64(length))
|
|
|
|
return rc, err
|
2015-05-10 15:20:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Test returns true if a blob of the given type and name exists in the backend.
|
2015-06-14 13:08:39 +00:00
|
|
|
func (be *S3Backend) Test(t backend.Type, name string) (bool, error) {
|
2015-05-10 15:20:58 +00:00
|
|
|
found := false
|
|
|
|
path := s3path(t, name)
|
2015-11-06 21:31:59 +00:00
|
|
|
_, err := be.s3api.StatObject(be.bucketname, path)
|
2015-08-26 11:25:05 +00:00
|
|
|
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.
|
2015-06-14 13:08:39 +00:00
|
|
|
func (be *S3Backend) Remove(t backend.Type, name string) error {
|
2015-05-10 15:20:58 +00:00
|
|
|
path := s3path(t, name)
|
2015-11-06 21:31:59 +00:00
|
|
|
return be.s3api.RemoveObject(be.bucketname, path)
|
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.
|
2015-06-14 13:08:39 +00:00
|
|
|
func (be *S3Backend) List(t backend.Type, done <-chan struct{}) <-chan string {
|
2015-05-10 15:20:58 +00:00
|
|
|
ch := make(chan string)
|
|
|
|
|
2015-06-14 13:02:29 +00:00
|
|
|
prefix := s3path(t, "")
|
2015-05-10 15:20:58 +00:00
|
|
|
|
2015-11-06 21:31:59 +00:00
|
|
|
listresp := be.s3api.ListObjects(be.bucketname, prefix, true)
|
2015-05-13 17:48:52 +00:00
|
|
|
|
2015-05-10 15:20:58 +00:00
|
|
|
go func() {
|
|
|
|
defer close(ch)
|
2015-11-06 21:31:59 +00:00
|
|
|
for obj := range listresp {
|
|
|
|
m := strings.TrimPrefix(obj.Stat.Key, prefix)
|
2015-05-10 15:20:58 +00:00
|
|
|
if m == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case ch <- m:
|
|
|
|
case <-done:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
return ch
|
|
|
|
}
|
|
|
|
|
2015-06-14 13:02:29 +00:00
|
|
|
// Remove keys for a specified backend type
|
2015-06-14 13:08:39 +00:00
|
|
|
func (be *S3Backend) removeKeys(t backend.Type) {
|
2015-06-14 13:02:29 +00:00
|
|
|
doneChan := make(chan struct{})
|
2015-06-14 13:08:39 +00:00
|
|
|
for key := range be.List(backend.Data, doneChan) {
|
|
|
|
be.Remove(backend.Data, key)
|
2015-06-14 13:02:29 +00:00
|
|
|
}
|
2015-12-06 22:13:22 +00:00
|
|
|
close(doneChan)
|
2015-06-14 13:02:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete removes all restic keys
|
2015-06-14 13:08:39 +00:00
|
|
|
func (be *S3Backend) Delete() error {
|
|
|
|
be.removeKeys(backend.Data)
|
|
|
|
be.removeKeys(backend.Key)
|
|
|
|
be.removeKeys(backend.Lock)
|
|
|
|
be.removeKeys(backend.Snapshot)
|
|
|
|
be.removeKeys(backend.Index)
|
|
|
|
be.removeKeys(backend.Config)
|
2015-06-14 13:02:29 +00:00
|
|
|
return nil
|
2015-05-10 15:20:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Close does nothing
|
2015-06-14 13:08:39 +00:00
|
|
|
func (be *S3Backend) Close() error { return nil }
|