Компиляция короткой программы с OpenSSL с модулем FIPS

#linux #compilation #linker #openssl #fips

#linux #Сборник #компоновщик #openssl #fips

Вопрос:

У меня есть очень простая программа шифрования / дешифрования, которая отлично работает без поддержки FIPS, но терпит неудачу, когда она:

     #include <openssl/conf.h>
    #include <openssl/evp.h>
    #include <openssl/err.h>
    #include <string.h>

    void handleErrors(void)
    {
        ERR_print_errors_fp(stderr);
        abort();
    }

    int encrypt(unsigned char *plaintext, int plaintext_len, unsigned char *key,
    unsigned char *iv, unsigned char *ciphertext)
{
  EVP_CIPHER_CTX *ctx;

  int len;

  int ciphertext_len;

  /* Create and initialise the context */
  if(!(ctx = EVP_CIPHER_CTX_new())) handleErrors();

  /* Initialise the encryption operation. IMPORTANT - ensure you use a key
   * and IV size appropriate for your cipher
   * In this example we are using 256 bit AES (i.e. a 256 bit key). The
   * IV size for *most* modes is the same as the block size. For AES this
   * is 128 bits */
  if(1 != EVP_EncryptInit_ex(ctx, EVP_aes_256_cbc(), NULL, key, iv))
    handleErrors();

  /* Provide the message to be encrypted, and obtain the encrypted output.
   * EVP_EncryptUpdate can be called multiple times if necessary
   */
  if(1 != EVP_EncryptUpdate(ctx, ciphertext, amp;len, plaintext, plaintext_len))
    handleErrors();
  ciphertext_len = len;

  /* Finalise the encryption. Further ciphertext bytes may be written at
   * this stage.
   */
  if(1 != EVP_EncryptFinal_ex(ctx, ciphertext   len, amp;len)) handleErrors();
  ciphertext_len  = len;

  /* Clean up */
  EVP_CIPHER_CTX_free(ctx);

  return ciphertext_len;
}

int decrypt(unsigned char *ciphertext, int ciphertext_len, unsigned char *key,
  unsigned char *iv, unsigned char *plaintext)
{
  EVP_CIPHER_CTX *ctx;

  int len;

  int plaintext_len;

  /* Create and initialise the context */
  if(!(ctx = EVP_CIPHER_CTX_new())) handleErrors();

  /* Initialise the decryption operation. IMPORTANT - ensure you use a key
   * and IV size appropriate for your cipher
   * In this example we are using 256 bit AES (i.e. a 256 bit key). The
   * IV size for *most* modes is the same as the block size. For AES this
   * is 128 bits */
  if(1 != EVP_DecryptInit_ex(ctx, EVP_aes_256_cbc(), NULL, key, iv))
    handleErrors();

  /* Provide the message to be decrypted, and obtain the plaintext output.
   * EVP_DecryptUpdate can be called multiple times if necessary
   */
  if(1 != EVP_DecryptUpdate(ctx, plaintext, amp;len, ciphertext, ciphertext_len))
    handleErrors();
  plaintext_len = len;

  /* Finalise the decryption. Further plaintext bytes may be written at
   * this stage.
   */
  if(1 != EVP_DecryptFinal_ex(ctx, plaintext   len, amp;len)) handleErrors();
  plaintext_len  = len;

  /* Clean up */
  EVP_CIPHER_CTX_free(ctx);

  return plaintext_len;
}

