Merge pull request #15305 from poke1024/checks-peer
Checks on input_buffer in PacketPeerStream
This commit is contained in:
commit
06b076f687
1 changed files with 2 additions and 0 deletions
|
@ -172,6 +172,7 @@ Error PacketPeerStream::_poll_buffer() const {
|
||||||
ERR_FAIL_COND_V(peer.is_null(), ERR_UNCONFIGURED);
|
ERR_FAIL_COND_V(peer.is_null(), ERR_UNCONFIGURED);
|
||||||
|
|
||||||
int read = 0;
|
int read = 0;
|
||||||
|
ERR_FAIL_COND_V(input_buffer.size() < ring_buffer.space_left(), ERR_UNAVAILABLE);
|
||||||
Error err = peer->get_partial_data(&input_buffer[0], ring_buffer.space_left(), read);
|
Error err = peer->get_partial_data(&input_buffer[0], ring_buffer.space_left(), read);
|
||||||
if (err)
|
if (err)
|
||||||
return err;
|
return err;
|
||||||
|
@ -223,6 +224,7 @@ Error PacketPeerStream::get_packet(const uint8_t **r_buffer, int &r_buffer_size)
|
||||||
uint32_t len = decode_uint32(lbuf);
|
uint32_t len = decode_uint32(lbuf);
|
||||||
ERR_FAIL_COND_V(remaining < (int)len, ERR_UNAVAILABLE);
|
ERR_FAIL_COND_V(remaining < (int)len, ERR_UNAVAILABLE);
|
||||||
|
|
||||||
|
ERR_FAIL_COND_V(input_buffer.size() < len, ERR_UNAVAILABLE);
|
||||||
ring_buffer.read(lbuf, 4); //get rid of first 4 bytes
|
ring_buffer.read(lbuf, 4); //get rid of first 4 bytes
|
||||||
ring_buffer.read(&input_buffer[0], len); // read packet
|
ring_buffer.read(&input_buffer[0], len); // read packet
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue