req.cpp 8.92 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2016 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
    You should have received a copy of the GNU Lesser General Public License
27 28 29
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

30
#include "precompiled.hpp"
31
#include "macros.hpp"
32 33
#include "req.hpp"
#include "err.hpp"
34
#include "msg.hpp"
35 36 37
#include "wire.hpp"
#include "random.hpp"
#include "likely.hpp"
38

39 40 41 42
extern "C"
{
    static void free_id (void *data, void *hint)
    {
43
        LIBZMQ_UNUSED (hint);
44 45 46 47
        free (data);
    }
}

48
zmq::req_t::req_t (class ctx_t *parent_, uint32_t tid_, int sid_) :
49
    dealer_t (parent_, tid_, sid_),
50
    receiving_reply (false),
51
    message_begins (true),
52 53
    reply_pipe (NULL),
    request_id_frames_enabled (false),
54
    request_id (generate_random ()),
55
    strict (true)
56
{
57
    options.type = ZMQ_REQ;
58 59 60 61
}

zmq::req_t::~req_t ()
{
Martin Hurton's avatar
Martin Hurton committed
62 63
}

64
int zmq::req_t::xsend (msg_t *msg_)
65 66
{
    //  If we've sent a request and we still haven't got the reply,
67
    //  we can't send another request unless the strict option is disabled.
68
    if (receiving_reply) {
69
        if (strict) {
70 71 72 73 74 75
            errno = EFSM;
            return -1;
        }

        receiving_reply = false;
        message_begins = true;
76 77
    }

78
    //  First part of the request is the request identity.
79
    if (message_begins) {
80 81 82 83 84
        reply_pipe = NULL;

        if (request_id_frames_enabled) {
            request_id++;

85 86
            //  Copy request id before sending (see issue #1695 for details).
            uint32_t *request_id_copy = (uint32_t *) malloc (sizeof (uint32_t));
87 88
            zmq_assert (request_id_copy);

89 90
            *request_id_copy = request_id;

91
            msg_t id;
92 93
            int rc = id.init_data (request_id_copy, sizeof (uint32_t),
                free_id, NULL);
94 95 96 97 98 99 100 101
            errno_assert (rc == 0);
            id.set_flags (msg_t::more);

            rc = dealer_t::sendpipe (&id, &reply_pipe);
            if (rc != 0)
                return -1;
        }

102 103
        msg_t bottom;
        int rc = bottom.init ();
104
        errno_assert (rc == 0);
105
        bottom.set_flags (msg_t::more);
106 107

        rc = dealer_t::sendpipe (&bottom, &reply_pipe);
108
        if (rc != 0)
109
            return -1;
110
        zmq_assert (reply_pipe);
111

112
        message_begins = false;
113

114
        // Eat all currently available messages before the request is fully
115 116 117 118 119 120 121 122 123 124 125 126 127
        // sent. This is done to avoid:
        //   REQ sends request to A, A replies, B replies too.
        //   A's reply was first and matches, that is used.
        //   An hour later REQ sends a request to B. B's old reply is used.
        msg_t drop;
        while (true) {
            rc = drop.init ();
            errno_assert (rc == 0);
            rc = dealer_t::xrecv (&drop);
            if (rc != 0)
                break;
            drop.close ();
        }
128 129
    }

130
    bool more = msg_->flags () & msg_t::more ? true : false;
131

132
    int rc = dealer_t::xsend (msg_);
133 134
    if (rc != 0)
        return rc;
135

136 137 138 139
    //  If the request was fully sent, flip the FSM into reply-receiving state.
    if (!more) {
        receiving_reply = true;
        message_begins = true;
140
    }
141 142 143 144

    return 0;
}

145
int zmq::req_t::xrecv (msg_t *msg_)
146 147
{
    //  If request wasn't send, we can't wait for reply.
148
    if (!receiving_reply) {
149
        errno = EFSM;
150 151 152
        return -1;
    }

153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
    //  Skip messages until one with the right first frames is found.
    while (message_begins) {
        //  If enabled, the first frame must have the correct request_id.
        if (request_id_frames_enabled) {
            int rc = recv_reply_pipe (msg_);
            if (rc != 0)
                return rc;

            if (unlikely (!(msg_->flags () & msg_t::more) ||
                          msg_->size () != sizeof (request_id) ||
                          *static_cast<uint32_t *> (msg_->data ()) != request_id)) {
                //  Skip the remaining frames and try the next message
                while (msg_->flags () & msg_t::more) {
                    rc = recv_reply_pipe (msg_);
                    errno_assert (rc == 0);
                }
                continue;
            }
        }

        //  The next frame must be 0.
        // TODO: Failing this check should also close the connection with the peer!
175
        int rc = recv_reply_pipe (msg_);
176 177
        if (rc != 0)
            return rc;
178

179
        if (unlikely (!(msg_->flags () & msg_t::more) || msg_->size () != 0)) {
180 181 182
            //  Skip the remaining frames and try the next message
            while (msg_->flags () & msg_t::more) {
                rc = recv_reply_pipe (msg_);
183
                errno_assert (rc == 0);
184
            }
185
            continue;
186
        }
187

188
        message_begins = false;
189
    }
190

191
    int rc = recv_reply_pipe (msg_);
192 193 194 195
    if (rc != 0)
        return rc;

    //  If the reply is fully received, flip the FSM into request-sending state.
196
    if (!(msg_->flags () & msg_t::more)) {
197
        receiving_reply = false;
198
        message_begins = true;
199 200
    }

201 202 203
    return 0;
}

