2011-06-10 11:16:06 -04:00
|
|
|
/***************************************************************************
|
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2014-07-16 11:17:43 -04:00
|
|
|
* Copyright (C) 2011 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2011-06-10 11:16:06 -04:00
|
|
|
*
|
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
|
|
|
*
|
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2011-07-13 23:23:35 -04:00
|
|
|
|
|
|
|
#ifdef HAVE_GSSAPI
|
|
|
|
|
2011-07-13 16:54:54 -04:00
|
|
|
#include "curl_gssapi.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "sendf.h"
|
2011-06-10 11:16:06 -04:00
|
|
|
|
2014-07-21 03:53:43 -04:00
|
|
|
static const char spengo_oid_bytes[] = "\x2b\x06\x01\x05\x05\x02";
|
|
|
|
gss_OID_desc spnego_mech_oid = { 6, &spengo_oid_bytes };
|
|
|
|
static const char krb5_oid_bytes[] = "\x2a\x86\x48\x86\xf7\x12\x01\x02\x02";
|
|
|
|
gss_OID_desc krb5_mech_oid = { 9, &krb5_oid_bytes };
|
2014-07-11 05:55:07 -04:00
|
|
|
|
2011-06-10 11:16:06 -04:00
|
|
|
OM_uint32 Curl_gss_init_sec_context(
|
2011-08-03 12:00:07 -04:00
|
|
|
struct SessionHandle *data,
|
2014-07-21 03:53:43 -04:00
|
|
|
OM_uint32 *minor_status,
|
|
|
|
gss_ctx_id_t *context,
|
2011-06-10 11:16:06 -04:00
|
|
|
gss_name_t target_name,
|
2014-07-21 03:53:43 -04:00
|
|
|
gss_OID mech_type,
|
2011-06-10 11:16:06 -04:00
|
|
|
gss_channel_bindings_t input_chan_bindings,
|
|
|
|
gss_buffer_t input_token,
|
|
|
|
gss_buffer_t output_token,
|
2014-07-21 03:53:43 -04:00
|
|
|
OM_uint32 *ret_flags)
|
2011-06-10 11:16:06 -04:00
|
|
|
{
|
2011-07-25 05:49:26 -04:00
|
|
|
OM_uint32 req_flags = GSS_C_MUTUAL_FLAG | GSS_C_REPLAY_FLAG;
|
2011-07-19 13:10:43 -04:00
|
|
|
|
2011-07-25 05:49:26 -04:00
|
|
|
if(data->set.gssapi_delegation & CURLGSSAPI_DELEGATION_POLICY_FLAG) {
|
|
|
|
#ifdef GSS_C_DELEG_POLICY_FLAG
|
|
|
|
req_flags |= GSS_C_DELEG_POLICY_FLAG;
|
|
|
|
#else
|
|
|
|
infof(data, "warning: support for CURLGSSAPI_DELEGATION_POLICY_FLAG not "
|
|
|
|
"compiled in\n");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
if(data->set.gssapi_delegation & CURLGSSAPI_DELEGATION_FLAG)
|
2011-07-19 13:10:43 -04:00
|
|
|
req_flags |= GSS_C_DELEG_FLAG;
|
|
|
|
|
2011-06-10 11:16:06 -04:00
|
|
|
return gss_init_sec_context(minor_status,
|
2011-06-10 11:26:34 -04:00
|
|
|
GSS_C_NO_CREDENTIAL, /* cred_handle */
|
2011-06-10 11:16:06 -04:00
|
|
|
context,
|
|
|
|
target_name,
|
2014-07-21 03:53:43 -04:00
|
|
|
mech_type,
|
2011-07-19 13:10:43 -04:00
|
|
|
req_flags,
|
2011-06-10 11:26:34 -04:00
|
|
|
0, /* time_req */
|
2011-06-10 11:16:06 -04:00
|
|
|
input_chan_bindings,
|
|
|
|
input_token,
|
2011-06-10 11:26:34 -04:00
|
|
|
NULL, /* actual_mech_type */
|
2011-06-10 11:16:06 -04:00
|
|
|
output_token,
|
|
|
|
ret_flags,
|
2011-06-10 11:26:34 -04:00
|
|
|
NULL /* time_rec */);
|
2011-06-10 11:16:06 -04:00
|
|
|
}
|
2011-07-13 23:23:35 -04:00
|
|
|
|
|
|
|
#endif /* HAVE_GSSAPI */
|