2009-07-29 12:07:54 +02:00
|
|
|
/*
|
2011-10-31 16:20:30 +01:00
|
|
|
Copyright (c) 2009-2011 250bpm s.r.o.
|
2011-03-02 16:30:40 +01:00
|
|
|
Copyright (c) 2007-2011 iMatix Corporation
|
|
|
|
Copyright (c) 2007-2011 Other contributors as noted in the AUTHORS file
|
2009-07-29 12:07:54 +02:00
|
|
|
|
|
|
|
This file is part of 0MQ.
|
|
|
|
|
|
|
|
0MQ is free software; you can redistribute it and/or modify it under
|
2010-10-30 15:08:28 +02:00
|
|
|
the terms of the GNU Lesser General Public License as published by
|
2009-07-29 12:07:54 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
0MQ 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
|
2010-10-30 15:08:28 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2010-10-30 15:08:28 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2009-07-29 12:07:54 +02:00
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ip.hpp"
|
|
|
|
#include "err.hpp"
|
2011-04-21 22:27:48 +02:00
|
|
|
#include "platform.hpp"
|
2009-07-29 12:07:54 +02:00
|
|
|
|
2011-08-18 17:40:42 +02:00
|
|
|
#if defined ZMQ_HAVE_WINDOWS
|
|
|
|
#include "windows.hpp"
|
|
|
|
#else
|
2011-07-29 09:37:43 +02:00
|
|
|
#include <fcntl.h>
|
2011-08-18 17:40:42 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
2011-08-18 21:16:22 +02:00
|
|
|
#include <netinet/in.h>
|
2011-08-18 17:40:42 +02:00
|
|
|
#include <netinet/tcp.h>
|
2011-07-29 09:37:43 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined ZMQ_HAVE_OPENVMS
|
|
|
|
#include <ioctl.h>
|
|
|
|
#endif
|
|
|
|
|
2011-09-02 15:34:12 +02:00
|
|
|
zmq::fd_t zmq::open_socket (int domain_, int type_, int protocol_)
|
|
|
|
{
|
|
|
|
// Setting this option result in sane behaviour when exec() functions
|
|
|
|
// are used. Old sockets are closed and don't block TCP ports etc.
|
2011-10-26 11:26:00 +02:00
|
|
|
#if defined ZMQ_HAVE_SOCK_CLOEXEC
|
2011-09-02 15:34:12 +02:00
|
|
|
type_ |= SOCK_CLOEXEC;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
fd_t s = socket (domain_, type_, protocol_);
|
|
|
|
if (s == retired_fd)
|
|
|
|
return retired_fd;
|
|
|
|
|
|
|
|
// If there's no SOCK_CLOEXEC, let's try the second best option. Note that
|
|
|
|
// race condition can cause socket not to be closed (if fork happens
|
|
|
|
// between socket creation and this point).
|
2011-10-26 11:26:00 +02:00
|
|
|
#if !defined ZMQ_HAVE_SOCK_CLOEXEC && defined FD_CLOEXEC
|
2011-09-02 15:34:12 +02:00
|
|
|
int rc = fcntl (s, F_SETFD, FD_CLOEXEC);
|
|
|
|
errno_assert (rc != -1);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2011-07-28 15:13:04 +02:00
|
|
|
void zmq::tune_tcp_socket (fd_t s_)
|
|
|
|
{
|
|
|
|
// 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;
|
|
|
|
int rc = setsockopt (s_, IPPROTO_TCP, TCP_NODELAY, (char*) &nodelay,
|
|
|
|
sizeof (int));
|
|
|
|
#ifdef ZMQ_HAVE_WINDOWS
|
|
|
|
wsa_assert (rc != SOCKET_ERROR);
|
|
|
|
#else
|
|
|
|
errno_assert (rc == 0);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ZMQ_HAVE_OPENVMS
|
|
|
|
// Disable delayed acknowledgements as they hurt latency is serious manner.
|
|
|
|
int nodelack = 1;
|
|
|
|
rc = setsockopt (s_, IPPROTO_TCP, TCP_NODELACK, (char*) &nodelack,
|
|
|
|
sizeof (int));
|
|
|
|
errno_assert (rc != SOCKET_ERROR);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-07-29 09:37:43 +02:00
|
|
|
void zmq::unblock_socket (fd_t s_)
|
|
|
|
{
|
|
|
|
#ifdef ZMQ_HAVE_WINDOWS
|
|
|
|
u_long nonblock = 1;
|
|
|
|
int rc = ioctlsocket (s_, FIONBIO, &nonblock);
|
|
|
|
wsa_assert (rc != SOCKET_ERROR);
|
|
|
|
#elif ZMQ_HAVE_OPENVMS
|
|
|
|
int nonblock = 1;
|
|
|
|
int rc = ioctl (s_, FIONBIO, &nonblock);
|
|
|
|
errno_assert (rc != -1);
|
|
|
|
#else
|
|
|
|
int flags = fcntl (s_, F_GETFL, 0);
|
|
|
|
if (flags == -1)
|
|
|
|
flags = 0;
|
|
|
|
int rc = fcntl (s_, F_SETFL, flags | O_NONBLOCK);
|
|
|
|
errno_assert (rc != -1);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2011-08-15 08:56:00 +02:00
|
|
|
void zmq::enable_ipv4_mapping (fd_t s_)
|
|
|
|
{
|
|
|
|
#ifdef IPV6_V6ONLY
|
|
|
|
#ifdef ZMQ_HAVE_WINDOWS
|
|
|
|
DWORD flag = 0;
|
|
|
|
#else
|
|
|
|
int flag = 0;
|
|
|
|
#endif
|
|
|
|
int rc = setsockopt (s_, IPPROTO_IPV6, IPV6_V6ONLY, (const char*) &flag,
|
|
|
|
sizeof (flag));
|
|
|
|
#ifdef ZMQ_HAVE_WINDOWS
|
|
|
|
wsa_assert (rc != SOCKET_ERROR);
|
|
|
|
#else
|
|
|
|
errno_assert (rc == 0);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
2011-07-28 15:13:04 +02:00
|
|
|
|