Commit Graph

8199 Commits (efe5fd3b5b598970edb3faca16891a3ac54c4d52)
 

Author SHA1 Message Date
Thomas Winget 2e5c856cf3 onion encrypt path build frames
path build frames should be onioned at each hop to avoid a bad actor
controlling two nodes in a path being able to know (with certainty,
temporal correlation is hard to avoid) that they're hops on the same
path.  This is desirable as in the worst case someone could be your edge
hop and terminal hop on a path, and now the terminal hop knows your IP
making the path basically pointless.
10 months ago
Thomas Winget d7e2e52ee4 messages::status -> messages 10 months ago
Jason Rhinelander 1ef77cccbd
Merge pull request #2221 from dr7ana/config-refactor-11-23
Config Refactor
10 months ago
dr7ana 826ef2bbe6 libquic bump 10 months ago
Thomas Winget e6eeda0f15 remove some unused "path build"-related functions 10 months ago
Thomas Winget bd4f239aa3 preconstructed dicts for error/timeout/ok
also move messages' statuses into their own namespace
10 months ago
dr7ana 2ee70921bc review fixes 10 months ago
Jason Rhinelander 1ca852d2f5 Delete llarp::util::memFn
It's unnecessary abstraction that barely simplifies anything, and is now
only used in one single place anyway, which is easily replaced with a
(unabstracted) lambda.
11 months ago
Thomas Winget 32395caec1 build fixes, clang-format, minor touch-ups 11 months ago
Thomas Winget 9e9c1ea732 chahca nonce size is 24 bytes
Lots of code was using 32-byte nonces for xchacha20 symmetric
encryption, but this just means 8 extra bytes per packet wasted as
chacha is only using the first 24 bytes of that nonce anyway.

Changing this resulted in a lot of dead/dying code breaking, so this
commit also removes a lot of that (and comments a couple places with
TODO instead)

Also nounce -> nonce where it came up.
11 months ago
Thomas Winget abb2f63ec6 path control message response status changes
change path control message inner message response to take just a
string, which will be a bt-encoded response with an early key for
status.  If there is a timeout we pass a bt dict that only has that as
the status, else the response we de-onioned should have either an OK
status or some other error.

change messages to use new status key

correctly call Path::EnterState on path build response
11 months ago
Thomas Winget e7632d0a30 omit breaking RC stuff pending refactor
It seems RC refactor will obviate the need for a "get individual RC"
method, so this comments out some usage of that to sidestep build
errors, rather than correcting them in a way that will just be wasted.
11 months ago
Thomas Winget b0fb194e2c path control messages and onioning fleshed out
- control messages can be sent along a path
- the path owner onion-encrypts the "inner" message for each hop in the
  path
- relays on the path will onion the payload in both directions, such
  that the terminal relay will get the plaintext "inner" message and the
  client will get the plaintext "response" to that.
- control messages have (mostly, see below) been changed to be invokable
  either over a path or directly to a relay, as appropriate.

TODO:
  - exit messages need looked at, so they have not yet been changed for
    this
  - path transfer messages (traffic from client to client over 2 paths
    with a shared "pivot") are not yet implemented
11 months ago
Thomas Winget c25ced50a3 path build message handling mostly finished
there are a few TODOs which merit further discussion
11 months ago
dr7ana 39c70b575d config addr change
- the one addr to rule them all, and its name was oxen::quic::Address
- no more vectors of inbound/outbound junk
11 months ago
dr7ana 5a628007e1 A soothing re-nomenclatura 11 months ago
dr7ana 1939ba0b3d
Merge pull request #2218 from dr7ana/rc-bencode
RC Refactor + (some) BT-encode fixes
11 months ago
dr7ana af0ac28119 Review fixes + misc fixes 11 months ago
Jason Rhinelander 8b70e0ad2b Untangle Endpoint::LookupServiceAsync
- .snodes don't need to support SRV records, so remove that
- untangle the mess of captured lambdas capturing other lambdas
  capturing other lambdas; we still need a chain of nested lambdas
  because we have a chain of callbacked events, but hiding the nesting
  by capturing them in other lambdas didn't improve anything.
