v2_decoder.cpp 7.32 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2015 Contributors as noted in the AUTHORS file
3

4
    This file is part of libzmq, the ZeroMQ core engine in C++.
5

6 7 8
    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
9 10
    (at your option) any later version.

11 12 13 14 15 16 17 18 19 20 21 22 23 24
    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.
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43

    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>

#include "platform.hpp"
#ifdef ZMQ_HAVE_WINDOWS
#include "windows.hpp"
#endif

#include "v2_protocol.hpp"
#include "v2_decoder.hpp"
#include "likely.hpp"
#include "wire.hpp"
#include "err.hpp"

Jens Auer's avatar
Jens Auer committed
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
zmq::shared_message_memory_allocator::shared_message_memory_allocator(size_t bufsize_):
    buf(NULL),
    bufsize( bufsize_ )
{

}

zmq::shared_message_memory_allocator::~shared_message_memory_allocator()
{
    deallocate();
}

unsigned char* zmq::shared_message_memory_allocator::allocate()
{
    if (buf)
    {
        // release reference count to couple lifetime to messages
        call_dec_ref(NULL, buf);
        // release pointer because we are going to create a new buffer
        release();
    }

    // @todo aligmnet padding may be needed
    if (!buf)
    {
        buf = (unsigned char *) malloc(bufsize + sizeof(zmq::atomic_counter_t));
        alloc_assert (buf);
        new(buf) atomic_counter_t(1);
    }

    return buf + sizeof( zmq::atomic_counter_t);
}

void zmq::shared_message_memory_allocator::deallocate()
{
    free(buf);
    buf = NULL;
}

unsigned char* zmq::shared_message_memory_allocator::release()
{
    unsigned char* b = buf;
    buf = NULL;
    return b;
}

void zmq::shared_message_memory_allocator::reset(unsigned char* b)
{
    deallocate();
    buf = b;
}

void zmq::shared_message_memory_allocator::inc_ref()
{
    ((zmq::atomic_counter_t*)buf)->add(1);
}

void zmq::shared_message_memory_allocator::call_dec_ref(void*, void* hint) {
    zmq_assert( hint );
    zmq::atomic_counter_t *c = reinterpret_cast<zmq::atomic_counter_t *>(hint);

    if (!c->sub(1)) {
        c->~atomic_counter_t();
        free(hint);
    }
}


size_t zmq::shared_message_memory_allocator::size() const
{
    if (buf)
    {
        return bufsize;
    }
    else
    {
        return  0;
    }
}

unsigned char* zmq::shared_message_memory_allocator::data()
{
    zmq_assert(buf);

    return buf + sizeof(zmq::atomic_counter_t);
}

131
zmq::v2_decoder_t::v2_decoder_t (size_t bufsize_, int64_t maxmsgsize_) :
Jens Auer's avatar
Jens Auer committed
132 133
    shared_message_memory_allocator( bufsize_),
    decoder_base_t <v2_decoder_t, shared_message_memory_allocator> (this),
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
    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);
}

Jens Auer's avatar
Jens Auer committed
150
int zmq::v2_decoder_t::flags_ready (unsigned char const*)
151 152 153 154
{
    msg_flags = 0;
    if (tmpbuf [0] & v2_protocol_t::more_flag)
        msg_flags |= msg_t::more;
155 156
    if (tmpbuf [0] & v2_protocol_t::command_flag)
        msg_flags |= msg_t::command;
157 158 159 160 161 162 163 164

    //  The payload length is either one or eight bytes,
    //  depending on whether the 'large' bit is set.
    if (tmpbuf [0] & v2_protocol_t::large_flag)
        next_step (tmpbuf, 8, &v2_decoder_t::eight_byte_size_ready);
    else
        next_step (tmpbuf, 1, &v2_decoder_t::one_byte_size_ready);

165
    return 0;
166 167
}

Jens Auer's avatar
Jens Auer committed
168
int zmq::v2_decoder_t::one_byte_size_ready (unsigned char const* read_from)
169
{
Jens Auer's avatar
Jens Auer committed
170
    return size_ready(tmpbuf[0], read_from);
171 172
}

Jens Auer's avatar
Jens Auer committed
173
int zmq::v2_decoder_t::eight_byte_size_ready (unsigned char const* read_from) {
174 175
    //  The payload size is encoded as 64-bit unsigned integer.
    //  The most significant byte comes first.
Jens Auer's avatar
Jens Auer committed
176 177 178 179
    const uint64_t msg_size = get_uint64(tmpbuf);

    return size_ready(msg_size, read_from);
}
180

Jens Auer's avatar
Jens Auer committed
181
int zmq::v2_decoder_t::size_ready(uint64_t msg_size, unsigned char const* read_pos) {
182 183
    //  Message size must not exceed the maximum allowed size.
    if (maxmsgsize >= 0)
184 185 186 187
        if (unlikely (msg_size > static_cast <uint64_t> (maxmsgsize))) {
            errno = EMSGSIZE;
            return -1;
        }
188 189

    //  Message size must fit into size_t data type.
190 191 192 193
    if (unlikely (msg_size != static_cast <size_t> (msg_size))) {
        errno = EMSGSIZE;
        return -1;
    }
194 195 196 197

    //  in_progress is initialised at this point so in theory we should
    //  close it before calling init_size, however, it's a 0-byte
    //  message and thus we can treat it as uninitialised.
Jens Auer's avatar
Jens Auer committed
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
    int rc = -1;

    // 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.
    if (unlikely ((unsigned char*)read_pos + msg_size > (data() + size())))
    {
        // a new message has started, but the size would exceed the pre-allocated arena
        // this happens everytime when a message does not fit completely into the buffer
        rc = in_progress.init_size (static_cast <size_t> (msg_size));
    }
    else
    {
        // construct message using n bytes from the buffer as storage
        // increase buffer ref count
        rc = in_progress.init( (unsigned char*)read_pos,
                               msg_size, shared_message_memory_allocator::call_dec_ref,
                               buffer() );

        // For small messages, data has been copied and refcount does not have to be increased
        if (in_progress.is_lmsg())
        {
            inc_ref();
        }
    }

223 224
    if (unlikely (rc)) {
        errno_assert (errno == ENOMEM);
225
        rc = in_progress.init ();
226
        errno_assert (rc == 0);
227 228
        errno = ENOMEM;
        return -1;
229 230 231
    }

    in_progress.set_flags (msg_flags);
Jens Auer's avatar
Jens Auer committed
232 233 234 235 236 237
    // 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
238 239 240
    next_step (in_progress.data (), in_progress.size (),
        &v2_decoder_t::message_ready);

241
    return 0;
242 243
}

Jens Auer's avatar
Jens Auer committed
244
int zmq::v2_decoder_t::message_ready (unsigned char const*)
245
{
246 247
    //  Message is completely read. Signal this to the caller
    //  and prepare to decode next message.
248
    next_step (tmpbuf, 1, &v2_decoder_t::flags_ready);
249
    return 1;
250
}