瀏覽代碼

Don't reply to a TCP RST packet with another TCP RST packet.

Egor Karavaev 7 年之前
父節點
當前提交
921f2e36c8
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      src/iface/ethernet.rs

+ 4 - 0
src/iface/ethernet.rs

@@ -297,6 +297,10 @@ impl<'a, 'b, 'c, DeviceT: Device + 'a> Interface<'a, 'b, 'c, DeviceT> {
 
         // The packet wasn't handled by a socket, send a TCP RST packet.
         let tcp_packet = TcpPacket::new_checked(ip_payload)?;
+        if tcp_packet.rst() {
+            // Don't reply to a TCP RST packet with another TCP RST packet.
+            return Ok(Response::Nop)
+        }
         let tcp_reply_repr = TcpRepr {
             src_port:     tcp_packet.dst_port(),
             dst_port:     tcp_packet.src_port(),