Commit Graph

8138 Commits (1ef77cccbd9ca9ec27e7d552e4ca1d0da40bbd1c)
 

Author SHA1 Message Date
dr7ana a6f901a3a9 RIP everything 9 months ago
dr7ana 577f5e61ea De-mutexing
- mutexes in nodedb and rc_lookup_handler removed
- implemented thread-safe queueing to event loop for previously locked accesses
9 months ago
dr7ana 5ccec24470 callsafe
- Added call_get to ev.hpp to queue event loop operations w/ a return value
- de-mutexed NodeDB and made all operations via event loop. Some calls to NodeDB methods (like ::put_if_newer) were wrapped in call->get's, but some weren't. All function bodies were using mutex locks
9 months ago
dr7ana c8dae875b5 Path routing partially implementing
- Reworking how paths to services and snodes
- pushing for Tom to rebase for path handling
9 months ago
Thomas Winget 2cc02d7b60 handle path build requests, generate responses 9 months ago
dr7ana bd81357f62 Path message transmission
- implementing DHT message transmission methods and surrounding functionalities across paths
9 months ago
dr7ana 65bd224cf0 Exit endpoints implemented
- free standing functions in link_manager
- sign and serialize functionalities siloed in llarp/messages/exit.hpp
9 months ago
dr7ana 4ed6a01e02 following up before Tom meeting 9 months ago
Thomas Winget f35f7fe3f2 refactor path build message construction, no more async nonsense 9 months ago
dr7ana 206bd0b85e wawaweewa 9 months ago
dr7ana 1a9f977208 Message method implementation continued
- tons of surrounding stupid refactoring required
9 months ago
dr7ana ad007ff832 libquic/oxen-mq/oxenc version bumps 9 months ago
dr7ana d9ead7d0f6 crypto and message encoding
- libsodium calls streamlined and moved away from stupid typedefs
- buffer handling taken away from buffer_t and towards ustrings and strings
- lots of stuff deleted
- team is working well
- re-implementing message handling in proper link_manager methods
9 months ago
dr7ana ae319091d6 libquic bump 9 months ago
dr7ana d0c3837384 libquic bparser merged
- bumped version to latest main branch commit
- wired up callbacks to set RPC request stream on creation
- methods for I/O of control and data messages through link_manager
9 months ago
dr7ana a3e6cec7e7 Address type migration + libquic bump
- llarp/router/router.hpp, route_poker, and platform code moved to libquic Address types
- implementing required methods in link_manager for connection establishment
- coming along nicely
9 months ago
dr7ana bfa9629779 More carving + libquic bump
- bumped libquic to begin implementing dependent features on connection open/close signals
- more gutting of interface classes
9 months ago
dr7ana aaf688cf81 Deleted a lot
- RIP llarp/iwp/* and most of llarp/link
10 months ago
dr7ana ffb90e87dc libquic bump 10 months ago
dr7ana fd527d612f Carving through llarp/link 10 months ago
dr7ana d1b7eee7c8 Zlib version bump 1.2.13 -> 1.3 10 months ago
dr7ana a4272c4503 Added span backport 10 months ago
dr7ana 7f8207d5d3 Nuked superfluous interface classes
RIP:
- i_link_manager
- i_outbound_message_handler
- i_gossiper
- i_outbound_session_maker
- i_rc_lookup_handler
10 months ago
dr7ana 821cbeaacf warnings_as_errors fixes 10 months ago
dr7ana 7ce517bd2d oxen-libquic update; no leak warn deprecated 10 months ago
dr7ana 81aa044baa kitware CI deps
- stupid warn deprecated stupid
10 months ago
dr7ana 0b6506a00b oxen-libquic version bump
- added CI fixes for gnutls build
10 months ago
dr7ana 511c20cdb6 Message handling methods
- `::handle_message` is transposed; Rather than the message calling the method and taking a reference to the router, the router should have a handle_message method and take a reference to the message
- `::EndcodeBuffer` takes a string reference, to which the result of `::bt_encode()` is assigned
10 months ago
dr7ana 11e54f6552 More message refactoring
- routing messages and surrounding code
- shim code in place for iteration and optimization after deciding what to do with buffer, string handling, and subsequent function calls
10 months ago
dr7ana a921575c55 mein gott 10 months ago
Thomas Winget edd3534425 Default cmake BUILD_SHARED_LIBS to OFF
By not having BUILD_SHARED_LIBS as a defaulted option, if it was not set
in the invocation of cmake then any submodule could come along and set
it instead by declaring it as an option.  If/when this happens in the
middle of the cmake process, some modules will have the flag unset and
others will have it as the default that the submodule set, leading to
inconsistent compilation parameters at best, but likely linking failure.
10 months ago
dr7ana db01c7c4ce oxen-mq commit bump 10 months ago
Thomas Winget e2e7ed3490 pass datagram data cb to endpoint ctor, not listen/connect
Still ngtcp2 link errors, but everything else seems to build.  Have not
checked tests; not likely they will build or be correct if broken.
10 months ago
Jason Rhinelander d92d95177d
ngtcp2 build fix
-std=c99 breaks ngtcp2's build -- it appears to depend on GNU extensions
when compiling on linux, so don't force compiler C extensions off.
10 months ago
Jason Rhinelander bc585d93d2
Remove external/ngtcp2 (use the one from libquic instead) 10 months ago
Thomas Winget a44fdab460 LinkManager linker issues / explicit constructor 10 months ago
Jason Rhinelander c92facc15e
Minor cleanups 10 months ago
Jason Rhinelander 78f866347b
Remove unnecessary static_pointer_cast 10 months ago
Thomas Winget 99be31b72f compiles, but does not link 10 months ago
Thomas Winget 450121734a liblokinet compilation issues from implicit ngtcp2 version bump
Note: this is compilation-fixing only.  Behavior fixing will come later with combining
the earlier efforts on liblokinet with the new wire protocol changes.
10 months ago
Thomas Winget 68e8abc234 bump libquic version 10 months ago
Jason Rhinelander cd7498cb5a
Bump libquic for oxen-logging fix 10 months ago
dr7ana 0260da6bd9 cleaning up after tom 10 months ago
dr7ana 620f916e65 Bump oxen-libquic to latest PR's 10 months ago
dan 4992b9b02c Added path-build to documentation
- re-structure docs
- add diagrams
10 months ago
Jason Rhinelander c997ca2b60
Don't rely on cmake search path for StaticBuild
Resolves a conflict with libquic's StaticBuild.
10 months ago
dr7ana 1346ce5326 oxen-libquic bump for cmake fix 10 months ago
Thomas Winget ab86318404 Partial implementation of libquic as wire protocol
TODO:

- set up all the callbacks for libquic

- define control message requests, responses, commands

- plug new control messages into lokinet (path creation, network state, etc)

- plug connection state changes (established, failed, closed, etc.) into lokinet

- lots of cleanup and miscellanea
10 months ago
dr7ana ad5055b85f cmake tweaks for redundant dependencies (WIP) 10 months ago
Thomas Winget 22ac3cd26e initial quic wire proto Endpoint skeleton 10 months ago