winex11: Create contexts at initialization time to avoid the need for locks.
[wine/multimedia.git] / dlls / secur32 / schannel_gnutls.c
blob16ce0ded7444a1a8f86003ec46a488be6a984490
1 /*
2 * GnuTLS-based implementation of the schannel (SSL/TLS) provider.
4 * Copyright 2005 Juan Lang
5 * Copyright 2008 Henri Verbeet
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library 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 GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "config.h"
23 #include "wine/port.h"
25 #include <stdarg.h>
26 #ifdef SONAME_LIBGNUTLS
27 #include <gnutls/gnutls.h>
28 #endif
30 #include "windef.h"
31 #include "winbase.h"
32 #include "sspi.h"
33 #include "schannel.h"
34 #include "secur32_priv.h"
35 #include "wine/debug.h"
36 #include "wine/library.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(secur32);
40 #if defined(SONAME_LIBGNUTLS) && !defined(HAVE_SECURITY_SECURITY_H)
42 static void *libgnutls_handle;
43 #define MAKE_FUNCPTR(f) static typeof(f) * p##f
44 MAKE_FUNCPTR(gnutls_alert_get);
45 MAKE_FUNCPTR(gnutls_alert_get_name);
46 MAKE_FUNCPTR(gnutls_certificate_allocate_credentials);
47 MAKE_FUNCPTR(gnutls_certificate_free_credentials);
48 MAKE_FUNCPTR(gnutls_certificate_get_peers);
49 MAKE_FUNCPTR(gnutls_cipher_get);
50 MAKE_FUNCPTR(gnutls_cipher_get_key_size);
51 MAKE_FUNCPTR(gnutls_credentials_set);
52 MAKE_FUNCPTR(gnutls_deinit);
53 MAKE_FUNCPTR(gnutls_global_deinit);
54 MAKE_FUNCPTR(gnutls_global_init);
55 MAKE_FUNCPTR(gnutls_global_set_log_function);
56 MAKE_FUNCPTR(gnutls_global_set_log_level);
57 MAKE_FUNCPTR(gnutls_handshake);
58 MAKE_FUNCPTR(gnutls_init);
59 MAKE_FUNCPTR(gnutls_kx_get);
60 MAKE_FUNCPTR(gnutls_mac_get);
61 MAKE_FUNCPTR(gnutls_mac_get_key_size);
62 MAKE_FUNCPTR(gnutls_perror);
63 MAKE_FUNCPTR(gnutls_protocol_get_version);
64 MAKE_FUNCPTR(gnutls_set_default_priority);
65 MAKE_FUNCPTR(gnutls_record_get_max_size);
66 MAKE_FUNCPTR(gnutls_record_recv);
67 MAKE_FUNCPTR(gnutls_record_send);
68 MAKE_FUNCPTR(gnutls_transport_get_ptr);
69 MAKE_FUNCPTR(gnutls_transport_set_errno);
70 MAKE_FUNCPTR(gnutls_transport_set_ptr);
71 MAKE_FUNCPTR(gnutls_transport_set_pull_function);
72 MAKE_FUNCPTR(gnutls_transport_set_push_function);
73 #undef MAKE_FUNCPTR
77 static ssize_t schan_pull_adapter(gnutls_transport_ptr_t transport,
78 void *buff, size_t buff_len)
80 struct schan_transport *t = (struct schan_transport*)transport;
81 gnutls_session_t s = (gnutls_session_t)schan_session_for_transport(t);
83 int ret = schan_pull(transport, buff, &buff_len);
84 if (ret)
86 pgnutls_transport_set_errno(s, ret);
87 return -1;
90 return buff_len;
93 static ssize_t schan_push_adapter(gnutls_transport_ptr_t transport,
94 const void *buff, size_t buff_len)
96 struct schan_transport *t = (struct schan_transport*)transport;
97 gnutls_session_t s = (gnutls_session_t)schan_session_for_transport(t);
99 int ret = schan_push(transport, buff, &buff_len);
100 if (ret)
102 pgnutls_transport_set_errno(s, ret);
103 return -1;
106 return buff_len;
109 BOOL schan_imp_create_session(schan_imp_session *session, BOOL is_server,
110 schan_imp_certificate_credentials cred)
112 gnutls_session_t *s = (gnutls_session_t*)session;
114 int err = pgnutls_init(s, is_server ? GNUTLS_SERVER : GNUTLS_CLIENT);
115 if (err != GNUTLS_E_SUCCESS)
117 pgnutls_perror(err);
118 return FALSE;
121 /* FIXME: We should be using the information from the credentials here. */
122 FIXME("Using hardcoded \"NORMAL\" priority\n");
123 err = pgnutls_set_default_priority(*s);
124 if (err != GNUTLS_E_SUCCESS)
126 pgnutls_perror(err);
127 pgnutls_deinit(*s);
128 return FALSE;
131 err = pgnutls_credentials_set(*s, GNUTLS_CRD_CERTIFICATE,
132 (gnutls_certificate_credentials)cred);
133 if (err != GNUTLS_E_SUCCESS)
135 pgnutls_perror(err);
136 pgnutls_deinit(*s);
137 return FALSE;
140 pgnutls_transport_set_pull_function(*s, schan_pull_adapter);
141 pgnutls_transport_set_push_function(*s, schan_push_adapter);
143 return TRUE;
146 void schan_imp_dispose_session(schan_imp_session session)
148 gnutls_session_t s = (gnutls_session_t)session;
149 pgnutls_deinit(s);
152 void schan_imp_set_session_transport(schan_imp_session session,
153 struct schan_transport *t)
155 gnutls_session_t s = (gnutls_session_t)session;
156 pgnutls_transport_set_ptr(s, (gnutls_transport_ptr_t)t);
159 SECURITY_STATUS schan_imp_handshake(schan_imp_session session)
161 gnutls_session_t s = (gnutls_session_t)session;
162 int err = pgnutls_handshake(s);
163 switch(err)
165 case GNUTLS_E_SUCCESS:
166 TRACE("Handshake completed\n");
167 return SEC_E_OK;
169 case GNUTLS_E_AGAIN:
170 TRACE("Continue...\n");
171 return SEC_I_CONTINUE_NEEDED;
173 case GNUTLS_E_WARNING_ALERT_RECEIVED:
174 case GNUTLS_E_FATAL_ALERT_RECEIVED:
176 gnutls_alert_description_t alert = pgnutls_alert_get(s);
177 const char *alert_name = pgnutls_alert_get_name(alert);
178 WARN("ALERT: %d %s\n", alert, alert_name);
179 return SEC_E_INTERNAL_ERROR;
182 default:
183 pgnutls_perror(err);
184 return SEC_E_INTERNAL_ERROR;
187 /* Never reached */
188 return SEC_E_OK;
191 static unsigned int schannel_get_cipher_block_size(gnutls_cipher_algorithm_t cipher)
193 const struct
195 gnutls_cipher_algorithm_t cipher;
196 unsigned int block_size;
198 algorithms[] =
200 {GNUTLS_CIPHER_3DES_CBC, 8},
201 {GNUTLS_CIPHER_AES_128_CBC, 16},
202 {GNUTLS_CIPHER_AES_256_CBC, 16},
203 {GNUTLS_CIPHER_ARCFOUR_128, 1},
204 {GNUTLS_CIPHER_ARCFOUR_40, 1},
205 {GNUTLS_CIPHER_DES_CBC, 8},
206 {GNUTLS_CIPHER_NULL, 1},
207 {GNUTLS_CIPHER_RC2_40_CBC, 8},
209 unsigned int i;
211 for (i = 0; i < sizeof(algorithms) / sizeof(*algorithms); ++i)
213 if (algorithms[i].cipher == cipher)
214 return algorithms[i].block_size;
217 FIXME("Unknown cipher %#x, returning 1\n", cipher);
219 return 1;
222 static DWORD schannel_get_protocol(gnutls_protocol_t proto)
224 /* FIXME: currently schannel only implements client connections, but
225 * there's no reason it couldn't be used for servers as well. The
226 * context doesn't tell us which it is, so assume client for now.
228 switch (proto)
230 case GNUTLS_SSL3: return SP_PROT_SSL3_CLIENT;
231 case GNUTLS_TLS1_0: return SP_PROT_TLS1_0_CLIENT;
232 case GNUTLS_TLS1_1: return SP_PROT_TLS1_1_CLIENT;
233 case GNUTLS_TLS1_2: return SP_PROT_TLS1_2_CLIENT;
234 default:
235 FIXME("unknown protocol %d\n", proto);
236 return 0;
240 static ALG_ID schannel_get_cipher_algid(gnutls_cipher_algorithm_t cipher)
242 switch (cipher)
244 case GNUTLS_CIPHER_UNKNOWN:
245 case GNUTLS_CIPHER_NULL: return 0;
246 case GNUTLS_CIPHER_ARCFOUR_40:
247 case GNUTLS_CIPHER_ARCFOUR_128: return CALG_RC4;
248 case GNUTLS_CIPHER_DES_CBC:
249 case GNUTLS_CIPHER_3DES_CBC: return CALG_DES;
250 case GNUTLS_CIPHER_AES_128_CBC:
251 case GNUTLS_CIPHER_AES_256_CBC: return CALG_AES;
252 case GNUTLS_CIPHER_RC2_40_CBC: return CALG_RC2;
253 default:
254 FIXME("unknown algorithm %d\n", cipher);
255 return 0;
259 static ALG_ID schannel_get_mac_algid(gnutls_mac_algorithm_t mac)
261 switch (mac)
263 case GNUTLS_MAC_UNKNOWN:
264 case GNUTLS_MAC_NULL: return 0;
265 case GNUTLS_MAC_MD5: return CALG_MD5;
266 case GNUTLS_MAC_SHA1:
267 case GNUTLS_MAC_SHA256:
268 case GNUTLS_MAC_SHA384:
269 case GNUTLS_MAC_SHA512: return CALG_SHA;
270 default:
271 FIXME("unknown algorithm %d\n", mac);
272 return 0;
276 static ALG_ID schannel_get_kx_algid(gnutls_kx_algorithm_t kx)
278 switch (kx)
280 case GNUTLS_KX_RSA: return CALG_RSA_KEYX;
281 case GNUTLS_KX_DHE_DSS:
282 case GNUTLS_KX_DHE_RSA: return CALG_DH_EPHEM;
283 default:
284 FIXME("unknown algorithm %d\n", kx);
285 return 0;
289 unsigned int schan_imp_get_session_cipher_block_size(schan_imp_session session)
291 gnutls_session_t s = (gnutls_session_t)session;
292 gnutls_cipher_algorithm_t cipher = pgnutls_cipher_get(s);
293 return schannel_get_cipher_block_size(cipher);
296 unsigned int schan_imp_get_max_message_size(schan_imp_session session)
298 return pgnutls_record_get_max_size((gnutls_session_t)session);
301 SECURITY_STATUS schan_imp_get_connection_info(schan_imp_session session,
302 SecPkgContext_ConnectionInfo *info)
304 gnutls_session_t s = (gnutls_session_t)session;
305 gnutls_protocol_t proto = pgnutls_protocol_get_version(s);
306 gnutls_cipher_algorithm_t alg = pgnutls_cipher_get(s);
307 gnutls_mac_algorithm_t mac = pgnutls_mac_get(s);
308 gnutls_kx_algorithm_t kx = pgnutls_kx_get(s);
310 info->dwProtocol = schannel_get_protocol(proto);
311 info->aiCipher = schannel_get_cipher_algid(alg);
312 info->dwCipherStrength = pgnutls_cipher_get_key_size(alg);
313 info->aiHash = schannel_get_mac_algid(mac);
314 info->dwHashStrength = pgnutls_mac_get_key_size(mac);
315 info->aiExch = schannel_get_kx_algid(kx);
316 /* FIXME: info->dwExchStrength? */
317 info->dwExchStrength = 0;
318 return SEC_E_OK;
321 SECURITY_STATUS schan_imp_get_session_peer_certificate(schan_imp_session session,
322 PCCERT_CONTEXT *cert)
324 gnutls_session_t s = (gnutls_session_t)session;
325 unsigned int list_size;
326 const gnutls_datum_t *datum;
328 datum = pgnutls_certificate_get_peers(s, &list_size);
329 if (datum)
331 *cert = CertCreateCertificateContext(X509_ASN_ENCODING, datum->data,
332 datum->size);
333 if (!*cert)
334 return GetLastError();
335 else
336 return SEC_E_OK;
338 else
339 return SEC_E_INTERNAL_ERROR;
342 SECURITY_STATUS schan_imp_send(schan_imp_session session, const void *buffer,
343 SIZE_T *length)
345 gnutls_session_t s = (gnutls_session_t)session;
346 ssize_t ret;
348 again:
349 ret = pgnutls_record_send(s, buffer, *length);
351 if (ret >= 0)
352 *length = ret;
353 else if (ret == GNUTLS_E_AGAIN)
355 struct schan_transport *t = (struct schan_transport *)pgnutls_transport_get_ptr(s);
356 SIZE_T count = 0;
358 if (schan_get_buffer(t, &t->out, &count))
359 goto again;
361 return SEC_I_CONTINUE_NEEDED;
363 else
365 pgnutls_perror(ret);
366 return SEC_E_INTERNAL_ERROR;
369 return SEC_E_OK;
372 SECURITY_STATUS schan_imp_recv(schan_imp_session session, void *buffer,
373 SIZE_T *length)
375 gnutls_session_t s = (gnutls_session_t)session;
376 ssize_t ret;
378 again:
379 ret = pgnutls_record_recv(s, buffer, *length);
381 if (ret >= 0)
382 *length = ret;
383 else if (ret == GNUTLS_E_AGAIN)
385 struct schan_transport *t = (struct schan_transport *)pgnutls_transport_get_ptr(s);
386 SIZE_T count = 0;
388 if (schan_get_buffer(t, &t->in, &count))
389 goto again;
391 return SEC_I_CONTINUE_NEEDED;
393 else
395 pgnutls_perror(ret);
396 return SEC_E_INTERNAL_ERROR;
399 return SEC_E_OK;
402 BOOL schan_imp_allocate_certificate_credentials(schan_imp_certificate_credentials *c)
404 int ret = pgnutls_certificate_allocate_credentials((gnutls_certificate_credentials*)c);
405 if (ret != GNUTLS_E_SUCCESS)
406 pgnutls_perror(ret);
407 return (ret == GNUTLS_E_SUCCESS);
410 void schan_imp_free_certificate_credentials(schan_imp_certificate_credentials c)
412 pgnutls_certificate_free_credentials((gnutls_certificate_credentials)c);
415 static void schan_gnutls_log(int level, const char *msg)
417 TRACE("<%d> %s", level, msg);
420 BOOL schan_imp_init(void)
422 int ret;
424 libgnutls_handle = wine_dlopen(SONAME_LIBGNUTLS, RTLD_NOW, NULL, 0);
425 if (!libgnutls_handle)
427 WARN("Failed to load libgnutls.\n");
428 return FALSE;
431 #define LOAD_FUNCPTR(f) \
432 if (!(p##f = wine_dlsym(libgnutls_handle, #f, NULL, 0))) \
434 ERR("Failed to load %s\n", #f); \
435 goto fail; \
438 LOAD_FUNCPTR(gnutls_alert_get)
439 LOAD_FUNCPTR(gnutls_alert_get_name)
440 LOAD_FUNCPTR(gnutls_certificate_allocate_credentials)
441 LOAD_FUNCPTR(gnutls_certificate_free_credentials)
442 LOAD_FUNCPTR(gnutls_certificate_get_peers)
443 LOAD_FUNCPTR(gnutls_cipher_get)
444 LOAD_FUNCPTR(gnutls_cipher_get_key_size)
445 LOAD_FUNCPTR(gnutls_credentials_set)
446 LOAD_FUNCPTR(gnutls_deinit)
447 LOAD_FUNCPTR(gnutls_global_deinit)
448 LOAD_FUNCPTR(gnutls_global_init)
449 LOAD_FUNCPTR(gnutls_global_set_log_function)
450 LOAD_FUNCPTR(gnutls_global_set_log_level)
451 LOAD_FUNCPTR(gnutls_handshake)
452 LOAD_FUNCPTR(gnutls_init)
453 LOAD_FUNCPTR(gnutls_kx_get)
454 LOAD_FUNCPTR(gnutls_mac_get)
455 LOAD_FUNCPTR(gnutls_mac_get_key_size)
456 LOAD_FUNCPTR(gnutls_perror)
457 LOAD_FUNCPTR(gnutls_protocol_get_version)
458 LOAD_FUNCPTR(gnutls_set_default_priority)
459 LOAD_FUNCPTR(gnutls_record_get_max_size);
460 LOAD_FUNCPTR(gnutls_record_recv);
461 LOAD_FUNCPTR(gnutls_record_send);
462 LOAD_FUNCPTR(gnutls_transport_get_ptr)
463 LOAD_FUNCPTR(gnutls_transport_set_errno)
464 LOAD_FUNCPTR(gnutls_transport_set_ptr)
465 LOAD_FUNCPTR(gnutls_transport_set_pull_function)
466 LOAD_FUNCPTR(gnutls_transport_set_push_function)
467 #undef LOAD_FUNCPTR
469 ret = pgnutls_global_init();
470 if (ret != GNUTLS_E_SUCCESS)
472 pgnutls_perror(ret);
473 goto fail;
476 if (TRACE_ON(secur32))
478 pgnutls_global_set_log_level(4);
479 pgnutls_global_set_log_function(schan_gnutls_log);
482 return TRUE;
484 fail:
485 wine_dlclose(libgnutls_handle, NULL, 0);
486 libgnutls_handle = NULL;
487 return FALSE;
490 void schan_imp_deinit(void)
492 pgnutls_global_deinit();
493 wine_dlclose(libgnutls_handle, NULL, 0);
494 libgnutls_handle = NULL;
497 #endif /* SONAME_LIBGNUTLS && !HAVE_SECURITY_SECURITY_H */