2012-09-05 02:01:19 +02:00
|
|
|
/*
|
2015-01-22 10:32:06 +01:00
|
|
|
Copyright (c) 2007-2015 Contributors as noted in the AUTHORS file
|
2012-09-05 02:01:19 +02:00
|
|
|
|
|
|
|
This file is part of 0MQ.
|
|
|
|
|
|
|
|
0MQ is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
0MQ 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 <stdlib.h>
|
|
|
|
#include <string.h>
|
2013-03-12 15:26:07 +01:00
|
|
|
#include <limits>
|
2012-09-05 02:01:19 +02:00
|
|
|
|
|
|
|
#include "platform.hpp"
|
2013-03-12 15:26:07 +01:00
|
|
|
#if defined ZMQ_HAVE_WINDOWS
|
2012-09-05 02:01:19 +02:00
|
|
|
#include "windows.hpp"
|
|
|
|
#endif
|
|
|
|
|
2013-03-12 15:26:07 +01:00
|
|
|
#include "decoder.hpp"
|
2012-09-05 02:01:19 +02:00
|
|
|
#include "v1_decoder.hpp"
|
|
|
|
#include "likely.hpp"
|
|
|
|
#include "wire.hpp"
|
|
|
|
#include "err.hpp"
|
|
|
|
|
2013-03-12 15:26:07 +01:00
|
|
|
zmq::v1_decoder_t::v1_decoder_t (size_t bufsize_, int64_t maxmsgsize_) :
|
2012-09-05 02:01:19 +02:00
|
|
|
decoder_base_t <v1_decoder_t> (bufsize_),
|
|
|
|
maxmsgsize (maxmsgsize_)
|
|
|
|
{
|
|
|
|
int rc = in_progress.init ();
|
|
|
|
errno_assert (rc == 0);
|
|
|
|
|
2013-03-12 15:26:07 +01:00
|
|
|
// 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);
|
2012-09-05 02:01:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
zmq::v1_decoder_t::~v1_decoder_t ()
|
|
|
|
{
|
|
|
|
int rc = in_progress.close ();
|
|
|
|
errno_assert (rc == 0);
|
|
|
|
}
|
|
|
|
|
2013-03-18 02:00:00 +01:00
|
|
|
int zmq::v1_decoder_t::one_byte_size_ready ()
|
2012-09-05 02:01:19 +02:00
|
|
|
{
|
2013-03-12 15:26:07 +01:00
|
|
|
// First byte of size is read. If it is 0xff read 8-byte size.
|
|
|
|
// Otherwise allocate the buffer for message data and read the
|
|
|
|
// message data into it.
|
|
|
|
if (*tmpbuf == 0xff)
|
|
|
|
next_step (tmpbuf, 8, &v1_decoder_t::eight_byte_size_ready);
|
|
|
|
else {
|
2012-09-05 02:01:19 +02:00
|
|
|
|
2013-03-12 15:26:07 +01:00
|
|
|
// There has to be at least one byte (the flags) in the message).
|
|
|
|
if (!*tmpbuf) {
|
2013-03-18 02:00:00 +01:00
|
|
|
errno = EPROTO;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (maxmsgsize >= 0 && (int64_t) (*tmpbuf - 1) > maxmsgsize) {
|
|
|
|
errno = EMSGSIZE;
|
|
|
|
return -1;
|
2013-03-12 15:26:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// in_progress is initialised at this point so in theory we should
|
|
|
|
// close it before calling zmq_msg_init_size, however, it's a 0-byte
|
|
|
|
// message and thus we can treat it as uninitialised...
|
2013-03-18 02:00:00 +01:00
|
|
|
int rc = in_progress.init_size (*tmpbuf - 1);
|
|
|
|
if (rc != 0) {
|
|
|
|
errno_assert (errno == ENOMEM);
|
2013-03-12 15:26:07 +01:00
|
|
|
rc = in_progress.init ();
|
|
|
|
errno_assert (rc == 0);
|
2013-03-18 02:00:00 +01:00
|
|
|
errno = ENOMEM;
|
|
|
|
return -1;
|
2013-03-12 15:26:07 +01:00
|
|
|
}
|
2012-09-05 02:01:19 +02:00
|
|
|
|
2013-03-12 15:26:07 +01:00
|
|
|
next_step (tmpbuf, 1, &v1_decoder_t::flags_ready);
|
|
|
|
}
|
2013-03-18 02:00:00 +01:00
|
|
|
return 0;
|
2012-09-05 02:01:19 +02:00
|
|
|
}
|
|
|
|
|
2013-03-18 02:00:00 +01:00
|
|
|
int zmq::v1_decoder_t::eight_byte_size_ready ()
|
2012-09-05 02:01:19 +02:00
|
|
|
{
|
2013-03-12 15:26:07 +01:00
|
|
|
// 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);
|
2012-09-05 02:01:19 +02:00
|
|
|
|
2013-03-12 15:26:07 +01:00
|
|
|
// There has to be at least one byte (the flags) in the message).
|
|
|
|
if (payload_length == 0) {
|
2013-03-18 02:00:00 +01:00
|
|
|
errno = EPROTO;
|
|
|
|
return -1;
|
2013-03-12 15:26:07 +01:00
|
|
|
}
|
2012-09-05 02:01:19 +02:00
|
|
|
|
|
|
|
// Message size must not exceed the maximum allowed size.
|
2013-03-12 15:26:07 +01:00
|
|
|
if (maxmsgsize >= 0 && payload_length - 1 > (uint64_t) maxmsgsize) {
|
2013-03-18 02:00:00 +01:00
|
|
|
errno = EMSGSIZE;
|
|
|
|
return -1;
|
2013-03-12 15:26:07 +01:00
|
|
|
}
|
2012-09-05 02:01:19 +02:00
|
|
|
|
2013-03-12 15:26:07 +01:00
|
|
|
// Message size must fit within range of size_t data type.
|
|
|
|
if (payload_length - 1 > std::numeric_limits <size_t>::max ()) {
|
2013-03-18 02:00:00 +01:00
|
|
|
errno = EMSGSIZE;
|
|
|
|
return -1;
|
2013-03-12 15:26:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const size_t msg_size = static_cast <size_t> (payload_length - 1);
|
2012-09-05 02:01:19 +02:00
|
|
|
|
|
|
|
// in_progress is initialised at this point so in theory we should
|
|
|
|
// close it before calling init_size, however, it's a 0-byte
|
2013-03-12 15:26:07 +01:00
|
|
|
// message and thus we can treat it as uninitialised...
|
|
|
|
int rc = in_progress.init_size (msg_size);
|
|
|
|
if (rc != 0) {
|
2012-09-05 02:01:19 +02:00
|
|
|
errno_assert (errno == ENOMEM);
|
2013-03-12 15:26:07 +01:00
|
|
|
rc = in_progress.init ();
|
2012-09-05 02:01:19 +02:00
|
|
|
errno_assert (rc == 0);
|
2013-03-18 02:00:00 +01:00
|
|
|
errno = ENOMEM;
|
|
|
|
return -1;
|
2012-09-05 02:01:19 +02:00
|
|
|
}
|
|
|
|
|
2013-03-12 15:26:07 +01:00
|
|
|
next_step (tmpbuf, 1, &v1_decoder_t::flags_ready);
|
2013-03-18 02:00:00 +01:00
|
|
|
return 0;
|
2013-03-12 15:26:07 +01:00
|
|
|
}
|
|
|
|
|
2013-03-18 02:00:00 +01:00
|
|
|
int zmq::v1_decoder_t::flags_ready ()
|
2013-03-12 15:26:07 +01:00
|
|
|
{
|
|
|
|
// Store the flags from the wire into the message structure.
|
|
|
|
in_progress.set_flags (tmpbuf [0] & msg_t::more);
|
|
|
|
|
2012-09-05 02:01:19 +02:00
|
|
|
next_step (in_progress.data (), in_progress.size (),
|
|
|
|
&v1_decoder_t::message_ready);
|
|
|
|
|
2013-03-18 02:00:00 +01:00
|
|
|
return 0;
|
2012-09-05 02:01:19 +02:00
|
|
|
}
|
|
|
|
|
2013-03-18 02:00:00 +01:00
|
|
|
int zmq::v1_decoder_t::message_ready ()
|
2012-09-05 02:01:19 +02:00
|
|
|
{
|
|
|
|
// Message is completely read. Push it further and start reading
|
|
|
|
// new message. (in_progress is a 0-byte message after this point.)
|
2013-03-12 15:26:07 +01:00
|
|
|
next_step (tmpbuf, 1, &v1_decoder_t::one_byte_size_ready);
|
2013-03-18 02:00:00 +01:00
|
|
|
return 1;
|
2012-09-05 02:01:19 +02:00
|
|
|
}
|