Skip to content

Commit

Permalink
net: Add TLS offload netdev ops
Browse files Browse the repository at this point in the history
Add new netdev ops to add and delete tls context

Signed-off-by: Ilya Lesokhin <ilyal@mellanox.com>
Signed-off-by: Boris Pismenny <borisp@mellanox.com>
Signed-off-by: Aviad Yehezkel <aviadye@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Ilya Lesokhin authored and David S. Miller committed May 1, 2018
1 parent ebf4e80 commit a5c37c6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions include/linux/netdevice.h
Original file line number Diff line number Diff line change
Expand Up @@ -865,6 +865,26 @@ struct xfrmdev_ops {
};
#endif

#if IS_ENABLED(CONFIG_TLS_DEVICE)
enum tls_offload_ctx_dir {
TLS_OFFLOAD_CTX_DIR_RX,
TLS_OFFLOAD_CTX_DIR_TX,
};

struct tls_crypto_info;
struct tls_context;

struct tlsdev_ops {
int (*tls_dev_add)(struct net_device *netdev, struct sock *sk,
enum tls_offload_ctx_dir direction,
struct tls_crypto_info *crypto_info,
u32 start_offload_tcp_sn);
void (*tls_dev_del)(struct net_device *netdev,
struct tls_context *ctx,
enum tls_offload_ctx_dir direction);
};
#endif

struct dev_ifalias {
struct rcu_head rcuhead;
char ifalias[];
Expand Down Expand Up @@ -1750,6 +1770,10 @@ struct net_device {
const struct xfrmdev_ops *xfrmdev_ops;
#endif

#if IS_ENABLED(CONFIG_TLS_DEVICE)
const struct tlsdev_ops *tlsdev_ops;
#endif

const struct header_ops *header_ops;

unsigned int flags;
Expand Down

0 comments on commit a5c37c6

Please sign in to comment.