gcm.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * Dropbear SSH
  3. *
  4. * Copyright (c) 2002,2003 Matt Johnston
  5. * Copyright (c) 2020 by Vladislav Grishenko
  6. * All rights reserved.
  7. *
  8. * Permission is hereby granted, free of charge, to any person obtaining a copy
  9. * of this software and associated documentation files (the "Software"), to deal
  10. * in the Software without restriction, including without limitation the rights
  11. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  12. * copies of the Software, and to permit persons to whom the Software is
  13. * furnished to do so, subject to the following conditions:
  14. *
  15. * The above copyright notice and this permission notice shall be included in
  16. * all copies or substantial portions of the Software.
  17. *
  18. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  19. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  20. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  21. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  22. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  23. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  24. * SOFTWARE. */
  25. #include "includes.h"
  26. #include "algo.h"
  27. #include "dbutil.h"
  28. #include "gcm.h"
  29. #if DROPBEAR_ENABLE_GCM_MODE
  30. #define GHASH_LEN 16
  31. static const struct dropbear_hash dropbear_ghash =
  32. {NULL, 0, GHASH_LEN};
  33. static int dropbear_gcm_start(int cipher, const unsigned char *IV,
  34. const unsigned char *key, int keylen,
  35. int UNUSED(num_rounds), dropbear_gcm_state *state) {
  36. int err;
  37. TRACE2(("enter dropbear_gcm_start"))
  38. if ((err = gcm_init(&state->gcm, cipher, key, keylen)) != CRYPT_OK) {
  39. return err;
  40. }
  41. memcpy(state->iv, IV, GCM_NONCE_LEN);
  42. TRACE2(("leave dropbear_gcm_start"))
  43. return CRYPT_OK;
  44. }
  45. static int dropbear_gcm_crypt(unsigned int UNUSED(seq),
  46. const unsigned char *in, unsigned char *out,
  47. unsigned long len, unsigned long taglen,
  48. dropbear_gcm_state *state, int direction) {
  49. unsigned char *iv, tag[GHASH_LEN];
  50. int i, err;
  51. TRACE2(("enter dropbear_gcm_crypt"))
  52. if (len < 4 || taglen != GHASH_LEN) {
  53. return CRYPT_ERROR;
  54. }
  55. gcm_reset(&state->gcm);
  56. if ((err = gcm_add_iv(&state->gcm,
  57. state->iv, GCM_NONCE_LEN)) != CRYPT_OK) {
  58. return err;
  59. }
  60. if ((err = gcm_add_aad(&state->gcm, in, 4)) != CRYPT_OK) {
  61. return err;
  62. }
  63. if ((err = gcm_process(&state->gcm, (unsigned char *) in + 4,
  64. len - 4, out + 4, direction)) != CRYPT_OK) {
  65. return err;
  66. }
  67. if (direction == LTC_ENCRYPT) {
  68. gcm_done(&state->gcm, out + len, &taglen);
  69. } else {
  70. gcm_done(&state->gcm, tag, &taglen);
  71. if (constant_time_memcmp(in + len, tag, taglen) != 0) {
  72. return CRYPT_ERROR;
  73. }
  74. }
  75. /* increment invocation counter */
  76. iv = state->iv + GCM_IVFIX_LEN;
  77. for (i = GCM_IVCTR_LEN - 1; i >= 0 && ++iv[i] == 0; i--);
  78. TRACE2(("leave dropbear_gcm_crypt"))
  79. return CRYPT_OK;
  80. }
  81. static int dropbear_gcm_getlength(unsigned int UNUSED(seq),
  82. const unsigned char *in, unsigned int *outlen,
  83. unsigned long len, dropbear_gcm_state* UNUSED(state)) {
  84. TRACE2(("enter dropbear_gcm_getlength"))
  85. if (len < 4) {
  86. return CRYPT_ERROR;
  87. }
  88. LOAD32H(*outlen, in);
  89. TRACE2(("leave dropbear_gcm_getlength"))
  90. return CRYPT_OK;
  91. }
  92. const struct dropbear_cipher_mode dropbear_mode_gcm =
  93. {(void *)dropbear_gcm_start, NULL, NULL,
  94. (void *)dropbear_gcm_crypt,
  95. (void *)dropbear_gcm_getlength, &dropbear_ghash};
  96. #endif /* DROPBEAR_ENABLE_GCM_MODE */