Csaba Kiraly
377bd73356
implement findValue
...
retrieve a value from the DHT
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-08-27 05:28:54 +02:00
Csaba Kiraly
2a0ee369f1
use 127.0.0.1 for these tests
...
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 10:52:04 +02:00
Csaba Kiraly
ff78aaffeb
remove lookupWorkerFast duplicate code
...
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 10:52:04 +02:00
Csaba Kiraly
f17854b787
introduce FindNodeFastResultLimit
...
We do not need that many responses with FindNodeFast, since the
reposes can be ordered by distance
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 10:52:04 +02:00
Csaba Kiraly
bf290387de
reduce default response timeout
...
We really don't need this to be 4 seconds.
Later we should tune it better based on measurements
or estimates,
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 10:52:04 +02:00
Csaba Kiraly
781c2acf2c
override bucketIpLimit for local tests
...
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 10:52:04 +02:00
Csaba Kiraly
7e4c597179
fix returning too many nodes when FindNodeResultLimit!=BUCKET_SIZE
...
Code assumed these two values to be the same, resulting in
reception errors.
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 10:52:04 +02:00
Csaba Kiraly
a95896ddd3
add debug on Handshake timeour
...
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 10:52:03 +02:00
Csaba Kiraly
e9abafdf61
add ValueGetFrom count for naive getValue
...
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 10:52:03 +02:00
Csaba Kiraly
bcecd0c334
add ValueReplication cound for addValue
...
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 10:52:03 +02:00
Csaba Kiraly
6ae5ce9ac0
add logging helper for Protocol
...
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 10:52:03 +02:00
Csaba Kiraly
cdf0027b9f
logging: GetValue error should be debug
...
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 10:52:03 +02:00
Csaba Kiraly
de331a16d3
use ChronoSim version of nim-chronos
...
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 10:52:03 +02:00
Csaba Kiraly
fc7d04e3bb
add DHT storage (addValue/getValue) functionality
...
this is a minimal implementation, with lots of
work still needed.
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 10:52:03 +02:00
Csaba Kiraly
12af1e626f
update .nimble and .lock files to work
...
Make dht compile with new new (0.14+) nimble.
Compilation with Nimble <0.14 can't work, as
the many of the libraries on the dependency
tree are not version tagged. As we can't change
that, two paths remain:
1, use nimbus-build-system (i.e. git submodules)
2, use lock files introduced in nimble 0.14+
First was already working, this fixes second
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 10:51:33 +02:00
Csaba Kiraly
96e5526ffb
fixing bearssl version in lockfile and in nimble file
...
It seems lockfile was generated wrong or not updated,
broken in 76bff752a2
setting it to version used in nimbus build system based build
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 10:51:33 +02:00
Csaba Kiraly
13e48b8836
encoding: introducing type cipher=aes128
...
Introducing the cipher type to ease changing cipher.
No functional change
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 00:36:46 +02:00
Csaba Kiraly
5c62d100e4
dht: waitMessage: expose timeout as parameter, keeping default
...
defults to ResponseTimeout as before
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 00:36:46 +02:00
Csaba Kiraly
9f4cec415c
remove some debug output
2023-07-11 00:36:46 +02:00
Csaba Kiraly
52530b7569
fixup: move sendRequest forward
...
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 00:36:46 +02:00
Csaba Kiraly
94a7d01d7b
introduce waitResponse wrapper
...
initialize wait for response before sending request.
This is needed in cases where the response arrives before
moving to the next instruction, such as a directly connected
test.
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 00:36:46 +02:00
Csaba Kiraly
9cd6af5afd
change revalidateLoop to use [RevalidateMax/2, RevalidateMax]
...
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 00:36:46 +02:00
Csaba Kiraly
c1f39a89c9
improve tracing of message exchange
...
run e.g. as
```
nim c -r -d:debug -d:chronicles_enabled=on -d:chronicles_log_level=TRACE -d:chronicles_sinks=textlines[nocolors,stdout] tests/dht/test_providers.nim >err
```
Signed-off-by: Csaba Kiraly <csaba.kiraly@gmail.com>
2023-07-11 00:36:45 +02:00
Csaba Kiraly
f8523ae629
log routing table size periodically
2023-07-11 00:36:45 +02:00
Dmitriy Ryajov
4375b92298
use datastore has
( #56 )
2022-12-02 16:47:16 -06:00
Dmitriy Ryajov
e4e7a3e11f
track nim-libp2p's unstable branch and nim-bearssl's master branch ( #51 )
...
* track nim-libp2p's unstable branch and nim-bearssl's master branch
refactor accordingly: mainly switching from `import bearssl` to
`import bearssl/rand`, `BrHmacDrbgContext` to `HmacDrbgContext`, and related
changes
* fix ambiguous identifier
* nim 1.4 is deprecated
Co-authored-by: Michael Bradley, Jr <michaelsbradleyjr@gmail.com>
2022-11-02 10:21:05 -06:00
Dmitriy Ryajov
d6d255b4b5
Cleanups ( #55 )
...
* limit query to batchSize
* allow initializing node from ip and port
* misc cleanups
2022-10-31 22:41:33 -06:00
Dmitriy Ryajov
08928e57d8
Remove local providers ( #53 )
...
* refactor to use batch deletes
* add ability to remove local providers
2022-10-03 15:14:47 -06:00
Dmitriy Ryajov
4b9fa0356e
Adding maintenance routines to cleanup expired and orphaned records ( #52 )
...
* add maintenance routines and split out cache
* start provider manager
* export provider manager
* add maintenance tests
* start is now async
2022-10-01 10:05:03 -06:00
Dmitriy Ryajov
69ae7c2012
Persist providers ( #49 )
...
* initial providers manager implementation
* misc license update
* spelling
* rename provider tests
* add provider tests
* reexport provider manager
* only update provider record if it changed
* small bug in getProvByKey
* pass providers to both constructors
* fix records retrieval
* disable cache during tests
* avoid redefining data
* adding back tests with cache
* use `.errorOption`
* proper err msg unpacking
2022-09-29 17:49:55 -06:00
Dmitriy Ryajov
bbcfb9f17b
Merge pull request #50 from status-im/revert-47-nim-libp2p-unstable
...
Revert "track nim-libp2p's unstable branch and nim-bearssl's master branch"
2022-09-23 18:18:48 -04:00
Dmitriy Ryajov
9dfa86767d
Revert "track nim-libp2p's unstable branch and nim-bearssl's master branch"
...
This reverts commit c480fb573242ab13fab57446aeece90eaabbe104.
2022-09-23 15:59:31 -06:00
Michael Bradley, Jr
c480fb5732
track nim-libp2p's unstable branch and nim-bearssl's master branch
...
refactor accordingly: mainly switching from `import bearssl` to
`import bearssl/rand`, `BrHmacDrbgContext` to `HmacDrbgContext`, and related
changes
2022-09-19 20:05:34 -05:00
Dmitriy Ryajov
39c0ffc970
Merge pull request #46 from status-im/chronicles-format
...
add formating for SignedPeerRecord
2022-09-13 14:26:02 -04:00
Dmitriy Ryajov
7c259731a4
add formating for SignedPeerRecord
...
needs to move to libp2
2022-09-13 12:01:36 -06:00
Dmitriy Ryajov
94b75f141c
Merge pull request #44 from status-im/providers-lru
...
Providers lru
2022-09-12 23:34:02 -04:00
Dmitriy Ryajov
f5afe784c5
prevent npe when table is 0
2022-09-12 21:08:55 -06:00
Dmitriy Ryajov
f84bc647ce
don't touch the cache when checking for id
2022-09-12 21:08:26 -06:00
Dmitriy Ryajov
23e20a2f1c
bad merge
2022-09-12 18:41:44 -06:00
Dmitriy Ryajov
fca255b2f7
use pure
enums
2022-09-12 18:06:48 -06:00
Dmitriy Ryajov
c646b9c2b9
providers LRU - avoid unchecked growth
2022-09-12 18:06:46 -06:00
Dmitriy Ryajov
e801660b44
Merge pull request #38 from status-im/fixes-for-integration
...
Fixes for dagger integration
2022-09-12 19:44:28 -04:00
Dmitriy Ryajov
3be2c8445c
suppress logging noise
2022-09-12 17:13:34 -06:00
Dmitriy Ryajov
1cbe8c12a6
suppress logging noise
2022-09-12 17:13:34 -06:00
Dmitriy Ryajov
2d93fa9e69
fix updateRecord
...
- support incrementing seqNo
- support updating with new record
2022-09-12 17:13:34 -06:00
Tanguy
d90f0a03b9
Fixes for json logs
2022-09-12 17:13:33 -06:00
Tanguy
bde7a26f9d
Fixes for integration
2022-09-12 17:13:33 -06:00
Dmitriy Ryajov
e8177aa7eb
Merge pull request #39 from yyoncho/main
...
Add setup files
2022-09-12 14:29:47 -04:00
Ivan Yonchovski
36a49cdac4
Add setup files
2022-07-12 15:45:53 +03:00
Tanguy
f824c0a3cd
Remove nim-eth dependency ( #37 )
2022-04-08 12:13:14 +02:00