req.cpp 8.88 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 87 88
            //  Copy request id before sending (see issue #1695 for details).
            uint32_t *request_id_copy = (uint32_t *) malloc (sizeof (uint32_t));
            *request_id_copy = request_id;

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

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

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

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

110
        message_begins = false;
111

112
        // Eat all currently available messages before the request is fully
113 114 115 116 117 118 119 120 121 122 123 124 125
        // 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 ();
        }
126 127
    }

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

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

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

    return 0;
}

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

151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
    //  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!
173
        int rc = recv_reply_pipe (msg_);
174 175
        if (rc != 0)
            return rc;
176

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

186
        message_begins = false;
187
    }
188

189
    int rc = recv_reply_pipe (msg_);
190 191 192 193
    if (rc != 0)
        return rc;

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

199 200 201
    return 0;
}

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

206
    if (!receiving_reply)
207
        return false;
208

209
    return dealer_t::xhas_in ();
210 211 212 213
}

bool zmq::req_t::xhas_out ()
{
214
    if (receiving_reply)
215 216
        return false;

217
    return dealer_t::xhas_out ();
218 219
}

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

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

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

242 243 244 245
        default:
            break;
    }

246 247 248 249 250 251 252 253
    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_);
254 255
}

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

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

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

280
int zmq::req_session_t::push_msg (msg_t *msg_)
281
{
282 283
    switch (state) {
    case bottom:
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
        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:
299
        if (msg_->flags () == msg_t::more && msg_->size () == 0) {
300
            state = body;
301
            return session_base_t::push_msg (msg_);
302
        }
303 304
        break;
    case body:
305
        if (msg_->flags () == msg_t::more)
306
            return session_base_t::push_msg (msg_);
307
        if (msg_->flags () == 0) {
308
            state = bottom;
309
            return session_base_t::push_msg (msg_);
310
        }
311
        break;
312 313 314 315 316
    }
    errno = EFAULT;
    return -1;
}

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