Yingdi Yu | 8751661 | 2015-07-10 18:03:52 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | 8aad372 | 2017-09-16 20:57:28 -0400 | [diff] [blame^] | 2 | /* |
| 3 | * Copyright (c) 2013-2017 Regents of the University of California. |
Yingdi Yu | 8751661 | 2015-07-10 18:03:52 -0700 | [diff] [blame] | 4 | * |
| 5 | * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions). |
| 6 | * |
| 7 | * ndn-cxx library is free software: you can redistribute it and/or modify it under the |
| 8 | * terms of the GNU Lesser General Public License as published by the Free Software |
| 9 | * Foundation, either version 3 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY |
| 12 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
| 13 | * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. |
| 14 | * |
| 15 | * You should have received copies of the GNU General Public License and GNU Lesser |
| 16 | * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see |
| 17 | * <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * See AUTHORS.md for complete list of ndn-cxx authors and contributors. |
| 20 | */ |
| 21 | |
| 22 | #include "block-cipher.hpp" |
| 23 | #include "../detail/openssl.hpp" |
| 24 | |
| 25 | #include <boost/lexical_cast.hpp> |
| 26 | |
| 27 | namespace ndn { |
| 28 | namespace security { |
| 29 | namespace transform { |
| 30 | |
| 31 | class BlockCipher::Impl |
| 32 | { |
| 33 | public: |
| 34 | Impl() |
| 35 | : m_cipher(BIO_new(BIO_f_cipher())) |
| 36 | , m_sink(BIO_new(BIO_s_mem())) |
| 37 | { |
| 38 | BIO_push(m_cipher, m_sink); |
| 39 | } |
| 40 | |
| 41 | ~Impl() |
| 42 | { |
Junxiao Shi | 1b0f486 | 2016-09-10 17:45:04 +0000 | [diff] [blame] | 43 | BIO_free_all(m_cipher); |
Yingdi Yu | 8751661 | 2015-07-10 18:03:52 -0700 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | public: |
| 47 | BIO* m_cipher; |
| 48 | BIO* m_sink; // BIO_f_cipher alone does not work without a sink |
| 49 | }; |
| 50 | |
Davide Pesavento | 8aad372 | 2017-09-16 20:57:28 -0400 | [diff] [blame^] | 51 | |
Yingdi Yu | 8751661 | 2015-07-10 18:03:52 -0700 | [diff] [blame] | 52 | BlockCipher::BlockCipher(BlockCipherAlgorithm algo, CipherOperator op, |
| 53 | const uint8_t* key, size_t keyLen, |
| 54 | const uint8_t* iv, size_t ivLen) |
Davide Pesavento | 8aad372 | 2017-09-16 20:57:28 -0400 | [diff] [blame^] | 55 | : m_impl(make_unique<Impl>()) |
Yingdi Yu | 8751661 | 2015-07-10 18:03:52 -0700 | [diff] [blame] | 56 | { |
| 57 | switch (algo) { |
| 58 | case BlockCipherAlgorithm::AES_CBC: |
| 59 | initializeAesCbc(key, keyLen, iv, ivLen, op); |
| 60 | break; |
| 61 | default: |
Davide Pesavento | 8aad372 | 2017-09-16 20:57:28 -0400 | [diff] [blame^] | 62 | BOOST_THROW_EXCEPTION(Error(getIndex(), "Unsupported block cipher algorithm " + |
| 63 | boost::lexical_cast<std::string>(algo))); |
Yingdi Yu | 8751661 | 2015-07-10 18:03:52 -0700 | [diff] [blame] | 64 | } |
| 65 | } |
| 66 | |
Davide Pesavento | 8aad372 | 2017-09-16 20:57:28 -0400 | [diff] [blame^] | 67 | BlockCipher::~BlockCipher() = default; |
| 68 | |
Yingdi Yu | 8751661 | 2015-07-10 18:03:52 -0700 | [diff] [blame] | 69 | void |
| 70 | BlockCipher::preTransform() |
| 71 | { |
| 72 | fillOutputBuffer(); |
| 73 | } |
| 74 | |
| 75 | size_t |
| 76 | BlockCipher::convert(const uint8_t* data, size_t dataLen) |
| 77 | { |
| 78 | if (dataLen == 0) |
| 79 | return 0; |
| 80 | |
| 81 | int wLen = BIO_write(m_impl->m_cipher, data, dataLen); |
| 82 | |
| 83 | if (wLen <= 0) { // fail to write data |
| 84 | if (!BIO_should_retry(m_impl->m_cipher)) { |
| 85 | // we haven't written everything but some error happens, and we cannot retry |
| 86 | BOOST_THROW_EXCEPTION(Error(getIndex(), "Failed to accept more input")); |
| 87 | } |
| 88 | return 0; |
| 89 | } |
| 90 | else { // update number of bytes written |
| 91 | fillOutputBuffer(); |
| 92 | return wLen; |
| 93 | } |
| 94 | } |
| 95 | |
| 96 | void |
| 97 | BlockCipher::finalize() |
| 98 | { |
| 99 | if (BIO_flush(m_impl->m_cipher) != 1) |
| 100 | BOOST_THROW_EXCEPTION(Error(getIndex(), "Failed to flush")); |
| 101 | |
| 102 | while (!isConverterEmpty()) { |
| 103 | fillOutputBuffer(); |
| 104 | while (!isOutputBufferEmpty()) { |
| 105 | flushOutputBuffer(); |
| 106 | } |
| 107 | } |
| 108 | } |
| 109 | |
| 110 | void |
| 111 | BlockCipher::fillOutputBuffer() |
| 112 | { |
| 113 | int nRead = BIO_pending(m_impl->m_sink); |
| 114 | if (nRead <= 0) |
| 115 | return; |
| 116 | |
| 117 | // there is something to read from BIO |
| 118 | auto buffer = make_unique<OBuffer>(nRead); |
Davide Pesavento | 8aad372 | 2017-09-16 20:57:28 -0400 | [diff] [blame^] | 119 | int rLen = BIO_read(m_impl->m_sink, buffer->data(), nRead); |
Yingdi Yu | 8751661 | 2015-07-10 18:03:52 -0700 | [diff] [blame] | 120 | if (rLen < 0) |
| 121 | return; |
| 122 | |
| 123 | if (rLen < nRead) |
| 124 | buffer->erase(buffer->begin() + rLen, buffer->end()); |
| 125 | setOutputBuffer(std::move(buffer)); |
| 126 | } |
| 127 | |
| 128 | bool |
| 129 | BlockCipher::isConverterEmpty() const |
| 130 | { |
| 131 | return (BIO_pending(m_impl->m_sink) <= 0); |
| 132 | } |
| 133 | |
| 134 | void |
| 135 | BlockCipher::initializeAesCbc(const uint8_t* key, size_t keyLen, |
| 136 | const uint8_t* iv, size_t ivLen, |
| 137 | CipherOperator op) |
| 138 | { |
| 139 | if (keyLen != ivLen) |
| 140 | BOOST_THROW_EXCEPTION(Error(getIndex(), "Key length must be the same as IV length")); |
| 141 | |
| 142 | const EVP_CIPHER* cipherType = nullptr; |
| 143 | switch (keyLen) { |
| 144 | case 16: |
| 145 | cipherType = EVP_aes_128_cbc(); |
| 146 | break; |
| 147 | case 24: |
| 148 | cipherType = EVP_aes_192_cbc(); |
| 149 | break; |
| 150 | case 32: |
| 151 | cipherType = EVP_aes_256_cbc(); |
| 152 | break; |
| 153 | default: |
| 154 | BOOST_THROW_EXCEPTION(Error(getIndex(), "Key length is not supported")); |
| 155 | } |
| 156 | BIO_set_cipher(m_impl->m_cipher, cipherType, key, iv, static_cast<int>(op)); |
| 157 | } |
| 158 | |
| 159 | unique_ptr<Transform> |
| 160 | blockCipher(BlockCipherAlgorithm algo, CipherOperator op, |
| 161 | const uint8_t* key, size_t keyLen, |
| 162 | const uint8_t* iv, size_t ivLen) |
| 163 | { |
| 164 | return make_unique<BlockCipher>(algo, op, key, keyLen, iv, ivLen); |
| 165 | } |
| 166 | |
| 167 | } // namespace transform |
| 168 | } // namespace security |
| 169 | } // namespace ndn |