| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287 |
- /*
- 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/>.
- */
- #include "precompiled.hpp"
- #include "macros.hpp"
- #ifdef ZMQ_HAVE_CURVE
- #include "msg.hpp"
- #include "session_base.hpp"
- #include "err.hpp"
- #include "curve_client.hpp"
- #include "wire.hpp"
- #include "curve_client_tools.hpp"
- #include "secure_allocator.hpp"
- zmq::curve_client_t::curve_client_t (session_base_t *session_,
- const options_t &options_,
- const bool downgrade_sub_) :
- mechanism_base_t (session_, options_),
- curve_mechanism_base_t (session_,
- options_,
- "CurveZMQMESSAGEC",
- "CurveZMQMESSAGES",
- downgrade_sub_),
- _state (send_hello),
- _tools (options_.curve_public_key,
- options_.curve_secret_key,
- options_.curve_server_key)
- {
- }
- zmq::curve_client_t::~curve_client_t ()
- {
- }
- int zmq::curve_client_t::next_handshake_command (msg_t *msg_)
- {
- int rc = 0;
- switch (_state) {
- case send_hello:
- rc = produce_hello (msg_);
- if (rc == 0)
- _state = expect_welcome;
- break;
- case send_initiate:
- rc = produce_initiate (msg_);
- if (rc == 0)
- _state = expect_ready;
- break;
- default:
- errno = EAGAIN;
- rc = -1;
- }
- return rc;
- }
- int zmq::curve_client_t::process_handshake_command (msg_t *msg_)
- {
- const unsigned char *msg_data =
- static_cast<unsigned char *> (msg_->data ());
- const size_t msg_size = msg_->size ();
- int rc = 0;
- if (curve_client_tools_t::is_handshake_command_welcome (msg_data, msg_size))
- rc = process_welcome (msg_data, msg_size);
- else if (curve_client_tools_t::is_handshake_command_ready (msg_data,
- msg_size))
- rc = process_ready (msg_data, msg_size);
- else if (curve_client_tools_t::is_handshake_command_error (msg_data,
- msg_size))
- rc = process_error (msg_data, msg_size);
- else {
- session->get_socket ()->event_handshake_failed_protocol (
- session->get_endpoint (), ZMQ_PROTOCOL_ERROR_ZMTP_UNEXPECTED_COMMAND);
- errno = EPROTO;
- rc = -1;
- }
- if (rc == 0) {
- rc = msg_->close ();
- errno_assert (rc == 0);
- rc = msg_->init ();
- errno_assert (rc == 0);
- }
- return rc;
- }
- int zmq::curve_client_t::encode (msg_t *msg_)
- {
- zmq_assert (_state == connected);
- return curve_mechanism_base_t::encode (msg_);
- }
- int zmq::curve_client_t::decode (msg_t *msg_)
- {
- zmq_assert (_state == connected);
- return curve_mechanism_base_t::decode (msg_);
- }
- zmq::mechanism_t::status_t zmq::curve_client_t::status () const
- {
- if (_state == connected)
- return mechanism_t::ready;
- if (_state == error_received)
- return mechanism_t::error;
- return mechanism_t::handshaking;
- }
- int zmq::curve_client_t::produce_hello (msg_t *msg_)
- {
- int rc = msg_->init_size (200);
- errno_assert (rc == 0);
- rc = _tools.produce_hello (msg_->data (), get_and_inc_nonce ());
- if (rc == -1) {
- session->get_socket ()->event_handshake_failed_protocol (
- session->get_endpoint (), ZMQ_PROTOCOL_ERROR_ZMTP_CRYPTOGRAPHIC);
- // TODO this is somewhat inconsistent: we call init_size, but we may
- // not close msg_; i.e. we assume that msg_ is initialized but empty
- // (if it were non-empty, calling init_size might cause a leak!)
- // msg_->close ();
- return -1;
- }
- return 0;
- }
- int zmq::curve_client_t::process_welcome (const uint8_t *msg_data_,
- size_t msg_size_)
- {
- const int rc = _tools.process_welcome (msg_data_, msg_size_,
- get_writable_precom_buffer ());
- if (rc == -1) {
- session->get_socket ()->event_handshake_failed_protocol (
- session->get_endpoint (), ZMQ_PROTOCOL_ERROR_ZMTP_CRYPTOGRAPHIC);
- errno = EPROTO;
- return -1;
- }
- _state = send_initiate;
- return 0;
- }
- int zmq::curve_client_t::produce_initiate (msg_t *msg_)
- {
- const size_t metadata_length = basic_properties_len ();
- std::vector<unsigned char, secure_allocator_t<unsigned char> >
- metadata_plaintext (metadata_length);
- add_basic_properties (&metadata_plaintext[0], metadata_length);
- const size_t msg_size =
- 113 + 128 + crypto_box_BOXZEROBYTES + metadata_length;
- int rc = msg_->init_size (msg_size);
- errno_assert (rc == 0);
- rc = _tools.produce_initiate (msg_->data (), msg_size, get_and_inc_nonce (),
- &metadata_plaintext[0], metadata_length);
- if (-1 == rc) {
- session->get_socket ()->event_handshake_failed_protocol (
- session->get_endpoint (), ZMQ_PROTOCOL_ERROR_ZMTP_CRYPTOGRAPHIC);
- // TODO see comment in produce_hello
- return -1;
- }
- return 0;
- }
- int zmq::curve_client_t::process_ready (const uint8_t *msg_data_,
- size_t msg_size_)
- {
- if (msg_size_ < 30) {
- session->get_socket ()->event_handshake_failed_protocol (
- session->get_endpoint (),
- ZMQ_PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_READY);
- errno = EPROTO;
- return -1;
- }
- const size_t clen = (msg_size_ - 14) + crypto_box_BOXZEROBYTES;
- uint8_t ready_nonce[crypto_box_NONCEBYTES];
- std::vector<uint8_t, secure_allocator_t<uint8_t> > ready_plaintext (
- crypto_box_ZEROBYTES + clen);
- std::vector<uint8_t> ready_box (crypto_box_BOXZEROBYTES + 16 + clen);
- std::fill (ready_box.begin (), ready_box.begin () + crypto_box_BOXZEROBYTES,
- 0);
- memcpy (&ready_box[crypto_box_BOXZEROBYTES], msg_data_ + 14,
- clen - crypto_box_BOXZEROBYTES);
- memcpy (ready_nonce, "CurveZMQREADY---", 16);
- memcpy (ready_nonce + 16, msg_data_ + 6, 8);
- set_peer_nonce (get_uint64 (msg_data_ + 6));
- int rc = crypto_box_open_afternm (&ready_plaintext[0], &ready_box[0], clen,
- ready_nonce, get_precom_buffer ());
- if (rc != 0) {
- session->get_socket ()->event_handshake_failed_protocol (
- session->get_endpoint (), ZMQ_PROTOCOL_ERROR_ZMTP_CRYPTOGRAPHIC);
- errno = EPROTO;
- return -1;
- }
- rc = parse_metadata (&ready_plaintext[crypto_box_ZEROBYTES],
- clen - crypto_box_ZEROBYTES);
- if (rc == 0)
- _state = connected;
- else {
- session->get_socket ()->event_handshake_failed_protocol (
- session->get_endpoint (), ZMQ_PROTOCOL_ERROR_ZMTP_INVALID_METADATA);
- errno = EPROTO;
- }
- return rc;
- }
- int zmq::curve_client_t::process_error (const uint8_t *msg_data_,
- size_t msg_size_)
- {
- if (_state != expect_welcome && _state != expect_ready) {
- session->get_socket ()->event_handshake_failed_protocol (
- session->get_endpoint (), ZMQ_PROTOCOL_ERROR_ZMTP_UNEXPECTED_COMMAND);
- errno = EPROTO;
- return -1;
- }
- if (msg_size_ < 7) {
- session->get_socket ()->event_handshake_failed_protocol (
- session->get_endpoint (),
- ZMQ_PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_ERROR);
- errno = EPROTO;
- return -1;
- }
- const size_t error_reason_len = static_cast<size_t> (msg_data_[6]);
- if (error_reason_len > msg_size_ - 7) {
- session->get_socket ()->event_handshake_failed_protocol (
- session->get_endpoint (),
- ZMQ_PROTOCOL_ERROR_ZMTP_MALFORMED_COMMAND_ERROR);
- errno = EPROTO;
- return -1;
- }
- const char *error_reason = reinterpret_cast<const char *> (msg_data_) + 7;
- handle_error_reason (error_reason, error_reason_len);
- _state = error_received;
- return 0;
- }
- #endif
|