unix.c 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  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(FREEBSD)
  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(FREEBSD)
  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. ENetSocket
  126. enet_socket_create (ENetSocketType type, const ENetAddress * address)
  127. {
  128. ENetSocket newSocket = socket (PF_INET, type == ENET_SOCKET_TYPE_DATAGRAM ? SOCK_DGRAM : SOCK_STREAM, 0);
  129. int receiveBufferSize = ENET_HOST_RECEIVE_BUFFER_SIZE,
  130. sendBufferSize = ENET_HOST_SEND_BUFFER_SIZE,
  131. allowBroadcasting = 1;
  132. #ifndef HAS_FCNTL
  133. int nonBlocking = 1;
  134. #endif
  135. struct sockaddr_in sin;
  136. if (newSocket == ENET_SOCKET_NULL)
  137. return ENET_SOCKET_NULL;
  138. if (type == ENET_SOCKET_TYPE_DATAGRAM)
  139. {
  140. #ifdef HAS_FCNTL
  141. fcntl (newSocket, F_SETFL, O_NONBLOCK | fcntl (newSocket, F_GETFL));
  142. #else
  143. ioctl (newSocket, FIONBIO, & nonBlocking);
  144. #endif
  145. setsockopt (newSocket, SOL_SOCKET, SO_RCVBUF, (char *) & receiveBufferSize, sizeof (int));
  146. setsockopt (newSocket, SOL_SOCKET, SO_SNDBUF, (char *) & sendBufferSize, sizeof (int));
  147. setsockopt (newSocket, SOL_SOCKET, SO_BROADCAST, (char *) & allowBroadcasting, sizeof (int));
  148. }
  149. if (address == NULL)
  150. return newSocket;
  151. memset (& sin, 0, sizeof (struct sockaddr_in));
  152. sin.sin_family = AF_INET;
  153. sin.sin_port = ENET_HOST_TO_NET_16 (address -> port);
  154. sin.sin_addr.s_addr = address -> host;
  155. if (bind (newSocket,
  156. (struct sockaddr *) & sin,
  157. sizeof (struct sockaddr_in)) == -1 ||
  158. (type == ENET_SOCKET_TYPE_STREAM &&
  159. address -> port != ENET_PORT_ANY &&
  160. listen (newSocket, SOMAXCONN) == -1))
  161. {
  162. close (newSocket);
  163. return ENET_SOCKET_NULL;
  164. }
  165. return newSocket;
  166. }
  167. int
  168. enet_socket_connect (ENetSocket socket, const ENetAddress * address)
  169. {
  170. struct sockaddr_in sin;
  171. memset (& sin, 0, sizeof (struct sockaddr_in));
  172. sin.sin_family = AF_INET;
  173. sin.sin_port = ENET_HOST_TO_NET_16 (address -> port);
  174. sin.sin_addr.s_addr = address -> host;
  175. return connect (socket, (struct sockaddr *) & sin, sizeof (struct sockaddr_in));
  176. }
  177. ENetSocket
  178. enet_socket_accept (ENetSocket socket, ENetAddress * address)
  179. {
  180. int result;
  181. struct sockaddr_in sin;
  182. socklen_t sinLength = sizeof (struct sockaddr_in);
  183. result = accept (socket,
  184. address != NULL ? (struct sockaddr *) & sin : NULL,
  185. address != NULL ? & sinLength : NULL);
  186. if (result == -1)
  187. return ENET_SOCKET_NULL;
  188. if (address != NULL)
  189. {
  190. address -> host = (enet_uint32) sin.sin_addr.s_addr;
  191. address -> port = ENET_NET_TO_HOST_16 (sin.sin_port);
  192. }
  193. return result;
  194. }
  195. void
  196. enet_socket_destroy (ENetSocket socket)
  197. {
  198. close (socket);
  199. }
  200. int
  201. enet_socket_send (ENetSocket socket,
  202. const ENetAddress * address,
  203. const ENetBuffer * buffers,
  204. size_t bufferCount)
  205. {
  206. struct msghdr msgHdr;
  207. struct sockaddr_in sin;
  208. int sentLength;
  209. memset (& msgHdr, 0, sizeof (struct msghdr));
  210. if (address != NULL)
  211. {
  212. sin.sin_family = AF_INET;
  213. sin.sin_port = ENET_HOST_TO_NET_16 (address -> port);
  214. sin.sin_addr.s_addr = address -> host;
  215. msgHdr.msg_name = & sin;
  216. msgHdr.msg_namelen = sizeof (struct sockaddr_in);
  217. }
  218. msgHdr.msg_iov = (struct iovec *) buffers;
  219. msgHdr.msg_iovlen = bufferCount;
  220. sentLength = sendmsg (socket, & msgHdr, MSG_NOSIGNAL);
  221. if (sentLength == -1)
  222. {
  223. if (errno == EWOULDBLOCK)
  224. return 0;
  225. return -1;
  226. }
  227. return sentLength;
  228. }
  229. int
  230. enet_socket_receive (ENetSocket socket,
  231. ENetAddress * address,
  232. ENetBuffer * buffers,
  233. size_t bufferCount)
  234. {
  235. struct msghdr msgHdr;
  236. struct sockaddr_in sin;
  237. int recvLength;
  238. memset (& msgHdr, 0, sizeof (struct msghdr));
  239. if (address != NULL)
  240. {
  241. msgHdr.msg_name = & sin;
  242. msgHdr.msg_namelen = sizeof (struct sockaddr_in);
  243. }
  244. msgHdr.msg_iov = (struct iovec *) buffers;
  245. msgHdr.msg_iovlen = bufferCount;
  246. recvLength = recvmsg (socket, & msgHdr, MSG_NOSIGNAL);
  247. if (recvLength == -1)
  248. {
  249. if (errno == EWOULDBLOCK)
  250. return 0;
  251. return -1;
  252. }
  253. #ifdef HAS_MSGHDR_FLAGS
  254. if (msgHdr.msg_flags & MSG_TRUNC)
  255. return -1;
  256. #endif
  257. if (address != NULL)
  258. {
  259. address -> host = (enet_uint32) sin.sin_addr.s_addr;
  260. address -> port = ENET_NET_TO_HOST_16 (sin.sin_port);
  261. }
  262. return recvLength;
  263. }
  264. int
  265. enet_socket_wait (ENetSocket socket, enet_uint32 * condition, enet_uint32 timeout)
  266. {
  267. #ifdef HAS_POLL
  268. struct pollfd pollSocket;
  269. int pollCount;
  270. pollSocket.fd = socket;
  271. pollSocket.events = 0;
  272. if (* condition & ENET_SOCKET_WAIT_SEND)
  273. pollSocket.events |= POLLOUT;
  274. if (* condition & ENET_SOCKET_WAIT_RECEIVE)
  275. pollSocket.events |= POLLIN;
  276. pollCount = poll (& pollSocket, 1, timeout);
  277. if (pollCount < 0)
  278. return -1;
  279. * condition = ENET_SOCKET_WAIT_NONE;
  280. if (pollCount == 0)
  281. return 0;
  282. if (pollSocket.revents & POLLOUT)
  283. * condition |= ENET_SOCKET_WAIT_SEND;
  284. if (pollSocket.revents & POLLIN)
  285. * condition |= ENET_SOCKET_WAIT_RECEIVE;
  286. return 0;
  287. #else
  288. fd_set readSet, writeSet;
  289. struct timeval timeVal;
  290. int selectCount;
  291. timeVal.tv_sec = timeout / 1000;
  292. timeVal.tv_usec = (timeout % 1000) * 1000;
  293. FD_ZERO (& readSet);
  294. FD_ZERO (& writeSet);
  295. if (* condition & ENET_SOCKET_WAIT_SEND)
  296. FD_SET (socket, & writeSet);
  297. if (* condition & ENET_SOCKET_WAIT_RECEIVE)
  298. FD_SET (socket, & readSet);
  299. selectCount = select (socket + 1, & readSet, & writeSet, NULL, & timeVal);
  300. if (selectCount < 0)
  301. return -1;
  302. * condition = ENET_SOCKET_WAIT_NONE;
  303. if (selectCount == 0)
  304. return 0;
  305. if (FD_ISSET (socket, & writeSet))
  306. * condition |= ENET_SOCKET_WAIT_SEND;
  307. if (FD_ISSET (socket, & readSet))
  308. * condition |= ENET_SOCKET_WAIT_RECEIVE;
  309. return 0;
  310. #endif
  311. }
  312. #endif