s4-auth-krb: Simplify salt_princ handling.
[Samba/gbeck.git] / source4 / auth / kerberos / kerberos.h
blobfc2195de8ddbf000c0c845d1e5905f5a08657992
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 "auth/kerberos/krb5_init_context.h"
27 #include "librpc/gen_ndr/krb5pac.h"
28 #include "libcli/auth/krb5_wrap.h"
30 struct auth_user_info_dc;
31 struct cli_credentials;
33 struct ccache_container {
34 struct smb_krb5_context *smb_krb5_context;
35 krb5_ccache ccache;
38 struct keytab_container {
39 struct smb_krb5_context *smb_krb5_context;
40 krb5_keytab keytab;
43 /* not really ASN.1, but RFC 1964 */
44 #define TOK_ID_KRB_AP_REQ ((const uint8_t *)"\x01\x00")
45 #define TOK_ID_KRB_AP_REP ((const uint8_t *)"\x02\x00")
46 #define TOK_ID_KRB_ERROR ((const uint8_t *)"\x03\x00")
47 #define TOK_ID_GSS_GETMIC ((const uint8_t *)"\x01\x01")
48 #define TOK_ID_GSS_WRAP ((const uint8_t *)"\x02\x01")
50 #ifdef HAVE_KRB5_KEYBLOCK_KEYVALUE
51 #define KRB5_KEY_TYPE(k) ((k)->keytype)
52 #define KRB5_KEY_LENGTH(k) ((k)->keyvalue.length)
53 #define KRB5_KEY_DATA(k) ((k)->keyvalue.data)
54 #else
55 #define KRB5_KEY_TYPE(k) ((k)->enctype)
56 #define KRB5_KEY_LENGTH(k) ((k)->length)
57 #define KRB5_KEY_DATA(k) ((k)->contents)
58 #endif /* HAVE_KRB5_KEYBLOCK_KEYVALUE */
60 #define ENC_ALL_TYPES (ENC_CRC32 | ENC_RSA_MD5 | ENC_RC4_HMAC_MD5 | \
61 ENC_HMAC_SHA1_96_AES128 | ENC_HMAC_SHA1_96_AES256)
63 #ifndef HAVE_KRB5_SET_DEFAULT_TGS_KTYPES
64 krb5_error_code krb5_set_default_tgs_ktypes(krb5_context ctx, const krb5_enctype *enc);
65 #endif
67 #if defined(HAVE_KRB5_AUTH_CON_SETKEY) && !defined(HAVE_KRB5_AUTH_CON_SETUSERUSERKEY)
68 krb5_error_code krb5_auth_con_setuseruserkey(krb5_context context, krb5_auth_context auth_context, krb5_keyblock *keyblock);
69 #endif
71 #if defined(HAVE_KRB5_PRINCIPAL_GET_COMP_STRING) && !defined(HAVE_KRB5_PRINC_COMPONENT)
72 const krb5_data *krb5_princ_component(krb5_context context, krb5_principal principal, int i );
73 #endif
75 /* Samba wrapper function for krb5 functionality. */
76 krb5_error_code kerberos_kinit_password_cc(krb5_context ctx, krb5_ccache cc,
77 krb5_principal principal, const char *password,
78 krb5_principal impersonate_principal,
79 const char *self_service,
80 const char *target_service,
81 krb5_get_init_creds_opt *krb_options,
82 time_t *expire_time, time_t *kdc_time);
83 krb5_error_code kerberos_kinit_keyblock_cc(krb5_context ctx, krb5_ccache cc,
84 krb5_principal principal, krb5_keyblock *keyblock,
85 const char *target_service,
86 krb5_get_init_creds_opt *krb_options,
87 time_t *expire_time, time_t *kdc_time);
88 NTSTATUS kerberos_pac_logon_info(TALLOC_CTX *mem_ctx,
89 DATA_BLOB blob,
90 krb5_context context,
91 const krb5_keyblock *krbtgt_keyblock,
92 const krb5_keyblock *service_keyblock,
93 krb5_const_principal client_principal,
94 time_t tgs_authtime,
95 struct PAC_LOGON_INFO **logon_info);
96 krb5_error_code kerberos_encode_pac(TALLOC_CTX *mem_ctx,
97 struct PAC_DATA *pac_data,
98 krb5_context context,
99 const krb5_keyblock *krbtgt_keyblock,
100 const krb5_keyblock *service_keyblock,
101 DATA_BLOB *pac);
102 krb5_error_code kerberos_create_pac(TALLOC_CTX *mem_ctx,
103 struct auth_user_info_dc *user_info_dc,
104 krb5_context context,
105 const krb5_keyblock *krbtgt_keyblock,
106 const krb5_keyblock *service_keyblock,
107 krb5_principal client_principal,
108 time_t tgs_authtime,
109 DATA_BLOB *pac);
111 #include "auth/kerberos/proto.h"
113 #endif /* HAVE_KRB5 */
115 #endif /* _AUTH_KERBEROS_H_ */