mbox series

[ipsec-next,v11,0/4] xfrm: Introduce direction attribute for SA

Message ID cover.1713737786.git.antony.antony@secunet.com (mailing list archive)
Headers show
Series xfrm: Introduce direction attribute for SA | expand

Message

Antony Antony April 21, 2024, 10:23 p.m. UTC
Hi,

Inspired by the upcoming IP-TFS patch set, and confusions experienced in
the past due to lack of direction attribute on SAs, add a new direction
"dir" attribute. It aims to streamline the SA configuration process and
enhance the clarity of existing SA attributes.

This patch set introduces the 'dir' attribute to SA, aka xfrm_state,
('in' for input or 'out' for output). Alsp add validations of existing
direction-specific SA attributes during configuration and in the data
path lookup.

This change would not affect any existing use case or way of configuring
SA. You will notice improvements when the new 'dir' attribute is set.

Antony Antony (4):
  xfrm: Add Direction to the SA in or out
  xfrm: Add dir validation to "out" data path lookup
  xfrm: Add dir validation to "in" data path lookup
  xfrm: Restrict SA direction attribute to specific netlink message types

 include/net/xfrm.h        |   1 +
 include/uapi/linux/snmp.h |   2 +
 include/uapi/linux/xfrm.h |   6 ++
 net/ipv6/xfrm6_input.c    |   7 ++
 net/xfrm/xfrm_compat.c    |   7 +-
 net/xfrm/xfrm_device.c    |   6 ++
 net/xfrm/xfrm_input.c     |  11 +++
 net/xfrm/xfrm_policy.c    |   6 ++
 net/xfrm/xfrm_proc.c      |   2 +
 net/xfrm/xfrm_replay.c    |   3 +-
 net/xfrm/xfrm_state.c     |   5 ++
 net/xfrm/xfrm_user.c      | 147 ++++++++++++++++++++++++++++++++++++--
 12 files changed, 194 insertions(+), 9 deletions(-)

--
2.30.2

Comments

Jakub Kicinski April 22, 2024, 1:05 p.m. UTC | #1
On Mon, 22 Apr 2024 00:23:58 +0200 Antony Antony wrote:
> Hi,
> 
> Inspired by the upcoming IP-TFS patch set, and confusions experienced in
> the past due to lack of direction attribute on SAs, add a new direction
> "dir" attribute. It aims to streamline the SA configuration process and
> enhance the clarity of existing SA attributes.
> 
> This patch set introduces the 'dir' attribute to SA, aka xfrm_state,
> ('in' for input or 'out' for output). Alsp add validations of existing
> direction-specific SA attributes during configuration and in the data
> path lookup.
> 
> This change would not affect any existing use case or way of configuring
> SA. You will notice improvements when the new 'dir' attribute is set.

This breaks the xfrm_policy.sh selftests.
Antony Antony April 23, 2024, 12:34 p.m. UTC | #2
On Mon, Apr 22, 2024 at 06:05:38AM -0700, Jakub Kicinski via Devel wrote:
> On Mon, 22 Apr 2024 00:23:58 +0200 Antony Antony wrote:
> > Hi,
> > 
> > Inspired by the upcoming IP-TFS patch set, and confusions experienced in
> > the past due to lack of direction attribute on SAs, add a new direction
> > "dir" attribute. It aims to streamline the SA configuration process and
> > enhance the clarity of existing SA attributes.
> > 
> > This patch set introduces the 'dir' attribute to SA, aka xfrm_state,
> > ('in' for input or 'out' for output). Alsp add validations of existing
> > direction-specific SA attributes during configuration and in the data
> > path lookup.
> > 
> > This change would not affect any existing use case or way of configuring
> > SA. You will notice improvements when the new 'dir' attribute is set.
> 
> This breaks the xfrm_policy.sh selftests.

I mised spd lookup use diffrent nla_policy array than xfrma_policy.
I fixed it in v12.


> -- 
> pw-bot: au
> --