You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

117 lines
4.1 KiB

  1. /**
  2. * @file decaf/common.h
  3. * @author Mike Hamburg
  4. *
  5. * @copyright
  6. * Copyright (c) 2015 Cryptography Research, Inc. \n
  7. * Released under the MIT License. See LICENSE.txt for license information.
  8. *
  9. * @brief Common utility headers for Decaf library.
  10. */
  11. #ifndef __DECAF_COMMON_H__
  12. #define __DECAF_COMMON_H__ 1
  13. #include <stdint.h>
  14. #include <sys/types.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /* Goldilocks' build flags default to hidden and stripping executables. */
  19. /** @cond internal */
  20. #if defined(DOXYGEN) && !defined(__attribute__)
  21. #define __attribute__((x))
  22. #endif
  23. #define DECAF_API_VIS __attribute__((visibility("default")))
  24. #define DECAF_NOINLINE __attribute__((noinline))
  25. #define DECAF_WARN_UNUSED __attribute__((warn_unused_result))
  26. #define DECAF_NONNULL __attribute__((nonnull))
  27. #define DECAF_INLINE inline __attribute__((always_inline,unused))
  28. // Cribbed from libnotmuch
  29. #if defined (__clang_major__) && __clang_major__ >= 3 \
  30. || defined (__GNUC__) && __GNUC__ >= 5 \
  31. || defined (__GNUC__) && __GNUC__ == 4 && __GNUC_MINOR__ >= 5
  32. #define DECAF_DEPRECATED(msg) __attribute__ ((deprecated(msg)))
  33. #else
  34. #define DECAF_DEPRECATED(msg) __attribute__ ((deprecated))
  35. #endif
  36. /** @endcond */
  37. /* Internal word types.
  38. *
  39. * Somewhat tricky. This could be decided separately per platform. However,
  40. * the structs do need to be all the same size and alignment on a given
  41. * platform to support dynamic linking, since even if you header was built
  42. * with eg arch_neon, you might end up linking a library built with arch_arm32.
  43. */
  44. #ifndef DECAF_WORD_BITS
  45. #if (defined(__ILP64__) || defined(__amd64__) || defined(__x86_64__) || (((__UINT_FAST32_MAX__)>>30)>>30))
  46. #define DECAF_WORD_BITS 64 /**< The number of bits in a word */
  47. #else
  48. #define DECAF_WORD_BITS 32 /**< The number of bits in a word */
  49. #endif
  50. #endif
  51. #if DECAF_WORD_BITS == 64
  52. typedef uint64_t decaf_word_t; /**< Word size for internal computations */
  53. typedef int64_t decaf_sword_t; /**< Signed word size for internal computations */
  54. typedef uint64_t decaf_bool_t; /**< "Boolean" type, will be set to all-zero or all-one (i.e. -1u) */
  55. typedef __uint128_t decaf_dword_t; /**< Double-word size for internal computations */
  56. typedef __int128_t decaf_dsword_t; /**< Signed double-word size for internal computations */
  57. #elif DECAF_WORD_BITS == 32 /**< The number of bits in a word */
  58. typedef uint32_t decaf_word_t; /**< Word size for internal computations */
  59. typedef int32_t decaf_sword_t; /**< Signed word size for internal computations */
  60. typedef uint32_t decaf_bool_t; /**< "Boolean" type, will be set to all-zero or all-one (i.e. -1u) */
  61. typedef uint64_t decaf_dword_t; /**< Double-word size for internal computations */
  62. typedef int64_t decaf_dsword_t; /**< Signed double-word size for internal computations */
  63. #else
  64. #error "Only supporting DECAF_WORD_BITS = 32 or 64 for now"
  65. #endif
  66. /** DECAF_TRUE = -1 so that DECAF_TRUE & x = x */
  67. static const decaf_bool_t DECAF_TRUE = -(decaf_bool_t)1;
  68. /** DECAF_FALSE = 0 so that DECAF_FALSE & x = 0 */
  69. static const decaf_bool_t DECAF_FALSE = 0;
  70. /** Another boolean type used to indicate success or failure. */
  71. typedef enum {
  72. DECAF_SUCCESS = -1, /**< The operation succeeded. */
  73. DECAF_FAILURE = 0 /**< The operation failed. */
  74. } decaf_error_t;
  75. /** Return success if x is true */
  76. static DECAF_INLINE decaf_error_t
  77. decaf_succeed_if(decaf_bool_t x) {
  78. return (decaf_error_t)x;
  79. }
  80. /** Return DECAF_TRUE iff x == DECAF_SUCCESS */
  81. static DECAF_INLINE decaf_bool_t
  82. decaf_successful(decaf_error_t e) {
  83. decaf_dword_t w = ((decaf_word_t)e) ^ ((decaf_word_t)DECAF_SUCCESS);
  84. return (w-1)>>DECAF_WORD_BITS;
  85. }
  86. /** Overwrite data with zeros. Uses memset_s if available. */
  87. void decaf_bzero (
  88. void *data,
  89. size_t size
  90. ) DECAF_NONNULL DECAF_API_VIS;
  91. /** Compare two buffers, returning DECAF_TRUE if they are equal. */
  92. decaf_bool_t decaf_memeq (
  93. const void *data1,
  94. const void *data2,
  95. size_t size
  96. ) DECAF_NONNULL DECAF_WARN_UNUSED DECAF_API_VIS;
  97. #ifdef __cplusplus
  98. } /* extern "C" */
  99. #endif
  100. #endif /* __DECAF_COMMON_H__ */