Botan 3.11.0
Crypto and TLS for C&
ocb.cpp
Go to the documentation of this file.
1/*
2* OCB Mode
3* (C) 2013,2017 Jack Lloyd
4* (C) 2016 Daniel Neus, Rohde & Schwarz Cybersecurity
5*
6* Botan is released under the Simplified BSD License (see license.txt)
7*/
8
9#include <botan/internal/ocb.h>
10
11#include <botan/block_cipher.h>
12#include <botan/exceptn.h>
13#include <botan/mem_ops.h>
14#include <botan/internal/bit_ops.h>
15#include <botan/internal/ct_utils.h>
16#include <botan/internal/poly_dbl.h>
17
18namespace Botan {
19
20// Has to be in Botan namespace so unique_ptr can reference it
21class L_computer final {
22 public:
23 explicit L_computer(const BlockCipher& cipher) :
24 m_BS(cipher.block_size()), m_max_blocks(cipher.parallel_bytes() / m_BS) {
25 m_L_star.resize(m_BS);
26 cipher.encrypt(m_L_star);
27 m_L_dollar = poly_double(star());
28
29 // Preallocate the m_L vector to the maximum expected size to avoid
30 // re-allocations during runtime. This had caused a use-after-free in
31 // earlier versions, due to references into this buffer becoming stale
32 // in `compute_offset()`, after calling `get()` in the hot path.
33 //
34 // Note, that the list member won't be pre-allocated, so the expected
35 // memory overhead is negligible.
36 //
37 // See also https://github.com/randombit/botan/issues/3812
38 m_L.reserve(31);
39 m_L.push_back(poly_double(dollar()));
40
41 while(m_L.size() < 8) {
42 m_L.push_back(poly_double(m_L.back()));
43 }
44
45 m_offset_buf.resize(m_BS * m_max_blocks);
46 }
47
48 void init(const secure_vector<uint8_t>& offset) { m_offset = offset; }
49
50 bool initialized() const { return !m_offset.empty(); }
51
52 const secure_vector<uint8_t>& star() const { return m_L_star; }
53
54 const secure_vector<uint8_t>& dollar() const { return m_L_dollar; }
55
56 const secure_vector<uint8_t>& offset() const { return m_offset; }
57
58 const secure_vector<uint8_t>& get(size_t i) const {
59 while(m_L.size() <= i) {
60 m_L.push_back(poly_double(m_L.back()));
61 }
62
63 return m_L[i];
64 }
65
66 const uint8_t* compute_offsets(size_t block_index, size_t blocks) {
67 BOTAN_ASSERT(blocks <= m_max_blocks, "OCB offsets");
68
69 uint8_t* offsets = m_offset_buf.data();
70
71 if(block_index % 4 == 0) {
72 const secure_vector<uint8_t>& L0 = get(0);
73 const secure_vector<uint8_t>& L1 = get(1);
74
75 while(blocks >= 4) {
76 // ntz(4*i+1) == 0
77 // ntz(4*i+2) == 1
78 // ntz(4*i+3) == 0
79 block_index += 4;
80 const size_t ntz4 = var_ctz32(static_cast<uint32_t>(block_index));
81
82 xor_buf(offsets, m_offset.data(), L0.data(), m_BS);
83 offsets += m_BS;
84
85 xor_buf(offsets, offsets - m_BS, L1.data(), m_BS);
86 offsets += m_BS;
87
88 xor_buf(m_offset.data(), L1.data(), m_BS);
89 copy_mem(offsets, m_offset.data(), m_BS);
90 offsets += m_BS;
91
92 xor_buf(m_offset.data(), get(ntz4).data(), m_BS);
93 copy_mem(offsets, m_offset.data(), m_BS);
94 offsets += m_BS;
95
96 blocks -= 4;
97 }
98 }
99
100 for(size_t i = 0; i != blocks; ++i) { // could be done in parallel
101 const size_t ntz = var_ctz32(static_cast<uint32_t>(block_index + i + 1));
102 xor_buf(m_offset.data(), get(ntz).data(), m_BS);
103 copy_mem(offsets, m_offset.data(), m_BS);
104 offsets += m_BS;
105 }
106
107 return m_offset_buf.data();
108 }
109
110 private:
111 static secure_vector<uint8_t> poly_double(const secure_vector<uint8_t>& in) {
112 secure_vector<uint8_t> out(in.size());
113 poly_double_n(out.data(), in.data(), out.size());
114 return out;
115 }
116
117 const size_t m_BS, m_max_blocks;
118 secure_vector<uint8_t> m_L_dollar, m_L_star;
119 secure_vector<uint8_t> m_offset;
120 mutable std::vector<secure_vector<uint8_t>> m_L;
121 secure_vector<uint8_t> m_offset_buf;
122};
123
124namespace {
125
126/*
127* OCB's HASH
128*/
129secure_vector<uint8_t> ocb_hash(const L_computer& L, const BlockCipher& cipher, const uint8_t ad[], size_t ad_len) {
130 const size_t BS = cipher.block_size();
132 secure_vector<uint8_t> offset(BS);
133
135
136 const size_t ad_blocks = (ad_len / BS);
137 const size_t ad_remainder = (ad_len % BS);
138
139 for(size_t i = 0; i != ad_blocks; ++i) {
140 // this loop could run in parallel
141 offset ^= L.get(var_ctz32(static_cast<uint32_t>(i + 1)));
142 buf = offset;
143 xor_buf(buf.data(), &ad[BS * i], BS);
144 cipher.encrypt(buf);
145 sum ^= buf;
146 }
147
148 if(ad_remainder > 0) {
149 offset ^= L.star();
150 buf = offset;
151 xor_buf(buf.data(), &ad[BS * ad_blocks], ad_remainder);
152 buf[ad_remainder] ^= 0x80;
153 cipher.encrypt(buf);
154 sum ^= buf;
155 }
156
157 return sum;
158}
159
160} // namespace
161
162OCB_Mode::OCB_Mode(std::unique_ptr<BlockCipher> cipher, size_t tag_size) :
163 m_cipher(std::move(cipher)),
164 m_checksum(m_cipher->parallel_bytes()),
166 m_tag_size(tag_size),
167 m_block_size(m_cipher->block_size()),
168 m_par_blocks(m_cipher->parallel_bytes() / m_block_size) {
169 const size_t BS = block_size();
170
171 /*
172 * draft-krovetz-ocb-wide-d1 specifies OCB for several other block
173 * sizes but only 128, 192, 256 and 512 bit are currently supported
174 * by this implementation.
175 */
176 BOTAN_ARG_CHECK(BS == 16 || BS == 24 || BS == 32 || BS == 64, "Invalid block size for OCB");
177
178 BOTAN_ARG_CHECK(m_tag_size % 4 == 0 && m_tag_size >= 8 && m_tag_size <= BS && m_tag_size <= 32,
179 "Invalid OCB tag length");
180}
181
182OCB_Mode::~OCB_Mode() = default;
183
185 m_cipher->clear();
186 m_L.reset(); // add clear here?
187 reset();
188}
189
191 m_block_index = 0;
194 m_last_nonce.clear();
195 m_stretch.clear();
196}
197
198bool OCB_Mode::valid_nonce_length(size_t length) const {
199 if(length == 0) {
200 return false;
201 }
202 if(block_size() == 16) {
203 return length < 16;
204 } else {
205 return length < (block_size() - 1);
206 }
207}
208
209std::string OCB_Mode::name() const {
210 return m_cipher->name() + "/OCB"; // include tag size?
211}
212
214 return block_size();
215}
216
218 return (m_par_blocks * block_size());
219}
220
222 return m_cipher->key_spec();
223}
224
226 return m_cipher->has_keying_material();
227}
228
229void OCB_Mode::key_schedule(std::span<const uint8_t> key) {
230 m_cipher->set_key(key);
231 m_L = std::make_unique<L_computer>(*m_cipher);
232}
233
234void OCB_Mode::set_associated_data_n(size_t idx, std::span<const uint8_t> ad) {
235 BOTAN_ARG_CHECK(idx == 0, "OCB: cannot handle non-zero index in set_associated_data_n");
237 m_ad_hash = ocb_hash(*m_L, *m_cipher, ad.data(), ad.size());
238}
239
240const secure_vector<uint8_t>& OCB_Mode::update_nonce(const uint8_t nonce[], size_t nonce_len) {
241 const size_t BS = block_size();
242
243 BOTAN_ASSERT(BS == 16 || BS == 24 || BS == 32 || BS == 64, "OCB block size is supported");
244
245 // NOLINTNEXTLINE(readability-avoid-nested-conditional-operator)
246 const size_t MASKLEN = (BS == 16 ? 6 : ((BS == 24) ? 7 : 8));
247
248 const uint8_t BOTTOM_MASK = static_cast<uint8_t>((static_cast<uint16_t>(1) << MASKLEN) - 1);
249
250 m_nonce_buf.resize(BS);
251 clear_mem(m_nonce_buf.data(), m_nonce_buf.size());
252
253 copy_mem(&m_nonce_buf[BS - nonce_len], nonce, nonce_len);
254 m_nonce_buf[0] = static_cast<uint8_t>(((tag_size() * 8) % (BS * 8)) << (BS <= 16 ? 1 : 0));
255
256 m_nonce_buf[BS - nonce_len - 1] ^= 1;
257
258 const uint8_t bottom = m_nonce_buf[BS - 1] & BOTTOM_MASK;
259 m_nonce_buf[BS - 1] &= ~BOTTOM_MASK;
260
261 const bool need_new_stretch = (m_last_nonce != m_nonce_buf);
262
263 if(need_new_stretch) {
264 m_last_nonce = m_nonce_buf;
265
266 m_cipher->encrypt(m_nonce_buf);
267
268 /*
269 The loop bounds (BS vs BS/2) are derived from the relation
270 between the block size and the MASKLEN. Using the terminology
271 of draft-krovetz-ocb-wide, we have to derive enough bits in
272 ShiftedKtop to read up to BLOCKLEN+bottom bits from Stretch.
273
274 +----------+---------+-------+---------+
275 | BLOCKLEN | RESIDUE | SHIFT | MASKLEN |
276 +----------+---------+-------+---------+
277 | 32 | 141 | 17 | 4 |
278 | 64 | 27 | 25 | 5 |
279 | 96 | 1601 | 33 | 6 |
280 | 128 | 135 | 8 | 6 |
281 | 192 | 135 | 40 | 7 |
282 | 256 | 1061 | 1 | 8 |
283 | 384 | 4109 | 80 | 8 |
284 | 512 | 293 | 176 | 8 |
285 | 1024 | 524355 | 352 | 9 |
286 +----------+---------+-------+---------+
287 */
288 if(BS == 16) {
289 for(size_t i = 0; i != BS / 2; ++i) {
290 m_nonce_buf.push_back(m_nonce_buf[i] ^ m_nonce_buf[i + 1]);
291 }
292 } else if(BS == 24) {
293 for(size_t i = 0; i != 16; ++i) {
294 m_nonce_buf.push_back(m_nonce_buf[i] ^ m_nonce_buf[i + 5]);
295 }
296 } else if(BS == 32) {
297 for(size_t i = 0; i != BS; ++i) {
298 m_nonce_buf.push_back(m_nonce_buf[i] ^ (m_nonce_buf[i] << 1) ^ (m_nonce_buf[i + 1] >> 7));
299 }
300 } else if(BS == 64) {
301 for(size_t i = 0; i != BS / 2; ++i) {
302 m_nonce_buf.push_back(m_nonce_buf[i] ^ m_nonce_buf[i + 22]);
303 }
304 }
305
306 m_stretch = m_nonce_buf;
307 }
308
309 // now set the offset from stretch and bottom
310 const size_t shift_bytes = bottom / 8;
311 const size_t shift_bits = bottom % 8;
312
313 BOTAN_ASSERT(m_stretch.size() >= BS + shift_bytes + 1, "Size ok");
314
315 m_offset.resize(BS);
316 for(size_t i = 0; i != BS; ++i) {
317 m_offset[i] = (m_stretch[i + shift_bytes] << shift_bits);
318 m_offset[i] |= (m_stretch[i + shift_bytes + 1] >> (8 - shift_bits));
319 }
320
321 return m_offset;
322}
323
324void OCB_Mode::start_msg(const uint8_t nonce[], size_t nonce_len) {
325 if(!valid_nonce_length(nonce_len)) {
326 throw Invalid_IV_Length(name(), nonce_len);
327 }
328
330
331 m_L->init(update_nonce(nonce, nonce_len));
333 m_block_index = 0;
334}
335
336void OCB_Encryption::encrypt(uint8_t buffer[], size_t blocks) {
338 BOTAN_STATE_CHECK(m_L->initialized());
339
340 const size_t BS = block_size();
341
342 while(blocks > 0) {
343 const size_t proc_blocks = std::min(blocks, par_blocks());
344 const size_t proc_bytes = proc_blocks * BS;
345
346 const uint8_t* offsets = m_L->compute_offsets(m_block_index, proc_blocks);
347
348 xor_buf(m_checksum.data(), buffer, proc_bytes);
349
350 xor_buf(buffer, offsets, proc_bytes);
351 m_cipher->encrypt_n(buffer, buffer, proc_blocks);
352 xor_buf(buffer, offsets, proc_bytes);
353
354 buffer += proc_bytes;
355 blocks -= proc_blocks;
356 m_block_index += proc_blocks;
357 }
358}
359
360size_t OCB_Encryption::process_msg(uint8_t buf[], size_t sz) {
361 BOTAN_ARG_CHECK(sz % update_granularity() == 0, "Invalid OCB input size");
362 encrypt(buf, sz / block_size());
363 return sz;
364}
365
366void OCB_Encryption::finish_msg(secure_vector<uint8_t>& buffer, size_t offset) {
368 BOTAN_STATE_CHECK(m_L->initialized());
369
370 const size_t BS = block_size();
371
372 BOTAN_ARG_CHECK(buffer.size() >= offset, "Offset is out of range");
373 const size_t sz = buffer.size() - offset;
374 uint8_t* buf = buffer.data() + offset;
375
377
378 if(sz > 0) {
379 const size_t final_full_blocks = sz / BS;
380 const size_t remainder_bytes = sz - (final_full_blocks * BS);
381
382 encrypt(buf, final_full_blocks);
383 mac = m_L->offset();
384
385 if(remainder_bytes > 0) {
386 BOTAN_ASSERT(remainder_bytes < BS, "Only a partial block left");
387 uint8_t* remainder = &buf[sz - remainder_bytes];
388
389 xor_buf(m_checksum.data(), remainder, remainder_bytes);
390 m_checksum[remainder_bytes] ^= 0x80;
391
392 // Offset_*
393 mac ^= m_L->star();
394
396 m_cipher->encrypt(mac, pad);
397 xor_buf(remainder, pad.data(), remainder_bytes);
398 }
399 } else {
400 mac = m_L->offset();
401 }
402
403 // now compute the tag
404
405 // fold checksum
406 for(size_t i = 0; i != m_checksum.size(); i += BS) {
407 xor_buf(mac.data(), m_checksum.data() + i, BS);
408 }
409
410 xor_buf(mac.data(), m_L->dollar().data(), BS);
411 m_cipher->encrypt(mac);
412 xor_buf(mac.data(), m_ad_hash.data(), BS);
413
414 buffer += std::make_pair(mac.data(), tag_size());
415
417 m_block_index = 0;
418}
419
420void OCB_Decryption::decrypt(uint8_t buffer[], size_t blocks) {
422 BOTAN_STATE_CHECK(m_L->initialized());
423
424 const size_t BS = block_size();
425
426 while(blocks > 0) {
427 const size_t proc_blocks = std::min(blocks, par_blocks());
428 const size_t proc_bytes = proc_blocks * BS;
429
430 const uint8_t* offsets = m_L->compute_offsets(m_block_index, proc_blocks);
431
432 xor_buf(buffer, offsets, proc_bytes);
433 m_cipher->decrypt_n(buffer, buffer, proc_blocks);
434 xor_buf(buffer, offsets, proc_bytes);
435
436 xor_buf(m_checksum.data(), buffer, proc_bytes);
437
438 buffer += proc_bytes;
439 blocks -= proc_blocks;
440 m_block_index += proc_blocks;
441 }
442}
443
444size_t OCB_Decryption::process_msg(uint8_t buf[], size_t sz) {
445 BOTAN_ARG_CHECK(sz % update_granularity() == 0, "Invalid OCB input size");
446 decrypt(buf, sz / block_size());
447 return sz;
448}
449
450void OCB_Decryption::finish_msg(secure_vector<uint8_t>& buffer, size_t offset) {
452 BOTAN_STATE_CHECK(m_L->initialized());
453
454 const size_t BS = block_size();
455
456 BOTAN_ARG_CHECK(buffer.size() >= offset, "Offset is out of range");
457 const size_t sz = buffer.size() - offset;
458 uint8_t* buf = buffer.data() + offset;
459
460 BOTAN_ARG_CHECK(sz >= tag_size(), "input did not include the tag");
461
462 const size_t remaining = sz - tag_size();
463
465
466 if(remaining > 0) {
467 const size_t final_full_blocks = remaining / BS;
468 const size_t final_bytes = remaining - (final_full_blocks * BS);
469
470 decrypt(buf, final_full_blocks);
471 mac ^= m_L->offset();
472
473 if(final_bytes > 0) {
474 BOTAN_ASSERT(final_bytes < BS, "Only a partial block left");
475
476 uint8_t* remainder = &buf[remaining - final_bytes];
477
478 mac ^= m_L->star();
480 m_cipher->encrypt(mac, pad); // P_*
481 xor_buf(remainder, pad.data(), final_bytes);
482
483 xor_buf(m_checksum.data(), remainder, final_bytes);
484 m_checksum[final_bytes] ^= 0x80;
485 }
486 } else {
487 mac = m_L->offset();
488 }
489
490 // compute the mac
491
492 // fold checksum
493 for(size_t i = 0; i != m_checksum.size(); i += BS) {
494 xor_buf(mac.data(), m_checksum.data() + i, BS);
495 }
496
497 mac ^= m_L->dollar();
498 m_cipher->encrypt(mac);
499 mac ^= m_ad_hash;
500
501 // reset state
503 m_block_index = 0;
504
505 // compare mac
506 const uint8_t* included_tag = &buf[remaining];
507
508 if(!CT::is_equal(mac.data(), included_tag, tag_size()).as_bool()) {
509 throw Invalid_Authentication_Tag("OCB tag check failed");
510 }
511
512 // remove tag from end of message
513 buffer.resize(remaining + offset);
514}
515
516} // namespace Botan
#define BOTAN_STATE_CHECK(expr)
Definition assert.h:49
#define BOTAN_ARG_CHECK(expr, msg)
Definition assert.h:33
#define BOTAN_ASSERT(expr, assertion_made)
Definition assert.h:62
size_t block_size() const
Definition ocb.h:64
size_t par_blocks() const
Definition ocb.h:66
Key_Length_Specification key_spec() const final
Definition ocb.cpp:221
size_t tag_size() const final
Definition ocb.h:47
secure_vector< uint8_t > m_checksum
Definition ocb.h:76
~OCB_Mode() override
std::string name() const final
Definition ocb.cpp:209
bool valid_nonce_length(size_t length) const final
Definition ocb.cpp:198
std::unique_ptr< BlockCipher > m_cipher
Definition ocb.h:71
secure_vector< uint8_t > m_ad_hash
Definition ocb.h:77
size_t m_block_index
Definition ocb.h:74
size_t ideal_granularity() const final
Definition ocb.cpp:217
bool has_keying_material() const final
Definition ocb.cpp:225
void clear() final
Definition ocb.cpp:184
void reset() final
Definition ocb.cpp:190
OCB_Mode(std::unique_ptr< BlockCipher > cipher, size_t tag_size)
Definition ocb.cpp:162
void set_associated_data_n(size_t idx, std::span< const uint8_t > ad) final
Definition ocb.cpp:234
size_t update_granularity() const final
Definition ocb.cpp:213
std::unique_ptr< L_computer > m_L
Definition ocb.h:72
void assert_key_material_set() const
Definition sym_algo.h:145
constexpr CT::Mask< T > is_equal(const T x[], const T y[], size_t len)
Definition ct_utils.h:798
void zeroise(std::vector< T, Alloc > &vec)
Definition secmem.h:124
constexpr void copy_mem(T *out, const T *in, size_t n)
Definition mem_ops.h:144
BOTAN_FORCE_INLINE constexpr size_t var_ctz32(uint32_t n)
Definition bit_ops.h:180
constexpr void xor_buf(ranges::contiguous_output_range< uint8_t > auto &&out, ranges::contiguous_range< uint8_t > auto &&in)
Definition mem_ops.h:341
std::vector< T, secure_allocator< T > > secure_vector
Definition secmem.h:68
void poly_double_n(uint8_t out[], const uint8_t in[], size_t n)
Definition poly_dbl.cpp:81
constexpr void clear_mem(T *ptr, size_t n)
Definition mem_ops.h:118