2015-05-09 21:52:03 +00:00
|
|
|
package repository
|
2014-12-21 16:02:49 +00:00
|
|
|
|
|
|
|
import (
|
2015-04-26 15:44:38 +00:00
|
|
|
"bytes"
|
2015-02-15 23:24:58 +00:00
|
|
|
"crypto/sha256"
|
2015-01-10 22:40:10 +00:00
|
|
|
"encoding/json"
|
2014-12-21 16:02:49 +00:00
|
|
|
"errors"
|
2015-01-10 22:40:10 +00:00
|
|
|
"fmt"
|
2015-02-08 21:54:45 +00:00
|
|
|
"io"
|
2015-03-28 10:50:23 +00:00
|
|
|
"io/ioutil"
|
2015-07-26 19:58:03 +00:00
|
|
|
"os"
|
2014-12-21 16:02:49 +00:00
|
|
|
|
|
|
|
"github.com/restic/restic/backend"
|
2015-05-03 16:04:13 +00:00
|
|
|
"github.com/restic/restic/crypto"
|
2015-04-26 15:44:38 +00:00
|
|
|
"github.com/restic/restic/debug"
|
|
|
|
"github.com/restic/restic/pack"
|
2014-12-21 16:02:49 +00:00
|
|
|
)
|
|
|
|
|
2015-05-09 21:59:58 +00:00
|
|
|
// Repository is used to access a repository in a backend.
|
|
|
|
type Repository struct {
|
2015-05-03 16:04:13 +00:00
|
|
|
be backend.Backend
|
|
|
|
Config Config
|
|
|
|
key *crypto.Key
|
|
|
|
keyName string
|
2015-10-12 20:34:12 +00:00
|
|
|
idx *MasterIndex
|
2015-04-26 15:44:38 +00:00
|
|
|
|
2015-11-18 19:20:25 +00:00
|
|
|
*packerManager
|
2014-12-21 16:02:49 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 20:53:03 +00:00
|
|
|
// New returns a new repository with backend be.
|
2015-05-09 21:59:58 +00:00
|
|
|
func New(be backend.Backend) *Repository {
|
|
|
|
return &Repository{
|
2015-04-26 15:44:38 +00:00
|
|
|
be: be,
|
2015-10-12 20:34:12 +00:00
|
|
|
idx: NewMasterIndex(),
|
2015-11-18 19:20:25 +00:00
|
|
|
packerManager: &packerManager{
|
|
|
|
be: be,
|
|
|
|
},
|
2015-04-26 15:44:38 +00:00
|
|
|
}
|
2014-12-21 16:02:49 +00:00
|
|
|
}
|
|
|
|
|
2015-03-28 10:50:23 +00:00
|
|
|
// Find loads the list of all blobs of type t and searches for names which start
|
2014-12-21 16:02:49 +00:00
|
|
|
// with prefix. If none is found, nil and ErrNoIDPrefixFound is returned. If
|
|
|
|
// more than one is found, nil and ErrMultipleIDMatches is returned.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) Find(t backend.Type, prefix string) (string, error) {
|
|
|
|
return backend.Find(r.be, t, prefix)
|
2014-12-21 16:02:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PrefixLength returns the number of bytes required so that all prefixes of
|
|
|
|
// all IDs of type t are unique.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) PrefixLength(t backend.Type) (int, error) {
|
|
|
|
return backend.PrefixLength(r.be, t)
|
2014-12-21 16:02:49 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 20:44:09 +00:00
|
|
|
// LoadAndDecrypt loads and decrypts data identified by t and id from the
|
2015-04-26 15:44:38 +00:00
|
|
|
// backend.
|
2015-07-02 20:44:09 +00:00
|
|
|
func (r *Repository) LoadAndDecrypt(t backend.Type, id backend.ID) ([]byte, error) {
|
2015-05-09 15:41:28 +00:00
|
|
|
debug.Log("Repo.Load", "load %v with id %v", t, id.Str())
|
2015-04-26 15:44:38 +00:00
|
|
|
|
2016-01-23 23:12:09 +00:00
|
|
|
h := backend.Handle{Type: t, Name: id.String()}
|
|
|
|
buf, err := backend.LoadAll(r.be, h, nil)
|
2015-03-28 10:50:23 +00:00
|
|
|
if err != nil {
|
2015-05-09 15:41:28 +00:00
|
|
|
debug.Log("Repo.Load", "error loading %v: %v", id.Str(), err)
|
2015-03-28 10:50:23 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-01-23 23:12:09 +00:00
|
|
|
if t != backend.Config && !backend.Hash(buf).Equal(id) {
|
2015-03-28 10:50:23 +00:00
|
|
|
return nil, errors.New("invalid data returned")
|
|
|
|
}
|
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
// decrypt
|
2015-07-02 19:52:57 +00:00
|
|
|
plain, err := r.Decrypt(buf)
|
2015-04-26 15:44:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2015-01-10 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
return plain, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// LoadBlob tries to load and decrypt content identified by t and id from a
|
2015-07-26 16:00:53 +00:00
|
|
|
// pack from the backend, the result is stored in plaintextBuf, which must be
|
|
|
|
// large enough to hold the complete blob.
|
|
|
|
func (r *Repository) LoadBlob(t pack.BlobType, id backend.ID, plaintextBuf []byte) ([]byte, error) {
|
2015-05-09 15:41:28 +00:00
|
|
|
debug.Log("Repo.LoadBlob", "load %v with id %v", t, id.Str())
|
2015-04-26 15:44:38 +00:00
|
|
|
// lookup pack
|
2015-10-31 13:47:42 +00:00
|
|
|
blob, err := r.idx.Lookup(id)
|
2015-01-10 22:40:10 +00:00
|
|
|
if err != nil {
|
2015-05-09 15:41:28 +00:00
|
|
|
debug.Log("Repo.LoadBlob", "id %v not found in index: %v", id.Str(), err)
|
2015-01-10 22:40:10 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-10-31 13:47:42 +00:00
|
|
|
plaintextBufSize := uint(cap(plaintextBuf))
|
|
|
|
if blob.PlaintextLength() > plaintextBufSize {
|
2016-01-23 23:12:09 +00:00
|
|
|
debug.Log("Repo.LoadBlob", "need to expand buffer: want %d bytes, got %d",
|
|
|
|
blob.PlaintextLength(), plaintextBufSize)
|
|
|
|
plaintextBuf = make([]byte, blob.PlaintextLength())
|
2015-07-26 12:25:01 +00:00
|
|
|
}
|
|
|
|
|
2015-10-31 13:47:42 +00:00
|
|
|
if blob.Type != t {
|
|
|
|
debug.Log("Repo.LoadBlob", "wrong type returned for %v: wanted %v, got %v", id.Str(), t, blob.Type)
|
|
|
|
return nil, fmt.Errorf("blob has wrong type %v (wanted: %v)", blob.Type, t)
|
2015-01-10 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
2015-10-31 13:47:42 +00:00
|
|
|
debug.Log("Repo.LoadBlob", "id %v found: %v", id.Str(), blob)
|
2015-04-26 15:44:38 +00:00
|
|
|
|
|
|
|
// load blob from pack
|
2016-01-23 23:12:09 +00:00
|
|
|
h := backend.Handle{Type: backend.Data, Name: blob.PackID.String()}
|
2015-10-31 13:47:42 +00:00
|
|
|
ciphertextBuf := make([]byte, blob.Length)
|
2016-01-23 23:12:09 +00:00
|
|
|
n, err := r.be.Load(h, ciphertextBuf, int64(blob.Offset))
|
2015-04-26 15:44:38 +00:00
|
|
|
if err != nil {
|
2016-01-23 23:12:09 +00:00
|
|
|
debug.Log("Repo.LoadBlob", "error loading blob %v: %v", blob, err)
|
2015-04-26 15:44:38 +00:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-01-23 23:12:09 +00:00
|
|
|
if uint(n) != blob.Length {
|
|
|
|
debug.Log("Repo.LoadBlob", "error loading blob %v: wrong length returned, want %d, got %d",
|
|
|
|
blob.Length, uint(n))
|
|
|
|
return nil, errors.New("wrong length returned")
|
2015-04-26 15:44:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// decrypt
|
2015-07-26 16:00:53 +00:00
|
|
|
plaintextBuf, err = r.decryptTo(plaintextBuf, ciphertextBuf)
|
2015-04-26 15:44:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
// check hash
|
2015-07-26 16:00:53 +00:00
|
|
|
if !backend.Hash(plaintextBuf).Equal(id) {
|
2015-04-26 15:44:38 +00:00
|
|
|
return nil, errors.New("invalid data returned")
|
|
|
|
}
|
2015-01-10 22:40:10 +00:00
|
|
|
|
2015-07-26 16:00:53 +00:00
|
|
|
return plaintextBuf, nil
|
2015-01-10 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
2015-11-18 19:33:20 +00:00
|
|
|
// closeOrErr calls cl.Close() and sets err to the returned error value if
|
|
|
|
// itself is not yet set.
|
|
|
|
func closeOrErr(cl io.Closer, err *error) {
|
|
|
|
e := cl.Close()
|
|
|
|
if *err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
*err = e
|
|
|
|
}
|
|
|
|
|
2015-05-04 18:39:45 +00:00
|
|
|
// LoadJSONUnpacked decrypts the data and afterwards calls json.Unmarshal on
|
2015-04-26 15:44:38 +00:00
|
|
|
// the item.
|
2015-11-18 19:33:20 +00:00
|
|
|
func (r *Repository) LoadJSONUnpacked(t backend.Type, id backend.ID, item interface{}) (err error) {
|
2016-01-23 23:12:09 +00:00
|
|
|
buf, err := r.LoadAndDecrypt(t, id)
|
2015-04-26 15:44:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-01-23 23:12:09 +00:00
|
|
|
return json.Unmarshal(buf, item)
|
2015-01-10 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
// LoadJSONPack calls LoadBlob() to load a blob from the backend, decrypt the
|
|
|
|
// data and afterwards call json.Unmarshal on the item.
|
2015-11-18 19:33:20 +00:00
|
|
|
func (r *Repository) LoadJSONPack(t pack.BlobType, id backend.ID, item interface{}) (err error) {
|
2016-01-23 23:12:09 +00:00
|
|
|
buf, err := r.LoadBlob(t, id, nil)
|
2015-01-10 22:40:10 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-01-23 23:12:09 +00:00
|
|
|
return json.Unmarshal(buf, item)
|
2015-01-10 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
2015-07-26 14:43:42 +00:00
|
|
|
// LookupBlobSize returns the size of blob id.
|
|
|
|
func (r *Repository) LookupBlobSize(id backend.ID) (uint, error) {
|
2015-10-12 20:34:12 +00:00
|
|
|
return r.idx.LookupSize(id)
|
2015-07-26 14:43:42 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 21:00:54 +00:00
|
|
|
// SaveAndEncrypt encrypts data and stores it to the backend as type t. If data is small
|
2016-01-17 20:14:55 +00:00
|
|
|
// enough, it will be packed together with other small blobs. When
|
|
|
|
// ignoreDuplicates is true, blobs already in the index will be saved again.
|
|
|
|
func (r *Repository) SaveAndEncrypt(t pack.BlobType, data []byte, id *backend.ID, ignoreDuplicates bool) (backend.ID, error) {
|
2015-01-10 22:40:10 +00:00
|
|
|
if id == nil {
|
|
|
|
// compute plaintext hash
|
2015-07-25 15:05:45 +00:00
|
|
|
hashedID := backend.Hash(data)
|
|
|
|
id = &hashedID
|
2015-01-10 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
2015-05-09 15:41:28 +00:00
|
|
|
debug.Log("Repo.Save", "save id %v (%v, %d bytes)", id.Str(), t, len(data))
|
2015-01-10 22:40:10 +00:00
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
// get buf from the pool
|
2015-04-26 12:46:15 +00:00
|
|
|
ciphertext := getBuf()
|
|
|
|
defer freeBuf(ciphertext)
|
2015-01-10 22:40:10 +00:00
|
|
|
|
|
|
|
// encrypt blob
|
2015-07-02 19:52:57 +00:00
|
|
|
ciphertext, err := r.Encrypt(ciphertext, data)
|
2015-01-10 22:40:10 +00:00
|
|
|
if err != nil {
|
2015-07-25 15:05:45 +00:00
|
|
|
return backend.ID{}, err
|
2015-01-10 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
2015-10-12 20:34:12 +00:00
|
|
|
// add this id to the list of in-flight chunk ids.
|
|
|
|
debug.Log("Repo.Save", "add %v to list of in-flight IDs", id.Str())
|
2016-01-17 20:14:55 +00:00
|
|
|
err = r.idx.AddInFlight(*id, ignoreDuplicates)
|
2015-09-23 20:27:48 +00:00
|
|
|
if err != nil {
|
|
|
|
debug.Log("Repo.Save", "another goroutine is already working on %v (%v) does already exist", id.Str, t)
|
2015-10-11 18:45:50 +00:00
|
|
|
return *id, nil
|
2015-09-23 20:27:48 +00:00
|
|
|
}
|
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
// find suitable packer and add blob
|
2015-07-02 19:52:57 +00:00
|
|
|
packer, err := r.findPacker(uint(len(ciphertext)))
|
2015-02-15 16:26:08 +00:00
|
|
|
if err != nil {
|
2015-10-12 20:34:12 +00:00
|
|
|
r.idx.RemoveFromInFlight(*id)
|
2015-07-25 15:05:45 +00:00
|
|
|
return backend.ID{}, err
|
2015-02-15 16:26:08 +00:00
|
|
|
}
|
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
// save ciphertext
|
2015-10-12 20:34:12 +00:00
|
|
|
_, err = packer.Add(t, *id, bytes.NewReader(ciphertext))
|
|
|
|
if err != nil {
|
|
|
|
return backend.ID{}, err
|
|
|
|
}
|
2015-04-26 15:44:38 +00:00
|
|
|
|
|
|
|
// if the pack is not full enough and there are less than maxPackers
|
|
|
|
// packers, put back to the list
|
2015-07-02 19:52:57 +00:00
|
|
|
if packer.Size() < minPackSize && r.countPacker() < maxPackers {
|
2015-05-09 15:41:28 +00:00
|
|
|
debug.Log("Repo.Save", "pack is not full enough (%d bytes)", packer.Size())
|
2015-07-02 19:52:57 +00:00
|
|
|
r.insertPacker(packer)
|
2015-07-25 15:05:45 +00:00
|
|
|
return *id, nil
|
2015-04-26 15:44:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// else write the pack to the backend
|
2015-07-25 15:05:45 +00:00
|
|
|
return *id, r.savePacker(packer)
|
2015-04-26 15:44:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SaveFrom encrypts data read from rd and stores it in a pack in the backend as type t.
|
2015-07-25 15:05:45 +00:00
|
|
|
func (r *Repository) SaveFrom(t pack.BlobType, id *backend.ID, length uint, rd io.Reader) error {
|
2015-05-09 15:41:28 +00:00
|
|
|
debug.Log("Repo.SaveFrom", "save id %v (%v, %d bytes)", id.Str(), t, length)
|
2015-04-26 15:44:38 +00:00
|
|
|
if id == nil {
|
|
|
|
return errors.New("id is nil")
|
2015-02-15 16:26:08 +00:00
|
|
|
}
|
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
buf, err := ioutil.ReadAll(rd)
|
2015-01-10 22:40:10 +00:00
|
|
|
if err != nil {
|
2015-04-26 15:44:38 +00:00
|
|
|
return err
|
2015-01-10 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
2016-01-17 20:14:55 +00:00
|
|
|
_, err = r.SaveAndEncrypt(t, buf, id, false)
|
2015-04-26 15:44:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-01-10 22:40:10 +00:00
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
return nil
|
2015-01-10 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
// SaveJSON serialises item as JSON and encrypts and saves it in a pack in the
|
|
|
|
// backend as type t.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) SaveJSON(t pack.BlobType, item interface{}) (backend.ID, error) {
|
2015-05-09 15:41:28 +00:00
|
|
|
debug.Log("Repo.SaveJSON", "save %v blob", t)
|
2015-04-26 15:44:38 +00:00
|
|
|
buf := getBuf()[:0]
|
|
|
|
defer freeBuf(buf)
|
|
|
|
|
|
|
|
wr := bytes.NewBuffer(buf)
|
|
|
|
|
|
|
|
enc := json.NewEncoder(wr)
|
|
|
|
err := enc.Encode(item)
|
|
|
|
if err != nil {
|
2015-07-25 15:05:45 +00:00
|
|
|
return backend.ID{}, fmt.Errorf("json.Encode: %v", err)
|
2015-02-08 21:54:45 +00:00
|
|
|
}
|
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
buf = wr.Bytes()
|
2016-01-17 20:14:55 +00:00
|
|
|
return r.SaveAndEncrypt(t, buf, nil, false)
|
2015-04-26 15:44:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SaveJSONUnpacked serialises item as JSON and encrypts and saves it in the
|
|
|
|
// backend as type t, without a pack. It returns the storage hash.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) SaveJSONUnpacked(t backend.Type, item interface{}) (backend.ID, error) {
|
2015-05-03 15:37:12 +00:00
|
|
|
// create file
|
2015-07-02 19:52:57 +00:00
|
|
|
blob, err := r.be.Create()
|
2015-02-08 21:54:45 +00:00
|
|
|
if err != nil {
|
2015-07-25 15:05:45 +00:00
|
|
|
return backend.ID{}, err
|
2015-02-08 21:54:45 +00:00
|
|
|
}
|
2015-06-27 13:47:29 +00:00
|
|
|
debug.Log("Repo.SaveJSONUnpacked", "create new blob %v", t)
|
2015-04-26 15:44:38 +00:00
|
|
|
|
|
|
|
// hash
|
|
|
|
hw := backend.NewHashingWriter(blob, sha256.New())
|
2015-02-08 21:54:45 +00:00
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
// encrypt blob
|
2015-07-02 19:52:57 +00:00
|
|
|
ewr := crypto.EncryptTo(r.key, hw)
|
2015-02-08 21:54:45 +00:00
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
enc := json.NewEncoder(ewr)
|
|
|
|
err = enc.Encode(item)
|
2015-02-15 16:26:08 +00:00
|
|
|
if err != nil {
|
2015-07-25 15:05:45 +00:00
|
|
|
return backend.ID{}, fmt.Errorf("json.Encode: %v", err)
|
2015-02-15 16:26:08 +00:00
|
|
|
}
|
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
err = ewr.Close()
|
2015-02-15 16:26:08 +00:00
|
|
|
if err != nil {
|
2015-07-25 15:05:45 +00:00
|
|
|
return backend.ID{}, err
|
2015-02-15 16:26:08 +00:00
|
|
|
}
|
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
// finalize blob in the backend
|
2015-07-25 15:05:45 +00:00
|
|
|
hash := hw.Sum(nil)
|
|
|
|
sid := backend.ID{}
|
|
|
|
copy(sid[:], hash)
|
2015-04-26 15:44:38 +00:00
|
|
|
|
|
|
|
err = blob.Finalize(t, sid.String())
|
2015-02-15 16:26:08 +00:00
|
|
|
if err != nil {
|
2015-06-27 13:47:29 +00:00
|
|
|
debug.Log("Repo.SaveJSONUnpacked", "error saving blob %v as %v: %v", t, sid, err)
|
2015-07-25 15:05:45 +00:00
|
|
|
return backend.ID{}, err
|
2015-02-15 16:26:08 +00:00
|
|
|
}
|
|
|
|
|
2015-06-27 13:47:29 +00:00
|
|
|
debug.Log("Repo.SaveJSONUnpacked", "new blob %v saved as %v", t, sid)
|
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
return sid, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Flush saves all remaining packs.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) Flush() error {
|
|
|
|
r.pm.Lock()
|
|
|
|
defer r.pm.Unlock()
|
2015-04-26 15:44:38 +00:00
|
|
|
|
2015-07-02 19:52:57 +00:00
|
|
|
debug.Log("Repo.Flush", "manually flushing %d packs", len(r.packs))
|
2015-04-26 15:44:38 +00:00
|
|
|
|
2015-07-02 19:52:57 +00:00
|
|
|
for _, p := range r.packs {
|
|
|
|
err := r.savePacker(p)
|
2015-04-26 15:44:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2015-07-02 19:52:57 +00:00
|
|
|
r.packs = r.packs[:0]
|
2015-04-26 15:44:38 +00:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-07-02 20:53:03 +00:00
|
|
|
// Backend returns the backend for the repository.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) Backend() backend.Backend {
|
|
|
|
return r.be
|
2015-04-26 15:44:38 +00:00
|
|
|
}
|
|
|
|
|
2015-10-12 20:34:12 +00:00
|
|
|
// Index returns the currently used MasterIndex.
|
|
|
|
func (r *Repository) Index() *MasterIndex {
|
2015-07-02 19:52:57 +00:00
|
|
|
return r.idx
|
2015-04-26 15:44:38 +00:00
|
|
|
}
|
|
|
|
|
2015-05-09 11:25:52 +00:00
|
|
|
// SetIndex instructs the repository to use the given index.
|
2015-10-12 20:34:12 +00:00
|
|
|
func (r *Repository) SetIndex(i *MasterIndex) {
|
2015-07-02 19:52:57 +00:00
|
|
|
r.idx = i
|
2015-02-08 21:54:45 +00:00
|
|
|
}
|
|
|
|
|
2015-08-08 10:40:37 +00:00
|
|
|
// BlobWriter encrypts and saves the data written to it in a backend. After
|
|
|
|
// Close() was called, ID() returns the backend.ID.
|
|
|
|
type BlobWriter struct {
|
|
|
|
id backend.ID
|
|
|
|
blob backend.Blob
|
|
|
|
hw *backend.HashingWriter
|
|
|
|
ewr io.WriteCloser
|
|
|
|
t backend.Type
|
|
|
|
closed bool
|
|
|
|
}
|
2015-04-26 15:44:38 +00:00
|
|
|
|
2015-08-08 10:40:37 +00:00
|
|
|
// CreateEncryptedBlob returns a BlobWriter that encrypts and saves the data
|
|
|
|
// written to it in the backend. After Close() was called, ID() returns the
|
|
|
|
// backend.ID.
|
|
|
|
func (r *Repository) CreateEncryptedBlob(t backend.Type) (*BlobWriter, error) {
|
2015-07-02 19:52:57 +00:00
|
|
|
blob, err := r.be.Create()
|
2015-01-10 22:40:10 +00:00
|
|
|
if err != nil {
|
2015-08-08 10:40:37 +00:00
|
|
|
return nil, err
|
2015-02-15 23:24:58 +00:00
|
|
|
}
|
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
// hash
|
|
|
|
hw := backend.NewHashingWriter(blob, sha256.New())
|
|
|
|
|
|
|
|
// encrypt blob
|
2015-07-02 19:52:57 +00:00
|
|
|
ewr := crypto.EncryptTo(r.key, hw)
|
2015-04-26 15:44:38 +00:00
|
|
|
|
2015-08-08 10:40:37 +00:00
|
|
|
return &BlobWriter{t: t, blob: blob, hw: hw, ewr: ewr}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bw *BlobWriter) Write(buf []byte) (int, error) {
|
|
|
|
return bw.ewr.Write(buf)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close finalizes the blob in the backend, afterwards ID() can be used to retrieve the ID.
|
|
|
|
func (bw *BlobWriter) Close() error {
|
|
|
|
if bw.closed {
|
|
|
|
return errors.New("BlobWriter already closed")
|
|
|
|
}
|
|
|
|
bw.closed = true
|
|
|
|
|
|
|
|
err := bw.ewr.Close()
|
2015-02-15 23:24:58 +00:00
|
|
|
if err != nil {
|
2015-08-08 10:40:37 +00:00
|
|
|
return err
|
2015-02-15 23:24:58 +00:00
|
|
|
}
|
|
|
|
|
2015-08-08 10:40:37 +00:00
|
|
|
copy(bw.id[:], bw.hw.Sum(nil))
|
|
|
|
return bw.blob.Finalize(bw.t, bw.id.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
// ID returns the Id the blob has been written to after Close() was called.
|
|
|
|
func (bw *BlobWriter) ID() backend.ID {
|
|
|
|
return bw.id
|
|
|
|
}
|
|
|
|
|
2015-10-25 16:05:54 +00:00
|
|
|
// SaveIndex saves an index to repo's backend.
|
|
|
|
func SaveIndex(repo *Repository, index *Index) (backend.ID, error) {
|
|
|
|
blob, err := repo.CreateEncryptedBlob(backend.Index)
|
|
|
|
if err != nil {
|
|
|
|
return backend.ID{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = index.Finalize(blob)
|
|
|
|
if err != nil {
|
|
|
|
return backend.ID{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = blob.Close()
|
|
|
|
if err != nil {
|
|
|
|
return backend.ID{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
sid := blob.ID()
|
2015-11-02 17:51:45 +00:00
|
|
|
err = index.SetID(sid)
|
|
|
|
return sid, err
|
2015-10-25 16:05:54 +00:00
|
|
|
}
|
|
|
|
|
2015-10-12 21:59:17 +00:00
|
|
|
// saveIndex saves all indexes in the backend.
|
|
|
|
func (r *Repository) saveIndex(indexes ...*Index) error {
|
|
|
|
for i, idx := range indexes {
|
2015-10-12 20:34:12 +00:00
|
|
|
debug.Log("Repo.SaveIndex", "Saving index %d", i)
|
2015-08-08 10:40:37 +00:00
|
|
|
|
2015-10-25 16:05:54 +00:00
|
|
|
sid, err := SaveIndex(r, idx)
|
2015-10-12 20:34:12 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-02-15 23:24:58 +00:00
|
|
|
|
2015-10-12 20:34:12 +00:00
|
|
|
debug.Log("Repo.SaveIndex", "Saved index %d as %v", i, sid.Str())
|
|
|
|
}
|
2015-01-10 22:40:10 +00:00
|
|
|
|
2015-10-12 20:34:12 +00:00
|
|
|
return nil
|
2015-01-10 22:40:10 +00:00
|
|
|
}
|
|
|
|
|
2015-10-12 21:59:17 +00:00
|
|
|
// SaveIndex saves all new indexes in the backend.
|
|
|
|
func (r *Repository) SaveIndex() error {
|
|
|
|
return r.saveIndex(r.idx.NotFinalIndexes()...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// SaveFullIndex saves all full indexes in the backend.
|
|
|
|
func (r *Repository) SaveFullIndex() error {
|
|
|
|
return r.saveIndex(r.idx.FullIndexes()...)
|
|
|
|
}
|
|
|
|
|
2015-07-04 16:38:32 +00:00
|
|
|
const loadIndexParallelism = 20
|
|
|
|
|
2015-10-12 20:34:12 +00:00
|
|
|
// LoadIndex loads all index files from the backend in parallel and stores them
|
|
|
|
// in the master index. The first error that occurred is returned.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) LoadIndex() error {
|
2015-05-09 15:41:28 +00:00
|
|
|
debug.Log("Repo.LoadIndex", "Loading index")
|
2015-04-26 15:44:38 +00:00
|
|
|
|
2015-07-04 16:38:32 +00:00
|
|
|
errCh := make(chan error, 1)
|
|
|
|
indexes := make(chan *Index)
|
|
|
|
|
|
|
|
worker := func(id string, done <-chan struct{}) error {
|
|
|
|
idx, err := LoadIndex(r, id)
|
2015-04-26 15:44:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-07-04 16:38:32 +00:00
|
|
|
|
|
|
|
select {
|
|
|
|
case indexes <- idx:
|
|
|
|
case <-done:
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
defer close(indexes)
|
|
|
|
errCh <- FilesInParallel(r.be, backend.Index, loadIndexParallelism, worker)
|
|
|
|
}()
|
|
|
|
|
|
|
|
for idx := range indexes {
|
2015-10-12 20:34:12 +00:00
|
|
|
r.idx.Insert(idx)
|
2015-07-04 16:38:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := <-errCh; err != nil {
|
|
|
|
return err
|
2015-04-26 15:44:38 +00:00
|
|
|
}
|
2015-07-04 16:38:32 +00:00
|
|
|
|
2015-04-26 15:44:38 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-07-04 16:38:32 +00:00
|
|
|
// LoadIndex loads the index id from backend and returns it.
|
|
|
|
func LoadIndex(repo *Repository, id string) (*Index, error) {
|
2015-08-08 10:22:17 +00:00
|
|
|
idx, err := LoadIndexWithDecoder(repo, id, DecodeIndex)
|
2015-07-26 19:58:03 +00:00
|
|
|
if err == nil {
|
|
|
|
return idx, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if err == ErrOldIndexFormat {
|
2015-08-08 10:22:17 +00:00
|
|
|
fmt.Fprintf(os.Stderr, "index %v has old format\n", id[:10])
|
|
|
|
return LoadIndexWithDecoder(repo, id, DecodeOldIndex)
|
2015-07-26 19:58:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-05-04 18:39:45 +00:00
|
|
|
// SearchKey finds a key with the supplied password, afterwards the config is
|
|
|
|
// read and parsed.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) SearchKey(password string) error {
|
|
|
|
key, err := SearchKey(r, password)
|
2014-12-21 17:10:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-07-02 19:52:57 +00:00
|
|
|
r.key = key.master
|
2015-11-18 19:20:25 +00:00
|
|
|
r.packerManager.key = key.master
|
2015-07-02 19:52:57 +00:00
|
|
|
r.keyName = key.Name()
|
2015-07-02 20:36:31 +00:00
|
|
|
r.Config, err = LoadConfig(r)
|
|
|
|
return err
|
2015-05-03 14:36:52 +00:00
|
|
|
}
|
2014-12-21 17:10:19 +00:00
|
|
|
|
2015-07-02 20:36:31 +00:00
|
|
|
// Init creates a new master key with the supplied password, initializes and
|
|
|
|
// saves the repository config.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) Init(password string) error {
|
|
|
|
has, err := r.be.Test(backend.Config, "")
|
2015-05-03 15:46:18 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if has {
|
|
|
|
return errors.New("repository master key and config already initialized")
|
|
|
|
}
|
|
|
|
|
2015-07-02 19:52:57 +00:00
|
|
|
key, err := createMasterKey(r, password)
|
2015-05-03 14:36:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-07-02 19:52:57 +00:00
|
|
|
r.key = key.master
|
2015-11-18 19:20:25 +00:00
|
|
|
r.packerManager.key = key.master
|
2015-07-02 19:52:57 +00:00
|
|
|
r.keyName = key.Name()
|
2015-07-02 20:36:31 +00:00
|
|
|
r.Config, err = CreateConfig(r)
|
|
|
|
return err
|
2014-12-21 17:10:19 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 20:53:03 +00:00
|
|
|
// Decrypt authenticates and decrypts ciphertext and returns the plaintext.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) Decrypt(ciphertext []byte) ([]byte, error) {
|
2015-07-26 12:25:01 +00:00
|
|
|
return r.decryptTo(nil, ciphertext)
|
|
|
|
}
|
|
|
|
|
|
|
|
// decrypt authenticates and decrypts ciphertext and stores the result in
|
|
|
|
// plaintext.
|
|
|
|
func (r *Repository) decryptTo(plaintext, ciphertext []byte) ([]byte, error) {
|
2015-07-02 19:52:57 +00:00
|
|
|
if r.key == nil {
|
2015-05-09 11:25:52 +00:00
|
|
|
return nil, errors.New("key for repository not set")
|
2014-12-21 17:10:19 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 19:52:57 +00:00
|
|
|
return crypto.Decrypt(r.key, nil, ciphertext)
|
2014-12-21 17:10:19 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 20:53:03 +00:00
|
|
|
// Encrypt encrypts and authenticates the plaintext and saves the result in
|
|
|
|
// ciphertext.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) Encrypt(ciphertext, plaintext []byte) ([]byte, error) {
|
|
|
|
if r.key == nil {
|
2015-05-09 11:25:52 +00:00
|
|
|
return nil, errors.New("key for repository not set")
|
2014-12-21 17:10:19 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 19:52:57 +00:00
|
|
|
return crypto.Encrypt(r.key, ciphertext, plaintext)
|
2014-12-21 17:10:19 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 20:53:03 +00:00
|
|
|
// Key returns the current master key.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) Key() *crypto.Key {
|
|
|
|
return r.key
|
2014-12-21 17:10:19 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 20:53:03 +00:00
|
|
|
// KeyName returns the name of the current key in the backend.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) KeyName() string {
|
|
|
|
return r.keyName
|
2015-05-03 16:04:13 +00:00
|
|
|
}
|
|
|
|
|
2015-03-28 10:50:23 +00:00
|
|
|
// Count returns the number of blobs of a given type in the backend.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) Count(t backend.Type) (n uint) {
|
|
|
|
for _ = range r.be.List(t, nil) {
|
2015-03-28 10:50:23 +00:00
|
|
|
n++
|
2015-02-21 14:32:48 +00:00
|
|
|
}
|
|
|
|
|
2015-03-28 10:50:23 +00:00
|
|
|
return
|
2015-02-21 14:32:48 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) list(t backend.Type, done <-chan struct{}, out chan<- backend.ID) {
|
2015-05-17 18:48:59 +00:00
|
|
|
defer close(out)
|
2015-07-02 19:52:57 +00:00
|
|
|
in := r.be.List(t, done)
|
2015-05-17 18:48:59 +00:00
|
|
|
|
|
|
|
var (
|
|
|
|
// disable sending on the outCh until we received a job
|
|
|
|
outCh chan<- backend.ID
|
|
|
|
// enable receiving from in
|
|
|
|
inCh = in
|
|
|
|
id backend.ID
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-done:
|
|
|
|
return
|
|
|
|
case strID, ok := <-inCh:
|
|
|
|
if !ok {
|
|
|
|
// input channel closed, we're done
|
|
|
|
return
|
|
|
|
}
|
|
|
|
id, err = backend.ParseID(strID)
|
|
|
|
if err != nil {
|
|
|
|
// ignore invalid IDs
|
|
|
|
continue
|
|
|
|
}
|
2014-12-21 16:02:49 +00:00
|
|
|
|
2015-05-17 18:48:59 +00:00
|
|
|
inCh = nil
|
|
|
|
outCh = out
|
|
|
|
case outCh <- id:
|
|
|
|
outCh = nil
|
|
|
|
inCh = in
|
|
|
|
}
|
|
|
|
}
|
2015-04-26 12:46:15 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 20:53:03 +00:00
|
|
|
// List returns a channel that yields all IDs of type t in the backend.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) List(t backend.Type, done <-chan struct{}) <-chan backend.ID {
|
2015-05-17 18:48:59 +00:00
|
|
|
outCh := make(chan backend.ID)
|
|
|
|
|
2015-07-02 19:52:57 +00:00
|
|
|
go r.list(t, done, outCh)
|
2015-05-17 18:48:59 +00:00
|
|
|
|
|
|
|
return outCh
|
2014-12-21 16:02:49 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 20:53:03 +00:00
|
|
|
// Delete calls backend.Delete() if implemented, and returns an error
|
|
|
|
// otherwise.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) Delete() error {
|
|
|
|
if b, ok := r.be.(backend.Deleter); ok {
|
2014-12-21 16:02:49 +00:00
|
|
|
return b.Delete()
|
|
|
|
}
|
|
|
|
|
|
|
|
return errors.New("Delete() called for backend that does not implement this method")
|
|
|
|
}
|
2015-03-14 10:56:45 +00:00
|
|
|
|
2015-07-02 20:53:03 +00:00
|
|
|
// Close closes the repository by closing the backend.
|
2015-07-02 19:52:57 +00:00
|
|
|
func (r *Repository) Close() error {
|
|
|
|
return r.be.Close()
|
2015-03-28 10:50:23 +00:00
|
|
|
}
|