17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*503a2b89SPeter Shoults * Common Development and Distribution License (the "License"). 6*503a2b89SPeter Shoults * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217c478bd9Sstevel@tonic-gate /* 22*503a2b89SPeter Shoults * Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23*503a2b89SPeter Shoults * Use is subject to license terms. 247c478bd9Sstevel@tonic-gate */ 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gate /* 277c478bd9Sstevel@tonic-gate * glue routine gss_unseal 287c478bd9Sstevel@tonic-gate */ 297c478bd9Sstevel@tonic-gate 307c478bd9Sstevel@tonic-gate #include <mechglueP.h> 317c478bd9Sstevel@tonic-gate 327c478bd9Sstevel@tonic-gate OM_uint32 337c478bd9Sstevel@tonic-gate gss_unseal(minor_status, 347c478bd9Sstevel@tonic-gate context_handle, 357c478bd9Sstevel@tonic-gate input_message_buffer, 367c478bd9Sstevel@tonic-gate output_message_buffer, 377c478bd9Sstevel@tonic-gate conf_state, 387c478bd9Sstevel@tonic-gate qop_state) 397c478bd9Sstevel@tonic-gate 407c478bd9Sstevel@tonic-gate OM_uint32 * minor_status; 417c478bd9Sstevel@tonic-gate gss_ctx_id_t context_handle; 427c478bd9Sstevel@tonic-gate gss_buffer_t input_message_buffer; 437c478bd9Sstevel@tonic-gate gss_buffer_t output_message_buffer; 447c478bd9Sstevel@tonic-gate int * conf_state; 457c478bd9Sstevel@tonic-gate int * qop_state; 467c478bd9Sstevel@tonic-gate 477c478bd9Sstevel@tonic-gate { 487c478bd9Sstevel@tonic-gate /* EXPORT DELETE START */ 497c478bd9Sstevel@tonic-gate OM_uint32 status; 507c478bd9Sstevel@tonic-gate gss_union_ctx_id_t ctx; 517c478bd9Sstevel@tonic-gate gss_mechanism mech; 527c478bd9Sstevel@tonic-gate 53*503a2b89SPeter Shoults if (minor_status != NULL) 54*503a2b89SPeter Shoults *minor_status = 0; 55*503a2b89SPeter Shoults 56*503a2b89SPeter Shoults if (output_message_buffer != GSS_C_NO_BUFFER) { 57*503a2b89SPeter Shoults output_message_buffer->length = 0; 58*503a2b89SPeter Shoults output_message_buffer->value = NULL; 59*503a2b89SPeter Shoults } 60*503a2b89SPeter Shoults 617c478bd9Sstevel@tonic-gate if (minor_status == NULL) 627c478bd9Sstevel@tonic-gate return (GSS_S_CALL_INACCESSIBLE_WRITE); 637c478bd9Sstevel@tonic-gate 647c478bd9Sstevel@tonic-gate if (context_handle == GSS_C_NO_CONTEXT) 657c478bd9Sstevel@tonic-gate return (GSS_S_CALL_INACCESSIBLE_READ | GSS_S_NO_CONTEXT); 667c478bd9Sstevel@tonic-gate 67*503a2b89SPeter Shoults if (input_message_buffer == GSS_C_NO_BUFFER || 68*503a2b89SPeter Shoults GSS_EMPTY_BUFFER(input_message_buffer)) 697c478bd9Sstevel@tonic-gate return (GSS_S_CALL_INACCESSIBLE_READ); 707c478bd9Sstevel@tonic-gate 71*503a2b89SPeter Shoults if (output_message_buffer == GSS_C_NO_BUFFER) 727c478bd9Sstevel@tonic-gate return (GSS_S_CALL_INACCESSIBLE_WRITE); 737c478bd9Sstevel@tonic-gate 747c478bd9Sstevel@tonic-gate /* 757c478bd9Sstevel@tonic-gate * select the approprate underlying mechanism routine and 767c478bd9Sstevel@tonic-gate * call it. 777c478bd9Sstevel@tonic-gate */ 787c478bd9Sstevel@tonic-gate 797c478bd9Sstevel@tonic-gate ctx = (gss_union_ctx_id_t) context_handle; 807c478bd9Sstevel@tonic-gate mech = __gss_get_mechanism(ctx->mech_type); 817c478bd9Sstevel@tonic-gate 827c478bd9Sstevel@tonic-gate if (mech) { 837c478bd9Sstevel@tonic-gate if (mech->gss_unseal) 847c478bd9Sstevel@tonic-gate status = mech->gss_unseal( 857c478bd9Sstevel@tonic-gate mech->context, 867c478bd9Sstevel@tonic-gate minor_status, 877c478bd9Sstevel@tonic-gate ctx->internal_ctx_id, 887c478bd9Sstevel@tonic-gate input_message_buffer, 897c478bd9Sstevel@tonic-gate output_message_buffer, 907c478bd9Sstevel@tonic-gate conf_state, 917c478bd9Sstevel@tonic-gate qop_state); 927c478bd9Sstevel@tonic-gate else 937c478bd9Sstevel@tonic-gate status = GSS_S_UNAVAILABLE; 947c478bd9Sstevel@tonic-gate 957c478bd9Sstevel@tonic-gate return (status); 967c478bd9Sstevel@tonic-gate } 977c478bd9Sstevel@tonic-gate 987c478bd9Sstevel@tonic-gate /* EXPORT DELETE END */ 997c478bd9Sstevel@tonic-gate 1007c478bd9Sstevel@tonic-gate return (GSS_S_BAD_MECH); 1017c478bd9Sstevel@tonic-gate } 1027c478bd9Sstevel@tonic-gate 1037c478bd9Sstevel@tonic-gate OM_uint32 1047c478bd9Sstevel@tonic-gate gss_unwrap(minor_status, 1057c478bd9Sstevel@tonic-gate context_handle, 1067c478bd9Sstevel@tonic-gate input_message_buffer, 1077c478bd9Sstevel@tonic-gate output_message_buffer, 1087c478bd9Sstevel@tonic-gate conf_state, 1097c478bd9Sstevel@tonic-gate qop_state) 1107c478bd9Sstevel@tonic-gate 1117c478bd9Sstevel@tonic-gate OM_uint32 * minor_status; 1127c478bd9Sstevel@tonic-gate const gss_ctx_id_t context_handle; 1137c478bd9Sstevel@tonic-gate const gss_buffer_t input_message_buffer; 1147c478bd9Sstevel@tonic-gate gss_buffer_t output_message_buffer; 1157c478bd9Sstevel@tonic-gate int * conf_state; 1167c478bd9Sstevel@tonic-gate gss_qop_t * qop_state; 1177c478bd9Sstevel@tonic-gate 1187c478bd9Sstevel@tonic-gate { 1197c478bd9Sstevel@tonic-gate return (gss_unseal(minor_status, (gss_ctx_id_t)context_handle, 1207c478bd9Sstevel@tonic-gate (gss_buffer_t)input_message_buffer, 1217c478bd9Sstevel@tonic-gate output_message_buffer, conf_state, (int *) qop_state)); 1227c478bd9Sstevel@tonic-gate } 123