1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
|
/*
* Copyright 1999-2006 University of Chicago
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef GLOBUS_DONT_DOCUMENT_INTERNAL
/**
* @file export_sec_context.c
* @author Sam Lang, Sam Meder
*
* $RCSfile: export_sec_context.c,v $
* $Revision: 1.10.16.1 $
* $Date: 2010/02/19 21:18:50 $
*/
#endif
static char *rcsid = "$Id: export_sec_context.c,v 1.10.16.1 2010/02/19 21:18:50 bester Exp $";
#include "gssapi_openssl.h"
#include "globus_i_gsi_gss_utils.h"
#include <string.h>
/**
* @name Export Security Context
* @ingroup globus_gsi_gssapi
*/
/* @{ */
/**
* Saves the important info about the session, converts
* it to a token, then deletes the context.
*
* @param minor_status
* @param context_handle_P
* @param interprocess_token
*
* @return
*
* For SSL handle We need to save:
* version of this routine.
* cred_usage, i.e. are we accept or initiate
* target/source or name
* Session: Protocol, cipher, and Master-Key
* Client-Random
* Server-Random
* tmp.key_block: client and server Mac_secrets
* write_sequence
* read_sequence
* write iv
* read iv
*
* see SSL 3.0 draft http://wp.netscape.com/eng/ssl3/index.html
*/
OM_uint32
GSS_CALLCONV gss_export_sec_context(
OM_uint32 * minor_status,
gss_ctx_id_t * context_handle_P,
gss_buffer_t interprocess_token)
{
OM_uint32 major_status = GSS_S_COMPLETE;
OM_uint32 local_major_status;
OM_uint32 local_minor_status;
globus_result_t local_result;
gss_ctx_id_desc * context;
int peer_cert_count;
SSL_SESSION * session = NULL;
STACK_OF(X509) * cert_chain = NULL;
BIO * bp = NULL;
unsigned char int_buffer[4];
OM_uint32 cred_usage;
int index;
int length;
int rc;
unsigned char * context_serialized;
static char * _function_name_ =
"gss_export_sec_context";
GLOBUS_I_GSI_GSSAPI_DEBUG_ENTER;
*minor_status = (OM_uint32) GLOBUS_SUCCESS;
#ifdef WIN32
major_status = GSS_S_UNAVAILABLE;
GLOBUS_GSI_GSSAPI_ERROR_RESULT(
minor_status,
GLOBUS_GSI_GSSAPI_ERROR_UNSUPPORTED,
(_GGSL("This function does not currently support the "
"Windows platform")));
goto exit;
#endif
context = *context_handle_P;
if (context_handle_P == NULL ||
context == (gss_ctx_id_t) GSS_C_NO_CONTEXT)
{
major_status = GSS_S_FAILURE;
GLOBUS_GSI_GSSAPI_ERROR_RESULT(
minor_status,
GLOBUS_GSI_GSSAPI_ERROR_BAD_ARGUMENT,
(_GGSL("Invalid context handle passed to the function: %s"),
_function_name_));
goto exit;
}
if (interprocess_token == NULL ||
interprocess_token == GSS_C_NO_BUFFER)
{
major_status = GSS_S_FAILURE;
GLOBUS_GSI_GSSAPI_ERROR_RESULT(
minor_status,
GLOBUS_GSI_GSSAPI_ERROR_BAD_ARGUMENT,
(_GGSL("Invalid interprocess token parameter passed to function: %s"),
_function_name_));
goto exit;
}
/* Open mem bio for writing the session */
bp = BIO_new(BIO_s_mem());
if (bp == NULL)
{
major_status = GSS_S_FAILURE;
GLOBUS_GSI_GSSAPI_ERROR_RESULT(
minor_status,
GLOBUS_GSI_GSSAPI_ERROR_IMPEXP_BIO_SSL,
(_GGSL("NULL bio for serializing SSL handle")));
goto exit;
}
/* lock the context mutex */
globus_mutex_lock(&context->mutex);
interprocess_token->length = 0;
/* version number */
L2N(GLOBUS_I_GSI_GSSAPI_IMPL_VERSION, int_buffer);
BIO_write(bp, (char *) int_buffer, 4);
/* cred_usage */
cred_usage =
context->locally_initiated ? GSS_C_INITIATE : GSS_C_ACCEPT;
L2N(cred_usage, int_buffer);
BIO_write(bp, (char *)int_buffer, 4);
/* get session */
session = SSL_get_session(context->gss_ssl);
if (!session)
{
GLOBUS_GSI_GSSAPI_OPENSSL_ERROR_RESULT(
minor_status,
GLOBUS_GSI_GSSAPI_ERROR_IMPEXP_BIO_SSL,
(_GGSL("Couln't retrieve SSL session handle from SSL")));
major_status = GSS_S_FAILURE;
goto unlock_mutex;
}
GLOBUS_I_GSI_GSSAPI_DEBUG_PRINT_OBJECT(3, SSL_SESSION, session);
i2d_SSL_SESSION_bio(bp, session);
local_result = globus_gsi_callback_get_cert_depth(context->callback_data,
&peer_cert_count);
if(local_result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_GSSAPI_ERROR_CHAIN_RESULT(
minor_status, local_result,
GLOBUS_GSI_GSSAPI_ERROR_WITH_CALLBACK_DATA);
major_status = GSS_S_FAILURE;
goto unlock_mutex;
}
L2N(peer_cert_count, int_buffer);
BIO_write(bp, (char *)int_buffer, 4);
local_result = globus_gsi_callback_get_cert_chain(
context->callback_data,
&cert_chain);
if(local_result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_GSSAPI_ERROR_CHAIN_RESULT(
minor_status, local_result,
GLOBUS_GSI_GSSAPI_ERROR_WITH_CALLBACK_DATA);
major_status = GSS_S_FAILURE;
goto unlock_mutex;
}
for(index = 0; index < peer_cert_count; ++index)
{
i2d_X509_bio(bp, sk_X509_value(cert_chain, index));
}
sk_X509_pop_free(cert_chain, X509_free);
local_major_status = globus_i_gsi_gss_SSL_write_bio(&local_minor_status,
context,
bp);
if(GSS_ERROR(local_major_status))
{
GLOBUS_GSI_GSSAPI_ERROR_CHAIN_RESULT(
minor_status,
local_minor_status,
GLOBUS_GSI_GSSAPI_ERROR_IMPEXP_BIO_SSL);
major_status = local_major_status;
goto unlock_mutex;
}
/* now get it out of the BIO and call it a token */
length = BIO_pending(bp);
if (length <= 0)
{
GLOBUS_GSI_GSSAPI_OPENSSL_ERROR_RESULT(
minor_status,
GLOBUS_GSI_GSSAPI_ERROR_IMPEXP_BIO_SSL,
(_GGSL("Couldn't get data from BIO for serializing SSL handle")));
major_status = GSS_S_FAILURE;
goto unlock_mutex;
}
context_serialized = (unsigned char *) malloc(length);
if (!context_serialized)
{
GLOBUS_GSI_GSSAPI_MALLOC_ERROR(minor_status);
major_status = GSS_S_NO_CONTEXT;
goto unlock_mutex;
}
rc = BIO_read(bp, (char *)context_serialized, length);
globus_assert(rc == length);
interprocess_token->length = length;
interprocess_token->value = context_serialized;
/* unlock the context mutex */
globus_mutex_unlock(&context->mutex);
/* Now delete the GSS context as per RFC */
major_status = gss_delete_sec_context(&local_minor_status,
context_handle_P,
GSS_C_NO_BUFFER);
if(GSS_ERROR(major_status))
{
GLOBUS_GSI_GSSAPI_ERROR_CHAIN_RESULT(
minor_status, local_minor_status,
GLOBUS_GSI_GSSAPI_ERROR_WITH_GSS_CONTEXT);
goto exit;
}
goto exit;
unlock_mutex:
globus_mutex_unlock(&context->mutex);
exit:
if(bp)
{
BIO_free(bp);
}
GLOBUS_I_GSI_GSSAPI_DEBUG_EXIT;
return major_status;
}
/* @} */
|