Commit Graph

132 Commits

Author SHA1 Message Date
dr7ana
47be3cefe1 lets see which gets rejected 2023-12-15 15:42:22 -08:00
Jason Rhinelander
7417c59286
Get rid of IterDir
It's a gross implementation, and even if it wasn't, using it takes more
code than not using it.
2023-12-15 19:12:31 -04:00
dr7ana
f41bcd00c6 loop call 2023-12-15 14:58:20 -08:00
dr7ana
2a090b6e42 btreq destructor
- try closing the connection via link::Endpoint like we probably should be doing..
- testing out dropping stream constructor, godspeed
2023-12-15 14:53:04 -08:00
dr7ana
87ae0686d0 rc parsing
- new btdc method used to ensure no junk at the end of our bt data
- DRYed out the RC code
- check inbound bootstraps against all registered routers, not just whitelist
- libquic vbump
2023-12-15 14:11:29 -08:00
dr7ana
49794295b1 booyakasha 2023-12-15 10:52:36 -08:00
dr7ana
c71e767511 full mesh proto implementation 2023-12-15 10:27:50 -08:00
dr7ana
42aa92ab95 gossip fetch and response handling implemented 2023-12-15 08:43:58 -08:00
dr7ana
ef1897c25a Added connection keepalive
- implemented ngtcp2 ping to keep connections alive
- fixed weird lambda captures
- fetch logic
- lets see what happens
2023-12-15 07:51:20 -08:00
dr7ana
575494c3da actually have rid in command registration 2023-12-13 13:27:00 -08:00
dr7ana
08c2c26c29 bootstrap tweaking 2023-12-13 11:13:22 -08:00
dr7ana
d6e5aca572 libquic vbump 2023-12-13 10:36:09 -08:00
dr7ana
fd21eb3a00 Big fix!
- pending conns container stops them from being counted towards active conns in the interim
- un-abstracted pendingmessages vs pendingdatamessages vs pendingcontrolmessages (gross)
- fixed bootstrap fetching and storage!
2023-12-13 09:42:09 -08:00
dr7ana
d016951d2f Fixed pending message queue weirdness 2023-12-13 05:49:59 -08:00
dr7ana
ea614ed141 better! 2023-12-12 11:57:15 -08:00
dr7ana
49dbdf1062 doofus 2023-12-12 10:45:14 -08:00
dr7ana
63c9bd6e63 update seeds before returning no 2023-12-12 10:24:31 -08:00
dr7ana
eb971265c7 wrap dat 2023-12-12 10:19:56 -08:00
dr7ana
6cb2f57abd whatever 2023-12-12 09:44:59 -08:00
dr7ana
b69f754599 come on already work already 2023-12-12 08:11:34 -08:00
dr7ana
7544436f6a who cares 2023-12-11 13:48:11 -08:00
Jason Rhinelander
cece742cf3
Bump libquic for message move/copy fixes 2023-12-11 17:20:49 -04:00
dr7ana
daa3a6fd94 shoot 2023-12-11 11:29:33 -08:00
Jason Rhinelander
4c1f6112a7
REVERT ME: debug incoming dict data 2023-12-11 14:46:29 -04:00
dr7ana
f725c07f2d dont bomb with bootstrap reqs 2023-12-11 10:36:46 -08:00
dr7ana
e0c1069790 kiiiiiick 2023-12-11 10:10:04 -08:00
dr7ana
efe5fd3b5b try queueing 2023-12-11 09:17:29 -08:00
dr7ana
0bf3a3323a kick 2023-12-11 09:04:53 -08:00
dr7ana
238cc3d0da kick 2023-12-11 08:16:13 -08:00
dr7ana
5f430a392b kick 2023-12-11 07:46:11 -08:00
dr7ana
63644d3d84 Bootstrap seed
- nodes now send their RC to the bootstrap seed on making a request
- allows the bootstrap seed to distribute RCs
2023-12-11 07:32:52 -08:00
dr7ana
f2feea74ee Crit logging
- TODO: discuss authentication for nodes connecting to bootstrap seed
- crit log num connected/RC's, conn open/closed, etc
2023-12-11 03:45:23 -08:00
Jason Rhinelander
412ce44139 Update libquic 2023-12-11 03:13:39 -08:00
Jason Rhinelander
daeff3ee7e Remove duplicate connection closing method
`deregister_peer` does the exact same thing as `close_connection` so
just remove it.

