#tor #arti #censorship

tor-ptmgr

Manage a set of pluggable transports to circumvent censorship

16 releases (10 breaking)

0.11.0 Mar 4, 2024
0.9.0 Jan 9, 2024
0.8.0 Dec 4, 2023
0.7.0 Oct 31, 2023
0.2.0 Nov 30, 2022

#1649 in Network programming

Download history 63/week @ 2023-12-04 30/week @ 2023-12-11 16/week @ 2023-12-18 6/week @ 2023-12-25 10/week @ 2024-01-01 65/week @ 2024-01-08 33/week @ 2024-01-15 10/week @ 2024-01-22 17/week @ 2024-01-29 56/week @ 2024-02-05 8/week @ 2024-02-12 27/week @ 2024-02-19 121/week @ 2024-02-26 340/week @ 2024-03-04 100/week @ 2024-03-11 62/week @ 2024-03-18

625 downloads per month
Used in 5 crates (via arti-client)

MIT/Apache

1MB
19K SLoC

tor-ptmgr

Manage a set of anti-censorship pluggable transports.

Overview

This crate is part of Arti, a project to implement Tor in Rust.

In Tor, a "transport" is a mechanism used to avoid censorship by disguising the Tor protocol as some other kind of traffic.

A "pluggable transport" is one that is not implemented by default as part of the Tor protocol, but which can instead be added later on by the packager or the user. Pluggable transports are typically provided as external binaries that implement a SOCKS proxy, along with certain other configuration protocols.

This crate provides a means to manage a set of configured pluggable transports

Limitations

TODO: Currently, the APIs for this crate make it quite tor-specific. Notably, it can only return Channels! It would be good instead to adapt it so that it was more generally useful by other projects that want to use pluggable transports in rust. For now, I have put the Tor-channel-specific stuff behind a tor-channel-factory feature, but there are no APIs for using PTs without that feature currently. That should change. (See issue arti#666)

TODO: The first version of this crate will probably only conform to the original Tor pluggable transport protocol, and not to more recent variants as documented at pluggabletransports.info

Feature flags

Additive features

  • tor-channel-factory: Build with support for a ChannelFactory implementation that allows this crate's use with Tor. (Currently, this is the only way to use the crate; see "Limitations" section above.)

  • full -- Build with all the features above.

Experimental and unstable features

Note that the APIs enabled by these features are NOT covered by semantic versioning guarantees: we might break them or remove them between patch versions.

  • experimental-api -- build with experimental, unstable API support.

  • experimental -- Build with all experimental features above, along with all experimental features from other arti crates.

License: MIT OR Apache-2.0

Dependencies

~25–37MB
~554K SLoC