summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2012-01-30 14:25:21 -0500
committerSimo Sorce <simo@redhat.com>2012-02-01 17:56:34 -0500
commit328bb688e1d8a11645e19631401e93e4cadad65f (patch)
treee16e5f61c5c6c6dff307edb41fdb470651de2adf
parent5ece0443a85a0c6339c5fed6b7d1e2f6a214356f (diff)
downloadgss-proxy-328bb688e1d8a11645e19631401e93e4cadad65f.tar.gz
gss-proxy-328bb688e1d8a11645e19631401e93e4cadad65f.tar.xz
gss-proxy-328bb688e1d8a11645e19631401e93e4cadad65f.zip
Add server implementation of acquire_cred
-rw-r--r--proxy/Makefile.am1
-rw-r--r--proxy/src/gp_conv.c8
-rw-r--r--proxy/src/gp_rpc_acquire_cred.c142
-rw-r--r--proxy/src/gp_rpc_process.c5
4 files changed, 149 insertions, 7 deletions
diff --git a/proxy/Makefile.am b/proxy/Makefile.am
index 201d91e..b5f3feb 100644
--- a/proxy/Makefile.am
+++ b/proxy/Makefile.am
@@ -104,6 +104,7 @@ gssproxy_SOURCES = \
src/gp_export.c \
src/gp_rpc_accept_sec_context.c \
src/gp_rpc_release_handle.c \
+ src/gp_rpc_acquire_cred.c \
src/gssproxy.c
accept_context_SOURCES = \
diff --git a/proxy/src/gp_conv.c b/proxy/src/gp_conv.c
index c5a96dc..f376793 100644
--- a/proxy/src/gp_conv.c
+++ b/proxy/src/gp_conv.c
@@ -445,9 +445,11 @@ int gp_conv_status_to_gssx(struct gssx_call_ctx *call_ctx,
status->major_status = ret_maj;
- ret = gp_conv_oid_to_gssx(mech, &status->mech);
- if (ret) {
- goto done;
+ if (mech) {
+ ret = gp_conv_oid_to_gssx(mech, &status->mech);
+ if (ret) {
+ goto done;
+ }
}
status->minor_status = ret_min;
diff --git a/proxy/src/gp_rpc_acquire_cred.c b/proxy/src/gp_rpc_acquire_cred.c
new file mode 100644
index 0000000..7389bf1
--- /dev/null
+++ b/proxy/src/gp_rpc_acquire_cred.c
@@ -0,0 +1,142 @@
+/*
+ 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_acquire_cred(struct gssproxy_ctx *gpctx,
+ union gp_rpc_arg *arg,
+ union gp_rpc_res *res)
+{
+ struct gssx_arg_acquire_cred *aca;
+ struct gssx_res_acquire_cred *acr;
+ uint32_t ret_maj;
+ uint32_t ret_min;
+ gss_cred_id_t in_cred = GSS_C_NO_CREDENTIAL;
+ gss_name_t desired_name = GSS_C_NO_NAME;
+ gss_OID_set desired_mechs = GSS_C_NO_OID_SET;
+ gss_OID desired_mech = GSS_C_NO_OID;
+ gss_cred_usage_t cred_usage;
+ gss_cred_id_t out_cred = GSS_C_NO_CREDENTIAL;
+ gss_cred_id_t *add_out_cred = NULL;
+ int ret;
+
+ aca = &arg->acquire_cred;
+ acr = &res->acquire_cred;
+
+ if (aca->input_cred_handle) {
+ ret = gp_find_cred(aca->input_cred_handle, &in_cred);
+ if (ret) {
+ goto done;
+ }
+ }
+
+ if (aca->add_cred_to_input_handle) {
+ add_out_cred = &out_cred;
+ }
+
+ if (aca->desired_name) {
+ ret = gp_conv_gssx_to_name(aca->desired_name, &desired_name);
+ if (ret) {
+ goto done;
+ }
+ }
+
+ ret = gp_conv_gssx_to_oid_set(&aca->desired_mechs, &desired_mechs);
+ if (ret) {
+ goto done;
+ }
+
+ cred_usage = gp_conv_gssx_to_cred_usage(aca->cred_usage);
+
+ if (in_cred == GSS_C_NO_CREDENTIAL) {
+ ret_maj = gss_acquire_cred(&ret_min,
+ desired_name,
+ aca->time_req,
+ desired_mechs,
+ cred_usage,
+ &out_cred,
+ NULL,
+ NULL);
+ } else {
+ if (desired_mechs != GSS_C_NO_OID_SET) {
+ switch (desired_mechs->count) {
+ case 0:
+ desired_mech = GSS_C_NO_OID;
+ break;
+ case 1:
+ desired_mech = &desired_mechs->elements[0];
+ break;
+ default:
+ ret = EINVAL;
+ goto done;
+ }
+ }
+ ret_maj = gss_add_cred(&ret_min,
+ in_cred,
+ desired_name,
+ desired_mech,
+ cred_usage,
+ aca->initiator_time_req,
+ aca->acceptor_time_req,
+ add_out_cred,
+ NULL,
+ NULL,
+ NULL);
+ }
+
+ ret = gp_conv_status_to_gssx(&aca->call_ctx,
+ ret_maj, ret_min, GSS_C_NO_OID,
+ &acr->status);
+ if (ret) {
+ goto done;
+ }
+
+ if (ret_maj) {
+ ret = 0;
+ goto done;
+ }
+
+ if (!out_cred) {
+ if (in_cred) {
+ out_cred = in_cred;
+ } else {
+ ret = EINVAL;
+ goto done;
+ }
+ }
+ acr->output_cred_handle = calloc(1, sizeof(gssx_cred));
+ if (!acr->output_cred_handle) {
+ ret = ENOMEM;
+ goto done;
+ }
+ ret = gp_export_gssx_cred(&out_cred, acr->output_cred_handle);
+ if (ret) {
+ goto done;
+ }
+
+done:
+ gss_release_cred(&ret_min, &out_cred);
+ return ret;
+}
diff --git a/proxy/src/gp_rpc_process.c b/proxy/src/gp_rpc_process.c
index 68b8c10..2e101b0 100644
--- a/proxy/src/gp_rpc_process.c
+++ b/proxy/src/gp_rpc_process.c
@@ -390,10 +390,7 @@ int gp_import_cred(gp_exec_std_args)
{
return 0;
}
-int gp_acquire_cred(gp_exec_std_args)
-{
- return 0;
-}
+
int gp_store_cred(gp_exec_std_args)
{
return 0;