xref: /illumos-gate/usr/src/lib/gss_mechs/mech_krb5/mech/get_tkt_flags.c (revision 581cede61ac9c14d8d4ea452562a567189eead78)
1 #pragma ident	"%Z%%M%	%I%	%E% SMI"
2 
3 /*
4  * Copyright 1993 by OpenVision Technologies, Inc.
5  *
6  * Permission to use, copy, modify, distribute, and sell this software
7  * and its documentation for any purpose is hereby granted without fee,
8  * provided that the above copyright notice appears in all copies and
9  * that both that copyright notice and this permission notice appear in
10  * supporting documentation, and that the name of OpenVision not be used
11  * in advertising or publicity pertaining to distribution of the software
12  * without specific, written prior permission. OpenVision makes no
13  * representations about the suitability of this software for any
14  * purpose.  It is provided "as is" without express or implied warranty.
15  *
16  * OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
17  * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
18  * EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
19  * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
20  * USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
21  * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
22  * PERFORMANCE OF THIS SOFTWARE.
23  */
24 
25 #include "gssapiP_krb5.h"
26 
27 /*
28  * $Id: get_tkt_flags.c 18131 2006-06-14 22:27:54Z tlyu $
29  */
30 
31 OM_uint32 KRB5_CALLCONV
32 gss_krb5int_get_tkt_flags(minor_status, context_handle, ticket_flags)
33      OM_uint32 *minor_status;
34      gss_ctx_id_t context_handle;
35      krb5_flags *ticket_flags;
36 {
37    krb5_gss_ctx_id_rec *ctx;
38 
39    /* validate the context handle */
40    if (! kg_validate_ctx_id(context_handle)) {
41       *minor_status = (OM_uint32) G_VALIDATE_FAILED;
42       return(GSS_S_NO_CONTEXT);
43    }
44 
45    ctx = (krb5_gss_ctx_id_rec *) context_handle;
46 
47    if (! ctx->established) {
48       *minor_status = KG_CTX_INCOMPLETE;
49       return(GSS_S_NO_CONTEXT);
50    }
51 
52    if (ticket_flags)
53       *ticket_flags = ctx->krb_flags;
54 
55    *minor_status = 0;
56    return(GSS_S_COMPLETE);
57 }
58