瀏覽代碼

socket/dhcp: Use random transaction_id instead of sequential.

This is a minor security improvement against blind packet spoofing, since
it adds more entropy to the packets.
Dario Nieuwenhuis 3 年之前
父節點
當前提交
52e174f2e2
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      src/socket/dhcpv4.rs

+ 2 - 2
src/socket/dhcpv4.rs

@@ -340,9 +340,9 @@ impl Dhcpv4Socket {
         // 0x0f * 4 = 60 bytes.
         const MAX_IPV4_HEADER_LEN: usize = 60;
 
-        // We don't directly increment transaction_id because sending the packet
+        // We don't directly modify self.transaction_id because sending the packet
         // may fail. We only want to update state after succesfully sending.
-        let next_transaction_id = self.transaction_id + 1;
+        let next_transaction_id = crate::rand::rand_u32();
 
         let mut dhcp_repr = DhcpRepr {
             message_type: DhcpMessageType::Discover,