v1_decoder.cpp 4.85 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

    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>
32
#include <limits>
33 34

#include "platform.hpp"
35
#if defined ZMQ_HAVE_WINDOWS
36 37 38
#include "windows.hpp"
#endif

39
#include "decoder.hpp"
40 41 42 43 44
#include "v1_decoder.hpp"
#include "likely.hpp"
#include "wire.hpp"
#include "err.hpp"

45
zmq::v1_decoder_t::v1_decoder_t (size_t bufsize_, int64_t maxmsgsize_) :
Jens Auer's avatar
Jens Auer committed
46 47
    c_single_allocator(bufsize_),
    decoder_base_t <v1_decoder_t> (this),
48 49 50 51 52
    maxmsgsize (maxmsgsize_)
{
    int rc = in_progress.init ();
    errno_assert (rc == 0);

53 54
    //  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);
55 56 57 58 59 60 61 62
}

zmq::v1_decoder_t::~v1_decoder_t ()
{
    int rc = in_progress.close ();
    errno_assert (rc == 0);
}

Jens Auer's avatar
Jens Auer committed
63
int zmq::v1_decoder_t::one_byte_size_ready (unsigned char const*)
64
{
65 66 67 68 69 70
    //  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 {
71

72 73
        //  There has to be at least one byte (the flags) in the message).
        if (!*tmpbuf) {
74 75 76 77 78 79 80
            errno = EPROTO;
            return -1;
        }

        if (maxmsgsize >= 0 && (int64_t) (*tmpbuf - 1) > maxmsgsize) {
            errno = EMSGSIZE;
            return -1;
81 82
        }

83 84 85
        int rc = in_progress.close();
        assert(rc == 0);
        rc = in_progress.init_size (*tmpbuf - 1);
86 87
        if (rc != 0) {
            errno_assert (errno == ENOMEM);
88 89
            rc = in_progress.init ();
            errno_assert (rc == 0);
90 91
            errno = ENOMEM;
            return -1;
92
        }
93

94 95
        next_step (tmpbuf, 1, &v1_decoder_t::flags_ready);
    }
96
    return 0;
97 98
}

Jens Auer's avatar
Jens Auer committed
99
int zmq::v1_decoder_t::eight_byte_size_ready (unsigned char const*)
100
{
101 102 103
    //  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);
104

105 106
    //  There has to be at least one byte (the flags) in the message).
    if (payload_length == 0) {
107 108
        errno = EPROTO;
        return -1;
109
    }
110 111

    //  Message size must not exceed the maximum allowed size.
112
    if (maxmsgsize >= 0 && payload_length - 1 > (uint64_t) maxmsgsize) {
113 114
        errno = EMSGSIZE;
        return -1;
115
    }
116

117 118
    //  Message size must fit within range of size_t data type.
    if (payload_length - 1 > std::numeric_limits <size_t>::max ()) {
119 120
        errno = EMSGSIZE;
        return -1;
121 122 123
    }

    const size_t msg_size = static_cast <size_t> (payload_length - 1);
124

125 126 127
    int rc = in_progress.close();
    assert(rc == 0);
    rc = in_progress.init_size (msg_size);
128
    if (rc != 0) {
129
        errno_assert (errno == ENOMEM);
130
        rc = in_progress.init ();
131
        errno_assert (rc == 0);
132 133
        errno = ENOMEM;
        return -1;
134 135
    }

136
    next_step (tmpbuf, 1, &v1_decoder_t::flags_ready);
137
    return 0;
138 139
}

Jens Auer's avatar
Jens Auer committed
140
int zmq::v1_decoder_t::flags_ready (unsigned char const*)
141 142 143 144
{
    //  Store the flags from the wire into the message structure.
    in_progress.set_flags (tmpbuf [0] & msg_t::more);

145 146 147
    next_step (in_progress.data (), in_progress.size (),
        &v1_decoder_t::message_ready);

148
    return 0;
149 150
}

Jens Auer's avatar
Jens Auer committed
151
int zmq::v1_decoder_t::message_ready (unsigned char const*)
152 153 154
{
    //  Message is completely read. Push it further and start reading
    //  new message. (in_progress is a 0-byte message after this point.)
155
    next_step (tmpbuf, 1, &v1_decoder_t::one_byte_size_ready);
156
    return 1;
157
}