krb5_samba: Add support for krb5_princ_size when using Heimdal
[Samba/bjacke.git] / lib / krb5_wrap / krb5_samba.h
blob3924fb7de812bb91c61a61d2d12b2dd34aadb9c5
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
6 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2005
7 Copyright (C) Guenther Deschner 2005-2009
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #ifndef _KRB5_SAMBA_H
24 #define _KRB5_SAMBA_H
26 #ifdef HAVE_KRB5
28 #define KRB5_PRIVATE 1 /* this file uses PRIVATE interfaces! */
29 /* this file uses DEPRECATED interfaces! */
31 #if defined(HAVE_KRB5_DEPRECATED_WITH_IDENTIFIER)
32 #define KRB5_DEPRECATED 1
33 #else
34 #define KRB5_DEPRECATED
35 #endif
37 #include "system/kerberos.h"
38 #include "system/network.h"
40 #ifndef KRB5_ADDR_NETBIOS
41 #define KRB5_ADDR_NETBIOS 0x14
42 #endif
44 #ifndef KRB5KRB_ERR_RESPONSE_TOO_BIG
45 #define KRB5KRB_ERR_RESPONSE_TOO_BIG (-1765328332L)
46 #endif
48 /* Heimdal uses a slightly different name */
49 #if defined(HAVE_ENCTYPE_ARCFOUR_HMAC_MD5) && !defined(HAVE_ENCTYPE_ARCFOUR_HMAC)
50 #define ENCTYPE_ARCFOUR_HMAC ENCTYPE_ARCFOUR_HMAC_MD5
51 #endif
53 /* The older versions of heimdal that don't have this
54 define don't seem to use it anyway. I'm told they
55 always use a subkey */
56 #ifndef HAVE_AP_OPTS_USE_SUBKEY
57 #define AP_OPTS_USE_SUBKEY 0
58 #endif
60 #ifndef krb5_princ_size
61 #if defined(HAVE_KRB5_KRB5_PRINCIPAL_GET_NUM_COMP)
62 #define krb5_princ_size krb5_principal_get_num_comp
63 #else
64 #error krb5_princ_size unavailable
65 #endif
66 #endif
68 typedef struct {
69 #if defined(HAVE_MAGIC_IN_KRB5_ADDRESS) && defined(HAVE_ADDRTYPE_IN_KRB5_ADDRESS) /* MIT */
70 krb5_address **addrs;
71 #elif defined(HAVE_KRB5_ADDRESSES) /* Heimdal */
72 krb5_addresses *addrs;
73 #else
74 #error UNKNOWN_KRB5_ADDRESS_TYPE
75 #endif /* defined(HAVE_MAGIC_IN_KRB5_ADDRESS) && defined(HAVE_ADDRTYPE_IN_KRB5_ADDRESS) */
76 } smb_krb5_addresses;
78 #ifdef HAVE_KRB5_KEYTAB_ENTRY_KEY /* MIT */
79 #define KRB5_KT_KEY(k) (&(k)->key)
80 #elif HAVE_KRB5_KEYTAB_ENTRY_KEYBLOCK /* Heimdal */
81 #define KRB5_KT_KEY(k) (&(k)->keyblock)
82 #else
83 #error krb5_keytab_entry has no key or keyblock member
84 #endif /* HAVE_KRB5_KEYTAB_ENTRY_KEY */
86 /* work around broken krb5.h on sles9 */
87 #ifdef SIZEOF_LONG
88 #undef SIZEOF_LONG
89 #endif
91 #ifdef HAVE_KRB5_KEYBLOCK_KEYVALUE /* Heimdal */
92 #define KRB5_KEY_TYPE(k) ((k)->keytype)
93 #define KRB5_KEY_LENGTH(k) ((k)->keyvalue.length)
94 #define KRB5_KEY_DATA(k) ((k)->keyvalue.data)
95 #define KRB5_KEY_DATA_CAST void
96 #else /* MIT */
97 #define KRB5_KEY_TYPE(k) ((k)->enctype)
98 #define KRB5_KEY_LENGTH(k) ((k)->length)
99 #define KRB5_KEY_DATA(k) ((k)->contents)
100 #define KRB5_KEY_DATA_CAST krb5_octet
101 #endif /* HAVE_KRB5_KEYBLOCK_KEYVALUE */
103 krb5_error_code smb_krb5_parse_name(krb5_context context,
104 const char *name, /* in unix charset */
105 krb5_principal *principal);
107 krb5_error_code smb_krb5_unparse_name(TALLOC_CTX *mem_ctx,
108 krb5_context context,
109 krb5_const_principal principal,
110 char **unix_name);
112 krb5_error_code krb5_set_default_tgs_ktypes(krb5_context ctx, const krb5_enctype *enc);
114 #if defined(HAVE_KRB5_AUTH_CON_SETKEY) && !defined(HAVE_KRB5_AUTH_CON_SETUSERUSERKEY)
115 krb5_error_code krb5_auth_con_setuseruserkey(krb5_context context, krb5_auth_context auth_context, krb5_keyblock *keyblock);
116 #endif
118 #ifndef HAVE_KRB5_FREE_UNPARSED_NAME
119 void krb5_free_unparsed_name(krb5_context ctx, char *val);
120 #endif
122 /* Stub out initialize_krb5_error_table since it is not present in all
123 * Kerberos implementations. If it's not present, it's not necessary to
124 * call it.
126 #ifndef HAVE_INITIALIZE_KRB5_ERROR_TABLE
127 #define initialize_krb5_error_table()
128 #endif
130 /* Samba wrapper functions for krb5 functionality. */
131 bool setup_kaddr( krb5_address *pkaddr, struct sockaddr_storage *paddr);
132 int create_kerberos_key_from_string(krb5_context context,
133 krb5_principal host_princ,
134 krb5_data *password,
135 krb5_keyblock *key,
136 krb5_enctype enctype,
137 bool no_salt);
138 int create_kerberos_key_from_string_direct(krb5_context context,
139 krb5_principal host_princ,
140 krb5_data *password,
141 krb5_keyblock *key,
142 krb5_enctype enctype);
144 krb5_error_code get_kerberos_allowed_etypes(krb5_context context, krb5_enctype **enctypes);
145 bool get_krb5_smb_session_key(TALLOC_CTX *mem_ctx,
146 krb5_context context,
147 krb5_auth_context auth_context,
148 DATA_BLOB *session_key, bool remote);
149 krb5_error_code smb_krb5_kt_free_entry(krb5_context context, krb5_keytab_entry *kt_entry);
150 void kerberos_set_creds_enctype(krb5_creds *pcreds, int enctype);
151 bool kerberos_compatible_enctypes(krb5_context context, krb5_enctype enctype1, krb5_enctype enctype2);
152 void kerberos_free_data_contents(krb5_context context, krb5_data *pdata);
153 krb5_error_code smb_krb5_parse_name_norealm(krb5_context context,
154 const char *name,
155 krb5_principal *principal);
156 bool smb_krb5_principal_compare_any_realm(krb5_context context,
157 krb5_const_principal princ1,
158 krb5_const_principal princ2);
159 krb5_error_code smb_krb5_renew_ticket(const char *ccache_string, const char *client_string, const char *service_string, time_t *expire_time);
160 krb5_error_code kpasswd_err_to_krb5_err(krb5_error_code res_code);
161 krb5_error_code smb_krb5_gen_netbios_krb5_address(smb_krb5_addresses **kerb_addr,
162 const char *netbios_name);
163 krb5_error_code smb_krb5_free_addresses(krb5_context context, smb_krb5_addresses *addr);
164 NTSTATUS krb5_to_nt_status(krb5_error_code kerberos_error);
165 krb5_error_code nt_status_to_krb5(NTSTATUS nt_status);
166 void smb_krb5_free_error(krb5_context context, krb5_error *krberror);
167 krb5_error_code handle_krberror_packet(krb5_context context,
168 krb5_data *packet);
170 void smb_krb5_get_init_creds_opt_free(krb5_context context,
171 krb5_get_init_creds_opt *opt);
172 krb5_error_code smb_krb5_get_init_creds_opt_alloc(krb5_context context,
173 krb5_get_init_creds_opt **opt);
174 krb5_enctype smb_get_enctype_from_kt_entry(krb5_keytab_entry *kt_entry);
175 krb5_error_code smb_krb5_enctype_to_string(krb5_context context,
176 krb5_enctype enctype,
177 char **etype_s);
178 krb5_error_code smb_krb5_open_keytab(krb5_context context,
179 const char *keytab_name,
180 bool write_access,
181 krb5_keytab *keytab);
182 krb5_error_code smb_krb5_keytab_name(TALLOC_CTX *mem_ctx,
183 krb5_context context,
184 krb5_keytab keytab,
185 const char **keytab_name);
186 krb5_error_code smb_krb5_get_credentials(krb5_context context,
187 krb5_ccache ccache,
188 krb5_principal me,
189 krb5_principal server,
190 krb5_principal impersonate_princ,
191 krb5_creds **out_creds);
192 krb5_error_code smb_krb5_get_creds(const char *server_s,
193 time_t time_offset,
194 const char *cc,
195 const char *impersonate_princ_s,
196 krb5_creds **creds_p);
197 char *smb_krb5_principal_get_realm(krb5_context context,
198 krb5_principal principal);
200 char *kerberos_get_principal_from_service_hostname(TALLOC_CTX *mem_ctx,
201 const char *service,
202 const char *remote_name,
203 const char *default_realm);
205 char *smb_get_krb5_error_message(krb5_context context,
206 krb5_error_code code,
207 TALLOC_CTX *mem_ctx);
209 int cli_krb5_get_ticket(TALLOC_CTX *mem_ctx,
210 const char *principal, time_t time_offset,
211 DATA_BLOB *ticket, DATA_BLOB *session_key_krb5,
212 uint32_t extra_ap_opts, const char *ccname,
213 time_t *tgs_expire,
214 const char *impersonate_princ_s);
216 bool unwrap_edata_ntstatus(TALLOC_CTX *mem_ctx,
217 DATA_BLOB *edata,
218 DATA_BLOB *edata_out);
220 #endif /* HAVE_KRB5 */
223 #endif /* _KRB5_SAMBA_H */