remove unused ring includes
[dpdk.git] / examples / dpdk_qat / crypto.c
index 648ee11..02032f3 100644 (file)
@@ -1,35 +1,34 @@
 /*-
  *   BSD LICENSE
- * 
- *   Copyright(c) 2010-2012 Intel Corporation. All rights reserved.
+ *
+ *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
  *   All rights reserved.
- * 
- *   Redistribution and use in source and binary forms, with or without 
- *   modification, are permitted provided that the following conditions 
+ *
+ *   Redistribution and use in source and binary forms, with or without
+ *   modification, are permitted provided that the following conditions
  *   are met:
- * 
- *     * Redistributions of source code must retain the above copyright 
+ *
+ *     * Redistributions of source code must retain the above copyright
  *       notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above copyright 
- *       notice, this list of conditions and the following disclaimer in 
- *       the documentation and/or other materials provided with the 
+ *     * Redistributions in binary form must reproduce the above copyright
+ *       notice, this list of conditions and the following disclaimer in
+ *       the documentation and/or other materials provided with the
  *       distribution.
- *     * Neither the name of Intel Corporation nor the names of its 
- *       contributors may be used to endorse or promote products derived 
+ *     * Neither the name of Intel Corporation nor the names of its
+ *       contributors may be used to endorse or promote products derived
  *       from this software without specific prior written permission.
- * 
- *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
- *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
- *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
- *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
- *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
- *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
- *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
- *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
- *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
- *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
+ *
+ *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- * 
  */
 
 #include <stdio.h>
@@ -46,7 +45,6 @@
 #include <rte_debug.h>
 #include <rte_memory.h>
 #include <rte_memzone.h>
-#include <rte_tailq.h>
 #include <rte_ether.h>
 #include <rte_malloc.h>
 #include <rte_launch.h>
@@ -55,7 +53,6 @@
 #include <rte_lcore.h>
 #include <rte_atomic.h>
 #include <rte_branch_prediction.h>
-#include <rte_ring.h>
 #include <rte_mempool.h>
 #include <rte_mbuf.h>
 #include <rte_string_fns.h>
@@ -88,6 +85,7 @@
 #define SHA384_AUTH_KEY_LENGTH_IN_BYTES                (384 / 8)
 #define SHA512_AUTH_KEY_LENGTH_IN_BYTES                (512 / 8)
 #define MD5_AUTH_KEY_LENGTH_IN_BYTES           (128 / 8)
+#define KASUMI_AUTH_KEY_LENGTH_IN_BYTES                (128 / 8)
 
 /* HASH DIGEST LENGHTS */
 #define AES_XCBC_DIGEST_LENGTH_IN_BYTES                (128 / 8)
@@ -99,6 +97,7 @@
 #define SHA256_DIGEST_LENGTH_IN_BYTES          (256 / 8)
 #define SHA384_DIGEST_LENGTH_IN_BYTES          (384 / 8)
 #define SHA512_DIGEST_LENGTH_IN_BYTES          (512 / 8)
+#define KASUMI_DIGEST_LENGTH_IN_BYTES          (32 / 8)
 
 #define IV_LENGTH_16_BYTES     (16)
 #define IV_LENGTH_8_BYTES      (8)
