ctr.c 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. /* ====================================================================
  2. * Copyright (c) 2008 The OpenSSL Project. 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. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. *
  11. * 2. Redistributions in binary form must reproduce the above copyright
  12. * notice, this list of conditions and the following disclaimer in
  13. * the documentation and/or other materials provided with the
  14. * distribution.
  15. *
  16. * 3. All advertising materials mentioning features or use of this
  17. * software must display the following acknowledgment:
  18. * "This product includes software developed by the OpenSSL Project
  19. * for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
  20. *
  21. * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
  22. * endorse or promote products derived from this software without
  23. * prior written permission. For written permission, please contact
  24. * openssl-core@openssl.org.
  25. *
  26. * 5. Products derived from this software may not be called "OpenSSL"
  27. * nor may "OpenSSL" appear in their names without prior written
  28. * permission of the OpenSSL Project.
  29. *
  30. * 6. Redistributions of any form whatsoever must retain the following
  31. * acknowledgment:
  32. * "This product includes software developed by the OpenSSL Project
  33. * for use in the OpenSSL Toolkit (http://www.openssl.org/)"
  34. *
  35. * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
  36. * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  37. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  38. * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
  39. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  41. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  42. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  43. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  44. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  45. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
  46. * OF THE POSSIBILITY OF SUCH DAMAGE.
  47. * ==================================================================== */
  48. #include <openssl/type_check.h>
  49. #include <assert.h>
  50. #include <string.h>
  51. #include "internal.h"
  52. // NOTE: the IV/counter CTR mode is big-endian. The code itself
  53. // is endian-neutral.
  54. // increment counter (128-bit int) by 1
  55. static void ctr128_inc(uint8_t *counter) {
  56. uint32_t n = 16, c = 1;
  57. do {
  58. --n;
  59. c += counter[n];
  60. counter[n] = (uint8_t) c;
  61. c >>= 8;
  62. } while (n);
  63. }
  64. OPENSSL_COMPILE_ASSERT((16 % sizeof(size_t)) == 0, bad_size_t_size_ctr);
  65. // The input encrypted as though 128bit counter mode is being used. The extra
  66. // state information to record how much of the 128bit block we have used is
  67. // contained in *num, and the encrypted counter is kept in ecount_buf. Both
  68. // *num and ecount_buf must be initialised with zeros before the first call to
  69. // CRYPTO_ctr128_encrypt().
  70. //
  71. // This algorithm assumes that the counter is in the x lower bits of the IV
  72. // (ivec), and that the application has full control over overflow and the rest
  73. // of the IV. This implementation takes NO responsibility for checking that
  74. // the counter doesn't overflow into the rest of the IV when incremented.
  75. void CRYPTO_ctr128_encrypt(const uint8_t *in, uint8_t *out, size_t len,
  76. const void *key, uint8_t ivec[16],
  77. uint8_t ecount_buf[16], unsigned int *num,
  78. block128_f block) {
  79. unsigned int n;
  80. assert(key && ecount_buf && num);
  81. assert(len == 0 || (in && out));
  82. assert(*num < 16);
  83. n = *num;
  84. while (n && len) {
  85. *(out++) = *(in++) ^ ecount_buf[n];
  86. --len;
  87. n = (n + 1) % 16;
  88. }
  89. #if STRICT_ALIGNMENT
  90. if (((uintptr_t)in | (uintptr_t)out |
  91. (uintptr_t)ecount_buf) % sizeof(size_t) != 0) {
  92. size_t l = 0;
  93. while (l < len) {
  94. if (n == 0) {
  95. (*block)(ivec, ecount_buf, key);
  96. ctr128_inc(ivec);
  97. }
  98. out[l] = in[l] ^ ecount_buf[n];
  99. ++l;
  100. n = (n + 1) % 16;
  101. }
  102. *num = n;
  103. return;
  104. }
  105. #endif
  106. while (len >= 16) {
  107. (*block)(ivec, ecount_buf, key);
  108. ctr128_inc(ivec);
  109. for (n = 0; n < 16; n += sizeof(size_t)) {
  110. store_word_le(out + n,
  111. load_word_le(in + n) ^ load_word_le(ecount_buf + n));
  112. }
  113. len -= 16;
  114. out += 16;
  115. in += 16;
  116. n = 0;
  117. }
  118. if (len) {
  119. (*block)(ivec, ecount_buf, key);
  120. ctr128_inc(ivec);
  121. while (len--) {
  122. out[n] = in[n] ^ ecount_buf[n];
  123. ++n;
  124. }
  125. }
  126. *num = n;
  127. }
  128. // increment upper 96 bits of 128-bit counter by 1
  129. static void ctr96_inc(uint8_t *counter) {
  130. uint32_t n = 12, c = 1;
  131. do {
  132. --n;
  133. c += counter[n];
  134. counter[n] = (uint8_t) c;
  135. c >>= 8;
  136. } while (n);
  137. }
  138. void CRYPTO_ctr128_encrypt_ctr32(const uint8_t *in, uint8_t *out,
  139. size_t len, const void *key,
  140. uint8_t ivec[16],
  141. uint8_t ecount_buf[16],
  142. unsigned int *num, ctr128_f func) {
  143. unsigned int n, ctr32;
  144. assert(key && ecount_buf && num);
  145. assert(len == 0 || (in && out));
  146. assert(*num < 16);
  147. n = *num;
  148. while (n && len) {
  149. *(out++) = *(in++) ^ ecount_buf[n];
  150. --len;
  151. n = (n + 1) % 16;
  152. }
  153. ctr32 = GETU32(ivec + 12);
  154. while (len >= 16) {
  155. size_t blocks = len / 16;
  156. // 1<<28 is just a not-so-small yet not-so-large number...
  157. // Below condition is practically never met, but it has to
  158. // be checked for code correctness.
  159. if (sizeof(size_t) > sizeof(unsigned int) && blocks > (1U << 28)) {
  160. blocks = (1U << 28);
  161. }
  162. // As (*func) operates on 32-bit counter, caller
  163. // has to handle overflow. 'if' below detects the
  164. // overflow, which is then handled by limiting the
  165. // amount of blocks to the exact overflow point...
  166. ctr32 += (uint32_t)blocks;
  167. if (ctr32 < blocks) {
  168. blocks -= ctr32;
  169. ctr32 = 0;
  170. }
  171. (*func)(in, out, blocks, key, ivec);
  172. // (*func) does not update ivec, caller does:
  173. PUTU32(ivec + 12, ctr32);
  174. // ... overflow was detected, propogate carry.
  175. if (ctr32 == 0) {
  176. ctr96_inc(ivec);
  177. }
  178. blocks *= 16;
  179. len -= blocks;
  180. out += blocks;
  181. in += blocks;
  182. }
  183. if (len) {
  184. OPENSSL_memset(ecount_buf, 0, 16);
  185. (*func)(ecount_buf, ecount_buf, 1, key, ivec);
  186. ++ctr32;
  187. PUTU32(ivec + 12, ctr32);
  188. if (ctr32 == 0) {
  189. ctr96_inc(ivec);
  190. }
  191. while (len--) {
  192. out[n] = in[n] ^ ecount_buf[n];
  193. ++n;
  194. }
  195. }
  196. *num = n;
  197. }