test_security_null.cpp 5.5 KB
Newer Older
1
/*
2
    Copyright (c) 2007-2014 Contributors as noted in the AUTHORS file
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20

    This file is part of 0MQ.

    0MQ is free software; you can redistribute it and/or modify it under
    the terms of the GNU Lesser General Public License as published by
    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
    GNU Lesser General Public License for more details.

    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"
21 22
#if defined (ZMQ_HAVE_WINDOWS)
#   include <winsock2.h>
23
#   include <ws2tcpip.h>
24
#   include <stdexcept>
25
#   define close closesocket
26 27 28 29 30 31
#else
#   include <sys/socket.h>
#   include <netinet/in.h>
#   include <arpa/inet.h>
#   include <unistd.h>
#endif
32

33
static void
34
zap_handler (void *handler)
35 36 37
{
    //  Process ZAP requests forever
    while (true) {
38
        char *version = s_recv (handler);
39 40
        if (!version)
            break;          //  Terminating
41

42 43 44 45 46
        char *sequence = s_recv (handler);
        char *domain = s_recv (handler);
        char *address = s_recv (handler);
        char *identity = s_recv (handler);
        char *mechanism = s_recv (handler);
47 48 49

        assert (streq (version, "1.0"));
        assert (streq (mechanism, "NULL"));
50
        
51 52
        s_sendmore (handler, version);
        s_sendmore (handler, sequence);
53 54 55 56 57 58 59 60 61 62 63 64
        if (streq (domain, "TEST")) {
            s_sendmore (handler, "200");
            s_sendmore (handler, "OK");
            s_sendmore (handler, "anonymous");
            s_send     (handler, "");
        }
        else {
            s_sendmore (handler, "400");
            s_sendmore (handler, "BAD DOMAIN");
            s_sendmore (handler, "");
            s_send     (handler, "");
        }
65 66 67 68 69 70 71
        free (version);
        free (sequence);
        free (domain);
        free (address);
        free (identity);
        free (mechanism);
    }
72
    close_zero_linger (handler);
73 74 75 76 77 78 79
}

int main (void)
{
    setup_test_environment();
    void *ctx = zmq_ctx_new ();
    assert (ctx);
80

81
    //  Spawn ZAP handler
82 83 84 85 86 87 88
    //  We create and bind ZAP socket in main thread to avoid case
    //  where child thread does not start up fast enough.
    void *handler = zmq_socket (ctx, ZMQ_REP);
    assert (handler);
    int rc = zmq_bind (handler, "inproc://zeromq.zap.01");
    assert (rc == 0);
    void *zap_thread = zmq_threadstart (&zap_handler, handler);
89

90
    //  We bounce between a binding server and a connecting client
91
    
Pieter Hintjens's avatar
Pieter Hintjens committed
92 93 94 95 96 97 98 99 100 101 102 103 104
    //  We first test client/server with no ZAP domain
    //  Libzmq does not call our ZAP handler, the connect must succeed
    void *server = zmq_socket (ctx, ZMQ_DEALER);
    assert (server);
    void *client = zmq_socket (ctx, ZMQ_DEALER);
    assert (client);
    rc = zmq_bind (server, "tcp://127.0.0.1:9000");
    assert (rc == 0);
    rc = zmq_connect (client, "tcp://127.0.0.1:9000");
    assert (rc == 0);
    bounce (server, client);
    close_zero_linger (client);
    close_zero_linger (server);
105

106 107 108
    //  Now define a ZAP domain for the server; this enables 
    //  authentication. We're using the wrong domain so this test
    //  must fail.
109
    server = zmq_socket (ctx, ZMQ_DEALER);
110
    assert (server);
111
    client = zmq_socket (ctx, ZMQ_DEALER);
112 113 114 115 116 117 118 119 120 121 122
    assert (client);
    rc = zmq_setsockopt (server, ZMQ_ZAP_DOMAIN, "WRONG", 5);
    assert (rc == 0);
    rc = zmq_bind (server, "tcp://127.0.0.1:9001");
    assert (rc == 0);
    rc = zmq_connect (client, "tcp://127.0.0.1:9001");
    assert (rc == 0);
    expect_bounce_fail (server, client);
    close_zero_linger (client);
    close_zero_linger (server);

Pieter Hintjens's avatar
Pieter Hintjens committed
123 124 125 126 127 128 129 130 131 132 133 134 135 136
    //  Now use the right domain, the test must pass
    server = zmq_socket (ctx, ZMQ_DEALER);
    assert (server);
    client = zmq_socket (ctx, ZMQ_DEALER);
    assert (client);
    rc = zmq_setsockopt (server, ZMQ_ZAP_DOMAIN, "TEST", 4);
    assert (rc == 0);
    rc = zmq_bind (server, "tcp://127.0.0.1:9002");
    assert (rc == 0);
    rc = zmq_connect (client, "tcp://127.0.0.1:9002");
    assert (rc == 0);
    bounce (server, client);
    close_zero_linger (client);
    close_zero_linger (server);
137

138 139 140 141 142
    // Unauthenticated messages from a vanilla socket shouldn't be received
    server = zmq_socket (ctx, ZMQ_DEALER);
    assert (server);
    rc = zmq_setsockopt (server, ZMQ_ZAP_DOMAIN, "WRONG", 5);
    assert (rc == 0);
143
    rc = zmq_bind (server, "tcp://127.0.0.1:9003");
144 145 146 147 148 149
    assert (rc == 0);

    struct sockaddr_in ip4addr;
    int s;

    ip4addr.sin_family = AF_INET;
150
    ip4addr.sin_port = htons(9003);
151 152 153 154 155
    inet_pton(AF_INET, "127.0.0.1", &ip4addr.sin_addr);

    s = socket (AF_INET, SOCK_STREAM, IPPROTO_TCP);
    rc = connect (s, (struct sockaddr*) &ip4addr, sizeof ip4addr);
    assert (rc > -1);
156 157 158 159
    // send anonymous ZMTP/1.0 greeting
    send (s, "\x01\x00", 2, 0);
    // send sneaky message that shouldn't be received
    send (s, "\x08\x00sneaky\0", 9, 0);
160
    int timeout = 150;
161
    zmq_setsockopt (server, ZMQ_RCVTIMEO, &timeout, sizeof (timeout));
162
    char *buf = s_recv (server);
163 164 165 166
    if (buf != NULL) {
        printf ("Received unauthenticated message: %s\n", buf);
        assert (buf == NULL);
    }
167 168 169
    close (s);
    close_zero_linger (server);

170
    //  Shutdown
171 172
    rc = zmq_ctx_term (ctx);
    assert (rc == 0);
173
    //  Wait until ZAP handler terminates
174 175 176 177
    zmq_threadclose (zap_thread);

    return 0;
}