2020-03-07 21:36:03 +07:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
/* Copyright (C) 2020 Chelsio Communications. All rights reserved. */
|
|
|
|
|
|
|
|
#ifndef __CHCR_KTLS_H__
|
|
|
|
#define __CHCR_KTLS_H__
|
|
|
|
|
|
|
|
#ifdef CONFIG_CHELSIO_TLS_DEVICE
|
|
|
|
#include <net/tls.h>
|
|
|
|
#include "cxgb4.h"
|
|
|
|
#include "t4_msg.h"
|
|
|
|
#include "t4_tcb.h"
|
|
|
|
#include "l2t.h"
|
|
|
|
#include "chcr_common.h"
|
|
|
|
|
|
|
|
#define CHCR_TCB_STATE_CLOSED 0
|
2020-03-07 21:36:04 +07:00
|
|
|
#define CHCR_KTLS_KEY_CTX_LEN 16
|
|
|
|
#define CHCR_SET_TCB_FIELD_LEN sizeof(struct cpl_set_tcb_field)
|
2020-03-07 21:36:05 +07:00
|
|
|
#define CHCR_PLAIN_TX_DATA_LEN (sizeof(struct fw_ulptx_wr) +\
|
|
|
|
sizeof(struct ulp_txpkt) +\
|
|
|
|
sizeof(struct ulptx_idata) +\
|
|
|
|
sizeof(struct cpl_tx_data))
|
|
|
|
|
|
|
|
#define CHCR_KTLS_WR_SIZE (CHCR_PLAIN_TX_DATA_LEN +\
|
|
|
|
sizeof(struct cpl_tx_sec_pdu))
|
2020-03-07 21:36:03 +07:00
|
|
|
|
|
|
|
enum chcr_ktls_conn_state {
|
|
|
|
KTLS_CONN_CLOSED,
|
2020-03-07 21:36:04 +07:00
|
|
|
KTLS_CONN_ACT_OPEN_REQ,
|
|
|
|
KTLS_CONN_ACT_OPEN_RPL,
|
|
|
|
KTLS_CONN_SET_TCB_REQ,
|
|
|
|
KTLS_CONN_SET_TCB_RPL,
|
|
|
|
KTLS_CONN_TX_READY,
|
2020-03-07 21:36:03 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct chcr_ktls_info {
|
|
|
|
struct sock *sk;
|
|
|
|
spinlock_t lock; /* state machine lock */
|
2020-03-07 21:36:04 +07:00
|
|
|
struct ktls_key_ctx key_ctx;
|
2020-03-07 21:36:03 +07:00
|
|
|
struct adapter *adap;
|
|
|
|
struct l2t_entry *l2te;
|
|
|
|
struct net_device *netdev;
|
2020-03-07 21:36:04 +07:00
|
|
|
u64 iv;
|
|
|
|
u64 record_no;
|
2020-03-07 21:36:03 +07:00
|
|
|
int tid;
|
|
|
|
int atid;
|
|
|
|
int rx_qid;
|
2020-03-07 21:36:04 +07:00
|
|
|
u32 iv_size;
|
2020-03-07 21:36:03 +07:00
|
|
|
u32 prev_seq;
|
2020-03-07 21:36:05 +07:00
|
|
|
u32 prev_ack;
|
2020-03-07 21:36:04 +07:00
|
|
|
u32 salt_size;
|
|
|
|
u32 key_ctx_len;
|
2020-03-07 21:36:05 +07:00
|
|
|
u32 scmd0_seqno_numivs;
|
|
|
|
u32 scmd0_ivgen_hdrlen;
|
2020-03-07 21:36:03 +07:00
|
|
|
u32 tcp_start_seq_number;
|
|
|
|
enum chcr_ktls_conn_state connection_state;
|
2020-03-07 21:36:05 +07:00
|
|
|
u16 prev_win;
|
2020-03-07 21:36:03 +07:00
|
|
|
u8 tx_chan;
|
|
|
|
u8 smt_idx;
|
|
|
|
u8 port_id;
|
|
|
|
u8 ip_family;
|
2020-03-07 21:36:05 +07:00
|
|
|
u8 first_qset;
|
2020-03-07 21:36:03 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
struct chcr_ktls_ofld_ctx_tx {
|
|
|
|
struct tls_offload_context_tx base;
|
|
|
|
struct chcr_ktls_info *chcr_info;
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct chcr_ktls_ofld_ctx_tx *
|
|
|
|
chcr_get_ktls_tx_context(struct tls_context *tls_ctx)
|
|
|
|
{
|
|
|
|
BUILD_BUG_ON(sizeof(struct chcr_ktls_ofld_ctx_tx) >
|
|
|
|
TLS_OFFLOAD_CONTEXT_SIZE_TX);
|
|
|
|
return container_of(tls_offload_ctx_tx(tls_ctx),
|
|
|
|
struct chcr_ktls_ofld_ctx_tx,
|
|
|
|
base);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int chcr_get_first_rx_qid(struct adapter *adap)
|
|
|
|
{
|
|
|
|
/* u_ctx is saved in adap, fetch it */
|
|
|
|
struct uld_ctx *u_ctx = adap->uld[CXGB4_ULD_CRYPTO].handle;
|
|
|
|
|
|
|
|
if (!u_ctx)
|
|
|
|
return -1;
|
|
|
|
return u_ctx->lldi.rxq_ids[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
void chcr_enable_ktls(struct adapter *adap);
|
|
|
|
void chcr_disable_ktls(struct adapter *adap);
|
2020-03-07 21:36:04 +07:00
|
|
|
int chcr_ktls_cpl_act_open_rpl(struct adapter *adap, unsigned char *input);
|
|
|
|
int chcr_ktls_cpl_set_tcb_rpl(struct adapter *adap, unsigned char *input);
|
2020-03-07 21:36:05 +07:00
|
|
|
int chcr_ktls_xmit(struct sk_buff *skb, struct net_device *dev);
|
2020-03-07 21:36:03 +07:00
|
|
|
#endif /* CONFIG_CHELSIO_TLS_DEVICE */
|
|
|
|
#endif /* __CHCR_KTLS_H__ */
|