test_srcfd.cpp 3.55 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2017 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 30 31 32 33 34

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

#include "testutil.hpp"

#define MSG_SIZE 20

#ifdef _WIN32
35 36
#include <winsock2.h>
#include <ws2tcpip.h>
37 38 39 40 41 42 43 44 45
#else
#include <sys/types.h>
#include <sys/socket.h>
#include <netdb.h>
#endif

int main (void)
{
    int rc;
46 47
    size_t len = MAX_SOCKET_STRING;
    char my_endpoint[MAX_SOCKET_STRING];
48

49
    setup_test_environment ();
50 51 52 53 54 55 56 57 58
    //  Create the infrastructure
    void *ctx = zmq_ctx_new ();
    assert (ctx);

    void *rep = zmq_socket (ctx, ZMQ_REP);
    assert (rep);
    void *req = zmq_socket (ctx, ZMQ_REQ);
    assert (req);

59
    rc = zmq_bind (rep, "tcp://127.0.0.1:*");
60 61
    assert (rc == 0);

62
    rc = zmq_getsockopt (rep, ZMQ_LAST_ENDPOINT, my_endpoint, &len);
63 64
    assert (rc == 0);

65
    rc = zmq_connect (req, my_endpoint);
66 67 68
    assert (rc == 0);

    char tmp[MSG_SIZE];
69
    memset (tmp, 0, MSG_SIZE);
70
    zmq_send (req, tmp, MSG_SIZE, 0);
71 72

    zmq_msg_t msg;
73
    rc = zmq_msg_init (&msg);
74 75
    assert (rc == 0);

76 77
    zmq_recvmsg (rep, &msg, 0);
    assert (zmq_msg_size (&msg) == MSG_SIZE);
78 79

    // get the messages source file descriptor
80 81
    int src_fd = zmq_msg_get (&msg, ZMQ_SRCFD);
    assert (src_fd >= 0);
82

83
    rc = zmq_msg_close (&msg);
84 85
    assert (rc == 0);

86
    // get the remote endpoint
87
    struct sockaddr_storage ss;
88 89 90
#ifdef ZMQ_HAVE_HPUX
    int addrlen = sizeof ss;
#else
91
    socklen_t addrlen = sizeof ss;
92
#endif
93
    rc = getpeername (src_fd, (struct sockaddr *) &ss, &addrlen);
94 95
    assert (rc == 0);

96 97 98
    char host[NI_MAXHOST];
    rc = getnameinfo ((struct sockaddr *) &ss, addrlen, host, sizeof host, NULL,
                      0, NI_NUMERICHOST);
99 100
    assert (rc == 0);

101
    // assert it is localhost which connected
102
    assert (strcmp (host, "127.0.0.1") == 0);
103 104 105 106 107 108

    rc = zmq_close (rep);
    assert (rc == 0);
    rc = zmq_close (req);
    assert (rc == 0);

109
    // sleep a bit for the socket to be freed
110
    msleep (SETTLE_TIME);
111 112

    // getting name from closed socket will fail
113
    rc = getpeername (src_fd, (struct sockaddr *) &ss, &addrlen);
114 115
#ifdef ZMQ_HAVE_WINDOWS
    assert (rc == SOCKET_ERROR);
116
    assert (WSAGetLastError () == WSAENOTSOCK);
117
#else
118 119
    assert (rc == -1);
    assert (errno == EBADF);
120
#endif
121

122 123 124
    rc = zmq_ctx_term (ctx);
    assert (rc == 0);

125
    return 0;
126
}