2 * Copyright 2005 Jacek Caban
3 * Copyright 2007 Misha Koshelev
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include "urlmon_main.h"
23 #define NO_SHLWAPI_REG
26 #include "wine/debug.h"
28 WINE_DEFAULT_DEBUG_CHANNEL(urlmon);
33 IInternetProtocolEx IInternetProtocolEx_iface;
34 IInternetPriority IInternetPriority_iface;
35 IWinInetHttpInfo IWinInetHttpInfo_iface;
38 IHttpNegotiate *http_negotiate;
44 static inline HttpProtocol *impl_from_IInternetProtocolEx(IInternetProtocolEx *iface)
46 return CONTAINING_RECORD(iface, HttpProtocol, IInternetProtocolEx_iface);
49 static inline HttpProtocol *impl_from_IInternetPriority(IInternetPriority *iface)
51 return CONTAINING_RECORD(iface, HttpProtocol, IInternetPriority_iface);
54 static inline HttpProtocol *impl_from_IWinInetHttpInfo(IWinInetHttpInfo *iface)
56 return CONTAINING_RECORD(iface, HttpProtocol, IWinInetHttpInfo_iface);
59 static const WCHAR default_headersW[] = {
60 'A','c','c','e','p','t','-','E','n','c','o','d','i','n','g',':',' ','g','z','i','p',',',' ','d','e','f','l','a','t','e',0};
62 static LPWSTR query_http_info(HttpProtocol *This, DWORD option)
68 res = HttpQueryInfoW(This->base.request, option, NULL, &len, NULL);
69 if (!res && GetLastError() == ERROR_INSUFFICIENT_BUFFER) {
70 ret = heap_alloc(len);
71 res = HttpQueryInfoW(This->base.request, option, ret, &len, NULL);
74 TRACE("HttpQueryInfoW(%d) failed: %08x\n", option, GetLastError());
82 static inline BOOL set_security_flag(HttpProtocol *This, DWORD new_flag)
84 DWORD flags, size = sizeof(flags);
87 res = InternetQueryOptionW(This->base.request, INTERNET_OPTION_SECURITY_FLAGS, &flags, &size);
90 res = InternetSetOptionW(This->base.request, INTERNET_OPTION_SECURITY_FLAGS, &flags, size);
93 ERR("Failed to set security flag(s): %x\n", new_flag);
98 static inline HRESULT internet_error_to_hres(DWORD error)
102 case ERROR_INTERNET_SEC_CERT_DATE_INVALID:
103 case ERROR_INTERNET_SEC_CERT_CN_INVALID:
104 case ERROR_INTERNET_INVALID_CA:
105 case ERROR_INTERNET_CLIENT_AUTH_CERT_NEEDED:
106 return INET_E_INVALID_CERTIFICATE;
107 case ERROR_INTERNET_HTTP_TO_HTTPS_ON_REDIR:
108 case ERROR_INTERNET_HTTPS_TO_HTTP_ON_REDIR:
109 case ERROR_HTTP_REDIRECT_NEEDS_CONFIRMATION:
110 return INET_E_REDIRECT_FAILED;
112 return INET_E_DOWNLOAD_FAILURE;
116 static HRESULT handle_http_error(HttpProtocol *This, DWORD error)
118 IServiceProvider *serv_prov;
119 IWindowForBindingUI *wfb_ui;
120 IHttpSecurity *http_security;
121 BOOL security_problem;
128 case ERROR_INTERNET_SEC_CERT_DATE_INVALID:
129 case ERROR_INTERNET_SEC_CERT_CN_INVALID:
130 case ERROR_INTERNET_HTTP_TO_HTTPS_ON_REDIR:
131 case ERROR_INTERNET_HTTPS_TO_HTTP_ON_REDIR:
132 case ERROR_HTTP_REDIRECT_NEEDS_CONFIRMATION:
133 case ERROR_INTERNET_INVALID_CA:
134 case ERROR_INTERNET_CLIENT_AUTH_CERT_NEEDED:
135 security_problem = TRUE;
138 security_problem = FALSE;
141 hres = IInternetProtocolSink_QueryInterface(This->base.protocol_sink, &IID_IServiceProvider,
144 ERR("Failed to get IServiceProvider.\n");
148 if(security_problem) {
149 hres = IServiceProvider_QueryService(serv_prov, &IID_IHttpSecurity, &IID_IHttpSecurity,
150 (void**)&http_security);
151 if(SUCCEEDED(hres)) {
152 hres = IHttpSecurity_OnSecurityProblem(http_security, error);
153 IHttpSecurity_Release(http_security);
159 IServiceProvider_Release(serv_prov);
162 if(error == ERROR_INTERNET_SEC_CERT_DATE_INVALID)
163 res = set_security_flag(This, SECURITY_FLAG_IGNORE_CERT_DATE_INVALID);
164 else if(error == ERROR_INTERNET_SEC_CERT_CN_INVALID)
165 res = set_security_flag(This, SECURITY_FLAG_IGNORE_CERT_CN_INVALID);
166 else if(error == ERROR_INTERNET_INVALID_CA)
167 res = set_security_flag(This, SECURITY_FLAG_IGNORE_UNKNOWN_CA);
172 FIXME("Don't know how to ignore error %d\n", error);
178 if(hres == RPC_E_RETRY)
181 return internet_error_to_hres(error);
186 hres = IServiceProvider_QueryService(serv_prov, &IID_IWindowForBindingUI, &IID_IWindowForBindingUI,
188 if(SUCCEEDED(hres)) {
189 const IID *iid_reason;
192 iid_reason = &IID_IHttpSecurity;
193 else if(error == ERROR_INTERNET_INCORRECT_PASSWORD)
194 iid_reason = &IID_IAuthenticate;
196 iid_reason = &IID_IWindowForBindingUI;
198 hres = IWindowForBindingUI_GetWindow(wfb_ui, iid_reason, &hwnd);
199 IWindowForBindingUI_Release(wfb_ui);
204 IServiceProvider_Release(serv_prov);
206 dlg_flags = FLAGS_ERROR_UI_FLAGS_CHANGE_OPTIONS | FLAGS_ERROR_UI_FLAGS_GENERATE_DATA;
207 if(This->base.bindf & BINDF_NO_UI)
208 dlg_flags |= FLAGS_ERROR_UI_FLAGS_NO_UI;
210 res = InternetErrorDlg(hwnd, This->base.request, error, dlg_flags, NULL);
211 if(res == ERROR_INTERNET_FORCE_RETRY || res == ERROR_SUCCESS)
214 return internet_error_to_hres(error);
217 static ULONG send_http_request(HttpProtocol *This)
219 INTERNET_BUFFERSW send_buffer = {sizeof(INTERNET_BUFFERSW)};
222 send_buffer.lpcszHeader = This->full_header;
223 send_buffer.dwHeadersLength = send_buffer.dwHeadersTotal = strlenW(This->full_header);
225 if(This->base.bind_info.dwBindVerb != BINDVERB_GET) {
226 switch(This->base.bind_info.stgmedData.tymed) {
228 /* Native does not use GlobalLock/GlobalUnlock, so we won't either */
229 send_buffer.lpvBuffer = This->base.bind_info.stgmedData.u.hGlobal;
230 send_buffer.dwBufferLength = send_buffer.dwBufferTotal = This->base.bind_info.cbstgmedData;
232 case TYMED_ISTREAM: {
233 LARGE_INTEGER offset;
235 send_buffer.dwBufferTotal = This->base.bind_info.cbstgmedData;
236 if(!This->base.post_stream) {
237 This->base.post_stream = This->base.bind_info.stgmedData.u.pstm;
238 IStream_AddRef(This->base.post_stream);
242 IStream_Seek(This->base.post_stream, offset, STREAM_SEEK_SET, NULL);
246 FIXME("Unsupported This->base.bind_info.stgmedData.tymed %d\n", This->base.bind_info.stgmedData.tymed);
250 if(This->base.post_stream)
251 res = HttpSendRequestExW(This->base.request, &send_buffer, NULL, 0, 0);
253 res = HttpSendRequestW(This->base.request, send_buffer.lpcszHeader, send_buffer.dwHeadersLength,
254 send_buffer.lpvBuffer, send_buffer.dwBufferLength);
256 return res ? 0 : GetLastError();
259 static inline HttpProtocol *impl_from_Protocol(Protocol *prot)
261 return CONTAINING_RECORD(prot, HttpProtocol, base);
264 static HRESULT HttpProtocol_open_request(Protocol *prot, IUri *uri, DWORD request_flags,
265 HINTERNET internet_session, IInternetBindInfo *bind_info)
267 HttpProtocol *This = impl_from_Protocol(prot);
268 LPWSTR addl_header = NULL, post_cookie = NULL;
269 IServiceProvider *service_provider = NULL;
270 IHttpNegotiate2 *http_negotiate2 = NULL;
271 BSTR url, host, user, pass, path;
272 LPOLESTR accept_mimes[257];
273 const WCHAR **accept_types;
274 BYTE security_id[512];
275 DWORD len, port, flags;
280 static const WCHAR wszBindVerb[BINDVERB_CUSTOM][5] =
285 hres = IUri_GetPort(uri, &port);
289 hres = IUri_GetHost(uri, &host);
293 hres = IUri_GetUserName(uri, &user);
294 if(SUCCEEDED(hres)) {
295 hres = IUri_GetPassword(uri, &pass);
297 if(SUCCEEDED(hres)) {
298 This->base.connection = InternetConnectW(internet_session, host, port, user, pass,
299 INTERNET_SERVICE_HTTP, This->https ? INTERNET_FLAG_SECURE : 0, (DWORD_PTR)&This->base);
307 if(!This->base.connection) {
308 WARN("InternetConnect failed: %d\n", GetLastError());
309 return INET_E_CANNOT_CONNECT;
312 num = sizeof(accept_mimes)/sizeof(accept_mimes[0])-1;
313 hres = IInternetBindInfo_GetBindString(bind_info, BINDSTRING_ACCEPT_MIMES, accept_mimes, num, &num);
314 if(hres == INET_E_USE_DEFAULT_SETTING) {
315 static const WCHAR default_accept_mimeW[] = {'*','/','*',0};
316 static const WCHAR *default_accept_mimes[] = {default_accept_mimeW, NULL};
318 accept_types = default_accept_mimes;
320 }else if(hres == S_OK) {
321 accept_types = (const WCHAR**)accept_mimes;
323 WARN("GetBindString BINDSTRING_ACCEPT_MIMES failed: %08x\n", hres);
324 return INET_E_NO_VALID_MEDIA;
326 accept_mimes[num] = 0;
329 request_flags |= INTERNET_FLAG_SECURE;
331 hres = IUri_GetPathAndQuery(uri, &path);
332 if(SUCCEEDED(hres)) {
333 This->base.request = HttpOpenRequestW(This->base.connection,
334 This->base.bind_info.dwBindVerb < BINDVERB_CUSTOM
335 ? wszBindVerb[This->base.bind_info.dwBindVerb] : This->base.bind_info.szCustomVerb,
336 path, NULL, NULL, accept_types, request_flags, (DWORD_PTR)&This->base);
340 CoTaskMemFree(accept_mimes[num]);
343 if (!This->base.request) {
344 WARN("HttpOpenRequest failed: %d\n", GetLastError());
345 return INET_E_RESOURCE_NOT_FOUND;
348 hres = IInternetProtocolSink_QueryInterface(This->base.protocol_sink, &IID_IServiceProvider,
349 (void **)&service_provider);
351 WARN("IInternetProtocolSink_QueryInterface IID_IServiceProvider failed: %08x\n", hres);
355 hres = IServiceProvider_QueryService(service_provider, &IID_IHttpNegotiate,
356 &IID_IHttpNegotiate, (void **)&This->http_negotiate);
358 WARN("IServiceProvider_QueryService IID_IHttpNegotiate failed: %08x\n", hres);
359 IServiceProvider_Release(service_provider);
363 hres = IUri_GetAbsoluteUri(uri, &url);
365 IServiceProvider_Release(service_provider);
369 hres = IHttpNegotiate_BeginningTransaction(This->http_negotiate, url, default_headersW,
373 WARN("IHttpNegotiate_BeginningTransaction failed: %08x\n", hres);
374 IServiceProvider_Release(service_provider);
378 len = addl_header ? strlenW(addl_header) : 0;
380 This->full_header = heap_alloc(len*sizeof(WCHAR)+sizeof(default_headersW));
381 if(!This->full_header) {
382 IServiceProvider_Release(service_provider);
383 return E_OUTOFMEMORY;
387 memcpy(This->full_header, addl_header, len*sizeof(WCHAR));
388 CoTaskMemFree(addl_header);
389 memcpy(This->full_header+len, default_headersW, sizeof(default_headersW));
391 hres = IServiceProvider_QueryService(service_provider, &IID_IHttpNegotiate2,
392 &IID_IHttpNegotiate2, (void **)&http_negotiate2);
393 IServiceProvider_Release(service_provider);
395 WARN("IServiceProvider_QueryService IID_IHttpNegotiate2 failed: %08x\n", hres);
396 /* No goto done as per native */
398 len = sizeof(security_id)/sizeof(security_id[0]);
399 hres = IHttpNegotiate2_GetRootSecurityId(http_negotiate2, security_id, &len, 0);
400 IHttpNegotiate2_Release(http_negotiate2);
402 WARN("IHttpNegotiate2_GetRootSecurityId failed: %08x\n", hres);
405 /* FIXME: Handle security_id. Native calls undocumented function IsHostInProxyBypassList. */
407 if(This->base.bind_info.dwBindVerb == BINDVERB_POST) {
409 hres = IInternetBindInfo_GetBindString(bind_info, BINDSTRING_POST_COOKIE, &post_cookie, 1, &num);
410 if(hres == S_OK && num) {
411 if(!InternetSetOptionW(This->base.request, INTERNET_OPTION_SECONDARY_CACHE_KEY,
412 post_cookie, lstrlenW(post_cookie)))
413 WARN("InternetSetOption INTERNET_OPTION_SECONDARY_CACHE_KEY failed: %d\n", GetLastError());
414 CoTaskMemFree(post_cookie);
418 flags = INTERNET_ERROR_MASK_COMBINED_SEC_CERT;
419 res = InternetSetOptionW(This->base.request, INTERNET_OPTION_ERROR_MASK, &flags, sizeof(flags));
421 WARN("InternetSetOption(INTERNET_OPTION_ERROR_MASK) failed: %u\n", GetLastError());
424 res = InternetSetOptionW(This->base.request, INTERNET_OPTION_HTTP_DECODING, &b, sizeof(b));
426 WARN("InternetSetOption(INTERNET_OPTION_HTTP_DECODING) failed: %u\n", GetLastError());
429 error = send_http_request(This);
431 if(error == ERROR_IO_PENDING || error == ERROR_SUCCESS)
434 hres = handle_http_error(This, error);
436 } while(hres == RPC_E_RETRY);
438 WARN("HttpSendRequest failed: %d\n", error);
442 static HRESULT HttpProtocol_end_request(Protocol *protocol)
446 res = HttpEndRequestW(protocol->request, NULL, 0, 0);
447 if(!res && GetLastError() != ERROR_IO_PENDING) {
448 FIXME("HttpEndRequest failed: %u\n", GetLastError());
455 static HRESULT HttpProtocol_start_downloading(Protocol *prot)
457 HttpProtocol *This = impl_from_Protocol(prot);
458 LPWSTR content_type, content_length, ranges;
459 DWORD len = sizeof(DWORD);
464 static const WCHAR wszDefaultContentType[] =
465 {'t','e','x','t','/','h','t','m','l',0};
467 if(!This->http_negotiate) {
468 WARN("Expected IHttpNegotiate pointer to be non-NULL\n");
472 res = HttpQueryInfoW(This->base.request, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER,
473 &status_code, &len, NULL);
475 LPWSTR response_headers = query_http_info(This, HTTP_QUERY_RAW_HEADERS_CRLF);
476 if(response_headers) {
477 hres = IHttpNegotiate_OnResponse(This->http_negotiate, status_code, response_headers,
479 heap_free(response_headers);
481 WARN("IHttpNegotiate_OnResponse failed: %08x\n", hres);
486 WARN("HttpQueryInfo failed: %d\n", GetLastError());
489 ranges = query_http_info(This, HTTP_QUERY_ACCEPT_RANGES);
491 IInternetProtocolSink_ReportProgress(This->base.protocol_sink, BINDSTATUS_ACCEPTRANGES, NULL);
495 content_type = query_http_info(This, HTTP_QUERY_CONTENT_TYPE);
497 /* remove the charset, if present */
498 LPWSTR p = strchrW(content_type, ';');
501 IInternetProtocolSink_ReportProgress(This->base.protocol_sink,
502 (This->base.bindf & BINDF_FROMURLMON)
503 ? BINDSTATUS_MIMETYPEAVAILABLE : BINDSTATUS_RAWMIMETYPE,
505 heap_free(content_type);
507 WARN("HttpQueryInfo failed: %d\n", GetLastError());
508 IInternetProtocolSink_ReportProgress(This->base.protocol_sink,
509 (This->base.bindf & BINDF_FROMURLMON)
510 ? BINDSTATUS_MIMETYPEAVAILABLE : BINDSTATUS_RAWMIMETYPE,
511 wszDefaultContentType);
514 content_length = query_http_info(This, HTTP_QUERY_CONTENT_LENGTH);
516 This->base.content_length = atoiW(content_length);
517 heap_free(content_length);
523 static void HttpProtocol_close_connection(Protocol *prot)
525 HttpProtocol *This = impl_from_Protocol(prot);
527 if(This->http_negotiate) {
528 IHttpNegotiate_Release(This->http_negotiate);
529 This->http_negotiate = NULL;
532 heap_free(This->full_header);
533 This->full_header = NULL;
536 static void HttpProtocol_on_error(Protocol *prot, DWORD error)
538 HttpProtocol *This = impl_from_Protocol(prot);
541 TRACE("(%p) %d\n", prot, error);
543 if(prot->flags & FLAG_FIRST_CONTINUE_COMPLETE) {
544 FIXME("Not handling error %d\n", error);
548 while((hres = handle_http_error(This, error)) == RPC_E_RETRY) {
549 error = send_http_request(This);
551 if(error == ERROR_IO_PENDING || error == ERROR_SUCCESS)
555 protocol_abort(prot, hres);
556 protocol_close_connection(prot);
560 static const ProtocolVtbl AsyncProtocolVtbl = {
561 HttpProtocol_open_request,
562 HttpProtocol_end_request,
563 HttpProtocol_start_downloading,
564 HttpProtocol_close_connection,
565 HttpProtocol_on_error
568 static HRESULT WINAPI HttpProtocol_QueryInterface(IInternetProtocolEx *iface, REFIID riid, void **ppv)
570 HttpProtocol *This = impl_from_IInternetProtocolEx(iface);
573 if(IsEqualGUID(&IID_IUnknown, riid)) {
574 TRACE("(%p)->(IID_IUnknown %p)\n", This, ppv);
575 *ppv = &This->IInternetProtocolEx_iface;
576 }else if(IsEqualGUID(&IID_IInternetProtocolRoot, riid)) {
577 TRACE("(%p)->(IID_IInternetProtocolRoot %p)\n", This, ppv);
578 *ppv = &This->IInternetProtocolEx_iface;
579 }else if(IsEqualGUID(&IID_IInternetProtocol, riid)) {
580 TRACE("(%p)->(IID_IInternetProtocol %p)\n", This, ppv);
581 *ppv = &This->IInternetProtocolEx_iface;
582 }else if(IsEqualGUID(&IID_IInternetProtocolEx, riid)) {
583 TRACE("(%p)->(IID_IInternetProtocolEx %p)\n", This, ppv);
584 *ppv = &This->IInternetProtocolEx_iface;
585 }else if(IsEqualGUID(&IID_IInternetPriority, riid)) {
586 TRACE("(%p)->(IID_IInternetPriority %p)\n", This, ppv);
587 *ppv = &This->IInternetPriority_iface;
588 }else if(IsEqualGUID(&IID_IWinInetInfo, riid)) {
589 TRACE("(%p)->(IID_IWinInetInfo %p)\n", This, ppv);
590 *ppv = &This->IWinInetHttpInfo_iface;
591 }else if(IsEqualGUID(&IID_IWinInetHttpInfo, riid)) {
592 TRACE("(%p)->(IID_IWinInetHttpInfo %p)\n", This, ppv);
593 *ppv = &This->IWinInetHttpInfo_iface;
597 IInternetProtocol_AddRef(iface);
601 WARN("not supported interface %s\n", debugstr_guid(riid));
602 return E_NOINTERFACE;
605 static ULONG WINAPI HttpProtocol_AddRef(IInternetProtocolEx *iface)
607 HttpProtocol *This = impl_from_IInternetProtocolEx(iface);
608 LONG ref = InterlockedIncrement(&This->ref);
609 TRACE("(%p) ref=%d\n", This, ref);
613 static ULONG WINAPI HttpProtocol_Release(IInternetProtocolEx *iface)
615 HttpProtocol *This = impl_from_IInternetProtocolEx(iface);
616 LONG ref = InterlockedDecrement(&This->ref);
618 TRACE("(%p) ref=%d\n", This, ref);
621 protocol_close_connection(&This->base);
624 URLMON_UnlockModule();
630 static HRESULT WINAPI HttpProtocol_Start(IInternetProtocolEx *iface, LPCWSTR szUrl,
631 IInternetProtocolSink *pOIProtSink, IInternetBindInfo *pOIBindInfo,
632 DWORD grfPI, HANDLE_PTR dwReserved)
634 HttpProtocol *This = impl_from_IInternetProtocolEx(iface);
638 TRACE("(%p)->(%s %p %p %08x %lx)\n", This, debugstr_w(szUrl), pOIProtSink,
639 pOIBindInfo, grfPI, dwReserved);
641 hres = CreateUri(szUrl, 0, 0, &uri);
645 hres = IInternetProtocolEx_StartEx(&This->IInternetProtocolEx_iface, uri, pOIProtSink,
646 pOIBindInfo, grfPI, (HANDLE*)dwReserved);
652 static HRESULT WINAPI HttpProtocol_Continue(IInternetProtocolEx *iface, PROTOCOLDATA *pProtocolData)
654 HttpProtocol *This = impl_from_IInternetProtocolEx(iface);
656 TRACE("(%p)->(%p)\n", This, pProtocolData);
658 return protocol_continue(&This->base, pProtocolData);
661 static HRESULT WINAPI HttpProtocol_Abort(IInternetProtocolEx *iface, HRESULT hrReason,
664 HttpProtocol *This = impl_from_IInternetProtocolEx(iface);
666 TRACE("(%p)->(%08x %08x)\n", This, hrReason, dwOptions);
668 return protocol_abort(&This->base, hrReason);
671 static HRESULT WINAPI HttpProtocol_Terminate(IInternetProtocolEx *iface, DWORD dwOptions)
673 HttpProtocol *This = impl_from_IInternetProtocolEx(iface);
675 TRACE("(%p)->(%08x)\n", This, dwOptions);
677 protocol_close_connection(&This->base);
681 static HRESULT WINAPI HttpProtocol_Suspend(IInternetProtocolEx *iface)
683 HttpProtocol *This = impl_from_IInternetProtocolEx(iface);
684 FIXME("(%p)\n", This);
688 static HRESULT WINAPI HttpProtocol_Resume(IInternetProtocolEx *iface)
690 HttpProtocol *This = impl_from_IInternetProtocolEx(iface);
691 FIXME("(%p)\n", This);
695 static HRESULT WINAPI HttpProtocol_Read(IInternetProtocolEx *iface, void *pv,
696 ULONG cb, ULONG *pcbRead)
698 HttpProtocol *This = impl_from_IInternetProtocolEx(iface);
700 TRACE("(%p)->(%p %u %p)\n", This, pv, cb, pcbRead);
702 return protocol_read(&This->base, pv, cb, pcbRead);
705 static HRESULT WINAPI HttpProtocol_Seek(IInternetProtocolEx *iface, LARGE_INTEGER dlibMove,
706 DWORD dwOrigin, ULARGE_INTEGER *plibNewPosition)
708 HttpProtocol *This = impl_from_IInternetProtocolEx(iface);
709 FIXME("(%p)->(%d %d %p)\n", This, dlibMove.u.LowPart, dwOrigin, plibNewPosition);
713 static HRESULT WINAPI HttpProtocol_LockRequest(IInternetProtocolEx *iface, DWORD dwOptions)
715 HttpProtocol *This = impl_from_IInternetProtocolEx(iface);
717 TRACE("(%p)->(%08x)\n", This, dwOptions);
719 return protocol_lock_request(&This->base);
722 static HRESULT WINAPI HttpProtocol_UnlockRequest(IInternetProtocolEx *iface)
724 HttpProtocol *This = impl_from_IInternetProtocolEx(iface);
726 TRACE("(%p)\n", This);
728 return protocol_unlock_request(&This->base);
731 static HRESULT WINAPI HttpProtocol_StartEx(IInternetProtocolEx *iface, IUri *pUri,
732 IInternetProtocolSink *pOIProtSink, IInternetBindInfo *pOIBindInfo,
733 DWORD grfPI, HANDLE *dwReserved)
735 HttpProtocol *This = impl_from_IInternetProtocolEx(iface);
739 TRACE("(%p)->(%p %p %p %08x %p)\n", This, pUri, pOIProtSink,
740 pOIBindInfo, grfPI, dwReserved);
742 hres = IUri_GetScheme(pUri, &scheme);
745 if(scheme != (This->https ? URL_SCHEME_HTTPS : URL_SCHEME_HTTP))
748 return protocol_start(&This->base, (IInternetProtocol*)&This->IInternetProtocolEx_iface, pUri,
749 pOIProtSink, pOIBindInfo);
752 static const IInternetProtocolExVtbl HttpProtocolVtbl = {
753 HttpProtocol_QueryInterface,
755 HttpProtocol_Release,
757 HttpProtocol_Continue,
759 HttpProtocol_Terminate,
760 HttpProtocol_Suspend,
764 HttpProtocol_LockRequest,
765 HttpProtocol_UnlockRequest,
769 static HRESULT WINAPI HttpPriority_QueryInterface(IInternetPriority *iface, REFIID riid, void **ppv)
771 HttpProtocol *This = impl_from_IInternetPriority(iface);
772 return IInternetProtocolEx_QueryInterface(&This->IInternetProtocolEx_iface, riid, ppv);
775 static ULONG WINAPI HttpPriority_AddRef(IInternetPriority *iface)
777 HttpProtocol *This = impl_from_IInternetPriority(iface);
778 return IInternetProtocolEx_AddRef(&This->IInternetProtocolEx_iface);
781 static ULONG WINAPI HttpPriority_Release(IInternetPriority *iface)
783 HttpProtocol *This = impl_from_IInternetPriority(iface);
784 return IInternetProtocolEx_Release(&This->IInternetProtocolEx_iface);
787 static HRESULT WINAPI HttpPriority_SetPriority(IInternetPriority *iface, LONG nPriority)
789 HttpProtocol *This = impl_from_IInternetPriority(iface);
791 TRACE("(%p)->(%d)\n", This, nPriority);
793 This->base.priority = nPriority;
797 static HRESULT WINAPI HttpPriority_GetPriority(IInternetPriority *iface, LONG *pnPriority)
799 HttpProtocol *This = impl_from_IInternetPriority(iface);
801 TRACE("(%p)->(%p)\n", This, pnPriority);
803 *pnPriority = This->base.priority;
807 static const IInternetPriorityVtbl HttpPriorityVtbl = {
808 HttpPriority_QueryInterface,
810 HttpPriority_Release,
811 HttpPriority_SetPriority,
812 HttpPriority_GetPriority
815 static HRESULT WINAPI HttpInfo_QueryInterface(IWinInetHttpInfo *iface, REFIID riid, void **ppv)
817 HttpProtocol *This = impl_from_IWinInetHttpInfo(iface);
818 return IInternetProtocolEx_QueryInterface(&This->IInternetProtocolEx_iface, riid, ppv);
821 static ULONG WINAPI HttpInfo_AddRef(IWinInetHttpInfo *iface)
823 HttpProtocol *This = impl_from_IWinInetHttpInfo(iface);
824 return IInternetProtocolEx_AddRef(&This->IInternetProtocolEx_iface);
827 static ULONG WINAPI HttpInfo_Release(IWinInetHttpInfo *iface)
829 HttpProtocol *This = impl_from_IWinInetHttpInfo(iface);
830 return IInternetProtocolEx_Release(&This->IInternetProtocolEx_iface);
833 static HRESULT WINAPI HttpInfo_QueryOption(IWinInetHttpInfo *iface, DWORD dwOption,
834 void *pBuffer, DWORD *pcbBuffer)
836 HttpProtocol *This = impl_from_IWinInetHttpInfo(iface);
837 TRACE("(%p)->(%x %p %p)\n", This, dwOption, pBuffer, pcbBuffer);
839 if(!This->base.request)
842 if(!InternetQueryOptionW(This->base.request, dwOption, pBuffer, pcbBuffer))
847 static HRESULT WINAPI HttpInfo_QueryInfo(IWinInetHttpInfo *iface, DWORD dwOption,
848 void *pBuffer, DWORD *pcbBuffer, DWORD *pdwFlags, DWORD *pdwReserved)
850 HttpProtocol *This = impl_from_IWinInetHttpInfo(iface);
851 TRACE("(%p)->(%x %p %p %p %p)\n", This, dwOption, pBuffer, pcbBuffer, pdwFlags, pdwReserved);
853 if(!This->base.request)
856 if(!HttpQueryInfoW(This->base.request, dwOption, pBuffer, pcbBuffer, pdwFlags)) {
858 memset(pBuffer, 0, *pcbBuffer);
864 static const IWinInetHttpInfoVtbl WinInetHttpInfoVtbl = {
865 HttpInfo_QueryInterface,
868 HttpInfo_QueryOption,
872 static HRESULT create_http_protocol(BOOL https, void **ppobj)
876 ret = heap_alloc_zero(sizeof(HttpProtocol));
878 return E_OUTOFMEMORY;
880 ret->base.vtbl = &AsyncProtocolVtbl;
881 ret->IInternetProtocolEx_iface.lpVtbl = &HttpProtocolVtbl;
882 ret->IInternetPriority_iface.lpVtbl = &HttpPriorityVtbl;
883 ret->IWinInetHttpInfo_iface.lpVtbl = &WinInetHttpInfoVtbl;
888 *ppobj = &ret->IInternetProtocolEx_iface;
894 HRESULT HttpProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj)
896 TRACE("(%p %p)\n", pUnkOuter, ppobj);
898 return create_http_protocol(FALSE, ppobj);
901 HRESULT HttpSProtocol_Construct(IUnknown *pUnkOuter, LPVOID *ppobj)
903 TRACE("(%p %p)\n", pUnkOuter, ppobj);
905 return create_http_protocol(TRUE, ppobj);