2 * xfrm_device.c - IPsec device offloading code.
4 * Copyright (c) 2015 secunet Security Networks AG
7 * Steffen Klassert <steffen.klassert@secunet.com>
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
15 #include <linux/errno.h>
16 #include <linux/module.h>
17 #include <linux/netdevice.h>
18 #include <linux/skbuff.h>
19 #include <linux/slab.h>
20 #include <linux/spinlock.h>
23 #include <linux/notifier.h>
25 #ifdef CONFIG_XFRM_OFFLOAD
26 int validate_xmit_xfrm(struct sk_buff *skb, netdev_features_t features)
30 struct xfrm_offload *xo = xfrm_offload(skb);
36 x = skb->sp->xvec[skb->sp->len - 1];
37 if (xo->flags & XFRM_GRO || x->xso.flags & XFRM_OFFLOAD_INBOUND)
40 x->outer_mode->xmit(x, skb);
42 err = x->type_offload->xmit(x, skb, features);
44 XFRM_INC_STATS(xs_net(x), LINUX_MIB_XFRMOUTSTATEPROTOERROR);
48 skb_push(skb, skb->data - skb_mac_header(skb));
53 EXPORT_SYMBOL_GPL(validate_xmit_xfrm);
55 int xfrm_dev_state_add(struct net *net, struct xfrm_state *x,
56 struct xfrm_user_offload *xuo)
59 struct dst_entry *dst;
60 struct net_device *dev;
61 struct xfrm_state_offload *xso = &x->xso;
62 xfrm_address_t *saddr;
63 xfrm_address_t *daddr;
68 /* We don't yet support UDP encapsulation, TFC padding and ESN. */
69 if (x->encap || x->tfcpad || (x->props.flags & XFRM_STATE_ESN))
72 dev = dev_get_by_index(net, xuo->ifindex);
74 if (!(xuo->flags & XFRM_OFFLOAD_INBOUND)) {
75 saddr = &x->props.saddr;
79 daddr = &x->props.saddr;
82 dst = __xfrm_dst_lookup(net, 0, 0, saddr, daddr, x->props.family);
92 if (!dev->xfrmdev_ops || !dev->xfrmdev_ops->xdo_dev_state_add) {
99 xso->flags = xuo->flags;
101 err = dev->xfrmdev_ops->xdo_dev_state_add(x);
109 EXPORT_SYMBOL_GPL(xfrm_dev_state_add);
111 bool xfrm_dev_offload_ok(struct sk_buff *skb, struct xfrm_state *x)
114 struct dst_entry *dst = skb_dst(skb);
115 struct xfrm_dst *xdst = (struct xfrm_dst *)dst;
116 struct net_device *dev = x->xso.dev;
118 if (!x->type_offload || x->encap)
121 if ((x->xso.offload_handle && (dev == dst->path->dev)) &&
122 !dst->child->xfrm && x->type->get_mtu) {
123 mtu = x->type->get_mtu(x, xdst->child_mtu_cached);
128 if (skb_is_gso(skb) && skb_gso_validate_mtu(skb, mtu))
135 if (dev && dev->xfrmdev_ops && dev->xfrmdev_ops->xdo_dev_offload_ok)
136 return x->xso.dev->xfrmdev_ops->xdo_dev_offload_ok(skb, x);
140 EXPORT_SYMBOL_GPL(xfrm_dev_offload_ok);
143 static int xfrm_dev_register(struct net_device *dev)
145 if ((dev->features & NETIF_F_HW_ESP) && !dev->xfrmdev_ops)
147 if ((dev->features & NETIF_F_HW_ESP_TX_CSUM) &&
148 !(dev->features & NETIF_F_HW_ESP))
154 static int xfrm_dev_unregister(struct net_device *dev)
156 xfrm_policy_cache_flush();
160 static int xfrm_dev_feat_change(struct net_device *dev)
162 if ((dev->features & NETIF_F_HW_ESP) && !dev->xfrmdev_ops)
164 else if (!(dev->features & NETIF_F_HW_ESP))
165 dev->xfrmdev_ops = NULL;
167 if ((dev->features & NETIF_F_HW_ESP_TX_CSUM) &&
168 !(dev->features & NETIF_F_HW_ESP))
174 static int xfrm_dev_down(struct net_device *dev)
176 if (dev->features & NETIF_F_HW_ESP)
177 xfrm_dev_state_flush(dev_net(dev), dev, true);
179 xfrm_policy_cache_flush();
183 static int xfrm_dev_event(struct notifier_block *this, unsigned long event, void *ptr)
185 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
188 case NETDEV_REGISTER:
189 return xfrm_dev_register(dev);
191 case NETDEV_UNREGISTER:
192 return xfrm_dev_unregister(dev);
194 case NETDEV_FEAT_CHANGE:
195 return xfrm_dev_feat_change(dev);
198 return xfrm_dev_down(dev);
203 static struct notifier_block xfrm_dev_notifier = {
204 .notifier_call = xfrm_dev_event,
207 void __net_init xfrm_dev_init(void)
209 register_netdevice_notifier(&xfrm_dev_notifier);