summaryrefslogtreecommitdiff
path: root/net/xfrm
diff options
context:
space:
mode:
authorShannon Nelson <shannon.nelson@oracle.com>2018-08-23 00:38:10 +0300
committerSteffen Klassert <steffen.klassert@secunet.com>2018-08-29 09:04:44 +0300
commit4a132095dd64fefabdc5dad1cd9e9809b126e582 (patch)
treedfda8c43c591cd8266a5a3e0f0ace7dc513f1ef3 /net/xfrm
parent0c05f98376678098e9a4a8bc06839797ea3ee942 (diff)
downloadlinux-4a132095dd64fefabdc5dad1cd9e9809b126e582.tar.xz
xfrm: allow driver to quietly refuse offload
If the "offload" attribute is used to create an IPsec SA and the .xdo_dev_state_add() fails, the SA creation fails. However, if the "offload" attribute is used on a device that doesn't offer it, the attribute is quietly ignored and the SA is created without an offload. Along the same line of that second case, it would be good to have a way for the device to refuse to offload an SA without failing the whole SA creation. This patch adds that feature by allowing the driver to return -EOPNOTSUPP as a signal that the SA may be fine, it just can't be offloaded. This allows the user a little more flexibility in requesting offloads and not needing to know every detail at all times about each specific NIC when trying to create SAs. Signed-off-by: Shannon Nelson <shannon.nelson@oracle.com> Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
Diffstat (limited to 'net/xfrm')
-rw-r--r--net/xfrm/xfrm_device.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/net/xfrm/xfrm_device.c b/net/xfrm/xfrm_device.c
index 5611b7521020..3a1d9d6aefb4 100644
--- a/net/xfrm/xfrm_device.c
+++ b/net/xfrm/xfrm_device.c
@@ -192,9 +192,13 @@ int xfrm_dev_state_add(struct net *net, struct xfrm_state *x,
err = dev->xfrmdev_ops->xdo_dev_state_add(x);
if (err) {
+ xso->num_exthdrs = 0;
+ xso->flags = 0;
xso->dev = NULL;
dev_put(dev);
- return err;
+
+ if (err != -EOPNOTSUPP)
+ return err;
}
return 0;