Path: blob/main/crypto/heimdal/lib/gssapi/test_common.c
34889 views
/*1* Copyright (c) 2006 - 2008 Kungliga Tekniska Högskolan2* (Royal Institute of Technology, Stockholm, Sweden).3* All rights reserved.4*5* Redistribution and use in source and binary forms, with or without6* modification, are permitted provided that the following conditions7* are met:8*9* 1. Redistributions of source code must retain the above copyright10* notice, this list of conditions and the following disclaimer.11*12* 2. Redistributions in binary form must reproduce the above copyright13* notice, this list of conditions and the following disclaimer in the14* documentation and/or other materials provided with the distribution.15*16* 3. Neither the name of KTH nor the names of its contributors may be17* used to endorse or promote products derived from this software without18* specific prior written permission.19*20* THIS SOFTWARE IS PROVIDED BY KTH AND ITS CONTRIBUTORS ``AS IS'' AND ANY21* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE22* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR23* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL KTH OR ITS CONTRIBUTORS BE24* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR25* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF26* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR27* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,28* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR29* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF30* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.31*/3233#include "krb5/gsskrb5_locl.h"34#include <err.h>35#include "test_common.h"3637char *38gssapi_err(OM_uint32 maj_stat, OM_uint32 min_stat, gss_OID mech)39{40OM_uint32 disp_min_stat, disp_maj_stat;41gss_buffer_desc maj_error_message;42gss_buffer_desc min_error_message;43OM_uint32 msg_ctx = 0;4445char *ret = NULL;4647maj_error_message.length = 0;48maj_error_message.value = NULL;49min_error_message.length = 0;50min_error_message.value = NULL;5152disp_maj_stat = gss_display_status(&disp_min_stat, maj_stat,53GSS_C_GSS_CODE,54mech, &msg_ctx, &maj_error_message);55disp_maj_stat = gss_display_status(&disp_min_stat, min_stat,56GSS_C_MECH_CODE,57mech, &msg_ctx, &min_error_message);58if (asprintf(&ret, "gss-code: %lu %.*s -- mech-code: %lu %.*s",59(unsigned long)maj_stat,60(int)maj_error_message.length,61(char *)maj_error_message.value,62(unsigned long)min_stat,63(int)min_error_message.length,64(char *)min_error_message.value) < 0 || ret == NULL)65errx(1, "malloc");6667gss_release_buffer(&disp_min_stat, &maj_error_message);68gss_release_buffer(&disp_min_stat, &min_error_message);6970return ret;71}72737475