mshtml.idl: Added HTMLDocumentEvents and HTMLDocumentEvents2 dispifaces.
[wine] / dlls / wininet / netconnection.c
1 /*
2  * Wininet - networking layer. Uses unix sockets or OpenSSL.
3  *
4  * Copyright 2002 TransGaming Technologies Inc.
5  *
6  * David Hammerton
7  *
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.
12  *
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.
17  *
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #include "config.h"
24 #include "wine/port.h"
25
26 #ifdef HAVE_SYS_TIME_H
27 # include <sys/time.h>
28 #endif
29 #include <sys/types.h>
30 #ifdef HAVE_SYS_SOCKET_H
31 # include <sys/socket.h>
32 #endif
33 #ifdef HAVE_UNISTD_H
34 # include <unistd.h>
35 #endif
36 #include <stdarg.h>
37 #include <stdlib.h>
38 #include <string.h>
39 #include <stdio.h>
40 #include <errno.h>
41
42 #include "wine/library.h"
43 #include "windef.h"
44 #include "winbase.h"
45 #include "wininet.h"
46 #include "winerror.h"
47
48 /* To avoid conflicts with the Unix socket headers. we only need it for
49  * the error codes anyway. */
50 #define USE_WS_PREFIX
51 #include "winsock2.h"
52
53 #include "wine/debug.h"
54 #include "internet.h"
55 #include "wincrypt.h"
56
57 #define RESPONSE_TIMEOUT        30            /* FROM internet.c */
58
59
60 WINE_DEFAULT_DEBUG_CHANNEL(wininet);
61
62 /* FIXME!!!!!!
63  *    This should use winsock - To use winsock the functions will have to change a bit
64  *        as they are designed for unix sockets.
65  *    SSL stuff should use crypt32.dll
66  */
67
68 #if defined HAVE_OPENSSL_SSL_H && defined HAVE_OPENSSL_ERR_H
69
70 #include <openssl/err.h>
71
72 #ifndef SONAME_LIBSSL
73 #define SONAME_LIBSSL "libssl.so"
74 #endif
75 #ifndef SONAME_LIBCRYPTO
76 #define SONAME_LIBCRYPTO "libcrypto.so"
77 #endif
78
79 static void *OpenSSL_ssl_handle;
80 static void *OpenSSL_crypto_handle;
81
82 static SSL_METHOD *meth;
83 static SSL_CTX *ctx;
84
85 #define MAKE_FUNCPTR(f) static typeof(f) * p##f
86
87 /* OpenSSL functions that we use */
88 MAKE_FUNCPTR(SSL_library_init);
89 MAKE_FUNCPTR(SSL_load_error_strings);
90 MAKE_FUNCPTR(SSLv23_method);
91 MAKE_FUNCPTR(SSL_CTX_new);
92 MAKE_FUNCPTR(SSL_new);
93 MAKE_FUNCPTR(SSL_free);
94 MAKE_FUNCPTR(SSL_set_fd);
95 MAKE_FUNCPTR(SSL_connect);
96 MAKE_FUNCPTR(SSL_shutdown);
97 MAKE_FUNCPTR(SSL_write);
98 MAKE_FUNCPTR(SSL_read);
99 MAKE_FUNCPTR(SSL_get_verify_result);
100 MAKE_FUNCPTR(SSL_get_peer_certificate);
101 MAKE_FUNCPTR(SSL_CTX_get_timeout);
102 MAKE_FUNCPTR(SSL_CTX_set_timeout);
103 MAKE_FUNCPTR(SSL_CTX_set_default_verify_paths);
104 MAKE_FUNCPTR(i2d_X509);
105
106 /* OpenSSL's libcrypto functions that we use */
107 MAKE_FUNCPTR(BIO_new_fp);
108 MAKE_FUNCPTR(ERR_get_error);
109 MAKE_FUNCPTR(ERR_error_string);
110 #undef MAKE_FUNCPTR
111
112 #endif
113
114 BOOL NETCON_init(WININET_NETCONNECTION *connection, BOOL useSSL)
115 {
116     connection->useSSL = FALSE;
117     connection->socketFD = -1;
118     if (useSSL)
119     {
120 #if defined HAVE_OPENSSL_SSL_H && defined HAVE_OPENSSL_ERR_H
121         TRACE("using SSL connection\n");
122         if (OpenSSL_ssl_handle) /* already initialized everything */
123             return TRUE;
124         OpenSSL_ssl_handle = wine_dlopen(SONAME_LIBSSL, RTLD_NOW, NULL, 0);
125         if (!OpenSSL_ssl_handle)
126         {
127             ERR("trying to use a SSL connection, but couldn't load %s. Expect trouble.\n",
128                 SONAME_LIBSSL);
129             INTERNET_SetLastError(ERROR_INTERNET_SECURITY_CHANNEL_ERROR);
130             return FALSE;
131         }
132         OpenSSL_crypto_handle = wine_dlopen(SONAME_LIBCRYPTO, RTLD_NOW, NULL, 0);
133         if (!OpenSSL_crypto_handle)
134         {
135             ERR("trying to use a SSL connection, but couldn't load %s. Expect trouble.\n",
136                 SONAME_LIBCRYPTO);
137             INTERNET_SetLastError(ERROR_INTERNET_SECURITY_CHANNEL_ERROR);
138             return FALSE;
139         }
140
141         /* mmm nice ugly macroness */
142 #define DYNSSL(x) \
143     p##x = wine_dlsym(OpenSSL_ssl_handle, #x, NULL, 0); \
144     if (!p##x) \
145     { \
146         ERR("failed to load symbol %s\n", #x); \
147         INTERNET_SetLastError(ERROR_INTERNET_SECURITY_CHANNEL_ERROR); \
148         return FALSE; \
149     }
150
151         DYNSSL(SSL_library_init);
152         DYNSSL(SSL_load_error_strings);
153         DYNSSL(SSLv23_method);
154         DYNSSL(SSL_CTX_new);
155         DYNSSL(SSL_new);
156         DYNSSL(SSL_free);
157         DYNSSL(SSL_set_fd);
158         DYNSSL(SSL_connect);
159         DYNSSL(SSL_shutdown);
160         DYNSSL(SSL_write);
161         DYNSSL(SSL_read);
162         DYNSSL(SSL_get_verify_result);
163         DYNSSL(SSL_get_peer_certificate);
164         DYNSSL(SSL_CTX_get_timeout);
165         DYNSSL(SSL_CTX_set_timeout);
166         DYNSSL(SSL_CTX_set_default_verify_paths);
167         DYNSSL(i2d_X509);
168 #undef DYNSSL
169
170 #define DYNCRYPTO(x) \
171     p##x = wine_dlsym(OpenSSL_crypto_handle, #x, NULL, 0); \
172     if (!p##x) \
173     { \
174         ERR("failed to load symbol %s\n", #x); \
175         INTERNET_SetLastError(ERROR_INTERNET_SECURITY_CHANNEL_ERROR); \
176         return FALSE; \
177     }
178         DYNCRYPTO(BIO_new_fp);
179         DYNCRYPTO(ERR_get_error);
180         DYNCRYPTO(ERR_error_string);
181 #undef DYNCRYPTO
182
183         pSSL_library_init();
184         pSSL_load_error_strings();
185         pBIO_new_fp(stderr, BIO_NOCLOSE); /* FIXME: should use winedebug stuff */
186
187         meth = pSSLv23_method();
188         connection->peek_msg = NULL;
189         connection->peek_msg_mem = NULL;
190 #else
191         FIXME("can't use SSL, not compiled in.\n");
192         INTERNET_SetLastError(ERROR_INTERNET_SECURITY_CHANNEL_ERROR);
193         return FALSE;
194 #endif
195     }
196     return TRUE;
197 }
198
199 BOOL NETCON_connected(WININET_NETCONNECTION *connection)
200 {
201     if (connection->socketFD == -1)
202         return FALSE;
203     else
204         return TRUE;
205 }
206
207 /* translate a unix error code into a winsock one */
208 static int sock_get_error( int err )
209 {
210     switch (err)
211     {
212         case EINTR:             return WSAEINTR;
213         case EBADF:             return WSAEBADF;
214         case EPERM:
215         case EACCES:            return WSAEACCES;
216         case EFAULT:            return WSAEFAULT;
217         case EINVAL:            return WSAEINVAL;
218         case EMFILE:            return WSAEMFILE;
219         case EWOULDBLOCK:       return WSAEWOULDBLOCK;
220         case EINPROGRESS:       return WSAEINPROGRESS;
221         case EALREADY:          return WSAEALREADY;
222         case ENOTSOCK:          return WSAENOTSOCK;
223         case EDESTADDRREQ:      return WSAEDESTADDRREQ;
224         case EMSGSIZE:          return WSAEMSGSIZE;
225         case EPROTOTYPE:        return WSAEPROTOTYPE;
226         case ENOPROTOOPT:       return WSAENOPROTOOPT;
227         case EPROTONOSUPPORT:   return WSAEPROTONOSUPPORT;
228         case ESOCKTNOSUPPORT:   return WSAESOCKTNOSUPPORT;
229         case EOPNOTSUPP:        return WSAEOPNOTSUPP;
230         case EPFNOSUPPORT:      return WSAEPFNOSUPPORT;
231         case EAFNOSUPPORT:      return WSAEAFNOSUPPORT;
232         case EADDRINUSE:        return WSAEADDRINUSE;
233         case EADDRNOTAVAIL:     return WSAEADDRNOTAVAIL;
234         case ENETDOWN:          return WSAENETDOWN;
235         case ENETUNREACH:       return WSAENETUNREACH;
236         case ENETRESET:         return WSAENETRESET;
237         case ECONNABORTED:      return WSAECONNABORTED;
238         case EPIPE:
239         case ECONNRESET:        return WSAECONNRESET;
240         case ENOBUFS:           return WSAENOBUFS;
241         case EISCONN:           return WSAEISCONN;
242         case ENOTCONN:          return WSAENOTCONN;
243         case ESHUTDOWN:         return WSAESHUTDOWN;
244         case ETOOMANYREFS:      return WSAETOOMANYREFS;
245         case ETIMEDOUT:         return WSAETIMEDOUT;
246         case ECONNREFUSED:      return WSAECONNREFUSED;
247         case ELOOP:             return WSAELOOP;
248         case ENAMETOOLONG:      return WSAENAMETOOLONG;
249         case EHOSTDOWN:         return WSAEHOSTDOWN;
250         case EHOSTUNREACH:      return WSAEHOSTUNREACH;
251         case ENOTEMPTY:         return WSAENOTEMPTY;
252 #ifdef EPROCLIM
253         case EPROCLIM:          return WSAEPROCLIM;
254 #endif
255 #ifdef EUSERS
256         case EUSERS:            return WSAEUSERS;
257 #endif
258 #ifdef EDQUOT
259         case EDQUOT:            return WSAEDQUOT;
260 #endif
261 #ifdef ESTALE
262         case ESTALE:            return WSAESTALE;
263 #endif
264 #ifdef EREMOTE
265         case EREMOTE:           return WSAEREMOTE;
266 #endif
267     default: errno=err; perror("sock_set_error"); return WSAEFAULT;
268     }
269 }
270
271 /******************************************************************************
272  * NETCON_create
273  * Basically calls 'socket()'
274  */
275 BOOL NETCON_create(WININET_NETCONNECTION *connection, int domain,
276               int type, int protocol)
277 {
278 #if defined HAVE_OPENSSL_SSL_H && defined HAVE_OPENSSL_ERR_H
279     if (connection->useSSL)
280         return FALSE;
281 #endif
282
283     connection->socketFD = socket(domain, type, protocol);
284     if (connection->socketFD == -1)
285     {
286         INTERNET_SetLastError(sock_get_error(errno));
287         return FALSE;
288     }
289     return TRUE;
290 }
291
292 /******************************************************************************
293  * NETCON_close
294  * Basically calls 'close()' unless we should use SSL
295  */
296 BOOL NETCON_close(WININET_NETCONNECTION *connection)
297 {
298     int result;
299
300     if (!NETCON_connected(connection)) return FALSE;
301
302 #if defined HAVE_OPENSSL_SSL_H && defined HAVE_OPENSSL_ERR_H
303     if (connection->useSSL)
304     {
305         HeapFree(GetProcessHeap(),0,connection->peek_msg_mem);
306         connection->peek_msg = NULL;
307         connection->peek_msg_mem = NULL;
308
309         pSSL_shutdown(connection->ssl_s);
310         pSSL_free(connection->ssl_s);
311         connection->ssl_s = NULL;
312
313         connection->useSSL = FALSE;
314     }
315 #endif
316
317     result = closesocket(connection->socketFD);
318     connection->socketFD = -1;
319
320     if (result == -1)
321     {
322         INTERNET_SetLastError(sock_get_error(errno));
323         return FALSE;
324     }
325     return TRUE;
326 }
327 #if defined HAVE_OPENSSL_SSL_H && defined HAVE_OPENSSL_ERR_H
328 static BOOL check_hostname(X509 *cert, char *hostname)
329 {
330     /* FIXME: implement */
331     return TRUE;
332 }
333 #endif
334 /******************************************************************************
335  * NETCON_secure_connect
336  * Initiates a secure connection over an existing plaintext connection.
337  */
338 BOOL NETCON_secure_connect(WININET_NETCONNECTION *connection, LPCWSTR hostname)
339 {
340 #if defined HAVE_OPENSSL_SSL_H && defined HAVE_OPENSSL_ERR_H
341     long verify_res;
342     X509 *cert;
343     int len;
344     char *hostname_unix;
345
346     /* can't connect if we are already connected */
347     if (connection->useSSL)
348     {
349         ERR("already connected\n");
350         return FALSE;
351     }
352
353     ctx = pSSL_CTX_new(meth);
354     if (!pSSL_CTX_set_default_verify_paths(ctx))
355     {
356         ERR("SSL_CTX_set_default_verify_paths failed: %s\n",
357             pERR_error_string(pERR_get_error(), 0));
358         INTERNET_SetLastError(ERROR_OUTOFMEMORY);
359         return FALSE;
360     }
361     connection->ssl_s = pSSL_new(ctx);
362     if (!connection->ssl_s)
363     {
364         ERR("SSL_new failed: %s\n",
365             pERR_error_string(pERR_get_error(), 0));
366         INTERNET_SetLastError(ERROR_OUTOFMEMORY);
367         goto fail;
368     }
369
370     if (!pSSL_set_fd(connection->ssl_s, connection->socketFD))
371     {
372         ERR("SSL_set_fd failed: %s\n",
373             pERR_error_string(pERR_get_error(), 0));
374         INTERNET_SetLastError(ERROR_INTERNET_SECURITY_CHANNEL_ERROR);
375         goto fail;
376     }
377
378     if (pSSL_connect(connection->ssl_s) <= 0)
379     {
380         ERR("SSL_connect failed: %s\n",
381             pERR_error_string(pERR_get_error(), 0));
382         INTERNET_SetLastError(ERROR_INTERNET_SECURITY_CHANNEL_ERROR);
383         goto fail;
384     }
385     cert = pSSL_get_peer_certificate(connection->ssl_s);
386     if (!cert)
387     {
388         ERR("no certificate for server %s\n", debugstr_w(hostname));
389         /* FIXME: is this the best error? */
390         INTERNET_SetLastError(ERROR_INTERNET_INVALID_CA);
391         goto fail;
392     }
393     verify_res = pSSL_get_verify_result(connection->ssl_s);
394     if (verify_res != X509_V_OK)
395     {
396         ERR("couldn't verify the security of the connection, %ld\n", verify_res);
397         /* FIXME: we should set an error and return, but we only warn at
398          * the moment */
399     }
400
401     len = WideCharToMultiByte(CP_UNIXCP, 0, hostname, -1, NULL, 0, NULL, NULL);
402     hostname_unix = HeapAlloc(GetProcessHeap(), 0, len);
403     if (!hostname_unix)
404     {
405         INTERNET_SetLastError(ERROR_OUTOFMEMORY);
406         goto fail;
407     }
408     WideCharToMultiByte(CP_UNIXCP, 0, hostname, -1, hostname_unix, len, NULL, NULL);
409
410     if (!check_hostname(cert, hostname_unix))
411     {
412         HeapFree(GetProcessHeap(), 0, hostname_unix);
413         INTERNET_SetLastError(ERROR_INTERNET_SEC_CERT_CN_INVALID);
414         goto fail;
415     }
416
417     HeapFree(GetProcessHeap(), 0, hostname_unix);
418     connection->useSSL = TRUE;
419     return TRUE;
420
421 fail:
422     if (connection->ssl_s)
423     {
424         pSSL_shutdown(connection->ssl_s);
425         pSSL_free(connection->ssl_s);
426         connection->ssl_s = NULL;
427     }
428 #endif
429     return FALSE;
430 }
431
432 /******************************************************************************
433  * NETCON_connect
434  * Connects to the specified address.
435  */
436 BOOL NETCON_connect(WININET_NETCONNECTION *connection, const struct sockaddr *serv_addr,
437                     unsigned int addrlen)
438 {
439     int result;
440
441     if (!NETCON_connected(connection)) return FALSE;
442
443     result = connect(connection->socketFD, serv_addr, addrlen);
444     if (result == -1)
445     {
446         WARN("Unable to connect to host (%s)\n", strerror(errno));
447         INTERNET_SetLastError(sock_get_error(errno));
448
449         closesocket(connection->socketFD);
450         connection->socketFD = -1;
451         return FALSE;
452     }
453
454     return TRUE;
455 }
456
457 /******************************************************************************
458  * NETCON_send
459  * Basically calls 'send()' unless we should use SSL
460  * number of chars send is put in *sent
461  */
462 BOOL NETCON_send(WININET_NETCONNECTION *connection, const void *msg, size_t len, int flags,
463                 int *sent /* out */)
464 {
465     if (!NETCON_connected(connection)) return FALSE;
466     if (!connection->useSSL)
467     {
468         *sent = send(connection->socketFD, msg, len, flags);
469         if (*sent == -1)
470         {
471             INTERNET_SetLastError(sock_get_error(errno));
472             return FALSE;
473         }
474         return TRUE;
475     }
476     else
477     {
478 #if defined HAVE_OPENSSL_SSL_H && defined HAVE_OPENSSL_ERR_H
479         if (flags)
480             FIXME("SSL_write doesn't support any flags (%08x)\n", flags);
481         *sent = pSSL_write(connection->ssl_s, msg, len);
482         if (*sent < 1 && len)
483             return FALSE;
484         return TRUE;
485 #else
486         return FALSE;
487 #endif
488     }
489 }
490
491 /******************************************************************************
492  * NETCON_recv
493  * Basically calls 'recv()' unless we should use SSL
494  * number of chars received is put in *recvd
495  */
496 BOOL NETCON_recv(WININET_NETCONNECTION *connection, void *buf, size_t len, int flags,
497                 int *recvd /* out */)
498 {
499     if (!NETCON_connected(connection)) return FALSE;
500     if (!connection->useSSL)
501     {
502         *recvd = recv(connection->socketFD, buf, len, flags);
503         if (*recvd == -1)
504         {
505             INTERNET_SetLastError(sock_get_error(errno));
506             return FALSE;
507         }
508         return TRUE;
509     }
510     else
511     {
512 #if defined HAVE_OPENSSL_SSL_H && defined HAVE_OPENSSL_ERR_H
513         if (flags & (~MSG_PEEK))
514             FIXME("SSL_read does not support the following flag: %08x\n", flags);
515
516         /* this ugly hack is all for MSG_PEEK. eww gross */
517         if (flags & MSG_PEEK && !connection->peek_msg)
518         {
519             connection->peek_msg = connection->peek_msg_mem = HeapAlloc(GetProcessHeap(), 0, (sizeof(char) * len) + 1);
520         }
521         else if (flags & MSG_PEEK && connection->peek_msg)
522         {
523             size_t peek_msg_len = strlen(connection->peek_msg);
524             if (len < peek_msg_len)
525                 FIXME("buffer isn't big enough. Do the expect us to wrap?\n");
526             memcpy(buf, connection->peek_msg, min(len,peek_msg_len+1));
527             *recvd = min(len, peek_msg_len);
528             return TRUE;
529         }
530         else if (connection->peek_msg)
531         {
532             size_t peek_msg_len = strlen(connection->peek_msg);
533             memcpy(buf, connection->peek_msg, min(len,peek_msg_len+1));
534             connection->peek_msg += *recvd = min(len, peek_msg_len);
535             if (*connection->peek_msg == '\0' || *(connection->peek_msg - 1) == '\0')
536             {
537                 HeapFree(GetProcessHeap(), 0, connection->peek_msg_mem);
538                 connection->peek_msg_mem = NULL;
539                 connection->peek_msg = NULL;
540             }
541             return TRUE;
542         }
543         *recvd = pSSL_read(connection->ssl_s, buf, len);
544         if (flags & MSG_PEEK) /* must copy stuff into buffer */
545         {
546             if (!*recvd)
547             {
548                 HeapFree(GetProcessHeap(), 0, connection->peek_msg_mem);
549                 connection->peek_msg_mem = NULL;
550                 connection->peek_msg = NULL;
551             }
552             else
553             {
554                 memcpy(connection->peek_msg, buf, *recvd);
555                 connection->peek_msg[*recvd] = '\0';
556             }
557         }
558         if (*recvd < 1 && len)
559             return FALSE;
560         return TRUE;
561 #else
562         return FALSE;
563 #endif
564     }
565 }
566
567 /******************************************************************************
568  * NETCON_getNextLine
569  */
570 BOOL NETCON_getNextLine(WININET_NETCONNECTION *connection, LPSTR lpszBuffer, LPDWORD dwBuffer)
571 {
572
573     TRACE("\n");
574
575     if (!NETCON_connected(connection)) return FALSE;
576
577     if (!connection->useSSL)
578     {
579         struct timeval tv;
580         fd_set infd;
581         BOOL bSuccess = FALSE;
582         DWORD nRecv = 0;
583
584         FD_ZERO(&infd);
585         FD_SET(connection->socketFD, &infd);
586         tv.tv_sec=RESPONSE_TIMEOUT;
587         tv.tv_usec=0;
588
589         while (nRecv < *dwBuffer)
590         {
591             if (select(connection->socketFD+1,&infd,NULL,NULL,&tv) > 0)
592             {
593                 if (recv(connection->socketFD, &lpszBuffer[nRecv], 1, 0) <= 0)
594                 {
595                     INTERNET_SetLastError(sock_get_error(errno));
596                     goto lend;
597                 }
598
599                 if (lpszBuffer[nRecv] == '\n')
600                 {
601                     bSuccess = TRUE;
602                     break;
603                 }
604                 if (lpszBuffer[nRecv] != '\r')
605                     nRecv++;
606             }
607             else
608             {
609                 INTERNET_SetLastError(ERROR_INTERNET_TIMEOUT);
610                 goto lend;
611             }
612         }
613
614     lend:             /* FIXME: don't use labels */
615         if (bSuccess)
616         {
617             lpszBuffer[nRecv++] = '\0';
618             *dwBuffer = nRecv;
619             TRACE(":%lu %s\n", nRecv, lpszBuffer);
620             return TRUE;
621         }
622         else
623         {
624             return FALSE;
625         }
626     }
627     else
628     {
629 #if defined HAVE_OPENSSL_SSL_H && defined HAVE_OPENSSL_ERR_H
630         long prev_timeout;
631         DWORD nRecv = 0;
632         BOOL success = TRUE;
633
634         prev_timeout = pSSL_CTX_get_timeout(ctx);
635         pSSL_CTX_set_timeout(ctx, RESPONSE_TIMEOUT);
636
637         while (nRecv < *dwBuffer)
638         {
639             int recv = 1;
640             if (!NETCON_recv(connection, &lpszBuffer[nRecv], 1, 0, &recv))
641             {
642                 INTERNET_SetLastError(ERROR_CONNECTION_ABORTED);
643                 success = FALSE;
644             }
645
646             if (lpszBuffer[nRecv] == '\n')
647             {
648                 success = TRUE;
649                 break;
650             }
651             if (lpszBuffer[nRecv] != '\r')
652                 nRecv++;
653         }
654
655         pSSL_CTX_set_timeout(ctx, prev_timeout);
656         if (success)
657         {
658             lpszBuffer[nRecv++] = '\0';
659             *dwBuffer = nRecv;
660             TRACE("_SSL:%lu %s\n", nRecv, lpszBuffer);
661             return TRUE;
662         }
663         return FALSE;
664 #else
665         return FALSE;
666 #endif
667     }
668 }
669
670
671 LPCVOID NETCON_GetCert(WININET_NETCONNECTION *connection)
672 {
673
674 #if defined HAVE_OPENSSL_SSL_H && defined HAVE_OPENSSL_ERR_H
675     X509* cert;
676     unsigned char* buffer,*p;
677     INT len;
678     BOOL malloced = FALSE;
679     LPCVOID r = NULL;
680
681     if (!connection->useSSL)
682         return NULL;
683
684     cert = pSSL_get_peer_certificate(connection->ssl_s);
685     p = NULL;
686     len = pi2d_X509(cert,&p);
687     /*
688      * SSL 0.9.7 and above malloc the buffer if it is null. 
689      * however earlier version do not and so we would need to alloc the buffer.
690      *
691      * see the i2d_X509 man page for more details.
692      */
693     if (!p)
694     {
695         buffer = HeapAlloc(GetProcessHeap(),0,len);
696         p = buffer;
697         len = pi2d_X509(cert,&p);
698     }
699     else
700     {
701         buffer = p;
702         malloced = TRUE;
703     }
704
705     r = CertCreateCertificateContext(X509_ASN_ENCODING,buffer,len);
706
707     if (malloced)
708         free(buffer);
709     else
710         HeapFree(GetProcessHeap(),0,buffer);
711
712     return r;
713 #else
714     return NULL;
715 #endif
716 }
717
718 BOOL NETCON_set_timeout(WININET_NETCONNECTION *connection, BOOL send, int value)
719 {
720     int result;
721     struct timeval tv;
722
723     /* FIXME: we should probably store the timeout in the connection to set
724      * when we do connect */
725     if (!NETCON_connected(connection))
726         return TRUE;
727
728     /* value is in milliseconds, convert to struct timeval */
729     tv.tv_sec = value / 1000;
730     tv.tv_usec = (value % 1000) * 1000;
731
732     result = setsockopt(connection->socketFD, SOL_SOCKET,
733                         send ? SO_SNDTIMEO : SO_RCVTIMEO, &tv,
734                         sizeof(tv));
735
736     if (result == -1)
737     {
738         WARN("setsockopt failed (%s)\n", strerror(errno));
739         INTERNET_SetLastError(sock_get_error(errno));
740         return FALSE;
741     }
742
743     return TRUE;
744 }