tcp.cpp 11.1 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 27 28 29

    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/>.
*/

30
#include "precompiled.hpp"
31
#include "macros.hpp"
32 33 34 35
#include "ip.hpp"
#include "tcp.hpp"
#include "err.hpp"

36
#if !defined ZMQ_HAVE_WINDOWS
37 38 39 40 41 42 43 44 45 46 47
#include <fcntl.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#endif

#if defined ZMQ_HAVE_OPENVMS
#include <ioctl.h>
#endif

48
int zmq::tune_tcp_socket (fd_t s_)
49 50 51 52 53
{
    //  Disable Nagle's algorithm. We are doing data batching on 0MQ level,
    //  so using Nagle wouldn't improve throughput in anyway, but it would
    //  hurt latency.
    int nodelay = 1;
54 55
    int rc = setsockopt (s_, IPPROTO_TCP, TCP_NODELAY, (char *) &nodelay,
                         sizeof (int));
56
    tcp_assert_tuning_error (s_, rc);
57 58
    if (rc != 0)
        return rc;
59 60

#ifdef ZMQ_HAVE_OPENVMS
61
    //  Disable delayed acknowledgements as they hurt latency significantly.
62
    int nodelack = 1;
63 64
    rc = setsockopt (s_, IPPROTO_TCP, TCP_NODELACK, (char *) &nodelack,
                     sizeof (int));
65
    tcp_assert_tuning_error (s_, rc);
66
#endif
67
    return rc;
68 69
}

70
int zmq::set_tcp_send_buffer (fd_t sockfd_, int bufsize_)
71 72
{
    const int rc = setsockopt (sockfd_, SOL_SOCKET, SO_SNDBUF,
73
                               (char *) &bufsize_, sizeof bufsize_);
74
    tcp_assert_tuning_error (sockfd_, rc);
75
    return rc;
76 77
}

78
int zmq::set_tcp_receive_buffer (fd_t sockfd_, int bufsize_)
79 80
{
    const int rc = setsockopt (sockfd_, SOL_SOCKET, SO_RCVBUF,
81
                               (char *) &bufsize_, sizeof bufsize_);
82
    tcp_assert_tuning_error (sockfd_, rc);
83
    return rc;
84 85
}

86 87 88 89 90
int zmq::tune_tcp_keepalives (fd_t s_,
                              int keepalive_,
                              int keepalive_cnt_,
                              int keepalive_idle_,
                              int keepalive_intvl_)
91
{
92
    // These options are used only under certain #ifdefs below.
93 94 95 96
    LIBZMQ_UNUSED (keepalive_);
    LIBZMQ_UNUSED (keepalive_cnt_);
    LIBZMQ_UNUSED (keepalive_idle_);
    LIBZMQ_UNUSED (keepalive_intvl_);
97 98

    // If none of the #ifdefs apply, then s_ is unused.
99
    LIBZMQ_UNUSED (s_);
100

101 102
    //  Tuning TCP keep-alives if platform allows it
    //  All values = -1 means skip and leave it for OS
103
#ifdef ZMQ_HAVE_WINDOWS
104 105 106
    if (keepalive_ != -1) {
        tcp_keepalive keepalive_opts;
        keepalive_opts.onoff = keepalive_;
107 108 109 110
        keepalive_opts.keepalivetime =
          keepalive_idle_ != -1 ? keepalive_idle_ * 1000 : 7200000;
        keepalive_opts.keepaliveinterval =
          keepalive_intvl_ != -1 ? keepalive_intvl_ * 1000 : 1000;
111
        DWORD num_bytes_returned;
112
        int rc = WSAIoctl (s_, SIO_KEEPALIVE_VALS, &keepalive_opts,
113 114
                           sizeof (keepalive_opts), NULL, 0,
                           &num_bytes_returned, NULL, NULL);
115
        tcp_assert_tuning_error (s_, rc);
116 117
        if (rc == SOCKET_ERROR)
            return rc;
118
    }
119
#else
120 121
#ifdef ZMQ_HAVE_SO_KEEPALIVE
    if (keepalive_ != -1) {
122 123
        int rc = setsockopt (s_, SOL_SOCKET, SO_KEEPALIVE, (char *) &keepalive_,
                             sizeof (int));
124
        tcp_assert_tuning_error (s_, rc);
125 126
        if (rc != 0)
            return rc;
127 128 129

#ifdef ZMQ_HAVE_TCP_KEEPCNT
        if (keepalive_cnt_ != -1) {
130 131
            int rc = setsockopt (s_, IPPROTO_TCP, TCP_KEEPCNT, &keepalive_cnt_,
                                 sizeof (int));
132
            tcp_assert_tuning_error (s_, rc);
133 134
            if (rc != 0)
                return rc;
135 136 137 138 139
        }
#endif // ZMQ_HAVE_TCP_KEEPCNT

#ifdef ZMQ_HAVE_TCP_KEEPIDLE
        if (keepalive_idle_ != -1) {
140
            int rc = setsockopt (s_, IPPROTO_TCP, TCP_KEEPIDLE,
141
                                 &keepalive_idle_, sizeof (int));
142
            tcp_assert_tuning_error (s_, rc);
143 144
            if (rc != 0)
                return rc;
145 146 147 148
        }
#else // ZMQ_HAVE_TCP_KEEPIDLE
#ifdef ZMQ_HAVE_TCP_KEEPALIVE
        if (keepalive_idle_ != -1) {
149
            int rc = setsockopt (s_, IPPROTO_TCP, TCP_KEEPALIVE,
150
                                 &keepalive_idle_, sizeof (int));
151
            tcp_assert_tuning_error (s_, rc);
152 153
            if (rc != 0)
                return rc;
154 155 156 157 158 159
        }
#endif // ZMQ_HAVE_TCP_KEEPALIVE
#endif // ZMQ_HAVE_TCP_KEEPIDLE

#ifdef ZMQ_HAVE_TCP_KEEPINTVL
        if (keepalive_intvl_ != -1) {
160
            int rc = setsockopt (s_, IPPROTO_TCP, TCP_KEEPINTVL,
161
                                 &keepalive_intvl_, sizeof (int));
162
            tcp_assert_tuning_error (s_, rc);
163 164
            if (rc != 0)
                return rc;
165 166 167 168
        }
#endif // ZMQ_HAVE_TCP_KEEPINTVL
    }
#endif // ZMQ_HAVE_SO_KEEPALIVE
169
#endif // ZMQ_HAVE_WINDOWS
170

171
    return 0;
172
}
173

