add top-level SPDX license tag
[dpdk.git] / app / test / test_event_crypto_adapter.c
index c7cdfe5..8d42462 100644 (file)
@@ -171,6 +171,7 @@ test_op_forward_mode(uint8_t session_less)
        struct rte_event ev;
        uint32_t cap;
        int ret;
+       uint8_t cipher_key[17];
 
        memset(&m_data, 0, sizeof(m_data));
 
@@ -183,9 +184,14 @@ test_op_forward_mode(uint8_t session_less)
        cipher_xform.type = RTE_CRYPTO_SYM_XFORM_CIPHER;
        cipher_xform.next = NULL;
 
-       cipher_xform.cipher.algo = RTE_CRYPTO_CIPHER_NULL;
+       cipher_xform.cipher.algo = RTE_CRYPTO_CIPHER_AES_CBC;
        cipher_xform.cipher.op = RTE_CRYPTO_CIPHER_OP_ENCRYPT;
 
+       cipher_xform.cipher.key.data = cipher_key;
+       cipher_xform.cipher.key.length = 16;
+       cipher_xform.cipher.iv.offset = IV_OFFSET;
+       cipher_xform.cipher.iv.length = 16;
+
        op = rte_crypto_op_alloc(params.op_mpool,
                        RTE_CRYPTO_OP_TYPE_SYMMETRIC);
        TEST_ASSERT_NOT_NULL(op,
@@ -296,6 +302,10 @@ test_sessionless_with_op_forward_mode(void)
        if (!(cap & RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_OP_FWD) &&
            !(cap & RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_OP_NEW))
                map_adapter_service_core();
+       else {
+               if (!(cap & RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_OP_FWD))
+                       return TEST_SKIPPED;
+       }
 
        TEST_ASSERT_SUCCESS(rte_event_crypto_adapter_start(TEST_ADAPTER_ID),
                                "Failed to start event crypto adapter");
@@ -317,6 +327,10 @@ test_session_with_op_forward_mode(void)
        if (!(cap & RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_OP_FWD) &&
            !(cap & RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_OP_NEW))
                map_adapter_service_core();
+       else {
+               if (!(cap & RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_OP_FWD))
+                       return TEST_SKIPPED;
+       }
 
        TEST_ASSERT_SUCCESS(rte_event_crypto_adapter_start(TEST_ADAPTER_ID
                                ), "Failed to start event crypto adapter");
@@ -364,6 +378,7 @@ test_op_new_mode(uint8_t session_less)
        struct rte_mbuf *m;
        uint32_t cap;
        int ret;
+       uint8_t cipher_key[17];
 
        memset(&m_data, 0, sizeof(m_data));
 
@@ -376,9 +391,14 @@ test_op_new_mode(uint8_t session_less)
        cipher_xform.type = RTE_CRYPTO_SYM_XFORM_CIPHER;
        cipher_xform.next = NULL;
 
-       cipher_xform.cipher.algo = RTE_CRYPTO_CIPHER_NULL;
+       cipher_xform.cipher.algo = RTE_CRYPTO_CIPHER_AES_CBC;
        cipher_xform.cipher.op = RTE_CRYPTO_CIPHER_OP_ENCRYPT;
 
+       cipher_xform.cipher.key.data = cipher_key;
+       cipher_xform.cipher.key.length = 16;
+       cipher_xform.cipher.iv.offset = IV_OFFSET;
+       cipher_xform.cipher.iv.length = 16;
+
        op = rte_crypto_op_alloc(params.op_mpool,
                        RTE_CRYPTO_OP_TYPE_SYMMETRIC);
        TEST_ASSERT_NOT_NULL(op, "Failed to allocate crypto_op!\n");
@@ -446,6 +466,10 @@ test_sessionless_with_op_new_mode(void)
        if (!(cap & RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_OP_FWD) &&
            !(cap & RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_OP_NEW))
                map_adapter_service_core();
+       else {
+               if (!(cap & RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_OP_NEW))
+                       return TEST_SKIPPED;
+       }
 
        /* start the event crypto adapter */
        TEST_ASSERT_SUCCESS(rte_event_crypto_adapter_start(TEST_ADAPTER_ID),
@@ -468,6 +492,10 @@ test_session_with_op_new_mode(void)
        if (!(cap & RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_OP_FWD) &&
            !(cap & RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_OP_NEW))
                map_adapter_service_core();
+       else {
+               if (!(cap & RTE_EVENT_CRYPTO_ADAPTER_CAP_INTERNAL_PORT_OP_NEW))
+                       return TEST_SKIPPED;
+       }
 
        TEST_ASSERT_SUCCESS(rte_event_crypto_adapter_start(TEST_ADAPTER_ID),
                                "Failed to start event crypto adapter");
@@ -819,7 +847,8 @@ test_crypto_adapter_conf_op_forward_mode(void)
        enum rte_event_crypto_adapter_mode mode;
 
        mode = RTE_EVENT_CRYPTO_ADAPTER_OP_FORWARD;
-       test_crypto_adapter_conf(mode);
+       TEST_ASSERT_SUCCESS(test_crypto_adapter_conf(mode),
+                               "Failed to config crypto adapter");
 
        return TEST_SUCCESS;
 }
@@ -830,7 +859,9 @@ test_crypto_adapter_conf_op_new_mode(void)
        enum rte_event_crypto_adapter_mode mode;
 
        mode = RTE_EVENT_CRYPTO_ADAPTER_OP_NEW;
-       test_crypto_adapter_conf(mode);
+       TEST_ASSERT_SUCCESS(test_crypto_adapter_conf(mode),
+                               "Failed to config crypto adapter");
+
        return TEST_SUCCESS;
 }
 
@@ -874,6 +905,7 @@ crypto_teardown(void)
                params.session_mpool = NULL;
        }
        if (params.session_priv_mpool != NULL) {
+               rte_mempool_avail_count(params.session_priv_mpool);
                rte_mempool_free(params.session_priv_mpool);
                params.session_priv_mpool = NULL;
        }