defs.h 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. /*
  2. * defs.h: initial definitions for PuTTY.
  3. *
  4. * The rule about this header file is that it can't depend on any
  5. * other header file in this code base. This is where we define
  6. * things, as much as we can, that other headers will want to refer
  7. * to, such as opaque structure types and their associated typedefs,
  8. * or macros that are used by other headers.
  9. */
  10. #ifndef PUTTY_DEFS_H
  11. #define PUTTY_DEFS_H
  12. #ifdef NDEBUG
  13. /*
  14. * PuTTY is a security project, so assertions are important - if an
  15. * assumption is violated, proceeding anyway may have far worse
  16. * consequences than simple program termination. This check and #error
  17. * should arrange that we don't ever accidentally compile assertions
  18. * out.
  19. */
  20. #error Do not compile this code base with NDEBUG defined!
  21. #endif
  22. #if HAVE_CMAKE_H
  23. #include "cmake.h"
  24. #endif
  25. #include <stddef.h>
  26. #include <stdint.h>
  27. #include <stdio.h> /* for __MINGW_PRINTF_FORMAT */
  28. #include <stdbool.h>
  29. #if (!defined WINSCP) && defined _MSC_VER && _MSC_VER < 1800
  30. /* Work around lack of inttypes.h and strtoumax in older MSVC */
  31. #define PRIx32 "x"
  32. #define PRIu32 "u"
  33. #define PRIu64 "I64u"
  34. #define PRIdMAX "I64d"
  35. #define PRIXMAX "I64X"
  36. #define SCNu64 "I64u"
  37. #define SIZEx "Ix"
  38. #define SIZEu "Iu"
  39. uintmax_t strtoumax(const char *nptr, char **endptr, int base);
  40. #else
  41. #ifndef WINSCP
  42. // Not needed by the code WinSCP uses
  43. #include <inttypes.h>
  44. #else
  45. #define PRIu32 "u"
  46. #endif
  47. /* Because we still support older MSVC libraries which don't recognise the
  48. * standard C "z" modifier for size_t-sized integers, we must use an
  49. * inttypes.h-style macro for those */
  50. #define SIZEx "zx"
  51. #define SIZEu "zu"
  52. #endif
  53. #if defined __GNUC__ || defined __clang__
  54. /*
  55. * On MinGW, the correct compiler format checking for vsnprintf() etc
  56. * can depend on compile-time flags; these control whether you get
  57. * ISO C or Microsoft's non-standard format strings.
  58. * We sometimes use __attribute__ ((format)) for our own printf-like
  59. * functions, which are ultimately interpreted by the toolchain-chosen
  60. * printf, so we need to take that into account to get correct warnings.
  61. */
  62. #ifdef __MINGW_PRINTF_FORMAT
  63. #define PRINTF_LIKE(fmt_index, ellipsis_index) \
  64. __attribute__ ((format (__MINGW_PRINTF_FORMAT, fmt_index, ellipsis_index)))
  65. #else
  66. #define PRINTF_LIKE(fmt_index, ellipsis_index) \
  67. __attribute__ ((format (printf, fmt_index, ellipsis_index)))
  68. #endif
  69. #else /* __GNUC__ */
  70. #define PRINTF_LIKE(fmt_index, ellipsis_index)
  71. #endif /* __GNUC__ */
  72. typedef struct conf_tag Conf;
  73. typedef struct terminal_tag Terminal;
  74. typedef struct term_utf8_decode term_utf8_decode;
  75. typedef struct Filename Filename;
  76. typedef struct FontSpec FontSpec;
  77. typedef struct bufchain_tag bufchain;
  78. typedef struct strbuf strbuf;
  79. typedef struct LoadedFile LoadedFile;
  80. typedef struct RSAKey RSAKey;
  81. typedef struct BinarySink BinarySink;
  82. typedef struct BinarySource BinarySource;
  83. typedef struct stdio_sink stdio_sink;
  84. typedef struct bufchain_sink bufchain_sink;
  85. typedef struct handle_sink handle_sink;
  86. typedef struct IdempotentCallback IdempotentCallback;
  87. typedef struct SockAddr SockAddr;
  88. typedef struct Socket Socket;
  89. typedef struct Plug Plug;
  90. typedef struct SocketPeerInfo SocketPeerInfo;
  91. typedef struct DeferredSocketOpener DeferredSocketOpener;
  92. typedef struct DeferredSocketOpenerVtable DeferredSocketOpenerVtable;
  93. typedef struct Backend Backend;
  94. typedef struct BackendVtable BackendVtable;
  95. typedef struct Interactor Interactor;
  96. typedef struct InteractorVtable InteractorVtable;
  97. typedef struct InteractionReadySeat InteractionReadySeat;
  98. typedef struct Ldisc_tag Ldisc;
  99. typedef struct LogContext LogContext;
  100. typedef struct LogPolicy LogPolicy;
  101. typedef struct LogPolicyVtable LogPolicyVtable;
  102. typedef struct Seat Seat;
  103. typedef struct SeatVtable SeatVtable;
  104. typedef struct SeatPromptResult SeatPromptResult;
  105. typedef struct TermWin TermWin;
  106. typedef struct TermWinVtable TermWinVtable;
  107. typedef struct Ssh Ssh;
  108. typedef struct mp_int mp_int;
  109. typedef struct MontyContext MontyContext;
  110. typedef struct WeierstrassCurve WeierstrassCurve;
  111. typedef struct WeierstrassPoint WeierstrassPoint;
  112. typedef struct MontgomeryCurve MontgomeryCurve;
  113. typedef struct MontgomeryPoint MontgomeryPoint;
  114. typedef struct EdwardsCurve EdwardsCurve;
  115. typedef struct EdwardsPoint EdwardsPoint;
  116. typedef struct SshServerConfig SshServerConfig;
  117. typedef struct SftpServer SftpServer;
  118. typedef struct SftpServerVtable SftpServerVtable;
  119. typedef struct Channel Channel;
  120. typedef struct SshChannel SshChannel;
  121. typedef struct mainchan mainchan;
  122. typedef struct ssh_sharing_state ssh_sharing_state;
  123. typedef struct ssh_sharing_connstate ssh_sharing_connstate;
  124. typedef struct share_channel share_channel;
  125. typedef struct PortFwdManager PortFwdManager;
  126. typedef struct PortFwdRecord PortFwdRecord;
  127. typedef struct ConnectionLayer ConnectionLayer;
  128. typedef struct prng prng;
  129. typedef struct ssh_hashalg ssh_hashalg;
  130. typedef struct ssh_hash ssh_hash;
  131. typedef struct ssh_kex ssh_kex;
  132. typedef struct ssh_kexes ssh_kexes;
  133. typedef struct ssh_keyalg ssh_keyalg;
  134. typedef struct ssh_key ssh_key;
  135. typedef struct ssh_compressor ssh_compressor;
  136. typedef struct ssh_decompressor ssh_decompressor;
  137. typedef struct ssh_compression_alg ssh_compression_alg;
  138. typedef struct ssh2_userkey ssh2_userkey;
  139. typedef struct ssh2_macalg ssh2_macalg;
  140. typedef struct ssh2_mac ssh2_mac;
  141. typedef struct ssh_cipheralg ssh_cipheralg;
  142. typedef struct ssh_cipher ssh_cipher;
  143. typedef struct ssh2_ciphers ssh2_ciphers;
  144. typedef struct dh_ctx dh_ctx;
  145. typedef struct ecdh_key ecdh_key;
  146. typedef struct dlgparam dlgparam;
  147. typedef struct settings_w settings_w;
  148. typedef struct settings_r settings_r;
  149. typedef struct settings_e settings_e;
  150. typedef struct SessionSpecial SessionSpecial;
  151. typedef struct StripCtrlChars StripCtrlChars;
  152. typedef struct BidiContext BidiContext;
  153. /*
  154. * A small structure wrapping up a (pointer, length) pair so that it
  155. * can be conveniently passed to or from a function.
  156. */
  157. typedef struct ptrlen {
  158. const void *ptr;
  159. size_t len;
  160. } ptrlen;
  161. typedef struct logblank_t logblank_t;
  162. typedef struct BinaryPacketProtocol BinaryPacketProtocol;
  163. typedef struct PacketProtocolLayer PacketProtocolLayer;
  164. /* Do a compile-time type-check of 'to_check' (without evaluating it),
  165. * as a side effect of returning the value 'to_return'. Note that
  166. * although this macro double-*expands* to_return, it always
  167. * *evaluates* exactly one copy of it, so it's side-effect safe. */
  168. #define TYPECHECK(to_check, to_return) \
  169. (sizeof(to_check) ? (to_return) : (to_return))
  170. /* Return a pointer to the object of structure type 'type' whose field
  171. * with name 'field' is pointed at by 'object'. */
  172. #define container_of(object, type, field) \
  173. TYPECHECK(object == &((type *)0)->field, \
  174. ((type *)(((char *)(object)) - offsetof(type, field))))
  175. #if defined __GNUC__ || defined __clang__
  176. #define NORETURN __attribute__((__noreturn__))
  177. #elif defined _MSC_VER
  178. #define NORETURN __declspec(noreturn)
  179. #else
  180. #define NORETURN
  181. #endif
  182. /*
  183. * Standard macro definitions. STR() behaves like the preprocessor
  184. * stringification # operator, and CAT() behaves like the token paste
  185. * ## operator, except that each one macro-expands its argument(s)
  186. * first, unlike the raw version. E.g.
  187. *
  188. * #__LINE__ -> "__LINE__"
  189. * STR(__LINE__) -> "1234" (or whatever)
  190. *
  191. * and similarly,
  192. *
  193. * foo ## __LINE__ -> foo__LINE__
  194. * CAT(foo, __LINE__) -> foo1234 (or whatever)
  195. *
  196. * The expansion is achieved by having each macro pass its arguments
  197. * to a secondary inner macro, because parameter lists of a macro call
  198. * get expanded before the called macro is invoked. So STR(__LINE__)
  199. * -> STR_INNER(1234) -> #1234 -> "1234", and similarly for CAT.
  200. */
  201. #define STR_INNER(x) #x
  202. #define STR(x) STR_INNER(x)
  203. #define CAT_INNER(x,y) x ## y
  204. #define CAT(x,y) CAT_INNER(x,y)
  205. #endif /* PUTTY_DEFS_H */