]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
xfrm: iptfs: reset runtime state when cloning SAs
authorShaomin Chen <eeesssooo020@gmail.com>
Wed, 20 May 2026 18:07:23 +0000 (02:07 +0800)
committerSteffen Klassert <steffen.klassert@secunet.com>
Tue, 26 May 2026 08:35:28 +0000 (10:35 +0200)
iptfs_clone_state() clones the IPTFS mode data with kmemdup(). This
copies runtime objects which must not be shared with the original SA,
including the embedded sk_buff_head, hrtimers, spinlock, and in-flight
reassembly/reorder state.

If xfrm_state_migrate() fails after clone_state() but before the later
init_state() call has reinitialized those fields, the cloned state can be
destroyed by xfrm_state_gc_task() with list and timer state copied from the
original SA. With queued packets this lets the clone splice and free skbs
owned by the original IPTFS queue, leading to use-after-free and
double-free reports in iptfs_destroy_state() and skb release paths.

Reinitialize the clone's runtime state before publishing it through
x->mode_data. Because clone_state() now publishes a destroyable mode_data
object before init_state(), take the mode callback module reference there.
Avoid taking it again from __iptfs_init_state() for the same object.

Fixes: 0e4fbf013fa5 ("xfrm: iptfs: add user packet (tunnel ingress) handling")
Cc: stable@vger.kernel.org
Signed-off-by: Shaomin Chen <eeesssooo020@gmail.com>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
net/xfrm/xfrm_iptfs.c

index 97bc979e55baf959161d5fb38522dd0a984f60d6..6c6bbc0405170c9f19ff4771bf5bf19e46d1b2ea 100644 (file)
@@ -2650,7 +2650,8 @@ static void __iptfs_init_state(struct xfrm_state *x,
        x->props.enc_hdr_len = sizeof(struct ip_iptfs_hdr);
 
        /* Always keep a module reference when x->mode_data is set */
-       __module_get(x->mode_cbs->owner);
+       if (x->mode_data != xtfs)
+               __module_get(x->mode_cbs->owner);
 
        x->mode_data = xtfs;
        xtfs->x = x;
@@ -2658,22 +2659,39 @@ static void __iptfs_init_state(struct xfrm_state *x,
 
 static int iptfs_clone_state(struct xfrm_state *x, struct xfrm_state *orig)
 {
+       struct skb_wseq *w_saved = NULL;
        struct xfrm_iptfs_data *xtfs;
 
        xtfs = kmemdup(orig->mode_data, sizeof(*xtfs), GFP_KERNEL);
        if (!xtfs)
                return -ENOMEM;
 
-       xtfs->ra_newskb = NULL;
        if (xtfs->cfg.reorder_win_size) {
-               xtfs->w_saved = kzalloc_objs(*xtfs->w_saved,
-                                            xtfs->cfg.reorder_win_size);
-               if (!xtfs->w_saved) {
+               w_saved = kzalloc_objs(*w_saved, xtfs->cfg.reorder_win_size);
+               if (!w_saved) {
                        kfree_sensitive(xtfs);
                        return -ENOMEM;
                }
        }
+       xtfs->w_saved = w_saved;
+
+       __skb_queue_head_init(&xtfs->queue);
+       xtfs->queue_size = 0;
+       hrtimer_setup(&xtfs->iptfs_timer, iptfs_delay_timer, CLOCK_MONOTONIC,
+                     IPTFS_HRTIMER_MODE);
+
+       spin_lock_init(&xtfs->drop_lock);
+       hrtimer_setup(&xtfs->drop_timer, iptfs_drop_timer, CLOCK_MONOTONIC,
+                     IPTFS_HRTIMER_MODE);
 
+       xtfs->w_seq_set = false;
+       xtfs->w_wantseq = 0;
+       xtfs->w_savedlen = 0;
+       xtfs->ra_newskb = NULL;
+       xtfs->ra_wantseq = 0;
+       xtfs->ra_runtlen = 0;
+
+       __module_get(x->mode_cbs->owner);
        x->mode_data = xtfs;
        xtfs->x = x;