int main (void)
{
  /* Force FIPS initialization */
  FIPS_mode_set(1);
  /* Set up the key and iv. Do I need to say to not hard code these in a
   * real application? :-)
   */

  /* A 256 bit key */
  unsigned char *key = (unsigned char *)"01234567890123456789012345678901";

  /* A 128 bit IV */
  unsigned char *iv = (unsigned char *)"01234567890123456";

  /* Message to be encrypted */
  unsigned char *plaintext =
                (unsigned char *)"The quick brown fox jumps over the lazy dog";

  /* Buffer for ciphertext. Ensure the buffer is long enough for the
   * ciphertext which may be longer than the plaintext, dependant on the
   * algorithm and mode
   */
  unsigned char ciphertext[128];

  /* Buffer for the decrypted text */
  unsigned char decryptedtext[128];

  int decryptedtext_len, ciphertext_len;

  /* Initialise the library */
  ERR_load_crypto_strings();
  OpenSSL_add_all_algorithms();
  OPENSSL_config(NULL);

  /* Encrypt the plaintext */
  ciphertext_len = encrypt (plaintext, strlen ((char *)plaintext), key, iv,
                            ciphertext);

  /* Do something useful with the ciphertext here */
  printf("Ciphertext is:n");
  BIO_dump_fp (stdout, (const char *)ciphertext, ciphertext_len);

  /* Decrypt the ciphertext */
  decryptedtext_len = decrypt(ciphertext, ciphertext_len, key, iv,
    decryptedtext);

  /* Add a NULL terminator. We are expecting printable text */
  decryptedtext[decryptedtext_len] = '';

  /* Show the decrypted text */
  printf("Decrypted text is:n");
  printf("%sn", decryptedtext);

  /* Clean up */
  EVP_cleanup();
  ERR_free_strings();

  return 0;
}
  

Как вы можете видеть, только демонстрационный код с включенным FIPS. Без FIPS мой вывод:

 Ciphertext is:
0000 - e0 6f 63 a7 11 e8 b7 aa-9f 94 40 10 7d 46 80 a1   .oc.......@.}F..
0010 - 17 99 43 80 ea 31 d2 a2-99 b9 53 02 d4 39 b9 70   ..C..1....S..9.p
0020 - 2c 8e 65 a9 92 36 ec 92-07 04 91 5c f1 a9 8a 44   ,.e..6........D
Decrypted text is:
The quick brown fox jumps over the lazy dog
  

С FIPS компиляция проходит нормально, но при запуске генерируется следующее:

 139686960322208:error:2D0A0086:FIPS routines:FIPS_cipher:selftest failed:fips_enc.c:336:
139686960322208:error:2D0A0086:FIPS routines:FIPS_cipher:selftest failed:fips_enc.c:336:
  

Я пробовал как проект на C, так и проект на C , указывая переменную CC env как на сценарий fipsld, так и на модифицированный сценарий fipsld по мере необходимости. Моя переменная FIPSLD_CC указывает на gcc, как указано в документации FIPS.

Чего мне здесь не хватает?

Комментарии:

1. Какую версию OpenSSL вы используете? Она скомпилирована как статическая или динамическая библиотека? Работает ли это в режиме FIPS ? (Я говорю о openssl.exe здесь).

2. Версия OpenSSL — 1.0.2j, версия модуля FIPS — 2.0.13. Библиотеки являются статическими. Не уверен, как запустить OpenSSL в режиме FIPS (в Linux здесь, кстати, так что, очевидно, нет .exe, но та же концепция.)

3. Я провел некоторые дальнейшие исследования, включил соответствие FIPS для RHEL в целом, и теперь OpenSSL не выдает md5 (как и ожидалось), но правильно выдает sha1. Кажется, что там работает поддержка FIPS.

4. Вы должны проверить возвращаемое значение из FIPS_mode_set(1) и другие операции. Кроме того, похоже, что двоичный файл имеет хорошую подпись. Код ошибки отличается для неудачной проверки целостности. Я считаю, что код ошибки FIPS_R_FIPS_SELFTEST_FAILED 0x2D0A0086, а объяснение из руководства пользователя — «Алгоритм, известный в тестах ответов, не удался» . Возвращается ошибка проверки целостности FIPS_R_FINGERPRINT_DOES_NOT_MATCH . Наконец, вы, вероятно, можете свести проблему к пустому main , который только вызывает FIPS_mode_set(1) . Также смотрите Раздел D.3 Коды ошибок в Руководстве пользователя FIPS.

5. Итак, простая установка режима FIPS в пустом проекте не возвращает ошибок. К сожалению, раздел кода ошибки в руководстве пользователя практически бесполезен. Не так много способов выяснить, почему или как это не удалось. Запуск FIPS_mode_set(1) и затем немедленное выполнение printf(«%d», FIPS_mode()) возвращает 0. Мне кажется неправильным. Есть идеи?