Windows global stuff:
[krb5.git] / src / lib / gssapi / krb5 / disp_status.c
1 /*
2  * Copyright 1993 by OpenVision Technologies, Inc.
3  * 
4  * Permission to use, copy, modify, distribute, and sell this software
5  * and its documentation for any purpose is hereby granted without fee,
6  * provided that the above copyright notice appears in all copies and
7  * that both that copyright notice and this permission notice appear in
8  * supporting documentation, and that the name of OpenVision not be used
9  * in advertising or publicity pertaining to distribution of the software
10  * without specific, written prior permission. OpenVision makes no
11  * representations about the suitability of this software for any
12  * purpose.  It is provided "as is" without express or implied warranty.
13  * 
14  * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16  * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
18  * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
19  * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
20  * PERFORMANCE OF THIS SOFTWARE.
21  */
22
23 #include "gssapiP_krb5.h"
24 #include "com_err.h"
25
26 /* XXXX internationalization!! */
27
28 /**/
29
30 static int init_et = 0;
31
32 /**/
33
34 OM_uint32
35 krb5_gss_display_status(context, minor_status, status_value, status_type,
36                         mech_type, message_context, status_string)
37      krb5_context context;
38      OM_uint32 *minor_status;
39      OM_uint32 status_value;
40      int status_type;
41      const_gss_OID mech_type;
42      int *message_context;
43      gss_buffer_t status_string;
44 {
45    status_string->length = 0;
46    status_string->value = NULL;
47
48    if ((mech_type != GSS_C_NULL_OID) &&
49        (! g_OID_equal(gss_mech_krb5, mech_type))) {
50       *minor_status = 0;
51       return(GSS_S_BAD_MECH);
52    }
53
54    if (status_type == GSS_C_GSS_CODE) {
55       return(g_display_major_status(minor_status, status_value,
56                                     message_context, status_string));
57    } else if (status_type == GSS_C_MECH_CODE) {
58       if (!init_et) {
59          krb5_init_ets(context);
60          initialize_k5g_error_table();
61          init_et = 1;
62       }
63
64       if (*message_context) {
65          *minor_status = (OM_uint32) G_BAD_MSG_CTX;
66          return(GSS_S_FAILURE);
67       }
68
69       return(g_display_com_err_status(minor_status, status_value,
70                                       status_string));
71    } else {
72       *minor_status = 0;
73       return(GSS_S_BAD_STATUS);
74    }
75 }