174
int zmq::tune_tcp_maxrt (fd_t sockfd_, int timeout_)
175 176
{
    if (timeout_ <= 0)
177
        return 0;
178

179 180
    LIBZMQ_UNUSED (sockfd_);

181
#if defined(ZMQ_HAVE_WINDOWS) && defined(TCP_MAXRT)
182
    // msdn says it's supported in >= Vista, >= Windows Server 2003
183 184 185
    timeout_ /= 1000; // in seconds
    int rc = setsockopt (sockfd_, IPPROTO_TCP, TCP_MAXRT, (char *) &timeout_,
                         sizeof (timeout_));
186
    tcp_assert_tuning_error (sockfd_, rc);
187
    return rc;
188
// FIXME: should be ZMQ_HAVE_TCP_USER_TIMEOUT
189
#elif defined(TCP_USER_TIMEOUT)
190
    int rc = setsockopt (sockfd_, IPPROTO_TCP, TCP_USER_TIMEOUT, &timeout_,
191
                         sizeof (timeout_));
192
    tcp_assert_tuning_error (sockfd_, rc);
193
    return rc;
194
#endif
195
    return 0;
196 197
}

198
int zmq::tcp_write (fd_t s_, const void *data_, size_t size_)
199 200 201
{
#ifdef ZMQ_HAVE_WINDOWS

202
    int nbytes = send (s_, (char *) data_, (int) size_, 0);
203 204 205

    //  If not a single byte can be written to the socket in non-blocking mode
    //  we'll get an error (this may happen during the speculative write).
206
    const int last_error = WSAGetLastError ();
207
    if (nbytes == SOCKET_ERROR && last_error == WSAEWOULDBLOCK)
208 209 210
        return 0;

    //  Signalise peer failure.
211 212 213 214
    if (nbytes == SOCKET_ERROR
        && (last_error == WSAENETDOWN || last_error == WSAENETRESET
            || last_error == WSAEHOSTUNREACH || last_error == WSAECONNABORTED
            || last_error == WSAETIMEDOUT || last_error == WSAECONNRESET))
215 216
        return -1;

217 218 219
    //  Circumvent a Windows bug:
    //  See https://support.microsoft.com/en-us/kb/201213
    //  See https://zeromq.jira.com/browse/LIBZMQ-195
220
    if (nbytes == SOCKET_ERROR && last_error == WSAENOBUFS)
221 222
        return 0;

223 224 225 226 227 228 229 230 231
    wsa_assert (nbytes != SOCKET_ERROR);
    return nbytes;

#else
    ssize_t nbytes = send (s_, data_, size_, 0);

    //  Several errors are OK. When speculative write is being done we may not
    //  be able to write a single byte from the socket. Also, SIGSTOP issued
    //  by a debugging tool can result in EINTR error.
232 233
    if (nbytes == -1
        && (errno == EAGAIN || errno == EWOULDBLOCK || errno == EINTR))
234 235 236 237
        return 0;

    //  Signalise peer failure.
    if (nbytes == -1) {
238 239 240 241
        errno_assert (errno != EACCES && errno != EBADF && errno != EDESTADDRREQ
                      && errno != EFAULT && errno != EISCONN
                      && errno != EMSGSIZE && errno != ENOMEM
                      && errno != ENOTSOCK && errno != EOPNOTSUPP);
242 243 244
        return -1;
    }

245
    return static_cast<int> (nbytes);
246 247 248 249 250 251 252 253

#endif
}

