2013-03-12 15:26:07 +01:00
|
|
|
/*
|
2016-01-28 15:07:31 +01:00
|
|
|
Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
|
2013-03-12 15:26:07 +01:00
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
This file is part of libzmq, the ZeroMQ core engine in C++.
|
2013-03-12 15:26:07 +01:00
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
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
|
2013-03-12 15:26:07 +01:00
|
|
|
(at your option) any later version.
|
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
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.
|
2013-03-12 15:26:07 +01:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2016-02-18 17:56:52 +01:00
|
|
|
#include "precompiled.hpp"
|
2013-03-12 15:26:07 +01:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2015-06-13 17:30:36 +02:00
|
|
|
#include <cmath>
|
2013-03-12 15:26:07 +01:00
|
|
|
|
|
|
|
#include "v2_protocol.hpp"
|
|
|
|
#include "v2_decoder.hpp"
|
|
|
|
#include "likely.hpp"
|
|
|
|
#include "wire.hpp"
|
|
|
|
#include "err.hpp"
|
|
|
|
|
2013-03-18 02:00:00 +01:00
|
|
|
zmq::v2_decoder_t::v2_decoder_t (size_t bufsize_, int64_t maxmsgsize_) :
|
2018-02-01 11:46:09 +01:00
|
|
|
shared_message_memory_allocator (bufsize_),
|
|
|
|
decoder_base_t<v2_decoder_t, shared_message_memory_allocator> (this),
|
2013-03-12 15:26:07 +01:00
|
|
|
msg_flags (0),
|
|
|
|
maxmsgsize (maxmsgsize_)
|
|
|
|
{
|
|
|
|
int rc = in_progress.init ();
|
|
|
|
errno_assert (rc == 0);
|
|
|
|
|
|
|
|
// At the beginning, read one byte and go to flags_ready state.
|
|
|
|
next_step (tmpbuf, 1, &v2_decoder_t::flags_ready);
|
|
|
|
}
|
|
|
|
|
|
|
|
zmq::v2_decoder_t::~v2_decoder_t ()
|
|
|
|
{
|
|
|
|
int rc = in_progress.close ();
|
|
|
|
errno_assert (rc == 0);
|
|
|
|
}
|
|
|
|
|
2018-02-01 11:46:09 +01:00
|
|
|
int zmq::v2_decoder_t::flags_ready (unsigned char const *)
|
2013-03-12 15:26:07 +01:00
|
|
|
{
|
|
|
|
msg_flags = 0;
|
2018-02-01 11:46:09 +01:00
|
|
|
if (tmpbuf[0] & v2_protocol_t::more_flag)
|
2013-03-12 15:26:07 +01:00
|
|
|
msg_flags |= msg_t::more;
|
2018-02-01 11:46:09 +01:00
|
|
|
if (tmpbuf[0] & v2_protocol_t::command_flag)
|
2013-09-04 17:59:45 +02:00
|
|
|
msg_flags |= msg_t::command;
|
2013-03-12 15:26:07 +01:00
|
|
|
|
|
|
|
// The payload length is either one or eight bytes,
|
|
|
|
// depending on whether the 'large' bit is set.
|
2018-02-01 11:46:09 +01:00
|
|
|
if (tmpbuf[0] & v2_protocol_t::large_flag)
|
2013-03-12 15:26:07 +01:00
|
|
|
next_step (tmpbuf, 8, &v2_decoder_t::eight_byte_size_ready);
|
|
|
|
else
|
|
|
|
next_step (tmpbuf, 1, &v2_decoder_t::one_byte_size_ready);
|
|
|
|
|
2013-03-18 02:00:00 +01:00
|
|
|
return 0;
|
2013-03-12 15:26:07 +01:00
|
|
|
}
|
|
|
|
|
2018-02-01 11:46:09 +01:00
|
|
|
int zmq::v2_decoder_t::one_byte_size_ready (unsigned char const *read_from)
|
2013-03-12 15:26:07 +01:00
|
|
|
{
|
2018-02-01 11:46:09 +01:00
|
|
|
return size_ready (tmpbuf[0], read_from);
|
2013-03-12 15:26:07 +01:00
|
|
|
}
|
|
|
|
|
2018-02-01 11:46:09 +01:00
|
|
|
int zmq::v2_decoder_t::eight_byte_size_ready (unsigned char const *read_from)
|
|
|
|
{
|
2013-03-12 15:26:07 +01:00
|
|
|
// The payload size is encoded as 64-bit unsigned integer.
|
|
|
|
// The most significant byte comes first.
|
2018-02-01 11:46:09 +01:00
|
|
|
const uint64_t msg_size = get_uint64 (tmpbuf);
|
2015-05-29 23:54:43 +02:00
|
|
|
|
2018-02-01 11:46:09 +01:00
|
|
|
return size_ready (msg_size, read_from);
|
2015-05-29 23:54:43 +02:00
|
|
|
}
|
2013-03-12 15:26:07 +01:00
|
|
|
|
2018-02-01 11:46:09 +01:00
|
|
|
int zmq::v2_decoder_t::size_ready (uint64_t msg_size,
|
|
|
|
unsigned char const *read_pos)
|
|
|
|
{
|
2013-03-12 15:26:07 +01:00
|
|
|
// Message size must not exceed the maximum allowed size.
|
|
|
|
if (maxmsgsize >= 0)
|
2018-02-01 11:46:09 +01:00
|
|
|
if (unlikely (msg_size > static_cast<uint64_t> (maxmsgsize))) {
|
2013-03-18 02:00:00 +01:00
|
|
|
errno = EMSGSIZE;
|
|
|
|
return -1;
|
|
|
|
}
|
2013-03-12 15:26:07 +01:00
|
|
|
|
|
|
|
// Message size must fit into size_t data type.
|
2018-02-01 11:46:09 +01:00
|
|
|
if (unlikely (msg_size != static_cast<size_t> (msg_size))) {
|
2013-03-18 02:00:00 +01:00
|
|
|
errno = EMSGSIZE;
|
|
|
|
return -1;
|
|
|
|
}
|
2013-03-12 15:26:07 +01:00
|
|
|
|
2018-02-01 11:46:09 +01:00
|
|
|
int rc = in_progress.close ();
|
|
|
|
assert (rc == 0);
|
2015-05-29 23:54:43 +02:00
|
|
|
|
|
|
|
// the current message can exceed the current buffer. We have to copy the buffer
|
|
|
|
// data into a new message and complete it in the next receive.
|
2015-06-13 17:30:36 +02:00
|
|
|
|
2018-02-01 11:46:09 +01:00
|
|
|
if (unlikely ((unsigned char *) read_pos + msg_size
|
|
|
|
> (data () + size ()))) {
|
2015-05-29 23:54:43 +02:00
|
|
|
// a new message has started, but the size would exceed the pre-allocated arena
|
2015-09-06 18:46:32 +02:00
|
|
|
// this happens every time when a message does not fit completely into the buffer
|
2018-02-01 11:46:09 +01:00
|
|
|
rc = in_progress.init_size (static_cast<size_t> (msg_size));
|
|
|
|
} else {
|
2015-05-29 23:54:43 +02:00
|
|
|
// construct message using n bytes from the buffer as storage
|
|
|
|
// increase buffer ref count
|
2015-06-13 17:30:36 +02:00
|
|
|
// if the message will be a large message, pass a valid refcnt memory location as well
|
2018-02-01 11:46:09 +01:00
|
|
|
rc = in_progress.init ((unsigned char *) read_pos,
|
|
|
|
static_cast<size_t> (msg_size),
|
|
|
|
shared_message_memory_allocator::call_dec_ref,
|
|
|
|
buffer (), provide_content ());
|
2015-05-29 23:54:43 +02:00
|
|
|
|
|
|
|
// For small messages, data has been copied and refcount does not have to be increased
|
2018-02-01 11:46:09 +01:00
|
|
|
if (in_progress.is_zcmsg ()) {
|
|
|
|
advance_content ();
|
|
|
|
inc_ref ();
|
2015-05-29 23:54:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-12 15:26:07 +01:00
|
|
|
if (unlikely (rc)) {
|
|
|
|
errno_assert (errno == ENOMEM);
|
2013-03-18 02:00:00 +01:00
|
|
|
rc = in_progress.init ();
|
2013-03-12 15:26:07 +01:00
|
|
|
errno_assert (rc == 0);
|
2013-03-18 02:00:00 +01:00
|
|
|
errno = ENOMEM;
|
|
|
|
return -1;
|
2013-03-12 15:26:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
in_progress.set_flags (msg_flags);
|
2015-05-29 23:54:43 +02:00
|
|
|
// this sets read_pos to
|
|
|
|
// the message data address if the data needs to be copied
|
|
|
|
// for small message / messages exceeding the current buffer
|
|
|
|
// or
|
|
|
|
// to the current start address in the buffer because the message
|
|
|
|
// was constructed to use n bytes from the address passed as argument
|
2013-03-12 15:26:07 +01:00
|
|
|
next_step (in_progress.data (), in_progress.size (),
|
2018-02-01 11:46:09 +01:00
|
|
|
&v2_decoder_t::message_ready);
|
2013-03-12 15:26:07 +01:00
|
|
|
|
2013-03-18 02:00:00 +01:00
|
|
|
return 0;
|
2013-03-12 15:26:07 +01:00
|
|
|
}
|
|
|
|
|
2018-02-01 11:46:09 +01:00
|
|
|
int zmq::v2_decoder_t::message_ready (unsigned char const *)
|
2013-03-12 15:26:07 +01:00
|
|
|
{
|
2013-03-18 02:00:00 +01:00
|
|
|
// Message is completely read. Signal this to the caller
|
|
|
|
// and prepare to decode next message.
|
2013-03-12 15:26:07 +01:00
|
|
|
next_step (tmpbuf, 1, &v2_decoder_t::flags_ready);
|
2013-03-18 02:00:00 +01:00
|
|
|
return 1;
|
2013-03-12 15:26:07 +01:00
|
|
|
}
|