summaryrefslogtreecommitdiffstats
path: root/proxy
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2012-02-02 18:27:40 -0500
committerSimo Sorce <simo@redhat.com>2012-02-03 22:32:24 -0500
commita6df808c421b6d26feef041819f89f6d6973ec83 (patch)
treecb1ff0708fd4d11f5d44eec00a277994ad8bc9d5 /proxy
parentfad3b1058ff1abdcfb0a51de35e8e6f408ba68a9 (diff)
downloadgss-proxy-a6df808c421b6d26feef041819f89f6d6973ec83.tar.gz
gss-proxy-a6df808c421b6d26feef041819f89f6d6973ec83.tar.xz
gss-proxy-a6df808c421b6d26feef041819f89f6d6973ec83.zip
Add server implementation of gssx_indicate_mechs
Diffstat (limited to 'proxy')
-rw-r--r--proxy/Makefile.am1
-rw-r--r--proxy/src/gp_rpc_indicate_mechs.c252
-rw-r--r--proxy/src/gp_rpc_process.c4
3 files changed, 253 insertions, 4 deletions
diff --git a/proxy/Makefile.am b/proxy/Makefile.am
index 7bdc790..b394fb5 100644
--- a/proxy/Makefile.am
+++ b/proxy/Makefile.am
@@ -107,6 +107,7 @@ gssproxy_SOURCES = \
src/gp_rpc_accept_sec_context.c \
src/gp_rpc_release_handle.c \
src/gp_rpc_acquire_cred.c \
+ src/gp_rpc_indicate_mechs.c \
src/gssproxy.c
accept_context_SOURCES = \
diff --git a/proxy/src/gp_rpc_indicate_mechs.c b/proxy/src/gp_rpc_indicate_mechs.c
new file mode 100644
index 0000000..7a5f2c0
--- /dev/null
+++ b/proxy/src/gp_rpc_indicate_mechs.c
@@ -0,0 +1,252 @@
+/*
+ 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"
+#include "gp_debug.h"
+
+int gp_indicate_mechs(struct gssproxy_ctx *gpctx,
+ union gp_rpc_arg *arg,
+ union gp_rpc_res *res)
+{
+ struct gssx_arg_indicate_mechs *ima;
+ struct gssx_res_indicate_mechs *imr;
+ gss_OID_set mech_set = GSS_C_NO_OID_SET;
+ gss_OID_set name_types = GSS_C_NO_OID_SET;
+ gss_OID_set mech_attrs = GSS_C_NO_OID_SET;
+ gss_OID_set known_mech_attrs = GSS_C_NO_OID_SET;
+ gss_buffer_desc sasl_mech_name = GSS_C_EMPTY_BUFFER;
+ gss_buffer_desc mech_name = GSS_C_EMPTY_BUFFER;
+ gss_buffer_desc mech_desc = GSS_C_EMPTY_BUFFER;
+ gss_OID_set attr_set = GSS_C_NO_OID_SET;
+ gss_buffer_desc name = GSS_C_EMPTY_BUFFER;
+ gss_buffer_desc short_desc = GSS_C_EMPTY_BUFFER;
+ gss_buffer_desc long_desc = GSS_C_EMPTY_BUFFER;
+ gssx_mech_info *mi;
+ gssx_mech_attr *ma;
+ uint32_t ret_maj;
+ uint32_t ret_min;
+ int present;
+ int h, i, j;
+ int ret;
+
+ ima = &arg->indicate_mechs;
+ imr = &res->indicate_mechs;
+
+ /* get all mechs */
+ ret_maj = gss_indicate_mechs(&ret_min, &mech_set);
+
+ ret = gp_conv_status_to_gssx(&ima->call_ctx,
+ ret_maj, ret_min, GSS_C_NO_OID,
+ &imr->status);
+ if (ret) {
+ goto done;
+ }
+
+ if (ret_maj) {
+ ret = 0;
+ goto done;
+ }
+
+ ret_maj = gss_create_empty_oid_set(&ret_min, &attr_set);
+ if (ret_maj) {
+ ret = ENOMEM;
+ goto done;
+ }
+ /* fill up gssx_mech_info */
+
+ imr->mechs.mechs_val = calloc(mech_set->count, sizeof(gssx_mech_info));
+ if (!imr->mechs.mechs_val) {
+ ret = ENOMEM;
+ goto done;
+ }
+ imr->mechs.mechs_len = mech_set->count;
+
+ for (i = 0, h = 0; i < mech_set->count; i++, h++) {
+
+ mi = &imr->mechs.mechs_val[h];
+
+ ret = gp_conv_oid_to_gssx(&mech_set->elements[i], &mi->mech);
+ if (ret) {
+ goto done;
+ }
+
+ ret_maj = gss_inquire_names_for_mech(&ret_min,
+ &mech_set->elements[i],
+ &name_types);
+ if (ret_maj) {
+ gp_log_failure(&mech_set->elements[i], ret_maj, ret_min);
+
+ /* temporarily skip any offender */
+ imr->mechs.mechs_len--;
+ h--;
+ xdr_free((xdrproc_t)xdr_gssx_OID, (char *)&mi->mech);
+ continue;
+#if 0
+ ret = EINVAL;
+ goto done;
+#endif
+ }
+
+ ret = gp_conv_oid_set_to_gssx(name_types, &mi->name_types);
+ if (ret) {
+ goto done;
+ }
+ gss_release_oid_set(&ret_min, &name_types);
+
+ ret_maj = gss_inquire_attrs_for_mech(&ret_min,
+ &mech_set->elements[i],
+ &mech_attrs,
+ &known_mech_attrs);
+ if (ret_maj) {
+ ret = EINVAL;
+ goto done;
+ }
+
+ ret = gp_conv_oid_set_to_gssx(mech_attrs, &mi->mech_attrs);
+ if (ret) {
+ goto done;
+ }
+ gss_release_oid_set(&ret_min, &mech_attrs);
+
+ ret = gp_conv_oid_set_to_gssx(known_mech_attrs,
+ &mi->known_mech_attrs);
+ if (ret) {
+ goto done;
+ }
+
+ for (j = 0; j < known_mech_attrs->count; j++) {
+
+ ret_maj = gss_test_oid_set_member(&ret_min,
+ &known_mech_attrs->elements[j],
+ attr_set,
+ &present);
+ if (ret_maj) {
+ ret = EINVAL;
+ goto done;
+ }
+
+ if (present) {
+ continue;
+ }
+
+ ret_maj = gss_add_oid_set_member(&ret_min,
+ &known_mech_attrs->elements[j],
+ &attr_set);
+ if (ret_maj) {
+ ret = ENOMEM;
+ goto done;
+ }
+
+ }
+ gss_release_oid_set(&ret_min, &known_mech_attrs);
+
+ ret_maj = gss_inquire_saslname_for_mech(&ret_min,
+ &mech_set->elements[i],
+ &sasl_mech_name,
+ &mech_name,
+ &mech_desc);
+ if (ret_maj) {
+ ret = EINVAL;
+ goto done;
+ }
+
+ ret = gp_conv_buffer_to_gssx(&sasl_mech_name, &mi->saslname_sasl_mech_name);
+ if (ret) {
+ goto done;
+ }
+ gss_release_buffer(&ret_min, &sasl_mech_name);
+
+ ret = gp_conv_buffer_to_gssx(&mech_name, &mi->saslname_mech_name);
+ if (ret) {
+ goto done;
+ }
+ gss_release_buffer(&ret_min, &mech_name);
+
+ ret = gp_conv_buffer_to_gssx(&mech_desc, &mi->saslname_mech_desc);
+ if (ret) {
+ goto done;
+ }
+ gss_release_buffer(&ret_min, &mech_desc);
+ }
+
+ /* fill up gssx_mech_attr */
+
+ imr->mech_attr_descs.mech_attr_descs_val = calloc(attr_set->count,
+ sizeof(gssx_mech_attr));
+ if (!imr->mech_attr_descs.mech_attr_descs_val) {
+ ret = ENOMEM;
+ goto done;
+ }
+ imr->mech_attr_descs.mech_attr_descs_len = attr_set->count;
+
+ for (i = 0; i < attr_set->count; i++) {
+
+ ma = &imr->mech_attr_descs.mech_attr_descs_val[i];
+
+ ret_maj = gss_display_mech_attr(&ret_min,
+ &attr_set->elements[i],
+ &name,
+ &short_desc,
+ &long_desc);
+ if (ret_maj) {
+ ret = EINVAL;
+ goto done;
+ }
+
+ ret = gp_conv_buffer_to_gssx(&name, &ma->name);
+ if (ret) {
+ goto done;
+ }
+ gss_release_buffer(&ret_min, &name);
+
+ ret = gp_conv_buffer_to_gssx(&short_desc, &ma->short_desc);
+ if (ret) {
+ goto done;
+ }
+ gss_release_buffer(&ret_min, &short_desc);
+
+ ret = gp_conv_buffer_to_gssx(&long_desc, &ma->long_desc);
+ if (ret) {
+ goto done;
+ }
+ gss_release_buffer(&ret_min, &long_desc);
+ }
+
+ ret = 0;
+
+done:
+ gss_release_buffer(&ret_min, &long_desc);
+ gss_release_buffer(&ret_min, &short_desc);
+ gss_release_buffer(&ret_min, &name);
+ gss_release_oid_set(&ret_min, &attr_set);
+ gss_release_buffer(&ret_min, &mech_desc);
+ gss_release_buffer(&ret_min, &mech_name);
+ gss_release_buffer(&ret_min, &sasl_mech_name);
+ gss_release_oid_set(&ret_min, &known_mech_attrs);
+ gss_release_oid_set(&ret_min, &mech_attrs);
+ gss_release_oid_set(&ret_min, &name_types);
+ gss_release_oid_set(&ret_min, &mech_set);
+ return ret;
+}
diff --git a/proxy/src/gp_rpc_process.c b/proxy/src/gp_rpc_process.c
index 2e101b0..ae170eb 100644
--- a/proxy/src/gp_rpc_process.c
+++ b/proxy/src/gp_rpc_process.c
@@ -370,10 +370,6 @@ int gp_rpc_process_call(struct gssproxy_ctx *gpctx,
return ret;
}
-int gp_indicate_mechs(gp_exec_std_args)
-{
- return 0;
-}
int gp_get_call_context(gp_exec_std_args)
{
return 0;