[solved] How to verify that <cid> is signed by <peerid>?

Hi,

The IPFS 0.7.0 release notes state:

Previously go-ipfs generated 2048 bit RSA keys for new nodes, but it will now use ed25519 keys by default. This will not affect any existing keys, but newly created keys will be ed25519 by default. The main benefit of using ed25519 keys over RSA is that ed25519 keys have an inline public key. This means that someone only needs your PeerId to verify things youā€™ve signed, such as your Peer Records or in the future Signed Provider Records, which means we donā€™t have to worry about storing bulky RSA public keys.

Note the part i made bold.

How do i do that?

I canā€™t seem to find any command in the IPFS cli to do exactly what is described there. Iā€™m sure thereā€™s something :slight_smile: (right?)

Cheers,
Mark

Can you be more specific as to what you are trying to do?

In Go and JS there are functions such as https://github.com/libp2p/go-libp2p-core/blob/a39b84ea2e340466d57fdb342c7d62f12957d972/peer/peer.go#L92 that will check to see if a peerID happens to contain the pubic key in it, but as mentioned in the lines you quoted thatā€™s not true for all key types because some of them are too big.

Will this help me identify network traffic through my gateway?

Definitely!
Iā€™m working on a little tool for server-to-server communication.
Now there are a load of different ways to verify that ā€œServer Xā€ added a file. The file contains some instructions for another server to handle. This is broadcasted via a ā€œpubsub likeā€ mechanism (iā€™m not using IPFS for this part).
I want to verify that the messages that ā€œServer Xā€ sends are actually from that server (itā€™s peerid is known) so that any of the other servers can pick the message up, verify it to be a valid message and handle it.

If iā€™m following the logic to verify an ed25519 key iā€™d need to do:

  • the signature (is the result of ipfs add <data> the signature, so the hash?)
  • the public key (the peer id)
  • verify the signature with the public key

Is that how itā€™s supposed to work? I have to admit that i havenā€™t actually tried this yetā€¦

I donā€™t think it helps anything for that purpose. You still donā€™t know the Peer ID. If you did (which you donā€™t) then you could identify content popularity per peer id.

I could be wrong, Adin probably can give more clarity :slight_smile:

@johndeoi @markg85 is correct. This change does not impact that behavior at all. If youā€™re running a libp2p node (like go-ipfs) then you can verify who is sending you all traffic since a verified communication channel is established between peers.

Thereā€™s certainly no functionality to determine who asked for mygateway.tld/ipfs/Qmxyz aside from putting a proxy in front and checking things like source IP addresses. Requesting data over the gateway just uses HTTP so there isnā€™t a good way to force the user to identify itself (although you could of course build your own via a proxy).

