Crates.io | h3i |
lib.rs | h3i |
version | 0.2.0 |
source | src |
created_at | 2024-09-12 13:52:24.715795 |
updated_at | 2024-09-26 14:08:13.209127 |
description | Low-level HTTP/3 debugging and testing |
homepage | |
repository | https://github.com/cloudflare/quiche |
max_upload_size | |
id | 1372793 |
size | 560,875 |
h3i consists of an interactive command-line tool and library for low-level HTTP/3 debugging and testing.
HTTP/3 (RFC 9114) is the wire format for HTTP semantics (RFC 9110). The RFCs contain a range of requirements about how Request or Response messages are generated, serialized, sent, received, parsed, and consumed. QUIC ([RFC 900]) streams are used for these messages along with other control and QPACK (RFC 9204) header compression instructions.
h3i provides a highly configurable HTTP/3 client that can bend RFC rules in order to test the behavior of servers. QUIC streams can be opened, fin'd, stopped or reset at any point in time. HTTP/3 frames can be sent on any stream, in any order, containing user-controlled content (both legal and illegal).
Note: Please note that h3i is not intended to be a production HTTP/3 client, and we currently have no plans to make it one. Use it in production at your own risk!
The command-line tool is intended to be used for ad-hoc interactive exploration of HTTP/3 server behavior.
For example, to interactively test https://cloudflare-quic.com:
cargo run cloudflare-quic.com
This opens an interactive prompt that walks the user through constructing a
number of Action
s, such as sending an HTTP/3 HEADERS frame, that are queued
and then sent to the server in sequence. The available options are
headers
- an HTTP/3 HEADERS frame, with mandatory pseudo headersheaders_no_pseudo
- an HTTP/3 HEADER frame, with no mandatory pseudo headersdata
- an HTTP/3 DATA framesettings
- an HTTP/3 SETTINGS framegoaway
- an HTTP/3 GOAWAY framepriority_update
- an HTTP/3 PRIORITY_UPDATE framepush_promise
- an HTTP/3 PUSH_PROMISE framecancel_push
- an HTTP/3 CANCEL_PUSH framemax_push_id
- an HTTP/3 MAX_PUSH_ID framegrease
- an HTTP/3 GREASE frameextension_frame
- an HTTP/3 extension frameopen_uni_stream
- opens an HTTP/3 unidirectional stream with a typestream_bytes
- send arbitrary data on a streamreset_stream
- resets a uni or bidi streamstop_sending
- stops a bidi streamconnection_close
- closes the QUIC connectionflush_packets
- force a QUIC packet flush, to emit any buffered actionscommit
- finish action input, open the connection and execute all actionswait
- specify a client-side wait, in order to provide some delay between action emitsquit
- quit without opening a connectionTo send two HTTP/3 requests, would require the sequence headers
and commit
:
By default, the client prints some information about the QUIC connection state,
transmitted/received frames, and stream lifecycle. Additional information can be
printed using the RUST_LOG=trace
environment variable, which will emit a
JSON-serialized ConnectionSummary. If the QLOGDIR
environment variable is provided, then a qlog file containing the full details
of QUIC and HTTP/3 will be written.
In some cases, it can be useful to ignore server name resolution and connect to
a server at a specific IP address, using the indicated SNI. The --connect-to
option can be used to specificy the desired IP and port.
By default, h3i records all of the actions to a qlog file
<timestamp>-qlog.sqlog
. This can be replayed against the same server, or a
different server, using the --qlog-input
option. For example:
cargo run cloudflare-quic.com --qlog-input <timestamp>-qlog.sqlog
cargo run blog.cloudflare.com --qlog-input <timestamp>-qlog.sqlog
Note that :authority
or host
headers may need to be re-written to match the target server, depending on the use case.
The file uses a custom qlog schema that augments the QUIC schema and HTTP/3 schema.
h3i is also provided as a library, which allows programmatic control over HTTP/3 client behavior. This is useful for writing test cases.
The key components of the library are actions, client runner, connection summary, and stream map.
Actions are small operations such as sending HTTP/3 frames or managing QUIC streams. Each independent use case for h3i requires its own collection of Actions, that h3i iterates over in sequence and executes.
To emulate the CLI example from above, all that is required is a single action:
// The set of request headers
let headers = headers: vec![
Header::new(b":method", b"GET"),
Header::new(b":scheme", b"https"),
Header::new(b":authority", b"cloudflare-quic.com"),
Header::new(b":path", b"/"),
Header::new(b"user-agent", b"h3i")
];
let send_headers_action = send_headers_frame(0, true, headers);
let actions = vec![send_headers_action];
Applications using the library can invoke the client runner via sync_client::connect(). This requires a set of configuration parameters and an actions vector.
let config = pub struct Config {
host_port: "cloudflare-quic.com",
.. // other fields omitted for brevity
};
let summary = sync_client::connect(&config, &actions);
This is the core "output" struct. It "summarizes" the connection by providing a view into what was received on each stream (see StreamMap
below). It also includes statistics about the connection and the QUIC paths that comprises the connection. Lastly, it includes details as to why the connection closed: a timeout, a peer or local error, etc.
The StreamMap
is the second core struct in the library. It is a map of received frames keyed on stream ID, together with a variety of helper methods to check or validate them.
These frames are of type H3iFrame, which abstract or wrap Quiche's own quiche::h3::Frame
type to make them easier to work with. For example, the H3iFrame::Headers
variant contains a headers list without QPACK encoding, making it easy to read or validate. Some frames have no additional features; these are simply wrapped in the H3iFrame::QuicheH3
variant.
h3i has been inspired by several other tools and techniques used across the HTTP and QUIC ecosystem: