-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ambiguous Reason Code in Disconnection Message #5989
Comments
Except block signature verification failure, is there any other usual peer disconnection scenario? |
@abn2357 There are many scenarios where the connection with the peer will be disconnected, such as: handshake failure, data acquisition timeout, receiving messages sent by the peer that do not conform to the protocol, etc. |
Are there any other disconnect scenarios that have an ambiguous reason code? |
I later discovered a scenario where the reason code was unreasonable:
When an error occurs, the error code of UNEXPECTED_IDENTITY will be returned, but no identity-related validity check is actually performed. |
@jwrct I see that BAD_PROTOCOL is used in many scenarios. When I receive a disconnection reason of BAD_PROTOCOL, how can I know which scenario the peer has triggered? Do you need to solve this problem? |
@xxo1shine Can you specifically list the scenarios where BAD_PROTOCOL would be used? Also, I think you might want to consider whether it's appropriate to define this as a problem, since the original design was to carry the BAD_PROTOCOL reason code for all behaviors that do not comply with the protocol and lead to disconnection. |
@jwrct Have there been any new discoveries since the last reply? |
@fyyhtx Apart from the two scenarios mentioned earlier, no new ambiguous reason codes have been found so far. |
So, how to make disconnected message more clear? give more detailed reason behind UNKNOWN ? |
@317787106 It is sufficient to use reasonable and accurate reason codes based on the specific scenario, for example, using BAD_BLOCK when the block validation signature fails, and using INCOMPATIBLE_PROTOCOL when the handshake message verification fails. |
@jwrct For example,
When I receive a disconnect message from node A with reason code I just want to know whether this issue is going to solve this problem, or whether there are plans to solve this problem in the future, or whether this problem needs to be solved. |
@xxo1shine I understand that you mean to refine the scenarios of BAD_PROTOCOL and then provide more specific reason codes based on different scenarios, right? I think this is worth discussing, and we can ask for more user suggestions. |
Software Versions
Expected behaviour
When disconnected, the exact reason for the disconnection can be obtained through the disconnection message.
Actual behaviour
When running Java-tron, I found that if I wanted to disconnect a peer in certain scenarios, the disconnect message sent carried an ambiguous reason code. You can take a look at the example below.
Example:
The node receives the block sent by the peer and then disconnects the peer due to block signature verification failure, but the reason for the disconnection message being sent is UNKNOWN.
Therefore, after receiving the disconnection message, the peer cannot accurately know the specific reason for being disconnected. I think the reason code carried in the disconnect message in this example can be clearer. In addition, do you think it is necessary to check whether there are other disconnection scenarios with similar problems?
Frequency
It occurs every time in the above scenarios.
Steps to reproduce the behaviour
Send a block with an invalid signature to the node.
Backtrace
When submitting logs: please submit them as text and not screenshots.
The text was updated successfully, but these errors were encountered: