tipc_connecter.cpp 5.19 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 31
#include "precompiled.hpp"

32 33
#include "tipc_connecter.hpp"

34
#if defined ZMQ_HAVE_TIPC
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

#include <new>
#include <string>

#include "stream_engine.hpp"
#include "io_thread.hpp"
#include "platform.hpp"
#include "random.hpp"
#include "err.hpp"
#include "ip.hpp"
#include "address.hpp"
#include "tipc_address.hpp"
#include "session_base.hpp"

#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
52 53 54
#ifdef ZMQ_HAVE_VXWORKS
#include <sockLib.h>
#endif
55 56

zmq::tipc_connecter_t::tipc_connecter_t (class io_thread_t *io_thread_,
57 58
                                         class session_base_t *session_,
                                         const options_t &options_,
59
                                         address_t *addr_,
60
                                         bool delayed_start_) :
61 62
    stream_connecter_base_t (
      io_thread_, session_, options_, addr_, delayed_start_)
63
{
64
    zmq_assert (_addr->protocol == "tipc");
65 66 67 68 69
}

void zmq::tipc_connecter_t::out_event ()
{
    fd_t fd = connect ();
70
    rm_handle ();
71 72 73 74

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

79
    create_engine (fd, get_socket_name<tipc_address_t> (fd, socket_end_local));
80 81 82 83 84 85 86 87 88
}

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

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

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

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

int zmq::tipc_connecter_t::open ()
{
111
    zmq_assert (_s == retired_fd);
112

113
    // Cannot connect to random tipc addresses
114
    if (_addr->resolved.tipc_addr->is_random ()) {
115 116 117
        errno = EINVAL;
        return -1;
    }
118
    //  Create the socket.
119 120
    _s = open_socket (AF_TIPC, SOCK_STREAM, 0);
    if (_s == -1)
121 122 123
        return -1;

    //  Set the non-blocking flag.
124
    unblock_socket (_s);
125
    //  Connect to the remote peer.
126 127 128 129
#ifdef ZMQ_HAVE_VXWORKS
    int rc = ::connect (s, (sockaddr *) addr->resolved.tipc_addr->addr (),
                        addr->resolved.tipc_addr->addrlen ());
#else
130 131
    int rc = ::connect (_s, _addr->resolved.tipc_addr->addr (),
                        _addr->resolved.tipc_addr->addrlen ());
132
#endif
133
    //  Connect was successful immediately.
134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
    if (rc == 0)
        return 0;

    //  Translate other error codes indicating asynchronous connect has been
    //  launched to a uniform EINPROGRESS.
    if (rc == -1 && errno == EINTR) {
        errno = EINPROGRESS;
        return -1;
    }
    //  Forward the error.
    return -1;
}

zmq::fd_t zmq::tipc_connecter_t::connect ()
{
    //  Following code should handle both Berkeley-derived socket
    //  implementations and Solaris.
    int err = 0;
152
#ifdef ZMQ_HAVE_VXWORKS
153 154
    int len = sizeof (err);
#else
155
    socklen_t len = sizeof (err);
156
#endif
157
    int rc = getsockopt (_s, SOL_SOCKET, SO_ERROR, (char *) &err, &len);
158 159 160 161 162 163
    if (rc == -1)
        err = errno;
    if (err != 0) {
        //  Assert if the error was caused by 0MQ bug.
        //  Networking problems are OK. No need to assert.
        errno = err;
164 165 166
        errno_assert (errno == ECONNREFUSED || errno == ECONNRESET
                      || errno == ETIMEDOUT || errno == EHOSTUNREACH
                      || errno == ENETUNREACH || errno == ENETDOWN);
167 168 169

        return retired_fd;
    }
170 171
    fd_t result = _s;
    _s = retired_fd;
172 173 174 175
    return result;
}

#endif