2 * Wininet - networking layer. Uses unix sockets or OpenSSL.
4 * Copyright 2002 TransGaming Technologies Inc.
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "wine/port.h"
26 #if defined(__MINGW32__) || defined (_MSC_VER)
30 #include <sys/types.h>
34 #ifdef HAVE_SYS_POLL_H
35 # include <sys/poll.h>
37 #ifdef HAVE_SYS_TIME_H
38 # include <sys/time.h>
40 #ifdef HAVE_SYS_SOCKET_H
41 # include <sys/socket.h>
43 #ifdef HAVE_SYS_FILIO_H
44 # include <sys/filio.h>
49 #ifdef HAVE_SYS_IOCTL_H
50 # include <sys/ioctl.h>
56 #ifdef HAVE_NETINET_IN_H
57 # include <netinet/in.h>
59 #ifdef HAVE_OPENSSL_SSL_H
60 # include <openssl/ssl.h>
71 #include "wine/library.h"
78 #include "wine/debug.h"
81 /* To avoid conflicts with the Unix socket headers. we only need it for
82 * the error codes anyway. */
86 #define RESPONSE_TIMEOUT 30 /* FROM internet.c */
89 WINE_DEFAULT_DEBUG_CHANNEL(wininet);
92 * This should use winsock - To use winsock the functions will have to change a bit
93 * as they are designed for unix sockets.
94 * SSL stuff should use crypt32.dll
99 #include <openssl/err.h>
101 static CRITICAL_SECTION init_ssl_cs;
102 static CRITICAL_SECTION_DEBUG init_ssl_cs_debug =
105 { &init_ssl_cs_debug.ProcessLocksList,
106 &init_ssl_cs_debug.ProcessLocksList },
107 0, 0, { (DWORD_PTR)(__FILE__ ": init_ssl_cs") }
109 static CRITICAL_SECTION init_ssl_cs = { &init_ssl_cs_debug, -1, 0, 0, 0, 0 };
111 static void *OpenSSL_ssl_handle;
112 static void *OpenSSL_crypto_handle;
114 static SSL_METHOD *meth;
117 #define MAKE_FUNCPTR(f) static typeof(f) * p##f
119 /* OpenSSL functions that we use */
120 MAKE_FUNCPTR(SSL_library_init);
121 MAKE_FUNCPTR(SSL_load_error_strings);
122 MAKE_FUNCPTR(SSLv23_method);
123 MAKE_FUNCPTR(SSL_CTX_free);
124 MAKE_FUNCPTR(SSL_CTX_new);
125 MAKE_FUNCPTR(SSL_new);
126 MAKE_FUNCPTR(SSL_free);
127 MAKE_FUNCPTR(SSL_set_fd);
128 MAKE_FUNCPTR(SSL_connect);
129 MAKE_FUNCPTR(SSL_shutdown);
130 MAKE_FUNCPTR(SSL_write);
131 MAKE_FUNCPTR(SSL_read);
132 MAKE_FUNCPTR(SSL_pending);
133 MAKE_FUNCPTR(SSL_get_verify_result);
134 MAKE_FUNCPTR(SSL_get_peer_certificate);
135 MAKE_FUNCPTR(SSL_CTX_get_timeout);
136 MAKE_FUNCPTR(SSL_CTX_set_timeout);
137 MAKE_FUNCPTR(SSL_CTX_set_default_verify_paths);
139 /* OpenSSL's libcrypto functions that we use */
140 MAKE_FUNCPTR(BIO_new_fp);
141 MAKE_FUNCPTR(CRYPTO_num_locks);
142 MAKE_FUNCPTR(CRYPTO_set_id_callback);
143 MAKE_FUNCPTR(CRYPTO_set_locking_callback);
144 MAKE_FUNCPTR(ERR_get_error);
145 MAKE_FUNCPTR(ERR_error_string);
146 MAKE_FUNCPTR(i2d_X509);
149 static CRITICAL_SECTION *ssl_locks;
151 static unsigned long ssl_thread_id(void)
153 return GetCurrentThreadId();
156 static void ssl_lock_callback(int mode, int type, const char *file, int line)
158 if (mode & CRYPTO_LOCK)
159 EnterCriticalSection(&ssl_locks[type]);
161 LeaveCriticalSection(&ssl_locks[type]);
166 BOOL NETCON_init(WININET_NETCONNECTION *connection, BOOL useSSL)
168 connection->useSSL = FALSE;
169 connection->socketFD = -1;
172 #if defined(SONAME_LIBSSL) && defined(SONAME_LIBCRYPTO)
175 TRACE("using SSL connection\n");
176 EnterCriticalSection(&init_ssl_cs);
177 if (OpenSSL_ssl_handle) /* already initialized everything */
179 LeaveCriticalSection(&init_ssl_cs);
182 OpenSSL_ssl_handle = wine_dlopen(SONAME_LIBSSL, RTLD_NOW, NULL, 0);
183 if (!OpenSSL_ssl_handle)
185 ERR("trying to use a SSL connection, but couldn't load %s. Expect trouble.\n",
187 INTERNET_SetLastError(ERROR_INTERNET_SECURITY_CHANNEL_ERROR);
188 LeaveCriticalSection(&init_ssl_cs);
191 OpenSSL_crypto_handle = wine_dlopen(SONAME_LIBCRYPTO, RTLD_NOW, NULL, 0);
192 if (!OpenSSL_crypto_handle)
194 ERR("trying to use a SSL connection, but couldn't load %s. Expect trouble.\n",
196 INTERNET_SetLastError(ERROR_INTERNET_SECURITY_CHANNEL_ERROR);
197 LeaveCriticalSection(&init_ssl_cs);
201 /* mmm nice ugly macroness */
203 p##x = wine_dlsym(OpenSSL_ssl_handle, #x, NULL, 0); \
206 ERR("failed to load symbol %s\n", #x); \
207 INTERNET_SetLastError(ERROR_INTERNET_SECURITY_CHANNEL_ERROR); \
208 LeaveCriticalSection(&init_ssl_cs); \
212 DYNSSL(SSL_library_init);
213 DYNSSL(SSL_load_error_strings);
214 DYNSSL(SSLv23_method);
215 DYNSSL(SSL_CTX_free);
221 DYNSSL(SSL_shutdown);
225 DYNSSL(SSL_get_verify_result);
226 DYNSSL(SSL_get_peer_certificate);
227 DYNSSL(SSL_CTX_get_timeout);
228 DYNSSL(SSL_CTX_set_timeout);
229 DYNSSL(SSL_CTX_set_default_verify_paths);
232 #define DYNCRYPTO(x) \
233 p##x = wine_dlsym(OpenSSL_crypto_handle, #x, NULL, 0); \
236 ERR("failed to load symbol %s\n", #x); \
237 INTERNET_SetLastError(ERROR_INTERNET_SECURITY_CHANNEL_ERROR); \
238 LeaveCriticalSection(&init_ssl_cs); \
241 DYNCRYPTO(BIO_new_fp);
242 DYNCRYPTO(CRYPTO_num_locks);
243 DYNCRYPTO(CRYPTO_set_id_callback);
244 DYNCRYPTO(CRYPTO_set_locking_callback);
245 DYNCRYPTO(ERR_get_error);
246 DYNCRYPTO(ERR_error_string);
251 pSSL_load_error_strings();
252 pBIO_new_fp(stderr, BIO_NOCLOSE); /* FIXME: should use winedebug stuff */
254 meth = pSSLv23_method();
255 ctx = pSSL_CTX_new(meth);
256 if (!pSSL_CTX_set_default_verify_paths(ctx))
258 ERR("SSL_CTX_set_default_verify_paths failed: %s\n",
259 pERR_error_string(pERR_get_error(), 0));
260 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
261 LeaveCriticalSection(&init_ssl_cs);
265 pCRYPTO_set_id_callback(ssl_thread_id);
266 ssl_locks = HeapAlloc(GetProcessHeap(), 0,
267 pCRYPTO_num_locks() * sizeof(CRITICAL_SECTION));
270 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
271 LeaveCriticalSection(&init_ssl_cs);
274 for (i = 0; i < pCRYPTO_num_locks(); i++)
275 InitializeCriticalSection(&ssl_locks[i]);
276 pCRYPTO_set_locking_callback(ssl_lock_callback);
277 LeaveCriticalSection(&init_ssl_cs);
279 FIXME("can't use SSL, not compiled in.\n");
280 INTERNET_SetLastError(ERROR_INTERNET_SECURITY_CHANNEL_ERROR);
287 void NETCON_unload(void)
289 #if defined(SONAME_LIBSSL) && defined(SONAME_LIBCRYPTO)
290 if (OpenSSL_crypto_handle)
296 for (i = 0; i < pCRYPTO_num_locks(); i++)
297 DeleteCriticalSection(&ssl_locks[i]);
298 HeapFree(GetProcessHeap(), 0, ssl_locks);
300 wine_dlclose(OpenSSL_crypto_handle, NULL, 0);
302 if (OpenSSL_ssl_handle)
306 wine_dlclose(OpenSSL_ssl_handle, NULL, 0);
311 BOOL NETCON_connected(WININET_NETCONNECTION *connection)
313 if (connection->socketFD == -1)
319 /* translate a unix error code into a winsock one */
320 static int sock_get_error( int err )
322 #if !defined(__MINGW32__) && !defined (_MSC_VER)
325 case EINTR: return WSAEINTR;
326 case EBADF: return WSAEBADF;
328 case EACCES: return WSAEACCES;
329 case EFAULT: return WSAEFAULT;
330 case EINVAL: return WSAEINVAL;
331 case EMFILE: return WSAEMFILE;
332 case EWOULDBLOCK: return WSAEWOULDBLOCK;
333 case EINPROGRESS: return WSAEINPROGRESS;
334 case EALREADY: return WSAEALREADY;
335 case ENOTSOCK: return WSAENOTSOCK;
336 case EDESTADDRREQ: return WSAEDESTADDRREQ;
337 case EMSGSIZE: return WSAEMSGSIZE;
338 case EPROTOTYPE: return WSAEPROTOTYPE;
339 case ENOPROTOOPT: return WSAENOPROTOOPT;
340 case EPROTONOSUPPORT: return WSAEPROTONOSUPPORT;
341 case ESOCKTNOSUPPORT: return WSAESOCKTNOSUPPORT;
342 case EOPNOTSUPP: return WSAEOPNOTSUPP;
343 case EPFNOSUPPORT: return WSAEPFNOSUPPORT;
344 case EAFNOSUPPORT: return WSAEAFNOSUPPORT;
345 case EADDRINUSE: return WSAEADDRINUSE;
346 case EADDRNOTAVAIL: return WSAEADDRNOTAVAIL;
347 case ENETDOWN: return WSAENETDOWN;
348 case ENETUNREACH: return WSAENETUNREACH;
349 case ENETRESET: return WSAENETRESET;
350 case ECONNABORTED: return WSAECONNABORTED;
352 case ECONNRESET: return WSAECONNRESET;
353 case ENOBUFS: return WSAENOBUFS;
354 case EISCONN: return WSAEISCONN;
355 case ENOTCONN: return WSAENOTCONN;
356 case ESHUTDOWN: return WSAESHUTDOWN;
357 case ETOOMANYREFS: return WSAETOOMANYREFS;
358 case ETIMEDOUT: return WSAETIMEDOUT;
359 case ECONNREFUSED: return WSAECONNREFUSED;
360 case ELOOP: return WSAELOOP;
361 case ENAMETOOLONG: return WSAENAMETOOLONG;
362 case EHOSTDOWN: return WSAEHOSTDOWN;
363 case EHOSTUNREACH: return WSAEHOSTUNREACH;
364 case ENOTEMPTY: return WSAENOTEMPTY;
366 case EPROCLIM: return WSAEPROCLIM;
369 case EUSERS: return WSAEUSERS;
372 case EDQUOT: return WSAEDQUOT;
375 case ESTALE: return WSAESTALE;
378 case EREMOTE: return WSAEREMOTE;
380 default: errno=err; perror("sock_set_error"); return WSAEFAULT;
386 /******************************************************************************
388 * Basically calls 'socket()'
390 BOOL NETCON_create(WININET_NETCONNECTION *connection, int domain,
391 int type, int protocol)
394 if (connection->useSSL)
398 connection->socketFD = socket(domain, type, protocol);
399 if (connection->socketFD == -1)
401 INTERNET_SetLastError(sock_get_error(errno));
407 /******************************************************************************
409 * Basically calls 'close()' unless we should use SSL
411 BOOL NETCON_close(WININET_NETCONNECTION *connection)
415 if (!NETCON_connected(connection)) return FALSE;
418 if (connection->useSSL)
420 pSSL_shutdown(connection->ssl_s);
421 pSSL_free(connection->ssl_s);
422 connection->ssl_s = NULL;
424 connection->useSSL = FALSE;
428 result = closesocket(connection->socketFD);
429 connection->socketFD = -1;
433 INTERNET_SetLastError(sock_get_error(errno));
439 static BOOL check_hostname(X509 *cert, char *hostname)
441 /* FIXME: implement */
445 /******************************************************************************
446 * NETCON_secure_connect
447 * Initiates a secure connection over an existing plaintext connection.
449 BOOL NETCON_secure_connect(WININET_NETCONNECTION *connection, LPCWSTR hostname)
457 /* can't connect if we are already connected */
458 if (connection->useSSL)
460 ERR("already connected\n");
464 connection->ssl_s = pSSL_new(ctx);
465 if (!connection->ssl_s)
467 ERR("SSL_new failed: %s\n",
468 pERR_error_string(pERR_get_error(), 0));
469 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
473 if (!pSSL_set_fd(connection->ssl_s, connection->socketFD))
475 ERR("SSL_set_fd failed: %s\n",
476 pERR_error_string(pERR_get_error(), 0));
477 INTERNET_SetLastError(ERROR_INTERNET_SECURITY_CHANNEL_ERROR);
481 if (pSSL_connect(connection->ssl_s) <= 0)
483 ERR("SSL_connect failed: %s\n",
484 pERR_error_string(pERR_get_error(), 0));
485 INTERNET_SetLastError(ERROR_INTERNET_SECURITY_CHANNEL_ERROR);
488 cert = pSSL_get_peer_certificate(connection->ssl_s);
491 ERR("no certificate for server %s\n", debugstr_w(hostname));
492 /* FIXME: is this the best error? */
493 INTERNET_SetLastError(ERROR_INTERNET_INVALID_CA);
496 verify_res = pSSL_get_verify_result(connection->ssl_s);
497 if (verify_res != X509_V_OK)
499 ERR("couldn't verify the security of the connection, %ld\n", verify_res);
500 /* FIXME: we should set an error and return, but we only warn at
504 len = WideCharToMultiByte(CP_UNIXCP, 0, hostname, -1, NULL, 0, NULL, NULL);
505 hostname_unix = HeapAlloc(GetProcessHeap(), 0, len);
508 INTERNET_SetLastError(ERROR_OUTOFMEMORY);
511 WideCharToMultiByte(CP_UNIXCP, 0, hostname, -1, hostname_unix, len, NULL, NULL);
513 if (!check_hostname(cert, hostname_unix))
515 HeapFree(GetProcessHeap(), 0, hostname_unix);
516 INTERNET_SetLastError(ERROR_INTERNET_SEC_CERT_CN_INVALID);
520 HeapFree(GetProcessHeap(), 0, hostname_unix);
521 connection->useSSL = TRUE;
525 if (connection->ssl_s)
527 pSSL_shutdown(connection->ssl_s);
528 pSSL_free(connection->ssl_s);
529 connection->ssl_s = NULL;
535 /******************************************************************************
537 * Connects to the specified address.
539 BOOL NETCON_connect(WININET_NETCONNECTION *connection, const struct sockaddr *serv_addr,
540 unsigned int addrlen)
544 if (!NETCON_connected(connection)) return FALSE;
546 result = connect(connection->socketFD, serv_addr, addrlen);
549 WARN("Unable to connect to host (%s)\n", strerror(errno));
550 INTERNET_SetLastError(sock_get_error(errno));
552 closesocket(connection->socketFD);
553 connection->socketFD = -1;
560 /******************************************************************************
562 * Basically calls 'send()' unless we should use SSL
563 * number of chars send is put in *sent
565 BOOL NETCON_send(WININET_NETCONNECTION *connection, const void *msg, size_t len, int flags,
568 if (!NETCON_connected(connection)) return FALSE;
569 if (!connection->useSSL)
571 *sent = send(connection->socketFD, msg, len, flags);
574 INTERNET_SetLastError(sock_get_error(errno));
583 FIXME("SSL_write doesn't support any flags (%08x)\n", flags);
584 *sent = pSSL_write(connection->ssl_s, msg, len);
585 if (*sent < 1 && len)
594 /******************************************************************************
596 * Basically calls 'recv()' unless we should use SSL
597 * number of chars received is put in *recvd
599 BOOL NETCON_recv(WININET_NETCONNECTION *connection, void *buf, size_t len, int flags,
600 int *recvd /* out */)
603 if (!NETCON_connected(connection)) return FALSE;
606 if (!connection->useSSL)
608 *recvd = recv(connection->socketFD, buf, len, flags);
611 INTERNET_SetLastError(sock_get_error(errno));
619 *recvd = pSSL_read(connection->ssl_s, buf, len);
620 return *recvd > 0 || !len;
627 /******************************************************************************
628 * NETCON_query_data_available
629 * Returns the number of bytes of peeked data plus the number of bytes of
630 * queued, but unread data.
632 BOOL NETCON_query_data_available(WININET_NETCONNECTION *connection, DWORD *available)
635 if (!NETCON_connected(connection))
638 if (!connection->useSSL)
642 int retval = ioctlsocket(connection->socketFD, FIONREAD, &unread);
645 TRACE("%d bytes of queued, but unread data\n", unread);
646 *available += unread;
653 *available = pSSL_pending(connection->ssl_s);
659 LPCVOID NETCON_GetCert(WININET_NETCONNECTION *connection)
663 unsigned char* buffer,*p;
665 BOOL malloced = FALSE;
668 if (!connection->useSSL)
671 cert = pSSL_get_peer_certificate(connection->ssl_s);
673 len = pi2d_X509(cert,&p);
675 * SSL 0.9.7 and above malloc the buffer if it is null.
676 * however earlier version do not and so we would need to alloc the buffer.
678 * see the i2d_X509 man page for more details.
682 buffer = HeapAlloc(GetProcessHeap(),0,len);
684 len = pi2d_X509(cert,&p);
692 r = CertCreateCertificateContext(X509_ASN_ENCODING,buffer,len);
697 HeapFree(GetProcessHeap(),0,buffer);
705 DWORD NETCON_set_timeout(WININET_NETCONNECTION *connection, BOOL send, int value)
710 /* FIXME: we should probably store the timeout in the connection to set
711 * when we do connect */
712 if (!NETCON_connected(connection))
713 return ERROR_SUCCESS;
715 /* value is in milliseconds, convert to struct timeval */
716 tv.tv_sec = value / 1000;
717 tv.tv_usec = (value % 1000) * 1000;
719 result = setsockopt(connection->socketFD, SOL_SOCKET,
720 send ? SO_SNDTIMEO : SO_RCVTIMEO, (void*)&tv,
725 WARN("setsockopt failed (%s)\n", strerror(errno));
726 return sock_get_error(errno);
729 return ERROR_SUCCESS;