DPDK 2.2 crypto dev API

Page content

pktmbuf_offload

  • pool은 rte_pktmbuf_offload_pool_create()를 사용하여 생성
l2fwd_mbuf_ol_pool = rte_pktmbuf_offload_pool_create(
            "mbuf_offload_pool", NB_MBUF, 128, 0, rte_socket_id());
  • 할당은 rte_pktmbuf_offload_alloc()를 이용.
rte_pktmbuf_offload_alloc(l2fwd_mbuf_ol_pool, RTE_PKTMBUF_OL_CRYPTO);
  • mbuf 마다 하나씩 할당해서 crypto 연산에 사용
  • crypto 연산에 필요한 추가 옵션 등을 설정함.
/* Append space for digest to end of packet */
ol->op.crypto.digest.data = (uint8_t *)rte_pktmbuf_append(m,
		cparams->digest_length);
ol->op.crypto.digest.phys_addr = rte_pktmbuf_mtophys_offset(m,
		rte_pktmbuf_pkt_len(m) - cparams->digest_length);
ol->op.crypto.digest.length = cparams->digest_length;

ol->op.crypto.iv.data = cparams->iv_key.data;
ol->op.crypto.iv.phys_addr = cparams->iv_key.phys_addr;
ol->op.crypto.iv.length = cparams->iv_key.length;

ol->op.crypto.data.to_cipher.offset = ipdata_offset;
ol->op.crypto.data.to_cipher.length = data_len;

ol->op.crypto.data.to_hash.offset = ipdata_offset;
ol->op.crypto.data.to_hash.length = data_len;

l2fwd_simple_crypto_enqueue()

  • crypto operation에 맞게 data align에 맞게 padding
  • rte_crypto_op_attach_session()
  • ol->op에 crypto 연산에 필요한 정보를 설정
    • crypto 대상 위치, 길이 등
    • session 개념이 있는데 정확히 뭔지는 모르겠음…
  • rte_crypto_op_attach_session()
op->session = sess;
op->type = RTE_CRYPTO_OP_WITH_SESSION;
  • rte_pktmbuf_offload_attach()
l2fwd_crypto_enqueue()
  • l2fwd_crypto_send_burst()
    • rte_cryptodev_enqueue_burst()

struct rte_mbuf_offload

/**
 * Generic packet mbuf offload
 * This is used to specify a offload operation to be performed on a rte_mbuf.
 * Multiple offload operations can be chained to the same mbuf, but only a
 * single offload operation of a particular type can be in the chain
 */
struct rte_mbuf_offload {
        struct rte_mbuf_offload *next;  /**< next offload in chain */
        struct rte_mbuf *m;             /**< mbuf offload is attached to */
        struct rte_mempool *mp;         /**< mempool offload allocated from */

        enum rte_mbuf_ol_op_type type;  /**< offload type */
        union {
                struct rte_crypto_op crypto;    /**< Crypto operation */
        } op;
};