2020-10-01 12:36:19 +00:00
|
|
|
package backupds
|
|
|
|
|
|
|
|
import (
|
2020-10-05 23:50:43 +00:00
|
|
|
"bytes"
|
|
|
|
"crypto/sha256"
|
2020-10-01 12:36:19 +00:00
|
|
|
"io"
|
2021-03-09 21:33:01 +00:00
|
|
|
"os"
|
2020-10-01 12:36:19 +00:00
|
|
|
|
|
|
|
"github.com/ipfs/go-datastore"
|
|
|
|
cbg "github.com/whyrusleeping/cbor-gen"
|
|
|
|
"golang.org/x/xerrors"
|
|
|
|
)
|
|
|
|
|
2021-03-27 09:05:12 +00:00
|
|
|
func ReadBackup(r io.Reader, cb func(key datastore.Key, value []byte, log bool) error) (bool, error) {
|
2020-10-01 12:36:19 +00:00
|
|
|
scratch := make([]byte, 9)
|
|
|
|
|
2021-03-09 21:33:01 +00:00
|
|
|
// read array[2](
|
2020-10-01 12:36:19 +00:00
|
|
|
if _, err := r.Read(scratch[:1]); err != nil {
|
2021-03-27 09:05:12 +00:00
|
|
|
return false, xerrors.Errorf("reading array header: %w", err)
|
2020-10-01 12:36:19 +00:00
|
|
|
}
|
|
|
|
|
2020-10-05 23:50:43 +00:00
|
|
|
if scratch[0] != 0x82 {
|
2021-03-27 09:05:12 +00:00
|
|
|
return false, xerrors.Errorf("expected array(2) header byte 0x82, got %x", scratch[0])
|
2020-10-05 23:50:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
hasher := sha256.New()
|
|
|
|
hr := io.TeeReader(r, hasher)
|
|
|
|
|
2021-03-09 21:33:01 +00:00
|
|
|
// read array[*](
|
2020-10-05 23:50:43 +00:00
|
|
|
if _, err := hr.Read(scratch[:1]); err != nil {
|
2021-03-27 09:05:12 +00:00
|
|
|
return false, xerrors.Errorf("reading array header: %w", err)
|
2020-10-05 23:50:43 +00:00
|
|
|
}
|
|
|
|
|
2020-10-01 12:36:19 +00:00
|
|
|
if scratch[0] != 0x9f {
|
2021-03-27 09:05:12 +00:00
|
|
|
return false, xerrors.Errorf("expected indefinite length array header byte 0x9f, got %x", scratch[0])
|
2020-10-01 12:36:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for {
|
2020-10-05 23:50:43 +00:00
|
|
|
if _, err := hr.Read(scratch[:1]); err != nil {
|
2021-03-27 09:05:12 +00:00
|
|
|
return false, xerrors.Errorf("reading tuple header: %w", err)
|
2020-10-01 12:36:19 +00:00
|
|
|
}
|
|
|
|
|
2021-03-09 21:33:01 +00:00
|
|
|
// close array[*]
|
2020-10-01 12:36:19 +00:00
|
|
|
if scratch[0] == 0xff {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2021-03-09 21:33:01 +00:00
|
|
|
// read array[2](key:[]byte, value:[]byte)
|
2020-10-01 12:36:19 +00:00
|
|
|
if scratch[0] != 0x82 {
|
2021-03-27 09:05:12 +00:00
|
|
|
return false, xerrors.Errorf("expected array(2) header 0x82, got %x", scratch[0])
|
2020-10-01 12:36:19 +00:00
|
|
|
}
|
|
|
|
|
2020-10-05 23:50:43 +00:00
|
|
|
keyb, err := cbg.ReadByteArray(hr, 1<<40)
|
2020-10-01 12:36:19 +00:00
|
|
|
if err != nil {
|
2021-03-27 09:05:12 +00:00
|
|
|
return false, xerrors.Errorf("reading key: %w", err)
|
2020-10-01 12:36:19 +00:00
|
|
|
}
|
|
|
|
key := datastore.NewKey(string(keyb))
|
|
|
|
|
2020-10-05 23:50:43 +00:00
|
|
|
value, err := cbg.ReadByteArray(hr, 1<<40)
|
2020-10-01 12:36:19 +00:00
|
|
|
if err != nil {
|
2021-03-27 09:05:12 +00:00
|
|
|
return false, xerrors.Errorf("reading value: %w", err)
|
2020-10-01 12:36:19 +00:00
|
|
|
}
|
|
|
|
|
2021-03-24 20:16:42 +00:00
|
|
|
if err := cb(key, value, false); err != nil {
|
2021-03-27 09:05:12 +00:00
|
|
|
return false, err
|
2020-10-01 12:36:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-05 23:50:43 +00:00
|
|
|
sum := hasher.Sum(nil)
|
|
|
|
|
2021-03-09 21:33:01 +00:00
|
|
|
// read the [32]byte checksum
|
2020-10-05 23:50:43 +00:00
|
|
|
expSum, err := cbg.ReadByteArray(r, 32)
|
|
|
|
if err != nil {
|
2021-03-27 09:05:12 +00:00
|
|
|
return false, xerrors.Errorf("reading expected checksum: %w", err)
|
2020-10-05 23:50:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if !bytes.Equal(sum, expSum) {
|
2021-03-27 09:05:12 +00:00
|
|
|
return false, xerrors.Errorf("checksum didn't match; expected %x, got %x", expSum, sum)
|
2020-10-05 23:50:43 +00:00
|
|
|
}
|
|
|
|
|
2021-03-09 21:33:01 +00:00
|
|
|
// read the log, set of Entry-ies
|
|
|
|
|
|
|
|
var ent Entry
|
|
|
|
bp := cbg.GetPeeker(r)
|
|
|
|
for {
|
|
|
|
_, err := bp.ReadByte()
|
|
|
|
switch err {
|
|
|
|
case io.EOF, io.ErrUnexpectedEOF:
|
2021-03-27 09:05:12 +00:00
|
|
|
return true, nil
|
2021-03-09 21:33:01 +00:00
|
|
|
case nil:
|
|
|
|
default:
|
2021-03-27 09:05:12 +00:00
|
|
|
return false, xerrors.Errorf("peek log: %w", err)
|
2021-03-09 21:33:01 +00:00
|
|
|
}
|
|
|
|
if err := bp.UnreadByte(); err != nil {
|
2021-03-27 09:05:12 +00:00
|
|
|
return false, xerrors.Errorf("unread log byte: %w", err)
|
2021-03-09 21:33:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := ent.UnmarshalCBOR(bp); err != nil {
|
|
|
|
switch err {
|
|
|
|
case io.EOF, io.ErrUnexpectedEOF:
|
|
|
|
if os.Getenv("LOTUS_ALLOW_TRUNCATED_LOG") == "1" {
|
2021-03-27 09:05:12 +00:00
|
|
|
log.Errorw("log entry potentially truncated")
|
|
|
|
return false, nil
|
2021-03-09 21:33:01 +00:00
|
|
|
}
|
2021-04-02 10:37:20 +00:00
|
|
|
return false, xerrors.Errorf("log entry potentially truncated, set LOTUS_ALLOW_TRUNCATED_LOG=1 to proceed: %w", err)
|
2021-03-09 21:33:01 +00:00
|
|
|
default:
|
2021-03-27 09:05:12 +00:00
|
|
|
return false, xerrors.Errorf("unmarshaling log entry: %w", err)
|
2021-03-09 21:33:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
key := datastore.NewKey(string(ent.Key))
|
|
|
|
|
2021-03-24 20:16:42 +00:00
|
|
|
if err := cb(key, ent.Value, true); err != nil {
|
2021-03-27 09:05:12 +00:00
|
|
|
return false, err
|
2021-03-09 21:33:01 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-01 12:36:19 +00:00
|
|
|
}
|
2020-10-01 14:22:54 +00:00
|
|
|
|
|
|
|
func RestoreInto(r io.Reader, dest datastore.Batching) error {
|
|
|
|
batch, err := dest.Batch()
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("creating batch: %w", err)
|
|
|
|
}
|
|
|
|
|
2021-03-27 09:05:12 +00:00
|
|
|
_, err = ReadBackup(r, func(key datastore.Key, value []byte, _ bool) error {
|
2020-10-01 14:22:54 +00:00
|
|
|
if err := batch.Put(key, value); err != nil {
|
|
|
|
return xerrors.Errorf("put key: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return xerrors.Errorf("reading backup: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := batch.Commit(); err != nil {
|
|
|
|
return xerrors.Errorf("committing batch: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|