1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00
SqMod/vendor/ZMQ/src/v1_decoder.cpp
2021-02-02 19:07:02 +02:00

157 lines
4.9 KiB
C++

/*
Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
This file is part of libzmq, the ZeroMQ core engine in C++.
libzmq is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License (LGPL) as published
by the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
As a special exception, the Contributors give you permission to link
this library with independent modules to produce an executable,
regardless of the license terms of these independent modules, and to
copy and distribute the resulting executable under terms of your choice,
provided that you also meet, for each linked independent module, the
terms and conditions of the license of that module. An independent
module is a module which is not derived from or based on this library.
If you modify this library, you must extend this exception to your
version of the library.
libzmq is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "precompiled.hpp"
#include <stdlib.h>
#include <string.h>
#include <limits>
#include <limits.h>
#include "decoder.hpp"
#include "v1_decoder.hpp"
#include "likely.hpp"
#include "wire.hpp"
#include "err.hpp"
zmq::v1_decoder_t::v1_decoder_t (size_t bufsize_, int64_t maxmsgsize_) :
decoder_base_t<v1_decoder_t> (bufsize_),
_max_msg_size (maxmsgsize_)
{
int rc = _in_progress.init ();
errno_assert (rc == 0);
// At the beginning, read one byte and go to one_byte_size_ready state.
next_step (_tmpbuf, 1, &v1_decoder_t::one_byte_size_ready);
}
zmq::v1_decoder_t::~v1_decoder_t ()
{
const int rc = _in_progress.close ();
errno_assert (rc == 0);
}
int zmq::v1_decoder_t::one_byte_size_ready (unsigned char const *)
{
// First byte of size is read. If it is UCHAR_MAX (0xff) read 8-byte size.
// Otherwise allocate the buffer for message data and read the
// message data into it.
if (*_tmpbuf == UCHAR_MAX)
next_step (_tmpbuf, 8, &v1_decoder_t::eight_byte_size_ready);
else {
// There has to be at least one byte (the flags) in the message).
if (!*_tmpbuf) {
errno = EPROTO;
return -1;
}
if (_max_msg_size >= 0
&& static_cast<int64_t> (*_tmpbuf - 1) > _max_msg_size) {
errno = EMSGSIZE;
return -1;
}
int rc = _in_progress.close ();
assert (rc == 0);
rc = _in_progress.init_size (*_tmpbuf - 1);
if (rc != 0) {
errno_assert (errno == ENOMEM);
rc = _in_progress.init ();
errno_assert (rc == 0);
errno = ENOMEM;
return -1;
}
next_step (_tmpbuf, 1, &v1_decoder_t::flags_ready);
}
return 0;
}
int zmq::v1_decoder_t::eight_byte_size_ready (unsigned char const *)
{
// 8-byte payload length is read. Allocate the buffer
// for message body and read the message data into it.
const uint64_t payload_length = get_uint64 (_tmpbuf);
// There has to be at least one byte (the flags) in the message).
if (payload_length == 0) {
errno = EPROTO;
return -1;
}
// Message size must not exceed the maximum allowed size.
if (_max_msg_size >= 0
&& payload_length - 1 > static_cast<uint64_t> (_max_msg_size)) {
errno = EMSGSIZE;
return -1;
}
#ifndef __aarch64__
// Message size must fit within range of size_t data type.
if (payload_length - 1 > std::numeric_limits<size_t>::max ()) {
errno = EMSGSIZE;
return -1;
}
#endif
const size_t msg_size = static_cast<size_t> (payload_length - 1);
int rc = _in_progress.close ();
assert (rc == 0);
rc = _in_progress.init_size (msg_size);
if (rc != 0) {
errno_assert (errno == ENOMEM);
rc = _in_progress.init ();
errno_assert (rc == 0);
errno = ENOMEM;
return -1;
}
next_step (_tmpbuf, 1, &v1_decoder_t::flags_ready);
return 0;
}
int zmq::v1_decoder_t::flags_ready (unsigned char const *)
{
// Store the flags from the wire into the message structure.
_in_progress.set_flags (_tmpbuf[0] & msg_t::more);
next_step (_in_progress.data (), _in_progress.size (),
&v1_decoder_t::message_ready);
return 0;
}
int zmq::v1_decoder_t::message_ready (unsigned char const *)
{
// Message is completely read. Push it further and start reading
// new message. (in_progress is a 0-byte message after this point.)
next_step (_tmpbuf, 1, &v1_decoder_t::one_byte_size_ready);
return 1;
}