mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-07 09:17:49 +08:00
This change adds the /ipfs/bitswap/1.1.0 protocol. The new protocol adds a 'payload' field to the protobuf message and deprecates the existing 'blocks' field. The 'payload' field is an array of pairs of cid prefixes and block data. The cid prefixes are used to ensure the correct codecs and hash functions are used to handle the block on the receiving end. License: MIT Signed-off-by: Jeromy <why@ipfs.io>
298 lines
7.2 KiB
Go
298 lines
7.2 KiB
Go
package pin
|
|
|
|
import (
|
|
"bytes"
|
|
"context"
|
|
"crypto/rand"
|
|
"encoding/binary"
|
|
"errors"
|
|
"fmt"
|
|
"hash/fnv"
|
|
"sort"
|
|
|
|
"github.com/ipfs/go-ipfs/merkledag"
|
|
"github.com/ipfs/go-ipfs/pin/internal/pb"
|
|
cid "gx/ipfs/QmXUuRadqDq5BuFWzVU6VuKaSjTcNm1gNCtLvvP1TJCW4z/go-cid"
|
|
"gx/ipfs/QmYEoKZXHoAToWfhGF3vryhMn3WWhE1o2MasQ8uzY5iDi9/go-key"
|
|
"gx/ipfs/QmZ4Qi3GaRbjcx28Sme5eMH7RQjGkt8wHxt2a65oLaeFEV/gogo-protobuf/proto"
|
|
)
|
|
|
|
const (
|
|
// defaultFanout specifies the default number of fan-out links per layer
|
|
defaultFanout = 256
|
|
|
|
// maxItems is the maximum number of items that will fit in a single bucket
|
|
maxItems = 8192
|
|
)
|
|
|
|
func randomSeed() (uint32, error) {
|
|
var buf [4]byte
|
|
if _, err := rand.Read(buf[:]); err != nil {
|
|
return 0, err
|
|
}
|
|
return binary.LittleEndian.Uint32(buf[:]), nil
|
|
}
|
|
|
|
func hash(seed uint32, c *cid.Cid) uint32 {
|
|
var buf [4]byte
|
|
binary.LittleEndian.PutUint32(buf[:], seed)
|
|
h := fnv.New32a()
|
|
_, _ = h.Write(buf[:])
|
|
_, _ = h.Write(c.Bytes())
|
|
return h.Sum32()
|
|
}
|
|
|
|
type itemIterator func() (c *cid.Cid, ok bool)
|
|
|
|
type keyObserver func(*cid.Cid)
|
|
|
|
type sortByHash struct {
|
|
links []*merkledag.Link
|
|
}
|
|
|
|
func (s sortByHash) Len() int {
|
|
return len(s.links)
|
|
}
|
|
|
|
func (s sortByHash) Less(a, b int) bool {
|
|
return bytes.Compare(s.links[a].Hash, s.links[b].Hash) == -1
|
|
}
|
|
|
|
func (s sortByHash) Swap(a, b int) {
|
|
s.links[a], s.links[b] = s.links[b], s.links[a]
|
|
}
|
|
|
|
func storeItems(ctx context.Context, dag merkledag.DAGService, estimatedLen uint64, iter itemIterator, internalKeys keyObserver) (*merkledag.Node, error) {
|
|
seed, err := randomSeed()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
n := &merkledag.Node{Links: make([]*merkledag.Link, 0, defaultFanout+maxItems)}
|
|
for i := 0; i < defaultFanout; i++ {
|
|
n.Links = append(n.Links, &merkledag.Link{Hash: emptyKey.Hash()})
|
|
}
|
|
|
|
// add emptyKey to our set of internal pinset objects
|
|
internalKeys(emptyKey)
|
|
|
|
hdr := &pb.Set{
|
|
Version: proto.Uint32(1),
|
|
Fanout: proto.Uint32(defaultFanout),
|
|
Seed: proto.Uint32(seed),
|
|
}
|
|
if err := writeHdr(n, hdr); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if estimatedLen < maxItems {
|
|
// it'll probably fit
|
|
for i := 0; i < maxItems; i++ {
|
|
k, ok := iter()
|
|
if !ok {
|
|
// all done
|
|
break
|
|
}
|
|
n.Links = append(n.Links, &merkledag.Link{Hash: k.Hash()})
|
|
}
|
|
// sort by hash, also swap item Data
|
|
s := sortByHash{
|
|
links: n.Links[defaultFanout:],
|
|
}
|
|
sort.Stable(s)
|
|
}
|
|
|
|
hashed := make([][]*cid.Cid, defaultFanout)
|
|
for {
|
|
// This loop essentially enumerates every single item in the set
|
|
// and maps them all into a set of buckets. Each bucket will be recursively
|
|
// turned into its own sub-set, and so on down the chain. Each sub-set
|
|
// gets added to the dagservice, and put into its place in a set nodes
|
|
// links array.
|
|
//
|
|
// Previously, the bucket was selected by taking an int32 from the hash of
|
|
// the input key + seed. This was erroneous as we would later be assigning
|
|
// the created sub-sets into an array of length 256 by the modulus of the
|
|
// int32 hash value with 256. This resulted in overwriting existing sub-sets
|
|
// and losing pins. The fix (a few lines down from this comment), is to
|
|
// map the hash value down to the 8 bit keyspace here while creating the
|
|
// buckets. This way, we avoid any overlapping later on.
|
|
k, ok := iter()
|
|
if !ok {
|
|
break
|
|
}
|
|
h := hash(seed, k) % defaultFanout
|
|
hashed[h] = append(hashed[h], k)
|
|
}
|
|
|
|
for h, items := range hashed {
|
|
if len(items) == 0 {
|
|
// recursion base case
|
|
continue
|
|
}
|
|
|
|
childIter := getCidListIterator(items)
|
|
|
|
// recursively create a pinset from the items for this bucket index
|
|
child, err := storeItems(ctx, dag, uint64(len(items)), childIter, internalKeys)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
size, err := child.Size()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
childKey, err := dag.Add(child)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
internalKeys(childKey)
|
|
|
|
// overwrite the 'empty key' in the existing links array
|
|
n.Links[h] = &merkledag.Link{
|
|
Hash: childKey.Hash(),
|
|
Size: size,
|
|
}
|
|
}
|
|
return n, nil
|
|
}
|
|
|
|
func readHdr(n *merkledag.Node) (*pb.Set, error) {
|
|
hdrLenRaw, consumed := binary.Uvarint(n.Data())
|
|
if consumed <= 0 {
|
|
return nil, errors.New("invalid Set header length")
|
|
}
|
|
|
|
pbdata := n.Data()[consumed:]
|
|
if hdrLenRaw > uint64(len(pbdata)) {
|
|
return nil, errors.New("impossibly large Set header length")
|
|
}
|
|
// as hdrLenRaw was <= an int, we now know it fits in an int
|
|
hdrLen := int(hdrLenRaw)
|
|
var hdr pb.Set
|
|
if err := proto.Unmarshal(pbdata[:hdrLen], &hdr); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
if v := hdr.GetVersion(); v != 1 {
|
|
return nil, fmt.Errorf("unsupported Set version: %d", v)
|
|
}
|
|
if uint64(hdr.GetFanout()) > uint64(len(n.Links)) {
|
|
return nil, errors.New("impossibly large Fanout")
|
|
}
|
|
return &hdr, nil
|
|
}
|
|
|
|
func writeHdr(n *merkledag.Node, hdr *pb.Set) error {
|
|
hdrData, err := proto.Marshal(hdr)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// make enough space for the length prefix and the marshalled header data
|
|
data := make([]byte, binary.MaxVarintLen64, binary.MaxVarintLen64+len(hdrData))
|
|
|
|
// write the uvarint length of the header data
|
|
uvarlen := binary.PutUvarint(data, uint64(len(hdrData)))
|
|
|
|
// append the actual protobuf data *after* the length value we wrote
|
|
data = append(data[:uvarlen], hdrData...)
|
|
|
|
n.SetData(data)
|
|
return nil
|
|
}
|
|
|
|
type walkerFunc func(idx int, link *merkledag.Link) error
|
|
|
|
func walkItems(ctx context.Context, dag merkledag.DAGService, n *merkledag.Node, fn walkerFunc, children keyObserver) error {
|
|
hdr, err := readHdr(n)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
// readHdr guarantees fanout is a safe value
|
|
fanout := hdr.GetFanout()
|
|
for i, l := range n.Links[fanout:] {
|
|
if err := fn(i, l); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
for _, l := range n.Links[:fanout] {
|
|
c := cid.NewCidV0(l.Hash)
|
|
children(c)
|
|
if c.Equals(emptyKey) {
|
|
continue
|
|
}
|
|
subtree, err := l.GetNode(ctx, dag)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if err := walkItems(ctx, dag, subtree, fn, children); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func loadSet(ctx context.Context, dag merkledag.DAGService, root *merkledag.Node, name string, internalKeys keyObserver) ([]*cid.Cid, error) {
|
|
l, err := root.GetNodeLink(name)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
lnkc := cid.NewCidV0(l.Hash)
|
|
internalKeys(lnkc)
|
|
|
|
n, err := l.GetNode(ctx, dag)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var res []*cid.Cid
|
|
walk := func(idx int, link *merkledag.Link) error {
|
|
res = append(res, cid.NewCidV0(link.Hash))
|
|
return nil
|
|
}
|
|
if err := walkItems(ctx, dag, n, walk, internalKeys); err != nil {
|
|
return nil, err
|
|
}
|
|
return res, nil
|
|
}
|
|
|
|
func getCidListIterator(cids []*cid.Cid) itemIterator {
|
|
return func() (c *cid.Cid, ok bool) {
|
|
if len(cids) == 0 {
|
|
return nil, false
|
|
}
|
|
|
|
first := cids[0]
|
|
cids = cids[1:]
|
|
return first, true
|
|
}
|
|
}
|
|
|
|
func storeSet(ctx context.Context, dag merkledag.DAGService, cids []*cid.Cid, internalKeys keyObserver) (*merkledag.Node, error) {
|
|
iter := getCidListIterator(cids)
|
|
|
|
n, err := storeItems(ctx, dag, uint64(len(cids)), iter, internalKeys)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
c, err := dag.Add(n)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
internalKeys(c)
|
|
return n, nil
|
|
}
|
|
|
|
func copyRefcounts(orig map[key.Key]uint64) map[key.Key]uint64 {
|
|
r := make(map[key.Key]uint64, len(orig))
|
|
for k, v := range orig {
|
|
r[k] = v
|
|
}
|
|
return r
|
|
}
|