sanitytest.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * Copyright 2015-2022 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #include <string.h>
  10. #include <openssl/types.h>
  11. #include "testutil.h"
  12. #include "internal/numbers.h"
  13. static int test_sanity_null_zero(void)
  14. {
  15. char *p;
  16. char bytes[sizeof(p)];
  17. /* Is NULL equivalent to all-bytes-zero? */
  18. p = NULL;
  19. memset(bytes, 0, sizeof(bytes));
  20. return TEST_mem_eq(&p, sizeof(p), bytes, sizeof(bytes));
  21. }
  22. static int test_sanity_enum_size(void)
  23. {
  24. enum smallchoices { sa, sb, sc };
  25. enum medchoices { ma, mb, mc, md, me, mf, mg, mh, mi, mj, mk, ml };
  26. enum largechoices {
  27. a01, b01, c01, d01, e01, f01, g01, h01, i01, j01,
  28. a02, b02, c02, d02, e02, f02, g02, h02, i02, j02,
  29. a03, b03, c03, d03, e03, f03, g03, h03, i03, j03,
  30. a04, b04, c04, d04, e04, f04, g04, h04, i04, j04,
  31. a05, b05, c05, d05, e05, f05, g05, h05, i05, j05,
  32. a06, b06, c06, d06, e06, f06, g06, h06, i06, j06,
  33. a07, b07, c07, d07, e07, f07, g07, h07, i07, j07,
  34. a08, b08, c08, d08, e08, f08, g08, h08, i08, j08,
  35. a09, b09, c09, d09, e09, f09, g09, h09, i09, j09,
  36. a10, b10, c10, d10, e10, f10, g10, h10, i10, j10,
  37. xxx };
  38. /* Enum size */
  39. if (!TEST_size_t_eq(sizeof(enum smallchoices), sizeof(int))
  40. || !TEST_size_t_eq(sizeof(enum medchoices), sizeof(int))
  41. || !TEST_size_t_eq(sizeof(enum largechoices), sizeof(int)))
  42. return 0;
  43. return 1;
  44. }
  45. static int test_sanity_twos_complement(void)
  46. {
  47. /* Basic two's complement checks. */
  48. if (!TEST_int_eq(~(-1), 0)
  49. || !TEST_long_eq(~(-1L), 0L))
  50. return 0;
  51. return 1;
  52. }
  53. static int test_sanity_sign(void)
  54. {
  55. /* Check that values with sign bit 1 and value bits 0 are valid */
  56. if (!TEST_int_eq(-(INT_MIN + 1), INT_MAX)
  57. || !TEST_long_eq(-(LONG_MIN + 1), LONG_MAX))
  58. return 0;
  59. return 1;
  60. }
  61. static int test_sanity_unsigned_conversion(void)
  62. {
  63. /* Check that unsigned-to-signed conversions preserve bit patterns */
  64. if (!TEST_int_eq((int)((unsigned int)INT_MAX + 1), INT_MIN)
  65. || !TEST_long_eq((long)((unsigned long)LONG_MAX + 1), LONG_MIN))
  66. return 0;
  67. return 1;
  68. }
  69. static int test_sanity_range(void)
  70. {
  71. /* Verify some types are the correct size */
  72. if (!TEST_size_t_eq(sizeof(int8_t), 1)
  73. || !TEST_size_t_eq(sizeof(uint8_t), 1)
  74. || !TEST_size_t_eq(sizeof(int16_t), 2)
  75. || !TEST_size_t_eq(sizeof(uint16_t), 2)
  76. || !TEST_size_t_eq(sizeof(int32_t), 4)
  77. || !TEST_size_t_eq(sizeof(uint32_t), 4)
  78. || !TEST_size_t_eq(sizeof(int64_t), 8)
  79. || !TEST_size_t_eq(sizeof(uint64_t), 8)
  80. #ifdef UINT128_MAX
  81. || !TEST_size_t_eq(sizeof(int128_t), 16)
  82. || !TEST_size_t_eq(sizeof(uint128_t), 16)
  83. #endif
  84. || !TEST_size_t_eq(sizeof(char), 1)
  85. || !TEST_size_t_eq(sizeof(unsigned char), 1))
  86. return 0;
  87. /* We want our long longs to be at least 64 bits */
  88. if (!TEST_size_t_ge(sizeof(long long int), 8)
  89. || !TEST_size_t_ge(sizeof(unsigned long long int), 8))
  90. return 0;
  91. /*
  92. * Verify intmax_t.
  93. * Some platforms defined intmax_t to be 64 bits but still support
  94. * an int128_t, so this check is for at least 64 bits.
  95. */
  96. if (!TEST_size_t_ge(sizeof(ossl_intmax_t), 8)
  97. || !TEST_size_t_ge(sizeof(ossl_uintmax_t), 8)
  98. || !TEST_size_t_ge(sizeof(ossl_uintmax_t), sizeof(size_t)))
  99. return 0;
  100. /* This isn't possible to check using the framework functions */
  101. if (SIZE_MAX < INT_MAX) {
  102. TEST_error("int must not be wider than size_t");
  103. return 0;
  104. }
  105. /* SIZE_MAX is always greater than 2*INT_MAX */
  106. if (SIZE_MAX - INT_MAX <= INT_MAX) {
  107. TEST_error("SIZE_MAX must exceed 2*INT_MAX");
  108. return 0;
  109. }
  110. return 1;
  111. }
  112. static int test_sanity_memcmp(void)
  113. {
  114. return CRYPTO_memcmp("ab", "cd", 2);
  115. }
  116. int setup_tests(void)
  117. {
  118. ADD_TEST(test_sanity_null_zero);
  119. ADD_TEST(test_sanity_enum_size);
  120. ADD_TEST(test_sanity_twos_complement);
  121. ADD_TEST(test_sanity_sign);
  122. ADD_TEST(test_sanity_unsigned_conversion);
  123. ADD_TEST(test_sanity_range);
  124. ADD_TEST(test_sanity_memcmp);
  125. return 1;
  126. }