xfrm: Fix transport mode skb control buffer usage.
authorSteffen Klassert <steffen.klassert@secunet.com>
Mon, 19 Mar 2018 06:15:39 +0000 (07:15 +0100)
committerSteffen Klassert <steffen.klassert@secunet.com>
Fri, 23 Mar 2018 06:56:04 +0000 (07:56 +0100)
A recent commit introduced a new struct xfrm_trans_cb
that is used with the sk_buff control buffer. Unfortunately
it placed the structure in front of the control buffer and
overlooked that the IPv4/IPv6 control buffer is still needed
for some layer 4 protocols. As a result the IPv4/IPv6 control
buffer is overwritten with this structure. Fix this by setting
a apropriate header in front of the structure.

Fixes acf568ee859f ("xfrm: Reinject transport-mode packets ...")
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
net/xfrm/xfrm_input.c

index 1472c08579756ec8588e7f5537c8ac162fa28af0..81788105c164ec1c681adc0e55660ac509c9b660 100644 (file)
@@ -26,6 +26,12 @@ struct xfrm_trans_tasklet {
 };
 
 struct xfrm_trans_cb {
+       union {
+               struct inet_skb_parm    h4;
+#if IS_ENABLED(CONFIG_IPV6)
+               struct inet6_skb_parm   h6;
+#endif
+       } header;
        int (*finish)(struct net *net, struct sock *sk, struct sk_buff *skb);
 };