]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
wireguard: queueing: preserve flow hash across packet scrubbing
authorJason A. Donenfeld <Jason@zx2c4.com>
Wed, 20 May 2020 04:49:29 +0000 (22:49 -0600)
committerDavid S. Miller <davem@davemloft.net>
Thu, 21 May 2020 03:55:09 +0000 (20:55 -0700)
It's important that we clear most header fields during encapsulation and
decapsulation, because the packet is substantially changed, and we don't
want any info leak or logic bug due to an accidental correlation. But,
for encapsulation, it's wrong to clear skb->hash, since it's used by
fq_codel and flow dissection in general. Without it, classification does
not proceed as usual. This change might make it easier to estimate the
number of innerflows by examining clustering of out of order packets,
but this shouldn't open up anything that can't already be inferred
otherwise (e.g. syn packet size inference), and fq_codel can be disabled
anyway.

Furthermore, it might be the case that the hash isn't used or queried at
all until after wireguard transmits the encrypted UDP packet, which
means skb->hash might still be zero at this point, and thus no hash
taken over the inner packet data. In order to address this situation, we
force a calculation of skb->hash before encrypting packet data.

Of course this means that fq_codel might transmit packets slightly more
out of order than usual. Toke did some testing on beefy machines with
high quantities of parallel flows and found that increasing the
reply-attack counter to 8192 takes care of the most pathological cases
pretty well.

Reported-by: Dave Taht <dave.taht@gmail.com>
Reviewed-and-tested-by: Toke Høiland-Jørgensen <toke@toke.dk>
Fixes: e7096c131e51 ("net: WireGuard secure network tunnel")
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/wireguard/messages.h
drivers/net/wireguard/queueing.h
drivers/net/wireguard/receive.c
drivers/net/wireguard/send.c

index b8a7b9ce32ba7a54d18fcadb326f27431428a02c..208da72673fc020f6d91e68fb7e69c597768b662 100644 (file)
@@ -32,7 +32,7 @@ enum cookie_values {
 };
 
 enum counter_values {
-       COUNTER_BITS_TOTAL = 2048,
+       COUNTER_BITS_TOTAL = 8192,
        COUNTER_REDUNDANT_BITS = BITS_PER_LONG,
        COUNTER_WINDOW_SIZE = COUNTER_BITS_TOTAL - COUNTER_REDUNDANT_BITS
 };
index 3432232afe061317ce85cf344fccff2078811547..c58df439dbbe09bf50656707a7d6cd86171886a7 100644 (file)
@@ -87,12 +87,20 @@ static inline bool wg_check_packet_protocol(struct sk_buff *skb)
        return real_protocol && skb->protocol == real_protocol;
 }
 
-static inline void wg_reset_packet(struct sk_buff *skb)
+static inline void wg_reset_packet(struct sk_buff *skb, bool encapsulating)
 {
+       u8 l4_hash = skb->l4_hash;
+       u8 sw_hash = skb->sw_hash;
+       u32 hash = skb->hash;
        skb_scrub_packet(skb, true);
        memset(&skb->headers_start, 0,
               offsetof(struct sk_buff, headers_end) -
                       offsetof(struct sk_buff, headers_start));
+       if (encapsulating) {
+               skb->l4_hash = l4_hash;
+               skb->sw_hash = sw_hash;
+               skb->hash = hash;
+       }
        skb->queue_mapping = 0;
        skb->nohdr = 0;
        skb->peeked = 0;
index 3bb5b9ae7cd15634df6f4700f223618e8f4b456b..d0eebd90c9d50dd6f3f2a70f8da4dd8d11917722 100644 (file)
@@ -484,7 +484,7 @@ int wg_packet_rx_poll(struct napi_struct *napi, int budget)
                if (unlikely(wg_socket_endpoint_from_skb(&endpoint, skb)))
                        goto next;
 
-               wg_reset_packet(skb);
+               wg_reset_packet(skb, false);
                wg_packet_consume_data_done(peer, skb, &endpoint);
                free = false;
 
index 6687db69980351c6ba68bb5757626a7dbdbd0e56..2f5119ff93d8f6e3a9e0107231f7dae4767e4e57 100644 (file)
@@ -167,6 +167,11 @@ static bool encrypt_packet(struct sk_buff *skb, struct noise_keypair *keypair)
        struct sk_buff *trailer;
        int num_frags;
 
+       /* Force hash calculation before encryption so that flow analysis is
+        * consistent over the inner packet.
+        */
+       skb_get_hash(skb);
+
        /* Calculate lengths. */
        padding_len = calculate_skb_padding(skb);
        trailer_len = padding_len + noise_encrypted_len(0);
@@ -295,7 +300,7 @@ void wg_packet_encrypt_worker(struct work_struct *work)
                skb_list_walk_safe(first, skb, next) {
                        if (likely(encrypt_packet(skb,
                                        PACKET_CB(first)->keypair))) {
-                               wg_reset_packet(skb);
+                               wg_reset_packet(skb, true);
                        } else {
                                state = PACKET_STATE_DEAD;
                                break;