host.c 14 KB

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