host.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. /**
  2. @file host.c
  3. @brief ENet host management functions
  4. */
  5. #define ENET_BUILDING_LIB 1
  6. #include <string.h>
  7. #include "enet/enet.h"
  8. /** @defgroup host ENet host functions
  9. @{
  10. */
  11. /** Creates a host for communicating to peers.
  12. @param address the address at which other peers may connect to this host. If NULL, then no peers may connect to the host.
  13. @param peerCount the maximum number of peers that should be allocated for the host.
  14. @param incomingBandwidth downstream bandwidth of the host in bytes/second; if 0, ENet will assume unlimited bandwidth.
  15. @param outgoingBandwidth upstream bandwidth of the host in bytes/second; if 0, ENet will assume unlimited bandwidth.
  16. @returns the host on success and NULL on failure
  17. @remarks ENet will strategically drop packets on specific sides of a connection between hosts
  18. to ensure the host's bandwidth is not overwhelmed. The bandwidth parameters also determine
  19. the window size of a connection which limits the amount of reliable packets that may be in transit
  20. at any given time.
  21. */
  22. ENetHost *
  23. enet_host_create (const ENetAddress * address, size_t peerCount, enet_uint32 incomingBandwidth, enet_uint32 outgoingBandwidth)
  24. {
  25. ENetHost * host;
  26. ENetPeer * currentPeer;
  27. if (peerCount > ENET_PROTOCOL_MAXIMUM_PEER_ID)
  28. return NULL;
  29. host = (ENetHost *) enet_malloc (sizeof (ENetHost));
  30. if (host == NULL)
  31. return NULL;
  32. host -> peers = (ENetPeer *) enet_malloc (peerCount * sizeof (ENetPeer));
  33. if (host -> peers == NULL)
  34. {
  35. enet_free (host);
  36. return NULL;
  37. }
  38. memset (host -> peers, 0, peerCount * sizeof (ENetPeer));
  39. host -> socket = enet_socket_create (ENET_SOCKET_TYPE_DATAGRAM);
  40. if (host -> socket == ENET_SOCKET_NULL || (address != NULL && enet_socket_bind (host -> socket, address) < 0))
  41. {
  42. if (host -> socket != ENET_SOCKET_NULL)
  43. enet_socket_destroy (host -> socket);
  44. enet_free (host -> peers);
  45. enet_free (host);
  46. return NULL;
  47. }
  48. enet_socket_set_option (host -> socket, ENET_SOCKOPT_NONBLOCK, 1);
  49. enet_socket_set_option (host -> socket, ENET_SOCKOPT_BROADCAST, 1);
  50. enet_socket_set_option (host -> socket, ENET_SOCKOPT_RCVBUF, ENET_HOST_RECEIVE_BUFFER_SIZE);
  51. enet_socket_set_option (host -> socket, ENET_SOCKOPT_SNDBUF, ENET_HOST_SEND_BUFFER_SIZE);
  52. if (address != NULL)
  53. host -> address = * address;
  54. host -> incomingBandwidth = incomingBandwidth;
  55. host -> outgoingBandwidth = outgoingBandwidth;
  56. host -> bandwidthThrottleEpoch = 0;
  57. host -> recalculateBandwidthLimits = 0;
  58. host -> mtu = ENET_HOST_DEFAULT_MTU;
  59. host -> peerCount = peerCount;
  60. host -> commandCount = 0;
  61. host -> bufferCount = 0;
  62. host -> receivedAddress.host = ENET_HOST_ANY;
  63. host -> receivedAddress.port = 0;
  64. host -> receivedDataLength = 0;
  65. enet_list_clear (& host -> dispatchQueue);
  66. for (currentPeer = host -> peers;
  67. currentPeer < & host -> peers [host -> peerCount];
  68. ++ currentPeer)
  69. {
  70. currentPeer -> host = host;
  71. currentPeer -> incomingPeerID = currentPeer - host -> peers;
  72. currentPeer -> data = NULL;
  73. enet_list_clear (& currentPeer -> acknowledgements);
  74. enet_list_clear (& currentPeer -> sentReliableCommands);
  75. enet_list_clear (& currentPeer -> sentUnreliableCommands);
  76. enet_list_clear (& currentPeer -> outgoingReliableCommands);
  77. enet_list_clear (& currentPeer -> outgoingUnreliableCommands);
  78. enet_list_clear (& currentPeer -> dispatchedCommands);
  79. enet_peer_reset (currentPeer);
  80. }
  81. return host;
  82. }
  83. /** Destroys the host and all resources associated with it.
  84. @param host pointer to the host to destroy
  85. */
  86. void
  87. enet_host_destroy (ENetHost * host)
  88. {
  89. ENetPeer * currentPeer;
  90. enet_socket_destroy (host -> socket);
  91. for (currentPeer = host -> peers;
  92. currentPeer < & host -> peers [host -> peerCount];
  93. ++ currentPeer)
  94. {
  95. enet_peer_reset (currentPeer);
  96. }
  97. enet_free (host -> peers);
  98. enet_free (host);
  99. }
  100. /** Initiates a connection to a foreign host.
  101. @param host host seeking the connection
  102. @param address destination for the connection
  103. @param channelCount number of channels to allocate
  104. @returns a peer representing the foreign host on success, NULL on failure
  105. @remarks The peer returned will have not completed the connection until enet_host_service()
  106. notifies of an ENET_EVENT_TYPE_CONNECT event for the peer.
  107. */
  108. ENetPeer *
  109. enet_host_connect (ENetHost * host, const ENetAddress * address, size_t channelCount)
  110. {
  111. ENetPeer * currentPeer;
  112. ENetChannel * channel;
  113. ENetProtocol command;
  114. if (channelCount < ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT)
  115. channelCount = ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT;
  116. else
  117. if (channelCount > ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT)
  118. channelCount = ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT;
  119. for (currentPeer = host -> peers;
  120. currentPeer < & host -> peers [host -> peerCount];
  121. ++ currentPeer)
  122. {
  123. if (currentPeer -> state == ENET_PEER_STATE_DISCONNECTED)
  124. break;
  125. }
  126. if (currentPeer >= & host -> peers [host -> peerCount])
  127. return NULL;
  128. currentPeer -> channels = (ENetChannel *) enet_malloc (channelCount * sizeof (ENetChannel));
  129. if (currentPeer -> channels == NULL)
  130. return NULL;
  131. currentPeer -> channelCount = channelCount;
  132. currentPeer -> state = ENET_PEER_STATE_CONNECTING;
  133. currentPeer -> address = * address;
  134. currentPeer -> sessionID = (enet_uint32) enet_rand ();
  135. if (host -> outgoingBandwidth == 0)
  136. currentPeer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  137. else
  138. currentPeer -> windowSize = (host -> outgoingBandwidth /
  139. ENET_PEER_WINDOW_SIZE_SCALE) *
  140. ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  141. if (currentPeer -> windowSize < ENET_PROTOCOL_MINIMUM_WINDOW_SIZE)
  142. currentPeer -> windowSize = ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  143. else
  144. if (currentPeer -> windowSize > ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE)
  145. currentPeer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  146. for (channel = currentPeer -> channels;
  147. channel < & currentPeer -> channels [channelCount];
  148. ++ channel)
  149. {
  150. channel -> outgoingReliableSequenceNumber = 0;
  151. channel -> outgoingUnreliableSequenceNumber = 0;
  152. channel -> incomingReliableSequenceNumber = 0;
  153. enet_list_clear (& channel -> incomingReliableCommands);
  154. enet_list_clear (& channel -> incomingUnreliableCommands);
  155. channel -> usedReliableWindows = 0;
  156. memset (channel -> reliableWindows, 0, sizeof (channel -> reliableWindows));
  157. }
  158. command.header.command = ENET_PROTOCOL_COMMAND_CONNECT | ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
  159. command.header.channelID = 0xFF;
  160. command.connect.outgoingPeerID = ENET_HOST_TO_NET_16 (currentPeer -> incomingPeerID);
  161. command.connect.mtu = ENET_HOST_TO_NET_16 (currentPeer -> mtu);
  162. command.connect.windowSize = ENET_HOST_TO_NET_32 (currentPeer -> windowSize);
  163. command.connect.channelCount = ENET_HOST_TO_NET_32 (channelCount);
  164. command.connect.incomingBandwidth = ENET_HOST_TO_NET_32 (host -> incomingBandwidth);
  165. command.connect.outgoingBandwidth = ENET_HOST_TO_NET_32 (host -> outgoingBandwidth);
  166. command.connect.packetThrottleInterval = ENET_HOST_TO_NET_32 (currentPeer -> packetThrottleInterval);
  167. command.connect.packetThrottleAcceleration = ENET_HOST_TO_NET_32 (currentPeer -> packetThrottleAcceleration);
  168. command.connect.packetThrottleDeceleration = ENET_HOST_TO_NET_32 (currentPeer -> packetThrottleDeceleration);
  169. command.connect.sessionID = currentPeer -> sessionID;
  170. enet_peer_queue_outgoing_command (currentPeer, & command, NULL, 0, 0);
  171. return currentPeer;
  172. }
  173. /** Queues a packet to be sent to all peers associated with the host.
  174. @param host host on which to broadcast the packet
  175. @param channelID channel on which to broadcast
  176. @param packet packet to broadcast
  177. */
  178. void
  179. enet_host_broadcast (ENetHost * host, enet_uint8 channelID, ENetPacket * packet)
  180. {
  181. ENetPeer * currentPeer;
  182. for (currentPeer = host -> peers;
  183. currentPeer < & host -> peers [host -> peerCount];
  184. ++ currentPeer)
  185. {
  186. if (currentPeer -> state != ENET_PEER_STATE_CONNECTED)
  187. continue;
  188. enet_peer_send (currentPeer, channelID, packet);
  189. }
  190. if (packet -> referenceCount == 0)
  191. enet_packet_destroy (packet);
  192. }
  193. /** Adjusts the bandwidth limits of a host.
  194. @param host host to adjust
  195. @param incomingBandwidth new incoming bandwidth
  196. @param outgoingBandwidth new outgoing bandwidth
  197. @remarks the incoming and outgoing bandwidth parameters are identical in function to those
  198. specified in enet_host_create().
  199. */
  200. void
  201. enet_host_bandwidth_limit (ENetHost * host, enet_uint32 incomingBandwidth, enet_uint32 outgoingBandwidth)
  202. {
  203. host -> incomingBandwidth = incomingBandwidth;
  204. host -> outgoingBandwidth = outgoingBandwidth;
  205. host -> recalculateBandwidthLimits = 1;
  206. }
  207. void
  208. enet_host_bandwidth_throttle (ENetHost * host)
  209. {
  210. enet_uint32 timeCurrent = enet_time_get (),
  211. elapsedTime = timeCurrent - host -> bandwidthThrottleEpoch,
  212. peersTotal = 0,
  213. dataTotal = 0,
  214. peersRemaining,
  215. bandwidth,
  216. throttle = 0,
  217. bandwidthLimit = 0;
  218. int needsAdjustment;
  219. ENetPeer * peer;
  220. ENetProtocol command;
  221. if (elapsedTime < ENET_HOST_BANDWIDTH_THROTTLE_INTERVAL)
  222. return;
  223. for (peer = host -> peers;
  224. peer < & host -> peers [host -> peerCount];
  225. ++ peer)
  226. {
  227. if (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER)
  228. continue;
  229. ++ peersTotal;
  230. dataTotal += peer -> outgoingDataTotal;
  231. }
  232. if (peersTotal == 0)
  233. return;
  234. peersRemaining = peersTotal;
  235. needsAdjustment = 1;
  236. if (host -> outgoingBandwidth == 0)
  237. bandwidth = ~0;
  238. else
  239. bandwidth = (host -> outgoingBandwidth * elapsedTime) / 1000;
  240. while (peersRemaining > 0 && needsAdjustment != 0)
  241. {
  242. needsAdjustment = 0;
  243. if (dataTotal < bandwidth)
  244. throttle = ENET_PEER_PACKET_THROTTLE_SCALE;
  245. else
  246. throttle = (bandwidth * ENET_PEER_PACKET_THROTTLE_SCALE) / dataTotal;
  247. for (peer = host -> peers;
  248. peer < & host -> peers [host -> peerCount];
  249. ++ peer)
  250. {
  251. enet_uint32 peerBandwidth;
  252. if ((peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER) ||
  253. peer -> incomingBandwidth == 0 ||
  254. peer -> outgoingBandwidthThrottleEpoch == timeCurrent)
  255. continue;
  256. peerBandwidth = (peer -> incomingBandwidth * elapsedTime) / 1000;
  257. if ((throttle * peer -> outgoingDataTotal) / ENET_PEER_PACKET_THROTTLE_SCALE <= peerBandwidth)
  258. continue;
  259. peer -> packetThrottleLimit = (peerBandwidth *
  260. ENET_PEER_PACKET_THROTTLE_SCALE) / peer -> outgoingDataTotal;
  261. if (peer -> packetThrottleLimit == 0)
  262. peer -> packetThrottleLimit = 1;
  263. if (peer -> packetThrottle > peer -> packetThrottleLimit)
  264. peer -> packetThrottle = peer -> packetThrottleLimit;
  265. peer -> outgoingBandwidthThrottleEpoch = timeCurrent;
  266. needsAdjustment = 1;
  267. -- peersRemaining;
  268. bandwidth -= peerBandwidth;
  269. dataTotal -= peerBandwidth;
  270. }
  271. }
  272. if (peersRemaining > 0)
  273. for (peer = host -> peers;
  274. peer < & host -> peers [host -> peerCount];
  275. ++ peer)
  276. {
  277. if ((peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER) ||
  278. peer -> outgoingBandwidthThrottleEpoch == timeCurrent)
  279. continue;
  280. peer -> packetThrottleLimit = throttle;
  281. if (peer -> packetThrottle > peer -> packetThrottleLimit)
  282. peer -> packetThrottle = peer -> packetThrottleLimit;
  283. }
  284. if (host -> recalculateBandwidthLimits)
  285. {
  286. host -> recalculateBandwidthLimits = 0;
  287. peersRemaining = peersTotal;
  288. bandwidth = host -> incomingBandwidth;
  289. needsAdjustment = 1;
  290. if (bandwidth == 0)
  291. bandwidthLimit = 0;
  292. else
  293. while (peersRemaining > 0 && needsAdjustment != 0)
  294. {
  295. needsAdjustment = 0;
  296. bandwidthLimit = bandwidth / peersRemaining;
  297. for (peer = host -> peers;
  298. peer < & host -> peers [host -> peerCount];
  299. ++ peer)
  300. {
  301. if ((peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER) ||
  302. peer -> incomingBandwidthThrottleEpoch == timeCurrent)
  303. continue;
  304. if (peer -> outgoingBandwidth > 0 &&
  305. peer -> outgoingBandwidth >= bandwidthLimit)
  306. continue;
  307. peer -> incomingBandwidthThrottleEpoch = timeCurrent;
  308. needsAdjustment = 1;
  309. -- peersRemaining;
  310. bandwidth -= peer -> outgoingBandwidth;
  311. }
  312. }
  313. for (peer = host -> peers;
  314. peer < & host -> peers [host -> peerCount];
  315. ++ peer)
  316. {
  317. if (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER)
  318. continue;
  319. command.header.command = ENET_PROTOCOL_COMMAND_BANDWIDTH_LIMIT | ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
  320. command.header.channelID = 0xFF;
  321. command.bandwidthLimit.outgoingBandwidth = ENET_HOST_TO_NET_32 (host -> outgoingBandwidth);
  322. if (peer -> incomingBandwidthThrottleEpoch == timeCurrent)
  323. command.bandwidthLimit.incomingBandwidth = ENET_HOST_TO_NET_32 (peer -> outgoingBandwidth);
  324. else
  325. command.bandwidthLimit.incomingBandwidth = ENET_HOST_TO_NET_32 (bandwidthLimit);
  326. enet_peer_queue_outgoing_command (peer, & command, NULL, 0, 0);
  327. }
  328. }
  329. host -> bandwidthThrottleEpoch = timeCurrent;
  330. for (peer = host -> peers;
  331. peer < & host -> peers [host -> peerCount];
  332. ++ peer)
  333. {
  334. peer -> incomingDataTotal = 0;
  335. peer -> outgoingDataTotal = 0;
  336. }
  337. }
  338. /** @} */