blob: 1c70b86c0192e6b4724f1691c50a6351c5bd5637 [file] [log] [blame]
[email protected]8ee65ba2011-04-12 20:53:231// Copyright (c) 2011 The Chromium Authors. All rights reserved.
[email protected]051236f2010-03-12 22:06:142// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome_frame/urlmon_bind_status_callback.h"
6
[email protected]97965e12010-04-09 00:51:107#include <mshtml.h>
[email protected]fb716b302010-03-26 02:45:208#include <shlguid.h>
9
[email protected]051236f2010-03-12 22:06:1410#include "base/logging.h"
11#include "base/string_util.h"
[email protected]d3451d832010-10-01 11:17:3712#include "base/stringprintf.h"
[email protected]ce072a72010-12-31 20:02:1613#include "base/threading/platform_thread.h"
[email protected]97965e12010-04-09 00:51:1014#include "base/utf_string_conversions.h"
[email protected]70277f62010-04-15 01:39:2615#include "chrome_frame/bind_context_info.h"
[email protected]8ca280e2011-10-19 15:37:3316#include "chrome_frame/chrome_tab.h"
[email protected]e7dd21542010-05-07 21:59:4417#include "chrome_frame/exception_barrier.h"
[email protected]97965e12010-04-09 00:51:1018#include "chrome_frame/urlmon_moniker.h"
[email protected]051236f2010-03-12 22:06:1419
[email protected]051236f2010-03-12 22:06:1420
[email protected]97965e12010-04-09 00:51:1021// A helper to given feed data to the specified |bscb| using
22// CacheStream instance.
23HRESULT CacheStream::BSCBFeedData(IBindStatusCallback* bscb, const char* data,
24 size_t size, CLIPFORMAT clip_format,
[email protected]de5bc352010-04-16 01:38:4825 size_t flags, bool eof) {
[email protected]97965e12010-04-09 00:51:1026 if (!bscb) {
27 NOTREACHED() << "invalid IBindStatusCallback";
28 return E_INVALIDARG;
[email protected]051236f2010-03-12 22:06:1429 }
30
[email protected]97965e12010-04-09 00:51:1031 // We can't use a CComObjectStackEx here since mshtml will hold
32 // onto the stream pointer.
33 CComObject<CacheStream>* cache_stream = NULL;
34 HRESULT hr = CComObject<CacheStream>::CreateInstance(&cache_stream);
[email protected]051236f2010-03-12 22:06:1435 if (FAILED(hr)) {
36 NOTREACHED();
37 return hr;
38 }
39
[email protected]f1917ed2010-05-13 20:21:0840 scoped_refptr<CacheStream> cache_ref = cache_stream;
41 hr = cache_stream->Initialize(data, size, eof);
42 if (FAILED(hr))
43 return hr;
[email protected]051236f2010-03-12 22:06:1444
[email protected]97965e12010-04-09 00:51:1045 FORMATETC format_etc = { clip_format, NULL, DVASPECT_CONTENT, -1,
46 TYMED_ISTREAM };
47 STGMEDIUM medium = {0};
48 medium.tymed = TYMED_ISTREAM;
49 medium.pstm = cache_stream;
50
51 hr = bscb->OnDataAvailable(flags, size, &format_etc, &medium);
[email protected]97965e12010-04-09 00:51:1052 return hr;
[email protected]051236f2010-03-12 22:06:1453}
54
[email protected]f1917ed2010-05-13 20:21:0855HRESULT CacheStream::Initialize(const char* cache, size_t size, bool eof) {
[email protected]97965e12010-04-09 00:51:1056 position_ = 0;
[email protected]de5bc352010-04-16 01:38:4857 eof_ = eof;
[email protected]f1917ed2010-05-13 20:21:0858
59 HRESULT hr = S_OK;
60 cache_.reset(new char[size]);
61 if (cache_.get()) {
62 memcpy(cache_.get(), cache, size);
63 size_ = size;
64 } else {
65 DLOG(ERROR) << "failed to allocate cache stream.";
66 hr = E_OUTOFMEMORY;
67 }
68
69 return hr;
[email protected]051236f2010-03-12 22:06:1470}
71
[email protected]97965e12010-04-09 00:51:1072// Read is the only call that we expect. Return E_PENDING if there
73// is no more data to serve. Otherwise this will result in a
74// read with 0 bytes indicating that no more data is available.
75STDMETHODIMP CacheStream::Read(void* pv, ULONG cb, ULONG* read) {
76 if (!pv || !read)
77 return E_INVALIDARG;
[email protected]051236f2010-03-12 22:06:1478
[email protected]642c15e2010-05-13 20:56:1279 if (!cache_.get()) {
80 *read = 0;
81 return S_FALSE;
82 }
[email protected]f1917ed2010-05-13 20:21:0883
[email protected]97965e12010-04-09 00:51:1084 // Default to E_PENDING to signal that this is a partial data.
[email protected]de5bc352010-04-16 01:38:4885 HRESULT hr = eof_ ? S_FALSE : E_PENDING;
[email protected]97965e12010-04-09 00:51:1086 if (position_ < size_) {
87 *read = std::min(size_ - position_, size_t(cb));
[email protected]f1917ed2010-05-13 20:21:0888 memcpy(pv, cache_ .get() + position_, *read);
[email protected]97965e12010-04-09 00:51:1089 position_ += *read;
90 hr = S_OK;
[email protected]051236f2010-03-12 22:06:1491 }
[email protected]051236f2010-03-12 22:06:1492
93 return hr;
94}
95
[email protected]97965e12010-04-09 00:51:1096
97/////////////////////////////////////////////////////////////////////
98
[email protected]040b800f2010-05-05 23:46:3099HRESULT SniffData::InitializeCache(const std::wstring& url) {
[email protected]97965e12010-04-09 00:51:10100 url_ = url;
101 renderer_type_ = UNDETERMINED;
102
[email protected]040b800f2010-05-05 23:46:30103 const int kInitialSize = 4 * 1024; // 4K
104 HGLOBAL mem = GlobalAlloc(0, kInitialSize);
105 DCHECK(mem) << "GlobalAlloc failed: " << GetLastError();
106
107 HRESULT hr = CreateStreamOnHGlobal(mem, TRUE, cache_.Receive());
[email protected]b31b9ff2010-05-07 18:29:24108 if (SUCCEEDED(hr)) {
109 ULARGE_INTEGER size = {0};
110 cache_->SetSize(size);
111 } else {
112 DLOG(ERROR) << "CreateStreamOnHGlobal failed: " << hr;
113 }
114
[email protected]040b800f2010-05-05 23:46:30115 return hr;
[email protected]051236f2010-03-12 22:06:14116}
117
[email protected]97965e12010-04-09 00:51:10118HRESULT SniffData::ReadIntoCache(IStream* stream, bool force_determination) {
119 if (!stream) {
120 NOTREACHED();
121 return E_INVALIDARG;
[email protected]051236f2010-03-12 22:06:14122 }
[email protected]051236f2010-03-12 22:06:14123
124 HRESULT hr = S_OK;
[email protected]97965e12010-04-09 00:51:10125 while (SUCCEEDED(hr)) {
126 const size_t kChunkSize = 4 * 1024;
127 char buffer[kChunkSize];
128 DWORD read = 0;
129 hr = stream->Read(buffer, sizeof(buffer), &read);
130 if (read) {
131 DWORD written = 0;
132 cache_->Write(buffer, read, &written);
133 size_ += written;
[email protected]fb716b302010-03-26 02:45:20134 }
135
[email protected]97965e12010-04-09 00:51:10136 if ((S_FALSE == hr) || !read)
137 break;
[email protected]051236f2010-03-12 22:06:14138 }
139
[email protected]37a3a4b2010-04-14 22:37:40140 bool last_chance = force_determination || (size() >= kMaxSniffSize);
[email protected]de5bc352010-04-16 01:38:48141 eof_ = force_determination;
[email protected]37a3a4b2010-04-14 22:37:40142 DetermineRendererType(last_chance);
[email protected]051236f2010-03-12 22:06:14143 return hr;
144}
145
[email protected]97965e12010-04-09 00:51:10146HRESULT SniffData::DrainCache(IBindStatusCallback* bscb, DWORD bscf,
147 CLIPFORMAT clip_format) {
148 if (!is_cache_valid()) {
149 return S_OK;
150 }
151
152 // Ideally we could just use the cache_ IStream implementation but
153 // can't use it here since we have to return E_PENDING for the
154 // last call
155 HGLOBAL memory = NULL;
156 HRESULT hr = GetHGlobalFromStream(cache_, &memory);
157 if (SUCCEEDED(hr) && memory) {
158 char* buffer = reinterpret_cast<char*>(GlobalLock(memory));
[email protected]de5bc352010-04-16 01:38:48159 hr = CacheStream::BSCBFeedData(bscb, buffer, size_, clip_format, bscf,
160 eof_);
[email protected]97965e12010-04-09 00:51:10161 GlobalUnlock(memory);
162 }
163
164 size_ = 0;
165 cache_.Release();
166 return hr;
[email protected]051236f2010-03-12 22:06:14167}
168
[email protected]97965e12010-04-09 00:51:10169// Scan the buffer or OptIn URL list and decide if the renderer is
[email protected]37a3a4b2010-04-14 22:37:40170// to be switched. Last chance means there's no more data.
171void SniffData::DetermineRendererType(bool last_chance) {
[email protected]97965e12010-04-09 00:51:10172 if (is_undetermined()) {
[email protected]37a3a4b2010-04-14 22:37:40173 if (last_chance)
174 renderer_type_ = OTHER;
[email protected]7dd06a02010-12-09 02:56:24175 if (IsChrome(RendererTypeForUrl(url_))) {
[email protected]97965e12010-04-09 00:51:10176 renderer_type_ = CHROME;
177 } else {
[email protected]97965e12010-04-09 00:51:10178 if (is_cache_valid() && cache_) {
179 HGLOBAL memory = NULL;
180 GetHGlobalFromStream(cache_, &memory);
[email protected]f0600f1b2010-06-08 22:40:35181 const char* buffer = reinterpret_cast<const char*>(GlobalLock(memory));
[email protected]97965e12010-04-09 00:51:10182
183 std::wstring html_contents;
184 // TODO(joshia): detect and handle different content encodings
185 if (buffer && size_) {
[email protected]f0600f1b2010-06-08 22:40:35186 UTF8ToWide(buffer, std::min(size_, kMaxSniffSize), &html_contents);
[email protected]97965e12010-04-09 00:51:10187 GlobalUnlock(memory);
188 }
189
190 // Note that document_contents_ may have NULL characters in it. While
191 // browsers may handle this properly, we don't and will stop scanning
192 // for the XUACompat content value if we encounter one.
193 std::wstring xua_compat_content;
194 UtilGetXUACompatContentValue(html_contents, &xua_compat_content);
195 if (StrStrI(xua_compat_content.c_str(), kChromeContentPrefix)) {
196 renderer_type_ = CHROME;
197 }
198 }
199 }
[email protected]2b9a9f162010-10-19 20:30:45200 DVLOG(1) << __FUNCTION__ << "Url: " << url_ << base::StringPrintf(
201 "Renderer type: %s", renderer_type_ == CHROME ? "CHROME" : "OTHER");
[email protected]97965e12010-04-09 00:51:10202 }
[email protected]051236f2010-03-12 22:06:14203}
204
[email protected]97965e12010-04-09 00:51:10205/////////////////////////////////////////////////////////////////////
206
[email protected]74e9983a2010-05-14 02:27:34207BSCBStorageBind::BSCBStorageBind() : clip_format_(CF_NULL) {
208}
209
210BSCBStorageBind::~BSCBStorageBind() {
[email protected]77d7aee2010-05-14 20:31:55211 std::for_each(saved_progress_.begin(), saved_progress_.end(),
212 utils::DeleteObject());
[email protected]74e9983a2010-05-14 02:27:34213}
214
[email protected]70277f62010-04-15 01:39:26215HRESULT BSCBStorageBind::Initialize(IMoniker* moniker, IBindCtx* bind_ctx) {
[email protected]2b9a9f162010-10-19 20:30:45216 DVLOG(1) << __FUNCTION__ << me()
[email protected]ce072a72010-12-31 20:02:16217 << base::StringPrintf(" tid=%i", base::PlatformThread::CurrentId());
[email protected]051236f2010-03-12 22:06:14218
[email protected]040b800f2010-05-05 23:46:30219 std::wstring url = GetActualUrlFromMoniker(moniker, bind_ctx,
220 std::wstring());
221 HRESULT hr = data_sniffer_.InitializeCache(url);
222 if (FAILED(hr))
223 return hr;
224
225 hr = AttachToBind(bind_ctx);
[email protected]97965e12010-04-09 00:51:10226 if (FAILED(hr)) {
227 NOTREACHED() << __FUNCTION__ << me() << "AttachToBind error: " << hr;
228 return hr;
[email protected]051236f2010-03-12 22:06:14229 }
230
[email protected]97965e12010-04-09 00:51:10231 if (!delegate()) {
232 NOTREACHED() << __FUNCTION__ << me() << "No existing callback: " << hr;
233 return E_FAIL;
234 }
[email protected]051236f2010-03-12 22:06:14235
[email protected]051236f2010-03-12 22:06:14236 return hr;
237}
238
[email protected]97965e12010-04-09 00:51:10239STDMETHODIMP BSCBStorageBind::OnProgress(ULONG progress, ULONG progress_max,
240 ULONG status_code, LPCWSTR status_text) {
[email protected]2b9a9f162010-10-19 20:30:45241 DVLOG(1) << __FUNCTION__ << me()
242 << base::StringPrintf(" status=%i tid=%i %ls", status_code,
[email protected]ce072a72010-12-31 20:02:16243 base::PlatformThread::CurrentId(),
244 status_text);
[email protected]e7dd21542010-05-07 21:59:44245 // Report all crashes in the exception handler if we wrap the callback.
246 // Note that this avoids having the VEH report a crash if an SEH earlier in
247 // the chain handles the exception.
248 ExceptionBarrier barrier;
[email protected]97965e12010-04-09 00:51:10249
250 HRESULT hr = S_OK;
[email protected]b31b9ff2010-05-07 18:29:24251
[email protected]4f45d4582011-02-22 23:27:27252 // TODO(ananta)
253 // ChromeFrame will not be informed of any redirects which occur while we
254 // switch into Chrome. This will only break the moniker patch which is
255 // legacy and needs to be deleted.
[email protected]b31b9ff2010-05-07 18:29:24256
257 if (ShouldCacheProgress(status_code)) {
[email protected]74e9983a2010-05-14 02:27:34258 saved_progress_.push_back(new Progress(progress, progress_max, status_code,
259 status_text));
[email protected]97965e12010-04-09 00:51:10260 } else {
261 hr = CallbackImpl::OnProgress(progress, progress_max, status_code,
262 status_text);
263 }
264
265 return hr;
266}
267
268// Refer to urlmon_moniker.h for explanation of how things work.
269STDMETHODIMP BSCBStorageBind::OnDataAvailable(DWORD flags, DWORD size,
270 FORMATETC* format_etc,
271 STGMEDIUM* stgmed) {
[email protected]2b9a9f162010-10-19 20:30:45272 DVLOG(1) << __FUNCTION__
[email protected]ce072a72010-12-31 20:02:16273 << base::StringPrintf(" tid=%i", base::PlatformThread::CurrentId());
[email protected]e7dd21542010-05-07 21:59:44274 // Report all crashes in the exception handler if we wrap the callback.
275 // Note that this avoids having the VEH report a crash if an SEH earlier in
276 // the chain handles the exception.
277 ExceptionBarrier barrier;
[email protected]3ee61122010-04-14 00:35:52278 // Do not touch anything other than text/html.
[email protected]3ee61122010-04-14 00:35:52279 bool is_interesting = (format_etc && stgmed && stgmed->pstm &&
[email protected]2b3102be2010-04-21 20:07:35280 stgmed->tymed == TYMED_ISTREAM &&
281 IsTextHtmlClipFormat(format_etc->cfFormat));
[email protected]3ee61122010-04-14 00:35:52282
283 if (!is_interesting) {
284 // Play back report progress so far.
285 MayPlayBack(flags);
[email protected]97965e12010-04-09 00:51:10286 return CallbackImpl::OnDataAvailable(flags, size, format_etc, stgmed);
287 }
288
289 HRESULT hr = S_OK;
290 if (!clip_format_)
291 clip_format_ = format_etc->cfFormat;
292
293 if (data_sniffer_.is_undetermined()) {
294 bool force_determination = !!(flags &
295 (BSCF_LASTDATANOTIFICATION | BSCF_DATAFULLYAVAILABLE));
296 hr = data_sniffer_.ReadIntoCache(stgmed->pstm, force_determination);
297 // If we don't have sufficient data to determine renderer type
298 // wait for the next data notification.
299 if (data_sniffer_.is_undetermined())
300 return S_OK;
301 }
302
303 DCHECK(!data_sniffer_.is_undetermined());
304
305 if (data_sniffer_.is_cache_valid()) {
306 hr = MayPlayBack(flags);
307 DCHECK(!data_sniffer_.is_cache_valid());
308 } else {
309 hr = CallbackImpl::OnDataAvailable(flags, size, format_etc, stgmed);
310 }
[email protected]051236f2010-03-12 22:06:14311 return hr;
312}
313
[email protected]97965e12010-04-09 00:51:10314STDMETHODIMP BSCBStorageBind::OnStopBinding(HRESULT hresult, LPCWSTR error) {
[email protected]2b9a9f162010-10-19 20:30:45315 DVLOG(1) << __FUNCTION__
[email protected]ce072a72010-12-31 20:02:16316 << base::StringPrintf(" tid=%i", base::PlatformThread::CurrentId());
[email protected]e7dd21542010-05-07 21:59:44317 // Report all crashes in the exception handler if we wrap the callback.
318 // Note that this avoids having the VEH report a crash if an SEH earlier in
319 // the chain handles the exception.
320 ExceptionBarrier barrier;
321
[email protected]97965e12010-04-09 00:51:10322 HRESULT hr = MayPlayBack(BSCF_LASTDATANOTIFICATION);
[email protected]ffec6bf2010-04-09 23:53:26323 hr = CallbackImpl::OnStopBinding(hresult, error);
324 ReleaseBind();
325 return hr;
[email protected]051236f2010-03-12 22:06:14326}
327
[email protected]97965e12010-04-09 00:51:10328// Play back the cached data to the delegate. Normally this would happen
329// when we have read enough data to determine the renderer. In this case
330// we first play back the data from the cache and then go into a 'pass
331// through' mode. In some cases we may end up getting OnStopBinding
332// before we get a chance to determine. Also it's possible that the
333// BindToStorage call will return before OnStopBinding is sent. Hence
334// This is called from 3 places and it's important to maintain the
335// exact sequence of calls.
336// Once the data is played back, calling this again is a no op.
337HRESULT BSCBStorageBind::MayPlayBack(DWORD flags) {
338 // Force renderer type determination if not already done since
339 // we want to play back data now.
[email protected]37a3a4b2010-04-14 22:37:40340 data_sniffer_.DetermineRendererType(true);
[email protected]97965e12010-04-09 00:51:10341 DCHECK(!data_sniffer_.is_undetermined());
342
343 HRESULT hr = S_OK;
344 if (data_sniffer_.is_chrome()) {
345 // Remember clip format. If we are switching to chrome, then in order
346 // to make mshtml return INET_E_TERMINATED_BIND and reissue navigation
347 // with the same bind context, we have to return a mime type that is
348 // special cased by mshtml.
349 static const CLIPFORMAT kMagicClipFormat =
350 RegisterClipboardFormat(CFSTR_MIME_MPEG);
351 clip_format_ = kMagicClipFormat;
352 } else {
353 if (!saved_progress_.empty()) {
[email protected]77d7aee2010-05-14 20:31:55354 for (ProgressVector::iterator i = saved_progress_.begin();
[email protected]74e9983a2010-05-14 02:27:34355 i != saved_progress_.end(); i++) {
356 Progress* p = (*i);
[email protected]77d7aee2010-05-14 20:31:55357 // We don't really expect a race condition here but just for sake
358 // of completeness we check.
359 if (p) {
360 (*i) = NULL;
361 CallbackImpl::OnProgress(p->progress(), p->progress_max(),
362 p->status_code(), p->status_text());
363 delete p;
364 }
[email protected]97965e12010-04-09 00:51:10365 }
366 saved_progress_.clear();
367 }
368 }
369
370 if (data_sniffer_.is_cache_valid()) {
[email protected]3ee61122010-04-14 00:35:52371 if (data_sniffer_.is_chrome()) {
[email protected]8ee65ba2011-04-12 20:53:23372 base::win::ScopedComPtr<BindContextInfo> info;
[email protected]77d7aee2010-05-14 20:31:55373 BindContextInfo::FromBindContext(bind_ctx_, info.Receive());
[email protected]70277f62010-04-15 01:39:26374 DCHECK(info);
375 if (info) {
376 info->SetToSwitch(data_sniffer_.cache_);
[email protected]3ee61122010-04-14 00:35:52377 }
[email protected]3ee61122010-04-14 00:35:52378 }
379
[email protected]97965e12010-04-09 00:51:10380 hr = data_sniffer_.DrainCache(delegate(),
381 flags | BSCF_FIRSTDATANOTIFICATION, clip_format_);
[email protected]c8c547e2010-04-12 20:40:15382 DLOG_IF(WARNING, INET_E_TERMINATED_BIND != hr) << __FUNCTION__ <<
383 " mshtml OnDataAvailable returned: " << std::hex << hr;
[email protected]97965e12010-04-09 00:51:10384 }
385
386 return hr;
[email protected]2b3102be2010-04-21 20:07:35387}
388
[email protected]b31b9ff2010-05-07 18:29:24389// We cache and suppress sending progress notifications till
390// we get the first OnDataAvailable. This is to prevent
391// mshtml from making up its mind about the mime type.
392// However, this is the invasive part of the patch and
393// could trip other software that's due to mistimed progress
394// notifications. It is probably not a good idea to hide redirects
395// and some cookie notifications.
396//
397// We only need to suppress data notifications like
398// BINDSTATUS_MIMETYPEAVAILABLE,
399// BINDSTATUS_CACHEFILENAMEAVAILABLE etc.
400//
401// This is an atempt to reduce the exposure by starting to
402// cache only when we receive one of the interesting progress
403// notification.
404bool BSCBStorageBind::ShouldCacheProgress(unsigned long status_code) const {
405 // We need to cache progress notifications only if we haven't yet figured
406 // out which way the request is going.
407 if (data_sniffer_.is_undetermined()) {
408 // If we are already caching then continue.
409 if (!saved_progress_.empty())
410 return true;
411 // Start caching only if we see one of the interesting progress
412 // notifications.
413 switch (status_code) {
414 case BINDSTATUS_BEGINDOWNLOADDATA:
415 case BINDSTATUS_DOWNLOADINGDATA:
416 case BINDSTATUS_USINGCACHEDCOPY:
417 case BINDSTATUS_MIMETYPEAVAILABLE:
418 case BINDSTATUS_CACHEFILENAMEAVAILABLE:
419 case BINDSTATUS_SERVER_MIMETYPEAVAILABLE:
420 return true;
421 default:
422 break;
423 }
424 }
425
426 return false;
427}