Also removes an unnecessary loop dispatch call (because we *have* to be
in the logic thread already to be able to touch the variables we are
touching before the dispatch).
2023-12-11 03:13:39 -08:00
dr7ana
9084d39e5a Squashed misc testnet fixes 2023-12-11 03:13:16 -08:00
dr7ana
8af38d3d44 TELL ME WHEN IT WORKS 2023-12-07 16:48:40 -08:00
dr7ana
cef2ff7782 Local router mode
- Up and running locally, no connections yet
- Next: flip testnet and do the gosh dang thing
2023-12-07 09:27:58 -08:00
dr7ana
ed6bd28a35 testnet prep
- redoing link_manager functions again to implement previously ignored review comments on several PRs
- conceptually merging "whitelist_routers" and new "known_{rids,rcs}", s.t. we can completely eliminate white/red/gray/green/etc lists in favor of something that isn't dumb
2023-12-06 12:02:31 -08:00
dr7ana
62c37825b0 testnet prep
- disable reachability testing with config option; required to be done on testnet
- reachability testing pipeline through link_manager executes pings similar to storage server. connection established hook reports successful reachability, while connection closed callback (with non-default error code) reports unsuccessful testing
2023-12-04 11:18:18 -08:00
dr7ana
70e9c1ae25 trust model fetch fails
- bootstrap cooldown implemented with 1min timer in case all bootstraps fail
- set comparison implemented in non-initial and non-bootstrap rc fetching; set comparison in rid fetching is done every fetch
- nodedb get_random functions refactored into conditional/non-conditional methods. Conditional search implements reservoir sampling for one-pass accumulation of n random rcs
2023-12-04 07:59:13 -08:00
dr7ana
3508dee8d8 trust model
- greedy evaluation of returned rid's, simplifying post-processing logic to simple frequency comparison per rid against a constant threshold
- tidied up link_manager request/response handling
- TODO:
  - review and decide thresholds
  - evaluate necessity and potential implementation of rc comparison
2023-12-01 12:54:52 -08:00
dr7ana
91121ea22b pull yourself up by your bootstraps sonny
- initial/subsequent fetching combined for RouterContacts and RouterIDs
- bootstraps fallback implemented and looped into fetch logic
2023-11-30 15:16:33 -08:00
dr7ana
ba3fffb765 housekeeping pre-trust model 2023-11-29 06:03:54 -08:00
dr7ana
b6cc86e25b fetch RID result handler logic 2023-11-28 12:51:30 -08:00
dr7ana
3fc7980691 less synchronous for the subsequent fetches 2023-11-28 12:51:30 -08:00
dr7ana
6559617816 RC/RID fetching logic implemented 2023-11-28 12:51:30 -08:00
dr7ana
5fa3c2be87 housekeeping and groundwork, initial commit 2023-11-28 12:51:30 -08:00
Thomas Winget
70d2052cd4 minor fixups 2023-11-27 21:49:02 -05:00
Thomas Winget
dab1e06892 FindRouterMessage is gone, also clang-format 2023-11-27 14:40:18 -05:00
Thomas Winget
c30a4dd44a Implement fetch RouterIDs method and usage
Periodically clients will fetch the set of RouterIDs for all relays on
the network.  It will request this list from a number (12, currently) of
relays, but as we are likely to be requesting from more relays than we
want to have edge connections, this request will itself be relayed to
the target source via one of our edges.  As we can't trust our edge to
do this honestly, the responses are signed by the source relay.

TODO: the responses from all (12) relays are collected, then processed
together.  The reconciliation of their responses is not yet implemented.

TODO: the source selection for this method obviously requires sources to
begin with, but this is the method by which we learn of
those...bootstrapping is still a bit in-progress, and will need to be
finished for this.

TODO: make Router call this periodically, as with RC fetching.
2023-11-27 14:40:18 -05:00