summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2012-02-07 17:38:15 -0500
committerSimo Sorce <simo@redhat.com>2012-02-09 01:36:07 -0500
commite374fe56c600e7e1e559f33c3ea751e0676b689b (patch)
tree8c864ae62723e65ddea3cca441a161e7dd94a620
parent0b357211ddfbcd0d6c9ea837b2975c69932903be (diff)
downloadgss-proxy-e374fe56c600e7e1e559f33c3ea751e0676b689b.tar.gz
gss-proxy-e374fe56c600e7e1e559f33c3ea751e0676b689b.tar.xz
gss-proxy-e374fe56c600e7e1e559f33c3ea751e0676b689b.zip
Implement server side init_sec_context function.
-rw-r--r--proxy/Makefile.am1
-rw-r--r--proxy/src/gp_rpc_init_sec_context.c139
-rw-r--r--proxy/src/gp_rpc_process.c4
3 files changed, 140 insertions, 4 deletions
diff --git a/proxy/Makefile.am b/proxy/Makefile.am
index 54c8448..82f4568 100644
--- a/proxy/Makefile.am
+++ b/proxy/Makefile.am
@@ -111,6 +111,7 @@ gssproxy_SOURCES = \
src/gp_rpc_acquire_cred.c \
src/gp_rpc_indicate_mechs.c \
src/gp_rpc_import_and_canon_name.c \
+ src/gp_rpc_init_sec_context.c \
src/gssproxy.c
accept_context_SOURCES = \
diff --git a/proxy/src/gp_rpc_init_sec_context.c b/proxy/src/gp_rpc_init_sec_context.c
new file mode 100644
index 0000000..0addf16
--- /dev/null
+++ b/proxy/src/gp_rpc_init_sec_context.c
@@ -0,0 +1,139 @@
+/*
+ GSS-PROXY
+
+ Copyright (C) 2011 Red Hat, Inc.
+ Copyright (C) 2011 Simo Sorce <simo.sorce@redhat.com>
+
+ Permission is hereby granted, free of charge, to any person obtaining a
+ copy of this software and associated documentation files (the "Software"),
+ to deal in the Software without restriction, including without limitation
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ and/or sell copies of the Software, and to permit persons to whom the
+ Software is furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
+ THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+ DEALINGS IN THE SOFTWARE.
+*/
+
+#include "gp_rpc_process.h"
+
+int gp_init_sec_context(struct gssproxy_ctx *gpctx,
+ union gp_rpc_arg *arg,
+ union gp_rpc_res *res)
+{
+ struct gssx_arg_init_sec_context *isca;
+ struct gssx_res_init_sec_context *iscr;
+ gss_ctx_id_t ctx = GSS_C_NO_CONTEXT;
+ gss_cred_id_t ich = GSS_C_NO_CREDENTIAL;
+ gss_name_t target_name = GSS_C_NO_NAME;
+ gss_OID mech_type = GSS_C_NO_OID;
+ uint32_t req_flags;
+ uint32_t time_req;
+ struct gss_channel_bindings_struct cbs;
+ gss_channel_bindings_t pcbs;
+ gss_buffer_desc ibuf;
+ gss_OID actual_mech_type = GSS_C_NO_OID;
+ gss_buffer_desc obuf = GSS_C_EMPTY_BUFFER;
+ uint32_t ret_maj;
+ uint32_t ret_min;
+ int ret;
+
+ isca = &arg->init_sec_context;
+ iscr = &res->init_sec_context;
+
+ if (isca->context_handle) {
+ ret = gp_conv_gssx_to_ctx_id(isca->context_handle, &ctx);
+ if (ret) {
+ goto done;
+ }
+ }
+
+ if (isca->cred_handle) {
+ ret = gp_find_cred(isca->cred_handle, &ich);
+ if (ret) {
+ goto done;
+ }
+ }
+
+ ret = gp_conv_gssx_to_name(isca->target_name, &target_name);
+ if (ret) {
+ goto done;
+ }
+
+ ret = gp_conv_gssx_to_oid_alloc(&isca->mech_type, &mech_type);
+ if (ret) {
+ goto done;
+ }
+
+ req_flags = isca->req_flags;
+ time_req = isca->time_req;
+
+ if (isca->input_cb) {
+ pcbs = &cbs;
+ gp_conv_gssx_to_cb(isca->input_cb, pcbs);
+ } else {
+ pcbs = GSS_C_NO_CHANNEL_BINDINGS;
+ }
+
+ gp_conv_gssx_to_buffer(isca->input_token, &ibuf);
+
+ ret_maj = gss_init_sec_context(&ret_min,
+ ich,
+ &ctx,
+ target_name,
+ mech_type,
+ req_flags,
+ time_req,
+ pcbs,
+ &ibuf,
+ &actual_mech_type,
+ &obuf,
+ NULL,
+ NULL);
+ if (ret_maj != GSS_S_COMPLETE &&
+ ret_maj != GSS_S_CONTINUE_NEEDED) {
+ goto done;
+ }
+
+ iscr->context_handle = calloc(1, sizeof(gssx_ctx));
+ if (!iscr->context_handle) {
+ ret = ENOMEM;
+ goto done;
+ }
+ ret = gp_conv_ctx_id_to_gssx(&ctx, iscr->context_handle);
+ if (ret) {
+ goto done;
+ }
+
+ if (obuf.length != 0) {
+ iscr->output_token = calloc(1, sizeof(gssx_buffer));
+ if (!iscr->output_token) {
+ ret = ENOMEM;
+ goto done;
+ }
+ ret = gp_conv_buffer_to_gssx(&obuf, iscr->output_token);
+ if (ret) {
+ goto done;
+ }
+ }
+
+done:
+ if (ret) {
+ ret_maj = GSS_S_FAILURE;
+ ret_min = ret;
+ }
+ ret = gp_conv_status_to_gssx(&isca->call_ctx,
+ ret_maj, ret_min, mech_type,
+ &iscr->status);
+ gss_release_name(&ret_min, &target_name);
+ gss_release_oid(&ret_min, &mech_type);
+ return ret;
+}
diff --git a/proxy/src/gp_rpc_process.c b/proxy/src/gp_rpc_process.c
index ed125b8..da4ea57 100644
--- a/proxy/src/gp_rpc_process.c
+++ b/proxy/src/gp_rpc_process.c
@@ -387,10 +387,6 @@ int gp_store_cred(gp_exec_std_args)
{
return 0;
}
-int gp_init_sec_context(gp_exec_std_args)
-{
- return 0;
-}
int gp_get_mic(gp_exec_std_args)
{