]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/commit
Add TLS support to the kernel RPC.
authorRick Macklem <rmacklem@FreeBSD.org>
Sat, 22 Aug 2020 03:57:55 +0000 (03:57 +0000)
committerRick Macklem <rmacklem@FreeBSD.org>
Sat, 22 Aug 2020 03:57:55 +0000 (03:57 +0000)
commitab0c29af0512df1e40c30f1b361da7803594336e
treea4a060373915aec885ec1f16a58946209c74bf01
parent530134d2918e3f8d53cf51b89c0f4c5fd032c88b
Add TLS support to the kernel RPC.

An internet draft titled "Towards Remote Procedure Call Encryption By Default"
describes how TLS is to be used for Sun RPC, with NFS as an intended use case.
This patch adds client and server support for this to the kernel RPC,
using KERN_TLS and upcalls to daemons for the handshake, peer reset and
other non-application data record cases.

The upcalls to the daemons use three fields to uniquely identify the
TCP connection. They are the time.tv_sec, time.tv_usec of the connection
establshment, plus a 64bit sequence number. The time fields avoid problems
with re-use of the sequence number after a daemon restart.
For the server side, once a Null RPC with AUTH_TLS is received, kernel
reception on the socket is blocked and an upcall to the rpctlssd(8) daemon
is done to perform the TLS handshake.  Upon completion, the completion
status of the handshake is stored in xp_tls as flag bits and the reply to
the Null RPC is sent.
For the client, if CLSET_TLS has been set, a new TCP connection will
send the Null RPC with AUTH_TLS to initiate the handshake.  The client
kernel RPC code will then block kernel I/O on the socket and do an upcall
to the rpctlscd(8) daemon to perform the handshake.
If the upcall is successful, ct_rcvstate will be maintained to indicate
if/when an upcall is being done.

If non-application data records are received, the code does an upcall to
the appropriate daemon, which will do a SSL_read() of 0 length to handle
the record(s).

When the socket is being shut down, upcalls are done to the daemons, so
that they can perform SSL_shutdown() calls to perform the "peer reset".

The rpctlssd(8) and rpctlscd(8) daemons require a patched version of the
openssl library and, as such, will not be committed to head at this time.

Although the changes done by this patch are fairly numerous, there should
be no semantics change to the kernel RPC at this time.
A future commit to the NFS code will optionally enable use of TLS for NFS.
16 files changed:
sys/conf/files
sys/modules/krpc/Makefile
sys/rpc/auth.h
sys/rpc/clnt_bck.c
sys/rpc/clnt_rc.c
sys/rpc/clnt_vc.c
sys/rpc/krpc.h
sys/rpc/rpc_generic.c
sys/rpc/rpcsec_tls.h
sys/rpc/rpcsec_tls/auth_tls.c [new file with mode: 0644]
sys/rpc/rpcsec_tls/rpctls_impl.c [new file with mode: 0644]
sys/rpc/rpcsec_tls/rpctlscd.x [new file with mode: 0644]
sys/rpc/rpcsec_tls/rpctlssd.x [new file with mode: 0644]
sys/rpc/svc.h
sys/rpc/svc_auth.c
sys/rpc/svc_vc.c