xmllite: Fail to set input for external IXmlReaderInput.
[wine] / dlls / winhttp / winhttp_private.h
1 /*
2  * Copyright 2008 Hans Leidekker for CodeWeavers
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #ifndef _WINE_WINHTTP_PRIVATE_H_
20 #define _WINE_WINHTTP_PRIVATE_H_
21
22 #ifndef __WINE_CONFIG_H
23 # error You must include config.h to use this header
24 #endif
25
26 #include "wine/list.h"
27 #include "wine/unicode.h"
28
29 #include <sys/types.h>
30 #ifdef HAVE_SYS_SOCKET_H
31 # include <sys/socket.h>
32 #endif
33 #ifdef HAVE_NETINET_IN_H
34 # include <netinet/in.h>
35 #endif
36 #ifdef HAVE_NETDB_H
37 # include <netdb.h>
38 #endif
39 #if defined(__MINGW32__) || defined (_MSC_VER)
40 # include <ws2tcpip.h>
41 #else
42 # define closesocket close
43 # define ioctlsocket ioctl
44 #endif
45
46 #include "ole2.h"
47 #include "sspi.h"
48
49 static const WCHAR getW[]    = {'G','E','T',0};
50 static const WCHAR postW[]   = {'P','O','S','T',0};
51 static const WCHAR headW[]   = {'H','E','A','D',0};
52 static const WCHAR slashW[]  = {'/',0};
53 static const WCHAR http1_0[] = {'H','T','T','P','/','1','.','0',0};
54 static const WCHAR http1_1[] = {'H','T','T','P','/','1','.','1',0};
55
56 typedef struct _object_header_t object_header_t;
57
58 typedef struct
59 {
60     void (*destroy)( object_header_t * );
61     BOOL (*query_option)( object_header_t *, DWORD, void *, DWORD * );
62     BOOL (*set_option)( object_header_t *, DWORD, void *, DWORD );
63 } object_vtbl_t;
64
65 struct _object_header_t
66 {
67     DWORD type;
68     HINTERNET handle;
69     const object_vtbl_t *vtbl;
70     DWORD flags;
71     DWORD disable_flags;
72     DWORD logon_policy;
73     DWORD redirect_policy;
74     DWORD error;
75     DWORD_PTR context;
76     LONG refs;
77     WINHTTP_STATUS_CALLBACK callback;
78     DWORD notify_mask;
79     struct list entry;
80     struct list children;
81 };
82
83 typedef struct
84 {
85     struct list entry;
86     WCHAR *name;
87     struct list cookies;
88 } domain_t;
89
90 typedef struct
91 {
92     struct list entry;
93     WCHAR *name;
94     WCHAR *value;
95     WCHAR *path;
96 } cookie_t;
97
98 typedef struct
99 {
100     object_header_t hdr;
101     LPWSTR agent;
102     DWORD access;
103     int resolve_timeout;
104     int connect_timeout;
105     int send_timeout;
106     int recv_timeout;
107     LPWSTR proxy_server;
108     LPWSTR proxy_bypass;
109     LPWSTR proxy_username;
110     LPWSTR proxy_password;
111     struct list cookie_cache;
112 } session_t;
113
114 typedef struct
115 {
116     object_header_t hdr;
117     session_t *session;
118     LPWSTR hostname;    /* final destination of the request */
119     LPWSTR servername;  /* name of the server we directly connect to */
120     LPWSTR username;
121     LPWSTR password;
122     INTERNET_PORT hostport;
123     INTERNET_PORT serverport;
124     struct sockaddr_storage sockaddr;
125     BOOL resolved;
126 } connect_t;
127
128 typedef struct
129 {
130     int socket;
131     BOOL secure; /* SSL active on connection? */
132     CtxtHandle ssl_ctx;
133     SecPkgContext_StreamSizes ssl_sizes;
134     char *ssl_buf;
135     char *extra_buf;
136     size_t extra_len;
137     char *peek_msg;
138     char *peek_msg_mem;
139     size_t peek_len;
140     DWORD security_flags;
141 } netconn_t;
142
143 typedef struct
144 {
145     LPWSTR field;
146     LPWSTR value;
147     BOOL is_request; /* part of request headers? */
148 } header_t;
149
150 typedef struct
151 {
152     object_header_t hdr;
153     connect_t *connect;
154     LPWSTR verb;
155     LPWSTR path;
156     LPWSTR version;
157     LPWSTR raw_headers;
158     netconn_t netconn;
159     int resolve_timeout;
160     int connect_timeout;
161     int send_timeout;
162     int recv_timeout;
163     LPWSTR status_text;
164     DWORD content_length; /* total number of bytes to be read (per chunk) */
165     DWORD content_read;   /* bytes read so far */
166     header_t *headers;
167     DWORD num_headers;
168     WCHAR **accept_types;
169     DWORD num_accept_types;
170 } request_t;
171
172 typedef struct _task_header_t task_header_t;
173
174 struct _task_header_t
175 {
176     request_t *request;
177     void (*proc)( task_header_t * );
178 };
179
180 typedef struct
181 {
182     task_header_t hdr;
183     LPWSTR headers;
184     DWORD headers_len;
185     LPVOID optional;
186     DWORD optional_len;
187     DWORD total_len;
188     DWORD_PTR context;
189 } send_request_t;
190
191 typedef struct
192 {
193     task_header_t hdr;
194 } receive_response_t;
195
196 typedef struct
197 {
198     task_header_t hdr;
199     LPDWORD available;
200 } query_data_t;
201
202 typedef struct
203 {
204     task_header_t hdr;
205     LPVOID buffer;
206     DWORD to_read;
207     LPDWORD read;
208 } read_data_t;
209
210 typedef struct
211 {
212     task_header_t hdr;
213     LPCVOID buffer;
214     DWORD to_write;
215     LPDWORD written;
216 } write_data_t;
217
218 object_header_t *addref_object( object_header_t * ) DECLSPEC_HIDDEN;
219 object_header_t *grab_object( HINTERNET ) DECLSPEC_HIDDEN;
220 void release_object( object_header_t * ) DECLSPEC_HIDDEN;
221 HINTERNET alloc_handle( object_header_t * ) DECLSPEC_HIDDEN;
222 BOOL free_handle( HINTERNET ) DECLSPEC_HIDDEN;
223
224 void set_last_error( DWORD ) DECLSPEC_HIDDEN;
225 DWORD get_last_error( void ) DECLSPEC_HIDDEN;
226 void send_callback( object_header_t *, DWORD, LPVOID, DWORD ) DECLSPEC_HIDDEN;
227 void close_connection( request_t * ) DECLSPEC_HIDDEN;
228
229 BOOL netconn_close( netconn_t * ) DECLSPEC_HIDDEN;
230 BOOL netconn_connect( netconn_t *, const struct sockaddr *, unsigned int, int ) DECLSPEC_HIDDEN;
231 BOOL netconn_connected( netconn_t * ) DECLSPEC_HIDDEN;
232 BOOL netconn_create( netconn_t *, int, int, int ) DECLSPEC_HIDDEN;
233 BOOL netconn_get_next_line( netconn_t *, char *, DWORD * ) DECLSPEC_HIDDEN;
234 BOOL netconn_init( netconn_t *, BOOL ) DECLSPEC_HIDDEN;
235 void netconn_unload( void ) DECLSPEC_HIDDEN;
236 BOOL netconn_query_data_available( netconn_t *, DWORD * ) DECLSPEC_HIDDEN;
237 BOOL netconn_recv( netconn_t *, void *, size_t, int, int * ) DECLSPEC_HIDDEN;
238 BOOL netconn_resolve( WCHAR *, INTERNET_PORT, struct sockaddr *, socklen_t *, int ) DECLSPEC_HIDDEN;
239 BOOL netconn_secure_connect( netconn_t *, WCHAR * ) DECLSPEC_HIDDEN;
240 BOOL netconn_send( netconn_t *, const void *, size_t, int, int * ) DECLSPEC_HIDDEN;
241 DWORD netconn_set_timeout( netconn_t *, BOOL, int ) DECLSPEC_HIDDEN;
242 const void *netconn_get_certificate( netconn_t * ) DECLSPEC_HIDDEN;
243 int netconn_get_cipher_strength( netconn_t * ) DECLSPEC_HIDDEN;
244
245 BOOL set_cookies( request_t *, const WCHAR * ) DECLSPEC_HIDDEN;
246 BOOL add_cookie_headers( request_t * ) DECLSPEC_HIDDEN;
247 BOOL add_request_headers( request_t *, LPCWSTR, DWORD, DWORD ) DECLSPEC_HIDDEN;
248 void delete_domain( domain_t * ) DECLSPEC_HIDDEN;
249 BOOL set_server_for_hostname( connect_t *connect, LPCWSTR server, INTERNET_PORT port ) DECLSPEC_HIDDEN;
250
251 extern HRESULT WinHttpRequest_create( IUnknown *, void ** ) DECLSPEC_HIDDEN;
252
253 static inline const char *debugstr_variant( const VARIANT *v )
254 {
255     if (!v) return "(null)";
256     switch (V_VT(v))
257     {
258     case VT_EMPTY:
259         return "{VT_EMPTY}";
260     case VT_NULL:
261         return "{VT_NULL}";
262     case VT_I4:
263         return wine_dbg_sprintf( "{VT_I4: %d}", V_I4(v) );
264     case VT_R8:
265         return wine_dbg_sprintf( "{VT_R8: %lf}", V_R8(v) );
266     case VT_BSTR:
267         return wine_dbg_sprintf( "{VT_BSTR: %s}", debugstr_w(V_BSTR(v)) );
268     case VT_DISPATCH:
269         return wine_dbg_sprintf( "{VT_DISPATCH: %p}", V_DISPATCH(v) );
270     case VT_BOOL:
271         return wine_dbg_sprintf( "{VT_BOOL: %x}", V_BOOL(v) );
272     case VT_UNKNOWN:
273         return wine_dbg_sprintf( "{VT_UNKNOWN: %p}", V_UNKNOWN(v) );
274     case VT_UINT:
275         return wine_dbg_sprintf( "{VT_UINT: %u}", V_UINT(v) );
276     case VT_BSTR|VT_BYREF:
277         return wine_dbg_sprintf( "{VT_BSTR|VT_BYREF: ptr %p, data %s}",
278             V_BSTRREF(v), V_BSTRREF(v) ? debugstr_w( *V_BSTRREF(v) ) : NULL );
279     default:
280         return wine_dbg_sprintf( "{vt %d}", V_VT(v) );
281     }
282 }
283
284 static inline void *heap_alloc( SIZE_T size )
285 {
286     return HeapAlloc( GetProcessHeap(), 0, size );
287 }
288
289 static inline void *heap_alloc_zero( SIZE_T size )
290 {
291     return HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, size );
292 }
293
294 static inline void *heap_realloc( LPVOID mem, SIZE_T size )
295 {
296     return HeapReAlloc( GetProcessHeap(), 0, mem, size );
297 }
298
299 static inline void *heap_realloc_zero( LPVOID mem, SIZE_T size )
300 {
301     return HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, mem, size );
302 }
303
304 static inline BOOL heap_free( LPVOID mem )
305 {
306     return HeapFree( GetProcessHeap(), 0, mem );
307 }
308
309 static inline WCHAR *strdupW( const WCHAR *src )
310 {
311     WCHAR *dst;
312
313     if (!src) return NULL;
314     dst = heap_alloc( (strlenW( src ) + 1) * sizeof(WCHAR) );
315     if (dst) strcpyW( dst, src );
316     return dst;
317 }
318
319 static inline WCHAR *strdupAW( const char *src )
320 {
321     WCHAR *dst = NULL;
322     if (src)
323     {
324         DWORD len = MultiByteToWideChar( CP_ACP, 0, src, -1, NULL, 0 );
325         if ((dst = heap_alloc( len * sizeof(WCHAR) )))
326             MultiByteToWideChar( CP_ACP, 0, src, -1, dst, len );
327     }
328     return dst;
329 }
330
331 static inline char *strdupWA( const WCHAR *src )
332 {
333     char *dst = NULL;
334     if (src)
335     {
336         int len = WideCharToMultiByte( CP_ACP, 0, src, -1, NULL, 0, NULL, NULL );
337         if ((dst = heap_alloc( len )))
338             WideCharToMultiByte( CP_ACP, 0, src, -1, dst, len, NULL, NULL );
339     }
340     return dst;
341 }
342
343 #endif /* _WINE_WINHTTP_PRIVATE_H_ */