-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Signed Provider records for the DHT #559
Comments
That is the goal, I've duplicated the 0.6 milestone here and added it for tracking.
This is planned for IPFS 0.6, ed25519 will be used by default. |
One more thing I’d like to see make it into the record is the CID prefix. It’s only two varints, but it makes the record a lot more valuable as it allows us to decode the data into an actual data structure. Since it’s in the record it would end up being backwards compatible and could even be optional (although I’d like to see us include it by default). |
👍 especially for people that want to use graphsync instead of bitswap having the codec information is very useful. |
Is another goal of this to allow republishing records for the providing peer? (I would like to be able to do this) |
No, there are no plans for this at the moment |
For some reason I was 99% sure provider records were signed, and I was surprised to realize they are not. Are there any plans for this to be implemented? I guess the risk here is only for the DHT clients, because DHT servers could lie to them. But servers themselves seem to not have the risk, because they only accept records if they come from the original peers. Is this correct? Can signing provider records be implemented in a backward-compatible way? I believe it can, but I might be missing something. Would a PR implementing it be considered? |
Yes, that's correct! Currently, there are no plans to implement this. However, if you’re interested in taking it on, I would be happy to review your PR. Your contribution would be greatly appreciated! |
Not that we have an urgent need for it, but nice to know it's relatively easy to introduce, so maybe at some point we can get our hands on it :) Thanks! |
Note: You'll likely need to introduce a new DHT protocol version for this and will need to support both signed and unsigned records (for now). I.e.:
Eventually, the old DHT protocol would be deprecated and only signed records would be allowed. |
@Stebalien Is it really necessary to introduce a new protocol version? It seems like this could be a backward-compatible change. If you don't understand signatures – you don't read the field, but still apply the old rules of accepting records from the original peer only. If you do understand the signature, but the message doesn't have it – you only accept it if it comes from the original peer, if it does have a signature – you check that it matches the provider's PeerID. |
It will work, but it'll double the bandwidth usage. This is already the case for signed peer records, but we tend to send around quite a few more provider records. But you're right, it's not absolutely critical. |
We need to have signed provider records in the DHT so receivers can verify if the records were indeed advertised by peers marked as the providers on the records. However, this depends on ipfs/kubo#6916.
@jacobheun @Stebalien
The text was updated successfully, but these errors were encountered: