mirror of
https://github.com/zeromq/libzmq.git
synced 2025-02-05 09:06:01 +01:00
4e616f30dd
Solution: replace by C++-style casts
306 lines
11 KiB
C++
306 lines
11 KiB
C++
/*
|
|
Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
|
|
|
|
This file is part of libzmq, the ZeroMQ core engine in C++.
|
|
|
|
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
|
|
(at your option) any later version.
|
|
|
|
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.
|
|
|
|
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/>.
|
|
*/
|
|
|
|
#ifndef __ZMQ_CURVE_CLIENT_TOOLS_HPP_INCLUDED__
|
|
#define __ZMQ_CURVE_CLIENT_TOOLS_HPP_INCLUDED__
|
|
|
|
#ifdef ZMQ_HAVE_CURVE
|
|
|
|
#if defined(ZMQ_USE_TWEETNACL)
|
|
#include "tweetnacl.h"
|
|
#elif defined(ZMQ_USE_LIBSODIUM)
|
|
#include "sodium.h"
|
|
#endif
|
|
|
|
#if crypto_box_NONCEBYTES != 24 || crypto_box_PUBLICKEYBYTES != 32 \
|
|
|| crypto_box_SECRETKEYBYTES != 32 || crypto_box_ZEROBYTES != 32 \
|
|
|| crypto_box_BOXZEROBYTES != 16
|
|
#error "CURVE library not built properly"
|
|
#endif
|
|
|
|
#include "wire.hpp"
|
|
#include "err.hpp"
|
|
|
|
namespace zmq
|
|
{
|
|
struct curve_client_tools_t
|
|
{
|
|
static int produce_hello (void *data,
|
|
const uint8_t *server_key,
|
|
const uint64_t cn_nonce,
|
|
const uint8_t *cn_public,
|
|
const uint8_t *cn_secret)
|
|
{
|
|
uint8_t hello_nonce[crypto_box_NONCEBYTES];
|
|
uint8_t hello_plaintext[crypto_box_ZEROBYTES + 64];
|
|
uint8_t hello_box[crypto_box_BOXZEROBYTES + 80];
|
|
|
|
// Prepare the full nonce
|
|
memcpy (hello_nonce, "CurveZMQHELLO---", 16);
|
|
put_uint64 (hello_nonce + 16, cn_nonce);
|
|
|
|
// Create Box [64 * %x0](C'->S)
|
|
memset (hello_plaintext, 0, sizeof hello_plaintext);
|
|
|
|
int rc = crypto_box (hello_box, hello_plaintext, sizeof hello_plaintext,
|
|
hello_nonce, server_key, cn_secret);
|
|
if (rc == -1)
|
|
return -1;
|
|
|
|
uint8_t *hello = static_cast<uint8_t *> (data);
|
|
|
|
memcpy (hello, "\x05HELLO", 6);
|
|
// CurveZMQ major and minor version numbers
|
|
memcpy (hello + 6, "\1\0", 2);
|
|
// Anti-amplification padding
|
|
memset (hello + 8, 0, 72);
|
|
// Client public connection key
|
|
memcpy (hello + 80, cn_public, crypto_box_PUBLICKEYBYTES);
|
|
// Short nonce, prefixed by "CurveZMQHELLO---"
|
|
memcpy (hello + 112, hello_nonce + 16, 8);
|
|
// Signature, Box [64 * %x0](C'->S)
|
|
memcpy (hello + 120, hello_box + crypto_box_BOXZEROBYTES, 80);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int process_welcome (const uint8_t *msg_data,
|
|
size_t msg_size,
|
|
const uint8_t *server_key,
|
|
const uint8_t *cn_secret,
|
|
uint8_t *cn_server,
|
|
uint8_t *cn_cookie,
|
|
uint8_t *cn_precom)
|
|
{
|
|
if (msg_size != 168) {
|
|
errno = EPROTO;
|
|
return -1;
|
|
}
|
|
|
|
uint8_t welcome_nonce[crypto_box_NONCEBYTES];
|
|
uint8_t welcome_plaintext[crypto_box_ZEROBYTES + 128];
|
|
uint8_t welcome_box[crypto_box_BOXZEROBYTES + 144];
|
|
|
|
// Open Box [S' + cookie](C'->S)
|
|
memset (welcome_box, 0, crypto_box_BOXZEROBYTES);
|
|
memcpy (welcome_box + crypto_box_BOXZEROBYTES, msg_data + 24, 144);
|
|
|
|
memcpy (welcome_nonce, "WELCOME-", 8);
|
|
memcpy (welcome_nonce + 8, msg_data + 8, 16);
|
|
|
|
int rc =
|
|
crypto_box_open (welcome_plaintext, welcome_box, sizeof welcome_box,
|
|
welcome_nonce, server_key, cn_secret);
|
|
if (rc != 0) {
|
|
errno = EPROTO;
|
|
return -1;
|
|
}
|
|
|
|
memcpy (cn_server, welcome_plaintext + crypto_box_ZEROBYTES, 32);
|
|
memcpy (cn_cookie, welcome_plaintext + crypto_box_ZEROBYTES + 32,
|
|
16 + 80);
|
|
|
|
// Message independent precomputation
|
|
rc = crypto_box_beforenm (cn_precom, cn_server, cn_secret);
|
|
zmq_assert (rc == 0);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int produce_initiate (void *data,
|
|
size_t size,
|
|
const uint64_t cn_nonce,
|
|
const uint8_t *server_key,
|
|
const uint8_t *public_key,
|
|
const uint8_t *secret_key,
|
|
const uint8_t *cn_public,
|
|
const uint8_t *cn_secret,
|
|
const uint8_t *cn_server,
|
|
const uint8_t *cn_cookie,
|
|
const uint8_t *metadata_plaintext,
|
|
const size_t metadata_length)
|
|
{
|
|
uint8_t vouch_nonce[crypto_box_NONCEBYTES];
|
|
uint8_t vouch_plaintext[crypto_box_ZEROBYTES + 64];
|
|
uint8_t vouch_box[crypto_box_BOXZEROBYTES + 80];
|
|
|
|
// Create vouch = Box [C',S](C->S')
|
|
memset (vouch_plaintext, 0, crypto_box_ZEROBYTES);
|
|
memcpy (vouch_plaintext + crypto_box_ZEROBYTES, cn_public, 32);
|
|
memcpy (vouch_plaintext + crypto_box_ZEROBYTES + 32, server_key, 32);
|
|
|
|
memcpy (vouch_nonce, "VOUCH---", 8);
|
|
randombytes (vouch_nonce + 8, 16);
|
|
|
|
int rc = crypto_box (vouch_box, vouch_plaintext, sizeof vouch_plaintext,
|
|
vouch_nonce, cn_server, secret_key);
|
|
if (rc == -1)
|
|
return -1;
|
|
|
|
uint8_t initiate_nonce[crypto_box_NONCEBYTES];
|
|
uint8_t *initiate_box = static_cast<uint8_t *> (
|
|
malloc (crypto_box_BOXZEROBYTES + 144 + metadata_length));
|
|
alloc_assert (initiate_box);
|
|
uint8_t *initiate_plaintext = static_cast<uint8_t *> (
|
|
malloc (crypto_box_ZEROBYTES + 128 + metadata_length));
|
|
alloc_assert (initiate_plaintext);
|
|
|
|
// Create Box [C + vouch + metadata](C'->S')
|
|
memset (initiate_plaintext, 0, crypto_box_ZEROBYTES);
|
|
memcpy (initiate_plaintext + crypto_box_ZEROBYTES, public_key, 32);
|
|
memcpy (initiate_plaintext + crypto_box_ZEROBYTES + 32, vouch_nonce + 8,
|
|
16);
|
|
memcpy (initiate_plaintext + crypto_box_ZEROBYTES + 48,
|
|
vouch_box + crypto_box_BOXZEROBYTES, 80);
|
|
memcpy (initiate_plaintext + crypto_box_ZEROBYTES + 48 + 80,
|
|
metadata_plaintext, metadata_length);
|
|
|
|
memcpy (initiate_nonce, "CurveZMQINITIATE", 16);
|
|
put_uint64 (initiate_nonce + 16, cn_nonce);
|
|
|
|
rc = crypto_box (initiate_box, initiate_plaintext,
|
|
crypto_box_ZEROBYTES + 128 + metadata_length,
|
|
initiate_nonce, cn_server, cn_secret);
|
|
free (initiate_plaintext);
|
|
|
|
if (rc == -1)
|
|
return -1;
|
|
|
|
uint8_t *initiate = static_cast<uint8_t *> (data);
|
|
|
|
zmq_assert (size
|
|
== 113 + 128 + crypto_box_BOXZEROBYTES + metadata_length);
|
|
|
|
memcpy (initiate, "\x08INITIATE", 9);
|
|
// Cookie provided by the server in the WELCOME command
|
|
memcpy (initiate + 9, cn_cookie, 96);
|
|
// Short nonce, prefixed by "CurveZMQINITIATE"
|
|
memcpy (initiate + 105, initiate_nonce + 16, 8);
|
|
// Box [C + vouch + metadata](C'->S')
|
|
memcpy (initiate + 113, initiate_box + crypto_box_BOXZEROBYTES,
|
|
128 + metadata_length + crypto_box_BOXZEROBYTES);
|
|
free (initiate_box);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static bool is_handshake_command_welcome (const uint8_t *msg_data,
|
|
const size_t msg_size)
|
|
{
|
|
return is_handshake_command (msg_data, msg_size, "\7WELCOME");
|
|
}
|
|
|
|
static bool is_handshake_command_ready (const uint8_t *msg_data,
|
|
const size_t msg_size)
|
|
{
|
|
return is_handshake_command (msg_data, msg_size, "\5READY");
|
|
}
|
|
|
|
static bool is_handshake_command_error (const uint8_t *msg_data,
|
|
const size_t msg_size)
|
|
{
|
|
return is_handshake_command (msg_data, msg_size, "\5ERROR");
|
|
}
|
|
|
|
// non-static functions
|
|
curve_client_tools_t (
|
|
const uint8_t (&curve_public_key)[crypto_box_PUBLICKEYBYTES],
|
|
const uint8_t (&curve_secret_key)[crypto_box_SECRETKEYBYTES],
|
|
const uint8_t (&curve_server_key)[crypto_box_PUBLICKEYBYTES])
|
|
{
|
|
int rc;
|
|
memcpy (public_key, curve_public_key, crypto_box_PUBLICKEYBYTES);
|
|
memcpy (secret_key, curve_secret_key, crypto_box_SECRETKEYBYTES);
|
|
memcpy (server_key, curve_server_key, crypto_box_PUBLICKEYBYTES);
|
|
|
|
// Generate short-term key pair
|
|
rc = crypto_box_keypair (cn_public, cn_secret);
|
|
zmq_assert (rc == 0);
|
|
}
|
|
|
|
int produce_hello (void *data, const uint64_t cn_nonce) const
|
|
{
|
|
return produce_hello (data, server_key, cn_nonce, cn_public, cn_secret);
|
|
}
|
|
|
|
int process_welcome (const uint8_t *msg_data,
|
|
size_t msg_size,
|
|
uint8_t *cn_precom)
|
|
{
|
|
return process_welcome (msg_data, msg_size, server_key, cn_secret,
|
|
cn_server, cn_cookie, cn_precom);
|
|
}
|
|
|
|
int produce_initiate (void *data,
|
|
size_t size,
|
|
const uint64_t cn_nonce,
|
|
const uint8_t *metadata_plaintext,
|
|
const size_t metadata_length)
|
|
{
|
|
return produce_initiate (
|
|
data, size, cn_nonce, server_key, public_key, secret_key, cn_public,
|
|
cn_secret, cn_server, cn_cookie, metadata_plaintext, metadata_length);
|
|
}
|
|
|
|
// Our public key (C)
|
|
uint8_t public_key[crypto_box_PUBLICKEYBYTES];
|
|
|
|
// Our secret key (c)
|
|
uint8_t secret_key[crypto_box_SECRETKEYBYTES];
|
|
|
|
// Our short-term public key (C')
|
|
uint8_t cn_public[crypto_box_PUBLICKEYBYTES];
|
|
|
|
// Our short-term secret key (c')
|
|
uint8_t cn_secret[crypto_box_SECRETKEYBYTES];
|
|
|
|
// Server's public key (S)
|
|
uint8_t server_key[crypto_box_PUBLICKEYBYTES];
|
|
|
|
// Server's short-term public key (S')
|
|
uint8_t cn_server[crypto_box_PUBLICKEYBYTES];
|
|
|
|
// Cookie received from server
|
|
uint8_t cn_cookie[16 + 80];
|
|
|
|
private:
|
|
template <size_t N>
|
|
static bool is_handshake_command (const uint8_t *msg_data,
|
|
const size_t msg_size,
|
|
const char (&prefix)[N])
|
|
{
|
|
return msg_size >= (N - 1) && !memcmp (msg_data, prefix, N - 1);
|
|
}
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|