2013-09-30 15:51:20 -05:00
|
|
|
/*
|
|
|
|
Copyright (c) 2007-2013 Contributors as noted in the AUTHORS file
|
|
|
|
|
|
|
|
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 "platform.hpp"
|
|
|
|
#ifdef ZMQ_HAVE_WINDOWS
|
|
|
|
#include "windows.hpp"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
#include "msg.hpp"
|
|
|
|
#include "session_base.hpp"
|
|
|
|
#include "err.hpp"
|
|
|
|
#include "gssapi_mechanism_base.hpp"
|
|
|
|
#include "wire.hpp"
|
|
|
|
|
2013-10-03 13:43:20 -05:00
|
|
|
zmq::gssapi_mechanism_base_t::gssapi_mechanism_base_t () :
|
|
|
|
send_tok (),
|
|
|
|
recv_tok (),
|
|
|
|
in_buf (),
|
|
|
|
target_name (GSS_C_NO_NAME),
|
|
|
|
service_name (NULL),
|
|
|
|
maj_stat (GSS_S_COMPLETE),
|
|
|
|
min_stat (0),
|
|
|
|
init_sec_min_stat (0),
|
|
|
|
ret_flags (0),
|
|
|
|
gss_flags (GSS_C_MUTUAL_FLAG | GSS_C_REPLAY_FLAG),
|
|
|
|
token_flags (0),
|
|
|
|
cred (GSS_C_NO_CREDENTIAL),
|
|
|
|
context (GSS_C_NO_CONTEXT)
|
2013-09-30 15:51:20 -05:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
zmq::gssapi_mechanism_base_t::~gssapi_mechanism_base_t ()
|
|
|
|
{
|
2013-10-03 13:43:20 -05:00
|
|
|
if(target_name)
|
|
|
|
gss_release_name(&min_stat, &target_name);
|
|
|
|
if(context)
|
|
|
|
gss_delete_sec_context(&min_stat, &context, GSS_C_NO_BUFFER);
|
2013-09-30 15:51:20 -05:00
|
|
|
}
|
|
|
|
|
2013-10-02 22:09:36 -05:00
|
|
|
int zmq::gssapi_mechanism_base_t::produce_token (msg_t *msg_, int flags_, void *token_value_, size_t token_length_)
|
2013-09-30 15:51:20 -05:00
|
|
|
{
|
2013-10-02 22:09:36 -05:00
|
|
|
zmq_assert (token_value_);
|
|
|
|
zmq_assert (token_length_ <= 0xFFFFFFFFUL);
|
2013-09-30 15:51:20 -05:00
|
|
|
|
2013-10-02 22:09:36 -05:00
|
|
|
const size_t cmd_len = 6 + 1 + 4 + token_length_;
|
|
|
|
uint8_t *cmd_buf = static_cast <uint8_t *> (malloc (cmd_len));
|
|
|
|
alloc_assert (cmd_buf);
|
|
|
|
|
|
|
|
uint8_t *ptr = cmd_buf;
|
2013-09-30 15:51:20 -05:00
|
|
|
|
|
|
|
// Add command name
|
|
|
|
memcpy (ptr, "\x05TOKEN", 6);
|
|
|
|
ptr += 6;
|
|
|
|
|
2013-10-02 22:09:36 -05:00
|
|
|
// Add gss flags
|
|
|
|
put_uint8 (ptr, static_cast <uint8_t> (flags_));
|
|
|
|
ptr += 1;
|
|
|
|
|
|
|
|
// Add token length
|
|
|
|
put_uint32 (ptr, static_cast <uint32_t> (token_length_));
|
|
|
|
ptr += 4;
|
|
|
|
|
|
|
|
// Add token value
|
|
|
|
memcpy (ptr, token_value_, token_length_);
|
|
|
|
ptr += token_length_;
|
|
|
|
|
|
|
|
const int rc = msg_->init_size (cmd_len);
|
2013-09-30 15:51:20 -05:00
|
|
|
errno_assert (rc == 0);
|
2013-10-02 22:09:36 -05:00
|
|
|
memcpy (msg_->data (), cmd_buf, cmd_len);
|
|
|
|
free (cmd_buf);
|
2013-09-30 15:51:20 -05:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-02 22:09:36 -05:00
|
|
|
int zmq::gssapi_mechanism_base_t::process_token (msg_t *msg_, int &flags_, void **token_value_, size_t &token_length_)
|
2013-09-30 15:51:20 -05:00
|
|
|
{
|
2013-10-02 22:09:36 -05:00
|
|
|
zmq_assert (token_value_);
|
|
|
|
|
|
|
|
uint8_t *ptr = static_cast <uint8_t *> (msg_->data ());
|
2013-09-30 15:51:20 -05:00
|
|
|
size_t bytes_left = msg_->size ();
|
|
|
|
|
2013-10-02 22:09:36 -05:00
|
|
|
// Get command name
|
2013-09-30 15:51:20 -05:00
|
|
|
if (bytes_left < 6 || memcmp (ptr, "\x05TOKEN", 6)) {
|
|
|
|
errno = EPROTO;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
ptr += 6;
|
|
|
|
bytes_left -= 6;
|
2013-10-02 22:09:36 -05:00
|
|
|
|
|
|
|
// Get flags
|
|
|
|
if (bytes_left < 1) {
|
|
|
|
errno = EPROTO;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
flags_ = static_cast <int> (get_uint8 (ptr));
|
|
|
|
ptr += 1;
|
|
|
|
bytes_left -= 1;
|
|
|
|
|
|
|
|
// Get token length
|
|
|
|
if (bytes_left < 4) {
|
|
|
|
errno = EPROTO;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
token_length_ = get_uint32 (ptr);
|
|
|
|
ptr += 4;
|
|
|
|
bytes_left -= 4;
|
|
|
|
|
2013-10-03 15:44:26 -05:00
|
|
|
// Get token value. TODO do unwrap here to prevent this extra memcpy.
|
2013-10-02 22:09:36 -05:00
|
|
|
if (bytes_left < token_length_) {
|
|
|
|
errno = EPROTO;
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
*token_value_ = static_cast <char *> (malloc (token_length_ ? token_length_ : 1));
|
|
|
|
if (token_length_) {
|
|
|
|
alloc_assert (*token_value_);
|
|
|
|
memcpy(*token_value_, ptr, token_length_);
|
|
|
|
ptr += token_length_;
|
|
|
|
bytes_left -= token_length_;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bytes_left > 0) {
|
|
|
|
errno = EPROTO;
|
|
|
|
return -1;
|
|
|
|
}
|
2013-09-30 15:51:20 -05:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-03 15:44:26 -05:00
|
|
|
/// TODO add support for TOKEN_SEND_MIC
|
|
|
|
/// TODO use gss_wrap_size_limit
|
|
|
|
int
|
|
|
|
zmq::gssapi_mechanism_base_t::produce_message (msg_t *msg_)
|
|
|
|
{
|
|
|
|
// wrap it
|
|
|
|
int state;
|
|
|
|
gss_buffer_desc plaintext;
|
|
|
|
gss_buffer_desc wrapped;
|
|
|
|
plaintext.value = msg_->data ();
|
|
|
|
plaintext.length = msg_->size ();
|
|
|
|
|
|
|
|
maj_stat = gss_wrap(&min_stat, context, 1, GSS_C_QOP_DEFAULT,
|
|
|
|
&plaintext, &state, &wrapped);
|
|
|
|
|
|
|
|
zmq_assert (maj_stat == GSS_S_COMPLETE);
|
|
|
|
zmq_assert (state);
|
|
|
|
|
|
|
|
// prepare msg_ for wrapped text
|
|
|
|
int rc = msg_->close ();
|
|
|
|
zmq_assert (rc == 0);
|
|
|
|
|
|
|
|
// produce token
|
|
|
|
const int flags = (TOKEN_DATA | TOKEN_WRAPPED | TOKEN_ENCRYPTED);
|
|
|
|
rc = produce_token (msg_, flags, wrapped.value, wrapped.length);
|
|
|
|
zmq_assert (rc == 0);
|
|
|
|
gss_release_buffer (&min_stat, &wrapped);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
zmq::gssapi_mechanism_base_t::process_message (msg_t *msg_)
|
|
|
|
{
|
|
|
|
// process token
|
|
|
|
int flags;
|
|
|
|
gss_buffer_desc wrapped;
|
|
|
|
int rc = process_token(msg_, flags, &wrapped.value, wrapped.length);
|
|
|
|
zmq_assert (rc == 0);
|
|
|
|
|
|
|
|
// ensure valid security context
|
|
|
|
zmq_assert (context != GSS_C_NO_CONTEXT);
|
|
|
|
zmq_assert (flags & TOKEN_WRAPPED);
|
|
|
|
zmq_assert (flags & TOKEN_ENCRYPTED);
|
|
|
|
|
|
|
|
// unwrap
|
|
|
|
int state;
|
|
|
|
gss_buffer_desc plaintext;
|
|
|
|
maj_stat = gss_unwrap(&min_stat, context, &wrapped, &plaintext,
|
|
|
|
&state, (gss_qop_t *) NULL);
|
|
|
|
|
|
|
|
zmq_assert(maj_stat == GSS_S_COMPLETE);
|
|
|
|
zmq_assert(state);
|
|
|
|
|
|
|
|
// re-init msg_ with plaintext
|
|
|
|
rc = msg_->close ();
|
|
|
|
zmq_assert (rc == 0);
|
|
|
|
msg_->init_size (plaintext.length);
|
|
|
|
zmq_assert (rc == 0);
|
|
|
|
|
|
|
|
memcpy (msg_->data (), plaintext.value, plaintext.length);
|
|
|
|
gss_release_buffer (&min_stat, &plaintext);
|
|
|
|
gss_release_buffer (&min_stat, &wrapped);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-10-03 13:43:20 -05:00
|
|
|
int zmq::gssapi_mechanism_base_t::acquire_credentials (char * service_name_, gss_cred_id_t * cred_)
|
|
|
|
{
|
|
|
|
OM_uint32 maj_stat;
|
|
|
|
OM_uint32 min_stat;
|
|
|
|
gss_name_t server_name;
|
|
|
|
|
|
|
|
gss_buffer_desc name_buf;
|
|
|
|
name_buf.value = service_name_;
|
|
|
|
name_buf.length = strlen ((char *) name_buf.value) + 1;
|
|
|
|
|
|
|
|
maj_stat = gss_import_name (&min_stat, &name_buf,
|
|
|
|
gss_nt_service_name, &server_name);
|
|
|
|
|
|
|
|
if (maj_stat != GSS_S_COMPLETE)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
maj_stat = gss_acquire_cred (&min_stat, server_name, 0,
|
|
|
|
GSS_C_NO_OID_SET, GSS_C_ACCEPT,
|
|
|
|
cred_, NULL, NULL);
|
|
|
|
|
|
|
|
if (maj_stat != GSS_S_COMPLETE)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
gss_release_name(&min_stat, &server_name);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|