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
|
/*
* 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 get_mic.c
* @author Sam Lang, Sam Meder
*
* $RCSfile: get_mic.c,v $
* $Revision: 1.8.16.1 $
* $Date: 2010/02/19 21:18:50 $
*/
#endif
static char * rcsid = "$Id: get_mic.c,v 1.8.16.1 2010/02/19 21:18:50 bester Exp $";
#ifndef GLOBUS_DONT_DOCUMENT_INTERNAL
/* borrowed from OpenSSL's s3_enc.c
*/
static unsigned char ssl3_pad_1[48]={
0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36,
0x36,0x36,0x36,0x36,0x36,0x36,0x36,0x36 };
#endif /* GLOBUS_DONT_DOCUMENT_INTERNAL */
#include "gssapi.h"
#include "globus_i_gsi_gss_utils.h"
#include "gssapi_openssl.h"
/**
* @name Get MIC
* @ingroup globus_gsi_gssapi
*/
/* @{ */
/**
* Calculates a cryptographic MIC (message integrity check)
* over an application message, and returns that MIC in the token.
* The token and message can then be passed to the peer application
* which calls @ref gss_verify_mic to verify the MIC.
*
* @param minor_status
* @param context_handle
* @param qop_req
* @param message_buffer
* @param message_token
*
* @return
*/
OM_uint32
GSS_CALLCONV gss_get_mic(
OM_uint32 * minor_status,
const gss_ctx_id_t context_handle,
gss_qop_t qop_req,
const gss_buffer_t message_buffer,
gss_buffer_t message_token)
{
/*
* We can't use the SSL mac methods directly,
* partly because they only allow a length of
* 64K, and we want to use larger blocks.
* We will add the seq number and 32 bit length
* to the mic, and send them as well.
* this will allow us to check for out of
* seq records.
*
* These have 8 byte sequence number, 4 byte length, md.
*/
gss_ctx_id_desc * context = context_handle;
unsigned char * mac_sec;
unsigned char * seq;
unsigned char * token_value;
EVP_MD_CTX md_ctx;
const EVP_MD * hash;
unsigned int md_size;
int npad;
int index;
unsigned char * message_digest;
OM_uint32 major_status = GSS_S_COMPLETE;
globus_result_t local_result;
static char * _function_name_ =
"gss_get_mic";
GLOBUS_I_GSI_GSSAPI_DEBUG_ENTER;
*minor_status = (OM_uint32) GLOBUS_SUCCESS;
if (context_handle == GSS_C_NO_CONTEXT)
{
major_status = GSS_S_NO_CONTEXT;
GLOBUS_GSI_GSSAPI_ERROR_RESULT(
minor_status,
GLOBUS_GSI_GSSAPI_ERROR_BAD_ARGUMENT,
(_GGSL("Invalid context_handle parameter passed to function: %s"),
_function_name_));
goto exit;
}
/* lock the context mutex */
globus_mutex_lock(&context->mutex);
if(context->ctx_flags & GSS_I_PROTECTION_FAIL_ON_CONTEXT_EXPIRATION)
{
time_t lifetime;
local_result = globus_gsi_cred_get_lifetime(
context->cred_handle->cred_handle,
&lifetime);
if(local_result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_GSSAPI_ERROR_CHAIN_RESULT(
minor_status, local_result,
GLOBUS_GSI_GSSAPI_ERROR_WITH_GSI_CREDENTIAL);
major_status = GSS_S_FAILURE;
goto unlock_mutex;
}
if(lifetime <= 0)
{
major_status = GSS_S_CONTEXT_EXPIRED;
GLOBUS_GSI_GSSAPI_ERROR_RESULT(
minor_status,
GLOBUS_GSI_GSSAPI_ERROR_WITH_GSI_CREDENTIAL,
(_GGSL("The credential has expired")));
goto unlock_mutex;
}
}
mac_sec = context->gss_ssl->s3->write_mac_secret;
seq = context->gss_ssl->s3->write_sequence;
#if OPENSSL_VERSION_NUMBER < 0x10000000L
hash = context->gss_ssl->write_hash;
#else
hash = context->gss_ssl->write_hash->digest;
#endif
md_size = EVP_MD_size(hash);
message_token->value = (char *) malloc(GSS_SSL_MESSAGE_DIGEST_PADDING
+ md_size);
if (message_token->value == NULL)
{
GLOBUS_GSI_GSSAPI_MALLOC_ERROR(minor_status);
major_status = GSS_S_FAILURE;
goto unlock_mutex;
}
message_token->length = GSS_SSL_MESSAGE_DIGEST_PADDING + md_size;
token_value = message_token->value;
for (index = 0; index < GSS_SSL3_WRITE_SEQUENCE_SIZE; ++index)
{
*(token_value++) = seq[index];
}
for (index = (GSS_SSL3_WRITE_SEQUENCE_SIZE - 1); index >= 0; --index)
{
if (++seq[index]) break;
}
L2N(message_buffer->length, token_value);
token_value += 4;
message_digest = token_value;
npad = (48 / md_size) * md_size;
EVP_DigestInit(&md_ctx, (EVP_MD *) hash);
EVP_DigestUpdate(&md_ctx, mac_sec, md_size);
EVP_DigestUpdate(&md_ctx, ssl3_pad_1, npad);
EVP_DigestUpdate(&md_ctx, message_token->value,
GSS_SSL_MESSAGE_DIGEST_PADDING);
EVP_DigestUpdate(&md_ctx, message_buffer->value,
message_buffer->length);
EVP_DigestFinal(&md_ctx, message_digest, NULL);
/* DEBUG BLOCK */
{
unsigned int index;
unsigned char * p;
GLOBUS_I_GSI_GSSAPI_DEBUG_FPRINTF(
2, (globus_i_gsi_gssapi_debug_fstream,
"get_mic: len=%u mic:", message_token->length));
p = message_token->value;
for (index = 0; index < message_token->length; index++)
{
GLOBUS_I_GSI_GSSAPI_DEBUG_FPRINTF(
2, (globus_i_gsi_gssapi_debug_fstream,
"%2.2X", *p++));
}
GLOBUS_I_GSI_GSSAPI_DEBUG_PRINT(2 ,"\n");
}
unlock_mutex:
globus_mutex_unlock(&context->mutex);
exit:
GLOBUS_I_GSI_GSSAPI_DEBUG_EXIT;
return major_status;
}
/* @} */
/**
* @name Sign
* @ingroup globus_gsi_gssapi
*/
/* @{ */
/**
* Deprecated. Does the same thing as gss_get_mic for V1 compatability.
*
* @param minor_status
* @param context_handle
* @param qop_req
* @param message_buffer
* @param message_token
*
* @return
*/
OM_uint32
GSS_CALLCONV gss_sign(
OM_uint32 * minor_status,
gss_ctx_id_t context_handle,
int qop_req,
gss_buffer_t message_buffer,
gss_buffer_t message_token)
{
OM_uint32 major_status;
static char * _function_name_ =
"gss_sign";
GLOBUS_I_GSI_GSSAPI_DEBUG_ENTER;
major_status = gss_get_mic(minor_status,
context_handle,
qop_req,
message_buffer,
message_token);
GLOBUS_I_GSI_GSSAPI_DEBUG_EXIT;
return major_status;
}
/* @} */
|