2013-06-22 17:17:25 +02:00
|
|
|
/*
|
2014-01-02 12:00:57 +01:00
|
|
|
Copyright (c) 2007-2014 Contributors as noted in the AUTHORS file
|
2013-06-22 17:17:25 +02:00
|
|
|
|
|
|
|
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"
|
2013-09-02 18:21:36 +02:00
|
|
|
|
2013-09-30 15:14:02 +02:00
|
|
|
// We'll generate random test keys at startup
|
|
|
|
static char client_public [41];
|
|
|
|
static char client_secret [41];
|
|
|
|
static char server_public [41];
|
|
|
|
static char server_secret [41];
|
2013-06-22 17:17:25 +02:00
|
|
|
|
2013-09-15 17:30:18 +02:00
|
|
|
// --------------------------------------------------------------------------
|
2014-03-16 11:53:40 +01:00
|
|
|
// This methods receives and validates ZAP requestes (allowing or denying
|
|
|
|
// each client connection).
|
2013-09-15 17:30:18 +02:00
|
|
|
|
2013-09-16 10:56:49 +02:00
|
|
|
static void zap_handler (void *handler)
|
2013-06-22 17:17:25 +02:00
|
|
|
{
|
2013-09-02 17:22:24 +02:00
|
|
|
// Process ZAP requests forever
|
|
|
|
while (true) {
|
2013-09-16 10:56:49 +02:00
|
|
|
char *version = s_recv (handler);
|
2013-09-02 17:22:24 +02:00
|
|
|
if (!version)
|
|
|
|
break; // Terminating
|
|
|
|
|
2013-09-16 10:56:49 +02:00
|
|
|
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);
|
2013-09-02 18:21:36 +02:00
|
|
|
uint8_t client_key [32];
|
2013-09-16 10:56:49 +02:00
|
|
|
int size = zmq_recv (handler, client_key, 32, 0);
|
2013-09-02 18:21:36 +02:00
|
|
|
assert (size == 32);
|
|
|
|
|
2013-09-05 15:18:42 +02:00
|
|
|
char client_key_text [41];
|
2013-09-16 00:06:24 +02:00
|
|
|
zmq_z85_encode (client_key_text, client_key, 32);
|
2013-09-02 18:21:36 +02:00
|
|
|
|
2013-09-02 17:22:24 +02:00
|
|
|
assert (streq (version, "1.0"));
|
|
|
|
assert (streq (mechanism, "CURVE"));
|
|
|
|
assert (streq (identity, "IDENT"));
|
|
|
|
|
2013-09-16 10:56:49 +02:00
|
|
|
s_sendmore (handler, version);
|
|
|
|
s_sendmore (handler, sequence);
|
2013-09-09 20:40:34 +02:00
|
|
|
|
2013-09-02 18:21:36 +02:00
|
|
|
if (streq (client_key_text, client_public)) {
|
2013-09-16 10:56:49 +02:00
|
|
|
s_sendmore (handler, "200");
|
|
|
|
s_sendmore (handler, "OK");
|
|
|
|
s_sendmore (handler, "anonymous");
|
|
|
|
s_send (handler, "");
|
2013-09-02 18:21:36 +02:00
|
|
|
}
|
|
|
|
else {
|
2013-09-16 10:56:49 +02:00
|
|
|
s_sendmore (handler, "400");
|
|
|
|
s_sendmore (handler, "Invalid client public key");
|
|
|
|
s_sendmore (handler, "");
|
|
|
|
s_send (handler, "");
|
2013-09-02 18:21:36 +02:00
|
|
|
}
|
2013-09-02 17:22:24 +02:00
|
|
|
free (version);
|
|
|
|
free (sequence);
|
|
|
|
free (domain);
|
|
|
|
free (address);
|
|
|
|
free (identity);
|
|
|
|
free (mechanism);
|
2013-08-31 02:56:59 +02:00
|
|
|
}
|
2013-09-16 10:56:49 +02:00
|
|
|
zmq_close (handler);
|
2013-06-22 17:17:25 +02:00
|
|
|
}
|
|
|
|
|
2013-08-31 02:56:59 +02:00
|
|
|
|
2013-06-22 17:17:25 +02:00
|
|
|
int main (void)
|
|
|
|
{
|
|
|
|
#ifndef HAVE_LIBSODIUM
|
Added Z85 support
The use of binary for CURVE keys is painful; you cannot easily copy
these in e.g. email, or use them directly in source code. There are
various encoding possibilities. Base16 and Base64 are not optimal.
Ascii85 is not safe for source (it generates quotes and escapes).
So, I've designed a new Base85 encoding, Z85, which is safe to use
in code and elsewhere, and I've modified libzmq to use this where
it also uses binary keys (in get/setsockopt).
Very simply, if you use a 32-byte value, it's Base256 (binary),
and if you use a 40-byte value, it's Base85 (Z85).
I've put the Z85 codec into z85_codec.hpp, it's not elegant C++
but it is minimal and it works. Feel free to rewrap as a real class
if this annoys you.
2013-06-28 22:10:22 +02:00
|
|
|
printf ("libsodium not installed, skipping CURVE test\n");
|
2013-06-22 17:17:25 +02:00
|
|
|
return 0;
|
|
|
|
#endif
|
2013-09-30 15:14:02 +02:00
|
|
|
|
|
|
|
// Generate new keypairs for this test
|
|
|
|
int rc = zmq_curve_keypair (client_public, client_secret);
|
|
|
|
assert (rc == 0);
|
|
|
|
rc = zmq_curve_keypair (server_public, server_secret);
|
|
|
|
assert (rc == 0);
|
|
|
|
|
2013-09-02 17:22:24 +02:00
|
|
|
setup_test_environment ();
|
2013-06-22 17:17:25 +02:00
|
|
|
void *ctx = zmq_ctx_new ();
|
|
|
|
assert (ctx);
|
|
|
|
|
2013-09-02 17:22:24 +02:00
|
|
|
// Spawn ZAP handler
|
2013-09-16 10:56:49 +02:00
|
|
|
// 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);
|
2013-09-30 15:14:02 +02:00
|
|
|
rc = zmq_bind (handler, "inproc://zeromq.zap.01");
|
2013-09-16 10:56:49 +02:00
|
|
|
assert (rc == 0);
|
|
|
|
void *zap_thread = zmq_threadstart (&zap_handler, handler);
|
2013-06-22 17:17:25 +02:00
|
|
|
|
2013-09-02 17:22:24 +02:00
|
|
|
// Server socket will accept connections
|
|
|
|
void *server = zmq_socket (ctx, ZMQ_DEALER);
|
|
|
|
assert (server);
|
2013-09-17 14:05:55 +02:00
|
|
|
int as_server = 1;
|
2013-09-17 14:05:41 +02:00
|
|
|
rc = zmq_setsockopt (server, ZMQ_CURVE_SERVER, &as_server, sizeof (int));
|
Added Z85 support
The use of binary for CURVE keys is painful; you cannot easily copy
these in e.g. email, or use them directly in source code. There are
various encoding possibilities. Base16 and Base64 are not optimal.
Ascii85 is not safe for source (it generates quotes and escapes).
So, I've designed a new Base85 encoding, Z85, which is safe to use
in code and elsewhere, and I've modified libzmq to use this where
it also uses binary keys (in get/setsockopt).
Very simply, if you use a 32-byte value, it's Base256 (binary),
and if you use a 40-byte value, it's Base85 (Z85).
I've put the Z85 codec into z85_codec.hpp, it's not elegant C++
but it is minimal and it works. Feel free to rewrap as a real class
if this annoys you.
2013-06-28 22:10:22 +02:00
|
|
|
assert (rc == 0);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (server, ZMQ_CURVE_SECRETKEY, server_secret, 40);
|
Added Z85 support
The use of binary for CURVE keys is painful; you cannot easily copy
these in e.g. email, or use them directly in source code. There are
various encoding possibilities. Base16 and Base64 are not optimal.
Ascii85 is not safe for source (it generates quotes and escapes).
So, I've designed a new Base85 encoding, Z85, which is safe to use
in code and elsewhere, and I've modified libzmq to use this where
it also uses binary keys (in get/setsockopt).
Very simply, if you use a 32-byte value, it's Base256 (binary),
and if you use a 40-byte value, it's Base85 (Z85).
I've put the Z85 codec into z85_codec.hpp, it's not elegant C++
but it is minimal and it works. Feel free to rewrap as a real class
if this annoys you.
2013-06-28 22:10:22 +02:00
|
|
|
assert (rc == 0);
|
2013-09-02 17:22:24 +02:00
|
|
|
rc = zmq_setsockopt (server, ZMQ_IDENTITY, "IDENT", 6);
|
|
|
|
assert (rc == 0);
|
2013-09-18 12:58:19 +02:00
|
|
|
rc = zmq_bind (server, "tcp://127.0.0.1:9998");
|
2013-08-20 19:48:05 +02:00
|
|
|
assert (rc == 0);
|
2013-06-22 17:17:25 +02:00
|
|
|
|
2013-09-02 17:22:24 +02:00
|
|
|
// Check CURVE security with valid credentials
|
|
|
|
void *client = zmq_socket (ctx, ZMQ_DEALER);
|
|
|
|
assert (client);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (client, ZMQ_CURVE_SERVERKEY, server_public, 40);
|
Added Z85 support
The use of binary for CURVE keys is painful; you cannot easily copy
these in e.g. email, or use them directly in source code. There are
various encoding possibilities. Base16 and Base64 are not optimal.
Ascii85 is not safe for source (it generates quotes and escapes).
So, I've designed a new Base85 encoding, Z85, which is safe to use
in code and elsewhere, and I've modified libzmq to use this where
it also uses binary keys (in get/setsockopt).
Very simply, if you use a 32-byte value, it's Base256 (binary),
and if you use a 40-byte value, it's Base85 (Z85).
I've put the Z85 codec into z85_codec.hpp, it's not elegant C++
but it is minimal and it works. Feel free to rewrap as a real class
if this annoys you.
2013-06-28 22:10:22 +02:00
|
|
|
assert (rc == 0);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (client, ZMQ_CURVE_PUBLICKEY, client_public, 40);
|
Added Z85 support
The use of binary for CURVE keys is painful; you cannot easily copy
these in e.g. email, or use them directly in source code. There are
various encoding possibilities. Base16 and Base64 are not optimal.
Ascii85 is not safe for source (it generates quotes and escapes).
So, I've designed a new Base85 encoding, Z85, which is safe to use
in code and elsewhere, and I've modified libzmq to use this where
it also uses binary keys (in get/setsockopt).
Very simply, if you use a 32-byte value, it's Base256 (binary),
and if you use a 40-byte value, it's Base85 (Z85).
I've put the Z85 codec into z85_codec.hpp, it's not elegant C++
but it is minimal and it works. Feel free to rewrap as a real class
if this annoys you.
2013-06-28 22:10:22 +02:00
|
|
|
assert (rc == 0);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (client, ZMQ_CURVE_SECRETKEY, client_secret, 40);
|
Added Z85 support
The use of binary for CURVE keys is painful; you cannot easily copy
these in e.g. email, or use them directly in source code. There are
various encoding possibilities. Base16 and Base64 are not optimal.
Ascii85 is not safe for source (it generates quotes and escapes).
So, I've designed a new Base85 encoding, Z85, which is safe to use
in code and elsewhere, and I've modified libzmq to use this where
it also uses binary keys (in get/setsockopt).
Very simply, if you use a 32-byte value, it's Base256 (binary),
and if you use a 40-byte value, it's Base85 (Z85).
I've put the Z85 codec into z85_codec.hpp, it's not elegant C++
but it is minimal and it works. Feel free to rewrap as a real class
if this annoys you.
2013-06-28 22:10:22 +02:00
|
|
|
assert (rc == 0);
|
2013-06-22 17:17:25 +02:00
|
|
|
rc = zmq_connect (client, "tcp://localhost:9998");
|
|
|
|
assert (rc == 0);
|
|
|
|
bounce (server, client);
|
|
|
|
rc = zmq_close (client);
|
|
|
|
assert (rc == 0);
|
2013-09-09 20:40:34 +02:00
|
|
|
|
2013-09-02 17:22:24 +02:00
|
|
|
// Check CURVE security with a garbage server key
|
|
|
|
// This will be caught by the curve_server class, not passed to ZAP
|
|
|
|
char garbage_key [] = "0000111122223333444455556666777788889999";
|
2013-08-31 02:56:59 +02:00
|
|
|
client = zmq_socket (ctx, ZMQ_DEALER);
|
|
|
|
assert (client);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (client, ZMQ_CURVE_SERVERKEY, garbage_key, 40);
|
2013-08-31 02:56:59 +02:00
|
|
|
assert (rc == 0);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (client, ZMQ_CURVE_PUBLICKEY, client_public, 40);
|
2013-08-31 02:56:59 +02:00
|
|
|
assert (rc == 0);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (client, ZMQ_CURVE_SECRETKEY, client_secret, 40);
|
2013-08-31 02:56:59 +02:00
|
|
|
assert (rc == 0);
|
2013-09-02 17:22:24 +02:00
|
|
|
rc = zmq_connect (client, "tcp://localhost:9998");
|
|
|
|
assert (rc == 0);
|
|
|
|
expect_bounce_fail (server, client);
|
|
|
|
close_zero_linger (client);
|
2013-09-09 20:40:34 +02:00
|
|
|
|
2013-09-02 17:22:24 +02:00
|
|
|
// Check CURVE security with a garbage client public key
|
|
|
|
// This will be caught by the curve_server class, not passed to ZAP
|
|
|
|
client = zmq_socket (ctx, ZMQ_DEALER);
|
|
|
|
assert (client);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (client, ZMQ_CURVE_SERVERKEY, server_public, 40);
|
2013-08-31 02:56:59 +02:00
|
|
|
assert (rc == 0);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (client, ZMQ_CURVE_PUBLICKEY, garbage_key, 40);
|
2013-08-31 02:56:59 +02:00
|
|
|
assert (rc == 0);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (client, ZMQ_CURVE_SECRETKEY, client_secret, 40);
|
2013-08-31 02:56:59 +02:00
|
|
|
assert (rc == 0);
|
2013-09-02 17:22:24 +02:00
|
|
|
rc = zmq_connect (client, "tcp://localhost:9998");
|
2013-08-31 02:56:59 +02:00
|
|
|
assert (rc == 0);
|
2013-09-02 17:22:24 +02:00
|
|
|
expect_bounce_fail (server, client);
|
|
|
|
close_zero_linger (client);
|
2013-09-09 20:40:34 +02:00
|
|
|
|
2013-09-02 17:22:24 +02:00
|
|
|
// Check CURVE security with a garbage client secret key
|
|
|
|
// This will be caught by the curve_server class, not passed to ZAP
|
|
|
|
client = zmq_socket (ctx, ZMQ_DEALER);
|
|
|
|
assert (client);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (client, ZMQ_CURVE_SERVERKEY, server_public, 40);
|
2013-08-31 02:56:59 +02:00
|
|
|
assert (rc == 0);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (client, ZMQ_CURVE_PUBLICKEY, client_public, 40);
|
2013-08-31 02:56:59 +02:00
|
|
|
assert (rc == 0);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (client, ZMQ_CURVE_SECRETKEY, garbage_key, 40);
|
2013-08-31 02:56:59 +02:00
|
|
|
assert (rc == 0);
|
2013-09-02 17:22:24 +02:00
|
|
|
rc = zmq_connect (client, "tcp://localhost:9998");
|
2013-08-31 02:56:59 +02:00
|
|
|
assert (rc == 0);
|
2013-09-02 17:22:24 +02:00
|
|
|
expect_bounce_fail (server, client);
|
|
|
|
close_zero_linger (client);
|
2013-09-09 20:40:34 +02:00
|
|
|
|
2013-09-02 17:22:24 +02:00
|
|
|
// Check CURVE security with bogus client credentials
|
|
|
|
// This must be caught by the ZAP handler
|
2013-09-30 15:14:02 +02:00
|
|
|
char bogus_public [41];
|
|
|
|
char bogus_secret [41];
|
|
|
|
zmq_curve_keypair (bogus_public, bogus_secret);
|
2013-09-09 20:40:34 +02:00
|
|
|
|
2013-09-02 17:22:24 +02:00
|
|
|
client = zmq_socket (ctx, ZMQ_DEALER);
|
|
|
|
assert (client);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (client, ZMQ_CURVE_SERVERKEY, server_public, 40);
|
2013-08-31 02:56:59 +02:00
|
|
|
assert (rc == 0);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (client, ZMQ_CURVE_PUBLICKEY, bogus_public, 40);
|
2013-08-31 02:56:59 +02:00
|
|
|
assert (rc == 0);
|
2013-09-17 14:05:55 +02:00
|
|
|
rc = zmq_setsockopt (client, ZMQ_CURVE_SECRETKEY, bogus_secret, 40);
|
2013-08-31 02:56:59 +02:00
|
|
|
assert (rc == 0);
|
2013-09-02 17:22:24 +02:00
|
|
|
rc = zmq_connect (client, "tcp://localhost:9998");
|
|
|
|
assert (rc == 0);
|
2013-09-02 18:21:36 +02:00
|
|
|
expect_bounce_fail (server, client);
|
2013-09-02 17:22:24 +02:00
|
|
|
close_zero_linger (client);
|
2013-09-09 20:40:34 +02:00
|
|
|
|
2013-06-22 17:17:25 +02:00
|
|
|
// Shutdown
|
2013-09-02 17:22:24 +02:00
|
|
|
rc = zmq_close (server);
|
|
|
|
assert (rc == 0);
|
2013-06-22 17:17:25 +02:00
|
|
|
rc = zmq_ctx_term (ctx);
|
|
|
|
assert (rc == 0);
|
2013-09-09 20:40:34 +02:00
|
|
|
|
2013-09-02 17:22:24 +02:00
|
|
|
// Wait until ZAP handler terminates
|
|
|
|
zmq_threadclose (zap_thread);
|
2013-06-22 17:17:25 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|