1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050
|
/*
* Copyright (C) 2013 Red Hat
*
* Author: Nikos Mavrogiannopoulos
*
* This file is part of GnuTLS.
*
* The GnuTLS is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* as published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>
*
*/
#include "gnutls_int.h"
#include <gnutls/gnutls.h>
#include <gnutls/crypto.h>
#include <unistd.h>
#include "dirname.h"
#include "errors.h"
#include "file.h"
#include "inih/ini.h"
#include "str.h"
#include "fips.h"
#include <gnutls/self-test.h>
#include <stdio.h>
#include "extras/hex.h"
#include "random.h"
#include "gthreads.h"
#ifdef HAVE_DL_ITERATE_PHDR
#include <link.h>
#endif
unsigned int _gnutls_lib_state = LIB_STATE_POWERON;
struct gnutls_fips140_context_st {
gnutls_fips140_operation_state_t state;
struct gnutls_fips140_context_st *next;
};
#ifdef ENABLE_FIPS140
#include <dlfcn.h>
#define FIPS_KERNEL_FILE "/proc/sys/crypto/fips_enabled"
#define FIPS_SYSTEM_FILE "/etc/system-fips"
/* We provide a per-thread FIPS-mode so that an application
* can use gnutls_fips140_set_mode() to override a specific
* operation on a thread */
static gnutls_fips_mode_t _global_fips_mode = -1;
static _Thread_local gnutls_fips_mode_t _tfips_mode = -1;
static _Thread_local gnutls_fips140_context_t _tfips_context = NULL;
static int _skip_integrity_checks = 0;
/* Returns:
* a gnutls_fips_mode_t value
*/
unsigned _gnutls_fips_mode_enabled(void)
{
unsigned f1p = 0, f2p;
FILE *fd;
const char *p;
unsigned ret;
/* We initialize this threads' mode, and
* the global mode if not already initialized.
* When the global mode is initialized, then
* the thread mode is copied from it. As this
* is called on library initialization, the
* _global_fips_mode is always set during app run.
*/
if (_tfips_mode != (gnutls_fips_mode_t)-1)
return _tfips_mode;
if (_global_fips_mode != (gnutls_fips_mode_t)-1) {
return _global_fips_mode;
}
p = secure_getenv("GNUTLS_SKIP_FIPS_INTEGRITY_CHECKS");
if (p && p[0] == '1') {
_skip_integrity_checks = 1;
}
p = secure_getenv("GNUTLS_FORCE_FIPS_MODE");
if (p) {
if (p[0] == '1')
ret = GNUTLS_FIPS140_STRICT;
else if (p[0] == '2')
ret = GNUTLS_FIPS140_SELFTESTS;
else if (p[0] == '3')
ret = GNUTLS_FIPS140_LAX;
else if (p[0] == '4')
ret = GNUTLS_FIPS140_LOG;
else
ret = GNUTLS_FIPS140_DISABLED;
goto exit;
}
fd = fopen(FIPS_KERNEL_FILE, "re");
if (fd != NULL) {
f1p = fgetc(fd);
fclose(fd);
if (f1p == '1')
f1p = 1;
else
f1p = 0;
}
if (f1p != 0) {
_gnutls_debug_log("FIPS140-2 mode enabled\n");
ret = GNUTLS_FIPS140_STRICT;
goto exit;
}
f2p = !access(FIPS_SYSTEM_FILE, F_OK);
if (f2p != 0) {
/* a funny state where self tests are performed
* and ignored */
_gnutls_debug_log("FIPS140-2 ZOMBIE mode enabled\n");
ret = GNUTLS_FIPS140_SELFTESTS;
goto exit;
}
ret = GNUTLS_FIPS140_DISABLED;
goto exit;
exit:
_global_fips_mode = ret;
return ret;
}
/* This _fips_mode == 2 is a strange mode where checks are being
* performed, but its output is ignored. */
void _gnutls_fips_mode_reset_zombie(void)
{
if (_global_fips_mode == GNUTLS_FIPS140_SELFTESTS) {
_global_fips_mode = GNUTLS_FIPS140_DISABLED;
}
}
/* These only works with the platform where SONAME is part of the ABI. */
#ifndef GNUTLS_LIBRARY_SONAME
#define GNUTLS_LIBRARY_SONAME "none"
#endif
#define HMAC_SIZE 32
#define HMAC_ALGO GNUTLS_MAC_SHA256
#define HMAC_FORMAT_VERSION 1
struct hmac_entry {
char path[GNUTLS_PATH_MAX];
uint8_t hmac[HMAC_SIZE];
};
struct hmac_file {
int version;
struct hmac_entry gnutls;
#ifdef NETTLE_LIBRARY_SONAME
struct hmac_entry nettle;
#endif
#ifdef HOGWEED_LIBRARY_SONAME
struct hmac_entry hogweed;
#endif
#ifdef GMP_LIBRARY_SONAME
struct hmac_entry gmp;
#endif
};
struct lib_paths {
char gnutls[GNUTLS_PATH_MAX];
#ifdef NETTLE_LIBRARY_SONAME
char nettle[GNUTLS_PATH_MAX];
#endif
#ifdef HOGWEED_LIBRARY_SONAME
char hogweed[GNUTLS_PATH_MAX];
#endif
#ifdef GMP_LIBRARY_SONAME
char gmp[GNUTLS_PATH_MAX];
#endif
};
/*
* get_hmac:
* @dest: buffer for the hex value
* @value: hmac value
*
* Parses hmac data and copies hex value into dest.
* dest must point to at least HMAC_SIZE amount of memory
*
* Returns: 0 on success, a negative error code otherwise
*/
static int get_hmac(uint8_t *dest, const char *value)
{
int ret;
size_t hmac_size;
gnutls_datum_t data;
data.size = strlen(value);
data.data = (unsigned char *)value;
hmac_size = HMAC_SIZE;
ret = gnutls_hex_decode(&data, dest, &hmac_size);
if (ret < 0)
return gnutls_assert_val(GNUTLS_E_PARSING_ERROR);
if (hmac_size != HMAC_SIZE)
return gnutls_assert_val(GNUTLS_E_PARSING_ERROR);
return 0;
}
static int lib_handler(struct hmac_entry *entry, const char *section,
const char *name, const char *value)
{
if (!strcmp(name, "path")) {
snprintf(entry->path, GNUTLS_PATH_MAX, "%s", value);
} else if (!strcmp(name, "hmac")) {
if (get_hmac(entry->hmac, value) < 0)
return 0;
} else {
return 0;
}
return 1;
}
static int handler(void *user, const char *section, const char *name,
const char *value)
{
struct hmac_file *p = (struct hmac_file *)user;
if (!strcmp(section, "global")) {
if (!strcmp(name, "format-version")) {
p->version = strtol(value, NULL, 10);
} else {
return 0;
}
} else if (!strcmp(section, GNUTLS_LIBRARY_SONAME)) {
return lib_handler(&p->gnutls, section, name, value);
#ifdef NETTLE_LIBRARY_SONAME
} else if (!strcmp(section, NETTLE_LIBRARY_SONAME)) {
return lib_handler(&p->nettle, section, name, value);
#endif
#ifdef HOGWEED_LIBRARY_SONAME
} else if (!strcmp(section, HOGWEED_LIBRARY_SONAME)) {
return lib_handler(&p->hogweed, section, name, value);
#endif
#ifdef GMP_LIBRARY_SONAME
} else if (!strcmp(section, GMP_LIBRARY_SONAME)) {
return lib_handler(&p->gmp, section, name, value);
#endif
} else {
return 0;
}
return 1;
}
/*
* get_hmac_path:
* @mac_file: buffer where the hmac file path will be written to
* @mac_file_size: size of the mac_file buffer
* @gnutls_path: path to the gnutls library, used to deduce hmac file path
*
* Deduces hmac file path from the gnutls library path.
*
* Returns: 0 on success, a negative error code otherwise
*/
static int get_hmac_path(char *mac_file, size_t mac_file_size,
const char *gnutls_path)
{
int ret;
char *p;
p = strrchr(gnutls_path, '/');
if (p == NULL)
ret = snprintf(mac_file, mac_file_size, ".%s.hmac",
gnutls_path);
else
ret = snprintf(mac_file, mac_file_size, "%.*s/.%s.hmac",
(int)(p - gnutls_path), gnutls_path, p + 1);
if ((size_t)ret >= mac_file_size)
return gnutls_assert_val(GNUTLS_E_SHORT_MEMORY_BUFFER);
ret = _gnutls_file_exists(mac_file);
if (ret == 0)
return GNUTLS_E_SUCCESS;
if (p == NULL)
ret = snprintf(mac_file, mac_file_size, "fipscheck/.%s.hmac",
gnutls_path);
else
ret = snprintf(mac_file, mac_file_size,
"%.*s/fipscheck/.%s.hmac",
(int)(p - gnutls_path), gnutls_path, p + 1);
if ((size_t)ret >= mac_file_size)
return gnutls_assert_val(GNUTLS_E_SHORT_MEMORY_BUFFER);
ret = _gnutls_file_exists(mac_file);
if (ret == 0)
return GNUTLS_E_SUCCESS;
return GNUTLS_E_FILE_ERROR;
}
/*
* load_hmac_file:
* @hmac_file: hmac file structure
* @hmac_path: path to the hmac file
*
* Loads the hmac file into the hmac file structure.
*
* Returns: 0 on success, a negative error code otherwise
*/
static int load_hmac_file(struct hmac_file *hmac_file, const char *hmac_path)
{
int ret;
FILE *stream;
stream = fopen(hmac_path, "r");
if (stream == NULL)
return gnutls_assert_val(GNUTLS_E_FILE_ERROR);
gnutls_memset(hmac_file, 0, sizeof(*hmac_file));
ret = ini_parse_file(stream, handler, hmac_file);
fclose(stream);
if (ret < 0)
return gnutls_assert_val(GNUTLS_E_PARSING_ERROR);
if (hmac_file->version != HMAC_FORMAT_VERSION)
return gnutls_assert_val(GNUTLS_E_PARSING_ERROR);
return 0;
}
/*
* check_lib_hmac:
* @entry: hmac file entry
* @path: path to the library which hmac should be compared
*
* Verify that HMAC from hmac file entry matches HMAC of given library.
*
* Returns: 0 on successful HMAC verification, a negative error code otherwise
*/
static int check_lib_hmac(struct hmac_entry *entry, const char *path)
{
int ret;
unsigned prev;
uint8_t hmac[HMAC_SIZE];
gnutls_datum_t data;
_gnutls_debug_log("Loading: %s\n", path);
ret = gnutls_load_file(path, &data);
if (ret < 0) {
_gnutls_debug_log("Could not load %s: %s\n", path,
gnutls_strerror(ret));
return gnutls_assert_val(ret);
}
prev = _gnutls_get_lib_state();
_gnutls_switch_lib_state(LIB_STATE_OPERATIONAL);
ret = gnutls_hmac_fast(HMAC_ALGO, FIPS_KEY, sizeof(FIPS_KEY) - 1,
data.data, data.size, hmac);
_gnutls_switch_lib_state(prev);
gnutls_free(data.data);
if (ret < 0) {
_gnutls_debug_log("Could not calculate HMAC for %s: %s\n", path,
gnutls_strerror(ret));
return gnutls_assert_val(ret);
}
if (gnutls_memcmp(entry->hmac, hmac, HMAC_SIZE)) {
_gnutls_debug_log("Calculated MAC for %s does not match\n",
path);
gnutls_memset(hmac, 0, HMAC_SIZE);
return gnutls_assert_val(GNUTLS_E_PARSING_ERROR);
}
_gnutls_debug_log("Successfully verified MAC for %s\n", path);
gnutls_memset(hmac, 0, HMAC_SIZE);
return 0;
}
#ifdef HAVE_DL_ITERATE_PHDR
static int callback(struct dl_phdr_info *info, size_t size, void *data)
{
const char *path = info->dlpi_name;
const char *soname = last_component(path);
struct lib_paths *paths = (struct lib_paths *)data;
if (!strcmp(soname, GNUTLS_LIBRARY_SONAME))
_gnutls_str_cpy(paths->gnutls, GNUTLS_PATH_MAX, path);
#ifdef NETTLE_LIBRARY_SONAME
else if (!strcmp(soname, NETTLE_LIBRARY_SONAME))
_gnutls_str_cpy(paths->nettle, GNUTLS_PATH_MAX, path);
#endif
#ifdef HOGWEED_LIBRARY_SONAME
else if (!strcmp(soname, HOGWEED_LIBRARY_SONAME))
_gnutls_str_cpy(paths->hogweed, GNUTLS_PATH_MAX, path);
#endif
#ifdef GMP_LIBRARY_SONAME
else if (!strcmp(soname, GMP_LIBRARY_SONAME))
_gnutls_str_cpy(paths->gmp, GNUTLS_PATH_MAX, path);
#endif
return 0;
}
static int load_lib_paths(struct lib_paths *paths)
{
memset(paths, 0, sizeof(*paths));
dl_iterate_phdr(callback, paths);
if (paths->gnutls[0] == '\0') {
_gnutls_debug_log("Gnutls library path was not found\n");
return gnutls_assert_val(GNUTLS_E_FILE_ERROR);
}
#ifdef NETTLE_LIBRARY_SONAME
if (paths->nettle[0] == '\0') {
_gnutls_debug_log("Nettle library path was not found\n");
return gnutls_assert_val(GNUTLS_E_FILE_ERROR);
}
#endif
#ifdef HOGWEED_LIBRARY_SONAME
if (paths->hogweed[0] == '\0') {
_gnutls_debug_log("Hogweed library path was not found\n");
return gnutls_assert_val(GNUTLS_E_FILE_ERROR);
}
#endif
#ifdef GMP_LIBRARY_SONAME
if (paths->gmp[0] == '\0') {
_gnutls_debug_log("Gmp library path was not found\n");
return gnutls_assert_val(GNUTLS_E_FILE_ERROR);
}
#endif
return GNUTLS_E_SUCCESS;
}
#else
static int load_lib_paths(struct lib_paths *paths)
{
(void)paths;
_gnutls_debug_log("Function dl_iterate_phdr is missing\n");
return gnutls_assert_val(GNUTLS_E_INTERNAL_ERROR);
}
#endif /* HAVE_DL_ITERATE_PHDR */
static int check_binary_integrity(void)
{
int ret;
struct lib_paths paths;
struct hmac_file hmac;
char hmac_path[GNUTLS_PATH_MAX];
ret = load_lib_paths(&paths);
if (ret < 0) {
_gnutls_debug_log("Could not load library paths: %s\n",
gnutls_strerror(ret));
return ret;
}
ret = get_hmac_path(hmac_path, sizeof(hmac_path), paths.gnutls);
if (ret < 0) {
_gnutls_debug_log("Could not get hmac file path: %s\n",
gnutls_strerror(ret));
return ret;
}
ret = load_hmac_file(&hmac, hmac_path);
if (ret < 0) {
_gnutls_debug_log("Could not load hmac file: %s\n",
gnutls_strerror(ret));
return ret;
}
ret = check_lib_hmac(&hmac.gnutls, paths.gnutls);
if (ret < 0)
return ret;
#ifdef NETTLE_LIBRARY_SONAME
ret = check_lib_hmac(&hmac.nettle, paths.nettle);
if (ret < 0)
return ret;
#endif
#ifdef HOGWEED_LIBRARY_SONAME
ret = check_lib_hmac(&hmac.hogweed, paths.hogweed);
if (ret < 0)
return ret;
#endif
#ifdef GMP_LIBRARY_SONAME
ret = check_lib_hmac(&hmac.gmp, paths.gmp);
if (ret < 0)
return ret;
#endif
return 0;
}
int _gnutls_fips_perform_self_checks1(void)
{
int ret;
/* Tests the FIPS algorithms used by nettle internally.
* In our case we test AES-CBC since nettle's AES is used by
* the DRBG-AES.
*/
/* ciphers - one test per cipher */
ret = gnutls_cipher_self_test(GNUTLS_SELF_TEST_FLAG_NO_COMPAT,
GNUTLS_CIPHER_AES_128_CBC);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
return 0;
}
int _gnutls_fips_perform_self_checks2(void)
{
int ret;
/* Tests the FIPS algorithms */
/* ciphers - one test per cipher */
ret = gnutls_cipher_self_test(GNUTLS_SELF_TEST_FLAG_NO_COMPAT,
GNUTLS_CIPHER_AES_256_GCM);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
/* Digest tests */
ret = gnutls_digest_self_test(0, GNUTLS_DIG_SHA3_224);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
ret = gnutls_digest_self_test(0, GNUTLS_DIG_SHA3_256);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
ret = gnutls_digest_self_test(0, GNUTLS_DIG_SHA3_384);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
ret = gnutls_digest_self_test(0, GNUTLS_DIG_SHA3_512);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
ret = gnutls_digest_self_test(0, GNUTLS_DIG_SHAKE_128);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
ret = gnutls_digest_self_test(0, GNUTLS_DIG_SHAKE_256);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
/* MAC (includes message digest test) */
ret = gnutls_mac_self_test(0, GNUTLS_MAC_SHA1);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
ret = gnutls_mac_self_test(0, GNUTLS_MAC_SHA224);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
ret = gnutls_mac_self_test(0, GNUTLS_MAC_SHA256);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
ret = gnutls_mac_self_test(0, GNUTLS_MAC_SHA384);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
ret = gnutls_mac_self_test(0, GNUTLS_MAC_SHA512);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
ret = gnutls_mac_self_test(0, GNUTLS_MAC_AES_CMAC_256);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
/* PK */
ret = gnutls_pk_self_test(0, GNUTLS_PK_RSA_PSS);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
ret = gnutls_pk_self_test(0, GNUTLS_PK_EC);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
ret = gnutls_pk_self_test(0, GNUTLS_PK_EDDSA_ED25519);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
ret = gnutls_pk_self_test(0, GNUTLS_PK_EDDSA_ED448);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
ret = gnutls_pk_self_test(0, GNUTLS_PK_DH);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
/* HKDF */
ret = gnutls_hkdf_self_test(0, GNUTLS_MAC_SHA256);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
/* PBKDF2 */
ret = gnutls_pbkdf2_self_test(0, GNUTLS_MAC_SHA256);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
/* TLS-PRF */
ret = gnutls_tlsprf_self_test(0, GNUTLS_MAC_SHA256);
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
if (_gnutls_rnd_ops.self_test == NULL) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
/* this does not require rng initialization */
ret = _gnutls_rnd_ops.self_test();
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
if (_skip_integrity_checks == 0) {
ret = check_binary_integrity();
if (ret < 0) {
return gnutls_assert_val(GNUTLS_E_SELF_TEST_ERROR);
}
}
return 0;
}
#endif
/**
* gnutls_fips140_mode_enabled:
*
* Checks whether this library is in FIPS140 mode. The returned
* value corresponds to the library mode as set with
* gnutls_fips140_set_mode().
*
* If gnutls_fips140_set_mode() was called with %GNUTLS_FIPS140_SET_MODE_THREAD
* then this function will return the current thread's FIPS140 mode, otherwise
* the global value is returned.
*
* Returns: return non-zero if true or zero if false.
*
* Since: 3.3.0
**/
unsigned gnutls_fips140_mode_enabled(void)
{
#ifdef ENABLE_FIPS140
unsigned ret = _gnutls_fips_mode_enabled();
if (ret > GNUTLS_FIPS140_DISABLED) {
/* If the previous run of selftests has failed, return as if
* the FIPS mode is disabled. We could use HAVE_LIB_ERROR, if
* we can assume that all the selftests run atomically from
* the ELF constructor.
*/
if (_gnutls_get_lib_state() == LIB_STATE_ERROR)
return 0;
return ret;
}
#endif
return 0;
}
/**
* gnutls_fips140_set_mode:
* @mode: the FIPS140-2 mode to switch to
* @flags: should be zero or %GNUTLS_FIPS140_SET_MODE_THREAD
*
* That function is not thread-safe when changing the mode with no flags
* (globally), and should be called prior to creating any threads. Its
* behavior with no flags after threads are created is undefined.
*
* When the flag %GNUTLS_FIPS140_SET_MODE_THREAD is specified
* then this call will change the FIPS140-2 mode for this particular
* thread and not for the whole process. That way an application
* can utilize this function to set and reset mode for specific
* operations.
*
* This function never fails but will be a no-op if used when
* the library is not in FIPS140-2 mode. When asked to switch to unknown
* values for @mode or to %GNUTLS_FIPS140_SELFTESTS mode, the library
* switches to %GNUTLS_FIPS140_STRICT mode.
*
* Since: 3.6.2
**/
void gnutls_fips140_set_mode(gnutls_fips_mode_t mode, unsigned flags)
{
#ifdef ENABLE_FIPS140
gnutls_fips_mode_t prev = _gnutls_fips_mode_enabled();
if (prev == GNUTLS_FIPS140_DISABLED ||
prev == GNUTLS_FIPS140_SELFTESTS) {
/* we need to run self-tests first to be in FIPS140-2 mode */
_gnutls_audit_log(
NULL,
"The library should be initialized in FIPS140-2 mode to do that operation\n");
return;
}
switch (mode) {
case GNUTLS_FIPS140_STRICT:
case GNUTLS_FIPS140_LAX:
case GNUTLS_FIPS140_LOG:
case GNUTLS_FIPS140_DISABLED:
break;
case GNUTLS_FIPS140_SELFTESTS:
_gnutls_audit_log(
NULL,
"Cannot switch library to FIPS140-2 self-tests mode; defaulting to strict\n");
mode = GNUTLS_FIPS140_STRICT;
break;
default:
_gnutls_audit_log(
NULL,
"Cannot switch library to mode %u; defaulting to strict\n",
(unsigned)mode);
mode = GNUTLS_FIPS140_STRICT;
break;
}
if (flags & GNUTLS_FIPS140_SET_MODE_THREAD)
_tfips_mode = mode;
else {
_global_fips_mode = mode;
_tfips_mode = -1;
}
#endif
}
void _gnutls_lib_simulate_error(void)
{
_gnutls_switch_lib_state(LIB_STATE_ERROR);
}
void _gnutls_lib_force_operational(void)
{
_gnutls_switch_lib_state(LIB_STATE_OPERATIONAL);
}
/**
* gnutls_fips140_context_init:
* @context: location to store @gnutls_fips140_context_t
*
* Create and initialize the FIPS context object.
*
* Returns: 0 upon success, a negative error code otherwise
*
* Since: 3.7.3
*/
int gnutls_fips140_context_init(gnutls_fips140_context_t *context)
{
*context = gnutls_malloc(sizeof(struct gnutls_fips140_context_st));
if (!*context) {
return gnutls_assert_val(GNUTLS_E_MEMORY_ERROR);
}
(*context)->state = GNUTLS_FIPS140_OP_INITIAL;
return 0;
}
/**
* gnutls_fips140_context_deinit:
* @context: a #gnutls_fips140_context_t
*
* Uninitialize and release the FIPS context @context.
*
* Since: 3.7.3
*/
void gnutls_fips140_context_deinit(gnutls_fips140_context_t context)
{
gnutls_free(context);
}
/**
* gnutls_fips140_get_operation_state:
* @context: a #gnutls_fips140_context_t
*
* Get the previous operation state of @context in terms of FIPS.
*
* Returns: a #gnutls_fips140_operation_state_t
*
* Since: 3.7.3
*/
gnutls_fips140_operation_state_t
gnutls_fips140_get_operation_state(gnutls_fips140_context_t context)
{
return context->state;
}
/**
* gnutls_fips140_push_context:
* @context: a #gnutls_fips140_context_t
*
* Associate the FIPS @context to the current thread, diverting the
* currently active context. If a cryptographic operation is ongoing
* in the current thread, e.g., gnutls_aead_cipher_init() is called
* but gnutls_aead_cipher_deinit() is not yet called, it returns an
* error %GNUTLS_E_INVALID_REQUEST.
*
* The operation state of @context will be reset to
* %GNUTLS_FIPS140_OP_INITIAL.
*
* This function is no-op if FIPS140 is not compiled in nor enabled
* at run-time.
*
* Returns: 0 upon success, a negative error code otherwise
*
* Since: 3.7.3
*/
int gnutls_fips140_push_context(gnutls_fips140_context_t context)
{
#ifdef ENABLE_FIPS140
if (_gnutls_fips_mode_enabled() != GNUTLS_FIPS140_DISABLED) {
context->next = _tfips_context;
_tfips_context = context;
context->state = GNUTLS_FIPS140_OP_INITIAL;
}
return 0;
#else
return GNUTLS_E_INVALID_REQUEST;
#endif
}
/**
* gnutls_fips140_pop_context:
*
* Dissociate the FIPS context currently
* active on the current thread, reverting to the previously active
* context. If a cryptographic operation is ongoing in the current
* thread, e.g., gnutls_aead_cipher_init() is called but
* gnutls_aead_cipher_deinit() is not yet called, it returns an error
* %GNUTLS_E_INVALID_REQUEST.
*
* This function is no-op if FIPS140 is not compiled in nor enabled
* at run-time.
*
* Returns: 0 upon success, a negative error code otherwise
*
* Since: 3.7.3
*/
int gnutls_fips140_pop_context(void)
{
#ifdef ENABLE_FIPS140
if (_gnutls_fips_mode_enabled() != GNUTLS_FIPS140_DISABLED) {
if (!_tfips_context) {
return gnutls_assert_val(GNUTLS_E_INVALID_REQUEST);
}
_tfips_context = _tfips_context->next;
}
return 0;
#else
return GNUTLS_E_INVALID_REQUEST;
#endif
}
#ifdef ENABLE_FIPS140
static inline const char *
operation_state_to_string(gnutls_fips140_operation_state_t state)
{
switch (state) {
case GNUTLS_FIPS140_OP_INITIAL:
return "initial";
case GNUTLS_FIPS140_OP_APPROVED:
return "approved";
case GNUTLS_FIPS140_OP_NOT_APPROVED:
return "not-approved";
case GNUTLS_FIPS140_OP_ERROR:
return "error";
default:
/*NOTREACHED*/ assert(0);
return NULL;
}
}
void _gnutls_switch_fips_state(gnutls_fips140_operation_state_t state)
{
gnutls_fips_mode_t mode = _gnutls_fips_mode_enabled();
if (mode == GNUTLS_FIPS140_DISABLED) {
return;
}
if (!_tfips_context) {
_gnutls_debug_log("FIPS140-2 context is not set\n");
return;
}
if (_tfips_context->state == state) {
return;
}
switch (_tfips_context->state) {
case GNUTLS_FIPS140_OP_INITIAL:
/* initial can be transitioned to any state */
if (mode != GNUTLS_FIPS140_LAX) {
_gnutls_audit_log(
NULL,
"FIPS140-2 operation mode switched from initial to %s\n",
operation_state_to_string(state));
}
_tfips_context->state = state;
break;
case GNUTLS_FIPS140_OP_APPROVED:
/* approved can only be transitioned to not-approved */
if (likely(state == GNUTLS_FIPS140_OP_NOT_APPROVED)) {
if (mode != GNUTLS_FIPS140_LAX) {
_gnutls_audit_log(
NULL,
"FIPS140-2 operation mode switched from approved to %s\n",
operation_state_to_string(state));
}
_tfips_context->state = state;
return;
}
FALLTHROUGH;
default:
/* other transitions are prohibited */
if (mode != GNUTLS_FIPS140_LAX) {
_gnutls_audit_log(
NULL,
"FIPS140-2 operation mode cannot be switched from %s to %s\n",
operation_state_to_string(
_tfips_context->state),
operation_state_to_string(state));
}
break;
}
}
#else
void _gnutls_switch_fips_state(gnutls_fips140_operation_state_t state)
{
(void)state;
}
#endif
/**
* gnutls_fips140_run_self_tests:
*
* Manually perform the second round of the FIPS140 self-tests,
* including:
*
* - Known answer tests (KAT) for the selected set of symmetric
* cipher, MAC, public key, KDF, and DRBG
* - Library integrity checks
*
* Upon failure with FIPS140 mode enabled, it makes the library
* unusable. This function is not thread-safe.
*
* Returns: 0 upon success, a negative error code otherwise
*
* Since: 3.7.7
*/
int gnutls_fips140_run_self_tests(void)
{
#ifdef ENABLE_FIPS140
int ret;
unsigned prev_lib_state;
gnutls_fips140_context_t fips_context = NULL;
/* Save the FIPS context, because self tests change it */
if (gnutls_fips140_mode_enabled() != GNUTLS_FIPS140_DISABLED) {
if (gnutls_fips140_context_init(&fips_context) < 0 ||
gnutls_fips140_push_context(fips_context) < 0) {
gnutls_fips140_context_deinit(fips_context);
fips_context = NULL;
}
}
/* Temporarily switch to LIB_STATE_SELFTEST as some of the
* algorithms are implemented using special constructs in
* self-tests (such as deterministic variants) */
prev_lib_state = _gnutls_get_lib_state();
_gnutls_switch_lib_state(LIB_STATE_SELFTEST);
ret = _gnutls_fips_perform_self_checks2();
if (gnutls_fips140_mode_enabled() != GNUTLS_FIPS140_DISABLED &&
ret < 0) {
_gnutls_switch_lib_state(LIB_STATE_ERROR);
_gnutls_audit_log(NULL,
"FIPS140-2 self testing part 2 failed\n");
} else {
/* Restore the previous library state */
_gnutls_switch_lib_state(prev_lib_state);
}
/* Restore the previous FIPS context */
if (gnutls_fips140_mode_enabled() != GNUTLS_FIPS140_DISABLED &&
fips_context) {
if (gnutls_fips140_pop_context() < 0) {
_gnutls_switch_lib_state(LIB_STATE_ERROR);
_gnutls_audit_log(
NULL, "FIPS140-2 context restoration failed\n");
}
gnutls_fips140_context_deinit(fips_context);
}
return ret;
#else
return 0;
#endif
}
|