Giter VIP home page Giter VIP logo

trillian's People

Contributors

alcutter avatar benlaurie avatar codingllama avatar daviddrysdale avatar dazwilkin avatar dependabot-preview[bot] avatar dependabot[bot] avatar filosottile avatar gdbelvin avatar getagit avatar jaormx avatar jiggoha avatar jsha avatar liamsi avatar maljub01 avatar martin2112 avatar mhutchinson avatar paulmattei avatar pav-kv avatar phad avatar phbnf avatar pphaneuf avatar px3303 avatar rjpercival avatar roger2hk avatar therealdrake avatar tweksteen avatar vishalkuo avatar witoff avatar wlynch avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

trillian's Issues

merkle.CompactMerkleTree.Hashes() doesn't return [] for "perfect tree sizes"

Updates made to CompactMerkleTree in d1ee609 (PR #180) to return a copy of the internal Node state, have not properly covered the edge case where the tree is perfectly balanced (i.e. has 2^n leaf nodes).

In that situation the set of nodes should be empty: the size & root hash alone describe the tree, as evidenced by the fact that when merkle.NewCompactMerkleTreeWithState() is called it will make 0 calls to the backing store via its getNodeFunc to retrieve hashes.

Implement backend inclusion proofs

Fetching correct node set and stuff. Note: for this milestone initially only at tree sizes where we have an STH because the intermediate recalculations are complex. Needs to support by hash and by index, which are fairly similar operations.

Remove TreeID from NewStorage* functions

Return a generic storage object rather than new objects for each tree.

  • Eliminates the need for caching within the storage factory.
  • Eliminates the need to create a fake tree in order to test DB connectivity.
  • Simplifies testing.

Partial work started here

KeyManager: Perform all key verification during New* functions

The KeyManager interface currently supports returning error for several of the Get* functions.
This dramatically increases code complexity for calling functions. All these error params can be eliminated if the New* functions require a valid key to be loaded before returning a KeyManager object. Is there a strong reason to support starting Trillian without key material?

type KeyManager interface {
	Signer() (crypto.Signer, error)
	SignatureAlgorithm() spb.DigitallySigned_SignatureAlgorithm
	HashAlgorithm() crypto.Hash
	GetPublicKey() (crypto.PublicKey, error)
	GetRawPublicKey() ([]byte, error)
}

Proposed interface:

New(...) (KeyManager, error)
type KeyManager interface {
	Signer() crypto.Signer
	SignatureAlgorithm() spb.DigitallySigned_SignatureAlgorithm
	HashAlgorithm() crypto.Hash
	GetPublicKey() crypto.PublicKey
	GetRawPublicKey() []byte
}

Hashing Interface

Hasher needs to be an interface to support alternative hashing implementations.
Here's a proposal that supports both logs and maps.
Individual implementations are not required to incorporate all input fields into their hash.

// TreeHasher provides hash functions for tree implementations.
type TreeHasher interface {
	HashLeaf(treeID, index []byte, depth int, dataHash []byte) Hash
	HashEmpty(treeID, index []byte, depth int) Hash
	HashInterior(left, right Hash) Hash
}

Steps:

  • Move HashKey to Personality
  • Create Hasher interface
  • Create test implementations
  • Migrate to new function interfaces.

"Unexpectedly reading from within GetNodeHash()" warnings

If I add --alsologtostderr to the invocation of ./trillian_map_server in integration/map_integration_test.sh, I see lots of warnings:

W0131 09:37:43.527794   11656 subtree_cache.go:185] Unexpectedly reading from within GetNodeHash()

The comment there says "This should never happen - we should've already read all the data we need above, in Preload()"...

Need API for creating new logIDs

We need some kind of administrative API that supports creating and deleting LogIDs.
There's ongoing work on an admin API. Not sure how to connect this bug to that.

QueueLeaves should return individual status for each leaf

Currently, the storage.QueueLeaves API effectively enforces an all-or-nothing failure mode for the addition of each leaf in the array, which is not ideal. E.g. this would cause a batch of additions to fail if the log didn't accept dupes but one was presented.

QueueLeaves should not be part of the LogTX

When adding a batch of leaves some leaves could fail, e.g. due to dupe keys, and the log shouldn't ditch the rest of the batch due to an unrelated dupe entry. Rather, it should submit as many as it can, and report those which failed to the caller.

Support proofs at arbitrary tree sizes

Currently we can only obtain proofs where the tree size is at an internal STH but it should be possible to return proofs at arbitrary sizes as in existing implementations.

This requires dynamic rehashing of some proof nodes and is complex to implement. Research indicates it's feasible to unroll the rehashing chain so storage can fetch all the involved nodes and the rehashing can be done by post-processing.

Changes involved (plus tests of course):

  • NodeReader interface must be able to optionally request tree revisions for sizes >= specified size
  • Merkle path code must handle rehashing and annotate node fetches that are part of a rehash
  • Proof fetching + rehashing should be broken out of the server to allow separate testing and reuse
  • After the storage fetch the rehashing operations must be carried out using the annotations
  • API should include a flag to allow rehashing so we can test it without impacting current users

Integration tests for backend

Tests that prove end to end that it's doing the correct crypto and other stuff related to adding and querying entries, signing / sequencing, proof serving.

API: Set single place for Index to be set and returned.

The Map API is intended to expose a key / value interface, yet the "value" aka. MapLeaf currently contains the key aka Index. Index is also contained in IndexValue, IndexInclusionProof and several other messages, producing confusion about where and when to set Index.

Proposal:
Use proto3 map in Set / Get if we can find a scalar value for index. Perhaps a hex string?
Or standadize on the IndexValue message.

Blocking google/keytransparency#486

Use Inclusion Proof Verifier in tests

Current tests verify inclusion proofs by rebuilding a parallel tree and checking that the inclusion proofs are the same. We should migrate these tests to use a Log Verifier that computes the root hash from the neighbor nodes.

Create log verifier client

Create a pure go implementation that can verify all the responses that are returned from the bits of Trillian that implement an append only log.

Components:

  • SetLeaves
    • SetLeaf
    • GetLeaf
      • Hashing Interface #331
      • GetInclusionProofByHash #320
        • InclusionProofVerifier #334
      • GetSignedLogRoot
        • VerifySignature #351
        • ConsistencyProofVerifier #334

Supports google/keytransparency#384

Split application STHs from generic ones

  • Rework schema + backend to add support for application tree heads.
  • Update CT example to create / serve application STHs.
  • Clean up anything in schema that this obsoletes (public / private STH?)

Map Index / HashKey should be computed by the personality

The current Map Hasher interface contains a HashKey function to turn a string into a sha256 index in the map. This index, however, should be computed by the personality, not the map. Key Transparency, for instance, computes the index as the output of a privately keyed signature function.

If this sounds good, I'll convert the Map interfaces to accept a index []byte rather than key []byte or HashedKey []byte, and remove the HashKey function from the MapHasher.

Signature Verifier

The signatures library doesn't have a companion verification function.
Investigate importing the one from Key Transparency

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.