11 months ago
dr7ana fa4471f566 {Remote,Local}RC's
- RemoteRC supplants most of the functionality throughout the code of RouterContact
- Next step will be to sort out CI issues, then see if we can get rid of either LocalRC (and therefore RouterContact entirely)
11 months ago
dr7ana 07271f9ae7 RC refactor layout
- Local and Remote RC's now implemented with discrete functionalities and uses
11 months ago
dr7ana 42337388f9
Merge pull request #2213 from dr7ana/quic-wip
Outbound/inbound message handling; compilation fixes
11 months ago
Jason Rhinelander f7c18de0d4
Give up for now 11 months ago
Jason Rhinelander 4f364f5e59
Bump libquic to latest for static build fixes 11 months ago
Jason Rhinelander a7a18868c7
Turn off terrible new cmake 3.24+ default 11 months ago
Jason Rhinelander 6ebc812cda
Remove unused file 11 months ago
Jason Rhinelander 1ca81713ab
Bump armhf static build to bullseye
Use backports for cmake because ngtcp2 needs 3.20+.
11 months ago
Jason Rhinelander e237d5ad6e
Don't export CC
This was causing cmake to double-invoke ccache for compilation units,
and broke oxen-mq's local zmq build for the same reason.
11 months ago
dr7ana 8cbae70369 Weird clang unused variable CI fix 11 months ago
Jason Rhinelander b4a1ed9b85
Bump oxen-mq for libzmq llvm static build fix 11 months ago
dr7ana 7d713323f0 Windows CI fixes
- some weird function call business
- string formatting
- etc
11 months ago
dr7ana aae677814d Bump libzmq static; remove patches 11 months ago
Jason Rhinelander 6f2825c922
Bump WinDivert to latest
There are some bugfix releases, but also the upstream hash was wrong for
the current release anyway (upstream changed it?).
11 months ago
Jason Rhinelander 16506b6d8b
Default libcrypt to whether or not we find it
Also deliberately don't provide the function at all if we aren't
compiled with libcrypt so that we can't link if we try to call it when
not available.
11 months ago
Jason Rhinelander d2667cfb89
Disable Router Hive & DEB builds
They aren't useful right now.
11 months ago
dr7ana 7ac88616f7 squash 11 months ago
dr7ana b7e21becf0 windows fixes 11 months ago
dr7ana 7314c2a22a CI Fixes, squash 11 months ago
Jason Rhinelander c18ad4c618
Temporarily disable building/running test suite 11 months ago
dr7ana 2abe2d9363 Review fixes
- cleaned up include-what-you-use errors (mostly quoted includes)
- misc fixes
11 months ago
Jason Rhinelander 5c3467ecb0 Fix systemd linkage 11 months ago
Jason Rhinelander 18effaa76f Bring oxen-encoding back in as a submodule
As long as it's loaded before oxen-mq or libquic, this should end up
being the one that gets used in oxen-mq/libquic, and so we don't have to
update those when we want something in a newer oxen-encoding.
11 months ago
Jason Rhinelander c3242e4092 Add format.sh detection of include problems 11 months ago
dr7ana 46ad8d4058 Clang format include sorting + CMake
- includes are now sorted in consistent, logical order; first step in an attempt to fix the tomfoolery (no relation to Tom) brought in by include-what-you-use
- shuffled around some cmake linking to simplify dependency graph
- superfluous files removed
11 months ago
dr7ana bda8b211dd Cmake restructuring 11 months ago
Jason Rhinelander f4f5ab0109 "Refactor" aka delete Crypto/CryptoManager
- Get rid of CryptoManager.
- Get rid of Crypto.
- Move all the Crypto instance methods to llarp::crypto functions.
  (None of them needed to be methods at all, so this is simple).
- Move sodium/ntru initialization into static initialization.
- Add llarp::csrng, which is an available llarp::CSRNG instance which is
  a bit easier than needing to construct a `CSRNG rng{};` in various
  places.
- Various related small simplifications/cleanups.
11 months ago
dr7ana e710cfea47 Review commit 11 months ago
dr7ana 0e451db77f Compilation fixes
- almost all errors have been commented out for refactor or already refactored
- committing this prior to sorting out the cmake structure
- upcoming include-what-you-use application
11 months ago
dr7ana 3ae8fce77d Outbound context absorbed sendcontex
- message transmission routed through refactored handling
- still work to be done, but now to make it compile at least
11 months ago
dr7ana 41312abab0 introset and message transmission underway
- message handling through classes that inherit from PathSet
- cleanups around link_manager
- etc etc
11 months ago