protocol.c 56 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592
  1. /**
  2. @file protocol.c
  3. @brief ENet protocol functions
  4. */
  5. #include <stdio.h>
  6. #include <string.h>
  7. #define ENET_BUILDING_LIB 1
  8. #include "enet/utility.h"
  9. #include "enet/time.h"
  10. #include "enet/enet.h"
  11. static size_t commandSizes [ENET_PROTOCOL_COMMAND_COUNT] =
  12. {
  13. 0,
  14. sizeof (ENetProtocolAcknowledge),
  15. sizeof (ENetProtocolConnect),
  16. sizeof (ENetProtocolVerifyConnect),
  17. sizeof (ENetProtocolDisconnect),
  18. sizeof (ENetProtocolPing),
  19. sizeof (ENetProtocolSendReliable),
  20. sizeof (ENetProtocolSendUnreliable),
  21. sizeof (ENetProtocolSendFragment),
  22. sizeof (ENetProtocolSendUnsequenced),
  23. sizeof (ENetProtocolBandwidthLimit),
  24. sizeof (ENetProtocolThrottleConfigure),
  25. };
  26. size_t
  27. enet_protocol_command_size (enet_uint8 commandNumber)
  28. {
  29. return commandSizes [commandNumber & ENET_PROTOCOL_COMMAND_MASK];
  30. }
  31. static int
  32. enet_protocol_dispatch_incoming_commands (ENetHost * host, ENetEvent * event)
  33. {
  34. while (! enet_list_empty (& host -> dispatchQueue))
  35. {
  36. ENetPeer * peer = (ENetPeer *) enet_list_remove (enet_list_begin (& host -> dispatchQueue));
  37. peer -> needsDispatch = 0;
  38. switch (peer -> state)
  39. {
  40. case ENET_PEER_STATE_CONNECTION_PENDING:
  41. case ENET_PEER_STATE_CONNECTION_SUCCEEDED:
  42. peer -> state = ENET_PEER_STATE_CONNECTED;
  43. event -> type = ENET_EVENT_TYPE_CONNECT;
  44. event -> peer = peer;
  45. return 1;
  46. case ENET_PEER_STATE_ZOMBIE:
  47. host -> recalculateBandwidthLimits = 1;
  48. event -> type = ENET_EVENT_TYPE_DISCONNECT;
  49. event -> peer = peer;
  50. event -> data = peer -> disconnectData;
  51. enet_peer_reset (peer);
  52. return 1;
  53. case ENET_PEER_STATE_CONNECTED:
  54. if (enet_list_empty (& peer -> dispatchedCommands))
  55. continue;
  56. event -> packet = enet_peer_receive (peer, & event -> channelID);
  57. if (event -> packet == NULL)
  58. continue;
  59. event -> type = ENET_EVENT_TYPE_RECEIVE;
  60. event -> peer = peer;
  61. if (! enet_list_empty (& peer -> dispatchedCommands))
  62. {
  63. peer -> needsDispatch = 1;
  64. enet_list_insert (enet_list_end (& host -> dispatchQueue), & peer -> dispatchList);
  65. }
  66. return 1;
  67. }
  68. }
  69. return 0;
  70. }
  71. static void
  72. enet_protocol_dispatch_state (ENetHost * host, ENetPeer * peer, ENetPeerState state)
  73. {
  74. peer -> state = state;
  75. if (! peer -> needsDispatch)
  76. {
  77. enet_list_insert (enet_list_end (& host -> dispatchQueue), & peer -> dispatchList);
  78. peer -> needsDispatch = 1;
  79. }
  80. }
  81. static void
  82. enet_protocol_notify_connect (ENetHost * host, ENetPeer * peer, ENetEvent * event)
  83. {
  84. host -> recalculateBandwidthLimits = 1;
  85. if (event != NULL)
  86. {
  87. peer -> state = ENET_PEER_STATE_CONNECTED;
  88. event -> type = ENET_EVENT_TYPE_CONNECT;
  89. event -> peer = peer;
  90. }
  91. else
  92. enet_protocol_dispatch_state (host, peer, peer -> state == ENET_PEER_STATE_CONNECTING ? ENET_PEER_STATE_CONNECTION_SUCCEEDED : ENET_PEER_STATE_CONNECTION_PENDING);
  93. }
  94. static void
  95. enet_protocol_notify_disconnect (ENetHost * host, ENetPeer * peer, ENetEvent * event)
  96. {
  97. if (peer -> state >= ENET_PEER_STATE_CONNECTION_PENDING)
  98. host -> recalculateBandwidthLimits = 1;
  99. if (peer -> state != ENET_PEER_STATE_CONNECTING && peer -> state < ENET_PEER_STATE_CONNECTION_SUCCEEDED)
  100. enet_peer_reset (peer);
  101. else
  102. if (event != NULL)
  103. {
  104. event -> type = ENET_EVENT_TYPE_DISCONNECT;
  105. event -> peer = peer;
  106. event -> data = 0;
  107. enet_peer_reset (peer);
  108. }
  109. else
  110. enet_protocol_dispatch_state (host, peer, ENET_PEER_STATE_ZOMBIE);
  111. }
  112. static void
  113. enet_protocol_remove_sent_unreliable_commands (ENetPeer * peer)
  114. {
  115. ENetOutgoingCommand * outgoingCommand;
  116. while (! enet_list_empty (& peer -> sentUnreliableCommands))
  117. {
  118. outgoingCommand = (ENetOutgoingCommand *) enet_list_front (& peer -> sentUnreliableCommands);
  119. enet_list_remove (& outgoingCommand -> outgoingCommandList);
  120. if (outgoingCommand -> packet != NULL)
  121. {
  122. -- outgoingCommand -> packet -> referenceCount;
  123. if (outgoingCommand -> packet -> referenceCount == 0)
  124. enet_packet_destroy (outgoingCommand -> packet);
  125. }
  126. enet_free (outgoingCommand);
  127. }
  128. }
  129. static ENetProtocolCommand
  130. enet_protocol_remove_sent_reliable_command (ENetPeer * peer, enet_uint16 reliableSequenceNumber, enet_uint8 channelID)
  131. {
  132. ENetOutgoingCommand * outgoingCommand;
  133. ENetListIterator currentCommand;
  134. ENetProtocolCommand commandNumber;
  135. for (currentCommand = enet_list_begin (& peer -> sentReliableCommands);
  136. currentCommand != enet_list_end (& peer -> sentReliableCommands);
  137. currentCommand = enet_list_next (currentCommand))
  138. {
  139. outgoingCommand = (ENetOutgoingCommand *) currentCommand;
  140. if (outgoingCommand -> reliableSequenceNumber == reliableSequenceNumber &&
  141. outgoingCommand -> command.header.channelID == channelID)
  142. break;
  143. }
  144. if (currentCommand == enet_list_end (& peer -> sentReliableCommands))
  145. {
  146. for (currentCommand = enet_list_begin (& peer -> outgoingReliableCommands);
  147. currentCommand != enet_list_end (& peer -> outgoingReliableCommands);
  148. currentCommand = enet_list_next (currentCommand))
  149. {
  150. outgoingCommand = (ENetOutgoingCommand *) currentCommand;
  151. if (outgoingCommand -> sendAttempts < 1) return ENET_PROTOCOL_COMMAND_NONE;
  152. if (outgoingCommand -> reliableSequenceNumber == reliableSequenceNumber &&
  153. outgoingCommand -> command.header.channelID == channelID)
  154. break;
  155. }
  156. if (currentCommand == enet_list_end (& peer -> outgoingReliableCommands))
  157. return ENET_PROTOCOL_COMMAND_NONE;
  158. }
  159. if (channelID < peer -> channelCount)
  160. {
  161. ENetChannel * channel = & peer -> channels [channelID];
  162. enet_uint16 reliableWindow = reliableSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE;
  163. if (channel -> reliableWindows [reliableWindow] > 0)
  164. {
  165. -- channel -> reliableWindows [reliableWindow];
  166. if (! channel -> reliableWindows [reliableWindow])
  167. channel -> usedReliableWindows &= ~ (1 << reliableWindow);
  168. }
  169. }
  170. commandNumber = (ENetProtocolCommand) (outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK);
  171. enet_list_remove (& outgoingCommand -> outgoingCommandList);
  172. if (outgoingCommand -> packet != NULL)
  173. {
  174. peer -> reliableDataInTransit -= outgoingCommand -> fragmentLength;
  175. -- outgoingCommand -> packet -> referenceCount;
  176. if (outgoingCommand -> packet -> referenceCount == 0)
  177. enet_packet_destroy (outgoingCommand -> packet);
  178. }
  179. enet_free (outgoingCommand);
  180. if (enet_list_empty (& peer -> sentReliableCommands))
  181. return commandNumber;
  182. outgoingCommand = (ENetOutgoingCommand *) enet_list_front (& peer -> sentReliableCommands);
  183. peer -> nextTimeout = outgoingCommand -> sentTime + outgoingCommand -> roundTripTimeout;
  184. return commandNumber;
  185. }
  186. static ENetPeer *
  187. enet_protocol_handle_connect (ENetHost * host, ENetProtocolHeader * header, ENetProtocol * command)
  188. {
  189. enet_uint16 mtu;
  190. enet_uint32 windowSize;
  191. ENetChannel * channel;
  192. size_t channelCount;
  193. ENetPeer * currentPeer;
  194. ENetProtocol verifyCommand;
  195. if (host -> checksum != NULL)
  196. {
  197. enet_uint32 checksum = header -> checksum;
  198. ENetBuffer buffer;
  199. command -> header.reliableSequenceNumber = ENET_HOST_TO_NET_16 (command -> header.reliableSequenceNumber);
  200. header -> checksum = command -> connect.sessionID;
  201. buffer.data = host -> receivedData;
  202. buffer.dataLength = host -> receivedDataLength;
  203. if (host -> checksum (& buffer, 1) != checksum)
  204. return NULL;
  205. command -> header.reliableSequenceNumber = ENET_NET_TO_HOST_16 (command -> header.reliableSequenceNumber);
  206. }
  207. channelCount = ENET_NET_TO_HOST_32 (command -> connect.channelCount);
  208. if (channelCount < ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT ||
  209. channelCount > ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT)
  210. return NULL;
  211. for (currentPeer = host -> peers;
  212. currentPeer < & host -> peers [host -> peerCount];
  213. ++ currentPeer)
  214. {
  215. if (currentPeer -> state != ENET_PEER_STATE_DISCONNECTED &&
  216. currentPeer -> address.host == host -> receivedAddress.host &&
  217. currentPeer -> address.port == host -> receivedAddress.port &&
  218. currentPeer -> sessionID == command -> connect.sessionID)
  219. return NULL;
  220. }
  221. for (currentPeer = host -> peers;
  222. currentPeer < & host -> peers [host -> peerCount];
  223. ++ currentPeer)
  224. {
  225. if (currentPeer -> state == ENET_PEER_STATE_DISCONNECTED)
  226. break;
  227. }
  228. if (currentPeer >= & host -> peers [host -> peerCount])
  229. return NULL;
  230. if (channelCount > host -> channelLimit)
  231. channelCount = host -> channelLimit;
  232. currentPeer -> channels = (ENetChannel *) enet_malloc (channelCount * sizeof (ENetChannel));
  233. if (currentPeer -> channels == NULL)
  234. return NULL;
  235. currentPeer -> channelCount = channelCount;
  236. currentPeer -> state = ENET_PEER_STATE_ACKNOWLEDGING_CONNECT;
  237. currentPeer -> sessionID = command -> connect.sessionID;
  238. currentPeer -> address = host -> receivedAddress;
  239. currentPeer -> outgoingPeerID = ENET_NET_TO_HOST_16 (command -> connect.outgoingPeerID);
  240. currentPeer -> incomingBandwidth = ENET_NET_TO_HOST_32 (command -> connect.incomingBandwidth);
  241. currentPeer -> outgoingBandwidth = ENET_NET_TO_HOST_32 (command -> connect.outgoingBandwidth);
  242. currentPeer -> packetThrottleInterval = ENET_NET_TO_HOST_32 (command -> connect.packetThrottleInterval);
  243. currentPeer -> packetThrottleAcceleration = ENET_NET_TO_HOST_32 (command -> connect.packetThrottleAcceleration);
  244. currentPeer -> packetThrottleDeceleration = ENET_NET_TO_HOST_32 (command -> connect.packetThrottleDeceleration);
  245. for (channel = currentPeer -> channels;
  246. channel < & currentPeer -> channels [channelCount];
  247. ++ channel)
  248. {
  249. channel -> outgoingReliableSequenceNumber = 0;
  250. channel -> outgoingUnreliableSequenceNumber = 0;
  251. channel -> incomingReliableSequenceNumber = 0;
  252. enet_list_clear (& channel -> incomingReliableCommands);
  253. enet_list_clear (& channel -> incomingUnreliableCommands);
  254. channel -> usedReliableWindows = 0;
  255. memset (channel -> reliableWindows, 0, sizeof (channel -> reliableWindows));
  256. }
  257. mtu = ENET_NET_TO_HOST_16 (command -> connect.mtu);
  258. if (mtu < ENET_PROTOCOL_MINIMUM_MTU)
  259. mtu = ENET_PROTOCOL_MINIMUM_MTU;
  260. else
  261. if (mtu > ENET_PROTOCOL_MAXIMUM_MTU)
  262. mtu = ENET_PROTOCOL_MAXIMUM_MTU;
  263. currentPeer -> mtu = mtu;
  264. if (host -> outgoingBandwidth == 0 &&
  265. currentPeer -> incomingBandwidth == 0)
  266. currentPeer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  267. else
  268. if (host -> outgoingBandwidth == 0 ||
  269. currentPeer -> incomingBandwidth == 0)
  270. currentPeer -> windowSize = (ENET_MAX (host -> outgoingBandwidth, currentPeer -> incomingBandwidth) /
  271. ENET_PEER_WINDOW_SIZE_SCALE) *
  272. ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  273. else
  274. currentPeer -> windowSize = (ENET_MIN (host -> outgoingBandwidth, currentPeer -> incomingBandwidth) /
  275. ENET_PEER_WINDOW_SIZE_SCALE) *
  276. ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  277. if (currentPeer -> windowSize < ENET_PROTOCOL_MINIMUM_WINDOW_SIZE)
  278. currentPeer -> windowSize = ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  279. else
  280. if (currentPeer -> windowSize > ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE)
  281. currentPeer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  282. if (host -> incomingBandwidth == 0)
  283. windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  284. else
  285. windowSize = (host -> incomingBandwidth / ENET_PEER_WINDOW_SIZE_SCALE) *
  286. ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  287. if (windowSize > ENET_NET_TO_HOST_32 (command -> connect.windowSize))
  288. windowSize = ENET_NET_TO_HOST_32 (command -> connect.windowSize);
  289. if (windowSize < ENET_PROTOCOL_MINIMUM_WINDOW_SIZE)
  290. windowSize = ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  291. else
  292. if (windowSize > ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE)
  293. windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  294. verifyCommand.header.command = ENET_PROTOCOL_COMMAND_VERIFY_CONNECT | ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE;
  295. verifyCommand.header.channelID = 0xFF;
  296. verifyCommand.verifyConnect.outgoingPeerID = ENET_HOST_TO_NET_16 (currentPeer -> incomingPeerID);
  297. verifyCommand.verifyConnect.mtu = ENET_HOST_TO_NET_16 (currentPeer -> mtu);
  298. verifyCommand.verifyConnect.windowSize = ENET_HOST_TO_NET_32 (windowSize);
  299. verifyCommand.verifyConnect.channelCount = ENET_HOST_TO_NET_32 (channelCount);
  300. verifyCommand.verifyConnect.incomingBandwidth = ENET_HOST_TO_NET_32 (host -> incomingBandwidth);
  301. verifyCommand.verifyConnect.outgoingBandwidth = ENET_HOST_TO_NET_32 (host -> outgoingBandwidth);
  302. verifyCommand.verifyConnect.packetThrottleInterval = ENET_HOST_TO_NET_32 (currentPeer -> packetThrottleInterval);
  303. verifyCommand.verifyConnect.packetThrottleAcceleration = ENET_HOST_TO_NET_32 (currentPeer -> packetThrottleAcceleration);
  304. verifyCommand.verifyConnect.packetThrottleDeceleration = ENET_HOST_TO_NET_32 (currentPeer -> packetThrottleDeceleration);
  305. enet_peer_queue_outgoing_command (currentPeer, & verifyCommand, NULL, 0, 0);
  306. return currentPeer;
  307. }
  308. static int
  309. enet_protocol_handle_send_reliable (ENetHost * host, ENetPeer * peer, const ENetProtocol * command, enet_uint8 ** currentData)
  310. {
  311. ENetPacket * packet;
  312. size_t dataLength;
  313. if (command -> header.channelID >= peer -> channelCount ||
  314. (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER))
  315. return -1;
  316. dataLength = ENET_NET_TO_HOST_16 (command -> sendReliable.dataLength);
  317. * currentData += dataLength;
  318. if (* currentData > & host -> receivedData [host -> receivedDataLength])
  319. return -1;
  320. packet = enet_packet_create ((const enet_uint8 *) command + sizeof (ENetProtocolSendReliable),
  321. dataLength,
  322. ENET_PACKET_FLAG_RELIABLE);
  323. if (packet == NULL ||
  324. enet_peer_queue_incoming_command (peer, command, packet, 0) == NULL)
  325. return -1;
  326. return 0;
  327. }
  328. static int
  329. enet_protocol_handle_send_unsequenced (ENetHost * host, ENetPeer * peer, const ENetProtocol * command, enet_uint8 ** currentData)
  330. {
  331. ENetPacket * packet;
  332. enet_uint32 unsequencedGroup, index;
  333. size_t dataLength;
  334. if (command -> header.channelID >= peer -> channelCount ||
  335. (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER))
  336. return -1;
  337. dataLength = ENET_NET_TO_HOST_16 (command -> sendUnsequenced.dataLength);
  338. * currentData += dataLength;
  339. if (* currentData > & host -> receivedData [host -> receivedDataLength])
  340. return -1;
  341. unsequencedGroup = ENET_NET_TO_HOST_16 (command -> sendUnsequenced.unsequencedGroup);
  342. index = unsequencedGroup % ENET_PEER_UNSEQUENCED_WINDOW_SIZE;
  343. if (unsequencedGroup < peer -> incomingUnsequencedGroup)
  344. unsequencedGroup += 0x10000;
  345. if (unsequencedGroup >= (enet_uint32) peer -> incomingUnsequencedGroup + ENET_PEER_FREE_UNSEQUENCED_WINDOWS * ENET_PEER_UNSEQUENCED_WINDOW_SIZE)
  346. return 0;
  347. unsequencedGroup &= 0xFFFF;
  348. if (unsequencedGroup - index != peer -> incomingUnsequencedGroup)
  349. {
  350. peer -> incomingUnsequencedGroup = unsequencedGroup - index;
  351. memset (peer -> unsequencedWindow, 0, sizeof (peer -> unsequencedWindow));
  352. }
  353. else
  354. if (peer -> unsequencedWindow [index / 32] & (1 << (index % 32)))
  355. return 0;
  356. packet = enet_packet_create ((const enet_uint8 *) command + sizeof (ENetProtocolSendUnsequenced),
  357. dataLength,
  358. ENET_PACKET_FLAG_UNSEQUENCED);
  359. if (packet == NULL ||
  360. enet_peer_queue_incoming_command (peer, command, packet, 0) == NULL)
  361. return -1;
  362. peer -> unsequencedWindow [index / 32] |= 1 << (index % 32);
  363. return 0;
  364. }
  365. static int
  366. enet_protocol_handle_send_unreliable (ENetHost * host, ENetPeer * peer, const ENetProtocol * command, enet_uint8 ** currentData)
  367. {
  368. ENetPacket * packet;
  369. size_t dataLength;
  370. if (command -> header.channelID >= peer -> channelCount ||
  371. (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER))
  372. return -1;
  373. dataLength = ENET_NET_TO_HOST_16 (command -> sendUnreliable.dataLength);
  374. * currentData += dataLength;
  375. if (* currentData > & host -> receivedData [host -> receivedDataLength])
  376. return -1;
  377. packet = enet_packet_create ((const enet_uint8 *) command + sizeof (ENetProtocolSendUnreliable),
  378. dataLength,
  379. 0);
  380. if (packet == NULL ||
  381. enet_peer_queue_incoming_command (peer, command, packet, 0) == NULL)
  382. return -1;
  383. return 0;
  384. }
  385. static int
  386. enet_protocol_handle_send_fragment (ENetHost * host, ENetPeer * peer, const ENetProtocol * command, enet_uint8 ** currentData)
  387. {
  388. enet_uint32 fragmentNumber,
  389. fragmentCount,
  390. fragmentOffset,
  391. fragmentLength,
  392. startSequenceNumber,
  393. totalLength;
  394. ENetChannel * channel;
  395. enet_uint16 startWindow, currentWindow;
  396. ENetListIterator currentCommand;
  397. ENetIncomingCommand * startCommand = NULL;
  398. if (command -> header.channelID >= peer -> channelCount ||
  399. (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER))
  400. return -1;
  401. fragmentLength = ENET_NET_TO_HOST_16 (command -> sendFragment.dataLength);
  402. * currentData += fragmentLength;
  403. if (* currentData > & host -> receivedData [host -> receivedDataLength])
  404. return -1;
  405. channel = & peer -> channels [command -> header.channelID];
  406. startSequenceNumber = ENET_NET_TO_HOST_16 (command -> sendFragment.startSequenceNumber);
  407. startWindow = startSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE;
  408. currentWindow = channel -> incomingReliableSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE;
  409. if (startSequenceNumber < channel -> incomingReliableSequenceNumber)
  410. startWindow += ENET_PEER_RELIABLE_WINDOWS;
  411. if (startWindow < currentWindow || startWindow >= currentWindow + ENET_PEER_FREE_RELIABLE_WINDOWS - 1)
  412. return 0;
  413. fragmentNumber = ENET_NET_TO_HOST_32 (command -> sendFragment.fragmentNumber);
  414. fragmentCount = ENET_NET_TO_HOST_32 (command -> sendFragment.fragmentCount);
  415. fragmentOffset = ENET_NET_TO_HOST_32 (command -> sendFragment.fragmentOffset);
  416. totalLength = ENET_NET_TO_HOST_32 (command -> sendFragment.totalLength);
  417. if (fragmentOffset >= totalLength ||
  418. fragmentOffset + fragmentLength > totalLength ||
  419. fragmentNumber >= fragmentCount)
  420. return -1;
  421. for (currentCommand = enet_list_previous (enet_list_end (& channel -> incomingReliableCommands));
  422. currentCommand != enet_list_end (& channel -> incomingReliableCommands);
  423. currentCommand = enet_list_previous (currentCommand))
  424. {
  425. ENetIncomingCommand * incomingCommand = (ENetIncomingCommand *) currentCommand;
  426. if (startSequenceNumber >= channel -> incomingReliableSequenceNumber)
  427. {
  428. if (incomingCommand -> reliableSequenceNumber < channel -> incomingReliableSequenceNumber)
  429. continue;
  430. }
  431. else
  432. if (incomingCommand -> reliableSequenceNumber >= channel -> incomingReliableSequenceNumber)
  433. break;
  434. if (incomingCommand -> reliableSequenceNumber <= startSequenceNumber)
  435. {
  436. if (incomingCommand -> reliableSequenceNumber < startSequenceNumber)
  437. break;
  438. if ((incomingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK) != ENET_PROTOCOL_COMMAND_SEND_FRAGMENT ||
  439. totalLength != incomingCommand -> packet -> dataLength ||
  440. fragmentCount != incomingCommand -> fragmentCount)
  441. return -1;
  442. startCommand = incomingCommand;
  443. break;
  444. }
  445. }
  446. if (startCommand == NULL)
  447. {
  448. ENetProtocol hostCommand = * command;
  449. ENetPacket * packet = enet_packet_create (NULL, totalLength, ENET_PACKET_FLAG_RELIABLE);
  450. if (packet == NULL)
  451. return -1;
  452. hostCommand.header.reliableSequenceNumber = startSequenceNumber;
  453. hostCommand.sendFragment.startSequenceNumber = startSequenceNumber;
  454. hostCommand.sendFragment.dataLength = fragmentLength;
  455. hostCommand.sendFragment.fragmentNumber = fragmentNumber;
  456. hostCommand.sendFragment.fragmentCount = fragmentCount;
  457. hostCommand.sendFragment.fragmentOffset = fragmentOffset;
  458. hostCommand.sendFragment.totalLength = totalLength;
  459. startCommand = enet_peer_queue_incoming_command (peer, & hostCommand, packet, fragmentCount);
  460. if (startCommand == NULL)
  461. return -1;
  462. }
  463. if ((startCommand -> fragments [fragmentNumber / 32] & (1 << (fragmentNumber % 32))) == 0)
  464. {
  465. -- startCommand -> fragmentsRemaining;
  466. startCommand -> fragments [fragmentNumber / 32] |= (1 << (fragmentNumber % 32));
  467. if (fragmentOffset + fragmentLength > startCommand -> packet -> dataLength)
  468. fragmentLength = startCommand -> packet -> dataLength - fragmentOffset;
  469. memcpy (startCommand -> packet -> data + fragmentOffset,
  470. (enet_uint8 *) command + sizeof (ENetProtocolSendFragment),
  471. fragmentLength);
  472. }
  473. return 0;
  474. }
  475. static int
  476. enet_protocol_handle_ping (ENetHost * host, ENetPeer * peer, const ENetProtocol * command)
  477. {
  478. return 0;
  479. }
  480. static int
  481. enet_protocol_handle_bandwidth_limit (ENetHost * host, ENetPeer * peer, const ENetProtocol * command)
  482. {
  483. peer -> incomingBandwidth = ENET_NET_TO_HOST_32 (command -> bandwidthLimit.incomingBandwidth);
  484. peer -> outgoingBandwidth = ENET_NET_TO_HOST_32 (command -> bandwidthLimit.outgoingBandwidth);
  485. if (peer -> incomingBandwidth == 0 && host -> outgoingBandwidth == 0)
  486. peer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  487. else
  488. peer -> windowSize = (ENET_MIN (peer -> incomingBandwidth, host -> outgoingBandwidth) /
  489. ENET_PEER_WINDOW_SIZE_SCALE) * ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  490. if (peer -> windowSize < ENET_PROTOCOL_MINIMUM_WINDOW_SIZE)
  491. peer -> windowSize = ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  492. else
  493. if (peer -> windowSize > ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE)
  494. peer -> windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  495. return 0;
  496. }
  497. static int
  498. enet_protocol_handle_throttle_configure (ENetHost * host, ENetPeer * peer, const ENetProtocol * command)
  499. {
  500. peer -> packetThrottleInterval = ENET_NET_TO_HOST_32 (command -> throttleConfigure.packetThrottleInterval);
  501. peer -> packetThrottleAcceleration = ENET_NET_TO_HOST_32 (command -> throttleConfigure.packetThrottleAcceleration);
  502. peer -> packetThrottleDeceleration = ENET_NET_TO_HOST_32 (command -> throttleConfigure.packetThrottleDeceleration);
  503. return 0;
  504. }
  505. static int
  506. enet_protocol_handle_disconnect (ENetHost * host, ENetPeer * peer, const ENetProtocol * command)
  507. {
  508. if (peer -> state == ENET_PEER_STATE_ZOMBIE || peer -> state == ENET_PEER_STATE_ACKNOWLEDGING_DISCONNECT)
  509. return 0;
  510. enet_peer_reset_queues (peer);
  511. if (peer -> state == ENET_PEER_STATE_CONNECTION_SUCCEEDED)
  512. enet_protocol_dispatch_state (host, peer, ENET_PEER_STATE_ZOMBIE);
  513. else
  514. if (peer -> state != ENET_PEER_STATE_CONNECTED && peer -> state != ENET_PEER_STATE_DISCONNECT_LATER)
  515. {
  516. if (peer -> state == ENET_PEER_STATE_CONNECTION_PENDING) host -> recalculateBandwidthLimits = 1;
  517. enet_peer_reset (peer);
  518. }
  519. else
  520. if (command -> header.command & ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE)
  521. peer -> state = ENET_PEER_STATE_ACKNOWLEDGING_DISCONNECT;
  522. else
  523. enet_protocol_dispatch_state (host, peer, ENET_PEER_STATE_ZOMBIE);
  524. peer -> disconnectData = ENET_NET_TO_HOST_32 (command -> disconnect.data);
  525. return 0;
  526. }
  527. static int
  528. enet_protocol_handle_acknowledge (ENetHost * host, ENetEvent * event, ENetPeer * peer, const ENetProtocol * command)
  529. {
  530. enet_uint32 roundTripTime,
  531. receivedSentTime,
  532. receivedReliableSequenceNumber;
  533. ENetProtocolCommand commandNumber;
  534. receivedSentTime = ENET_NET_TO_HOST_16 (command -> acknowledge.receivedSentTime);
  535. receivedSentTime |= host -> serviceTime & 0xFFFF0000;
  536. if ((receivedSentTime & 0x8000) > (host -> serviceTime & 0x8000))
  537. receivedSentTime -= 0x10000;
  538. if (ENET_TIME_LESS (host -> serviceTime, receivedSentTime))
  539. return 0;
  540. peer -> lastReceiveTime = host -> serviceTime;
  541. peer -> earliestTimeout = 0;
  542. roundTripTime = ENET_TIME_DIFFERENCE (host -> serviceTime, receivedSentTime);
  543. enet_peer_throttle (peer, roundTripTime);
  544. peer -> roundTripTimeVariance -= peer -> roundTripTimeVariance / 4;
  545. if (roundTripTime >= peer -> roundTripTime)
  546. {
  547. peer -> roundTripTime += (roundTripTime - peer -> roundTripTime) / 8;
  548. peer -> roundTripTimeVariance += (roundTripTime - peer -> roundTripTime) / 4;
  549. }
  550. else
  551. {
  552. peer -> roundTripTime -= (peer -> roundTripTime - roundTripTime) / 8;
  553. peer -> roundTripTimeVariance += (peer -> roundTripTime - roundTripTime) / 4;
  554. }
  555. if (peer -> roundTripTime < peer -> lowestRoundTripTime)
  556. peer -> lowestRoundTripTime = peer -> roundTripTime;
  557. if (peer -> roundTripTimeVariance > peer -> highestRoundTripTimeVariance)
  558. peer -> highestRoundTripTimeVariance = peer -> roundTripTimeVariance;
  559. if (peer -> packetThrottleEpoch == 0 ||
  560. ENET_TIME_DIFFERENCE (host -> serviceTime, peer -> packetThrottleEpoch) >= peer -> packetThrottleInterval)
  561. {
  562. peer -> lastRoundTripTime = peer -> lowestRoundTripTime;
  563. peer -> lastRoundTripTimeVariance = peer -> highestRoundTripTimeVariance;
  564. peer -> lowestRoundTripTime = peer -> roundTripTime;
  565. peer -> highestRoundTripTimeVariance = peer -> roundTripTimeVariance;
  566. peer -> packetThrottleEpoch = host -> serviceTime;
  567. }
  568. receivedReliableSequenceNumber = ENET_NET_TO_HOST_16 (command -> acknowledge.receivedReliableSequenceNumber);
  569. commandNumber = enet_protocol_remove_sent_reliable_command (peer, receivedReliableSequenceNumber, command -> header.channelID);
  570. switch (peer -> state)
  571. {
  572. case ENET_PEER_STATE_ACKNOWLEDGING_CONNECT:
  573. if (commandNumber != ENET_PROTOCOL_COMMAND_VERIFY_CONNECT)
  574. return -1;
  575. enet_protocol_notify_connect (host, peer, event);
  576. break;
  577. case ENET_PEER_STATE_DISCONNECTING:
  578. if (commandNumber != ENET_PROTOCOL_COMMAND_DISCONNECT)
  579. return -1;
  580. enet_protocol_notify_disconnect (host, peer, event);
  581. break;
  582. case ENET_PEER_STATE_DISCONNECT_LATER:
  583. if (enet_list_empty (& peer -> outgoingReliableCommands) &&
  584. enet_list_empty (& peer -> outgoingUnreliableCommands) &&
  585. enet_list_empty (& peer -> sentReliableCommands))
  586. enet_peer_disconnect (peer, peer -> disconnectData);
  587. break;
  588. }
  589. return 0;
  590. }
  591. static int
  592. enet_protocol_handle_verify_connect (ENetHost * host, ENetEvent * event, ENetPeer * peer, const ENetProtocol * command)
  593. {
  594. enet_uint16 mtu;
  595. enet_uint32 windowSize;
  596. size_t channelCount;
  597. if (peer -> state != ENET_PEER_STATE_CONNECTING)
  598. return 0;
  599. channelCount = ENET_NET_TO_HOST_32 (command -> verifyConnect.channelCount);
  600. if (channelCount < ENET_PROTOCOL_MINIMUM_CHANNEL_COUNT || channelCount > ENET_PROTOCOL_MAXIMUM_CHANNEL_COUNT ||
  601. ENET_NET_TO_HOST_32 (command -> verifyConnect.packetThrottleInterval) != peer -> packetThrottleInterval ||
  602. ENET_NET_TO_HOST_32 (command -> verifyConnect.packetThrottleAcceleration) != peer -> packetThrottleAcceleration ||
  603. ENET_NET_TO_HOST_32 (command -> verifyConnect.packetThrottleDeceleration) != peer -> packetThrottleDeceleration)
  604. {
  605. enet_protocol_dispatch_state (host, peer, ENET_PEER_STATE_ZOMBIE);
  606. return -1;
  607. }
  608. enet_protocol_remove_sent_reliable_command (peer, 1, 0xFF);
  609. if (channelCount < peer -> channelCount)
  610. peer -> channelCount = channelCount;
  611. peer -> outgoingPeerID = ENET_NET_TO_HOST_16 (command -> verifyConnect.outgoingPeerID);
  612. mtu = ENET_NET_TO_HOST_16 (command -> verifyConnect.mtu);
  613. if (mtu < ENET_PROTOCOL_MINIMUM_MTU)
  614. mtu = ENET_PROTOCOL_MINIMUM_MTU;
  615. else
  616. if (mtu > ENET_PROTOCOL_MAXIMUM_MTU)
  617. mtu = ENET_PROTOCOL_MAXIMUM_MTU;
  618. if (mtu < peer -> mtu)
  619. peer -> mtu = mtu;
  620. windowSize = ENET_NET_TO_HOST_32 (command -> verifyConnect.windowSize);
  621. if (windowSize < ENET_PROTOCOL_MINIMUM_WINDOW_SIZE)
  622. windowSize = ENET_PROTOCOL_MINIMUM_WINDOW_SIZE;
  623. if (windowSize > ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE)
  624. windowSize = ENET_PROTOCOL_MAXIMUM_WINDOW_SIZE;
  625. if (windowSize < peer -> windowSize)
  626. peer -> windowSize = windowSize;
  627. peer -> incomingBandwidth = ENET_NET_TO_HOST_32 (command -> verifyConnect.incomingBandwidth);
  628. peer -> outgoingBandwidth = ENET_NET_TO_HOST_32 (command -> verifyConnect.outgoingBandwidth);
  629. enet_protocol_notify_connect (host, peer, event);
  630. return 0;
  631. }
  632. static int
  633. enet_protocol_handle_incoming_commands (ENetHost * host, ENetEvent * event)
  634. {
  635. ENetProtocolHeader * header;
  636. ENetProtocol * command;
  637. ENetPeer * peer;
  638. enet_uint8 * currentData;
  639. size_t headerSize;
  640. enet_uint16 peerID, flags;
  641. if (host -> receivedDataLength < sizeof (ENetProtocolHeader))
  642. return 0;
  643. header = (ENetProtocolHeader *) host -> receivedData;
  644. peerID = ENET_NET_TO_HOST_16 (header -> peerID);
  645. flags = peerID & ENET_PROTOCOL_HEADER_FLAG_MASK;
  646. peerID &= ~ ENET_PROTOCOL_HEADER_FLAG_MASK;
  647. if (peerID == ENET_PROTOCOL_MAXIMUM_PEER_ID)
  648. peer = NULL;
  649. else
  650. if (peerID >= host -> peerCount)
  651. return 0;
  652. else
  653. {
  654. peer = & host -> peers [peerID];
  655. if (peer -> state == ENET_PEER_STATE_DISCONNECTED ||
  656. peer -> state == ENET_PEER_STATE_ZOMBIE ||
  657. (host -> receivedAddress.host != peer -> address.host &&
  658. peer -> address.host != ENET_HOST_BROADCAST))
  659. return 0;
  660. if (host -> checksum != NULL)
  661. {
  662. enet_uint32 checksum = header -> checksum;
  663. ENetBuffer buffer;
  664. header -> checksum = peer -> sessionID;
  665. buffer.data = host -> receivedData;
  666. buffer.dataLength = host -> receivedDataLength;
  667. if (host -> checksum (& buffer, 1) != checksum)
  668. return 0;
  669. }
  670. else
  671. if (header -> checksum != peer -> sessionID)
  672. return 0;
  673. peer -> address.host = host -> receivedAddress.host;
  674. peer -> address.port = host -> receivedAddress.port;
  675. peer -> incomingDataTotal += host -> receivedDataLength;
  676. }
  677. headerSize = (flags & ENET_PROTOCOL_HEADER_FLAG_SENT_TIME ? sizeof (ENetProtocolHeader) : (size_t) & ((ENetProtocolHeader *) 0) -> sentTime);
  678. currentData = host -> receivedData + headerSize;
  679. while (currentData < & host -> receivedData [host -> receivedDataLength])
  680. {
  681. enet_uint8 commandNumber;
  682. size_t commandSize;
  683. command = (ENetProtocol *) currentData;
  684. if (currentData + sizeof (ENetProtocolCommandHeader) > & host -> receivedData [host -> receivedDataLength])
  685. break;
  686. commandNumber = command -> header.command & ENET_PROTOCOL_COMMAND_MASK;
  687. if (commandNumber >= ENET_PROTOCOL_COMMAND_COUNT)
  688. break;
  689. commandSize = commandSizes [commandNumber];
  690. if (commandSize == 0 || currentData + commandSize > & host -> receivedData [host -> receivedDataLength])
  691. break;
  692. currentData += commandSize;
  693. if (peer == NULL && commandNumber != ENET_PROTOCOL_COMMAND_CONNECT)
  694. break;
  695. command -> header.reliableSequenceNumber = ENET_NET_TO_HOST_16 (command -> header.reliableSequenceNumber);
  696. switch (command -> header.command & ENET_PROTOCOL_COMMAND_MASK)
  697. {
  698. case ENET_PROTOCOL_COMMAND_ACKNOWLEDGE:
  699. if (enet_protocol_handle_acknowledge (host, event, peer, command))
  700. goto commandError;
  701. break;
  702. case ENET_PROTOCOL_COMMAND_CONNECT:
  703. peer = enet_protocol_handle_connect (host, header, command);
  704. if (peer == NULL)
  705. goto commandError;
  706. break;
  707. case ENET_PROTOCOL_COMMAND_VERIFY_CONNECT:
  708. if (enet_protocol_handle_verify_connect (host, event, peer, command))
  709. goto commandError;
  710. break;
  711. case ENET_PROTOCOL_COMMAND_DISCONNECT:
  712. if (enet_protocol_handle_disconnect (host, peer, command))
  713. goto commandError;
  714. break;
  715. case ENET_PROTOCOL_COMMAND_PING:
  716. if (enet_protocol_handle_ping (host, peer, command))
  717. goto commandError;
  718. break;
  719. case ENET_PROTOCOL_COMMAND_SEND_RELIABLE:
  720. if (enet_protocol_handle_send_reliable (host, peer, command, & currentData))
  721. goto commandError;
  722. break;
  723. case ENET_PROTOCOL_COMMAND_SEND_UNRELIABLE:
  724. if (enet_protocol_handle_send_unreliable (host, peer, command, & currentData))
  725. goto commandError;
  726. break;
  727. case ENET_PROTOCOL_COMMAND_SEND_UNSEQUENCED:
  728. if (enet_protocol_handle_send_unsequenced (host, peer, command, & currentData))
  729. goto commandError;
  730. break;
  731. case ENET_PROTOCOL_COMMAND_SEND_FRAGMENT:
  732. if (enet_protocol_handle_send_fragment (host, peer, command, & currentData))
  733. goto commandError;
  734. break;
  735. case ENET_PROTOCOL_COMMAND_BANDWIDTH_LIMIT:
  736. if (enet_protocol_handle_bandwidth_limit (host, peer, command))
  737. goto commandError;
  738. break;
  739. case ENET_PROTOCOL_COMMAND_THROTTLE_CONFIGURE:
  740. if (enet_protocol_handle_throttle_configure (host, peer, command))
  741. goto commandError;
  742. break;
  743. default:
  744. goto commandError;
  745. }
  746. if (peer != NULL &&
  747. (command -> header.command & ENET_PROTOCOL_COMMAND_FLAG_ACKNOWLEDGE) != 0)
  748. {
  749. enet_uint16 sentTime;
  750. if (! (flags & ENET_PROTOCOL_HEADER_FLAG_SENT_TIME))
  751. break;
  752. sentTime = ENET_NET_TO_HOST_16 (header -> sentTime);
  753. switch (peer -> state)
  754. {
  755. case ENET_PEER_STATE_DISCONNECTING:
  756. case ENET_PEER_STATE_ACKNOWLEDGING_CONNECT:
  757. break;
  758. case ENET_PEER_STATE_ACKNOWLEDGING_DISCONNECT:
  759. if ((command -> header.command & ENET_PROTOCOL_COMMAND_MASK) == ENET_PROTOCOL_COMMAND_DISCONNECT)
  760. enet_peer_queue_acknowledgement (peer, command, sentTime);
  761. break;
  762. default:
  763. enet_peer_queue_acknowledgement (peer, command, sentTime);
  764. break;
  765. }
  766. }
  767. }
  768. commandError:
  769. if (event != NULL && event -> type != ENET_EVENT_TYPE_NONE)
  770. return 1;
  771. return 0;
  772. }
  773. static int
  774. enet_protocol_receive_incoming_commands (ENetHost * host, ENetEvent * event)
  775. {
  776. for (;;)
  777. {
  778. int receivedLength;
  779. ENetBuffer buffer;
  780. buffer.data = host -> receivedData;
  781. buffer.dataLength = sizeof (host -> receivedData);
  782. receivedLength = enet_socket_receive (host -> socket,
  783. & host -> receivedAddress,
  784. & buffer,
  785. 1);
  786. if (receivedLength < 0)
  787. return -1;
  788. if (receivedLength == 0)
  789. return 0;
  790. host -> receivedDataLength = receivedLength;
  791. host -> totalReceivedData += receivedLength;
  792. host -> totalReceivedPackets ++;
  793. switch (enet_protocol_handle_incoming_commands (host, event))
  794. {
  795. case 1:
  796. return 1;
  797. case -1:
  798. return -1;
  799. default:
  800. break;
  801. }
  802. }
  803. return -1;
  804. }
  805. static void
  806. enet_protocol_send_acknowledgements (ENetHost * host, ENetPeer * peer)
  807. {
  808. ENetProtocol * command = & host -> commands [host -> commandCount];
  809. ENetBuffer * buffer = & host -> buffers [host -> bufferCount];
  810. ENetAcknowledgement * acknowledgement;
  811. ENetListIterator currentAcknowledgement;
  812. currentAcknowledgement = enet_list_begin (& peer -> acknowledgements);
  813. while (currentAcknowledgement != enet_list_end (& peer -> acknowledgements))
  814. {
  815. if (command >= & host -> commands [sizeof (host -> commands) / sizeof (ENetProtocol)] ||
  816. buffer >= & host -> buffers [sizeof (host -> buffers) / sizeof (ENetBuffer)] ||
  817. peer -> mtu - host -> packetSize < sizeof (ENetProtocolAcknowledge))
  818. {
  819. host -> continueSending = 1;
  820. break;
  821. }
  822. acknowledgement = (ENetAcknowledgement *) currentAcknowledgement;
  823. currentAcknowledgement = enet_list_next (currentAcknowledgement);
  824. buffer -> data = command;
  825. buffer -> dataLength = sizeof (ENetProtocolAcknowledge);
  826. host -> packetSize += buffer -> dataLength;
  827. command -> header.command = ENET_PROTOCOL_COMMAND_ACKNOWLEDGE;
  828. command -> header.channelID = acknowledgement -> command.header.channelID;
  829. command -> acknowledge.receivedReliableSequenceNumber = ENET_HOST_TO_NET_16 (acknowledgement -> command.header.reliableSequenceNumber);
  830. command -> acknowledge.receivedSentTime = ENET_HOST_TO_NET_16 (acknowledgement -> sentTime);
  831. if ((acknowledgement -> command.header.command & ENET_PROTOCOL_COMMAND_MASK) == ENET_PROTOCOL_COMMAND_DISCONNECT)
  832. enet_protocol_dispatch_state (host, peer, ENET_PEER_STATE_ZOMBIE);
  833. enet_list_remove (& acknowledgement -> acknowledgementList);
  834. enet_free (acknowledgement);
  835. ++ command;
  836. ++ buffer;
  837. }
  838. host -> commandCount = command - host -> commands;
  839. host -> bufferCount = buffer - host -> buffers;
  840. }
  841. static void
  842. enet_protocol_send_unreliable_outgoing_commands (ENetHost * host, ENetPeer * peer)
  843. {
  844. ENetProtocol * command = & host -> commands [host -> commandCount];
  845. ENetBuffer * buffer = & host -> buffers [host -> bufferCount];
  846. ENetOutgoingCommand * outgoingCommand;
  847. ENetListIterator currentCommand;
  848. currentCommand = enet_list_begin (& peer -> outgoingUnreliableCommands);
  849. while (currentCommand != enet_list_end (& peer -> outgoingUnreliableCommands))
  850. {
  851. size_t commandSize;
  852. outgoingCommand = (ENetOutgoingCommand *) currentCommand;
  853. commandSize = commandSizes [outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK];
  854. if (command >= & host -> commands [sizeof (host -> commands) / sizeof (ENetProtocol)] ||
  855. buffer + 1 >= & host -> buffers [sizeof (host -> buffers) / sizeof (ENetBuffer)] ||
  856. peer -> mtu - host -> packetSize < commandSize ||
  857. (outgoingCommand -> packet != NULL &&
  858. peer -> mtu - host -> packetSize < commandSize + outgoingCommand -> packet -> dataLength))
  859. {
  860. host -> continueSending = 1;
  861. break;
  862. }
  863. currentCommand = enet_list_next (currentCommand);
  864. if (outgoingCommand -> packet != NULL)
  865. {
  866. peer -> packetThrottleCounter += ENET_PEER_PACKET_THROTTLE_COUNTER;
  867. peer -> packetThrottleCounter %= ENET_PEER_PACKET_THROTTLE_SCALE;
  868. if (peer -> packetThrottleCounter > peer -> packetThrottle)
  869. {
  870. -- outgoingCommand -> packet -> referenceCount;
  871. if (outgoingCommand -> packet -> referenceCount == 0)
  872. enet_packet_destroy (outgoingCommand -> packet);
  873. enet_list_remove (& outgoingCommand -> outgoingCommandList);
  874. enet_free (outgoingCommand);
  875. continue;
  876. }
  877. }
  878. buffer -> data = command;
  879. buffer -> dataLength = commandSize;
  880. host -> packetSize += buffer -> dataLength;
  881. * command = outgoingCommand -> command;
  882. enet_list_remove (& outgoingCommand -> outgoingCommandList);
  883. if (outgoingCommand -> packet != NULL)
  884. {
  885. ++ buffer;
  886. buffer -> data = outgoingCommand -> packet -> data;
  887. buffer -> dataLength = outgoingCommand -> packet -> dataLength;
  888. host -> packetSize += buffer -> dataLength;
  889. enet_list_insert (enet_list_end (& peer -> sentUnreliableCommands), outgoingCommand);
  890. }
  891. else
  892. enet_free (outgoingCommand);
  893. ++ command;
  894. ++ buffer;
  895. }
  896. host -> commandCount = command - host -> commands;
  897. host -> bufferCount = buffer - host -> buffers;
  898. if (peer -> state == ENET_PEER_STATE_DISCONNECT_LATER &&
  899. enet_list_empty (& peer -> outgoingReliableCommands) &&
  900. enet_list_empty (& peer -> outgoingUnreliableCommands) &&
  901. enet_list_empty (& peer -> sentReliableCommands))
  902. enet_peer_disconnect (peer, peer -> disconnectData);
  903. }
  904. static int
  905. enet_protocol_check_timeouts (ENetHost * host, ENetPeer * peer, ENetEvent * event)
  906. {
  907. ENetOutgoingCommand * outgoingCommand;
  908. ENetListIterator currentCommand, insertPosition;
  909. currentCommand = enet_list_begin (& peer -> sentReliableCommands);
  910. insertPosition = enet_list_begin (& peer -> outgoingReliableCommands);
  911. while (currentCommand != enet_list_end (& peer -> sentReliableCommands))
  912. {
  913. outgoingCommand = (ENetOutgoingCommand *) currentCommand;
  914. currentCommand = enet_list_next (currentCommand);
  915. if (ENET_TIME_DIFFERENCE (host -> serviceTime, outgoingCommand -> sentTime) < outgoingCommand -> roundTripTimeout)
  916. continue;
  917. if (peer -> earliestTimeout == 0 ||
  918. ENET_TIME_LESS (outgoingCommand -> sentTime, peer -> earliestTimeout))
  919. peer -> earliestTimeout = outgoingCommand -> sentTime;
  920. if (peer -> earliestTimeout != 0 &&
  921. (ENET_TIME_DIFFERENCE (host -> serviceTime, peer -> earliestTimeout) >= ENET_PEER_TIMEOUT_MAXIMUM ||
  922. (outgoingCommand -> roundTripTimeout >= outgoingCommand -> roundTripTimeoutLimit &&
  923. ENET_TIME_DIFFERENCE (host -> serviceTime, peer -> earliestTimeout) >= ENET_PEER_TIMEOUT_MINIMUM)))
  924. {
  925. enet_protocol_notify_disconnect (host, peer, event);
  926. return 1;
  927. }
  928. if (outgoingCommand -> packet != NULL)
  929. peer -> reliableDataInTransit -= outgoingCommand -> fragmentLength;
  930. ++ peer -> packetsLost;
  931. outgoingCommand -> roundTripTimeout *= 2;
  932. enet_list_insert (insertPosition, enet_list_remove (& outgoingCommand -> outgoingCommandList));
  933. if (currentCommand == enet_list_begin (& peer -> sentReliableCommands) &&
  934. ! enet_list_empty (& peer -> sentReliableCommands))
  935. {
  936. outgoingCommand = (ENetOutgoingCommand *) currentCommand;
  937. peer -> nextTimeout = outgoingCommand -> sentTime + outgoingCommand -> roundTripTimeout;
  938. }
  939. }
  940. return 0;
  941. }
  942. static void
  943. enet_protocol_send_reliable_outgoing_commands (ENetHost * host, ENetPeer * peer)
  944. {
  945. ENetProtocol * command = & host -> commands [host -> commandCount];
  946. ENetBuffer * buffer = & host -> buffers [host -> bufferCount];
  947. ENetOutgoingCommand * outgoingCommand;
  948. ENetListIterator currentCommand;
  949. ENetChannel *channel;
  950. enet_uint16 reliableWindow;
  951. size_t commandSize;
  952. currentCommand = enet_list_begin (& peer -> outgoingReliableCommands);
  953. while (currentCommand != enet_list_end (& peer -> outgoingReliableCommands))
  954. {
  955. outgoingCommand = (ENetOutgoingCommand *) currentCommand;
  956. channel = outgoingCommand -> command.header.channelID < peer -> channelCount ? & peer -> channels [outgoingCommand -> command.header.channelID] : NULL;
  957. reliableWindow = outgoingCommand -> reliableSequenceNumber / ENET_PEER_RELIABLE_WINDOW_SIZE;
  958. if (channel != NULL &&
  959. outgoingCommand -> sendAttempts < 1 &&
  960. ! (outgoingCommand -> reliableSequenceNumber % ENET_PEER_RELIABLE_WINDOW_SIZE) &&
  961. (channel -> reliableWindows [(reliableWindow + ENET_PEER_RELIABLE_WINDOWS - 1) % ENET_PEER_RELIABLE_WINDOWS] >= ENET_PEER_RELIABLE_WINDOW_SIZE ||
  962. channel -> usedReliableWindows & ((((1 << ENET_PEER_FREE_RELIABLE_WINDOWS) - 1) << reliableWindow) |
  963. (((1 << ENET_PEER_FREE_RELIABLE_WINDOWS) - 1) >> (ENET_PEER_RELIABLE_WINDOW_SIZE - reliableWindow)))))
  964. break;
  965. commandSize = commandSizes [outgoingCommand -> command.header.command & ENET_PROTOCOL_COMMAND_MASK];
  966. if (command >= & host -> commands [sizeof (host -> commands) / sizeof (ENetProtocol)] ||
  967. buffer + 1 >= & host -> buffers [sizeof (host -> buffers) / sizeof (ENetBuffer)] ||
  968. peer -> mtu - host -> packetSize < commandSize)
  969. {
  970. host -> continueSending = 1;
  971. break;
  972. }
  973. if (outgoingCommand -> packet != NULL)
  974. {
  975. if (peer -> reliableDataInTransit + outgoingCommand -> fragmentLength > peer -> windowSize)
  976. break;
  977. if ((enet_uint16) (peer -> mtu - host -> packetSize) < (enet_uint16) (commandSize + outgoingCommand -> fragmentLength))
  978. {
  979. host -> continueSending = 1;
  980. break;
  981. }
  982. }
  983. currentCommand = enet_list_next (currentCommand);
  984. if (channel != NULL && outgoingCommand -> sendAttempts < 1)
  985. {
  986. channel -> usedReliableWindows |= 1 << reliableWindow;
  987. ++ channel -> reliableWindows [reliableWindow];
  988. }
  989. ++ outgoingCommand -> sendAttempts;
  990. if (outgoingCommand -> roundTripTimeout == 0)
  991. {
  992. outgoingCommand -> roundTripTimeout = peer -> roundTripTime + 4 * peer -> roundTripTimeVariance;
  993. outgoingCommand -> roundTripTimeoutLimit = ENET_PEER_TIMEOUT_LIMIT * outgoingCommand -> roundTripTimeout;
  994. }
  995. if (enet_list_empty (& peer -> sentReliableCommands))
  996. peer -> nextTimeout = host -> serviceTime + outgoingCommand -> roundTripTimeout;
  997. enet_list_insert (enet_list_end (& peer -> sentReliableCommands),
  998. enet_list_remove (& outgoingCommand -> outgoingCommandList));
  999. outgoingCommand -> sentTime = host -> serviceTime;
  1000. buffer -> data = command;
  1001. buffer -> dataLength = commandSize;
  1002. host -> packetSize += buffer -> dataLength;
  1003. host -> headerFlags |= ENET_PROTOCOL_HEADER_FLAG_SENT_TIME;
  1004. * command = outgoingCommand -> command;
  1005. if (outgoingCommand -> packet != NULL)
  1006. {
  1007. ++ buffer;
  1008. buffer -> data = outgoingCommand -> packet -> data + outgoingCommand -> fragmentOffset;
  1009. buffer -> dataLength = outgoingCommand -> fragmentLength;
  1010. host -> packetSize += outgoingCommand -> fragmentLength;
  1011. peer -> reliableDataInTransit += outgoingCommand -> fragmentLength;
  1012. }
  1013. ++ peer -> packetsSent;
  1014. ++ command;
  1015. ++ buffer;
  1016. }
  1017. host -> commandCount = command - host -> commands;
  1018. host -> bufferCount = buffer - host -> buffers;
  1019. }
  1020. static int
  1021. enet_protocol_send_outgoing_commands (ENetHost * host, ENetEvent * event, int checkForTimeouts)
  1022. {
  1023. ENetProtocolHeader header;
  1024. ENetPeer * currentPeer;
  1025. int sentLength;
  1026. host -> continueSending = 1;
  1027. while (host -> continueSending)
  1028. for (host -> continueSending = 0,
  1029. currentPeer = host -> peers;
  1030. currentPeer < & host -> peers [host -> peerCount];
  1031. ++ currentPeer)
  1032. {
  1033. if (currentPeer -> state == ENET_PEER_STATE_DISCONNECTED ||
  1034. currentPeer -> state == ENET_PEER_STATE_ZOMBIE)
  1035. continue;
  1036. host -> headerFlags = 0;
  1037. host -> commandCount = 0;
  1038. host -> bufferCount = 1;
  1039. host -> packetSize = sizeof (ENetProtocolHeader);
  1040. if (! enet_list_empty (& currentPeer -> acknowledgements))
  1041. enet_protocol_send_acknowledgements (host, currentPeer);
  1042. if (checkForTimeouts != 0 &&
  1043. ! enet_list_empty (& currentPeer -> sentReliableCommands) &&
  1044. ENET_TIME_GREATER_EQUAL (host -> serviceTime, currentPeer -> nextTimeout) &&
  1045. enet_protocol_check_timeouts (host, currentPeer, event) == 1)
  1046. return 1;
  1047. if (! enet_list_empty (& currentPeer -> outgoingReliableCommands))
  1048. enet_protocol_send_reliable_outgoing_commands (host, currentPeer);
  1049. else
  1050. if (enet_list_empty (& currentPeer -> sentReliableCommands) &&
  1051. ENET_TIME_DIFFERENCE (host -> serviceTime, currentPeer -> lastReceiveTime) >= ENET_PEER_PING_INTERVAL &&
  1052. currentPeer -> mtu - host -> packetSize >= sizeof (ENetProtocolPing))
  1053. {
  1054. enet_peer_ping (currentPeer);
  1055. enet_protocol_send_reliable_outgoing_commands (host, currentPeer);
  1056. }
  1057. if (! enet_list_empty (& currentPeer -> outgoingUnreliableCommands))
  1058. enet_protocol_send_unreliable_outgoing_commands (host, currentPeer);
  1059. if (host -> commandCount == 0)
  1060. continue;
  1061. if (currentPeer -> packetLossEpoch == 0)
  1062. currentPeer -> packetLossEpoch = host -> serviceTime;
  1063. else
  1064. if (ENET_TIME_DIFFERENCE (host -> serviceTime, currentPeer -> packetLossEpoch) >= ENET_PEER_PACKET_LOSS_INTERVAL &&
  1065. currentPeer -> packetsSent > 0)
  1066. {
  1067. enet_uint32 packetLoss = currentPeer -> packetsLost * ENET_PEER_PACKET_LOSS_SCALE / currentPeer -> packetsSent;
  1068. #ifdef ENET_DEBUG
  1069. #ifdef WIN32
  1070. printf (
  1071. #else
  1072. fprintf (stderr,
  1073. #endif
  1074. "peer %u: %f%%+-%f%% packet loss, %u+-%u ms round trip time, %f%% throttle, %u/%u outgoing, %u/%u incoming\n", currentPeer -> incomingPeerID, currentPeer -> packetLoss / (float) ENET_PEER_PACKET_LOSS_SCALE, currentPeer -> packetLossVariance / (float) ENET_PEER_PACKET_LOSS_SCALE, currentPeer -> roundTripTime, currentPeer -> roundTripTimeVariance, currentPeer -> packetThrottle / (float) ENET_PEER_PACKET_THROTTLE_SCALE, enet_list_size (& currentPeer -> outgoingReliableCommands), enet_list_size (& currentPeer -> outgoingUnreliableCommands), currentPeer -> channels != NULL ? enet_list_size (& currentPeer -> channels -> incomingReliableCommands) : 0, currentPeer -> channels != NULL ? enet_list_size (& currentPeer -> channels -> incomingUnreliableCommands) : 0);
  1075. #endif
  1076. currentPeer -> packetLossVariance -= currentPeer -> packetLossVariance / 4;
  1077. if (packetLoss >= currentPeer -> packetLoss)
  1078. {
  1079. currentPeer -> packetLoss += (packetLoss - currentPeer -> packetLoss) / 8;
  1080. currentPeer -> packetLossVariance += (packetLoss - currentPeer -> packetLoss) / 4;
  1081. }
  1082. else
  1083. {
  1084. currentPeer -> packetLoss -= (currentPeer -> packetLoss - packetLoss) / 8;
  1085. currentPeer -> packetLossVariance += (currentPeer -> packetLoss - packetLoss) / 4;
  1086. }
  1087. currentPeer -> packetLossEpoch = host -> serviceTime;
  1088. currentPeer -> packetsSent = 0;
  1089. currentPeer -> packetsLost = 0;
  1090. }
  1091. header.checksum = currentPeer -> sessionID;
  1092. header.peerID = ENET_HOST_TO_NET_16 (currentPeer -> outgoingPeerID | host -> headerFlags);
  1093. host -> buffers -> data = & header;
  1094. if (host -> headerFlags & ENET_PROTOCOL_HEADER_FLAG_SENT_TIME)
  1095. {
  1096. header.sentTime = ENET_HOST_TO_NET_16 (host -> serviceTime & 0xFFFF);
  1097. host -> buffers -> dataLength = sizeof (ENetProtocolHeader);
  1098. }
  1099. else
  1100. host -> buffers -> dataLength = (size_t) & ((ENetProtocolHeader *) 0) -> sentTime;
  1101. if (host -> checksum != NULL)
  1102. header.checksum = host -> checksum (host -> buffers, host -> bufferCount);
  1103. currentPeer -> lastSendTime = host -> serviceTime;
  1104. sentLength = enet_socket_send (host -> socket, & currentPeer -> address, host -> buffers, host -> bufferCount);
  1105. enet_protocol_remove_sent_unreliable_commands (currentPeer);
  1106. if (sentLength < 0)
  1107. return -1;
  1108. host -> totalSentData += sentLength;
  1109. host -> totalSentPackets ++;
  1110. }
  1111. return 0;
  1112. }
  1113. /** Sends any queued packets on the host specified to its designated peers.
  1114. @param host host to flush
  1115. @remarks this function need only be used in circumstances where one wishes to send queued packets earlier than in a call to enet_host_service().
  1116. @ingroup host
  1117. */
  1118. void
  1119. enet_host_flush (ENetHost * host)
  1120. {
  1121. host -> serviceTime = enet_time_get ();
  1122. enet_protocol_send_outgoing_commands (host, NULL, 0);
  1123. }
  1124. /** Checks for any queued events on the host and dispatches one if available.
  1125. @param host host to check for events
  1126. @param event an event structure where event details will be placed if available
  1127. @retval > 0 if an event was dispatched
  1128. @retval 0 if no events are available
  1129. @retval < 0 on failure
  1130. @ingroup host
  1131. */
  1132. int
  1133. enet_host_check_events (ENetHost * host, ENetEvent * event)
  1134. {
  1135. if (event == NULL) return -1;
  1136. event -> type = ENET_EVENT_TYPE_NONE;
  1137. event -> peer = NULL;
  1138. event -> packet = NULL;
  1139. return enet_protocol_dispatch_incoming_commands (host, event);
  1140. }
  1141. /** Waits for events on the host specified and shuttles packets between
  1142. the host and its peers.
  1143. @param host host to service
  1144. @param event an event structure where event details will be placed if one occurs
  1145. if event == NULL then no events will be delivered
  1146. @param timeout number of milliseconds that ENet should wait for events
  1147. @retval > 0 if an event occurred within the specified time limit
  1148. @retval 0 if no event occurred
  1149. @retval < 0 on failure
  1150. @remarks enet_host_service should be called fairly regularly for adequate performance
  1151. @ingroup host
  1152. */
  1153. int
  1154. enet_host_service (ENetHost * host, ENetEvent * event, enet_uint32 timeout)
  1155. {
  1156. enet_uint32 waitCondition;
  1157. if (event != NULL)
  1158. {
  1159. event -> type = ENET_EVENT_TYPE_NONE;
  1160. event -> peer = NULL;
  1161. event -> packet = NULL;
  1162. switch (enet_protocol_dispatch_incoming_commands (host, event))
  1163. {
  1164. case 1:
  1165. return 1;
  1166. case -1:
  1167. perror ("Error dispatching incoming packets");
  1168. return -1;
  1169. default:
  1170. break;
  1171. }
  1172. }
  1173. host -> serviceTime = enet_time_get ();
  1174. timeout += host -> serviceTime;
  1175. do
  1176. {
  1177. if (ENET_TIME_DIFFERENCE (host -> serviceTime, host -> bandwidthThrottleEpoch) >= ENET_HOST_BANDWIDTH_THROTTLE_INTERVAL)
  1178. enet_host_bandwidth_throttle (host);
  1179. switch (enet_protocol_send_outgoing_commands (host, event, 1))
  1180. {
  1181. case 1:
  1182. return 1;
  1183. case -1:
  1184. perror ("Error sending outgoing packets");
  1185. return -1;
  1186. default:
  1187. break;
  1188. }
  1189. switch (enet_protocol_receive_incoming_commands (host, event))
  1190. {
  1191. case 1:
  1192. return 1;
  1193. case -1:
  1194. perror ("Error receiving incoming packets");
  1195. return -1;
  1196. default:
  1197. break;
  1198. }
  1199. switch (enet_protocol_send_outgoing_commands (host, event, 1))
  1200. {
  1201. case 1:
  1202. return 1;
  1203. case -1:
  1204. perror ("Error sending outgoing packets");
  1205. return -1;
  1206. default:
  1207. break;
  1208. }
  1209. if (event != NULL)
  1210. {
  1211. switch (enet_protocol_dispatch_incoming_commands (host, event))
  1212. {
  1213. case 1:
  1214. return 1;
  1215. case -1:
  1216. perror ("Error dispatching incoming packets");
  1217. return -1;
  1218. default:
  1219. break;
  1220. }
  1221. }
  1222. host -> serviceTime = enet_time_get ();
  1223. if (ENET_TIME_GREATER_EQUAL (host -> serviceTime, timeout))
  1224. return 0;
  1225. waitCondition = ENET_SOCKET_WAIT_RECEIVE;
  1226. if (enet_socket_wait (host -> socket, & waitCondition, ENET_TIME_DIFFERENCE (timeout, host -> serviceTime)) != 0)
  1227. return -1;
  1228. host -> serviceTime = enet_time_get ();
  1229. } while (waitCondition == ENET_SOCKET_WAIT_RECEIVE);
  1230. return 0;
  1231. }