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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include "wine/port.h"
26 #ifdef HAVE_SYS_TIME_H
27 # include <sys/time.h>
29 #include <sys/types.h>
30 #ifdef HAVE_SYS_SOCKET_H
31 # include <sys/socket.h>
40 #include "wine/library.h"
46 #include "wine/debug.h"
49 #define RESPONSE_TIMEOUT 30 /* FROM internet.c */
52 WINE_DEFAULT_DEBUG_CHANNEL(wininet
);
55 * This should use winsock - To use winsock the functions will have to change a bit
56 * as they are designed for unix sockets.
57 * SSL stuff should use crypt32.dll
60 #ifdef HAVE_OPENSSL_SSL_H
63 #define SONAME_LIBSSL "libssl.so"
65 #ifndef SONAME_LIBCRYPTO
66 #define SONAME_LIBCRYPTO "libcrypto.so"
69 static void *OpenSSL_ssl_handle
;
70 static void *OpenSSL_crypto_handle
;
72 static SSL_METHOD
*meth
;
75 #define MAKE_FUNCPTR(f) static typeof(f) * p##f
77 /* OpenSSL functions that we use */
78 MAKE_FUNCPTR(SSL_library_init
);
79 MAKE_FUNCPTR(SSL_load_error_strings
);
80 MAKE_FUNCPTR(SSLv23_method
);
81 MAKE_FUNCPTR(SSL_CTX_new
);
82 MAKE_FUNCPTR(SSL_new
);
83 MAKE_FUNCPTR(SSL_set_bio
);
84 MAKE_FUNCPTR(SSL_connect
);
85 MAKE_FUNCPTR(SSL_write
);
86 MAKE_FUNCPTR(SSL_read
);
87 MAKE_FUNCPTR(SSL_CTX_get_timeout
);
88 MAKE_FUNCPTR(SSL_CTX_set_timeout
);
90 /* OpenSSL's libcrypto functions that we use */
91 MAKE_FUNCPTR(BIO_new_socket
);
92 MAKE_FUNCPTR(BIO_new_fp
);
97 void NETCON_init(WININET_NETCONNECTION
*connection
, BOOL useSSL
)
99 connection
->useSSL
= useSSL
;
100 connection
->socketFD
= -1;
101 if (connection
->useSSL
)
103 #ifdef HAVE_OPENSSL_SSL_H
104 TRACE("using SSL connection\n");
105 connection
->ssl_sock
= -1;
106 if (OpenSSL_ssl_handle
) /* already initilzed everything */
108 OpenSSL_ssl_handle
= wine_dlopen(SONAME_LIBSSL
, RTLD_NOW
, NULL
, 0);
109 if (!OpenSSL_ssl_handle
)
111 ERR("trying to use a SSL connection, but couldn't load %s. Expect trouble.\n",
113 connection
->useSSL
= FALSE
;
116 OpenSSL_crypto_handle
= wine_dlopen(SONAME_LIBCRYPTO
, RTLD_NOW
, NULL
, 0);
117 if (!OpenSSL_crypto_handle
)
119 ERR("trying to use a SSL connection, but couldn't load %s. Expect trouble.\n",
121 connection
->useSSL
= FALSE
;
125 /* mmm nice ugly macroness */
127 p##x = wine_dlsym(OpenSSL_ssl_handle, #x, NULL, 0); \
130 ERR("failed to load symbol %s\n", #x); \
131 connection->useSSL = FALSE; \
135 DYNSSL(SSL_library_init
);
136 DYNSSL(SSL_load_error_strings
);
137 DYNSSL(SSLv23_method
);
144 DYNSSL(SSL_CTX_get_timeout
);
145 DYNSSL(SSL_CTX_set_timeout
);
148 #define DYNCRYPTO(x) \
149 p##x = wine_dlsym(OpenSSL_crypto_handle, #x, NULL, 0); \
152 ERR("failed to load symbol %s\n", #x); \
153 connection->useSSL = FALSE; \
156 DYNCRYPTO(BIO_new_fp
);
157 DYNCRYPTO(BIO_new_socket
);
161 pSSL_load_error_strings();
162 pBIO_new_fp(stderr
, BIO_NOCLOSE
); /* FIXME: should use winedebug stuff */
164 meth
= pSSLv23_method();
165 /* FIXME: SECURITY PROBLEM! WE ARN'T VERIFYING THE HOSTS CERTIFICATES OR ANYTHING */
167 FIXME("can't use SSL, not compiled in.\n");
168 connection
->useSSL
= FALSE
;
173 BOOL
NETCON_connected(WININET_NETCONNECTION
*connection
)
175 if (!connection
->useSSL
)
177 if (connection
->socketFD
== -1)
183 #ifdef HAVE_OPENSSL_SSL_H
184 if (connection
->ssl_sock
== -1)
193 /******************************************************************************
195 * Basically calls 'socket()' unless useSSL is supplised,
196 * in which case we do other things.
198 BOOL
NETCON_create(WININET_NETCONNECTION
*connection
, int domain
,
199 int type
, int protocol
)
201 if (!connection
->useSSL
)
203 connection
->socketFD
= socket(domain
, type
, protocol
);
204 if (connection
->socketFD
== -1)
210 #ifdef HAVE_OPENSSL_SSL_H
211 connection
->ssl_sock
= socket(domain
, type
, protocol
);
219 /******************************************************************************
221 * Basically calls 'close()' unless we should use SSL
223 BOOL
NETCON_close(WININET_NETCONNECTION
*connection
)
225 if (!NETCON_connected(connection
)) return FALSE
;
226 if (!connection
->useSSL
)
229 result
= closesocket(connection
->socketFD
);
230 connection
->socketFD
= -1;
237 #ifdef HAVE_OPENSSL_SSL_H
238 closesocket(connection
->ssl_sock
);
239 connection
->ssl_sock
= -1;
240 /* FIXME should we call SSL_shutdown here?? Probably on whatever is the
241 * opposite of NETCON_init.... */
249 /******************************************************************************
251 * Basically calls 'connect()' unless we should use SSL
253 BOOL
NETCON_connect(WININET_NETCONNECTION
*connection
, const struct sockaddr
*serv_addr
,
254 unsigned int addrlen
)
256 if (!NETCON_connected(connection
)) return FALSE
;
257 if (!connection
->useSSL
)
260 result
= connect(connection
->socketFD
, serv_addr
, addrlen
);
263 closesocket(connection
->socketFD
);
264 connection
->socketFD
= -1;
271 #ifdef HAVE_OPENSSL_SSL_H
274 ctx
= pSSL_CTX_new(meth
);
275 connection
->ssl_s
= pSSL_new(ctx
);
277 if (connect(connection
->ssl_sock
, serv_addr
, addrlen
) == -1)
280 sbio
= pBIO_new_socket(connection
->ssl_sock
, BIO_NOCLOSE
);
281 pSSL_set_bio(connection
->ssl_s
, sbio
, sbio
);
282 if (pSSL_connect(connection
->ssl_s
) <= 0)
284 ERR("ssl couldn't connect\n");
294 /******************************************************************************
296 * Basically calls 'send()' unless we should use SSL
297 * number of chars send is put in *sent
299 BOOL
NETCON_send(WININET_NETCONNECTION
*connection
, const void *msg
, size_t len
, int flags
,
302 if (!NETCON_connected(connection
)) return FALSE
;
303 if (!connection
->useSSL
)
305 *sent
= send(connection
->socketFD
, msg
, len
, flags
);
312 #ifdef HAVE_OPENSSL_SSL_H
314 FIXME("SSL_write doesn't support any flags (%08x)\n", flags
);
315 *sent
= pSSL_write(connection
->ssl_s
, msg
, len
);
316 if (*sent
< 1 && len
)
325 /******************************************************************************
327 * Basically calls 'recv()' unless we should use SSL
328 * number of chars received is put in *recvd
330 BOOL
NETCON_recv(WININET_NETCONNECTION
*connection
, void *buf
, size_t len
, int flags
,
331 int *recvd
/* out */)
333 if (!NETCON_connected(connection
)) return FALSE
;
334 if (!connection
->useSSL
)
336 *recvd
= recv(connection
->socketFD
, buf
, len
, flags
);
343 #ifdef HAVE_OPENSSL_SSL_H
344 static char *peek_msg
= NULL
;
345 static char *peek_msg_mem
= NULL
;
347 if (flags
& (~MSG_PEEK
))
348 FIXME("SSL_read does not support the following flag: %08x\n", flags
);
350 /* this ugly hack is all for MSG_PEEK. eww gross */
351 if (flags
& MSG_PEEK
&& !peek_msg
)
353 peek_msg
= peek_msg_mem
= HeapAlloc(GetProcessHeap(), 0, (sizeof(char) * len
) + 1);
355 else if (flags
& MSG_PEEK
&& peek_msg
)
357 size_t peek_msg_len
= strlen(peek_msg
);
358 if (len
< peek_msg_len
)
359 FIXME("buffer isn't big enough. Do the expect us to wrap?\n");
360 memcpy(buf
, peek_msg
, min(len
,peek_msg_len
+1));
361 *recvd
= min(len
, peek_msg_len
);
366 size_t peek_msg_len
= strlen(peek_msg
);
367 memcpy(buf
, peek_msg
, min(len
,peek_msg_len
+1));
368 peek_msg
+= *recvd
= min(len
, peek_msg_len
);
369 if (*peek_msg
== '\0' || *(peek_msg
- 1) == '\0')
371 HeapFree(GetProcessHeap(), 0, peek_msg_mem
);
377 *recvd
= pSSL_read(connection
->ssl_s
, buf
, len
);
378 if (flags
& MSG_PEEK
) /* must copy stuff into buffer */
382 HeapFree(GetProcessHeap(), 0, peek_msg_mem
);
388 memcpy(peek_msg
, buf
, *recvd
);
389 peek_msg
[*recvd
] = '\0';
392 if (*recvd
< 1 && len
)
401 /******************************************************************************
404 BOOL
NETCON_getNextLine(WININET_NETCONNECTION
*connection
, LPSTR lpszBuffer
, LPDWORD dwBuffer
)
409 if (!NETCON_connected(connection
)) return FALSE
;
411 if (!connection
->useSSL
)
415 BOOL bSuccess
= FALSE
;
419 FD_SET(connection
->socketFD
, &infd
);
420 tv
.tv_sec
=RESPONSE_TIMEOUT
;
423 while (nRecv
< *dwBuffer
)
425 if (select(connection
->socketFD
+1,&infd
,NULL
,NULL
,&tv
) > 0)
427 if (recv(connection
->socketFD
, &lpszBuffer
[nRecv
], 1, 0) <= 0)
429 INTERNET_SetLastError(ERROR_CONNECTION_ABORTED
); /* fixme: right error? */
433 if (lpszBuffer
[nRecv
] == '\n')
438 if (lpszBuffer
[nRecv
] != '\r')
443 INTERNET_SetLastError(ERROR_INTERNET_TIMEOUT
);
448 lend
: /* FIXME: don't use labels */
451 lpszBuffer
[nRecv
++] = '\0';
453 TRACE(":%lu %s\n", nRecv
, lpszBuffer
);
463 #ifdef HAVE_OPENSSL_SSL_H
468 prev_timeout
= pSSL_CTX_get_timeout(ctx
);
469 pSSL_CTX_set_timeout(ctx
, RESPONSE_TIMEOUT
);
471 while (nRecv
< *dwBuffer
)
474 if (!NETCON_recv(connection
, &lpszBuffer
[nRecv
], 1, 0, &recv
))
476 INTERNET_SetLastError(ERROR_CONNECTION_ABORTED
);
480 if (lpszBuffer
[nRecv
] == '\n')
485 if (lpszBuffer
[nRecv
] != '\r')
489 pSSL_CTX_set_timeout(ctx
, prev_timeout
);
492 lpszBuffer
[nRecv
++] = '\0';
494 TRACE("_SSL:%lu %s\n", nRecv
, lpszBuffer
);