net/tcp: Introduce TCP_AO setsockopt()s
authorDmitry Safonov <dima@arista.com>
Mon, 23 Oct 2023 19:21:55 +0000 (20:21 +0100)
committerDavid S. Miller <davem@davemloft.net>
Fri, 27 Oct 2023 09:35:44 +0000 (10:35 +0100)
commit4954f17ddefc51d218625dcdfaf422a253dad3fa
tree14914f6ed387921071b4c3af5e859d377b314ef5
parentc845f5f3590ef4669fe5464f8a42be6442cd174b
net/tcp: Introduce TCP_AO setsockopt()s

Add 3 setsockopt()s:
1. TCP_AO_ADD_KEY to add a new Master Key Tuple (MKT) on a socket
2. TCP_AO_DEL_KEY to delete present MKT from a socket
3. TCP_AO_INFO to change flags, Current_key/RNext_key on a TCP-AO sk

Userspace has to introduce keys on every socket it wants to use TCP-AO
option on, similarly to TCP_MD5SIG/TCP_MD5SIG_EXT.
RFC5925 prohibits definition of MKTs that would match the same peer,
so do sanity checks on the data provided by userspace. Be as
conservative as possible, including refusal of defining MKT on
an established connection with no AO, removing the key in-use and etc.

(1) and (2) are to be used by userspace key manager to add/remove keys.
(3) main purpose is to set RNext_key, which (as prescribed by RFC5925)
is the KeyID that will be requested in TCP-AO header from the peer to
sign their segments with.

At this moment the life of ao_info ends in tcp_v4_destroy_sock().

Co-developed-by: Francesco Ruggeri <fruggeri@arista.com>
Signed-off-by: Francesco Ruggeri <fruggeri@arista.com>
Co-developed-by: Salam Noureddine <noureddine@arista.com>
Signed-off-by: Salam Noureddine <noureddine@arista.com>
Signed-off-by: Dmitry Safonov <dima@arista.com>
Acked-by: David Ahern <dsahern@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/sockptr.h
include/net/tcp.h
include/net/tcp_ao.h
include/uapi/linux/tcp.h
net/ipv4/Makefile
net/ipv4/tcp.c
net/ipv4/tcp_ao.c [new file with mode: 0644]
net/ipv4/tcp_ipv4.c
net/ipv6/Makefile
net/ipv6/tcp_ao.c [new file with mode: 0644]
net/ipv6/tcp_ipv6.c