mirror of
https://github.com/minetest/minetest.git
synced 2024-11-27 10:03:45 +01:00
Improve protocol-level receiving code (#9617)
This commit is contained in:
parent
c2ac7b1a83
commit
8ef239b448
@ -1173,7 +1173,9 @@ Connection::Connection(u32 protocol_id, u32 max_packet_size, float timeout,
|
|||||||
m_bc_peerhandler(peerhandler)
|
m_bc_peerhandler(peerhandler)
|
||||||
|
|
||||||
{
|
{
|
||||||
m_udpSocket.setTimeoutMs(5);
|
/* Amount of time Receive() will wait for data, this is entirely different
|
||||||
|
* from the connection timeout */
|
||||||
|
m_udpSocket.setTimeoutMs(500);
|
||||||
|
|
||||||
m_sendThread->setParent(this);
|
m_sendThread->setParent(this);
|
||||||
m_receiveThread->setParent(this);
|
m_receiveThread->setParent(this);
|
||||||
|
@ -812,6 +812,14 @@ void *ConnectionReceiveThread::run()
|
|||||||
ThreadIdentifier);
|
ThreadIdentifier);
|
||||||
PROFILE(ThreadIdentifier << "ConnectionReceive: [" << m_connection->getDesc() << "]");
|
PROFILE(ThreadIdentifier << "ConnectionReceive: [" << m_connection->getDesc() << "]");
|
||||||
|
|
||||||
|
// use IPv6 minimum allowed MTU as receive buffer size as this is
|
||||||
|
// theoretical reliable upper boundary of a udp packet for all IPv6 enabled
|
||||||
|
// infrastructure
|
||||||
|
const unsigned int packet_maxsize = 1500;
|
||||||
|
SharedBuffer<u8> packetdata(packet_maxsize);
|
||||||
|
|
||||||
|
bool packet_queued = true;
|
||||||
|
|
||||||
#ifdef DEBUG_CONNECTION_KBPS
|
#ifdef DEBUG_CONNECTION_KBPS
|
||||||
u64 curtime = porting::getTimeMs();
|
u64 curtime = porting::getTimeMs();
|
||||||
u64 lasttime = curtime;
|
u64 lasttime = curtime;
|
||||||
@ -830,7 +838,7 @@ void *ConnectionReceiveThread::run()
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* receive packets */
|
/* receive packets */
|
||||||
receive();
|
receive(packetdata, packet_queued);
|
||||||
|
|
||||||
#ifdef DEBUG_CONNECTION_KBPS
|
#ifdef DEBUG_CONNECTION_KBPS
|
||||||
debug_print_timer += dtime;
|
debug_print_timer += dtime;
|
||||||
@ -892,24 +900,11 @@ void *ConnectionReceiveThread::run()
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Receive packets from the network and buffers and create ConnectionEvents
|
// Receive packets from the network and buffers and create ConnectionEvents
|
||||||
void ConnectionReceiveThread::receive()
|
void ConnectionReceiveThread::receive(SharedBuffer<u8> &packetdata,
|
||||||
|
bool &packet_queued)
|
||||||
{
|
{
|
||||||
// use IPv6 minimum allowed MTU as receive buffer size as this is
|
|
||||||
// theoretical reliable upper boundary of a udp packet for all IPv6 enabled
|
|
||||||
// infrastructure
|
|
||||||
unsigned int packet_maxsize = 1500;
|
|
||||||
SharedBuffer<u8> packetdata(packet_maxsize);
|
|
||||||
|
|
||||||
bool packet_queued = true;
|
|
||||||
|
|
||||||
unsigned int loop_count = 0;
|
|
||||||
|
|
||||||
/* first of all read packets from socket */
|
|
||||||
/* check for incoming data available */
|
|
||||||
while ((loop_count < 10) &&
|
|
||||||
(m_connection->m_udpSocket.WaitData(50))) {
|
|
||||||
loop_count++;
|
|
||||||
try {
|
try {
|
||||||
|
// First, see if there any buffered packets we can process now
|
||||||
if (packet_queued) {
|
if (packet_queued) {
|
||||||
bool data_left = true;
|
bool data_left = true;
|
||||||
session_t peer_id;
|
session_t peer_id;
|
||||||
@ -930,9 +925,12 @@ void ConnectionReceiveThread::receive()
|
|||||||
packet_queued = false;
|
packet_queued = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Call Receive() to wait for incoming data
|
||||||
Address sender;
|
Address sender;
|
||||||
s32 received_size = m_connection->m_udpSocket.Receive(sender, *packetdata,
|
s32 received_size = m_connection->m_udpSocket.Receive(sender,
|
||||||
packet_maxsize);
|
*packetdata, packetdata.getSize());
|
||||||
|
if (received_size < 0)
|
||||||
|
return;
|
||||||
|
|
||||||
if ((received_size < BASE_HEADER_SIZE) ||
|
if ((received_size < BASE_HEADER_SIZE) ||
|
||||||
(readU32(&packetdata[0]) != m_connection->GetProtocolID())) {
|
(readU32(&packetdata[0]) != m_connection->GetProtocolID())) {
|
||||||
@ -942,7 +940,7 @@ void ConnectionReceiveThread::receive()
|
|||||||
<< ", protocol: "
|
<< ", protocol: "
|
||||||
<< ((received_size >= 4) ? readU32(&packetdata[0]) : -1)
|
<< ((received_size >= 4) ? readU32(&packetdata[0]) : -1)
|
||||||
<< std::endl);
|
<< std::endl);
|
||||||
continue;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
session_t peer_id = readPeerId(*packetdata);
|
session_t peer_id = readPeerId(*packetdata);
|
||||||
@ -951,7 +949,7 @@ void ConnectionReceiveThread::receive()
|
|||||||
if (channelnum > CHANNEL_COUNT - 1) {
|
if (channelnum > CHANNEL_COUNT - 1) {
|
||||||
LOG(derr_con << m_connection->getDesc()
|
LOG(derr_con << m_connection->getDesc()
|
||||||
<< "Receive(): Invalid channel " << (u32)channelnum << std::endl);
|
<< "Receive(): Invalid channel " << (u32)channelnum << std::endl);
|
||||||
throw InvalidIncomingDataException("Channel doesn't exist");
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Try to identify peer by sender address (may happen on join) */
|
/* Try to identify peer by sender address (may happen on join) */
|
||||||
@ -968,49 +966,43 @@ void ConnectionReceiveThread::receive()
|
|||||||
}
|
}
|
||||||
|
|
||||||
PeerHelper peer = m_connection->getPeerNoEx(peer_id);
|
PeerHelper peer = m_connection->getPeerNoEx(peer_id);
|
||||||
|
|
||||||
if (!peer) {
|
if (!peer) {
|
||||||
LOG(dout_con << m_connection->getDesc()
|
LOG(dout_con << m_connection->getDesc()
|
||||||
<< " got packet from unknown peer_id: "
|
<< " got packet from unknown peer_id: "
|
||||||
<< peer_id << " Ignoring." << std::endl);
|
<< peer_id << " Ignoring." << std::endl);
|
||||||
continue;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Validate peer address
|
// Validate peer address
|
||||||
|
|
||||||
Address peer_address;
|
Address peer_address;
|
||||||
|
|
||||||
if (peer->getAddress(MTP_UDP, peer_address)) {
|
if (peer->getAddress(MTP_UDP, peer_address)) {
|
||||||
if (peer_address != sender) {
|
if (peer_address != sender) {
|
||||||
LOG(derr_con << m_connection->getDesc()
|
LOG(derr_con << m_connection->getDesc()
|
||||||
<< m_connection->getDesc()
|
|
||||||
<< " Peer " << peer_id << " sending from different address."
|
<< " Peer " << peer_id << " sending from different address."
|
||||||
" Ignoring." << std::endl);
|
" Ignoring." << std::endl);
|
||||||
continue;
|
return;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
bool invalid_address = true;
|
|
||||||
if (invalid_address) {
|
|
||||||
LOG(derr_con << m_connection->getDesc()
|
LOG(derr_con << m_connection->getDesc()
|
||||||
<< m_connection->getDesc()
|
<< " Peer " << peer_id << " doesn't have an address?!"
|
||||||
<< " Peer " << peer_id << " unknown."
|
|
||||||
" Ignoring." << std::endl);
|
" Ignoring." << std::endl);
|
||||||
continue;
|
return;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
peer->ResetTimeout();
|
peer->ResetTimeout();
|
||||||
|
|
||||||
Channel *channel = 0;
|
Channel *channel = nullptr;
|
||||||
|
if (dynamic_cast<UDPPeer *>(&peer)) {
|
||||||
if (dynamic_cast<UDPPeer *>(&peer) != 0) {
|
channel = &dynamic_cast<UDPPeer *>(&peer)->channels[channelnum];
|
||||||
channel = &(dynamic_cast<UDPPeer *>(&peer)->channels[channelnum]);
|
} else {
|
||||||
|
LOG(derr_con << m_connection->getDesc()
|
||||||
|
<< "Receive(): peer_id=" << peer_id << " isn't an UDPPeer?!"
|
||||||
|
" Ignoring." << std::endl);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (channel != 0) {
|
|
||||||
channel->UpdateBytesReceived(received_size);
|
channel->UpdateBytesReceived(received_size);
|
||||||
}
|
|
||||||
|
|
||||||
// Throw the received packet to channel->processPacket()
|
// Throw the received packet to channel->processPacket()
|
||||||
|
|
||||||
@ -1036,14 +1028,15 @@ void ConnectionReceiveThread::receive()
|
|||||||
catch (ProcessedSilentlyException &e) {
|
catch (ProcessedSilentlyException &e) {
|
||||||
}
|
}
|
||||||
catch (ProcessedQueued &e) {
|
catch (ProcessedQueued &e) {
|
||||||
|
// we set it to true anyway (see below)
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Every time we receive a packet it can happen that a previously
|
||||||
|
* buffered packet is now ready to process. */
|
||||||
packet_queued = true;
|
packet_queued = true;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
catch (InvalidIncomingDataException &e) {
|
catch (InvalidIncomingDataException &e) {
|
||||||
}
|
}
|
||||||
catch (ProcessedSilentlyException &e) {
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ConnectionReceiveThread::getFromBuffers(session_t &peer_id, SharedBuffer<u8> &dst)
|
bool ConnectionReceiveThread::getFromBuffers(session_t &peer_id, SharedBuffer<u8> &dst)
|
||||||
@ -1189,7 +1182,8 @@ SharedBuffer<u8> ConnectionReceiveThread::handlePacketType_Control(Channel *chan
|
|||||||
m_connection->TriggerSend();
|
m_connection->TriggerSend();
|
||||||
} catch (NotFoundException &e) {
|
} catch (NotFoundException &e) {
|
||||||
LOG(derr_con << m_connection->getDesc()
|
LOG(derr_con << m_connection->getDesc()
|
||||||
<< "WARNING: ACKed packet not in outgoing queue" << std::endl);
|
<< "WARNING: ACKed packet not in outgoing queue"
|
||||||
|
<< " seqnum=" << seqnum << std::endl);
|
||||||
channel->UpdatePacketTooLateCounter();
|
channel->UpdatePacketTooLateCounter();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -101,7 +101,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
void receive();
|
void receive(SharedBuffer<u8> &packetdata, bool &packet_queued);
|
||||||
|
|
||||||
// Returns next data from a buffer if possible
|
// Returns next data from a buffer if possible
|
||||||
// If found, returns true; if not, false.
|
// If found, returns true; if not, false.
|
||||||
|
Loading…
Reference in New Issue
Block a user