The channel_t is_client flag is inaccurate: relays set it when the other end uses a CREATE_FAST cell, but usecreatefast is set to 0 in the consensus.
This means that the only time CREATE_FAST is used is when a relay gets an extend request without an ntor key, and the purpose of the circuit is not one of the hidden service purposes where TAP is allowed.
See should_use_create_fast_for_circuit() for details.
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items 0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items 0
Link issues together to show that they're related.
Learn more.
See my branch connection-with-client which fixes the channel flag. Should this be equivalent to the connection flag? Should we set one, and then make both accessors use it?
Trac: Status: new to needs_review Points: N/Ato 0.5
The flag in or_connection_t was unused (there wasn't even an accessor), so I removed it with a note about how to get the channel value.
I added a comment noting that CREATE_FAST is a legacy mechanism for checking for clients.
We can create an accessor for this flag from an or_connection_t when we need it. (I suspect that the traffic padding code and custom measurement code might be interested in this flag from an or_connection.)
I also opened another ticket to check for places where we're identifying clients by their absence from the consensus: #21585 (moved).
I think the change in connection_or_check_valid_tls_handshake() may be wrong: This is about the certificate received in the TLS handshake, not the certificate received in the CERTS cell during the v3 Tor handshake. But in the v3 handshake, nobody provides a client certificate during TLS negotiation.
You can test this yourself by adding tor_assert(!has_cert || started_here), and running a test network. (Don't do this in real life, since it would crash whenever somebody tried running an ancient server and/or sending you a client TLS certificate by mistake.)
The other changes look okay to me. I would like to rename "channel_mark_client" to "channel_mark_as_client" and "channel_is_client" to "channel_comes_from_client" or something, but that's another ticket.
Trac: Reviewer: N/Ato nickm Status: needs_review to needs_revision
I think the change in connection_or_check_valid_tls_handshake() may be wrong: This is about the certificate received in the TLS handshake, not the certificate received in the CERTS cell during the v3 Tor handshake. But in the v3 handshake, nobody provides a client certificate during TLS negotiation.
I pushed a fixup to connection-with-client-v2 that reverts the connection_or_check_valid_tls_handshake() change.
The other changes look okay to me. I would like to rename "channel_mark_client" to "channel_mark_as_client" and "channel_is_client" to "channel_comes_from_client" or something, but that's another ticket.