28 releases (12 breaking)

0.12.1 Mar 4, 2024
0.11.0 Jan 9, 2024
0.10.0 Dec 4, 2023
0.9.1 Oct 31, 2023
0.0.0 Jun 24, 2021

#157 in Parser implementations

Download history 212/week @ 2023-12-05 204/week @ 2023-12-12 203/week @ 2023-12-19 152/week @ 2023-12-26 97/week @ 2024-01-02 444/week @ 2024-01-09 410/week @ 2024-01-16 146/week @ 2024-01-23 172/week @ 2024-01-30 253/week @ 2024-02-06 202/week @ 2024-02-13 183/week @ 2024-02-20 643/week @ 2024-02-27 1937/week @ 2024-03-05 948/week @ 2024-03-12 1193/week @ 2024-03-19

4,802 downloads per month
Used in 24 crates (8 directly)

MIT/Apache

1.5MB
23K SLoC

tor-netdoc

Parse and represent directory objects used in Tor.

Overview

Tor has several "directory objects" that it uses to convey information about relays on the network. They are documented in dir-spec.txt.

This crate has common code to parse and validate these documents. Currently, it can handle the metaformat, along with certain parts of the router descriptor type. We will eventually need to handle more types.

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

Design notes

The crate is derived into three main parts. In the (private) parse module, we have the generic code that we use to parse different kinds of network documents. In the types module we have implementations for parsing specific data structures that are used inside directory documents. Finally, the [doc] module defines the parsers for the documents themselves.

Features

build_docs: enable code to construct the objects representing different network documents.

routerdesc: enable support for the "router descriptor" document type, which is needed by bridge clients and relays.

ns-consensus: enable support for the "ns consensus" document type, which some relays cache and serve.

Caveat haxxor: limitations and infelicities

TODO: This crate requires that all of its inputs be valid UTF-8: This is fine only if we assume that proposal 285 is implemented in mainline Tor.

TODO: This crate has several pieces that could probably be split out into other smaller cases, including handling for version numbers and exit policies.

TODO: Many parts of this crate that should eventually be public aren't.

TODO: this crate needs far more tests!

License: MIT OR Apache-2.0

Dependencies

~25MB
~454K SLoC