summaryrefslogtreecommitdiff
path: root/crates
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | proto: Rip CC state out of CircHopInboundGabriela Moldovan2026-01-294-24/+6
| | | | | | | | | | | | | | | | | | | | | | | | Soon it won't need be needed here any more. I'm removing it, because having redundant handles to the CC state makes it difficult to see exactly where it's being used from.
* | | | proto: Factor ReactorResultChannel into the shared reactor moduleGabriela Moldovan2026-01-292-3/+6
| | | | | | | | | | | | | | | | This is not just for clients!
* | | | proto: Add a new module for the generic circuit reactorGabriela Moldovan2026-01-292-0/+10
| | | | | | | | | | | | | | | | Currently empty, will be fleshed out in a future commit.
* | | | proto; Factor HOPS constant out of maybenot_paddingGabriela Moldovan2026-01-292-3/+4
| | | | | | | | | | | | | | | | I am about to use this in other places too.
* | | | proto: Move padding_disposition() to the shared padding moduleGabriela Moldovan2026-01-292-54/+74
| | | |
* | | | proto: Move CircPaddingDisposition to a new moduleGabriela Moldovan2026-01-293-13/+18
| | | | | | | | | | | | | | | | Relays will need to use it too.
* | | | proto: Add a new ToRelayMsg utilGabriela Moldovan2026-01-295-0/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will be used in a future commit, inside the new generic circuit reactor. We need it because RELAY cells are handled very similarly, so we need some way of finding out if a given generic chancell is actually a RELAY cell that we can handle in an implementation-agnostic way.
* | | | proto: Move TimeoutEstimator to utilGabriela Moldovan2026-01-296-15/+23
| | | | | | | | | | | | | | | | | | | | This will be used in the stream reactor too (and the stream reactor will eventually replace the corresponding client impl).
* | | | fallbackdir: Update list generated on January 28, 2026Tor CI Release2026-01-281-887/+903
| | | | | | | | | | | | | | | | Signed-off-by: Tor CI Release <[email protected]>
* | | | Merge branch 'unused-async-lint' into 'main'gabi-2502026-01-2877-37/+103
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | maint/add_warning: Deny clippy::unused_async Closes #2328 See merge request tpo/core/arti!3613
| * | | | hsservice: Allow clippy::unused_asyncGabriela Moldovan2026-01-281-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | See discussion at https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/3613#note_3332767
| * | | | Revert "hsservice: Make RendRequest::reject() synchronous"Gabriela Moldovan2026-01-282-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 84b31824f317458a2aad6fb021b623935870f5bd. Reverted, as this is a public API that might actually need to become `async` at some point. See discussion at https://gitlab.torproject.org/tpo/core/arti/-/merge_requests/3613#note_3332767
| * | | | circmgr: Make test helper non-async (fmt)Gabriela Moldovan2026-01-281-5/+1
| | | | |
| * | | | circmgr: Make test helper non-asyncGabriela Moldovan2026-01-281-9/+9
| | | | |
| * | | | chanmgr: Make a padding test function non-asyncGabriela Moldovan2026-01-271-3/+2
| | | | |
| * | | | tor-async-utils: Make postage_drop test non-asyncGabriela Moldovan2026-01-271-2/+2
| | | | |
| * | | | arti: Pass the request by referenceGabriela Moldovan2026-01-271-2/+2
| | | | | | | | | | | | | | | | | | | | This resolves a newly-triggered lint.
| * | | | arti: Make internal helper synchronousGabriela Moldovan2026-01-271-2/+2
| | | | |
| * | | | arti-relay: Allow clippy_unused_asyncGabriela Moldovan2026-01-271-0/+1
| | | | | | | | | | | | | | | | | | | | The code here is still WIP, no need to apply the lint yet.
| * | | | dirserver: Allow clippy::unused_asyncGabriela Moldovan2026-01-272-0/+2
| | | | | | | | | | | | | | | | | | | | This code is still WIP, no need to address the lint yet.
| * | | | dirmgr: Make `DirMgr::load_once()` synchronousGabriela Moldovan2026-01-271-1/+1
| | | | |
| * | | | dirmgr: Remove unnecessary Arc::clone (fmt)Gabriela Moldovan2026-01-271-2/+1
| | | | |
| * | | | dirmgr: Remove unnecessary Arc::cloneGabriela Moldovan2026-01-272-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | Now that `load` is no longer `async`, this triggers a lint about the unnecessary clone.
| * | | | dirmgr: Make various functions synchronousGabriela Moldovan2026-01-272-10/+9
| | | | | | | | | | | | | | | | | | | | To fix `clippy::unused_async`.
| * | | | hsservice: Make RendRequest::reject() synchronousGabriela Moldovan2026-01-272-1/+2
| | | | |
| * | | | hsservice: Remove unnecessary wraps from publisher functionGabriela Moldovan2026-01-271-4/+4
| | | | | | | | | | | | | | | | | | | | This lint triggers now that the unnecessary `async` is gone.
| * | | | hsservice: Remove unnecessary async from publisher functionGabriela Moldovan2026-01-271-3/+3
| | | | |
| * | | | proto: Add an exception for clippy::unused_asyncGabriela Moldovan2026-01-271-0/+1
| | | | |
| * | | | proto: Add exceptions for clippy::unused async in relay reactorGabriela Moldovan2026-01-271-0/+3
| | | | | | | | | | | | | | | | | | | | This code is still WIP, so I propose we ignore the lint for now.
| * | | | proto: Remove unnecessary async in channel reactorGabriela Moldovan2026-01-271-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | This resolves a warning triggered by the newly-introduced `#[deny(clippy::unused_async)]`.
| * | | | maint/add_warning: Run script to add new warningGabriela Moldovan2026-01-2765-0/+65
| | | | | | | | | | | | | | | | | | | | This adds the lint to all our crates.
* | | | | rpc: Clarify comments on resolve() methods.Nick Mathewson2026-01-271-3/+3
| | | | |
* | | | | rpc: Generate a specific error for inet-auto:nonlocalNick Mathewson2026-01-271-1/+9
| | | | |
* | | | | rpc-connect: Implement json address-file format.Nick Mathewson2026-01-275-11/+41
| | | | |
* | | | | rpc: Add rpc-client-side support for inet-auto addressesNick Mathewson2026-01-273-5/+53
| | | | |
* | | | | rpc: Add rpc-server-side support for inet-auto addresses.Nick Mathewson2026-01-273-16/+97
| | | | |
* | | | | rpc: Begin implementing inet-auto address scheme.Nick Mathewson2026-01-273-30/+178
| | | | |
* | | | | Merge branch 'kist-doc' into 'main'Alexander Hansen Færøy2026-01-271-0/+1
|\ \ \ \ \ | |/ / / / |/| | | | | | | | | | | | | | clippy: Fix missing doc for non-Linux builds See merge request tpo/core/arti!3611
| * | | | clippy: Fix missing doc for non-Linux buildsClara Engler2026-01-271-0/+1
| |/ / /
* | | | Merge branch 'ticket_2304' into 'main'Nick Mathewson2026-01-274-23/+49
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | arti: Downgrade "stream closed without END" warning to debug. Closes #2304 See merge request tpo/core/arti!3608
| * | | arti: Make tor-proto dependency unconditionalNick Mathewson2026-01-271-3/+3
| | | | | | | | | | | | | | | | We now need it whether or not http-connect is enabled.
| * | | Apply 1 suggestion(s) to 1 file(s)Nick Mathewson2026-01-271-1/+1
| | | | | | | | | | | | Co-authored-by: carti-it <[email protected]>
| * | | arti: Downgrade CircuitClosed to debug level.Nick Mathewson2026-01-221-3/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This isn't the long-term solution to error reporting and proxies, but it is a start that we can work from. Closes #2304.
| * | | arti: Extract function to find a ProtoError sourceNick Mathewson2026-01-222-11/+22
| | | |
| * | | tor-proto: Report CircuitClosed on unexpected stream rx closeNick Mathewson2026-01-221-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As near as I can tell, there are only three ways that the sender corresponding to this rx can be dropped: - `StreamMap::terminate` because the stream object itself was dropped. (But see #2323.) - `StreamMap::close_stream` because an END message or similar has been received. (But see #2322.) - The `StreamMap` has been dropped. The first two cases are already handled, and AFAICT the third can only happen when the circuit hop closes. That makes `CircuitClosed` the appropriate error here, not `StreamProto`. Part of a fix for #2304.
* | | | tor-rtcompat: depend on rustls 0.23.21Steven Engler2026-01-261-0/+7
| | | |
* | | | tor-basic-utils: bump slab to 0.4.7Steven Engler2026-01-261-1/+1
| | | | | | | | | | | | | | | | | | | | This is needed since we rely on `Slab::new()` being a const fn, which was only added in 0.4.7.
* | | | Merge branch 'database-compression-bug' into 'main'Clara Engler2026-01-222-5/+6
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | tor-dirserver: Make compression failures a bug See merge request tpo/core/arti!3605
| * | | | tor-dirserver: Add comment on compression bugClara Engler2026-01-221-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | This commit adds a comment explaining why we treat compression errors as a bug.
| * | | | tor-dirserver: Make compression failures a bugClara Engler2026-01-222-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit removes `DatabaseError::Compression` because it does not fit in. Right now, this single variant makes the error to be call-site oriented which is not nice for error handling. Instead, this error should indicate that something was truly wrong with the database in itself, such as an invalid schema, a low-level SQLite bug, etc. Instead, we now map a compression error to `DatabaseError::Bug` because there is no good reason on why it should fail, given that we compress memory data to memory data. Probably because it uses the `std::io::Writer` interface which itself demands use of `std::io::Result`.