2 * Copyright 2008 Hans Leidekker for CodeWeavers
3 * Copyright 2013 Jacek Caban for CodeWeavers
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #include "wine/port.h"
28 #include <sys/types.h>
29 #ifdef HAVE_SYS_SOCKET_H
30 # include <sys/socket.h>
32 #ifdef HAVE_SYS_IOCTL_H
33 # include <sys/ioctl.h>
35 #ifdef HAVE_SYS_FILIO_H
36 # include <sys/filio.h>
42 #define NONAMELESSUNION
44 #include "wine/debug.h"
45 #include "wine/library.h"
53 #include "winhttp_private.h"
55 /* to avoid conflicts with the Unix socket headers */
59 WINE_DEFAULT_DEBUG_CHANNEL(winhttp
);
61 #ifndef HAVE_GETADDRINFO
63 /* critical section to protect non-reentrant gethostbyname() */
64 static CRITICAL_SECTION cs_gethostbyname
;
65 static CRITICAL_SECTION_DEBUG critsect_debug
=
67 0, 0, &cs_gethostbyname
,
68 { &critsect_debug
.ProcessLocksList
, &critsect_debug
.ProcessLocksList
},
69 0, 0, { (DWORD_PTR
)(__FILE__
": cs_gethostbyname") }
71 static CRITICAL_SECTION cs_gethostbyname
= { &critsect_debug
, -1, 0, 0, 0, 0 };
75 /* translate a unix error code into a winsock error code */
76 static int sock_get_error( int err
)
78 #if !defined(__MINGW32__) && !defined (_MSC_VER)
81 case EINTR
: return WSAEINTR
;
82 case EBADF
: return WSAEBADF
;
84 case EACCES
: return WSAEACCES
;
85 case EFAULT
: return WSAEFAULT
;
86 case EINVAL
: return WSAEINVAL
;
87 case EMFILE
: return WSAEMFILE
;
88 case EWOULDBLOCK
: return WSAEWOULDBLOCK
;
89 case EINPROGRESS
: return WSAEINPROGRESS
;
90 case EALREADY
: return WSAEALREADY
;
91 case ENOTSOCK
: return WSAENOTSOCK
;
92 case EDESTADDRREQ
: return WSAEDESTADDRREQ
;
93 case EMSGSIZE
: return WSAEMSGSIZE
;
94 case EPROTOTYPE
: return WSAEPROTOTYPE
;
95 case ENOPROTOOPT
: return WSAENOPROTOOPT
;
96 case EPROTONOSUPPORT
: return WSAEPROTONOSUPPORT
;
97 case ESOCKTNOSUPPORT
: return WSAESOCKTNOSUPPORT
;
98 case EOPNOTSUPP
: return WSAEOPNOTSUPP
;
99 case EPFNOSUPPORT
: return WSAEPFNOSUPPORT
;
100 case EAFNOSUPPORT
: return WSAEAFNOSUPPORT
;
101 case EADDRINUSE
: return WSAEADDRINUSE
;
102 case EADDRNOTAVAIL
: return WSAEADDRNOTAVAIL
;
103 case ENETDOWN
: return WSAENETDOWN
;
104 case ENETUNREACH
: return WSAENETUNREACH
;
105 case ENETRESET
: return WSAENETRESET
;
106 case ECONNABORTED
: return WSAECONNABORTED
;
108 case ECONNRESET
: return WSAECONNRESET
;
109 case ENOBUFS
: return WSAENOBUFS
;
110 case EISCONN
: return WSAEISCONN
;
111 case ENOTCONN
: return WSAENOTCONN
;
112 case ESHUTDOWN
: return WSAESHUTDOWN
;
113 case ETOOMANYREFS
: return WSAETOOMANYREFS
;
114 case ETIMEDOUT
: return WSAETIMEDOUT
;
115 case ECONNREFUSED
: return WSAECONNREFUSED
;
116 case ELOOP
: return WSAELOOP
;
117 case ENAMETOOLONG
: return WSAENAMETOOLONG
;
118 case EHOSTDOWN
: return WSAEHOSTDOWN
;
119 case EHOSTUNREACH
: return WSAEHOSTUNREACH
;
120 case ENOTEMPTY
: return WSAENOTEMPTY
;
122 case EPROCLIM
: return WSAEPROCLIM
;
125 case EUSERS
: return WSAEUSERS
;
128 case EDQUOT
: return WSAEDQUOT
;
131 case ESTALE
: return WSAESTALE
;
134 case EREMOTE
: return WSAEREMOTE
;
136 default: errno
= err
; perror( "sock_set_error" ); return WSAEFAULT
;
142 static int sock_send(int fd
, const void *msg
, size_t len
, int flags
)
147 ret
= send(fd
, msg
, len
, flags
);
149 while(ret
== -1 && errno
== EINTR
);
153 static int sock_recv(int fd
, void *msg
, size_t len
, int flags
)
158 ret
= recv(fd
, msg
, len
, flags
);
160 while(ret
== -1 && errno
== EINTR
);
164 static DWORD
netconn_verify_cert( PCCERT_CONTEXT cert
, WCHAR
*server
, DWORD security_flags
)
166 HCERTSTORE store
= cert
->hCertStore
;
168 CERT_CHAIN_PARA chainPara
= { sizeof(chainPara
), { 0 } };
169 PCCERT_CHAIN_CONTEXT chain
;
170 char oid_server_auth
[] = szOID_PKIX_KP_SERVER_AUTH
;
171 char *server_auth
[] = { oid_server_auth
};
172 DWORD err
= ERROR_SUCCESS
;
174 TRACE("verifying %s\n", debugstr_w( server
));
175 chainPara
.RequestedUsage
.Usage
.cUsageIdentifier
= 1;
176 chainPara
.RequestedUsage
.Usage
.rgpszUsageIdentifier
= server_auth
;
177 if ((ret
= CertGetCertificateChain( NULL
, cert
, NULL
, store
, &chainPara
,
178 CERT_CHAIN_REVOCATION_CHECK_CHAIN_EXCLUDE_ROOT
,
181 if (chain
->TrustStatus
.dwErrorStatus
)
183 static const DWORD supportedErrors
=
184 CERT_TRUST_IS_NOT_TIME_VALID
|
185 CERT_TRUST_IS_UNTRUSTED_ROOT
|
186 CERT_TRUST_IS_NOT_VALID_FOR_USAGE
;
188 if (chain
->TrustStatus
.dwErrorStatus
& CERT_TRUST_IS_NOT_TIME_VALID
)
190 if (!(security_flags
& SECURITY_FLAG_IGNORE_CERT_DATE_INVALID
))
191 err
= ERROR_WINHTTP_SECURE_CERT_DATE_INVALID
;
193 else if (chain
->TrustStatus
.dwErrorStatus
&
194 CERT_TRUST_IS_UNTRUSTED_ROOT
)
196 if (!(security_flags
& SECURITY_FLAG_IGNORE_UNKNOWN_CA
))
197 err
= ERROR_WINHTTP_SECURE_INVALID_CA
;
199 else if ((chain
->TrustStatus
.dwErrorStatus
&
200 CERT_TRUST_IS_OFFLINE_REVOCATION
) ||
201 (chain
->TrustStatus
.dwErrorStatus
&
202 CERT_TRUST_REVOCATION_STATUS_UNKNOWN
))
203 err
= ERROR_WINHTTP_SECURE_CERT_REV_FAILED
;
204 else if (chain
->TrustStatus
.dwErrorStatus
& CERT_TRUST_IS_REVOKED
)
205 err
= ERROR_WINHTTP_SECURE_CERT_REVOKED
;
206 else if (chain
->TrustStatus
.dwErrorStatus
&
207 CERT_TRUST_IS_NOT_VALID_FOR_USAGE
)
209 if (!(security_flags
& SECURITY_FLAG_IGNORE_CERT_WRONG_USAGE
))
210 err
= ERROR_WINHTTP_SECURE_CERT_WRONG_USAGE
;
212 else if (chain
->TrustStatus
.dwErrorStatus
& ~supportedErrors
)
213 err
= ERROR_WINHTTP_SECURE_INVALID_CERT
;
217 CERT_CHAIN_POLICY_PARA policyPara
;
218 SSL_EXTRA_CERT_CHAIN_POLICY_PARA sslExtraPolicyPara
;
219 CERT_CHAIN_POLICY_STATUS policyStatus
;
220 CERT_CHAIN_CONTEXT chainCopy
;
222 /* Clear chain->TrustStatus.dwErrorStatus so
223 * CertVerifyCertificateChainPolicy will verify additional checks
224 * rather than stopping with an existing, ignored error.
226 memcpy(&chainCopy
, chain
, sizeof(chainCopy
));
227 chainCopy
.TrustStatus
.dwErrorStatus
= 0;
228 sslExtraPolicyPara
.u
.cbSize
= sizeof(sslExtraPolicyPara
);
229 sslExtraPolicyPara
.dwAuthType
= AUTHTYPE_SERVER
;
230 sslExtraPolicyPara
.pwszServerName
= server
;
231 sslExtraPolicyPara
.fdwChecks
= security_flags
;
232 policyPara
.cbSize
= sizeof(policyPara
);
233 policyPara
.dwFlags
= 0;
234 policyPara
.pvExtraPolicyPara
= &sslExtraPolicyPara
;
235 ret
= CertVerifyCertificateChainPolicy( CERT_CHAIN_POLICY_SSL
,
236 &chainCopy
, &policyPara
,
238 /* Any error in the policy status indicates that the
239 * policy couldn't be verified.
241 if (ret
&& policyStatus
.dwError
)
243 if (policyStatus
.dwError
== CERT_E_CN_NO_MATCH
)
244 err
= ERROR_WINHTTP_SECURE_CERT_CN_INVALID
;
246 err
= ERROR_WINHTTP_SECURE_INVALID_CERT
;
249 CertFreeCertificateChain( chain
);
252 err
= ERROR_WINHTTP_SECURE_CHANNEL_ERROR
;
253 TRACE("returning %08x\n", err
);
257 static SecHandle cred_handle
;
258 static BOOL cred_handle_initialized
;
260 static CRITICAL_SECTION init_sechandle_cs
;
261 static CRITICAL_SECTION_DEBUG init_sechandle_cs_debug
= {
262 0, 0, &init_sechandle_cs
,
263 { &init_sechandle_cs_debug
.ProcessLocksList
,
264 &init_sechandle_cs_debug
.ProcessLocksList
},
265 0, 0, { (DWORD_PTR
)(__FILE__
": init_sechandle_cs") }
267 static CRITICAL_SECTION init_sechandle_cs
= { &init_sechandle_cs_debug
, -1, 0, 0, 0, 0 };
269 static BOOL
ensure_cred_handle(void)
273 EnterCriticalSection(&init_sechandle_cs
);
275 if(!cred_handle_initialized
) {
278 res
= AcquireCredentialsHandleW(NULL
, (WCHAR
*)UNISP_NAME_W
, SECPKG_CRED_OUTBOUND
, NULL
, NULL
,
279 NULL
, NULL
, &cred_handle
, NULL
);
280 if(res
== SEC_E_OK
) {
281 cred_handle_initialized
= TRUE
;
283 WARN("AcquireCredentialsHandleW failed: %u\n", res
);
288 LeaveCriticalSection(&init_sechandle_cs
);
292 BOOL
netconn_init( netconn_t
*conn
)
294 memset(conn
, 0, sizeof(*conn
));
299 void netconn_unload( void )
301 if(cred_handle_initialized
)
302 FreeCredentialsHandle(&cred_handle
);
303 DeleteCriticalSection(&init_sechandle_cs
);
304 #ifndef HAVE_GETADDRINFO
305 DeleteCriticalSection(&cs_gethostbyname
);
309 BOOL
netconn_connected( netconn_t
*conn
)
311 return (conn
->socket
!= -1);
314 BOOL
netconn_create( netconn_t
*conn
, int domain
, int type
, int protocol
)
316 if ((conn
->socket
= socket( domain
, type
, protocol
)) == -1)
318 WARN("unable to create socket (%s)\n", strerror(errno
));
319 set_last_error( sock_get_error( errno
) );
325 BOOL
netconn_close( netconn_t
*conn
)
331 heap_free( conn
->peek_msg_mem
);
332 conn
->peek_msg_mem
= NULL
;
333 conn
->peek_msg
= NULL
;
335 heap_free(conn
->ssl_buf
);
336 conn
->ssl_buf
= NULL
;
337 heap_free(conn
->extra_buf
);
338 conn
->extra_buf
= NULL
;
340 DeleteSecurityContext(&conn
->ssl_ctx
);
341 conn
->secure
= FALSE
;
343 res
= closesocket( conn
->socket
);
347 set_last_error( sock_get_error( errno
) );
353 BOOL
netconn_connect( netconn_t
*conn
, const struct sockaddr
*sockaddr
, unsigned int addr_len
, int timeout
)
362 ioctlsocket( conn
->socket
, FIONBIO
, &state
);
368 if (connect( conn
->socket
, sockaddr
, addr_len
) < 0)
370 res
= sock_get_error( errno
);
371 if (res
== WSAEWOULDBLOCK
|| res
== WSAEINPROGRESS
)
375 pfd
.fd
= conn
->socket
;
376 pfd
.events
= POLLOUT
;
380 if (poll( &pfd
, 1, timeout
) > 0)
387 res
= sock_get_error( errno
);
388 if (res
!= WSAEINTR
) break;
392 if (res
!= WSAEINTR
) break;
403 ioctlsocket( conn
->socket
, FIONBIO
, &state
);
407 WARN("unable to connect to host (%d)\n", res
);
408 set_last_error( res
);
413 BOOL
netconn_secure_connect( netconn_t
*conn
, WCHAR
*hostname
)
415 SecBuffer out_buf
= {0, SECBUFFER_TOKEN
, NULL
}, in_bufs
[2] = {{0, SECBUFFER_TOKEN
}, {0, SECBUFFER_EMPTY
}};
416 SecBufferDesc out_desc
= {SECBUFFER_VERSION
, 1, &out_buf
}, in_desc
= {SECBUFFER_VERSION
, 2, in_bufs
};
418 SIZE_T read_buf_size
= 2048;
422 const CERT_CONTEXT
*cert
;
423 SECURITY_STATUS status
;
424 DWORD res
= ERROR_SUCCESS
;
426 const DWORD isc_req_flags
= ISC_REQ_ALLOCATE_MEMORY
|ISC_REQ_USE_SESSION_KEY
|ISC_REQ_CONFIDENTIALITY
427 |ISC_REQ_SEQUENCE_DETECT
|ISC_REQ_REPLAY_DETECT
|ISC_REQ_MANUAL_CRED_VALIDATION
;
429 if(!ensure_cred_handle())
432 read_buf
= heap_alloc(read_buf_size
);
436 status
= InitializeSecurityContextW(&cred_handle
, NULL
, hostname
, isc_req_flags
, 0, 0, NULL
, 0,
437 &ctx
, &out_desc
, &attrs
, NULL
);
439 assert(status
!= SEC_E_OK
);
441 while(status
== SEC_I_CONTINUE_NEEDED
|| status
== SEC_E_INCOMPLETE_MESSAGE
) {
442 if(out_buf
.cbBuffer
) {
443 assert(status
== SEC_I_CONTINUE_NEEDED
);
445 TRACE("sending %u bytes\n", out_buf
.cbBuffer
);
447 size
= sock_send(conn
->socket
, out_buf
.pvBuffer
, out_buf
.cbBuffer
, 0);
448 if(size
!= out_buf
.cbBuffer
) {
449 ERR("send failed\n");
450 res
= ERROR_WINHTTP_SECURE_CHANNEL_ERROR
;
454 FreeContextBuffer(out_buf
.pvBuffer
);
455 out_buf
.pvBuffer
= NULL
;
456 out_buf
.cbBuffer
= 0;
459 if(status
== SEC_I_CONTINUE_NEEDED
) {
460 assert(in_bufs
[1].cbBuffer
< read_buf_size
);
462 memmove(read_buf
, (BYTE
*)in_bufs
[0].pvBuffer
+in_bufs
[0].cbBuffer
-in_bufs
[1].cbBuffer
, in_bufs
[1].cbBuffer
);
463 in_bufs
[0].cbBuffer
= in_bufs
[1].cbBuffer
;
465 in_bufs
[1].BufferType
= SECBUFFER_EMPTY
;
466 in_bufs
[1].cbBuffer
= 0;
467 in_bufs
[1].pvBuffer
= NULL
;
470 assert(in_bufs
[0].BufferType
== SECBUFFER_TOKEN
);
471 assert(in_bufs
[1].BufferType
== SECBUFFER_EMPTY
);
473 if(in_bufs
[0].cbBuffer
+ 1024 > read_buf_size
) {
476 new_read_buf
= heap_realloc(read_buf
, read_buf_size
+ 1024);
478 status
= E_OUTOFMEMORY
;
482 in_bufs
[0].pvBuffer
= read_buf
= new_read_buf
;
483 read_buf_size
+= 1024;
486 size
= sock_recv(conn
->socket
, read_buf
+in_bufs
[0].cbBuffer
, read_buf_size
-in_bufs
[0].cbBuffer
, 0);
488 WARN("recv error\n");
489 status
= ERROR_WINHTTP_SECURE_CHANNEL_ERROR
;
493 TRACE("recv %lu bytes\n", size
);
495 in_bufs
[0].cbBuffer
+= size
;
496 in_bufs
[0].pvBuffer
= read_buf
;
497 status
= InitializeSecurityContextW(&cred_handle
, &ctx
, hostname
, isc_req_flags
, 0, 0, &in_desc
,
498 0, NULL
, &out_desc
, &attrs
, NULL
);
499 TRACE("InitializeSecurityContext ret %08x\n", status
);
501 if(status
== SEC_E_OK
) {
502 if(in_bufs
[1].BufferType
== SECBUFFER_EXTRA
)
503 FIXME("SECBUFFER_EXTRA not supported\n");
505 status
= QueryContextAttributesW(&ctx
, SECPKG_ATTR_STREAM_SIZES
, &conn
->ssl_sizes
);
506 if(status
!= SEC_E_OK
) {
507 WARN("Could not get sizes\n");
511 status
= QueryContextAttributesW(&ctx
, SECPKG_ATTR_REMOTE_CERT_CONTEXT
, (void*)&cert
);
512 if(status
== SEC_E_OK
) {
513 res
= netconn_verify_cert(cert
, hostname
, conn
->security_flags
);
514 CertFreeCertificateContext(cert
);
515 if(res
!= ERROR_SUCCESS
) {
516 WARN("cert verify failed: %u\n", res
);
520 WARN("Could not get cert\n");
524 conn
->ssl_buf
= heap_alloc(conn
->ssl_sizes
.cbHeader
+ conn
->ssl_sizes
.cbMaximumMessage
+ conn
->ssl_sizes
.cbTrailer
);
526 res
= GetLastError();
534 if(status
!= SEC_E_OK
|| res
!= ERROR_SUCCESS
) {
535 WARN("Failed to initialize security context failed: %08x\n", status
);
536 heap_free(conn
->ssl_buf
);
537 conn
->ssl_buf
= NULL
;
538 DeleteSecurityContext(&ctx
);
539 set_last_error(res
? res
: ERROR_WINHTTP_SECURE_CHANNEL_ERROR
);
544 TRACE("established SSL connection\n");
550 static BOOL
send_ssl_chunk(netconn_t
*conn
, const void *msg
, size_t size
)
552 SecBuffer bufs
[4] = {
553 {conn
->ssl_sizes
.cbHeader
, SECBUFFER_STREAM_HEADER
, conn
->ssl_buf
},
554 {size
, SECBUFFER_DATA
, conn
->ssl_buf
+conn
->ssl_sizes
.cbHeader
},
555 {conn
->ssl_sizes
.cbTrailer
, SECBUFFER_STREAM_TRAILER
, conn
->ssl_buf
+conn
->ssl_sizes
.cbHeader
+size
},
556 {0, SECBUFFER_EMPTY
, NULL
}
558 SecBufferDesc buf_desc
= {SECBUFFER_VERSION
, sizeof(bufs
)/sizeof(*bufs
), bufs
};
561 memcpy(bufs
[1].pvBuffer
, msg
, size
);
562 res
= EncryptMessage(&conn
->ssl_ctx
, 0, &buf_desc
, 0);
563 if(res
!= SEC_E_OK
) {
564 WARN("EncryptMessage failed\n");
568 if(sock_send(conn
->socket
, conn
->ssl_buf
, bufs
[0].cbBuffer
+bufs
[1].cbBuffer
+bufs
[2].cbBuffer
, 0) < 1) {
569 WARN("send failed\n");
576 BOOL
netconn_send( netconn_t
*conn
, const void *msg
, size_t len
, int *sent
)
578 if (!netconn_connected( conn
)) return FALSE
;
581 const BYTE
*ptr
= msg
;
587 chunk_size
= min(len
, conn
->ssl_sizes
.cbMaximumMessage
);
588 if(!send_ssl_chunk(conn
, ptr
, chunk_size
))
598 if ((*sent
= sock_send( conn
->socket
, msg
, len
, 0 )) == -1)
600 set_last_error( sock_get_error( errno
) );
606 static BOOL
read_ssl_chunk(netconn_t
*conn
, void *buf
, SIZE_T buf_size
, SIZE_T
*ret_size
, BOOL
*eof
)
608 const SIZE_T ssl_buf_size
= conn
->ssl_sizes
.cbHeader
+conn
->ssl_sizes
.cbMaximumMessage
+conn
->ssl_sizes
.cbTrailer
;
610 SecBufferDesc buf_desc
= {SECBUFFER_VERSION
, sizeof(bufs
)/sizeof(*bufs
), bufs
};
611 SSIZE_T size
, buf_len
;
615 assert(conn
->extra_len
< ssl_buf_size
);
617 if(conn
->extra_len
) {
618 memcpy(conn
->ssl_buf
, conn
->extra_buf
, conn
->extra_len
);
619 buf_len
= conn
->extra_len
;
621 heap_free(conn
->extra_buf
);
622 conn
->extra_buf
= NULL
;
624 buf_len
= sock_recv(conn
->socket
, conn
->ssl_buf
+conn
->extra_len
, ssl_buf_size
-conn
->extra_len
, 0);
626 WARN("recv failed\n");
640 memset(bufs
, 0, sizeof(bufs
));
641 bufs
[0].BufferType
= SECBUFFER_DATA
;
642 bufs
[0].cbBuffer
= buf_len
;
643 bufs
[0].pvBuffer
= conn
->ssl_buf
;
645 res
= DecryptMessage(&conn
->ssl_ctx
, &buf_desc
, 0, NULL
);
649 case SEC_I_CONTEXT_EXPIRED
:
650 TRACE("context expired\n");
653 case SEC_E_INCOMPLETE_MESSAGE
:
654 assert(buf_len
< ssl_buf_size
);
656 size
= sock_recv(conn
->socket
, conn
->ssl_buf
+buf_len
, ssl_buf_size
-buf_len
, 0);
663 WARN("failed: %08x\n", res
);
666 } while(res
!= SEC_E_OK
);
668 for(i
=0; i
< sizeof(bufs
)/sizeof(*bufs
); i
++) {
669 if(bufs
[i
].BufferType
== SECBUFFER_DATA
) {
670 size
= min(buf_size
, bufs
[i
].cbBuffer
);
671 memcpy(buf
, bufs
[i
].pvBuffer
, size
);
672 if(size
< bufs
[i
].cbBuffer
) {
673 assert(!conn
->peek_len
);
674 conn
->peek_msg_mem
= conn
->peek_msg
= heap_alloc(bufs
[i
].cbBuffer
- size
);
677 conn
->peek_len
= bufs
[i
].cbBuffer
-size
;
678 memcpy(conn
->peek_msg
, (char*)bufs
[i
].pvBuffer
+size
, conn
->peek_len
);
685 for(i
=0; i
< sizeof(bufs
)/sizeof(*bufs
); i
++) {
686 if(bufs
[i
].BufferType
== SECBUFFER_EXTRA
) {
687 conn
->extra_buf
= heap_alloc(bufs
[i
].cbBuffer
);
691 conn
->extra_len
= bufs
[i
].cbBuffer
;
692 memcpy(conn
->extra_buf
, bufs
[i
].pvBuffer
, conn
->extra_len
);
699 BOOL
netconn_recv( netconn_t
*conn
, void *buf
, size_t len
, int flags
, int *recvd
)
702 if (!netconn_connected( conn
)) return FALSE
;
703 if (!len
) return TRUE
;
712 *recvd
= min( len
, conn
->peek_len
);
713 memcpy( buf
, conn
->peek_msg
, *recvd
);
714 conn
->peek_len
-= *recvd
;
715 conn
->peek_msg
+= *recvd
;
717 if (conn
->peek_len
== 0)
719 heap_free( conn
->peek_msg_mem
);
720 conn
->peek_msg_mem
= NULL
;
721 conn
->peek_msg
= NULL
;
723 /* check if we have enough data from the peek buffer */
724 if (!(flags
& MSG_WAITALL
) || *recvd
== len
) return TRUE
;
729 res
= read_ssl_chunk(conn
, (BYTE
*)buf
+size
, len
-size
, &cread
, &eof
);
731 WARN("read_ssl_chunk failed\n");
743 }while(!size
|| ((flags
& MSG_WAITALL
) && size
< len
));
745 TRACE("received %ld bytes\n", size
);
749 if ((*recvd
= sock_recv( conn
->socket
, buf
, len
, flags
)) == -1)
751 set_last_error( sock_get_error( errno
) );
757 ULONG
netconn_query_data_available( netconn_t
*conn
)
759 if(!netconn_connected(conn
))
763 return conn
->peek_len
;
768 DWORD
netconn_set_timeout( netconn_t
*netconn
, BOOL send
, int value
)
772 /* value is in milliseconds, convert to struct timeval */
773 tv
.tv_sec
= value
/ 1000;
774 tv
.tv_usec
= (value
% 1000) * 1000;
776 if (setsockopt( netconn
->socket
, SOL_SOCKET
, send
? SO_SNDTIMEO
: SO_RCVTIMEO
, (void*)&tv
, sizeof(tv
) ) == -1)
778 WARN("setsockopt failed (%s)\n", strerror( errno
));
779 return sock_get_error( errno
);
781 return ERROR_SUCCESS
;
784 static DWORD
resolve_hostname( const WCHAR
*hostnameW
, INTERNET_PORT port
, struct sockaddr
*sa
, socklen_t
*sa_len
)
787 #ifdef HAVE_GETADDRINFO
788 struct addrinfo
*res
, hints
;
792 struct sockaddr_in
*sin
= (struct sockaddr_in
*)sa
;
795 if (!(hostname
= strdupWA( hostnameW
))) return ERROR_OUTOFMEMORY
;
797 #ifdef HAVE_GETADDRINFO
798 memset( &hints
, 0, sizeof(struct addrinfo
) );
799 /* Prefer IPv4 to IPv6 addresses, since some web servers do not listen on
800 * their IPv6 addresses even though they have IPv6 addresses in the DNS.
802 hints
.ai_family
= AF_INET
;
804 ret
= getaddrinfo( hostname
, NULL
, &hints
, &res
);
807 TRACE("failed to get IPv4 address of %s (%s), retrying with IPv6\n", debugstr_w(hostnameW
), gai_strerror(ret
));
808 hints
.ai_family
= AF_INET6
;
809 ret
= getaddrinfo( hostname
, NULL
, &hints
, &res
);
812 TRACE("failed to get address of %s (%s)\n", debugstr_w(hostnameW
), gai_strerror(ret
));
813 heap_free( hostname
);
814 return ERROR_WINHTTP_NAME_NOT_RESOLVED
;
817 heap_free( hostname
);
818 if (*sa_len
< res
->ai_addrlen
)
820 WARN("address too small\n");
822 return ERROR_WINHTTP_NAME_NOT_RESOLVED
;
824 *sa_len
= res
->ai_addrlen
;
825 memcpy( sa
, res
->ai_addr
, res
->ai_addrlen
);
827 switch (res
->ai_family
)
830 ((struct sockaddr_in
*)sa
)->sin_port
= htons( port
);
833 ((struct sockaddr_in6
*)sa
)->sin6_port
= htons( port
);
838 return ERROR_SUCCESS
;
840 EnterCriticalSection( &cs_gethostbyname
);
842 he
= gethostbyname( hostname
);
843 heap_free( hostname
);
846 TRACE("failed to get address of %s (%d)\n", debugstr_w(hostnameW
), h_errno
);
847 LeaveCriticalSection( &cs_gethostbyname
);
848 return ERROR_WINHTTP_NAME_NOT_RESOLVED
;
850 if (*sa_len
< sizeof(struct sockaddr_in
))
852 WARN("address too small\n");
853 LeaveCriticalSection( &cs_gethostbyname
);
854 return ERROR_WINHTTP_NAME_NOT_RESOLVED
;
856 *sa_len
= sizeof(struct sockaddr_in
);
857 memset( sa
, 0, sizeof(struct sockaddr_in
) );
858 memcpy( &sin
->sin_addr
, he
->h_addr
, he
->h_length
);
859 sin
->sin_family
= he
->h_addrtype
;
860 sin
->sin_port
= htons( port
);
862 LeaveCriticalSection( &cs_gethostbyname
);
863 return ERROR_SUCCESS
;
869 const WCHAR
*hostname
;
875 static DWORD CALLBACK
resolve_proc( LPVOID arg
)
877 struct resolve_args
*ra
= arg
;
878 return resolve_hostname( ra
->hostname
, ra
->port
, ra
->sa
, ra
->sa_len
);
881 BOOL
netconn_resolve( WCHAR
*hostname
, INTERNET_PORT port
, struct sockaddr
*sa
, socklen_t
*sa_len
, int timeout
)
889 struct resolve_args ra
;
891 ra
.hostname
= hostname
;
896 thread
= CreateThread( NULL
, 0, resolve_proc
, &ra
, 0, NULL
);
897 if (!thread
) return FALSE
;
899 status
= WaitForSingleObject( thread
, timeout
);
900 if (status
== WAIT_OBJECT_0
) GetExitCodeThread( thread
, &ret
);
901 else ret
= ERROR_WINHTTP_TIMEOUT
;
902 CloseHandle( thread
);
904 else ret
= resolve_hostname( hostname
, port
, sa
, sa_len
);
908 set_last_error( ret
);
914 const void *netconn_get_certificate( netconn_t
*conn
)
916 const CERT_CONTEXT
*ret
;
919 if (!conn
->secure
) return NULL
;
920 res
= QueryContextAttributesW(&conn
->ssl_ctx
, SECPKG_ATTR_REMOTE_CERT_CONTEXT
, (void*)&ret
);
921 return res
== SEC_E_OK
? ret
: NULL
;
924 int netconn_get_cipher_strength( netconn_t
*conn
)
926 SecPkgContext_ConnectionInfo conn_info
;
929 if (!conn
->secure
) return 0;
930 res
= QueryContextAttributesW(&conn
->ssl_ctx
, SECPKG_ATTR_CONNECTION_INFO
, (void*)&conn_info
);
932 WARN("QueryContextAttributesW failed: %08x\n", res
);
933 return res
== SEC_E_OK
? conn_info
.dwCipherStrength
: 0;