@@ -182,7 +181,7 @@ struct glob_keys g_crypto_hash_keys = {
  *
  */
 #define PACKET_DATA_START_PHYS(p) \
-               ((p)->buf_physaddr + ((char *)p->pkt.data - (char *)p->buf_addr))
+               ((p)->buf_physaddr + (p)->data_off)
 
 /*
  * A fixed offset to where the crypto is to be performed, which is the first
@@ -307,7 +306,7 @@ getCoreAffinity(Cpa32U *coreAffinity, const CpaInstanceHandle instanceHandle)
        Cpa16U i = 0;
        CpaStatus status = CPA_STATUS_SUCCESS;
 
-       bzero(&info, sizeof(CpaInstanceInfo2));
+       memset(&info, 0, sizeof(CpaInstanceInfo2));
 
        status = cpaCyInstanceGetInfo2(instanceHandle, &info);
        if (CPA_STATUS_SUCCESS != status) {
@@ -338,7 +337,7 @@ get_crypto_instance_on_core(CpaInstanceHandle *pInstanceHandle,
        }
 
        pLocalInstanceHandles = rte_malloc("pLocalInstanceHandles",
-                       sizeof(CpaInstanceHandle) * numInstances, CACHE_LINE_SIZE);
+                       sizeof(CpaInstanceHandle) * numInstances, RTE_CACHE_LINE_SIZE);
 
        if (NULL == pLocalInstanceHandles) {
                return CPA_STATUS_FAIL;
@@ -380,7 +379,7 @@ initCySymSession(const int pkt_cipher_alg,
        CpaBoolean isCrypto = CPA_TRUE, isHmac = CPA_TRUE;
        CpaCySymSessionSetupData sessionSetupData;
 
-       bzero(&sessionSetupData, sizeof(CpaCySymSessionSetupData));
+       memset(&sessionSetupData, 0, sizeof(CpaCySymSessionSetupData));
 
        /* Assumption: key length is set to each algorithm's max length */
        switch (pkt_cipher_alg) {
@@ -423,6 +422,12 @@ initCySymSession(const int pkt_cipher_alg,
                sessionSetupData.cipherSetupData.cipherKeyLenInBytes =
                                KEY_SIZE_128_IN_BYTES;
                break;
+       case CIPHER_KASUMI_F8:
+               sessionSetupData.cipherSetupData.cipherAlgorithm =
+                               CPA_CY_SYM_CIPHER_KASUMI_F8;
+               sessionSetupData.cipherSetupData.cipherKeyLenInBytes =
+                               KEY_SIZE_128_IN_BYTES;
+               break;
        default:
                printf("Crypto: Undefined Cipher specified\n");
                break;
@@ -485,6 +490,11 @@ initCySymSession(const int pkt_cipher_alg,
                sessionSetupData.hashSetupData.digestResultLenInBytes =
                                SHA512_DIGEST_LENGTH_IN_BYTES;
                break;
+       case HASH_KASUMI_F9:
+               sessionSetupData.hashSetupData.hashAlgorithm = CPA_CY_SYM_HASH_KASUMI_F9;
+               sessionSetupData.hashSetupData.digestResultLenInBytes =
+                               KASUMI_DIGEST_LENGTH_IN_BYTES;
+               break;
        default:
                printf("Crypto: Undefined Hash specified\n");
                break;
@@ -528,6 +538,10 @@ initCySymSession(const int pkt_cipher_alg,
                                sessionSetupData.hashSetupData.authModeSetupData.authKeyLenInBytes =
                                                SHA512_AUTH_KEY_LENGTH_IN_BYTES;
                                break;
+                       case HASH_KASUMI_F9:
+                               sessionSetupData.hashSetupData.authModeSetupData.authKeyLenInBytes =
+                                               KASUMI_AUTH_KEY_LENGTH_IN_BYTES;
+                               break;
                        default:
                                printf("Crypto: Undefined Hash specified\n");
                                return CPA_STATUS_FAIL;
@@ -591,6 +605,9 @@ initSessionDataTables(struct qa_core_conf *qaCoreConf,uint32_t lcore_id)
        CpaStatus status = CPA_STATUS_FAIL;
        for (i = 0; i < NUM_CRYPTO; i++) {
                for (j = 0; j < NUM_HMAC; j++) {
+                       if (((i == CIPHER_KASUMI_F8) && (j != NO_HASH) && (j != HASH_KASUMI_F9)) ||
+                               ((i != NO_CIPHER) && (i != CIPHER_KASUMI_F8) && (j == HASH_KASUMI_F9)))
+                               continue;
                        status = initCySymSession(i, j, CPA_CY_SYM_HASH_MODE_AUTH,
                                        CPA_CY_SYM_CIPHER_DIRECTION_ENCRYPT,
                                        &qaCoreConf->encryptSessionHandleTbl[i][j],
@@ -646,7 +663,7 @@ per_core_crypto_init(uint32_t lcore_id)
        qaCoreConf[lcore_id].numResponseAttempts = 0;
 
        /* Initialise and reserve lcore memzone for virt2phys translation */
-       rte_snprintf(memzone_name,
+       snprintf(memzone_name,
                        RTE_MEMZONE_NAMESIZE,
                        "lcore_%u",
                        lcore_id);
@@ -754,8 +771,8 @@ enum crypto_result
 crypto_encrypt(struct rte_mbuf *rte_buff, enum cipher_alg c, enum hash_alg h)
 {
        CpaCySymDpOpData *opData =
-                       (CpaCySymDpOpData *) ((char *) (rte_buff->pkt.data)
-                                       + CRYPTO_OFFSET_TO_OPDATA);
+                       rte_pktmbuf_mtod_offset(rte_buff, CpaCySymDpOpData *,
+                                               CRYPTO_OFFSET_TO_OPDATA);
        uint32_t lcore_id;
 
        if (unlikely(c >= NUM_CRYPTO || h >= NUM_HMAC))
@@ -763,10 +780,10 @@ crypto_encrypt(struct rte_mbuf *rte_buff, enum cipher_alg c, enum hash_alg h)
 
        lcore_id = rte_lcore_id();
 
-       bzero(opData, sizeof(CpaCySymDpOpData));
+       memset(opData, 0, sizeof(CpaCySymDpOpData));
 
        opData->srcBuffer = opData->dstBuffer = PACKET_DATA_START_PHYS(rte_buff);
-       opData->srcBufferLen = opData->dstBufferLen = rte_buff->pkt.data_len;
+       opData->srcBufferLen = opData->dstBufferLen = rte_buff->data_len;
        opData->sessionCtx = qaCoreConf[lcore_id].encryptSessionHandleTbl[c][h];
        opData->thisPhys = PACKET_DATA_START_PHYS(rte_buff)
                        + CRYPTO_OFFSET_TO_OPDATA;
@@ -786,7 +803,7 @@ crypto_encrypt(struct rte_mbuf *rte_buff, enum cipher_alg c, enum hash_alg h)
                        opData->ivLenInBytes = IV_LENGTH_8_BYTES;
 
                opData->cryptoStartSrcOffsetInBytes = CRYPTO_START_OFFSET;
-               opData->messageLenToCipherInBytes = rte_buff->pkt.data_len
+               opData->messageLenToCipherInBytes = rte_buff->data_len
                                - CRYPTO_START_OFFSET;
                /*
                 * Work around for padding, message length has to be a multiple of
@@ -799,7 +816,7 @@ crypto_encrypt(struct rte_mbuf *rte_buff, enum cipher_alg c, enum hash_alg h)
        if (NO_HASH != h) {
 
                opData->hashStartSrcOffsetInBytes = HASH_START_OFFSET;
-               opData->messageLenToHashInBytes = rte_buff->pkt.data_len
+               opData->messageLenToHashInBytes = rte_buff->data_len
                                - HASH_START_OFFSET;
                /*
                 * Work around for padding, message length has to be a multiple of block
@@ -812,7 +829,7 @@ crypto_encrypt(struct rte_mbuf *rte_buff, enum cipher_alg c, enum hash_alg h)
                 * Assumption: Ok ignore the passed digest pointer and place HMAC at end
                 * of packet.
                 */
-               opData->digestResult = rte_buff->buf_physaddr + rte_buff->pkt.data_len;
+               opData->digestResult = rte_buff->buf_physaddr + rte_buff->data_len;
        }
 
        if (CPA_STATUS_SUCCESS != enqueueOp(opData, lcore_id)) {
@@ -829,8 +846,8 @@ enum crypto_result
 crypto_decrypt(struct rte_mbuf *rte_buff, enum cipher_alg c, enum hash_alg h)
 {
 
-       CpaCySymDpOpData *opData = (void*) (((char *) rte_buff->pkt.data)
-                       + CRYPTO_OFFSET_TO_OPDATA);
+       CpaCySymDpOpData *opData = rte_pktmbuf_mtod_offset(rte_buff, void *,
+                                                          CRYPTO_OFFSET_TO_OPDATA);
        uint32_t lcore_id;
 
        if (unlikely(c >= NUM_CRYPTO || h >= NUM_HMAC))
@@ -838,10 +855,10 @@ crypto_decrypt(struct rte_mbuf *rte_buff, enum cipher_alg c, enum hash_alg h)
 
        lcore_id = rte_lcore_id();
 
-       bzero(opData, sizeof(CpaCySymDpOpData));
+       memset(opData, 0, sizeof(CpaCySymDpOpData));
 
        opData->dstBuffer = opData->srcBuffer = PACKET_DATA_START_PHYS(rte_buff);
-       opData->dstBufferLen = opData->srcBufferLen = rte_buff->pkt.data_len;
+       opData->dstBufferLen = opData->srcBufferLen = rte_buff->data_len;
        opData->thisPhys = PACKET_DATA_START_PHYS(rte_buff)
                        + CRYPTO_OFFSET_TO_OPDATA;
        opData->sessionCtx = qaCoreConf[lcore_id].decryptSessionHandleTbl[c][h];
@@ -861,7 +878,7 @@ crypto_decrypt(struct rte_mbuf *rte_buff, enum cipher_alg c, enum hash_alg h)
                        opData->ivLenInBytes = IV_LENGTH_8_BYTES;
 
                opData->cryptoStartSrcOffsetInBytes = CRYPTO_START_OFFSET;
-               opData->messageLenToCipherInBytes = rte_buff->pkt.data_len
+               opData->messageLenToCipherInBytes = rte_buff->data_len
                                - CRYPTO_START_OFFSET;
 
                /*
@@ -873,7 +890,7 @@ crypto_decrypt(struct rte_mbuf *rte_buff, enum cipher_alg c, enum hash_alg h)
        }
        if (NO_HASH != h) {
                opData->hashStartSrcOffsetInBytes = HASH_START_OFFSET;
-               opData->messageLenToHashInBytes = rte_buff->pkt.data_len
+               opData->messageLenToHashInBytes = rte_buff->data_len
                                - HASH_START_OFFSET;
                /*
                 * Work around for padding, message length has to be a multiple of block
@@ -881,7 +898,7 @@ crypto_decrypt(struct rte_mbuf *rte_buff, enum cipher_alg c, enum hash_alg h)
                 */
                opData->messageLenToHashInBytes -= opData->messageLenToHashInBytes
                                % HASH_BLOCK_DEFAULT_SIZE;
-               opData->digestResult = rte_buff->buf_physaddr + rte_buff->pkt.data_len;
+               opData->digestResult = rte_buff->buf_physaddr + rte_buff->data_len;
        }
 
        if (CPA_STATUS_SUCCESS != enqueueOp(opData, lcore_id)) {