host.c 15 KB

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