wininet: Moved WORKREQ_FTPREMOVEDIRECTORYW out of WORKREQUEST.
[wine.git] / dlls / wininet / internet.h
blob382cae9af50d3ef896e20f5da104fcd7aa759592
1 /*
2 * Wininet
4 * Copyright 1999 Corel Corporation
6 * Ulrich Czekalla
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
28 #endif
30 #include "wine/unicode.h"
31 #include "wine/list.h"
33 #include <time.h>
34 #ifdef HAVE_NETDB_H
35 # include <netdb.h>
36 #endif
37 #ifdef HAVE_NETINET_IN_H
38 # include <sys/types.h>
39 # include <netinet/in.h>
40 #endif
41 #ifdef HAVE_SYS_SOCKET_H
42 # include <sys/socket.h>
43 #endif
45 #if !defined(__MINGW32__) && !defined(_MSC_VER)
46 #define closesocket close
47 #define ioctlsocket ioctl
48 #endif /* __MINGW32__ */
50 #include "winineti.h"
52 extern HMODULE WININET_hModule DECLSPEC_HIDDEN;
54 #ifndef INET6_ADDRSTRLEN
55 #define INET6_ADDRSTRLEN 46
56 #endif
58 typedef struct {
59 WCHAR *name;
60 INTERNET_PORT port;
61 BOOL is_https;
62 struct sockaddr_storage addr;
63 socklen_t addr_len;
64 char addr_str[INET6_ADDRSTRLEN];
66 WCHAR *scheme_host_port;
67 const WCHAR *host_port;
68 const WCHAR *canon_host_port;
70 LONG ref;
72 DWORD security_flags;
73 const CERT_CHAIN_CONTEXT *cert_chain;
75 struct list entry;
76 struct list conn_pool;
77 } server_t;
79 void server_addref(server_t*) DECLSPEC_HIDDEN;
80 void server_release(server_t*) DECLSPEC_HIDDEN;
82 typedef enum {
83 COLLECT_TIMEOUT,
84 COLLECT_CONNECTIONS,
85 COLLECT_CLEANUP
86 } collect_type_t;
87 BOOL collect_connections(collect_type_t) DECLSPEC_HIDDEN;
89 /* used for netconnection.c stuff */
90 typedef struct
92 BOOL useSSL;
93 int socketFD;
94 void *ssl_s;
95 server_t *server;
96 DWORD security_flags;
97 BOOL mask_errors;
99 BOOL keep_alive;
100 DWORD64 keep_until;
101 struct list pool_entry;
102 } netconn_t;
104 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc(size_t len)
106 return HeapAlloc(GetProcessHeap(), 0, len);
109 static inline void * __WINE_ALLOC_SIZE(1) heap_alloc_zero(size_t len)
111 return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
114 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc(void *mem, size_t len)
116 return HeapReAlloc(GetProcessHeap(), 0, mem, len);
119 static inline void * __WINE_ALLOC_SIZE(2) heap_realloc_zero(void *mem, size_t len)
121 return HeapReAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, mem, len);
124 static inline BOOL heap_free(void *mem)
126 return HeapFree(GetProcessHeap(), 0, mem);
129 static inline LPWSTR heap_strdupW(LPCWSTR str)
131 LPWSTR ret = NULL;
133 if(str) {
134 DWORD size;
136 size = (strlenW(str)+1)*sizeof(WCHAR);
137 ret = heap_alloc(size);
138 if(ret)
139 memcpy(ret, str, size);
142 return ret;
145 static inline LPWSTR heap_strndupW(LPCWSTR str, UINT max_len)
147 LPWSTR ret;
148 UINT len;
150 if(!str)
151 return NULL;
153 for(len=0; len<max_len; len++)
154 if(str[len] == '\0')
155 break;
157 ret = heap_alloc(sizeof(WCHAR)*(len+1));
158 if(ret) {
159 memcpy(ret, str, sizeof(WCHAR)*len);
160 ret[len] = '\0';
163 return ret;
166 static inline WCHAR *heap_strdupAtoW(const char *str)
168 LPWSTR ret = NULL;
170 if(str) {
171 DWORD len;
173 len = MultiByteToWideChar(CP_ACP, 0, str, -1, NULL, 0);
174 ret = heap_alloc(len*sizeof(WCHAR));
175 if(ret)
176 MultiByteToWideChar(CP_ACP, 0, str, -1, ret, len);
179 return ret;
182 static inline char *heap_strdupWtoA(LPCWSTR str)
184 char *ret = NULL;
186 if(str) {
187 DWORD size = WideCharToMultiByte(CP_ACP, 0, str, -1, NULL, 0, NULL, NULL);
188 ret = heap_alloc(size);
189 if(ret)
190 WideCharToMultiByte(CP_ACP, 0, str, -1, ret, size, NULL, NULL);
193 return ret;
196 static inline void WININET_find_data_WtoA(LPWIN32_FIND_DATAW dataW, LPWIN32_FIND_DATAA dataA)
198 dataA->dwFileAttributes = dataW->dwFileAttributes;
199 dataA->ftCreationTime = dataW->ftCreationTime;
200 dataA->ftLastAccessTime = dataW->ftLastAccessTime;
201 dataA->ftLastWriteTime = dataW->ftLastWriteTime;
202 dataA->nFileSizeHigh = dataW->nFileSizeHigh;
203 dataA->nFileSizeLow = dataW->nFileSizeLow;
204 dataA->dwReserved0 = dataW->dwReserved0;
205 dataA->dwReserved1 = dataW->dwReserved1;
206 WideCharToMultiByte(CP_ACP, 0, dataW->cFileName, -1,
207 dataA->cFileName, sizeof(dataA->cFileName),
208 NULL, NULL);
209 WideCharToMultiByte(CP_ACP, 0, dataW->cAlternateFileName, -1,
210 dataA->cAlternateFileName, sizeof(dataA->cAlternateFileName),
211 NULL, NULL);
214 typedef enum
216 WH_HINIT = INTERNET_HANDLE_TYPE_INTERNET,
217 WH_HFTPSESSION = INTERNET_HANDLE_TYPE_CONNECT_FTP,
218 WH_HGOPHERSESSION = INTERNET_HANDLE_TYPE_CONNECT_GOPHER,
219 WH_HHTTPSESSION = INTERNET_HANDLE_TYPE_CONNECT_HTTP,
220 WH_HFILE = INTERNET_HANDLE_TYPE_FTP_FILE,
221 WH_HFTPFINDNEXT = INTERNET_HANDLE_TYPE_FTP_FIND,
222 WH_HHTTPREQ = INTERNET_HANDLE_TYPE_HTTP_REQUEST,
223 } WH_TYPE;
225 #define INET_OPENURL 0x0001
226 #define INET_CALLBACKW 0x0002
228 typedef struct _object_header_t object_header_t;
230 typedef struct {
231 void (*Destroy)(object_header_t*);
232 void (*CloseConnection)(object_header_t*);
233 DWORD (*QueryOption)(object_header_t*,DWORD,void*,DWORD*,BOOL);
234 DWORD (*SetOption)(object_header_t*,DWORD,void*,DWORD);
235 DWORD (*ReadFile)(object_header_t*,void*,DWORD,DWORD*);
236 DWORD (*ReadFileEx)(object_header_t*,void*,DWORD,DWORD*,DWORD,DWORD_PTR);
237 DWORD (*WriteFile)(object_header_t*,const void*,DWORD,DWORD*);
238 DWORD (*QueryDataAvailable)(object_header_t*,DWORD*,DWORD,DWORD_PTR);
239 DWORD (*FindNextFileW)(object_header_t*,void*);
240 } object_vtbl_t;
242 #define INTERNET_HANDLE_IN_USE 1
244 struct _object_header_t
246 WH_TYPE htype;
247 const object_vtbl_t *vtbl;
248 HINTERNET hInternet;
249 BOOL valid_handle;
250 DWORD dwFlags;
251 DWORD_PTR dwContext;
252 DWORD dwError;
253 ULONG ErrorMask;
254 DWORD dwInternalFlags;
255 LONG refs;
256 INTERNET_STATUS_CALLBACK lpfnStatusCB;
257 struct list entry;
258 struct list children;
262 typedef struct
264 object_header_t hdr;
265 LPWSTR agent;
266 LPWSTR proxy;
267 LPWSTR proxyBypass;
268 LPWSTR proxyUsername;
269 LPWSTR proxyPassword;
270 DWORD accessType;
271 DWORD connect_timeout;
272 } appinfo_t;
274 typedef struct
276 object_header_t hdr;
277 appinfo_t *appInfo;
278 LPWSTR hostName; /* the final destination of the request */
279 LPWSTR userName;
280 LPWSTR password;
281 INTERNET_PORT hostPort; /* the final destination port of the request */
282 DWORD connect_timeout;
283 DWORD send_timeout;
284 DWORD receive_timeout;
285 } http_session_t;
287 #define HDR_ISREQUEST 0x0001
288 #define HDR_COMMADELIMITED 0x0002
289 #define HDR_SEMIDELIMITED 0x0004
291 typedef struct
293 LPWSTR lpszField;
294 LPWSTR lpszValue;
295 WORD wFlags;
296 WORD wCount;
297 } HTTPHEADERW, *LPHTTPHEADERW;
300 struct HttpAuthInfo;
302 typedef struct data_stream_vtbl_t data_stream_vtbl_t;
304 typedef struct {
305 const data_stream_vtbl_t *vtbl;
306 } data_stream_t;
308 typedef struct {
309 data_stream_t data_stream;
310 DWORD content_length;
311 DWORD content_read;
312 } netconn_stream_t;
314 #define READ_BUFFER_SIZE 8192
316 typedef struct
318 object_header_t hdr;
319 http_session_t *session;
320 server_t *server;
321 server_t *proxy;
322 LPWSTR path;
323 LPWSTR verb;
324 LPWSTR rawHeaders;
325 netconn_t *netconn;
326 DWORD security_flags;
327 DWORD connect_timeout;
328 DWORD send_timeout;
329 DWORD receive_timeout;
330 LPWSTR version;
331 DWORD status_code;
332 LPWSTR statusText;
333 DWORD bytesToWrite;
334 DWORD bytesWritten;
335 HTTPHEADERW *custHeaders;
336 DWORD nCustHeaders;
337 FILETIME last_modified;
338 HANDLE hCacheFile;
339 LPWSTR cacheFile;
340 FILETIME expires;
341 struct HttpAuthInfo *authInfo;
342 struct HttpAuthInfo *proxyAuthInfo;
344 CRITICAL_SECTION read_section; /* section to protect the following fields */
345 DWORD contentLength; /* total number of bytes to be read */
346 BOOL read_chunked; /* are we reading in chunked mode? */
347 BOOL read_gzip; /* are we reading in gzip mode? */
348 DWORD read_pos; /* current read position in read_buf */
349 DWORD read_size; /* valid data size in read_buf */
350 BYTE read_buf[READ_BUFFER_SIZE]; /* buffer for already read but not returned data */
352 BOOL decoding;
353 data_stream_t *data_stream;
354 netconn_stream_t netconn_stream;
355 } http_request_t;
358 struct WORKREQ_FTPFINDFIRSTFILEW
360 LPWSTR lpszSearchFile;
361 LPWIN32_FIND_DATAW lpFindFileData;
362 DWORD dwFlags;
363 DWORD_PTR dwContext;
366 struct WORKREQ_FTPGETCURRENTDIRECTORYW
368 LPWSTR lpszDirectory;
369 DWORD *lpdwDirectory;
372 struct WORKREQ_FTPOPENFILEW
374 LPWSTR lpszFilename;
375 DWORD dwAccess;
376 DWORD dwFlags;
377 DWORD_PTR dwContext;
380 struct WORKREQ_FTPGETFILEW
382 LPWSTR lpszRemoteFile;
383 LPWSTR lpszNewFile;
384 BOOL fFailIfExists;
385 DWORD dwLocalFlagsAttribute;
386 DWORD dwFlags;
387 DWORD_PTR dwContext;
390 struct WORKREQ_FTPDELETEFILEW
392 LPWSTR lpszFilename;
395 struct WORKREQ_FTPRENAMEFILEW
397 LPWSTR lpszSrcFile;
398 LPWSTR lpszDestFile;
401 struct WORKREQ_FTPFINDNEXTW
403 LPWIN32_FIND_DATAW lpFindFileData;
406 typedef struct WORKREQ task_header_t;
407 typedef void (*async_task_proc_t)(task_header_t*);
409 typedef struct WORKREQ
411 async_task_proc_t proc;
412 object_header_t *hdr;
414 union {
415 struct WORKREQ_FTPFINDFIRSTFILEW FtpFindFirstFileW;
416 struct WORKREQ_FTPGETCURRENTDIRECTORYW FtpGetCurrentDirectoryW;
417 struct WORKREQ_FTPOPENFILEW FtpOpenFileW;
418 struct WORKREQ_FTPGETFILEW FtpGetFileW;
419 struct WORKREQ_FTPDELETEFILEW FtpDeleteFileW;
420 struct WORKREQ_FTPRENAMEFILEW FtpRenameFileW;
421 struct WORKREQ_FTPFINDNEXTW FtpFindNextW;
422 } u;
423 } WORKREQUEST, *LPWORKREQUEST;
425 void *alloc_async_task(object_header_t*,async_task_proc_t,size_t) DECLSPEC_HIDDEN;
427 void *alloc_object(object_header_t*,const object_vtbl_t*,size_t) DECLSPEC_HIDDEN;
428 object_header_t *get_handle_object( HINTERNET hinternet ) DECLSPEC_HIDDEN;
429 object_header_t *WININET_AddRef( object_header_t *info ) DECLSPEC_HIDDEN;
430 BOOL WININET_Release( object_header_t *info ) DECLSPEC_HIDDEN;
432 DWORD INET_QueryOption(object_header_t*,DWORD,void*,DWORD*,BOOL) DECLSPEC_HIDDEN;
433 DWORD INET_SetOption(object_header_t*,DWORD,void*,DWORD) DECLSPEC_HIDDEN;
435 time_t ConvertTimeString(LPCWSTR asctime) DECLSPEC_HIDDEN;
437 HINTERNET FTP_Connect(appinfo_t *hIC, LPCWSTR lpszServerName,
438 INTERNET_PORT nServerPort, LPCWSTR lpszUserName,
439 LPCWSTR lpszPassword, DWORD dwFlags, DWORD_PTR dwContext,
440 DWORD dwInternalFlags) DECLSPEC_HIDDEN;
442 DWORD HTTP_Connect(appinfo_t*,LPCWSTR,
443 INTERNET_PORT nServerPort, LPCWSTR lpszUserName,
444 LPCWSTR lpszPassword, DWORD dwFlags, DWORD_PTR dwContext,
445 DWORD dwInternalFlags, HINTERNET*) DECLSPEC_HIDDEN;
447 BOOL GetAddress(LPCWSTR lpszServerName, INTERNET_PORT nServerPort,
448 struct sockaddr *psa, socklen_t *sa_len) DECLSPEC_HIDDEN;
450 DWORD get_cookie(const WCHAR*,const WCHAR*,WCHAR*,DWORD*) DECLSPEC_HIDDEN;
451 BOOL set_cookie(const WCHAR*,const WCHAR*,const WCHAR*,const WCHAR*) DECLSPEC_HIDDEN;
453 void INTERNET_SetLastError(DWORD dwError) DECLSPEC_HIDDEN;
454 DWORD INTERNET_GetLastError(void) DECLSPEC_HIDDEN;
455 DWORD INTERNET_AsyncCall(LPWORKREQUEST lpWorkRequest) DECLSPEC_HIDDEN;
456 LPSTR INTERNET_GetResponseBuffer(void) DECLSPEC_HIDDEN;
457 LPSTR INTERNET_GetNextLine(INT nSocket, LPDWORD dwLen) DECLSPEC_HIDDEN;
459 VOID SendAsyncCallback(object_header_t *hdr, DWORD_PTR dwContext,
460 DWORD dwInternetStatus, LPVOID lpvStatusInfo,
461 DWORD dwStatusInfoLength) DECLSPEC_HIDDEN;
463 VOID INTERNET_SendCallback(object_header_t *hdr, DWORD_PTR dwContext,
464 DWORD dwInternetStatus, LPVOID lpvStatusInfo,
465 DWORD dwStatusInfoLength) DECLSPEC_HIDDEN;
466 BOOL INTERNET_FindProxyForProtocol(LPCWSTR szProxy, LPCWSTR proto, WCHAR *foundProxy, DWORD *foundProxyLen) DECLSPEC_HIDDEN;
468 DWORD create_netconn(BOOL,server_t*,DWORD,BOOL,DWORD,netconn_t**) DECLSPEC_HIDDEN;
469 void free_netconn(netconn_t*) DECLSPEC_HIDDEN;
470 void NETCON_unload(void) DECLSPEC_HIDDEN;
471 DWORD NETCON_secure_connect(netconn_t*,server_t*) DECLSPEC_HIDDEN;
472 DWORD NETCON_send(netconn_t *connection, const void *msg, size_t len, int flags,
473 int *sent /* out */) DECLSPEC_HIDDEN;
474 DWORD NETCON_recv(netconn_t *connection, void *buf, size_t len, int flags,
475 int *recvd /* out */) DECLSPEC_HIDDEN;
476 BOOL NETCON_query_data_available(netconn_t *connection, DWORD *available) DECLSPEC_HIDDEN;
477 BOOL NETCON_is_alive(netconn_t*) DECLSPEC_HIDDEN;
478 LPCVOID NETCON_GetCert(netconn_t *connection) DECLSPEC_HIDDEN;
479 int NETCON_GetCipherStrength(netconn_t*) DECLSPEC_HIDDEN;
480 DWORD NETCON_set_timeout(netconn_t *connection, BOOL send, DWORD value) DECLSPEC_HIDDEN;
481 int sock_get_error(int) DECLSPEC_HIDDEN;
483 server_t *get_server(const WCHAR*,INTERNET_PORT,BOOL,BOOL);
485 BOOL init_urlcache(void) DECLSPEC_HIDDEN;
486 void free_urlcache(void) DECLSPEC_HIDDEN;
487 void free_cookie(void) DECLSPEC_HIDDEN;
489 #define MAX_REPLY_LEN 0x5B4
491 /* Used for debugging - maybe need to be shared in the Wine debugging code ? */
492 typedef struct
494 DWORD val;
495 const char* name;
496 } wininet_flag_info;
498 /* Undocumented security flags */
499 #define _SECURITY_FLAG_CERT_REV_FAILED 0x00800000
500 #define _SECURITY_FLAG_CERT_INVALID_CA 0x01000000
501 #define _SECURITY_FLAG_CERT_INVALID_CN 0x02000000
502 #define _SECURITY_FLAG_CERT_INVALID_DATE 0x04000000
504 #define _SECURITY_ERROR_FLAGS_MASK \
505 (_SECURITY_FLAG_CERT_REV_FAILED \
506 |_SECURITY_FLAG_CERT_INVALID_CA \
507 |_SECURITY_FLAG_CERT_INVALID_CN \
508 |_SECURITY_FLAG_CERT_INVALID_DATE)
510 #endif /* _WINE_INTERNET_H_ */