s6-networking
Software
skarnet.org
The s6-ucspitlsc program
s6-ucspitlsc is a client-side program that establishes communication channels according to the UCSPI-TLS protocol, then execs into an application. Later, if the application sends a command, a TLS tunnel will be started and the application will be able to use it instead of communicating with the network via cleartext.
The point of this protocol, and this program, is to make it easy to implement commands like SMTP's STARTTLS without embedding a TLS stack in the client itself.
Interface
s6-ucspitlsc [ -S | -s ] [ -J | -j ] [ -Y | -y ] [ -Z | -z ] [ -v verbosity ] [ -K kimeout ] [ -k servername ] [ -6 rfd ] [ -7 wfd ] [ -- ] prog...
- s6-ucspitlsc expects to have an open TCP connection it can talk to on its (by default) descriptors 6 (for reading) and 7 (for writing).
- It forks and establishes communication channels between the parent and the child. The parent executes into prog...; the child remains and waits for a command.
- At any time, prog... can send a command to its control socket provided by s6-ucspitlsc, following the UCSPI-TLS protocol. Then the s6-ucspitlsc child will exec into an s6-tlsc-io process that will initiate the TLS connection, perform the handshake (expecting a TLS server on the other side of the network) and maintain a TLS tunnel. prog can use that TLS tunnel instead of talking directly to the network.
Exit codes
- 100: wrong usage.
- 111: system call failed.
Normally the parent s6-ucspitlsc process execs into prog... and the child process execs into s6-tlsc-io. If the parent dies or closes its control socket before sending a command to start TLS, the child exits 0.
Environment variables
Read
s6-ucspitlsc does not expect to have any particular environment variables, but it spawns a s6-tlsc-io program that does. So it should pay attention to the following variables:
- CADIR or CAFILE
- (if the -y option has been given) CERTFILE and KEYFILE
- TLS_UID and TLS_GID
Written
By default, prog... is run with all these variables unset: CADIR, CAFILE, KEYFILE, CERTFILE, TLS_UID and TLS_GID. They're passed to the s6-tlsc-io child but not to prog.... The -Z option prevents that behaviour.
However, prog... is run with the following additional environment variables, following the UCSPI-TLS protocol:
- SSLCTLFD contains the file descriptor number of the control socket.
- SSLREADFD contains the file descriptor number of the pipe used to read data from the TLS tunnel after it has been activated.
- SSLWRITEFD contains the file descriptor number of the pipe used to write data to the TLS tunnel after it has been activated.
Since prog is exec'ed before the TLS handshake takes place, it cannot get information about the TLS connection via environment variables. However, if it starts the TLS connection via a Y command (as opposed to a y command), it will receive this information as a string sent over the control socket.
Options
- -v verbosity : Be more or less verbose. Default for verbosity is 1. 0 is quiet, 2 is verbose, more than 2 is debug output.
- -Z : do not clean the environment of the variables used by s6-tlsc-io before execing prog....
- -z : clean the environment of the variables used by s6-tlsc-io before execing prog.... This is the default.
- -S : send a close_notify alert and break the connection when prog sends EOF.
- -s : transmit EOF by half-closing the TCP connection without using close_notify. This is the default.
- -J : make s6-tlsc-io exit with a nonzero code if the peer sends EOF without a close_notify first
- -j : treat EOF from the peer as a normal exit condition
- -Y : Do not send a client certificate. This is the default.
- -y : Send a client certificate.
- -k servername : use Server Name Indication, and send servername. The default is not to use SNI, which may be a security risk.
- -K kimeout : close the connection if the handshake takes more than kimeout milliseconds to complete. The default is 0, which means infinite timeout: let the handshake complete at its own pace, no matter how slow.
- -6 fdr : expect an open file descriptor numbered fdr to read network (ciphertext) data from. Make sure prog also reads its data from its own fd fdr. Default is 6.
- -7 fdw : expect an open file descriptor numbered fdw to write network (ciphertext) data to. Make sure prog also writes its data to its own fd fdw. Default is 7.
