ipc_connecter.cpp 5.16 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 32
#include "ipc_connecter.hpp"

33 34
#if !defined ZMQ_HAVE_WINDOWS && !defined ZMQ_HAVE_OPENVMS                     \
  && !defined ZMQ_HAVE_VXWORKS
35

36 37 38
#include <new>
#include <string>

39
#include "stream_engine.hpp"
40 41 42
#include "io_thread.hpp"
#include "random.hpp"
#include "err.hpp"
43
#include "ip.hpp"
44 45
#include "address.hpp"
#include "ipc_address.hpp"
46
#include "session_base.hpp"
47 48 49 50

#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
51
#include <sys/un.h>
52

53

54
zmq::ipc_connecter_t::ipc_connecter_t (class io_thread_t *io_thread_,
55 56
                                       class session_base_t *session_,
                                       const options_t &options_,
57
                                       address_t *addr_,
58
                                       bool delayed_start_) :
59 60
    stream_connecter_base_t (
      io_thread_, session_, options_, addr_, delayed_start_)
61
{
62
    zmq_assert (_addr->protocol == protocol_name::ipc);
63 64 65 66 67
}

void zmq::ipc_connecter_t::out_event ()
{
    fd_t fd = connect ();
68
    rm_handle ();
69 70 71 72

    //  Handle the error condition by attempt to reconnect.
    if (fd == retired_fd) {
        close ();
73
        add_reconnect_timer ();
74 75 76
        return;
    }

77
    create_engine (fd, get_socket_name<ipc_address_t> (fd, socket_end_local));
78 79 80 81 82 83 84 85 86
}

void zmq::ipc_connecter_t::start_connecting ()
{
    //  Open the connecting socket.
    int rc = open ();

    //  Connect may succeed in synchronous manner.
    if (rc == 0) {
87
        _handle = add_fd (_s);
88 89 90
        out_event ();
    }

91
    //  Connection establishment may be delayed. Poll for its completion.
92
    else if (rc == -1 && errno == EINPROGRESS) {
93 94
        _handle = add_fd (_s);
        set_pollout (_handle);
95 96
        _socket->event_connect_delayed (
          make_unconnected_connect_endpoint_pair (_endpoint), zmq_errno ());
97 98 99 100

        // TODO, tcp_connecter_t adds a connect timer in this case; maybe this
        // should be done here as well (and then this could be pulled up to
        // stream_connecter_base_t).
101 102 103
    }

    //  Handle any other error condition by eventual reconnect.
104
    else {
105
        if (_s != retired_fd)
106
            close ();
107 108
        add_reconnect_timer ();
    }
109 110 111 112
}

int zmq::ipc_connecter_t::open ()
{
113
    zmq_assert (_s == retired_fd);
114 115

    //  Create the socket.
116 117
    _s = open_socket (AF_UNIX, SOCK_STREAM, 0);
    if (_s == -1)
118 119
        return -1;

120
    //  Set the non-blocking flag.
121
    unblock_socket (_s);
122 123

    //  Connect to the remote peer.
124 125
    int rc = ::connect (_s, _addr->resolved.ipc_addr->addr (),
                        _addr->resolved.ipc_addr->addrlen ());
126

127
    //  Connect was successful immediately.
128 129
    if (rc == 0)
        return 0;
130

131 132 133 134 135 136
    //  Translate other error codes indicating asynchronous connect has been
    //  launched to a uniform EINPROGRESS.
    if (rc == -1 && errno == EINTR) {
        errno = EINPROGRESS;
        return -1;
    }
137

138
    //  Forward the error.
139 140 141 142 143 144 145 146
    return -1;
}

zmq::fd_t zmq::ipc_connecter_t::connect ()
{
    //  Following code should handle both Berkeley-derived socket
    //  implementations and Solaris.
    int err = 0;
147
    zmq_socklen_t len = static_cast<zmq_socklen_t> (sizeof (err));
148
    int rc = getsockopt (_s, SOL_SOCKET, SO_ERROR,
149
                         reinterpret_cast<char *> (&err), &len);
150 151 152
    if (rc == -1) {
        if (errno == ENOPROTOOPT)
            errno = 0;
153
        err = errno;
154
    }
155 156 157 158
    if (err != 0) {
        //  Assert if the error was caused by 0MQ bug.
        //  Networking problems are OK. No need to assert.
        errno = err;
159 160 161
        errno_assert (errno == ECONNREFUSED || errno == ECONNRESET
                      || errno == ETIMEDOUT || errno == EHOSTUNREACH
                      || errno == ENETUNREACH || errno == ENETDOWN);
162 163 164 165

        return retired_fd;
    }

166 167
    fd_t result = _s;
    _s = retired_fd;
168 169 170 171
    return result;
}

#endif