| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | | | Fix note in config that claimed onion services weren't implemented | Nick Mathewson | 2024-03-27 | 1 | -1/+4 | |
| |/ / / | | | | | | | | | | | | | Instead, link to documentation, and give the warning about their security. | |||||
| * | | | Merge branch 'broad-semver' into 'main' | gabi-250 | 2024-03-26 | 3 | -8/+110 | |
| |\ \ \ | | | | | | | | | | | | | | | | | Update our semver policy as suggested in #1005 See merge request tpo/core/arti!2051 | |||||
| | * | | | Release.md: Clarify structure slightly | Ian Jackson | 2024-03-26 | 1 | -6/+6 | |
| | | | | | ||||||
| | * | | | README: suggest use of cargo upgrade. | Ian Jackson | 2024-03-25 | 1 | -0/+1 | |
| | | | | | ||||||
| | * | | | Release.md: Correct set-version rubrics | Ian Jackson | 2024-03-25 | 1 | -1/+3 | |
| | | | | | ||||||
| | * | | | semver policy: Remove word "woolly" | Ian Jackson | 2024-03-25 | 1 | -1/+1 | |
| | | | | | ||||||
| | * | | | docs: Typos/grammar | Nick Mathewson | 2024-03-25 | 1 | -2/+2 | |
| | | | | | ||||||
| | * | | | semver policy: Be clear about date when we write something | Nick Mathewson | 2024-03-25 | 1 | -1/+1 | |
| | | | | | ||||||
| | * | | | Improve markdown syntax | Nick Mathewson | 2024-03-25 | 1 | -2/+2 | |
| | | | | | ||||||
| | * | | | doc/Release.md: Initial cut of changes apropos new semver approach | Ian Jackson | 2024-03-25 | 1 | -1/+30 | |
| | | | | | ||||||
| | * | | | doc/Semver.md: Add semver policy | Ian Jackson | 2024-03-25 | 2 | -0/+64 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | Taken from https://gitlab.torproject.org/tpo/core/arti/-/issues/1005#note_2991812 and edited. | |||||
| | * | | | README: Document our semver approach | Ian Jackson | 2024-03-25 | 1 | -0/+7 | |
| | | | | | | | | | | | | | | | | | Even before the policy change, this is, in practice, true. | |||||
| | * | | | doc/Release.md: Move a comment about committing lockfiles | Ian Jackson | 2024-03-25 | 1 | -3/+2 | |
| | | | | | ||||||
| * | | | | Merge branch 'vanguard-params' into 'main' | gabi-250 | 2024-03-26 | 2 | -0/+89 | |
| |\ \ \ \ | |_|_|/ |/| | | | | | | | | | | | tor-netdir: Add the vanguard params to NetParameters. See merge request tpo/core/arti!2053 | |||||
| | * | | | tor-guardmgr: Replace From impl with from_net_parameter constructor. | Gabriela Moldovan | 2024-03-26 | 1 | -2/+8 | |
| | | | | | ||||||
| | * | | | tor-netdir: Use IntegerSeconds for the vanguard lifetime params. | Gabriela Moldovan | 2024-03-26 | 1 | -4/+4 | |
| | | | | | ||||||
| | * | | | tor-netdir: Use consistent termninology in the vanguard param docs. | Gabriela Moldovan | 2024-03-26 | 1 | -6/+6 | |
| | | | | | ||||||
| | * | | | tor-netdir: Fix torspec links in vanguard param docs. | Gabriela Moldovan | 2024-03-26 | 1 | -8/+8 | |
| | | | | | ||||||
| | * | | | tor-guardmgr: Implement From<BoundedInt32> for VanguardMode. | Gabriela Moldovan | 2024-03-26 | 1 | -0/+13 | |
| | | | | | | | | | | | | | | | | | | | | | We'll need this to convert the `vanguard_enabled` and `vanguard_hs_service` net params to a `VanguardMode. | |||||
| | * | | | tor-netdir: Add the vanguard params to NetParameters. | Gabriela Moldovan | 2024-03-26 | 1 | -0/+70 | |
| | | |/ | |/| | | | | | | | | | | | | | See also torspec!258 Part of #1272 | |||||
| * | | | Merge branch 'stream_counting' into 'main' | Nick Mathewson | 2024-03-26 | 11 | -99/+362 | |
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | Implement max_concurrent_streams_per_circuit Closes #1124 See merge request tpo/core/arti!2047 | |||||
| | * | | | Make filter conditional, to fix build with hs-service disabled. | Nick Mathewson | 2024-03-26 | 2 | -2/+6 | |
| | | | | | ||||||
| | * | | | Refactor and simplify ClientCircSyncView | Nick Mathewson | 2024-03-26 | 2 | -34/+24 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With this patch, it holds only a reference to `&reactor.hops`, which greatly simplifies the reactor code's fight with the borrow checker. I've left some TODO comments about future directions here. | |||||
| | * | | | Rename the old IncomingStreamRequestContext to StreamReqInfo. | Nick Mathewson | 2024-03-26 | 3 | -9/+7 | |
| | | | | | | | | | | | | | | | | | (Doing this to prevent us having two structs with the same name.) | |||||
| | * | | | hss: Make the limit for streams configurable. | Nick Mathewson | 2024-03-26 | 5 | -16/+30 | |
| | | | | | | | | | | | | | | | | | Closes #1124. | |||||
| | * | | | Add an IncomingStreamRequestFilter to check early properties | Nick Mathewson | 2024-03-26 | 6 | -17/+167 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Based on designs in #1124. Note that there is a TODO here about a hack I had to do to appease the borrow checker. | |||||
| | * | | | Define a type for a synchronous (blocking) view of a circuit state. | Nick Mathewson | 2024-03-26 | 3 | -0/+40 | |
| | | | | | | | | | | | | | | | | | | | | | We'll use this as an argument for the callback that checks stream requests to make sure they're permitted. | |||||
| | * | | | proto: Make StreamMap keep a count of open streams. | Nick Mathewson | 2024-03-26 | 1 | -0/+34 | |
| | | | | | ||||||
| | * | | | proto: Prevent general state-transitions on StreamEnt | Nick Mathewson | 2024-03-26 | 2 | -38/+60 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | We want to keep an accurate count of the number of open streams, so we have to stop exposing `&mut StreamEnt` outside of the streammap module. | |||||
| | * | | | proto: Refactor circuit::streammap::StreamEnt | Nick Mathewson | 2024-03-26 | 2 | -40/+51 | |
| |/ / / | | | | | | | | | | | | | | | | | | | This is the first part of a refactoring that will let us keep code from the outside of `streammap` from changing a stream from one state to another. And we need to do _that_ so that StreamMap can count how many open streams it has. | |||||
| * | | | Merge branch 'refactor_stream_crypto_init' into 'main' | Nick Mathewson | 2024-03-26 | 5 | -87/+118 | |
| |\ \ \ | |/ / |/| | | | | | | | | Refactor the logic for constructing crypt layers. See merge request tpo/core/arti!2048 | |||||
| | * | | Push HandshakeRole down one level. | Nick Mathewson | 2024-03-26 | 1 | -5/+4 | |
| | | | | ||||||
| | * | | Provide spec links for relay crypto formats. | Nick Mathewson | 2024-03-26 | 1 | -2/+10 | |
| | | | | ||||||
| | * | | Clean up match statement a little. | Nick Mathewson | 2024-03-26 | 1 | -7/+7 | |
| | | | | ||||||
| | * | | We now need circuit::handshake to exist unconditionally. | Nick Mathewson | 2024-03-26 | 2 | -2/+15 | |
| | | | | ||||||
| | * | | Refactor the logic for constructing crypt layers. | Nick Mathewson | 2024-03-26 | 5 | -86/+97 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The key insights here are: - That relay cell format and crypto protocols aren't orthogonal: Once we have GCO, it will require V1. - That we only need the actual functions for layer construction to be generic; we don't need to proliferate generic parameters everywhere. - That the circuit::handshake module already does most of what we want. | |||||
| * | | | Merge branch 'coarse' into 'main' | Ian Jackson | 2024-03-25 | 20 | -35/+397 | |
| |\ \ \ | |_|/ |/| | | | | | | | | tor-rtcompat: Introduce CoarseTimeProvider, a new part of Runtime See merge request tpo/core/arti!2050 | |||||
| | * | | tor-rtmock: Rename coarsetime module to coarse_time | Ian Jackson | 2024-03-25 | 4 | -3/+3 | |
| | | | | | | | | | | | | | | | | Modules with the same name as external crates don't work well with our MSRV. | |||||
| | * | | tor-rtcompat: Rename coarsetime module to coarse_time | Ian Jackson | 2024-03-25 | 3 | -3/+3 | |
| | | | | | | | | | | | | | | | | Modules with the same name as external crates don't work well with our MSRV. | |||||
| | * | | tor-rtcompat: coarsetime: Add a comment about doc status | Ian Jackson | 2024-03-25 | 1 | -0/+4 | |
| | | | | ||||||
| | * | | tor-rtcompat: Make Runtime imply CoarseTimeProvider, etc. (fmt) | Ian Jackson | 2024-03-25 | 1 | -2/+2 | |
| | | | | ||||||
| | * | | tor-rtcompat: Make Runtime imply CoarseTimeProvider, etc. | Ian Jackson | 2024-03-25 | 3 | -0/+11 | |
| | | | | | | | | | | | | | We must also impl CoarseTimeProvider for mocked runtimes. | |||||
| | * | | tor-rtmock: impl CoarseTimeProvider for mocked time providers | Ian Jackson | 2024-03-25 | 4 | -1/+70 | |
| | | | | ||||||
| | * | | tor-rtmock: Implement from_real in terms of from_wallclock | Ian Jackson | 2024-03-25 | 1 | -1/+1 | |
| | | | | | | | | | | | | | This reduces duplication a little. | |||||
| | * | | tor-rtcompat: implement_opaque_runtime impls CoarseTimeProvider | Ian Jackson | 2024-03-25 | 1 | -0/+7 | |
| | | | | | | | | | | | | | Now all our non-mock runtime types impl CoarseTimeProvider. | |||||
| | * | | tor-rtcompat: CompoundRuntime: Add a CoarseTimeProvider, and impl (fmt) | Ian Jackson | 2024-03-25 | 3 | -8/+29 | |
| | | | | ||||||
| | * | | tor-rtcompat: CompoundRuntime: Add a CoarseTimeProvider, and impl | Ian Jackson | 2024-03-25 | 8 | -27/+63 | |
| | | | | | | | | | | | | | | | | | | | In all the uses in-crate, this is just a RealCoarseTimeProvider. Now all the compound runtimes impl CoarseTimeProvider. | |||||
| | * | | tor-rtcompat: Reformat a doc comment for semantic newlines | Ian Jackson | 2024-03-25 | 1 | -3/+3 | |
| | | | | ||||||
| | * | | tor-rtcompat: Provide coarsetime APIs and RealCoarseTimeProvider (fmt) | Ian Jackson | 2024-03-25 | 1 | -3/+2 | |
| | | | | ||||||
| | * | | tor-rtcompat: Provide coarsetime APIs and RealCoarseTimeProvider | Ian Jackson | 2024-03-25 | 7 | -0/+215 | |
| |/ / | ||||||