204 205
bool zmq::req_t::xhas_in ()
{
206 207
    //  TODO: Duplicates should be removed here.

208
    if (!receiving_reply)
209
        return false;
210

211
    return dealer_t::xhas_in ();
212 213 214 215
}

bool zmq::req_t::xhas_out ()
{
216
    if (receiving_reply)
217 218
        return false;

219
    return dealer_t::xhas_out ();
220 221
}

222
int zmq::req_t::xsetsockopt (int option_, const void *optval_, size_t optvallen_)
223 224
{
    bool is_int = (optvallen_ == sizeof (int));
225
    int value = 0;
226 227
    if (is_int)
        memcpy (&value, optval_, sizeof (int));
228

229
    switch (option_) {
230
        case ZMQ_REQ_CORRELATE:
231
            if (is_int && value >= 0) {
232
                request_id_frames_enabled = (value != 0);
233 234 235 236
                return 0;
            }
            break;

237
        case ZMQ_REQ_RELAXED:
238
            if (is_int && value >= 0) {
239
                strict = (value == 0);
240 241 242 243
                return 0;
            }
            break;

244 245 246 247
        default:
            break;
    }

248 249 250 251 252 253 254 255
    return dealer_t::xsetsockopt (option_, optval_, optvallen_);
}

void zmq::req_t::xpipe_terminated (pipe_t *pipe_)
{
    if (reply_pipe == pipe_)
        reply_pipe = NULL;
    dealer_t::xpipe_terminated (pipe_);
256 257
}

258 259 260 261
int zmq::req_t::recv_reply_pipe (msg_t *msg_)
{
    while (true) {
        pipe_t *pipe = NULL;
262
        int rc = dealer_t::recvpipe (msg_, &pipe);
263 264
        if (rc != 0)
            return rc;
265
        if (!reply_pipe || pipe == reply_pipe)
266 267 268 269
            return 0;
    }
}

270 271
zmq::req_session_t::req_session_t (io_thread_t *io_thread_, bool connect_,
      socket_base_t *socket_, const options_t &options_,
272
      address_t *addr_) :
273
    session_base_t (io_thread_, connect_, socket_, options_, addr_),
274
    state (bottom)
275 276 277 278 279 280
{
}

zmq::req_session_t::~req_session_t ()
{
}
281

282
int zmq::req_session_t::push_msg (msg_t *msg_)
283
{
284 285
    switch (state) {
    case bottom:
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
        if (msg_->flags () == msg_t::more) {
            //  In case option ZMQ_CORRELATE is on, allow request_id to be
            //  transfered as first frame (would be too cumbersome to check
            //  whether the option is actually on or not).
            if (msg_->size () == sizeof (uint32_t)) {
                state = request_id;
                return session_base_t::push_msg (msg_);
            }
            else if (msg_->size () == 0) {
                state = body;
                return session_base_t::push_msg (msg_);
            }
        }
        break;
    case request_id:
301
        if (msg_->flags () == msg_t::more && msg_->size () == 0) {
302
            state = body;
303
            return session_base_t::push_msg (msg_);
304
        }
305 306
        break;
    case body:
307
        if (msg_->flags () == msg_t::more)
308
            return session_base_t::push_msg (msg_);
309
        if (msg_->flags () == 0) {
310
            state = bottom;
311
            return session_base_t::push_msg (msg_);
312
        }
313
        break;
314 315 316 317 318
    }
    errno = EFAULT;
    return -1;
}

Martin Hurton's avatar
Martin Hurton committed
319 320 321
void zmq::req_session_t::reset ()
{
    session_base_t::reset ();
322
    state = bottom;
Martin Hurton's avatar
Martin Hurton committed
323
}