1 /* 2 rpcsec_gss.h 3 4 Copyright (c) 2000 The Regents of the University of Michigan. 5 All rights reserved. 6 7 Copyright (c) 2000 Dug Song <dugsong@UMICH.EDU>. 8 All rights reserved, all wrongs reversed. 9 10 Redistribution and use in source and binary forms, with or without 11 modification, are permitted provided that the following conditions 12 are met: 13 14 1. Redistributions of source code must retain the above copyright 15 notice, this list of conditions and the following disclaimer. 16 2. Redistributions in binary form must reproduce the above copyright 17 notice, this list of conditions and the following disclaimer in the 18 documentation and/or other materials provided with the distribution. 19 3. Neither the name of the University nor the names of its 20 contributors may be used to endorse or promote products derived 21 from this software without specific prior written permission. 22 23 THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED 24 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 25 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 26 DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 27 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 28 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 29 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR 30 BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 31 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 32 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 33 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 34 35 $Id: auth_gss.h,v 1.12 2001/04/30 19:44:47 andros Exp $ 36 */ 37 /* $FreeBSD$ */ 38 39 #ifndef _RPCSEC_GSS_INT_H 40 #define _RPCSEC_GSS_INT_H 41 42 /* RPCSEC_GSS control procedures. */ 43 typedef enum { 44 RPCSEC_GSS_DATA = 0, 45 RPCSEC_GSS_INIT = 1, 46 RPCSEC_GSS_CONTINUE_INIT = 2, 47 RPCSEC_GSS_DESTROY = 3 48 } rpc_gss_proc_t; 49 50 #define RPCSEC_GSS_VERSION 1 51 52 /* Credentials. */ 53 struct rpc_gss_cred { 54 u_int gc_version; /* version */ 55 rpc_gss_proc_t gc_proc; /* control procedure */ 56 u_int gc_seq; /* sequence number */ 57 rpc_gss_service_t gc_svc; /* service */ 58 gss_buffer_desc gc_handle; /* handle to server-side context */ 59 }; 60 61 /* Context creation response. */ 62 struct rpc_gss_init_res { 63 gss_buffer_desc gr_handle; /* handle to server-side context */ 64 u_int gr_major; /* major status */ 65 u_int gr_minor; /* minor status */ 66 u_int gr_win; /* sequence window */ 67 gss_buffer_desc gr_token; /* token */ 68 }; 69 70 /* Maximum sequence number value. */ 71 #define MAXSEQ 0x80000000 72 73 /* Prototypes. */ 74 __BEGIN_DECLS 75 76 bool_t xdr_gss_buffer_desc(XDR *xdrs, gss_buffer_desc *p); 77 bool_t xdr_rpc_gss_cred(XDR *xdrs, struct rpc_gss_cred *p); 78 bool_t xdr_rpc_gss_init_res(XDR *xdrs, struct rpc_gss_init_res *p); 79 bool_t xdr_rpc_gss_wrap_data(XDR *xdrs, xdrproc_t xdr_func, 80 caddr_t xdr_ptr, gss_ctx_id_t ctx, gss_qop_t qop, rpc_gss_service_t svc, 81 u_int seq); 82 bool_t xdr_rpc_gss_unwrap_data(XDR *xdrs, xdrproc_t xdr_func, 83 caddr_t xdr_ptr, gss_ctx_id_t ctx, gss_qop_t qop, rpc_gss_service_t svc, 84 u_int seq); 85 const char *_rpc_gss_num_to_qop(const char *mech, u_int num); 86 void _rpc_gss_set_error(int rpc_gss_error, int system_error); 87 88 void log_debug(const char *fmt, ...); 89 void log_status(const char *m, gss_OID mech, OM_uint32 major, 90 OM_uint32 minor); 91 void log_hexdump(const u_char *buf, int len, int offset); 92 93 __END_DECLS 94 95 #endif /* !_RPCSEC_GSS_INT_H */ 96