1.. BSD LICENSE 2 Copyright(c) 2016 Intel Corporation. All rights reserved. 3 4 Redistribution and use in source and binary forms, with or without 5 modification, are permitted provided that the following conditions 6 are met: 7 8 * Redistributions of source code must retain the above copyright 9 notice, this list of conditions and the following disclaimer. 10 * Redistributions in binary form must reproduce the above copyright 11 notice, this list of conditions and the following disclaimer in 12 the documentation and/or other materials provided with the 13 distribution. 14 * Neither the name of Intel Corporation nor the names of its 15 contributors may be used to endorse or promote products derived 16 from this software without specific prior written permission. 17 18 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 21 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 24 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 25 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 30OpenSSL Crypto Poll Mode Driver 31=============================== 32 33This code provides the initial implementation of the openssl poll mode 34driver. All cryptography operations are using Openssl library crypto API. 35Each algorithm uses EVP interface from openssl API - which is recommended 36by Openssl maintainers. 37 38For more details about openssl library please visit openssl webpage: 39https://www.openssl.org/ 40 41Features 42-------- 43 44OpenSSL PMD has support for: 45 46Supported cipher algorithms: 47* ``RTE_CRYPTO_CIPHER_3DES_CBC`` 48* ``RTE_CRYPTO_CIPHER_AES_CBC`` 49* ``RTE_CRYPTO_CIPHER_AES_CTR`` 50* ``RTE_CRYPTO_CIPHER_3DES_CTR`` 51* ``RTE_CRYPTO_CIPHER_DES_DOCSISBPI`` 52 53Supported authentication algorithms: 54* ``RTE_CRYPTO_AUTH_AES_GMAC`` 55* ``RTE_CRYPTO_AUTH_MD5`` 56* ``RTE_CRYPTO_AUTH_SHA1`` 57* ``RTE_CRYPTO_AUTH_SHA224`` 58* ``RTE_CRYPTO_AUTH_SHA256`` 59* ``RTE_CRYPTO_AUTH_SHA384`` 60* ``RTE_CRYPTO_AUTH_SHA512`` 61* ``RTE_CRYPTO_AUTH_MD5_HMAC`` 62* ``RTE_CRYPTO_AUTH_SHA1_HMAC`` 63* ``RTE_CRYPTO_AUTH_SHA224_HMAC`` 64* ``RTE_CRYPTO_AUTH_SHA256_HMAC`` 65* ``RTE_CRYPTO_AUTH_SHA384_HMAC`` 66* ``RTE_CRYPTO_AUTH_SHA512_HMAC`` 67 68Supported AEAD algorithms: 69* ``RTE_CRYPTO_AEAD_AES_GCM`` 70* ``RTE_CRYPTO_AEAD_AES_CCM`` 71 72 73Installation 74------------ 75 76To compile openssl PMD, it has to be enabled in the config/common_base file 77and appropriate openssl packages have to be installed in the build environment. 78 79The newest openssl library version is supported: 80* 1.0.2h-fips 3 May 2016. 81Older versions that were also verified: 82* 1.0.1f 6 Jan 2014 83* 1.0.1 14 Mar 2012 84 85For Ubuntu 14.04 LTS these packages have to be installed in the build system: 86sudo apt-get install openssl 87sudo apt-get install libc6-dev-i386 (for i686-native-linuxapp-gcc target) 88 89This code was also verified on Fedora 24. 90This code was NOT yet verified on FreeBSD. 91 92Initialization 93-------------- 94 95User can use app/test application to check how to use this pmd and to verify 96crypto processing. 97 98Test name is cryptodev_openssl_autotest. 99For performance test cryptodev_openssl_perftest can be used. 100 101To verify real traffic l2fwd-crypto example can be used with this command: 102 103.. code-block:: console 104 105 sudo ./build/l2fwd-crypto -l 0-1 -n 4 --vdev "crypto_openssl" 106 --vdev "crypto_openssl"-- -p 0x3 --chain CIPHER_HASH 107 --cipher_op ENCRYPT --cipher_algo AES_CBC 108 --cipher_key 00:01:02:03:04:05:06:07:08:09:0a:0b:0c:0d:0e:0f 109 --iv 00:01:02:03:04:05:06:07:08:09:0a:0b:0c:0d:0e:ff 110 --auth_op GENERATE --auth_algo SHA1_HMAC 111 --auth_key 11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11 112 :11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11 113 :11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11:11 114 115Limitations 116----------- 117 118* Maximum number of sessions is 2048. 119* Chained mbufs are supported only for source mbuf (destination must be 120 contiguous). 121* Hash only is not supported for GCM and GMAC. 122* Cipher only is not supported for GCM and GMAC. 123