mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-23 22:14:54 +00:00
net: tftp: Fix for DATA ACK for block count out of order
In rfc7440, if an ACK is not received by the server or if the last data block in a window is dropped, the server will timeout and retransmit the window. In this case, the block count received will be less than the internal block count. In this case, the client should not ACK. ACK should only be sent if the received block count is greater than the expected block count. Signed-off-by: Sean Edmond <seanedmond@linux.microsoft.com> Reviewed-by: Ramon Fried <rfried.dev@gmail.com>
This commit is contained in:
parent
c3d9736d54
commit
21a265c0d1
1 changed files with 8 additions and 0 deletions
|
@ -592,6 +592,14 @@ static void tftp_handler(uchar *pkt, unsigned dest, struct in_addr sip,
|
|||
debug("Received unexpected block: %d, expected: %d\n",
|
||||
ntohs(*(__be16 *)pkt),
|
||||
(ushort)(tftp_cur_block + 1));
|
||||
/*
|
||||
* Only ACK if the block count received is greater than
|
||||
* the expected block count, otherwise skip ACK.
|
||||
* (required to properly handle the server retransmitting
|
||||
* the window)
|
||||
*/
|
||||
if ((ushort)(tftp_cur_block + 1) - (short)(ntohs(*(__be16 *)pkt)) > 0)
|
||||
break;
|
||||
/*
|
||||
* If one packet is dropped most likely
|
||||
* all other buffers in the window
|
||||
|
|
Loading…
Add table
Reference in a new issue