int zmq::tcp_read (fd_t s_, void *data_, size_t size_)
{
#ifdef ZMQ_HAVE_WINDOWS

254
    const int rc = recv (s_, (char *) data_, (int) size_, 0);
255 256 257

    //  If not a single byte can be read from the socket in non-blocking mode
    //  we'll get an error (this may happen during the speculative read).
258
    if (rc == SOCKET_ERROR) {
259
        const int last_error = WSAGetLastError ();
260 261
        if (last_error == WSAEWOULDBLOCK) {
            errno = EAGAIN;
262 263 264 265 266 267
        } else {
            wsa_assert (
              last_error == WSAENETDOWN || last_error == WSAENETRESET
              || last_error == WSAECONNABORTED || last_error == WSAETIMEDOUT
              || last_error == WSAECONNRESET || last_error == WSAECONNREFUSED
              || last_error == WSAENOTCONN);
268 269
            errno = wsa_error_to_errno (last_error);
        }
270 271
    }

272
    return rc == SOCKET_ERROR ? -1 : rc;
273 274 275 276 277 278 279 280 281

#else

    const ssize_t rc = recv (s_, data_, size_, 0);

    //  Several errors are OK. When speculative read is being done we may not
    //  be able to read a single byte from the socket. Also, SIGSTOP issued
    //  by a debugging tool can result in EINTR error.
    if (rc == -1) {
282 283
        errno_assert (errno != EBADF && errno != EFAULT && errno != ENOMEM
                      && errno != ENOTSOCK);
284 285 286 287
        if (errno == EWOULDBLOCK || errno == EINTR)
            errno = EAGAIN;
    }

288
    return static_cast<int> (rc);
289 290 291

#endif
}
292

293
void zmq::tcp_assert_tuning_error (zmq::fd_t s_, int rc_)
294 295 296 297 298 299 300 301 302 303 304
{
    if (rc_ == 0)
        return;

    //  Check whether an error occurred
    int err = 0;
#ifdef ZMQ_HAVE_HPUX
    int len = sizeof err;
#else
    socklen_t len = sizeof err;
#endif
305 306 307

    int rc = getsockopt (s_, SOL_SOCKET, SO_ERROR, (char *) &err, &len);

308 309 310 311 312
    //  Assert if the error was caused by 0MQ bug.
    //  Networking problems are OK. No need to assert.
#ifdef ZMQ_HAVE_WINDOWS
    zmq_assert (rc == 0);
    if (err != 0) {
313 314 315 316 317 318
        wsa_assert (err == WSAECONNREFUSED || err == WSAECONNRESET
                    || err == WSAECONNABORTED || err == WSAEINTR
                    || err == WSAETIMEDOUT || err == WSAEHOSTUNREACH
                    || err == WSAENETUNREACH || err == WSAENETDOWN
                    || err == WSAENETRESET || err == WSAEACCES
                    || err == WSAEINVAL || err == WSAEADDRINUSE);
319 320 321 322 323 324 325 326
    }
#else
    //  Following code should handle both Berkeley-derived socket
    //  implementations and Solaris.
    if (rc == -1)
        err = errno;
    if (err != 0) {
        errno = err;
327 328 329 330 331
        errno_assert (errno == ECONNREFUSED || errno == ECONNRESET
                      || errno == ECONNABORTED || errno == EINTR
                      || errno == ETIMEDOUT || errno == EHOSTUNREACH
                      || errno == ENETUNREACH || errno == ENETDOWN
                      || errno == ENETRESET || errno == EINVAL);
332 333 334
    }
#endif
}