blob: 678a161d169c22b747398b1326a520e10f7d32a4 [file] [log] [blame]
Yingdi Yu87516612015-07-10 18:03:52 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento8aad3722017-09-16 20:57:28 -04002/*
3 * Copyright (c) 2013-2017 Regents of the University of California.
Yingdi Yu87516612015-07-10 18:03:52 -07004 *
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
27namespace ndn {
28namespace security {
29namespace transform {
30
31class BlockCipher::Impl
32{
33public:
Davide Pesaventoeaa93f42017-09-17 00:21:00 -040034 Impl() noexcept
Yingdi Yu87516612015-07-10 18:03:52 -070035 : 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 Shi1b0f4862016-09-10 17:45:04 +000043 BIO_free_all(m_cipher);
Yingdi Yu87516612015-07-10 18:03:52 -070044 }
45
46public:
47 BIO* m_cipher;
48 BIO* m_sink; // BIO_f_cipher alone does not work without a sink
49};
50
Davide Pesavento8aad3722017-09-16 20:57:28 -040051
Yingdi Yu87516612015-07-10 18:03:52 -070052BlockCipher::BlockCipher(BlockCipherAlgorithm algo, CipherOperator op,
53 const uint8_t* key, size_t keyLen,
54 const uint8_t* iv, size_t ivLen)
Davide Pesavento8aad3722017-09-16 20:57:28 -040055 : m_impl(make_unique<Impl>())
Yingdi Yu87516612015-07-10 18:03:52 -070056{
57 switch (algo) {
58 case BlockCipherAlgorithm::AES_CBC:
59 initializeAesCbc(key, keyLen, iv, ivLen, op);
60 break;
61 default:
Davide Pesavento8aad3722017-09-16 20:57:28 -040062 BOOST_THROW_EXCEPTION(Error(getIndex(), "Unsupported block cipher algorithm " +
63 boost::lexical_cast<std::string>(algo)));
Yingdi Yu87516612015-07-10 18:03:52 -070064 }
65}
66
Davide Pesavento8aad3722017-09-16 20:57:28 -040067BlockCipher::~BlockCipher() = default;
68
Yingdi Yu87516612015-07-10 18:03:52 -070069void
70BlockCipher::preTransform()
71{
72 fillOutputBuffer();
73}
74
75size_t
76BlockCipher::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
Davide Pesaventoeaa93f42017-09-17 00:21:00 -040083 if (wLen <= 0) { // failed to write data
Yingdi Yu87516612015-07-10 18:03:52 -070084 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();
Davide Pesaventoeaa93f42017-09-17 00:21:00 -040092 return static_cast<size_t>(wLen);
Yingdi Yu87516612015-07-10 18:03:52 -070093 }
94}
95
96void
97BlockCipher::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
110void
111BlockCipher::fillOutputBuffer()
112{
Davide Pesaventoeaa93f42017-09-17 00:21:00 -0400113 int nPending = BIO_pending(m_impl->m_sink);
114 if (nPending <= 0)
Yingdi Yu87516612015-07-10 18:03:52 -0700115 return;
116
117 // there is something to read from BIO
Davide Pesaventoeaa93f42017-09-17 00:21:00 -0400118 auto buffer = make_unique<OBuffer>(nPending);
119 int nRead = BIO_read(m_impl->m_sink, buffer->data(), nPending);
120 if (nRead < 0)
Yingdi Yu87516612015-07-10 18:03:52 -0700121 return;
122
Davide Pesaventoeaa93f42017-09-17 00:21:00 -0400123 buffer->erase(buffer->begin() + nRead, buffer->end());
Yingdi Yu87516612015-07-10 18:03:52 -0700124 setOutputBuffer(std::move(buffer));
125}
126
127bool
128BlockCipher::isConverterEmpty() const
129{
Davide Pesaventoeaa93f42017-09-17 00:21:00 -0400130 return BIO_pending(m_impl->m_sink) <= 0;
Yingdi Yu87516612015-07-10 18:03:52 -0700131}
132
133void
134BlockCipher::initializeAesCbc(const uint8_t* key, size_t keyLen,
Davide Pesaventoeaa93f42017-09-17 00:21:00 -0400135 const uint8_t* iv, size_t ivLen, CipherOperator op)
Yingdi Yu87516612015-07-10 18:03:52 -0700136{
Yingdi Yu87516612015-07-10 18:03:52 -0700137 const EVP_CIPHER* cipherType = nullptr;
138 switch (keyLen) {
139 case 16:
140 cipherType = EVP_aes_128_cbc();
141 break;
142 case 24:
143 cipherType = EVP_aes_192_cbc();
144 break;
145 case 32:
146 cipherType = EVP_aes_256_cbc();
147 break;
148 default:
Davide Pesaventoeaa93f42017-09-17 00:21:00 -0400149 BOOST_THROW_EXCEPTION(Error(getIndex(), "Unsupported key length " + to_string(keyLen)));
Yingdi Yu87516612015-07-10 18:03:52 -0700150 }
Davide Pesaventoeaa93f42017-09-17 00:21:00 -0400151
152 size_t requiredIvLen = static_cast<size_t>(EVP_CIPHER_iv_length(cipherType));
153 if (ivLen != requiredIvLen)
154 BOOST_THROW_EXCEPTION(Error(getIndex(), "IV length must be " + to_string(requiredIvLen)));
155
Yingdi Yu87516612015-07-10 18:03:52 -0700156 BIO_set_cipher(m_impl->m_cipher, cipherType, key, iv, static_cast<int>(op));
157}
158
159unique_ptr<Transform>
160blockCipher(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