unix.c 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438
  1. /**
  2. @file unix.c
  3. @brief ENet Unix system specific functions
  4. */
  5. #ifndef WIN32
  6. #include <sys/types.h>
  7. #include <sys/socket.h>
  8. #include <sys/ioctl.h>
  9. #include <sys/time.h>
  10. #include <arpa/inet.h>
  11. #include <netdb.h>
  12. #include <unistd.h>
  13. #include <string.h>
  14. #include <errno.h>
  15. #include <time.h>
  16. #define ENET_BUILDING_LIB 1
  17. #include "enet/enet.h"
  18. #ifdef HAS_FCNTL
  19. #include <fcntl.h>
  20. #endif
  21. #ifdef __APPLE__
  22. #undef HAS_POLL
  23. #endif
  24. #ifdef HAS_POLL
  25. #include <sys/poll.h>
  26. #endif
  27. #ifndef HAS_SOCKLEN_T
  28. typedef int socklen_t;
  29. #endif
  30. #ifndef MSG_NOSIGNAL
  31. #define MSG_NOSIGNAL 0
  32. #endif
  33. static enet_uint32 timeBase = 0;
  34. int
  35. enet_initialize (void)
  36. {
  37. return 0;
  38. }
  39. void
  40. enet_deinitialize (void)
  41. {
  42. }
  43. enet_uint32
  44. enet_time_get (void)
  45. {
  46. struct timeval timeVal;
  47. gettimeofday (& timeVal, NULL);
  48. return timeVal.tv_sec * 1000 + timeVal.tv_usec / 1000 - timeBase;
  49. }
  50. void
  51. enet_time_set (enet_uint32 newTimeBase)
  52. {
  53. struct timeval timeVal;
  54. gettimeofday (& timeVal, NULL);
  55. timeBase = timeVal.tv_sec * 1000 + timeVal.tv_usec / 1000 - newTimeBase;
  56. }
  57. int
  58. enet_address_set_host (ENetAddress * address, const char * name)
  59. {
  60. struct hostent * hostEntry = NULL;
  61. #ifdef HAS_GETHOSTBYNAME_R
  62. struct hostent hostData;
  63. char buffer [2048];
  64. int errnum;
  65. #if defined(linux) || defined(__linux) || defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
  66. gethostbyname_r (name, & hostData, buffer, sizeof (buffer), & hostEntry, & errnum);
  67. #else
  68. hostEntry = gethostbyname_r (name, & hostData, buffer, sizeof (buffer), & errnum);
  69. #endif
  70. #else
  71. hostEntry = gethostbyname (name);
  72. #endif
  73. if (hostEntry == NULL ||
  74. hostEntry -> h_addrtype != AF_INET)
  75. {
  76. #ifdef HAS_INET_PTON
  77. if (! inet_pton (AF_INET, name, & address -> host))
  78. #else
  79. if (! inet_aton (name, (struct in_addr *) & address -> host))
  80. #endif
  81. return -1;
  82. return 0;
  83. }
  84. address -> host = * (enet_uint32 *) hostEntry -> h_addr_list [0];
  85. return 0;
  86. }
  87. int
  88. enet_address_get_host_ip (const ENetAddress * address, char * name, size_t nameLength)
  89. {
  90. #ifdef HAS_INET_NTOP
  91. if (inet_ntop (AF_INET, & address -> host, name, nameLength) == NULL)
  92. #else
  93. char * addr = inet_ntoa (* (struct in_addr *) & address -> host);
  94. if (addr != NULL)
  95. strncpy (name, addr, nameLength);
  96. else
  97. #endif
  98. return -1;
  99. return 0;
  100. }
  101. int
  102. enet_address_get_host (const ENetAddress * address, char * name, size_t nameLength)
  103. {
  104. struct in_addr in;
  105. struct hostent * hostEntry = NULL;
  106. #ifdef HAS_GETHOSTBYADDR_R
  107. struct hostent hostData;
  108. char buffer [2048];
  109. int errnum;
  110. in.s_addr = address -> host;
  111. #if defined(linux) || defined(__linux) || defined(__linux__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
  112. gethostbyaddr_r ((char *) & in, sizeof (struct in_addr), AF_INET, & hostData, buffer, sizeof (buffer), & hostEntry, & errnum);
  113. #else
  114. hostEntry = gethostbyaddr_r ((char *) & in, sizeof (struct in_addr), AF_INET, & hostData, buffer, sizeof (buffer), & errnum);
  115. #endif
  116. #else
  117. in.s_addr = address -> host;
  118. hostEntry = gethostbyaddr ((char *) & in, sizeof (struct in_addr), AF_INET);
  119. #endif
  120. if (hostEntry == NULL)
  121. return enet_address_get_host_ip (address, name, nameLength);
  122. strncpy (name, hostEntry -> h_name, nameLength);
  123. return 0;
  124. }
  125. int
  126. enet_socket_bind (ENetSocket socket, const ENetAddress * address)
  127. {
  128. struct sockaddr_in sin;
  129. memset (& sin, 0, sizeof (struct sockaddr_in));
  130. sin.sin_family = AF_INET;
  131. if (address != NULL)
  132. {
  133. sin.sin_port = ENET_HOST_TO_NET_16 (address -> port);
  134. sin.sin_addr.s_addr = address -> host;
  135. }
  136. else
  137. {
  138. sin.sin_port = 0;
  139. sin.sin_addr.s_addr = INADDR_ANY;
  140. }
  141. return bind (socket,
  142. (struct sockaddr *) & sin,
  143. sizeof (struct sockaddr_in));
  144. }
  145. int
  146. enet_socket_listen (ENetSocket socket, int backlog)
  147. {
  148. return listen (socket, backlog < 0 ? SOMAXCONN : backlog);
  149. }
  150. ENetSocket
  151. enet_socket_create (ENetSocketType type)
  152. {
  153. return socket (PF_INET, type == ENET_SOCKET_TYPE_DATAGRAM ? SOCK_DGRAM : SOCK_STREAM, 0);
  154. }
  155. int
  156. enet_socket_set_option (ENetSocket socket, ENetSocketOption option, int value)
  157. {
  158. int result = -1;
  159. switch (option)
  160. {
  161. case ENET_SOCKOPT_NONBLOCK:
  162. #ifdef HAS_FCNTL
  163. result = fcntl (socket, F_SETFL, O_NONBLOCK | fcntl (socket, F_GETFL));
  164. #else
  165. result = ioctl (socket, FIONBIO, & value);
  166. #endif
  167. break;
  168. case ENET_SOCKOPT_BROADCAST:
  169. result = setsockopt (socket, SOL_SOCKET, SO_BROADCAST, (char *) & value, sizeof (int));
  170. break;
  171. case ENET_SOCKOPT_REUSEADDR:
  172. result = setsockopt (socket, SOL_SOCKET, SO_REUSEADDR, (char *) & value, sizeof (int));
  173. break;
  174. case ENET_SOCKOPT_RCVBUF:
  175. result = setsockopt (socket, SOL_SOCKET, SO_RCVBUF, (char *) & value, sizeof (int));
  176. break;
  177. case ENET_SOCKOPT_SNDBUF:
  178. result = setsockopt (socket, SOL_SOCKET, SO_SNDBUF, (char *) & value, sizeof (int));
  179. break;
  180. default:
  181. break;
  182. }
  183. return result == -1 ? -1 : 0;
  184. }
  185. int
  186. enet_socket_connect (ENetSocket socket, const ENetAddress * address)
  187. {
  188. struct sockaddr_in sin;
  189. memset (& sin, 0, sizeof (struct sockaddr_in));
  190. sin.sin_family = AF_INET;
  191. sin.sin_port = ENET_HOST_TO_NET_16 (address -> port);
  192. sin.sin_addr.s_addr = address -> host;
  193. return connect (socket, (struct sockaddr *) & sin, sizeof (struct sockaddr_in));
  194. }
  195. ENetSocket
  196. enet_socket_accept (ENetSocket socket, ENetAddress * address)
  197. {
  198. int result;
  199. struct sockaddr_in sin;
  200. socklen_t sinLength = sizeof (struct sockaddr_in);
  201. result = accept (socket,
  202. address != NULL ? (struct sockaddr *) & sin : NULL,
  203. address != NULL ? & sinLength : NULL);
  204. if (result == -1)
  205. return ENET_SOCKET_NULL;
  206. if (address != NULL)
  207. {
  208. address -> host = (enet_uint32) sin.sin_addr.s_addr;
  209. address -> port = ENET_NET_TO_HOST_16 (sin.sin_port);
  210. }
  211. return result;
  212. }
  213. void
  214. enet_socket_destroy (ENetSocket socket)
  215. {
  216. close (socket);
  217. }
  218. int
  219. enet_socket_send (ENetSocket socket,
  220. const ENetAddress * address,
  221. const ENetBuffer * buffers,
  222. size_t bufferCount)
  223. {
  224. struct msghdr msgHdr;
  225. struct sockaddr_in sin;
  226. int sentLength;
  227. memset (& msgHdr, 0, sizeof (struct msghdr));
  228. if (address != NULL)
  229. {
  230. memset (& sin, 0, sizeof (struct sockaddr_in));
  231. sin.sin_family = AF_INET;
  232. sin.sin_port = ENET_HOST_TO_NET_16 (address -> port);
  233. sin.sin_addr.s_addr = address -> host;
  234. msgHdr.msg_name = & sin;
  235. msgHdr.msg_namelen = sizeof (struct sockaddr_in);
  236. }
  237. msgHdr.msg_iov = (struct iovec *) buffers;
  238. msgHdr.msg_iovlen = bufferCount;
  239. sentLength = sendmsg (socket, & msgHdr, MSG_NOSIGNAL);
  240. if (sentLength == -1)
  241. {
  242. if (errno == EWOULDBLOCK)
  243. return 0;
  244. return -1;
  245. }
  246. return sentLength;
  247. }
  248. int
  249. enet_socket_receive (ENetSocket socket,
  250. ENetAddress * address,
  251. ENetBuffer * buffers,
  252. size_t bufferCount)
  253. {
  254. struct msghdr msgHdr;
  255. struct sockaddr_in sin;
  256. int recvLength;
  257. memset (& msgHdr, 0, sizeof (struct msghdr));
  258. if (address != NULL)
  259. {
  260. msgHdr.msg_name = & sin;
  261. msgHdr.msg_namelen = sizeof (struct sockaddr_in);
  262. }
  263. msgHdr.msg_iov = (struct iovec *) buffers;
  264. msgHdr.msg_iovlen = bufferCount;
  265. recvLength = recvmsg (socket, & msgHdr, MSG_NOSIGNAL);
  266. if (recvLength == -1)
  267. {
  268. if (errno == EWOULDBLOCK)
  269. return 0;
  270. return -1;
  271. }
  272. #ifdef HAS_MSGHDR_FLAGS
  273. if (msgHdr.msg_flags & MSG_TRUNC)
  274. return -1;
  275. #endif
  276. if (address != NULL)
  277. {
  278. address -> host = (enet_uint32) sin.sin_addr.s_addr;
  279. address -> port = ENET_NET_TO_HOST_16 (sin.sin_port);
  280. }
  281. return recvLength;
  282. }
  283. int
  284. enet_socketset_select (ENetSocket maxSocket, ENetSocketSet * readSet, ENetSocketSet * writeSet, enet_uint32 timeout)
  285. {
  286. struct timeval timeVal;
  287. timeVal.tv_sec = timeout / 1000;
  288. timeVal.tv_usec = (timeout % 1000) * 1000;
  289. return select (maxSocket + 1, readSet, writeSet, NULL, & timeVal);
  290. }
  291. int
  292. enet_socket_wait (ENetSocket socket, enet_uint32 * condition, enet_uint32 timeout)
  293. {
  294. #ifdef HAS_POLL
  295. struct pollfd pollSocket;
  296. int pollCount;
  297. pollSocket.fd = socket;
  298. pollSocket.events = 0;
  299. if (* condition & ENET_SOCKET_WAIT_SEND)
  300. pollSocket.events |= POLLOUT;
  301. if (* condition & ENET_SOCKET_WAIT_RECEIVE)
  302. pollSocket.events |= POLLIN;
  303. pollCount = poll (& pollSocket, 1, timeout);
  304. if (pollCount < 0)
  305. return -1;
  306. * condition = ENET_SOCKET_WAIT_NONE;
  307. if (pollCount == 0)
  308. return 0;
  309. if (pollSocket.revents & POLLOUT)
  310. * condition |= ENET_SOCKET_WAIT_SEND;
  311. if (pollSocket.revents & POLLIN)
  312. * condition |= ENET_SOCKET_WAIT_RECEIVE;
  313. return 0;
  314. #else
  315. fd_set readSet, writeSet;
  316. struct timeval timeVal;
  317. int selectCount;
  318. timeVal.tv_sec = timeout / 1000;
  319. timeVal.tv_usec = (timeout % 1000) * 1000;
  320. FD_ZERO (& readSet);
  321. FD_ZERO (& writeSet);
  322. if (* condition & ENET_SOCKET_WAIT_SEND)
  323. FD_SET (socket, & writeSet);
  324. if (* condition & ENET_SOCKET_WAIT_RECEIVE)
  325. FD_SET (socket, & readSet);
  326. selectCount = select (socket + 1, & readSet, & writeSet, NULL, & timeVal);
  327. if (selectCount < 0)
  328. return -1;
  329. * condition = ENET_SOCKET_WAIT_NONE;
  330. if (selectCount == 0)
  331. return 0;
  332. if (FD_ISSET (socket, & writeSet))
  333. * condition |= ENET_SOCKET_WAIT_SEND;
  334. if (FD_ISSET (socket, & readSet))
  335. * condition |= ENET_SOCKET_WAIT_RECEIVE;
  336. return 0;
  337. #endif
  338. }
  339. #endif