os_port.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. /*
  2. * Copyright (c) 2007-2016, 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.c
  32. *
  33. * OS specific functions.
  34. */
  35. #include <time.h>
  36. #include <stdlib.h>
  37. #if !defined(_WIN32_WCE)
  38. #include <errno.h>
  39. #endif
  40. #include <stdarg.h>
  41. #include "os_port.h"
  42. #ifdef WIN32
  43. /**
  44. * gettimeofday() not in Win32
  45. */
  46. EXP_FUNC void STDCALL gettimeofday(struct timeval* t, void* timezone)
  47. {
  48. #if defined(_WIN32_WCE)
  49. t->tv_sec = time(NULL);
  50. t->tv_usec = 0; /* 1sec precision only */
  51. #else
  52. struct _timeb timebuffer;
  53. _ftime(&timebuffer);
  54. t->tv_sec = (long)timebuffer.time;
  55. t->tv_usec = 1000 * timebuffer.millitm; /* 1ms precision */
  56. #endif
  57. }
  58. #ifndef __MINGW32__
  59. /**
  60. * strcasecmp() not in Win32
  61. */
  62. EXP_FUNC int STDCALL strcasecmp(const char *s1, const char *s2)
  63. {
  64. while (tolower(*s1) == tolower(*s2++))
  65. {
  66. if (*s1++ == '\0')
  67. {
  68. return 0;
  69. }
  70. }
  71. return *(unsigned char *)s1 - *(unsigned char *)(s2 - 1);
  72. }
  73. #endif
  74. EXP_FUNC int STDCALL getdomainname(char *buf, int buf_size)
  75. {
  76. HKEY hKey;
  77. unsigned long datatype;
  78. unsigned long bufferlength = buf_size;
  79. if (RegOpenKeyEx(HKEY_LOCAL_MACHINE,
  80. TEXT("SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters"),
  81. 0, KEY_QUERY_VALUE, &hKey) != ERROR_SUCCESS)
  82. return -1;
  83. RegQueryValueEx(hKey, TEXT("Domain"), NULL, &datatype, (LPBYTE)buf, &bufferlength);
  84. RegCloseKey(hKey);
  85. return 0;
  86. }
  87. #endif
  88. #undef malloc
  89. #undef realloc
  90. #undef calloc
  91. static const char * out_of_mem_str = "out of memory";
  92. static const char * file_open_str = "Could not open file \"%s\"";
  93. /*
  94. * Some functions that call display some error trace and then call abort().
  95. * This just makes life much easier on embedded systems, since we're
  96. * suffering major trauma...
  97. */
  98. EXP_FUNC void * STDCALL ax_malloc(size_t s)
  99. {
  100. void *x;
  101. if ((x = malloc(s)) == NULL)
  102. exit_now(out_of_mem_str);
  103. return x;
  104. }
  105. EXP_FUNC void * STDCALL ax_realloc(void *y, size_t s)
  106. {
  107. void *x;
  108. if ((x = realloc(y, s)) == NULL)
  109. exit_now(out_of_mem_str);
  110. return x;
  111. }
  112. EXP_FUNC void * STDCALL ax_calloc(size_t n, size_t s)
  113. {
  114. void *x;
  115. if ((x = calloc(n, s)) == NULL)
  116. exit_now(out_of_mem_str);
  117. return x;
  118. }
  119. EXP_FUNC int STDCALL ax_open(const char *pathname, int flags)
  120. {
  121. int x;
  122. if ((x = open(pathname, flags)) < 0)
  123. exit_now(file_open_str, pathname);
  124. return x;
  125. }
  126. /**
  127. * This is a call which will deliberately exit an application, but will
  128. * display some information before dying.
  129. */
  130. void exit_now(const char *format, ...)
  131. {
  132. va_list argp;
  133. va_start(argp, format);
  134. vfprintf(stderr, format, argp);
  135. va_end(argp);
  136. abort();
  137. }