summaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
* Run cargo update in {equix,hashx}/benchNick Mathewson2024-04-022-418/+326
|
* Bump arti crate to 1.2.1Nick Mathewson2024-04-023-3/+3
| | | | | | | Done with ``` cargo set-version -p arti --bump patch ```
* Update unstable `tor/arti-*` crates to 0.17.0.Nick Mathewson2024-04-0245-361/+361
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Done with: ``` CRATES=" tor-basic-utils tor-async-utils tor-error tor-config tor-events tor-units tor-geoip tor-rtcompat tor-rtmock tor-log-ratelim tor-rpcbase tor-llcrypto tor-protover tor-bytes tor-hscrypto tor-hspow tor-socksproto tor-checkable tor-cert tor-linkspec tor-cell tor-proto tor-netdoc tor-consdiff tor-netdir tor-relay-selection tor-congestion tor-persist tor-chanmgr tor-ptmgr tor-guardmgr tor-circmgr tor-dirclient tor-dirmgr tor-keymgr tor-hsclient tor-hsservice tor-hsrproxy arti-client arti-rpcserver arti-config arti-hyper arti-bench arti-testing " for crate in $CRATES; do cargo set-version -p "$crate" 0.17.0 done ```
* Bump patchlevel versions on non-{tor/arti} crates.Nick Mathewson2024-04-0232-46/+46
| | | | | | | | | | | | | | | | These have all had backward-compatible changes. Generated with: ``` cargo set-version --bump patch -p fs-mistrust cargo set-version --bump patch -p test-temp-dir cargo set-version --bump patch -p fslock-guard cargo set-version --bump patch -p hashx cargo set-version --bump patch -p equix cargo set-version --bump patch -p caret cargo set-version --bump patch -p safelog cargo set-version --bump patch -p retry-error ```
* Merge branch 'time' into 'main'Ian Jackson2024-04-025-89/+147
|\ | | | | | | | | tor-rtmock: Introduce MockTimeCore See merge request tpo/core/arti!2052
| * tor-rtmock: Change word in commentIan Jackson2024-04-021-1/+1
| | | | | | | | | | This was incorrect usage, as pointed out in https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/2052#note_3012727
| * tor-rtmock: Use MockTimeCore in time.rs too (fmt)Ian Jackson2024-03-251-6/+12
| |
| * tor-rtmock: Use MockTimeCore in time.rs tooIan Jackson2024-03-251-23/+18
| |
| * tor-rtmock: Introduce MockTimeCoreIan Jackson2024-03-252-25/+82
| | | | | | | | | | | | | | | | | | | | | | | | | | It bothered me that when I added a `MockCoarseTimeProvider` to the mock time providers, I had to manually grep to check that there weren't places the time was updated where I ought to also update the coarse time. Prove that the code is right by hiding all the times together in a struct that prevents un-synchronised updates. This is part 1, where we move the fields from simple_time::State to the new struct.
| * tor-rtmock: time_core: rename from coarse_time (fmt)Ian Jackson2024-03-251-1/+1
| |
| * tor-rtmock: time_core: rename from coarse_timeIan Jackson2024-03-254-3/+3
| | | | | | | | | | | | We're going to put more in here. (Yes, I know we just invented this...)
* | Run "fixup-features" in preparation for next release.Nick Mathewson2024-03-287-7/+7
| |
* | Merge branch 'netdir-params-links' into 'main'Alexander Færøy2024-03-271-3/+3
|\ \ | | | | | | | | | | | | tor-netdir: Fix broken links in NetParameters docs. See merge request tpo/core/arti!2054
| * | tor-netdir: Fix broken links in NetParameters docs.Gabriela Moldovan2024-03-261-3/+3
| | | | | | | | | | | | Spotted in https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/2053#note_3012632
* | | Fix note in config that claimed onion services weren't implementedNick Mathewson2024-03-271-1/+4
|/ / | | | | | | | | Instead, link to documentation, and give the warning about their security.
* | Merge branch 'vanguard-params' into 'main'gabi-2502024-03-262-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 Moldovan2024-03-261-2/+8
| | |
| * | tor-netdir: Use IntegerSeconds for the vanguard lifetime params.Gabriela Moldovan2024-03-261-4/+4
| | |
| * | tor-netdir: Use consistent termninology in the vanguard param docs.Gabriela Moldovan2024-03-261-6/+6
| | |
| * | tor-netdir: Fix torspec links in vanguard param docs.Gabriela Moldovan2024-03-261-8/+8
| | |
| * | tor-guardmgr: Implement From<BoundedInt32> for VanguardMode.Gabriela Moldovan2024-03-261-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 Moldovan2024-03-261-0/+70
| |/ | | | | | | | | | | See also torspec!258 Part of #1272
* | Make filter conditional, to fix build with hs-service disabled.Nick Mathewson2024-03-262-2/+6
| |
* | Refactor and simplify ClientCircSyncViewNick Mathewson2024-03-262-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 Mathewson2024-03-263-9/+7
| | | | | | | | (Doing this to prevent us having two structs with the same name.)
* | hss: Make the limit for streams configurable.Nick Mathewson2024-03-265-16/+30
| | | | | | | | Closes #1124.
* | Add an IncomingStreamRequestFilter to check early propertiesNick Mathewson2024-03-266-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 Mathewson2024-03-263-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 Mathewson2024-03-261-0/+34
| |
* | proto: Prevent general state-transitions on StreamEntNick Mathewson2024-03-262-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::StreamEntNick Mathewson2024-03-262-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 Mathewson2024-03-265-87/+118
|\ \ | |/ |/| | | | | Refactor the logic for constructing crypt layers. See merge request tpo/core/arti!2048
| * Push HandshakeRole down one level.Nick Mathewson2024-03-261-5/+4
| |
| * Provide spec links for relay crypto formats.Nick Mathewson2024-03-261-2/+10
| |
| * Clean up match statement a little.Nick Mathewson2024-03-261-7/+7
| |
| * We now need circuit::handshake to exist unconditionally.Nick Mathewson2024-03-262-2/+15
| |
| * Refactor the logic for constructing crypt layers.Nick Mathewson2024-03-265-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.
* | tor-rtmock: Rename coarsetime module to coarse_timeIan Jackson2024-03-254-3/+3
| | | | | | | | | | Modules with the same name as external crates don't work well with our MSRV.
* | tor-rtcompat: Rename coarsetime module to coarse_timeIan Jackson2024-03-253-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 statusIan Jackson2024-03-251-0/+4
| |
* | tor-rtcompat: Make Runtime imply CoarseTimeProvider, etc. (fmt)Ian Jackson2024-03-251-2/+2
| |
* | tor-rtcompat: Make Runtime imply CoarseTimeProvider, etc.Ian Jackson2024-03-253-0/+11
| | | | | | | | We must also impl CoarseTimeProvider for mocked runtimes.
* | tor-rtmock: impl CoarseTimeProvider for mocked time providersIan Jackson2024-03-254-1/+70
| |
* | tor-rtmock: Implement from_real in terms of from_wallclockIan Jackson2024-03-251-1/+1
| | | | | | | | This reduces duplication a little.
* | tor-rtcompat: implement_opaque_runtime impls CoarseTimeProviderIan Jackson2024-03-251-0/+7
| | | | | | | | Now all our non-mock runtime types impl CoarseTimeProvider.
* | tor-rtcompat: CompoundRuntime: Add a CoarseTimeProvider, and impl (fmt)Ian Jackson2024-03-253-8/+29
| |
* | tor-rtcompat: CompoundRuntime: Add a CoarseTimeProvider, and implIan Jackson2024-03-258-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 newlinesIan Jackson2024-03-251-3/+3
| |
* | tor-rtcompat: Provide coarsetime APIs and RealCoarseTimeProvider (fmt)Ian Jackson2024-03-251-3/+2
| |
* | tor-rtcompat: Provide coarsetime APIs and RealCoarseTimeProviderIan Jackson2024-03-256-0/+212
| |