mirror of
https://github.com/ipfs/kubo.git
synced 2025-06-20 10:42:11 +08:00
194 lines
4.7 KiB
Go
194 lines
4.7 KiB
Go
package namesys
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
|
|
proto "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/gogo/protobuf/proto"
|
|
lru "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/hashicorp/golang-lru"
|
|
mh "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/jbenet/go-multihash"
|
|
"github.com/ipfs/go-ipfs/Godeps/_workspace/src/golang.org/x/net/context"
|
|
|
|
key "github.com/ipfs/go-ipfs/blocks/key"
|
|
pb "github.com/ipfs/go-ipfs/namesys/pb"
|
|
path "github.com/ipfs/go-ipfs/path"
|
|
routing "github.com/ipfs/go-ipfs/routing"
|
|
u "github.com/ipfs/go-ipfs/util"
|
|
logging "github.com/ipfs/go-ipfs/vendor/QmQg1J6vikuXF9oDvm4wpdeAUvvkVEKW1EYDw9HhTMnP2b/go-log"
|
|
)
|
|
|
|
var log = logging.Logger("namesys")
|
|
|
|
// routingResolver implements NSResolver for the main IPFS SFS-like naming
|
|
type routingResolver struct {
|
|
routing routing.IpfsRouting
|
|
|
|
cache *lru.Cache
|
|
}
|
|
|
|
func (r *routingResolver) cacheGet(name string) (path.Path, bool) {
|
|
if r.cache == nil {
|
|
return "", false
|
|
}
|
|
|
|
ientry, ok := r.cache.Get(name)
|
|
if !ok {
|
|
return "", false
|
|
}
|
|
|
|
entry, ok := ientry.(cacheEntry)
|
|
if !ok {
|
|
// should never happen, purely for sanity
|
|
log.Panicf("unexpected type %T in cache for %q.", ientry, name)
|
|
}
|
|
|
|
if time.Now().Before(entry.eol) {
|
|
return entry.val, true
|
|
}
|
|
|
|
r.cache.Remove(name)
|
|
|
|
return "", false
|
|
}
|
|
|
|
func (r *routingResolver) cacheSet(name string, val path.Path, rec *pb.IpnsEntry) {
|
|
if r.cache == nil {
|
|
return
|
|
}
|
|
|
|
// if completely unspecified, just use one minute
|
|
ttl := DefaultResolverCacheTTL
|
|
if rec.Ttl != nil {
|
|
recttl := time.Duration(rec.GetTtl())
|
|
if recttl >= 0 {
|
|
ttl = recttl
|
|
}
|
|
}
|
|
|
|
cacheTil := time.Now().Add(ttl)
|
|
eol, ok := checkEOL(rec)
|
|
if ok && eol.Before(cacheTil) {
|
|
cacheTil = eol
|
|
}
|
|
|
|
r.cache.Add(name, cacheEntry{
|
|
val: val,
|
|
eol: cacheTil,
|
|
})
|
|
}
|
|
|
|
type cacheEntry struct {
|
|
val path.Path
|
|
eol time.Time
|
|
}
|
|
|
|
// NewRoutingResolver constructs a name resolver using the IPFS Routing system
|
|
// to implement SFS-like naming on top.
|
|
// cachesize is the limit of the number of entries in the lru cache. Setting it
|
|
// to '0' will disable caching.
|
|
func NewRoutingResolver(route routing.IpfsRouting, cachesize int) *routingResolver {
|
|
if route == nil {
|
|
panic("attempt to create resolver with nil routing system")
|
|
}
|
|
|
|
var cache *lru.Cache
|
|
if cachesize > 0 {
|
|
cache, _ = lru.New(cachesize)
|
|
}
|
|
|
|
return &routingResolver{
|
|
routing: route,
|
|
cache: cache,
|
|
}
|
|
}
|
|
|
|
// Resolve implements Resolver.
|
|
func (r *routingResolver) Resolve(ctx context.Context, name string) (path.Path, error) {
|
|
return r.ResolveN(ctx, name, DefaultDepthLimit)
|
|
}
|
|
|
|
// ResolveN implements Resolver.
|
|
func (r *routingResolver) ResolveN(ctx context.Context, name string, depth int) (path.Path, error) {
|
|
return resolve(ctx, r, name, depth, "/ipns/")
|
|
}
|
|
|
|
// resolveOnce implements resolver. Uses the IPFS routing system to
|
|
// resolve SFS-like names.
|
|
func (r *routingResolver) resolveOnce(ctx context.Context, name string) (path.Path, error) {
|
|
log.Debugf("RoutingResolve: '%s'", name)
|
|
cached, ok := r.cacheGet(name)
|
|
if ok {
|
|
return cached, nil
|
|
}
|
|
|
|
hash, err := mh.FromB58String(name)
|
|
if err != nil {
|
|
log.Warning("RoutingResolve: bad input hash: [%s]\n", name)
|
|
return "", err
|
|
}
|
|
// name should be a multihash. if it isn't, error out here.
|
|
|
|
// use the routing system to get the name.
|
|
// /ipns/<name>
|
|
h := []byte("/ipns/" + string(hash))
|
|
|
|
ipnsKey := key.Key(h)
|
|
val, err := r.routing.GetValue(ctx, ipnsKey)
|
|
if err != nil {
|
|
log.Warning("RoutingResolve get failed.")
|
|
return "", err
|
|
}
|
|
|
|
entry := new(pb.IpnsEntry)
|
|
err = proto.Unmarshal(val, entry)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
// name should be a public key retrievable from ipfs
|
|
pubkey, err := routing.GetPublicKey(r.routing, ctx, hash)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
hsh, _ := pubkey.Hash()
|
|
log.Debugf("pk hash = %s", key.Key(hsh))
|
|
|
|
// check sig with pk
|
|
if ok, err := pubkey.Verify(ipnsEntryDataForSig(entry), entry.GetSignature()); err != nil || !ok {
|
|
return "", fmt.Errorf("Invalid value. Not signed by PrivateKey corresponding to %v", pubkey)
|
|
}
|
|
|
|
// ok sig checks out. this is a valid name.
|
|
|
|
// check for old style record:
|
|
valh, err := mh.Cast(entry.GetValue())
|
|
if err != nil {
|
|
// Not a multihash, probably a new record
|
|
p, err := path.ParsePath(string(entry.GetValue()))
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
r.cacheSet(name, p, entry)
|
|
return p, nil
|
|
} else {
|
|
// Its an old style multihash record
|
|
log.Warning("Detected old style multihash record")
|
|
p := path.FromKey(key.Key(valh))
|
|
r.cacheSet(name, p, entry)
|
|
return p, nil
|
|
}
|
|
}
|
|
|
|
func checkEOL(e *pb.IpnsEntry) (time.Time, bool) {
|
|
if e.GetValidityType() == pb.IpnsEntry_EOL {
|
|
eol, err := u.ParseRFC3339(string(e.GetValidity()))
|
|
if err != nil {
|
|
return time.Time{}, false
|
|
}
|
|
return eol, true
|
|
}
|
|
return time.Time{}, false
|
|
}
|