Hashes are not signatures. Iā€™d recommend taking a look at the IPFS docs (or https://proto.school) for more background. In short hashes verify that the content is what you expect (H = Hash(Data)), while signatures verify that a particular key holder has signed that data (S = Sign(Data, Key)). The places signatures are used in applications such as go/js-ipfs are for some lower level libp2p functionality such as secure connection protocols like TLS and Noise, as well as for signing IPNS records.

Iā€™m not sure how the peerID is known, but since it doesnā€™t seem like this application is using libp2p or any low level functionality in IPFS you may be able to get away with using a signing key that is separate from your peerID. Nonetheless, if you are trying to sign arbitrary data with your peerā€™s ID key you want to be looking at using IPFS as a library since go/js-ipfs do not expose a PGP like interface (e.g. ipfs key sign --key=mykey mymessage) mostly because there are already tools out there (e.g. PGP) that will handle key signatures/verification for you.

Would a VM proxy help me isolate specifc data in regards to file systems/networking? and change/ view my own perhaps in a more functional way? as opposed to only accessing/having direct accress via a single device? What i am curious about is lan internetworking for the purpose of better understanding protocols and syntax of the stack structures being used.

Ah, right.
I shouldā€™ve know that the hash isnā€™t a signature, my bad.

I see what you mean. IPFS provides the public key (peer id) and the data but not the actual signature!
That does make me wonder what the release notes meant with ā€œThis means that someone only needs your PeerId to verify things youā€™ve signedā€? As that doesnā€™t seem to be possible based on your comment. At least not from a IPFS cli point of view. I have a feeling i miss something here as i canā€™t imagine the release notes to mention something that isnā€™t possible.

Going the PGP route, as you suggest, is an alternative option indeed.
The annoying part is that it adds a layer.
To give you an example, i really would have liked to do:

// Store some data in IPFS, get the CID of it
echo "some fancy data" | ipfs add
<cid>

// Get the IPFS Peer ID as ed25519
ipfs id

// Send to pubsub
pubsub-send --pubkey=<IPFS peer ID> --data=<cid>

// On one of the servers i would like to do something like
// (note that it would fetch the data behind <cid>):
ipfs key verify --pubkey=<IPFS peer ID> --data=<cid>

Right now the only missing part is getting the signature of that data.
If IPFS would only have a:

ipfs key sign --pubkey=<IPFS peer ID> --data=<cid>

That would be so super awesome to have!
It would prevent the need to roll my own key management.
It would greatly simplify the usage of keys.
It would only require me to store a list of accepted public keys.
It would allow me to verify the data is valid (due to the immutable nature of IPFS) without downloading the data. And on;y download it when all other checks have passed
Easy peasy and super awesome! :slight_smile:
ā€¦ but weā€™re not there yet, it seems :cry:

For a time I may suggest you create the dedicated DAG branch containing the hash text calculated from the given CID and the peer ID, linked as another CID insige DAG object using ipfs object patch add-link. Investigating the possibilities I try to use pymultihash to produce something like digital signature.

Could you elaborate on that please?
It sounds like youā€™re on to something cool, but i miss details to make much sense of it.

I think I made some progress

Of course. I am on the way, so probably I will share something in a couple of days

I am not sure I understood all youā€™ve said. But if it could help.

Here is a tool to sign and verifiy ed25519 signature

It is used on ā€œcommon directoryā€ (~/.zen/ipfs_swarm) where every node publish data in a folder (.QmIPFSNODEID) regularly kept in sync between ipfs swarm nodes with this script

NB: We use Scuttlebutt ā€œfriendā€ relation to add a node to swarm

1 Like

Sorry for the belated reply, @zicmama.
Yes, that can very definitely help! Thank you for sharing those tools.

I am however hesitant to use it because it means iā€™d have to do key management myself.

Iā€™m still eagerly awaiting what exactly was meant with that line in the release notes:

ā€¦ This means that someone only needs your PeerId to verify things youā€™ve signed ā€¦

As that kinda triggered my hope for key management in ipfs native. We, as users, can somehow verify that Node X actually created Data Y. Or to be super specific. That IPNS record X is created by node Y.

But HOW?

I just donā€™t see it without additional steps (like making a signature). And if thatā€™s actually the case here then that specific line in the release notes is misleading at best. Also, that very same line definitely implies (with ā€œthings youā€™ve signedā€) that IPFS now has the user facing option to do just that. And i read that from it because doing that yourself is not trivial. Why, you might wonder?

  1. data signing is, even for technical inclined people like ipfs users, a whole different beast to tame. You can safely expect for the vast majority of IPFS users that this is a step too complicated.
  2. The release notes mention that you can verify data with the peer id. But it lacks any public facing ways of signing data. Therefore you must do it yourself. And to do it yourself you must:
    2.1 Get your private key from IPFS
    2.2 Construct a keypair from it
    2.3 Create a signature from your data
    2.4 Store it somewhere
    2.5 Send it to the one that needs to verify your data based on your peer id
    2.6 ā€¦ the receiving party needs to go though much of the same steps

I honestly just canā€™t imagine that IPFS would assume that users are able to all of the above. But i also canā€™t imagine it to be completely false. Surely the writer of those release notes had ā€œsomethingā€ in mind and knew ā€œsomethingā€ but didnā€™t share the intention here yet.

IPFS (or rather libp2p) will do it out of the box. Itā€™s not implemented yet, but itā€™s on the short term road map. There will be customizable behaviour as to whether to sign records and what to do with unsigned records. I expect the default to be signing and accept anything, then signing and reject unsigned in a few releases, for a smooth network upgrade. There is a Github issue somewhere, but I think itā€™s at the spec stage.
It was a lost of man-hours to implement it before switching to ed25519, so they waited until now.
It will be especially useful for gossipsub hardening, as upfs will not only check the record when fetching it, but also when propagating the record, since it doesnā€™t need to have contacted the publishing node to check its jey and the record integrity.

Iā€™ll try to find the GH issue.

@markg85
I found this issue, but itā€™s gossip specific.

This + the github issue you mentioned. Thatā€™s awesome!
Having that in pubsub is a win imho! :slight_smile:

Howeverā€¦ Itā€™s still not something a user of ipfs (or even a developer using ipfs) can possible use as itā€™s a quite deep internal implementation detail in libp2p that handles it.

I do hope itā€™s the intention at some point to somehow for pubsub have some way of whitelisting (or blacklisting) peer idā€™s which internally then does signature verification. That allows to create pubsub channels where only selected nodes can understand the data. Of if you go one step further, only selected nodes can join that room. Good stuff :slight_smile:

More generic ipfs commands for this would be really useful. Even though there are dedicated security crypto libraries out there, which is always the argument for not doing this. It just saves so much hassle to simply be able to create a signature from the ipfs cli and verify it with a cli command too.

This will likely be something you will have to handle at the app level, by encrypting the messages and share the key with peers deemed relevant by your app.

Iā€™m stuck, sorta.

When you export an ipfs key:

ipfs key gen test
ipfs key export test

you get a libp2p format binary blob.
As per the documentation:

ipfs key export test

USAGE
  ipfs key export <name> - Export a keypair

SYNOPSIS
  ipfs key export [--output=<output> | -o] [--] <name>

ARGUMENTS

  <name> - name of key to export

OPTIONS

  -o, --output  string - The path where the output should be stored.

DESCRIPTION

  Exports a named libp2p key to disk.
  
  By default, the output will be stored at './<key-name>.key', but an alternate
  path can be specified with '--output=<path>' or '-o=<path>'.

I think the documentation for that is here: https://github.com/libp2p/specs/blob/master/peer-ids/peer-ids.md

I was trying to make a command line tool that would only require openssl 3.0.0 in which you would provide your ipfs private key to sign an ipfs hash (no need to sing the content as the hash represents the content) to get that signature. But from the looks of it i need to go the much more complicated route of making a application that accepts protobuf, parse that key output from ipfs key export test and the finally be able to singā€¦

And iā€™m sure i still missed something that i have yet to discover.

Really guys, make things easier then this.