2 * Copyright 2007 Misha Koshelev
3 * Copyright 2009 Jacek Caban for CodeWeavers
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"
22 #include "wine/debug.h"
24 WINE_DEFAULT_DEBUG_CHANNEL(urlmon
);
26 static inline HRESULT
report_progress(Protocol
*protocol
, ULONG status_code
, LPCWSTR status_text
)
28 return IInternetProtocolSink_ReportProgress(protocol
->protocol_sink
, status_code
, status_text
);
31 static inline HRESULT
report_result(Protocol
*protocol
, HRESULT hres
)
33 if (!(protocol
->flags
& FLAG_RESULT_REPORTED
) && protocol
->protocol_sink
) {
34 protocol
->flags
|= FLAG_RESULT_REPORTED
;
35 IInternetProtocolSink_ReportResult(protocol
->protocol_sink
, hres
, 0, NULL
);
41 static void report_data(Protocol
*protocol
)
45 if((protocol
->flags
& FLAG_LAST_DATA_REPORTED
) || !protocol
->protocol_sink
)
48 if(protocol
->flags
& FLAG_FIRST_DATA_REPORTED
) {
49 bscf
= BSCF_INTERMEDIATEDATANOTIFICATION
;
51 protocol
->flags
|= FLAG_FIRST_DATA_REPORTED
;
52 bscf
= BSCF_FIRSTDATANOTIFICATION
;
55 if(protocol
->flags
& FLAG_ALL_DATA_READ
&& !(protocol
->flags
& FLAG_LAST_DATA_REPORTED
)) {
56 protocol
->flags
|= FLAG_LAST_DATA_REPORTED
;
57 bscf
|= BSCF_LASTDATANOTIFICATION
;
60 IInternetProtocolSink_ReportData(protocol
->protocol_sink
, bscf
,
61 protocol
->current_position
+protocol
->available_bytes
,
62 protocol
->content_length
);
65 static void all_data_read(Protocol
*protocol
)
67 protocol
->flags
|= FLAG_ALL_DATA_READ
;
69 report_data(protocol
);
70 report_result(protocol
, S_OK
);
73 static void request_complete(Protocol
*protocol
, INTERNET_ASYNC_RESULT
*ar
)
77 TRACE("(%p)->(%p)\n", protocol
, ar
);
79 /* PROTOCOLDATA same as native */
80 memset(&data
, 0, sizeof(data
));
81 data
.dwState
= 0xf1000000;
84 protocol
->flags
|= FLAG_REQUEST_COMPLETE
;
86 if(!protocol
->request
) {
87 TRACE("setting request handle %p\n", (HINTERNET
)ar
->dwResult
);
88 protocol
->request
= (HINTERNET
)ar
->dwResult
;
91 if(protocol
->flags
& FLAG_FIRST_CONTINUE_COMPLETE
)
92 data
.pData
= UlongToPtr(BINDSTATUS_ENDDOWNLOADCOMPONENTS
);
94 data
.pData
= UlongToPtr(BINDSTATUS_DOWNLOADINGDATA
);
97 protocol
->flags
|= FLAG_ERROR
;
98 data
.pData
= UlongToPtr(ar
->dwError
);
101 if (protocol
->bindf
& BINDF_FROMURLMON
)
102 IInternetProtocolSink_Switch(protocol
->protocol_sink
, &data
);
104 protocol_continue(protocol
, &data
);
107 static void WINAPI
internet_status_callback(HINTERNET internet
, DWORD_PTR context
,
108 DWORD internet_status
, LPVOID status_info
, DWORD status_info_len
)
110 Protocol
*protocol
= (Protocol
*)context
;
112 switch(internet_status
) {
113 case INTERNET_STATUS_RESOLVING_NAME
:
114 TRACE("%p INTERNET_STATUS_RESOLVING_NAME\n", protocol
);
115 report_progress(protocol
, BINDSTATUS_FINDINGRESOURCE
, (LPWSTR
)status_info
);
118 case INTERNET_STATUS_CONNECTING_TO_SERVER
:
119 TRACE("%p INTERNET_STATUS_CONNECTING_TO_SERVER\n", protocol
);
120 report_progress(protocol
, BINDSTATUS_CONNECTING
, (LPWSTR
)status_info
);
123 case INTERNET_STATUS_SENDING_REQUEST
:
124 TRACE("%p INTERNET_STATUS_SENDING_REQUEST\n", protocol
);
125 report_progress(protocol
, BINDSTATUS_SENDINGREQUEST
, (LPWSTR
)status_info
);
128 case INTERNET_STATUS_REDIRECT
:
129 TRACE("%p INTERNET_STATUS_REDIRECT\n", protocol
);
130 report_progress(protocol
, BINDSTATUS_REDIRECTING
, (LPWSTR
)status_info
);
133 case INTERNET_STATUS_REQUEST_COMPLETE
:
134 request_complete(protocol
, status_info
);
137 case INTERNET_STATUS_HANDLE_CREATED
:
138 TRACE("%p INTERNET_STATUS_HANDLE_CREATED\n", protocol
);
139 IInternetProtocol_AddRef(protocol
->protocol
);
142 case INTERNET_STATUS_HANDLE_CLOSING
:
143 TRACE("%p INTERNET_STATUS_HANDLE_CLOSING\n", protocol
);
145 if(*(HINTERNET
*)status_info
== protocol
->request
) {
146 protocol
->request
= NULL
;
147 if(protocol
->protocol_sink
) {
148 IInternetProtocolSink_Release(protocol
->protocol_sink
);
149 protocol
->protocol_sink
= NULL
;
152 if(protocol
->bind_info
.cbSize
) {
153 ReleaseBindInfo(&protocol
->bind_info
);
154 memset(&protocol
->bind_info
, 0, sizeof(protocol
->bind_info
));
156 }else if(*(HINTERNET
*)status_info
== protocol
->connection
) {
157 protocol
->connection
= NULL
;
160 IInternetProtocol_Release(protocol
->protocol
);
164 WARN("Unhandled Internet status callback %d\n", internet_status
);
168 static HRESULT
write_post_stream(Protocol
*protocol
)
176 protocol
->flags
&= ~FLAG_REQUEST_COMPLETE
;
180 hres
= IStream_Read(protocol
->post_stream
, buf
, sizeof(buf
), &size
);
181 if(FAILED(hres
) || !size
)
183 res
= InternetWriteFile(protocol
->request
, buf
, size
, &written
);
185 FIXME("InternetWriteFile failed: %u\n", GetLastError());
191 if(SUCCEEDED(hres
)) {
192 IStream_Release(protocol
->post_stream
);
193 protocol
->post_stream
= NULL
;
195 hres
= protocol
->vtbl
->end_request(protocol
);
199 return report_result(protocol
, hres
);
204 static HINTERNET
create_internet_session(IInternetBindInfo
*bind_info
)
206 LPWSTR global_user_agent
= NULL
;
207 LPOLESTR user_agent
= NULL
;
212 hres
= IInternetBindInfo_GetBindString(bind_info
, BINDSTRING_USER_AGENT
, &user_agent
, 1, &size
);
213 if(hres
!= S_OK
|| !size
)
214 global_user_agent
= get_useragent();
216 ret
= InternetOpenW(user_agent
? user_agent
: global_user_agent
, 0, NULL
, NULL
, INTERNET_FLAG_ASYNC
);
217 heap_free(global_user_agent
);
218 CoTaskMemFree(user_agent
);
220 WARN("InternetOpen failed: %d\n", GetLastError());
224 InternetSetStatusCallbackW(ret
, internet_status_callback
);
228 static HINTERNET internet_session
;
230 HINTERNET
get_internet_session(IInternetBindInfo
*bind_info
)
232 HINTERNET new_session
;
235 return internet_session
;
240 new_session
= create_internet_session(bind_info
);
241 if(new_session
&& InterlockedCompareExchangePointer((void**)&internet_session
, new_session
, NULL
))
242 InternetCloseHandle(new_session
);
244 return internet_session
;
247 HRESULT
protocol_start(Protocol
*protocol
, IInternetProtocol
*prot
, IUri
*uri
,
248 IInternetProtocolSink
*protocol_sink
, IInternetBindInfo
*bind_info
)
253 protocol
->protocol
= prot
;
255 IInternetProtocolSink_AddRef(protocol_sink
);
256 protocol
->protocol_sink
= protocol_sink
;
258 memset(&protocol
->bind_info
, 0, sizeof(protocol
->bind_info
));
259 protocol
->bind_info
.cbSize
= sizeof(BINDINFO
);
260 hres
= IInternetBindInfo_GetBindInfo(bind_info
, &protocol
->bindf
, &protocol
->bind_info
);
262 WARN("GetBindInfo failed: %08x\n", hres
);
263 return report_result(protocol
, hres
);
266 if(!(protocol
->bindf
& BINDF_FROMURLMON
))
267 report_progress(protocol
, BINDSTATUS_DIRECTBIND
, NULL
);
269 if(!get_internet_session(bind_info
))
270 return report_result(protocol
, INET_E_NO_SESSION
);
272 request_flags
= INTERNET_FLAG_KEEP_CONNECTION
;
273 if(protocol
->bindf
& BINDF_NOWRITECACHE
)
274 request_flags
|= INTERNET_FLAG_NO_CACHE_WRITE
;
275 if(protocol
->bindf
& BINDF_NEEDFILE
)
276 request_flags
|= INTERNET_FLAG_NEED_FILE
;
278 hres
= protocol
->vtbl
->open_request(protocol
, uri
, request_flags
, internet_session
, bind_info
);
280 protocol_close_connection(protocol
);
281 return report_result(protocol
, hres
);
287 HRESULT
protocol_continue(Protocol
*protocol
, PROTOCOLDATA
*data
)
293 WARN("Expected pProtocolData to be non-NULL\n");
297 is_start
= data
->pData
== UlongToPtr(BINDSTATUS_DOWNLOADINGDATA
);
299 if(!protocol
->request
) {
300 WARN("Expected request to be non-NULL\n");
304 if(!protocol
->protocol_sink
) {
305 WARN("Expected IInternetProtocolSink pointer to be non-NULL\n");
309 if(protocol
->flags
& FLAG_ERROR
) {
310 protocol
->flags
&= ~FLAG_ERROR
;
311 protocol
->vtbl
->on_error(protocol
, PtrToUlong(data
->pData
));
315 if(protocol
->post_stream
)
316 return write_post_stream(protocol
);
319 hres
= protocol
->vtbl
->start_downloading(protocol
);
321 protocol_close_connection(protocol
);
322 report_result(protocol
, hres
);
326 if(protocol
->bindf
& BINDF_NEEDFILE
) {
327 WCHAR cache_file
[MAX_PATH
];
328 DWORD buflen
= sizeof(cache_file
);
330 if(InternetQueryOptionW(protocol
->request
, INTERNET_OPTION_DATAFILE_NAME
,
331 cache_file
, &buflen
)) {
332 report_progress(protocol
, BINDSTATUS_CACHEFILENAMEAVAILABLE
, cache_file
);
334 FIXME("Could not get cache file\n");
338 protocol
->flags
|= FLAG_FIRST_CONTINUE_COMPLETE
;
341 if(data
->pData
>= UlongToPtr(BINDSTATUS_DOWNLOADINGDATA
) && !protocol
->available_bytes
) {
344 /* InternetQueryDataAvailable may immediately fork and perform its asynchronous
345 * read, so clear the flag _before_ calling so it does not incorrectly get cleared
346 * after the status callback is called */
347 protocol
->flags
&= ~FLAG_REQUEST_COMPLETE
;
348 res
= InternetQueryDataAvailable(protocol
->request
, &protocol
->available_bytes
, 0, 0);
350 if(!protocol
->available_bytes
) {
352 TRACE("empty file\n");
353 all_data_read(protocol
);
355 WARN("unexpected end of file?\n");
356 report_result(protocol
, INET_E_DOWNLOAD_FAILURE
);
360 protocol
->flags
|= FLAG_REQUEST_COMPLETE
;
361 report_data(protocol
);
362 }else if(GetLastError() != ERROR_IO_PENDING
) {
363 protocol
->flags
|= FLAG_REQUEST_COMPLETE
;
364 WARN("InternetQueryDataAvailable failed: %d\n", GetLastError());
365 report_result(protocol
, INET_E_DATA_NOT_AVAILABLE
);
372 HRESULT
protocol_read(Protocol
*protocol
, void *buf
, ULONG size
, ULONG
*read_ret
)
376 HRESULT hres
= S_FALSE
;
378 if(protocol
->flags
& FLAG_ALL_DATA_READ
) {
383 if(!(protocol
->flags
& FLAG_REQUEST_COMPLETE
) || !protocol
->available_bytes
) {
388 while(read
< size
&& protocol
->available_bytes
) {
391 res
= InternetReadFile(protocol
->request
, ((BYTE
*)buf
)+read
,
392 protocol
->available_bytes
> size
-read
? size
-read
: protocol
->available_bytes
, &len
);
394 WARN("InternetReadFile failed: %d\n", GetLastError());
395 hres
= INET_E_DOWNLOAD_FAILURE
;
396 report_result(protocol
, hres
);
401 all_data_read(protocol
);
406 protocol
->current_position
+= len
;
407 protocol
->available_bytes
-= len
;
409 if(!protocol
->available_bytes
) {
410 /* InternetQueryDataAvailable may immediately fork and perform its asynchronous
411 * read, so clear the flag _before_ calling so it does not incorrectly get cleared
412 * after the status callback is called */
413 protocol
->flags
&= ~FLAG_REQUEST_COMPLETE
;
414 res
= InternetQueryDataAvailable(protocol
->request
, &protocol
->available_bytes
, 0, 0);
416 if (GetLastError() == ERROR_IO_PENDING
) {
419 WARN("InternetQueryDataAvailable failed: %d\n", GetLastError());
420 hres
= INET_E_DATA_NOT_AVAILABLE
;
421 report_result(protocol
, hres
);
426 if(!protocol
->available_bytes
) {
427 all_data_read(protocol
);
435 if (hres
!= E_PENDING
)
436 protocol
->flags
|= FLAG_REQUEST_COMPLETE
;
440 return read
? S_OK
: S_FALSE
;
443 HRESULT
protocol_lock_request(Protocol
*protocol
)
445 if (!InternetLockRequestFile(protocol
->request
, &protocol
->lock
))
446 WARN("InternetLockRequest failed: %d\n", GetLastError());
451 HRESULT
protocol_unlock_request(Protocol
*protocol
)
456 if(!InternetUnlockRequestFile(protocol
->lock
))
457 WARN("InternetUnlockRequest failed: %d\n", GetLastError());
463 HRESULT
protocol_abort(Protocol
*protocol
, HRESULT reason
)
465 if(!protocol
->protocol_sink
)
468 if(protocol
->flags
& FLAG_RESULT_REPORTED
)
469 return INET_E_RESULT_DISPATCHED
;
471 report_result(protocol
, reason
);
475 void protocol_close_connection(Protocol
*protocol
)
477 protocol
->vtbl
->close_connection(protocol
);
479 if(protocol
->request
)
480 InternetCloseHandle(protocol
->request
);
482 if(protocol
->connection
)
483 InternetCloseHandle(protocol
->connection
);
485 if(protocol
->post_stream
) {
486 IStream_Release(protocol
->post_stream
);
487 protocol
->post_stream
= NULL
;