4 * Copyright 1999 Corel Corporation
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
23 #ifndef _WINE_INTERNET_H_
24 #define _WINE_INTERNET_H_
26 #ifndef __WINE_CONFIG_H
27 # error You must include config.h to use this header
30 #include "wine/unicode.h"
31 #include "wine/list.h"
37 #ifdef HAVE_NETINET_IN_H
38 # include <sys/types.h>
39 # include <netinet/in.h>
41 #ifdef HAVE_SYS_SOCKET_H
42 # include <sys/socket.h>
45 #if !defined(__MINGW32__) && !defined(_MSC_VER)
46 #define closesocket close
47 #define ioctlsocket ioctl
48 #endif /* __MINGW32__ */
50 extern HMODULE WININET_hModule DECLSPEC_HIDDEN;
52 #ifndef INET6_ADDRSTRLEN
53 #define INET6_ADDRSTRLEN 46
59 struct sockaddr_storage addr;
61 char addr_str[INET6_ADDRSTRLEN];
67 struct list conn_pool;
70 void server_addref(server_t*) DECLSPEC_HIDDEN;
71 void server_release(server_t*) DECLSPEC_HIDDEN;
72 BOOL collect_connections(BOOL) DECLSPEC_HIDDEN;
74 /* used for netconnection.c stuff */
85 struct list pool_entry;
88 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
90 return HeapAlloc(GetProcessHeap(), 0, len);
93 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t len)
95 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
98 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t len)
100 return HeapReAlloc(GetProcessHeap(), 0, mem, len);
103 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t len)
105 return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len);
108 static inline BOOL heap_free(void *mem)
110 return HeapFree(GetProcessHeap(), 0, mem);
113 static inline LPWSTR heap_strdupW(LPCWSTR str)
120 size = (strlenW(str)+1)*sizeof(WCHAR);
121 ret = heap_alloc(size);
123 memcpy(ret, str, size);
129 static inline LPWSTR heap_strndupW(LPCWSTR str, UINT max_len)
137 for(len=0; len<max_len; len++)
141 ret = heap_alloc(sizeof(WCHAR)*(len+1));
143 memcpy(ret, str, sizeof(WCHAR)*len);
150 static inline WCHAR *heap_strdupAtoW(const char *str)
157 len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
158 ret = heap_alloc(len*sizeof(WCHAR));
160 MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
166 static inline char *heap_strdupWtoA(LPCWSTR str)
171 DWORD size = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
172 ret = heap_alloc(size);
174 WideCharToMultiByte(CP_ACP, 0, str, -1, ret, size, NULL, NULL);
180 static inline void WININET_find_data_WtoA(LPWIN32_FIND_DATAW dataW, LPWIN32_FIND_DATAA dataA)
182 dataA->dwFileAttributes = dataW->dwFileAttributes;
183 dataA->ftCreationTime = dataW->ftCreationTime;
184 dataA->ftLastAccessTime = dataW->ftLastAccessTime;
185 dataA->ftLastWriteTime = dataW->ftLastWriteTime;
186 dataA->nFileSizeHigh = dataW->nFileSizeHigh;
187 dataA->nFileSizeLow = dataW->nFileSizeLow;
188 dataA->dwReserved0 = dataW->dwReserved0;
189 dataA->dwReserved1 = dataW->dwReserved1;
190 WideCharToMultiByte(CP_ACP, 0, dataW->cFileName, -1,
191 dataA->cFileName, sizeof(dataA->cFileName),
193 WideCharToMultiByte(CP_ACP, 0, dataW->cAlternateFileName, -1,
194 dataA->cAlternateFileName, sizeof(dataA->cAlternateFileName),
200 WH_HINIT = INTERNET_HANDLE_TYPE_INTERNET,
201 WH_HFTPSESSION = INTERNET_HANDLE_TYPE_CONNECT_FTP,
202 WH_HGOPHERSESSION = INTERNET_HANDLE_TYPE_CONNECT_GOPHER,
203 WH_HHTTPSESSION = INTERNET_HANDLE_TYPE_CONNECT_HTTP,
204 WH_HFILE = INTERNET_HANDLE_TYPE_FTP_FILE,
205 WH_HFTPFINDNEXT = INTERNET_HANDLE_TYPE_FTP_FIND,
206 WH_HHTTPREQ = INTERNET_HANDLE_TYPE_HTTP_REQUEST,
209 #define INET_OPENURL 0x0001
210 #define INET_CALLBACKW 0x0002
212 typedef struct _object_header_t object_header_t;
215 void (*Destroy)(object_header_t*);
216 void (*CloseConnection)(object_header_t*);
217 DWORD (*QueryOption)(object_header_t*,DWORD,void*,DWORD*,BOOL);
218 DWORD (*SetOption)(object_header_t*,DWORD,void*,DWORD);
219 DWORD (*ReadFile)(object_header_t*,void*,DWORD,DWORD*);
220 DWORD (*ReadFileExA)(object_header_t*,INTERNET_BUFFERSA*,DWORD,DWORD_PTR);
221 DWORD (*ReadFileExW)(object_header_t*,INTERNET_BUFFERSW*,DWORD,DWORD_PTR);
222 DWORD (*WriteFile)(object_header_t*,const void*,DWORD,DWORD*);
223 DWORD (*QueryDataAvailable)(object_header_t*,DWORD*,DWORD,DWORD_PTR);
224 DWORD (*FindNextFileW)(object_header_t*,void*);
227 #define INTERNET_HANDLE_IN_USE 1
229 struct _object_header_t
232 const object_vtbl_t *vtbl;
239 DWORD dwInternalFlags;
241 INTERNET_STATUS_CALLBACK lpfnStatusCB;
243 struct list children;
253 LPWSTR proxyUsername;
254 LPWSTR proxyPassword;
262 LPWSTR hostName; /* the final destination of the request */
263 LPWSTR serverName; /* the name of the server we directly connect to */
266 INTERNET_PORT hostPort; /* the final destination port of the request */
267 INTERNET_PORT serverPort; /* the port of the server we directly connect to */
268 DWORD connect_timeout;
270 DWORD receive_timeout;
273 #define HDR_ISREQUEST 0x0001
274 #define HDR_COMMADELIMITED 0x0002
275 #define HDR_SEMIDELIMITED 0x0004
283 } HTTPHEADERW, *LPHTTPHEADERW;
288 typedef struct data_stream_vtbl_t data_stream_vtbl_t;
291 const data_stream_vtbl_t *vtbl;
295 data_stream_t data_stream;
296 DWORD content_length;
300 #define READ_BUFFER_SIZE 8192
305 http_session_t *session;
310 DWORD security_flags;
311 DWORD connect_timeout;
313 DWORD receive_timeout;
319 HTTPHEADERW *custHeaders;
321 FILETIME last_modified;
325 struct HttpAuthInfo *authInfo;
326 struct HttpAuthInfo *proxyAuthInfo;
328 CRITICAL_SECTION read_section; /* section to protect the following fields */
329 DWORD contentLength; /* total number of bytes to be read */
330 BOOL read_chunked; /* are we reading in chunked mode? */
331 BOOL read_gzip; /* are we reading in gzip mode? */
332 DWORD read_pos; /* current read position in read_buf */
333 DWORD read_size; /* valid data size in read_buf */
334 BYTE read_buf[READ_BUFFER_SIZE]; /* buffer for already read but not returned data */
337 data_stream_t *data_stream;
338 netconn_stream_t netconn_stream;
343 struct WORKREQ_FTPPUTFILEW
345 LPWSTR lpszLocalFile;
346 LPWSTR lpszNewRemoteFile;
351 struct WORKREQ_FTPSETCURRENTDIRECTORYW
353 LPWSTR lpszDirectory;
356 struct WORKREQ_FTPCREATEDIRECTORYW
358 LPWSTR lpszDirectory;
361 struct WORKREQ_FTPFINDFIRSTFILEW
363 LPWSTR lpszSearchFile;
364 LPWIN32_FIND_DATAW lpFindFileData;
369 struct WORKREQ_FTPGETCURRENTDIRECTORYW
371 LPWSTR lpszDirectory;
372 DWORD *lpdwDirectory;
375 struct WORKREQ_FTPOPENFILEW
383 struct WORKREQ_FTPGETFILEW
385 LPWSTR lpszRemoteFile;
388 DWORD dwLocalFlagsAttribute;
393 struct WORKREQ_FTPDELETEFILEW
398 struct WORKREQ_FTPREMOVEDIRECTORYW
400 LPWSTR lpszDirectory;
403 struct WORKREQ_FTPRENAMEFILEW
409 struct WORKREQ_FTPFINDNEXTW
411 LPWIN32_FIND_DATAW lpFindFileData;
414 struct WORKREQ_HTTPSENDREQUESTW
417 DWORD dwHeaderLength;
419 DWORD dwOptionalLength;
420 DWORD dwContentLength;
424 struct WORKREQ_HTTPENDREQUESTW
430 struct WORKREQ_SENDCALLBACK
433 DWORD dwInternetStatus;
434 LPVOID lpvStatusInfo;
435 DWORD dwStatusInfoLength;
438 struct WORKREQ_INTERNETOPENURLW
443 DWORD dwHeadersLength;
448 struct WORKREQ_INTERNETREADFILEEXA
450 LPINTERNET_BUFFERSA lpBuffersOut;
453 struct WORKREQ_INTERNETREADFILEEXW
455 LPINTERNET_BUFFERSW lpBuffersOut;
458 typedef struct WORKREQ
460 void (*asyncproc)(struct WORKREQ*);
461 object_header_t *hdr;
464 struct WORKREQ_FTPPUTFILEW FtpPutFileW;
465 struct WORKREQ_FTPSETCURRENTDIRECTORYW FtpSetCurrentDirectoryW;
466 struct WORKREQ_FTPCREATEDIRECTORYW FtpCreateDirectoryW;
467 struct WORKREQ_FTPFINDFIRSTFILEW FtpFindFirstFileW;
468 struct WORKREQ_FTPGETCURRENTDIRECTORYW FtpGetCurrentDirectoryW;
469 struct WORKREQ_FTPOPENFILEW FtpOpenFileW;
470 struct WORKREQ_FTPGETFILEW FtpGetFileW;
471 struct WORKREQ_FTPDELETEFILEW FtpDeleteFileW;
472 struct WORKREQ_FTPREMOVEDIRECTORYW FtpRemoveDirectoryW;
473 struct WORKREQ_FTPRENAMEFILEW FtpRenameFileW;
474 struct WORKREQ_FTPFINDNEXTW FtpFindNextW;
475 struct WORKREQ_HTTPSENDREQUESTW HttpSendRequestW;
476 struct WORKREQ_HTTPENDREQUESTW HttpEndRequestW;
477 struct WORKREQ_SENDCALLBACK SendCallback;
478 struct WORKREQ_INTERNETOPENURLW InternetOpenUrlW;
479 struct WORKREQ_INTERNETREADFILEEXA InternetReadFileExA;
480 struct WORKREQ_INTERNETREADFILEEXW InternetReadFileExW;
483 } WORKREQUEST, *LPWORKREQUEST;
485 void *alloc_object(object_header_t*,const object_vtbl_t*,size_t) DECLSPEC_HIDDEN;
486 object_header_t *get_handle_object( HINTERNET hinternet ) DECLSPEC_HIDDEN;
487 object_header_t *WININET_AddRef( object_header_t *info ) DECLSPEC_HIDDEN;
488 BOOL WININET_Release( object_header_t *info ) DECLSPEC_HIDDEN;
490 DWORD INET_QueryOption(object_header_t*,DWORD,void*,DWORD*,BOOL) DECLSPEC_HIDDEN;
491 DWORD INET_SetOption(object_header_t*,DWORD,void*,DWORD) DECLSPEC_HIDDEN;
493 time_t ConvertTimeString(LPCWSTR asctime) DECLSPEC_HIDDEN;
495 HINTERNET FTP_Connect(appinfo_t *hIC, LPCWSTR lpszServerName,
496 INTERNET_PORT nServerPort, LPCWSTR lpszUserName,
497 LPCWSTR lpszPassword, DWORD dwFlags, DWORD_PTR dwContext,
498 DWORD dwInternalFlags) DECLSPEC_HIDDEN;
500 DWORD HTTP_Connect(appinfo_t*,LPCWSTR,
501 INTERNET_PORT nServerPort, LPCWSTR lpszUserName,
502 LPCWSTR lpszPassword, DWORD dwFlags, DWORD_PTR dwContext,
503 DWORD dwInternalFlags, HINTERNET*) DECLSPEC_HIDDEN;
505 BOOL GetAddress(LPCWSTR lpszServerName, INTERNET_PORT nServerPort,
506 struct sockaddr *psa, socklen_t *sa_len) DECLSPEC_HIDDEN;
508 BOOL get_cookie(const WCHAR*,const WCHAR*,WCHAR*,DWORD*) DECLSPEC_HIDDEN;
509 BOOL set_cookie(const WCHAR*,const WCHAR*,const WCHAR*,const WCHAR*) DECLSPEC_HIDDEN;
511 void INTERNET_SetLastError(DWORD dwError) DECLSPEC_HIDDEN;
512 DWORD INTERNET_GetLastError(void) DECLSPEC_HIDDEN;
513 DWORD INTERNET_AsyncCall(LPWORKREQUEST lpWorkRequest) DECLSPEC_HIDDEN;
514 LPSTR INTERNET_GetResponseBuffer(void) DECLSPEC_HIDDEN;
515 LPSTR INTERNET_GetNextLine(INT nSocket, LPDWORD dwLen) DECLSPEC_HIDDEN;
517 VOID SendAsyncCallback(object_header_t *hdr, DWORD_PTR dwContext,
518 DWORD dwInternetStatus, LPVOID lpvStatusInfo,
519 DWORD dwStatusInfoLength) DECLSPEC_HIDDEN;
521 VOID INTERNET_SendCallback(object_header_t *hdr, DWORD_PTR dwContext,
522 DWORD dwInternetStatus, LPVOID lpvStatusInfo,
523 DWORD dwStatusInfoLength) DECLSPEC_HIDDEN;
524 BOOL INTERNET_FindProxyForProtocol(LPCWSTR szProxy, LPCWSTR proto, WCHAR *foundProxy, DWORD *foundProxyLen) DECLSPEC_HIDDEN;
526 DWORD create_netconn(BOOL, server_t *, DWORD, DWORD, netconn_t **) DECLSPEC_HIDDEN;
527 void free_netconn(netconn_t*) DECLSPEC_HIDDEN;
528 void NETCON_unload(void) DECLSPEC_HIDDEN;
529 DWORD NETCON_secure_connect(netconn_t *connection) DECLSPEC_HIDDEN;
530 DWORD NETCON_send(netconn_t *connection, const void *msg, size_t len, int flags,
531 int *sent /* out */) DECLSPEC_HIDDEN;
532 DWORD NETCON_recv(netconn_t *connection, void *buf, size_t len, int flags,
533 int *recvd /* out */) DECLSPEC_HIDDEN;
534 BOOL NETCON_query_data_available(netconn_t *connection, DWORD *available) DECLSPEC_HIDDEN;
535 BOOL NETCON_is_alive(netconn_t*) DECLSPEC_HIDDEN;
536 LPCVOID NETCON_GetCert(netconn_t *connection) DECLSPEC_HIDDEN;
537 int NETCON_GetCipherStrength(netconn_t*) DECLSPEC_HIDDEN;
538 DWORD NETCON_set_timeout(netconn_t *connection, BOOL send, DWORD value) DECLSPEC_HIDDEN;
539 int sock_get_error(int) DECLSPEC_HIDDEN;
541 extern void URLCacheContainers_CreateDefaults(void) DECLSPEC_HIDDEN;
542 extern void URLCacheContainers_DeleteAll(void) DECLSPEC_HIDDEN;
544 #define MAX_REPLY_LEN 0x5B4
546 /* Used for debugging - maybe need to be shared in the Wine debugging code ? */
553 #endif /* _WINE_INTERNET_H_ */