PageRenderTime 45ms CodeModel.GetById 19ms RepoModel.GetById 0ms app.codeStats 0ms

/Gauche-0.9.3.3/ext/tls/axTLS/ssl/os_port.h

#
C Header | 212 lines | 141 code | 27 blank | 44 comment | 2 complexity | 3b57fe0defe04a4ca8cf9b518f22ab66 MD5 | raw file
Possible License(s): BSD-3-Clause, GPL-2.0
  1. /*
  2. * Copyright (c) 2007, Cameron Rich
  3. *
  4. * All rights reserved.
  5. *
  6. * Redistribution and use in source and binary forms, with or without
  7. * modification, are permitted provided that the following conditions are met:
  8. *
  9. * * Redistributions of source code must retain the above copyright notice,
  10. * this list of conditions and the following disclaimer.
  11. * * Redistributions in binary form must reproduce the above copyright notice,
  12. * this list of conditions and the following disclaimer in the documentation
  13. * and/or other materials provided with the distribution.
  14. * * Neither the name of the axTLS project nor the names of its contributors
  15. * may be used to endorse or promote products derived from this software
  16. * without specific prior written permission.
  17. *
  18. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19. * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  22. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  23. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  24. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  25. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  26. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  27. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  28. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. */
  30. /**
  31. * @file os_port.h
  32. *
  33. * Some stuff to minimise the differences between windows and linux/unix
  34. */
  35. #ifndef HEADER_OS_PORT_H
  36. #define HEADER_OS_PORT_H
  37. #ifdef __cplusplus
  38. extern "C" {
  39. #endif
  40. #include <stdio.h>
  41. #if defined(WIN32)
  42. #define STDCALL __stdcall
  43. #define EXP_FUNC __declspec(dllexport)
  44. #else
  45. #define STDCALL
  46. #define EXP_FUNC
  47. #endif
  48. #if defined(_WIN32_WCE)
  49. #undef WIN32
  50. #define WIN32
  51. #endif
  52. #ifdef WIN32
  53. #include <windows.h>
  54. /* Windows CE stuff */
  55. #if defined(_WIN32_WCE)
  56. #include <basetsd.h>
  57. #define abort() exit(1)
  58. #else
  59. #include <io.h>
  60. #include <process.h>
  61. #include <sys/timeb.h>
  62. #include <fcntl.h>
  63. #endif /* _WIN32_WCE */
  64. #include <winsock.h>
  65. #include <direct.h>
  66. #undef getpid
  67. #undef open
  68. #undef close
  69. #undef sleep
  70. #undef gettimeofday
  71. #undef dup2
  72. #undef unlink
  73. #define SOCKET_READ(A,B,C) recv(A,B,C,0)
  74. #define SOCKET_WRITE(A,B,C) send(A,B,C,0)
  75. #define SOCKET_CLOSE(A) closesocket(A)
  76. #define srandom(A) srand(A)
  77. #define random() rand()
  78. #define getpid() _getpid()
  79. #define snprintf _snprintf
  80. #define open(A,B) _open(A,B)
  81. #define dup2(A,B) _dup2(A,B)
  82. #define unlink(A) _unlink(A)
  83. #define close(A) _close(A)
  84. #define read(A,B,C) _read(A,B,C)
  85. #define write(A,B,C) _write(A,B,C)
  86. #define sleep(A) Sleep(A*1000)
  87. #define usleep(A) Sleep(A/1000)
  88. #define strdup(A) _strdup(A)
  89. #define chroot(A) _chdir(A)
  90. #define chdir(A) _chdir(A)
  91. #define alloca(A) _alloca(A)
  92. #ifndef lseek
  93. #define lseek(A,B,C) _lseek(A,B,C)
  94. #endif
  95. /* This fix gets around a problem where a win32 application on a cygwin xterm
  96. doesn't display regular output (until a certain buffer limit) - but it works
  97. fine under a normal DOS window. This is a hack to get around the issue -
  98. see http://www.khngai.com/emacs/tty.php */
  99. #define TTY_FLUSH() if (!_isatty(_fileno(stdout))) fflush(stdout);
  100. /*
  101. * automatically build some library dependencies.
  102. */
  103. #pragma comment(lib, "WS2_32.lib")
  104. #pragma comment(lib, "AdvAPI32.lib")
  105. #ifndef __MINGW32__
  106. typedef UINT8 uint8_t;
  107. typedef INT8 int8_t;
  108. typedef UINT16 uint16_t;
  109. typedef INT16 int16_t;
  110. typedef UINT32 uint32_t;
  111. typedef INT32 int32_t;
  112. typedef UINT64 uint64_t;
  113. typedef INT64 int64_t;
  114. EXP_FUNC int STDCALL strcasecmp(const char *s1, const char *s2);
  115. EXP_FUNC int STDCALL getdomainname(char *buf, int buf_size);
  116. #else /* __MINGW32__ */
  117. #include <inttypes.h>
  118. #include <malloc.h>
  119. #endif /* __MINGW32__ */
  120. typedef int socklen_t;
  121. EXP_FUNC void STDCALL gettimeofday(struct timeval* t,void* timezone);
  122. #else /* Not Win32 */
  123. #ifdef CONFIG_PLATFORM_SOLARIS
  124. #include <inttypes.h>
  125. #else
  126. #include <stdint.h>
  127. #endif /* Not Solaris */
  128. #include <unistd.h>
  129. #include <pwd.h>
  130. #include <netdb.h>
  131. #include <dirent.h>
  132. #include <fcntl.h>
  133. #include <errno.h>
  134. #include <sys/stat.h>
  135. #include <sys/time.h>
  136. #include <sys/socket.h>
  137. #include <sys/wait.h>
  138. #include <netinet/in.h>
  139. #include <arpa/inet.h>
  140. #define SOCKET_READ(A,B,C) read(A,B,C)
  141. #define SOCKET_WRITE(A,B,C) write(A,B,C)
  142. #define SOCKET_CLOSE(A) if (A >= 0) close(A)
  143. #define TTY_FLUSH()
  144. #endif /* Not Win32 */
  145. /* some functions to mutate the way these work */
  146. #define malloc(A) ax_malloc(A)
  147. #ifndef realloc
  148. #define realloc(A,B) ax_realloc(A,B)
  149. #endif
  150. #define calloc(A,B) ax_calloc(A,B)
  151. EXP_FUNC void * STDCALL ax_malloc(size_t s);
  152. EXP_FUNC void * STDCALL ax_realloc(void *y, size_t s);
  153. EXP_FUNC void * STDCALL ax_calloc(size_t n, size_t s);
  154. EXP_FUNC int STDCALL ax_open(const char *pathname, int flags);
  155. #ifdef CONFIG_PLATFORM_LINUX
  156. void exit_now(const char *format, ...) __attribute((noreturn));
  157. #else
  158. void exit_now(const char *format, ...);
  159. #endif
  160. /* Mutexing definitions */
  161. #if defined(CONFIG_SSL_CTX_MUTEXING)
  162. #if defined(WIN32)
  163. #define SSL_CTX_MUTEX_TYPE HANDLE
  164. #define SSL_CTX_MUTEX_INIT(A) A=CreateMutex(0, FALSE, 0)
  165. #define SSL_CTX_MUTEX_DESTROY(A) CloseHandle(A)
  166. #define SSL_CTX_LOCK(A) WaitForSingleObject(A, INFINITE)
  167. #define SSL_CTX_UNLOCK(A) ReleaseMutex(A)
  168. #else
  169. #include <pthread.h>
  170. #define SSL_CTX_MUTEX_TYPE pthread_mutex_t
  171. #define SSL_CTX_MUTEX_INIT(A) pthread_mutex_init(&A, NULL)
  172. #define SSL_CTX_MUTEX_DESTROY(A) pthread_mutex_destroy(&A)
  173. #define SSL_CTX_LOCK(A) pthread_mutex_lock(&A)
  174. #define SSL_CTX_UNLOCK(A) pthread_mutex_unlock(&A)
  175. #endif
  176. #else /* no mutexing */
  177. #define SSL_CTX_MUTEX_INIT(A)
  178. #define SSL_CTX_MUTEX_DESTROY(A)
  179. #define SSL_CTX_LOCK(A)
  180. #define SSL_CTX_UNLOCK(A)
  181. #endif
  182. #ifdef __cplusplus
  183. }
  184. #endif
  185. #endif