mbox series

[RFC,0/4] Inline TLS client and v6

Message ID 20190118071313.9484-1-atul.gupta@chelsio.com (mailing list archive)
Headers show
Series Inline TLS client and v6 | expand

Message

Atul Gupta Jan. 18, 2019, 7:13 a.m. UTC
Extends Inline TLS record processing to TLS client. connect
API is added to tls_context to setup hardware for TLS
connection and handshake. Functionality wise, this makes the solution
end-to-end Inline TLS capable. TLS server and client
can operate in Inline mode and leverage hardware for complete
TLS offload.
[0004] Adds IPv6 support to Inline TLS server and client.

Atul Gupta (4):
  net/tls: connect routine for Inline TLS client
  crypto/chelsio/chtls: hardware connect API
  crypto/chelsio/chtls: CPL for TLS client
  crypto/chelsio/chtls: IPv6 for Inline TLS

 drivers/crypto/chelsio/chtls/chtls.h          |   18 +-
 drivers/crypto/chelsio/chtls/chtls_cm.c       | 1276 ++++++++++++++++++++++---
 drivers/crypto/chelsio/chtls/chtls_cm.h       |   12 +-
 drivers/crypto/chelsio/chtls/chtls_hw.c       |    7 +-
 drivers/crypto/chelsio/chtls/chtls_io.c       |   41 +-
 drivers/crypto/chelsio/chtls/chtls_main.c     |  168 +++-
 drivers/net/ethernet/chelsio/cxgb4/t4_msg.h   |   18 +
 drivers/net/ethernet/chelsio/cxgb4/t4fw_api.h |    2 +
 include/net/tls.h                             |    5 +
 include/net/transp_v6.h                       |    8 +
 net/core/secure_seq.c                         |    1 +
 net/ipv6/tcp_ipv6.c                           |   26 +-
 net/tls/tls_main.c                            |   23 +
 13 files changed, 1455 insertions(+), 150 deletions(-)