Semantically, whether m_tx_relay is a nullptr can mean that either the connection is a block-relay-only connection, or that we’re relaying transactions on this connection. While there’s currently a 1-1 mapping between those ideas right now, separate the two concepts more clearly so that in the future it’ll be easier to reason about changes, particularly if we add more connection types which do not relay transactions.
Replace m_tx_relay/nullptr checks in net_processing.cpp #20676
pull sdaftuar wants to merge 1 commits into bitcoin:master from sdaftuar:2020-12-refactor-m_tx_relay changing 2 files +24 −14-
sdaftuar commented at 7:08 pm on December 16, 2020: member
-
Replace m_tx_relay/nullptr checks in net_processing.cpp
Semantically, whether m_tx_relay is a nullptr can mean that either the connection is a block-relay-only connection, or that we're relaying transactions on this connection. While there's currently a 1-1 mapping between those ideas right now, separate the two concepts more clearly so that in the future it'll be easier to reason about changes, particularly if we add more connection types which do not relay transactions.
-
sdaftuar commented at 7:12 pm on December 16, 2020: member
This kind of refactor was requested in #19858 (comment). While I think it’s helpful for
net_processing
code to be using a more meaningful function name rather than check for nullptr in all these places, it’s not entirely clear to me whether it would be best to have the helper function be checking the connection type, or just checking whetherm_tx_relay
is nullptr or not.I opted for the latter approach, because right now (nearly) all those nullptr checks are done before dereferencing
m_tx_relay
, so I didn’t like the idea of getting rid of the explicit check that the object isn’t null. But if others think that this is not the best way to clean this up, I’m open to suggestions. -
laanwj commented at 7:47 pm on December 16, 2020: memberCode review ACK c80de7834ad59fba93548024fc96f541f02b60f7, this does not change behavior
-
DrahtBot added the label P2P on Dec 16, 2020
-
jnewbery commented at 9:31 pm on December 16, 2020: memberConcept ACK. This seems much clearer to me.
-
sipa commented at 9:35 pm on December 16, 2020: memberutACK c80de7834ad59fba93548024fc96f541f02b60f7
-
ajtowns commented at 10:11 pm on December 16, 2020: member
This idea was discussed in the original blocks only PR, https://github.com/bitcoin/bitcoin/pull/15759/files#r310366329 – the reasoning was the explicit
== nullptr
checks makes it clear that the following dereferencing is safe. That still seems like it makes sense to me, so I’m -0.5 (or however we’re writing weak-nack) on this.I tend to think
if (m_tx_relay != nullptr && pfrom.ShouldThisPeerGetThisTx(tx))
would be a better way to separate the concepts – makes it clear dereferencing is safe, and the function only needs to deal with the policy decision being made, node code safety. If we know relay is never warranted for this peer, settingm_tx_relay = nullptr
atVERACK
not just initial connection might be an option (in which case writingif (m_tx_relay != nullptr) { Assume(pfrom.ThisPeerShouldGetTheseTxs()); ... }
might make sense) -
sdaftuar commented at 10:25 pm on December 16, 2020: member
This idea was discussed in the original blocks only PR, https://github.com/bitcoin/bitcoin/pull/15759/files#r310366329 – the reasoning was the explicit
== nullptr
checks makes it clear that the following dereferencing is safe. @ajtowns Thanks for the reminder of that discussion, I had forgotten about it! I guess my uneasiness about removingnullptr
checks altogether has remained consistent, though I guess I’ve moved a bit on thinking that it’s also hard to reason about what exactly thenullptr
check means.It occurs to me that the problem may be a bigger issue around the separation between
net
andnet_processing
. I think in many ways we want the net_processing layer concerned only about connection types and high level behaviors and not implementation details about the data structures that implement the behaviors. But in fact we dive into the internals ofCNode
all the time in net_processing (eg grabbing locks and accessing data members directly), which makes attempts to use higher-level abstraction seem incompatible with the rest of the code – if there’s no way around knowing the implementation details, then what is the point of introducing some abstraction?I tend to think
if (m_tx_relay != nullptr && pfrom.ShouldThisPeerGetThisTx(tx))
would be a better way to separate the concepts – makes it clear dereferencing is safe, and the function only needs to deal with the policy decision being made, node code safety. If we know relay is never warranted for this peer, settingm_tx_relay = nullptr
atVERACK
not just initial connection might be an option (in which case writingif (m_tx_relay != nullptr) { Assume(pfrom.ThisPeerShouldGetTheseTxs()); ... }
might make sense)I would also be okay with that an approach that checks for nullptr explicitly and also does the
Assume()
thing on some other function that is checking the connection type (or vice versa) – do other reviewers have concerns with @ajtowns’ suggestion? -
ajtowns commented at 10:40 pm on December 16, 2020: member
But in fact we dive into the internals of
CNode
all the time in net_processing (eg grabbing locks and accessing data members directly),Maybe that will change as @jnewbery’s net/net_processing separation stuff (#19398) progresses? It proposes moving all of
m_tx_relay
out of net/CNode into net_processing. -
DrahtBot commented at 1:44 am on December 17, 2020: member
The following sections might be updated with supplementary metadata relevant to reviewers and maintainers.
Conflicts
Reviewers, this pull request conflicts with the following ones:
- #20083 (p2p: Disconnect, not discourage, misbehaving NODE_BLOOM peers by MarcoFalke)
- #18819 (net: Replace cs_feeFilter with simple std::atomic by MarcoFalke)
If you consider this pull request important, please also help to review the conflicting pull requests. Ideally, start with the one that should be merged first.
-
jnewbery commented at 8:35 am on December 17, 2020: member
Code review ACK c80de7834ad59fba93548024fc96f541f02b60f7
Maybe that will change as @jnewbery’s net/net_processing separation stuff (#19398) progresses? It proposes moving all of m_tx_relay out of net/CNode into net_processing.
That’s the hope. Eventually there should be much less reaching across the net/net_processing divide. net_processing eventually will need to access almost nothing from CNode.
It might make sense to also have a
const ConnectionType m_conn_type
as a member ofPeer
(similar to how we haveaddress
andm_is_inbound
inCNodeState
). All of theseRelayAddrsWithConn
,RelayTxsWithConn
, etc functions are net_processing concerns, so it doesn’t make sense that they exist in net. -
sdaftuar commented at 4:02 pm on December 17, 2020: member
It occurs to me that moving
m_tx_relay
to net_processing might change the way we think about the abstraction. I’m okay with closing this PR and deferring how we think about the relationship between the two until @jnewbery’s work to move it lands… It does seem like this PR may be near-sighted in thinking about hownet_processing
should understand the peer connection behavior, if there are bigger changes in the works?I could also just add an assert that
m_tx_relay != nullptr
after invoking RelayTxsWithConn(), wherever we need it? That would be redundant (as what we’re doing is first checking whether it’s nullptr in that function, then asserting right afterward), but it would document the understanding of how this works insidenet_processing
, which may be what we’re aiming for. @ajtowns What do you think? -
jnewbery commented at 5:55 pm on December 17, 2020: member
I think that this is an improvement, but also agree that the same lines will need to be changed again when the tx inventory data is moved into net_processing, so it might make sense to just leave this for now.
The next PR in the net/net_processing split series is #19829 if you’d like to help with that work.
-
sdaftuar closed this on Dec 17, 2020
-
DrahtBot locked this on Feb 15, 2022
This is a metadata mirror of the GitHub repository bitcoin/bitcoin. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2024-11-21 12:12 UTC
More mirrored repositories can be found on mirror.b10c.me