xref: /illumos-gate/usr/src/lib/libgss/g_process_context.c (revision 6a634c9dca3093f3922e4b7ab826d7bdf17bf78e)
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
5503a2b89SPeter Shoults  * Common Development and Distribution License (the "License").
6503a2b89SPeter 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*5e01956fSGlenn Barry  * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
237c478bd9Sstevel@tonic-gate  */
247c478bd9Sstevel@tonic-gate 
257c478bd9Sstevel@tonic-gate /*
267c478bd9Sstevel@tonic-gate  *  glue routine gss_process_context
277c478bd9Sstevel@tonic-gate  */
287c478bd9Sstevel@tonic-gate 
297c478bd9Sstevel@tonic-gate #include <mechglueP.h>
30*5e01956fSGlenn Barry #include "gssapiP_generic.h"
317c478bd9Sstevel@tonic-gate 
327c478bd9Sstevel@tonic-gate OM_uint32
gss_process_context_token(minor_status,context_handle,token_buffer)337c478bd9Sstevel@tonic-gate gss_process_context_token(minor_status,
347c478bd9Sstevel@tonic-gate 				context_handle,
357c478bd9Sstevel@tonic-gate 				token_buffer)
367c478bd9Sstevel@tonic-gate 
377c478bd9Sstevel@tonic-gate OM_uint32 *			minor_status;
387c478bd9Sstevel@tonic-gate const gss_ctx_id_t		context_handle;
397c478bd9Sstevel@tonic-gate gss_buffer_t			token_buffer;
407c478bd9Sstevel@tonic-gate 
417c478bd9Sstevel@tonic-gate {
427c478bd9Sstevel@tonic-gate 	OM_uint32		status;
437c478bd9Sstevel@tonic-gate 	gss_union_ctx_id_t	ctx;
447c478bd9Sstevel@tonic-gate 	gss_mechanism		mech;
457c478bd9Sstevel@tonic-gate 
467c478bd9Sstevel@tonic-gate 	if (minor_status == NULL)
477c478bd9Sstevel@tonic-gate 		return (GSS_S_CALL_INACCESSIBLE_WRITE);
487c478bd9Sstevel@tonic-gate 	*minor_status = 0;
497c478bd9Sstevel@tonic-gate 
507c478bd9Sstevel@tonic-gate 	if (context_handle == GSS_C_NO_CONTEXT)
517c478bd9Sstevel@tonic-gate 		return (GSS_S_CALL_INACCESSIBLE_READ | GSS_S_NO_CONTEXT);
527c478bd9Sstevel@tonic-gate 
53503a2b89SPeter Shoults 	if (token_buffer == GSS_C_NO_BUFFER)
54503a2b89SPeter Shoults 		return (GSS_S_CALL_INACCESSIBLE_READ);
55503a2b89SPeter Shoults 
567c478bd9Sstevel@tonic-gate 	if (GSS_EMPTY_BUFFER(token_buffer))
577c478bd9Sstevel@tonic-gate 		return (GSS_S_CALL_INACCESSIBLE_READ);
587c478bd9Sstevel@tonic-gate 
597c478bd9Sstevel@tonic-gate 	/*
607c478bd9Sstevel@tonic-gate 	 * select the approprate underlying mechanism routine and
617c478bd9Sstevel@tonic-gate 	 * call it.
627c478bd9Sstevel@tonic-gate 	 */
637c478bd9Sstevel@tonic-gate 
647c478bd9Sstevel@tonic-gate 	ctx = (gss_union_ctx_id_t) context_handle;
657c478bd9Sstevel@tonic-gate 	mech = __gss_get_mechanism(ctx->mech_type);
667c478bd9Sstevel@tonic-gate 
677c478bd9Sstevel@tonic-gate 	if (mech) {
687c478bd9Sstevel@tonic-gate 
69*5e01956fSGlenn Barry 		if (mech->gss_process_context_token) {
707c478bd9Sstevel@tonic-gate 			status = mech->gss_process_context_token(
717c478bd9Sstevel@tonic-gate 							mech->context,
727c478bd9Sstevel@tonic-gate 							minor_status,
737c478bd9Sstevel@tonic-gate 							ctx->internal_ctx_id,
747c478bd9Sstevel@tonic-gate 							token_buffer);
75*5e01956fSGlenn Barry 			if (status != GSS_S_COMPLETE)
76*5e01956fSGlenn Barry 				map_error(minor_status, mech);
77*5e01956fSGlenn Barry 		} else
787c478bd9Sstevel@tonic-gate 			status = GSS_S_UNAVAILABLE;
797c478bd9Sstevel@tonic-gate 
807c478bd9Sstevel@tonic-gate 		return (status);
817c478bd9Sstevel@tonic-gate 	}
827c478bd9Sstevel@tonic-gate 
837c478bd9Sstevel@tonic-gate 	return (GSS_S_BAD_MECH);
847c478bd9Sstevel@tonic-gate }
85