Skip to content
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

Open
jwrct opened this issue Sep 6, 2024 · 4 comments
Open

Ambiguous Reason Code in Disconnection Message #5989

jwrct opened this issue Sep 6, 2024 · 4 comments
Labels

Comments

@jwrct
Copy link
Contributor

jwrct commented Sep 6, 2024

Software Versions

OS : Linux
JVM : Oracle Corporation 1.8.0_161 amd64
Git : a8ad2a169e58946b5b8de6ecf7b7ef5b8db05aff
Version : 4.7.5
Code : 18306

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.

10:17:39.014 WARN  [peerWorker-1] [net](P2pEventHandlerImpl.java:258) Message from /172.31.0.220:10850 process failed, type: BLOCK Num:58698013,ID:00000000037fa91d2bbac58ad77bd462a2878178e730eb93a4d3e00e21cbe52e, trx size: 4 type: (15, block sign error), detail: valid signature failed.

10:17:39.014 INFO  [peerWorker-1] [net](PeerConnection.java:175) Send peer /172.31.0.220:10850 message type: P2P_DISCONNECT reason: 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

[backtrace]

When submitting logs: please submit them as text and not screenshots.

@jwrct jwrct added the type:bug label Sep 6, 2024
@abn2357
Copy link

abn2357 commented Sep 6, 2024

Except block signature verification failure, is there any other usual peer disconnection scenario?

@jwrct
Copy link
Contributor Author

jwrct commented Sep 6, 2024

@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.

@fyyhtx
Copy link
Contributor

fyyhtx commented Sep 12, 2024

Are there any other disconnect scenarios that have an ambiguous reason code?

@jwrct
Copy link
Contributor Author

jwrct commented Sep 19, 2024

I later discovered a scenario where the reason code was unreasonable:
When handling HelloMessage in processHelloMessage function in HandshakeService, a check is made:

if (!msg.valid()) { 
  ...						
 peer.disconnect(ReasonCode.UNEXPECTED_IDENTITY);

When an error occurs, the error code of UNEXPECTED_IDENTITY will be returned, but no identity-related validity check is actually performed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants