2013-05-14 10:41:37 +02:00
|
|
|
/*
|
2016-01-28 15:07:31 +01:00
|
|
|
Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file
|
2013-05-14 10:41:37 +02:00
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
This file is part of libzmq, the ZeroMQ core engine in C++.
|
2013-05-14 10:41:37 +02:00
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
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
|
2013-05-14 10:41:37 +02:00
|
|
|
(at your option) any later version.
|
|
|
|
|
2015-06-02 22:33:55 +02:00
|
|
|
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.
|
2013-05-14 10:41:37 +02:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2016-02-18 17:56:52 +01:00
|
|
|
#include "precompiled.hpp"
|
2013-05-14 10:41:37 +02:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "msg.hpp"
|
2013-06-06 13:13:10 +02:00
|
|
|
#include "session_base.hpp"
|
2013-05-14 10:41:37 +02:00
|
|
|
#include "err.hpp"
|
2014-05-12 06:08:28 +02:00
|
|
|
#include "plain_server.hpp"
|
2013-05-14 10:41:37 +02:00
|
|
|
#include "wire.hpp"
|
|
|
|
|
2014-05-12 06:08:28 +02:00
|
|
|
zmq::plain_server_t::plain_server_t (session_base_t *session_,
|
|
|
|
const std::string &peer_address_,
|
|
|
|
const options_t &options_) :
|
2013-05-14 10:41:37 +02:00
|
|
|
mechanism_t (options_),
|
2017-08-16 15:42:55 +02:00
|
|
|
zap_client_common_handshake_t (session_, peer_address_, options_)
|
2013-05-14 10:41:37 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-05-12 06:08:28 +02:00
|
|
|
zmq::plain_server_t::~plain_server_t ()
|
2013-05-14 10:41:37 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-05-12 06:08:28 +02:00
|
|
|
int zmq::plain_server_t::next_handshake_command (msg_t *msg_)
|
2013-05-14 10:41:37 +02:00
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
switch (state) {
|
2013-05-17 17:46:30 +02:00
|
|
|
case sending_welcome:
|
2013-09-04 17:59:45 +02:00
|
|
|
rc = produce_welcome (msg_);
|
2013-05-17 17:46:30 +02:00
|
|
|
if (rc == 0)
|
|
|
|
state = waiting_for_initiate;
|
|
|
|
break;
|
|
|
|
case sending_ready:
|
2013-09-04 17:59:45 +02:00
|
|
|
rc = produce_ready (msg_);
|
2013-05-17 17:46:30 +02:00
|
|
|
if (rc == 0)
|
|
|
|
state = ready;
|
|
|
|
break;
|
2014-05-14 06:23:23 +02:00
|
|
|
case sending_error:
|
|
|
|
rc = produce_error (msg_);
|
|
|
|
if (rc == 0)
|
2017-08-16 15:25:08 +02:00
|
|
|
state = error_sent;
|
2014-05-14 06:23:23 +02:00
|
|
|
break;
|
2013-05-17 17:46:30 +02:00
|
|
|
default:
|
|
|
|
errno = EAGAIN;
|
|
|
|
rc = -1;
|
2013-05-14 10:41:37 +02:00
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2014-05-12 06:08:28 +02:00
|
|
|
int zmq::plain_server_t::process_handshake_command (msg_t *msg_)
|
2013-05-14 10:41:37 +02:00
|
|
|
{
|
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
switch (state) {
|
2013-05-17 17:46:30 +02:00
|
|
|
case waiting_for_hello:
|
2013-09-04 17:59:45 +02:00
|
|
|
rc = process_hello (msg_);
|
2013-05-17 17:46:30 +02:00
|
|
|
break;
|
|
|
|
case waiting_for_initiate:
|
2013-09-04 17:59:45 +02:00
|
|
|
rc = process_initiate (msg_);
|
2013-05-17 17:46:30 +02:00
|
|
|
break;
|
|
|
|
default:
|
2014-04-29 22:21:58 +02:00
|
|
|
// Temporary support for security debugging
|
|
|
|
puts ("PLAIN I: invalid handshake command");
|
2013-06-22 08:11:55 +02:00
|
|
|
errno = EPROTO;
|
2013-05-17 17:46:30 +02:00
|
|
|
rc = -1;
|
2013-06-22 08:11:55 +02:00
|
|
|
break;
|
2013-05-14 10:41:37 +02:00
|
|
|
}
|
|
|
|
if (rc == 0) {
|
|
|
|
rc = msg_->close ();
|
|
|
|
errno_assert (rc == 0);
|
|
|
|
rc = msg_->init ();
|
|
|
|
errno_assert (rc == 0);
|
|
|
|
}
|
2013-06-06 13:13:10 +02:00
|
|
|
return rc;
|
2013-05-14 10:41:37 +02:00
|
|
|
}
|
|
|
|
|
2014-05-12 06:08:28 +02:00
|
|
|
int zmq::plain_server_t::zap_msg_available ()
|
2013-06-06 13:13:10 +02:00
|
|
|
{
|
|
|
|
if (state != waiting_for_zap_reply) {
|
|
|
|
errno = EFSM;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
const int rc = receive_and_process_zap_reply ();
|
|
|
|
if (rc == 0)
|
2014-05-14 06:23:23 +02:00
|
|
|
state = status_code == "200"
|
|
|
|
? sending_welcome
|
|
|
|
: sending_error;
|
2013-06-06 13:13:10 +02:00
|
|
|
return rc;
|
|
|
|
}
|
2013-05-17 17:46:30 +02:00
|
|
|
|
2014-05-12 06:08:28 +02:00
|
|
|
int zmq::plain_server_t::process_hello (msg_t *msg_)
|
2013-05-14 10:41:37 +02:00
|
|
|
{
|
|
|
|
const unsigned char *ptr = static_cast <unsigned char *> (msg_->data ());
|
|
|
|
size_t bytes_left = msg_->size ();
|
|
|
|
|
2013-09-04 17:59:45 +02:00
|
|
|
if (bytes_left < 6 || memcmp (ptr, "\x05HELLO", 6)) {
|
2014-04-29 22:21:58 +02:00
|
|
|
// Temporary support for security debugging
|
|
|
|
puts ("PLAIN I: invalid PLAIN client, did not send HELLO");
|
2013-05-14 10:41:37 +02:00
|
|
|
errno = EPROTO;
|
|
|
|
return -1;
|
|
|
|
}
|
2013-09-04 17:59:45 +02:00
|
|
|
ptr += 6;
|
|
|
|
bytes_left -= 6;
|
2013-05-14 10:41:37 +02:00
|
|
|
|
|
|
|
if (bytes_left < 1) {
|
2014-04-29 22:21:58 +02:00
|
|
|
// Temporary support for security debugging
|
|
|
|
puts ("PLAIN I: invalid PLAIN client, did not send username");
|
2013-05-14 10:41:37 +02:00
|
|
|
errno = EPROTO;
|
|
|
|
return -1;
|
|
|
|
}
|
2013-06-06 11:00:41 +02:00
|
|
|
const size_t username_length = static_cast <size_t> (*ptr++);
|
2013-05-14 10:41:37 +02:00
|
|
|
bytes_left -= 1;
|
|
|
|
|
|
|
|
if (bytes_left < username_length) {
|
2014-04-29 22:21:58 +02:00
|
|
|
// Temporary support for security debugging
|
|
|
|
puts ("PLAIN I: invalid PLAIN client, sent malformed username");
|
2013-05-14 10:41:37 +02:00
|
|
|
errno = EPROTO;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
const std::string username = std::string ((char *) ptr, username_length);
|
|
|
|
ptr += username_length;
|
|
|
|
bytes_left -= username_length;
|
|
|
|
if (bytes_left < 1) {
|
2014-04-29 22:21:58 +02:00
|
|
|
// Temporary support for security debugging
|
|
|
|
puts ("PLAIN I: invalid PLAIN client, did not send password");
|
2013-05-14 10:41:37 +02:00
|
|
|
errno = EPROTO;
|
|
|
|
return -1;
|
|
|
|
}
|
2014-04-29 22:21:58 +02:00
|
|
|
|
2013-06-06 11:00:41 +02:00
|
|
|
const size_t password_length = static_cast <size_t> (*ptr++);
|
2013-05-14 10:41:37 +02:00
|
|
|
bytes_left -= 1;
|
|
|
|
if (bytes_left < password_length) {
|
2014-04-29 22:21:58 +02:00
|
|
|
// Temporary support for security debugging
|
|
|
|
puts ("PLAIN I: invalid PLAIN client, sent malformed password");
|
2013-05-14 10:41:37 +02:00
|
|
|
errno = EPROTO;
|
|
|
|
return -1;
|
|
|
|
}
|
2014-04-29 22:21:58 +02:00
|
|
|
|
2013-05-14 10:41:37 +02:00
|
|
|
const std::string password = std::string ((char *) ptr, password_length);
|
|
|
|
ptr += password_length;
|
|
|
|
bytes_left -= password_length;
|
|
|
|
if (bytes_left > 0) {
|
2014-04-29 22:21:58 +02:00
|
|
|
// Temporary support for security debugging
|
|
|
|
puts ("PLAIN I: invalid PLAIN client, sent extraneous data");
|
2013-05-14 10:41:37 +02:00
|
|
|
errno = EPROTO;
|
|
|
|
return -1;
|
|
|
|
}
|
2013-06-06 13:13:10 +02:00
|
|
|
|
2013-06-22 16:05:34 +02:00
|
|
|
// Use ZAP protocol (RFC 27) to authenticate the user.
|
2017-06-13 23:11:24 +02:00
|
|
|
// Note that there is no point to PLAIN if ZAP is not set up to handle the
|
|
|
|
// username and password, so if ZAP is not configured it is considered a
|
|
|
|
// failure.
|
2013-06-06 13:13:10 +02:00
|
|
|
int rc = session->zap_connect ();
|
2017-03-29 23:30:00 +02:00
|
|
|
if (rc != 0)
|
|
|
|
return -1;
|
|
|
|
rc = send_zap_request (username, password);
|
|
|
|
if (rc != 0)
|
|
|
|
return -1;
|
|
|
|
rc = receive_and_process_zap_reply ();
|
|
|
|
if (rc == 0)
|
|
|
|
state = status_code == "200"
|
|
|
|
? sending_welcome
|
|
|
|
: sending_error;
|
2014-05-14 06:23:23 +02:00
|
|
|
else
|
2017-03-29 23:30:00 +02:00
|
|
|
if (errno == EAGAIN)
|
|
|
|
state = waiting_for_zap_reply;
|
|
|
|
else
|
|
|
|
return -1;
|
2013-06-06 13:13:10 +02:00
|
|
|
|
2013-05-14 10:41:37 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-12 06:08:28 +02:00
|
|
|
int zmq::plain_server_t::produce_welcome (msg_t *msg_) const
|
2013-05-14 10:41:37 +02:00
|
|
|
{
|
|
|
|
const int rc = msg_->init_size (8);
|
|
|
|
errno_assert (rc == 0);
|
2013-09-04 17:59:45 +02:00
|
|
|
memcpy (msg_->data (), "\x07WELCOME", 8);
|
2013-05-14 10:41:37 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-12 06:08:28 +02:00
|
|
|
int zmq::plain_server_t::process_initiate (msg_t *msg_)
|
2013-05-14 10:41:37 +02:00
|
|
|
{
|
|
|
|
const unsigned char *ptr = static_cast <unsigned char *> (msg_->data ());
|
2014-05-12 06:08:28 +02:00
|
|
|
const size_t bytes_left = msg_->size ();
|
2013-05-14 10:41:37 +02:00
|
|
|
|
2013-09-04 17:59:45 +02:00
|
|
|
if (bytes_left < 9 || memcmp (ptr, "\x08INITIATE", 9)) {
|
2014-04-29 22:21:58 +02:00
|
|
|
// Temporary support for security debugging
|
|
|
|
puts ("PLAIN I: invalid PLAIN client, did not send INITIATE");
|
2013-05-14 10:41:37 +02:00
|
|
|
errno = EPROTO;
|
|
|
|
return -1;
|
|
|
|
}
|
2014-05-14 06:23:23 +02:00
|
|
|
const int rc = parse_metadata (ptr + 9, bytes_left - 9);
|
|
|
|
if (rc == 0)
|
|
|
|
state = sending_ready;
|
|
|
|
return rc;
|
2013-05-14 10:41:37 +02:00
|
|
|
}
|
|
|
|
|
2014-05-12 06:08:28 +02:00
|
|
|
int zmq::plain_server_t::produce_ready (msg_t *msg_) const
|
2013-05-14 10:41:37 +02:00
|
|
|
{
|
2017-08-15 19:42:31 +02:00
|
|
|
make_command_with_basic_properties (msg_, "\5READY", 6);
|
2013-05-14 10:41:37 +02:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-05-14 06:23:23 +02:00
|
|
|
int zmq::plain_server_t::produce_error (msg_t *msg_) const
|
|
|
|
{
|
|
|
|
zmq_assert (status_code.length () == 3);
|
2014-05-14 14:12:04 +02:00
|
|
|
const int rc = msg_->init_size (6 + 1 + status_code.length ());
|
2014-05-14 06:23:23 +02:00
|
|
|
zmq_assert (rc == 0);
|
|
|
|
char *msg_data = static_cast <char *> (msg_->data ());
|
|
|
|
memcpy (msg_data, "\5ERROR", 6);
|
2015-04-22 07:26:32 +02:00
|
|
|
msg_data [6] = (char) status_code.length ();
|
2014-05-14 14:12:04 +02:00
|
|
|
memcpy (msg_data + 7, status_code.c_str (), status_code.length ());
|
2014-05-14 06:23:23 +02:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-03-29 19:43:56 +02:00
|
|
|
int zmq::plain_server_t::send_zap_request (const std::string &username,
|
|
|
|
const std::string &password)
|
2013-06-22 16:05:34 +02:00
|
|
|
{
|
2017-08-16 12:50:46 +02:00
|
|
|
const uint8_t *credentials[] = {
|
|
|
|
reinterpret_cast<const uint8_t *> (username.c_str ()),
|
|
|
|
reinterpret_cast<const uint8_t *> (password.c_str ())};
|
|
|
|
size_t credentials_sizes[] = {username.size (), password.size ()};
|
2017-08-16 13:42:24 +02:00
|
|
|
return zap_client_t::send_zap_request ("PLAIN", 5, credentials,
|
|
|
|
credentials_sizes, 2);
|
2013-06-06 13:13:10 +02:00
|
|
|
}
|