gse: Use the smb_gss_oid_equal wrapper.
[Samba/gebeck_regimport.git] / source4 / auth / kerberos / kerberos.h
blob0be6d74a8bb9857f1ce939c315ccf4694aa58f16
1 /*
2 Unix SMB/CIFS implementation.
3 simple kerberos5 routines for active directory
4 Copyright (C) Andrew Tridgell 2001
5 Copyright (C) Luke Howard 2002-2003
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #ifndef _AUTH_KERBEROS_H_
22 #define _AUTH_KERBEROS_H_
24 #if defined(HAVE_KRB5)
26 #include "system/kerberos.h"
27 #include "auth/kerberos/krb5_init_context.h"
28 #include "librpc/gen_ndr/krb5pac.h"
29 #include "lib/krb5_wrap/krb5_samba.h"
30 #include "lib/krb5_wrap/gss_samba.h"
32 struct auth_user_info_dc;
33 struct cli_credentials;
35 struct ccache_container {
36 struct smb_krb5_context *smb_krb5_context;
37 krb5_ccache ccache;
40 struct keytab_container {
41 struct smb_krb5_context *smb_krb5_context;
42 krb5_keytab keytab;
45 /* not really ASN.1, but RFC 1964 */
46 #define TOK_ID_KRB_AP_REQ ((const uint8_t *)"\x01\x00")
47 #define TOK_ID_KRB_AP_REP ((const uint8_t *)"\x02\x00")
48 #define TOK_ID_KRB_ERROR ((const uint8_t *)"\x03\x00")
49 #define TOK_ID_GSS_GETMIC ((const uint8_t *)"\x01\x01")
50 #define TOK_ID_GSS_WRAP ((const uint8_t *)"\x02\x01")
52 #ifdef HAVE_KRB5_KEYBLOCK_KEYVALUE
53 #define KRB5_KEY_TYPE(k) ((k)->keytype)
54 #define KRB5_KEY_LENGTH(k) ((k)->keyvalue.length)
55 #define KRB5_KEY_DATA(k) ((k)->keyvalue.data)
56 #else
57 #define KRB5_KEY_TYPE(k) ((k)->enctype)
58 #define KRB5_KEY_LENGTH(k) ((k)->length)
59 #define KRB5_KEY_DATA(k) ((k)->contents)
60 #endif /* HAVE_KRB5_KEYBLOCK_KEYVALUE */
62 #define ENC_ALL_TYPES (ENC_CRC32 | ENC_RSA_MD5 | ENC_RC4_HMAC_MD5 | \
63 ENC_HMAC_SHA1_96_AES128 | ENC_HMAC_SHA1_96_AES256)
65 #ifndef HAVE_KRB5_SET_DEFAULT_TGS_KTYPES
66 krb5_error_code krb5_set_default_tgs_ktypes(krb5_context ctx, const krb5_enctype *enc);
67 #endif
69 #if defined(HAVE_KRB5_AUTH_CON_SETKEY) && !defined(HAVE_KRB5_AUTH_CON_SETUSERUSERKEY)
70 krb5_error_code krb5_auth_con_setuseruserkey(krb5_context context, krb5_auth_context auth_context, krb5_keyblock *keyblock);
71 #endif
73 #if defined(HAVE_KRB5_PRINCIPAL_GET_COMP_STRING) && !defined(HAVE_KRB5_PRINC_COMPONENT)
74 const krb5_data *krb5_princ_component(krb5_context context, krb5_principal principal, int i );
75 #endif
77 /* Samba wrapper function for krb5 functionality. */
78 NTSTATUS kerberos_pac_logon_info(TALLOC_CTX *mem_ctx,
79 DATA_BLOB blob,
80 krb5_context context,
81 const krb5_keyblock *krbtgt_keyblock,
82 const krb5_keyblock *service_keyblock,
83 krb5_const_principal client_principal,
84 time_t tgs_authtime,
85 struct PAC_LOGON_INFO **logon_info);
86 krb5_error_code kerberos_encode_pac(TALLOC_CTX *mem_ctx,
87 struct PAC_DATA *pac_data,
88 krb5_context context,
89 const krb5_keyblock *krbtgt_keyblock,
90 const krb5_keyblock *service_keyblock,
91 DATA_BLOB *pac);
92 krb5_error_code kerberos_create_pac(TALLOC_CTX *mem_ctx,
93 struct auth_user_info_dc *user_info_dc,
94 krb5_context context,
95 const krb5_keyblock *krbtgt_keyblock,
96 const krb5_keyblock *service_keyblock,
97 krb5_principal client_principal,
98 time_t tgs_authtime,
99 DATA_BLOB *pac);
101 #include "auth/kerberos/proto.h"
103 #endif /* HAVE_KRB5 */
105 #endif /* _AUTH_KERBEROS_H_ */