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

Binary data truncated when sending to AGWPE client #367

Closed
mfncooper opened this issue Dec 18, 2021 · 1 comment
Closed

Binary data truncated when sending to AGWPE client #367

mfncooper opened this issue Dec 18, 2021 · 1 comment

Comments

@mfncooper
Copy link

mfncooper commented Dec 18, 2021

In the server_send_monitored() function in server.c, binary data is being truncated and incompletely sent to the AGWPE client. The bug is caused by the use of strlcat() to copy the data on this line:

https://github.com/wb2osz/direwolf/blob/master/src/server.c#L925

Since NET/ROM data is binary, and frequently contains a null byte (e.g. as a sequence number), an AGWPE client does not receive the complete NET/ROM data, and cannot process it as such.

Also, I believe it is incorrect for Direwolf to be appending a '\r' to the end of the data here (on the next line, line 926). For binary data, it is certainly not appropriate, and for text data, it is very likely introducing inappropriate line ends where text is broken up across packets. The body of the I frame should contain only the binary data from the original AX.25 packet.

@wb2osz
Copy link
Owner

wb2osz commented Dec 19, 2021

Thank you for your feedback.
After reviewing the interface specification, you are absolutely correct that binary data in the information part, of I and UI frames, should be handled properly.
This is fixed in the 'dev' branch.

The length issue requires some explanation.
The interface specification states that the client application should use the "Len=" value, from the header, to obtain the size of the information part of the frame.


The server might add additional bytes to the message, over the network, and the client should ignore them when interpreting the information part of the frame. In the examples we see an extra \r and \0 being added.

@wb2osz wb2osz closed this as completed Dec 19, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants