2008-08-15 14:41:36 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2008 Hans Leidekker for CodeWeavers
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _WINE_WINHTTP_PRIVATE_H_
|
|
|
|
#define _WINE_WINHTTP_PRIVATE_H_
|
|
|
|
|
2008-08-15 14:42:28 +02:00
|
|
|
#ifndef __WINE_CONFIG_H
|
|
|
|
# error You must include config.h to use this header
|
|
|
|
#endif
|
|
|
|
|
2008-08-15 14:41:36 +02:00
|
|
|
#include "wine/list.h"
|
2008-08-15 14:42:15 +02:00
|
|
|
#include "wine/unicode.h"
|
2008-08-15 14:41:36 +02:00
|
|
|
|
2008-12-29 04:00:24 +01:00
|
|
|
#include <sys/types.h>
|
2009-07-25 18:57:18 +02:00
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
# include <sys/socket.h>
|
|
|
|
#endif
|
2008-08-20 20:34:43 +02:00
|
|
|
#ifdef HAVE_NETINET_IN_H
|
|
|
|
# include <netinet/in.h>
|
|
|
|
#endif
|
2008-08-15 14:42:28 +02:00
|
|
|
#ifdef HAVE_NETDB_H
|
|
|
|
# include <netdb.h>
|
|
|
|
#endif
|
2008-08-25 15:56:50 +02:00
|
|
|
#if defined(__MINGW32__) || defined (_MSC_VER)
|
|
|
|
# include <ws2tcpip.h>
|
2008-10-01 12:20:31 +02:00
|
|
|
#else
|
|
|
|
# define closesocket close
|
|
|
|
# define ioctlsocket ioctl
|
2008-08-25 15:56:50 +02:00
|
|
|
#endif
|
2013-01-23 15:49:15 +01:00
|
|
|
|
2011-07-08 16:46:14 +02:00
|
|
|
#include "ole2.h"
|
2013-01-23 15:49:15 +01:00
|
|
|
#include "sspi.h"
|
2008-08-15 14:42:28 +02:00
|
|
|
|
2008-09-16 12:31:16 +02:00
|
|
|
static const WCHAR getW[] = {'G','E','T',0};
|
|
|
|
static const WCHAR postW[] = {'P','O','S','T',0};
|
2012-01-27 10:53:50 +01:00
|
|
|
static const WCHAR headW[] = {'H','E','A','D',0};
|
2008-09-16 12:31:16 +02:00
|
|
|
static const WCHAR slashW[] = {'/',0};
|
2008-09-16 21:32:46 +02:00
|
|
|
static const WCHAR http1_0[] = {'H','T','T','P','/','1','.','0',0};
|
2008-09-16 12:31:16 +02:00
|
|
|
static const WCHAR http1_1[] = {'H','T','T','P','/','1','.','1',0};
|
|
|
|
|
2008-08-15 14:41:36 +02:00
|
|
|
typedef struct _object_header_t object_header_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
void (*destroy)( object_header_t * );
|
2008-09-03 12:31:24 +02:00
|
|
|
BOOL (*query_option)( object_header_t *, DWORD, void *, DWORD * );
|
2008-08-15 14:41:36 +02:00
|
|
|
BOOL (*set_option)( object_header_t *, DWORD, void *, DWORD );
|
|
|
|
} object_vtbl_t;
|
|
|
|
|
|
|
|
struct _object_header_t
|
|
|
|
{
|
|
|
|
DWORD type;
|
|
|
|
HINTERNET handle;
|
|
|
|
const object_vtbl_t *vtbl;
|
|
|
|
DWORD flags;
|
2008-09-03 16:58:06 +02:00
|
|
|
DWORD disable_flags;
|
|
|
|
DWORD logon_policy;
|
|
|
|
DWORD redirect_policy;
|
2008-08-15 14:41:36 +02:00
|
|
|
DWORD error;
|
|
|
|
DWORD_PTR context;
|
|
|
|
LONG refs;
|
|
|
|
WINHTTP_STATUS_CALLBACK callback;
|
|
|
|
DWORD notify_mask;
|
|
|
|
struct list entry;
|
|
|
|
struct list children;
|
|
|
|
};
|
|
|
|
|
2008-09-16 12:31:35 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
WCHAR *name;
|
|
|
|
struct list cookies;
|
|
|
|
} domain_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
struct list entry;
|
|
|
|
WCHAR *name;
|
|
|
|
WCHAR *value;
|
|
|
|
WCHAR *path;
|
|
|
|
} cookie_t;
|
|
|
|
|
2008-08-15 14:42:15 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
object_header_t hdr;
|
|
|
|
LPWSTR agent;
|
|
|
|
DWORD access;
|
2010-02-22 12:27:30 +01:00
|
|
|
int resolve_timeout;
|
2010-01-29 01:45:15 +01:00
|
|
|
int connect_timeout;
|
|
|
|
int send_timeout;
|
|
|
|
int recv_timeout;
|
2008-08-15 14:42:15 +02:00
|
|
|
LPWSTR proxy_server;
|
|
|
|
LPWSTR proxy_bypass;
|
|
|
|
LPWSTR proxy_username;
|
|
|
|
LPWSTR proxy_password;
|
2008-09-16 12:31:35 +02:00
|
|
|
struct list cookie_cache;
|
2008-08-15 14:42:15 +02:00
|
|
|
} session_t;
|
|
|
|
|
2008-08-15 14:42:28 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
object_header_t hdr;
|
|
|
|
session_t *session;
|
|
|
|
LPWSTR hostname; /* final destination of the request */
|
|
|
|
LPWSTR servername; /* name of the server we directly connect to */
|
|
|
|
LPWSTR username;
|
|
|
|
LPWSTR password;
|
|
|
|
INTERNET_PORT hostport;
|
|
|
|
INTERNET_PORT serverport;
|
2009-07-08 19:39:37 +02:00
|
|
|
struct sockaddr_storage sockaddr;
|
2011-11-25 14:55:13 +01:00
|
|
|
BOOL resolved;
|
2008-08-15 14:42:28 +02:00
|
|
|
} connect_t;
|
|
|
|
|
2008-08-15 14:42:41 +02:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int socket;
|
2008-08-28 13:49:19 +02:00
|
|
|
BOOL secure; /* SSL active on connection? */
|
2013-01-23 15:49:15 +01:00
|
|
|
CtxtHandle ssl_ctx;
|
|
|
|
SecPkgContext_StreamSizes ssl_sizes;
|
2013-01-23 15:49:29 +01:00
|
|
|
char *ssl_buf;
|
2013-01-23 15:49:15 +01:00
|
|
|
char *extra_buf;
|
|
|
|
size_t extra_len;
|
2008-08-15 14:42:41 +02:00
|
|
|
char *peek_msg;
|
|
|
|
char *peek_msg_mem;
|
|
|
|
size_t peek_len;
|
2010-05-17 19:04:18 +02:00
|
|
|
DWORD security_flags;
|
2008-08-15 14:42:41 +02:00
|
|
|
} netconn_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
LPWSTR field;
|
|
|
|
LPWSTR value;
|
2008-08-20 11:35:39 +02:00
|
|
|
BOOL is_request; /* part of request headers? */
|
2008-08-15 14:42:41 +02:00
|
|
|
} header_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
object_header_t hdr;
|
|
|
|
connect_t *connect;
|
|
|
|
LPWSTR verb;
|
|
|
|
LPWSTR path;
|
|
|
|
LPWSTR version;
|
|
|
|
LPWSTR raw_headers;
|
|
|
|
netconn_t netconn;
|
2010-02-22 12:27:30 +01:00
|
|
|
int resolve_timeout;
|
2009-07-23 18:11:32 +02:00
|
|
|
int connect_timeout;
|
2009-07-21 22:52:22 +02:00
|
|
|
int send_timeout;
|
|
|
|
int recv_timeout;
|
2008-08-15 14:42:41 +02:00
|
|
|
LPWSTR status_text;
|
|
|
|
DWORD content_length; /* total number of bytes to be read (per chunk) */
|
|
|
|
DWORD content_read; /* bytes read so far */
|
|
|
|
header_t *headers;
|
|
|
|
DWORD num_headers;
|
2011-07-26 09:26:07 +02:00
|
|
|
WCHAR **accept_types;
|
|
|
|
DWORD num_accept_types;
|
2008-08-15 14:42:41 +02:00
|
|
|
} request_t;
|
|
|
|
|
2008-09-07 21:36:40 +02:00
|
|
|
typedef struct _task_header_t task_header_t;
|
|
|
|
|
|
|
|
struct _task_header_t
|
|
|
|
{
|
|
|
|
request_t *request;
|
|
|
|
void (*proc)( task_header_t * );
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
task_header_t hdr;
|
|
|
|
LPWSTR headers;
|
|
|
|
DWORD headers_len;
|
|
|
|
LPVOID optional;
|
|
|
|
DWORD optional_len;
|
|
|
|
DWORD total_len;
|
|
|
|
DWORD_PTR context;
|
|
|
|
} send_request_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
task_header_t hdr;
|
|
|
|
} receive_response_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
task_header_t hdr;
|
|
|
|
LPDWORD available;
|
|
|
|
} query_data_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
task_header_t hdr;
|
|
|
|
LPVOID buffer;
|
|
|
|
DWORD to_read;
|
|
|
|
LPDWORD read;
|
|
|
|
} read_data_t;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
task_header_t hdr;
|
|
|
|
LPCVOID buffer;
|
|
|
|
DWORD to_write;
|
|
|
|
LPDWORD written;
|
|
|
|
} write_data_t;
|
|
|
|
|
2011-04-29 10:08:40 +02:00
|
|
|
object_header_t *addref_object( object_header_t * ) DECLSPEC_HIDDEN;
|
|
|
|
object_header_t *grab_object( HINTERNET ) DECLSPEC_HIDDEN;
|
|
|
|
void release_object( object_header_t * ) DECLSPEC_HIDDEN;
|
|
|
|
HINTERNET alloc_handle( object_header_t * ) DECLSPEC_HIDDEN;
|
|
|
|
BOOL free_handle( HINTERNET ) DECLSPEC_HIDDEN;
|
2008-08-15 14:42:15 +02:00
|
|
|
|
2011-04-29 10:08:40 +02:00
|
|
|
void set_last_error( DWORD ) DECLSPEC_HIDDEN;
|
|
|
|
DWORD get_last_error( void ) DECLSPEC_HIDDEN;
|
|
|
|
void send_callback( object_header_t *, DWORD, LPVOID, DWORD ) DECLSPEC_HIDDEN;
|
|
|
|
void close_connection( request_t * ) DECLSPEC_HIDDEN;
|
2008-08-15 14:43:07 +02:00
|
|
|
|
2011-04-29 10:08:40 +02:00
|
|
|
BOOL netconn_close( netconn_t * ) DECLSPEC_HIDDEN;
|
|
|
|
BOOL netconn_connect( netconn_t *, const struct sockaddr *, unsigned int, int ) DECLSPEC_HIDDEN;
|
|
|
|
BOOL netconn_connected( netconn_t * ) DECLSPEC_HIDDEN;
|
|
|
|
BOOL netconn_create( netconn_t *, int, int, int ) DECLSPEC_HIDDEN;
|
|
|
|
BOOL netconn_get_next_line( netconn_t *, char *, DWORD * ) DECLSPEC_HIDDEN;
|
|
|
|
BOOL netconn_init( netconn_t *, BOOL ) DECLSPEC_HIDDEN;
|
|
|
|
void netconn_unload( void ) DECLSPEC_HIDDEN;
|
|
|
|
BOOL netconn_query_data_available( netconn_t *, DWORD * ) DECLSPEC_HIDDEN;
|
|
|
|
BOOL netconn_recv( netconn_t *, void *, size_t, int, int * ) DECLSPEC_HIDDEN;
|
|
|
|
BOOL netconn_resolve( WCHAR *, INTERNET_PORT, struct sockaddr *, socklen_t *, int ) DECLSPEC_HIDDEN;
|
|
|
|
BOOL netconn_secure_connect( netconn_t *, WCHAR * ) DECLSPEC_HIDDEN;
|
|
|
|
BOOL netconn_send( netconn_t *, const void *, size_t, int, int * ) DECLSPEC_HIDDEN;
|
|
|
|
DWORD netconn_set_timeout( netconn_t *, BOOL, int ) DECLSPEC_HIDDEN;
|
|
|
|
const void *netconn_get_certificate( netconn_t * ) DECLSPEC_HIDDEN;
|
|
|
|
int netconn_get_cipher_strength( netconn_t * ) DECLSPEC_HIDDEN;
|
2008-08-26 11:03:19 +02:00
|
|
|
|
2011-04-29 10:08:40 +02:00
|
|
|
BOOL set_cookies( request_t *, const WCHAR * ) DECLSPEC_HIDDEN;
|
|
|
|
BOOL add_cookie_headers( request_t * ) DECLSPEC_HIDDEN;
|
|
|
|
BOOL add_request_headers( request_t *, LPCWSTR, DWORD, DWORD ) DECLSPEC_HIDDEN;
|
|
|
|
void delete_domain( domain_t * ) DECLSPEC_HIDDEN;
|
|
|
|
BOOL set_server_for_hostname( connect_t *connect, LPCWSTR server, INTERNET_PORT port ) DECLSPEC_HIDDEN;
|
2008-09-16 12:31:35 +02:00
|
|
|
|
2011-07-08 16:46:14 +02:00
|
|
|
extern HRESULT WinHttpRequest_create( IUnknown *, void ** ) DECLSPEC_HIDDEN;
|
|
|
|
|
2011-07-21 11:50:45 +02:00
|
|
|
static inline const char *debugstr_variant( const VARIANT *v )
|
|
|
|
{
|
|
|
|
if (!v) return "(null)";
|
|
|
|
switch (V_VT(v))
|
|
|
|
{
|
|
|
|
case VT_EMPTY:
|
|
|
|
return "{VT_EMPTY}";
|
|
|
|
case VT_NULL:
|
|
|
|
return "{VT_NULL}";
|
|
|
|
case VT_I4:
|
|
|
|
return wine_dbg_sprintf( "{VT_I4: %d}", V_I4(v) );
|
|
|
|
case VT_R8:
|
|
|
|
return wine_dbg_sprintf( "{VT_R8: %lf}", V_R8(v) );
|
|
|
|
case VT_BSTR:
|
|
|
|
return wine_dbg_sprintf( "{VT_BSTR: %s}", debugstr_w(V_BSTR(v)) );
|
|
|
|
case VT_DISPATCH:
|
|
|
|
return wine_dbg_sprintf( "{VT_DISPATCH: %p}", V_DISPATCH(v) );
|
|
|
|
case VT_BOOL:
|
|
|
|
return wine_dbg_sprintf( "{VT_BOOL: %x}", V_BOOL(v) );
|
|
|
|
case VT_UNKNOWN:
|
|
|
|
return wine_dbg_sprintf( "{VT_UNKNOWN: %p}", V_UNKNOWN(v) );
|
|
|
|
case VT_UINT:
|
|
|
|
return wine_dbg_sprintf( "{VT_UINT: %u}", V_UINT(v) );
|
|
|
|
case VT_BSTR|VT_BYREF:
|
|
|
|
return wine_dbg_sprintf( "{VT_BSTR|VT_BYREF: ptr %p, data %s}",
|
|
|
|
V_BSTRREF(v), V_BSTRREF(v) ? debugstr_w( *V_BSTRREF(v) ) : NULL );
|
|
|
|
default:
|
|
|
|
return wine_dbg_sprintf( "{vt %d}", V_VT(v) );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-15 14:41:36 +02:00
|
|
|
static inline void *heap_alloc( SIZE_T size )
|
|
|
|
{
|
|
|
|
return HeapAlloc( GetProcessHeap(), 0, size );
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *heap_alloc_zero( SIZE_T size )
|
|
|
|
{
|
|
|
|
return HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, size );
|
|
|
|
}
|
|
|
|
|
2008-08-20 11:35:39 +02:00
|
|
|
static inline void *heap_realloc( LPVOID mem, SIZE_T size )
|
|
|
|
{
|
|
|
|
return HeapReAlloc( GetProcessHeap(), 0, mem, size );
|
|
|
|
}
|
|
|
|
|
2008-08-15 14:41:36 +02:00
|
|
|
static inline void *heap_realloc_zero( LPVOID mem, SIZE_T size )
|
|
|
|
{
|
|
|
|
return HeapReAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, mem, size );
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline BOOL heap_free( LPVOID mem )
|
|
|
|
{
|
|
|
|
return HeapFree( GetProcessHeap(), 0, mem );
|
|
|
|
}
|
|
|
|
|
2008-08-15 14:42:15 +02:00
|
|
|
static inline WCHAR *strdupW( const WCHAR *src )
|
|
|
|
{
|
|
|
|
WCHAR *dst;
|
|
|
|
|
|
|
|
if (!src) return NULL;
|
|
|
|
dst = heap_alloc( (strlenW( src ) + 1) * sizeof(WCHAR) );
|
|
|
|
if (dst) strcpyW( dst, src );
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
2008-08-26 11:03:40 +02:00
|
|
|
static inline WCHAR *strdupAW( const char *src )
|
|
|
|
{
|
|
|
|
WCHAR *dst = NULL;
|
|
|
|
if (src)
|
|
|
|
{
|
|
|
|
DWORD len = MultiByteToWideChar( CP_ACP, 0, src, -1, NULL, 0 );
|
|
|
|
if ((dst = heap_alloc( len * sizeof(WCHAR) )))
|
|
|
|
MultiByteToWideChar( CP_ACP, 0, src, -1, dst, len );
|
|
|
|
}
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
2008-08-26 11:03:19 +02:00
|
|
|
static inline char *strdupWA( const WCHAR *src )
|
|
|
|
{
|
|
|
|
char *dst = NULL;
|
|
|
|
if (src)
|
|
|
|
{
|
|
|
|
int len = WideCharToMultiByte( CP_ACP, 0, src, -1, NULL, 0, NULL, NULL );
|
|
|
|
if ((dst = heap_alloc( len )))
|
|
|
|
WideCharToMultiByte( CP_ACP, 0, src, -1, dst, len, NULL, NULL );
|
|
|
|
}
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
2008-08-15 14:41:36 +02:00
|
|
|
#endif /* _WINE_WINHTTP_PRIVATE_H_ */
|