Left: | ||
Right: |
OLD | NEW |
---|---|
1 #include "PluginStdAfx.h" | 1 #include "PluginStdAfx.h" |
2 | 2 |
3 #include "PluginWbPassThrough.h" | 3 #include "PluginWbPassThrough.h" |
4 #include "PluginClient.h" | 4 #include "PluginClient.h" |
5 #include "PluginClientFactory.h" | 5 #include "PluginClientFactory.h" |
6 #include "PluginFilter.h" | 6 #include "PluginFilter.h" |
7 #include "PluginSettings.h" | 7 #include "PluginSettings.h" |
8 #include "PluginClass.h" | 8 #include "PluginClass.h" |
9 #include "PluginSystem.h" | 9 #include "PluginSystem.h" |
10 #include <WinInet.h> | 10 #include <WinInet.h> |
11 #include "wtypes.h" | 11 #include "wtypes.h" |
12 #include "../shared/Utils.h" | |
12 | 13 |
13 namespace | 14 namespace |
14 { | 15 { |
15 std::string g_blockedByABPPage = "<!DOCTYPE html>" | 16 std::string g_blockedByABPPage = "<!DOCTYPE html>" |
16 "<html>" | 17 "<html>" |
17 "<body>" | 18 "<body>" |
18 "<!-- blocked by AdblockPlus -->" | 19 "<!-- blocked by AdblockPlus -->" |
19 "</body>" | 20 "</body>" |
20 "</html>"; | 21 "</html>"; |
21 } | 22 } |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
118 //////////////////////////////////////////////////////////////////////////////// //////// | 119 //////////////////////////////////////////////////////////////////////////////// //////// |
119 //WBPassthruSink | 120 //WBPassthruSink |
120 //Monitor and/or cancel every request and responde | 121 //Monitor and/or cancel every request and responde |
121 //WB makes, including images, sounds, scripts, etc | 122 //WB makes, including images, sounds, scripts, etc |
122 //////////////////////////////////////////////////////////////////////////////// //////// | 123 //////////////////////////////////////////////////////////////////////////////// //////// |
123 HRESULT WBPassthruSink::OnStart(LPCWSTR szUrl, IInternetProtocolSink *pOIProtSin k, | 124 HRESULT WBPassthruSink::OnStart(LPCWSTR szUrl, IInternetProtocolSink *pOIProtSin k, |
124 IInternetBindInfo *pOIBindInfo, DWORD grfPI, HAN DLE_PTR dwReserved, | 125 IInternetBindInfo *pOIBindInfo, DWORD grfPI, HAN DLE_PTR dwReserved, |
125 IInternetProtocol* pTargetProtocol, bool& handle d) | 126 IInternetProtocol* pTargetProtocol, bool& handle d) |
126 { | 127 { |
127 m_pTargetProtocol = pTargetProtocol; | 128 m_pTargetProtocol = pTargetProtocol; |
128 bool isBlocked = false; | 129 return BaseClass::OnStart(szUrl, pOIProtSink, pOIBindInfo, grfPI, dwReserved, pTargetProtocol); |
129 CString src = szUrl; | |
130 DEBUG_GENERAL(src); | |
131 CPluginClient::UnescapeUrl(src); | |
132 | |
133 // call the impl of the base class as soon as possible because it initializes the base class | |
134 // members, used by this method. It queries for the required interfaces. | |
135 HRESULT hr = BaseClass::OnStart(szUrl, pOIProtSink, pOIBindInfo, grfPI, dwRese rved, pTargetProtocol); | |
136 if (FAILED(hr)) | |
137 { | |
138 return hr; | |
139 } | |
140 | |
141 CString mimeType; | |
142 if (pOIBindInfo) | |
143 { | |
144 ULONG resLen = 0; | |
145 | |
146 // Apparently IE will report random mime type if there's more then 1 in the list. | |
147 // So we get the whole list and just use the first one (top priority one) | |
148 LPOLESTR mime[10]; | |
149 pOIBindInfo->GetBindString(BINDSTRING_ACCEPT_MIMES, mime, 10, &resLen); | |
150 if (mime && resLen > 0) | |
151 { | |
152 mimeType.SetString(mime[0]); | |
153 } | |
154 LPOLESTR bindString = nullptr; | |
155 pOIBindInfo->GetBindString(BINDSTRING_FLAG_BIND_TO_OBJECT, &bindString, 1, & resLen); | |
156 LPOLESTR domainRetrieved = nullptr; | |
157 if (resLen == 0 || wcscmp(bindString, L"FALSE") == 0) | |
158 { | |
159 HRESULT hr = pOIBindInfo->GetBindString(BINDSTRING_XDR_ORIGIN, &domainRetr ieved, 1, &resLen); | |
160 if ((hr == S_OK) && domainRetrieved && (resLen > 0)) | |
161 { | |
162 m_boundDomain = domainRetrieved; | |
163 } | |
164 } | |
165 // We can obtain IBindCtx* here, but IEnumString obtained via IBindCtx::Enum ObjectParam | |
166 // does not return any parameter, so it's useless. | |
167 } | |
168 | |
169 CString cookie; | |
170 ULONG len1 = 2048; | |
171 ULONG len2 = 2048; | |
172 | |
173 CPluginTab* tab = CPluginClass::GetTab(::GetCurrentThreadId()); | |
174 CPluginClient* client = CPluginClient::GetInstance(); | |
175 | |
176 if (tab && client) | |
177 { | |
178 CString documentUrl = tab->GetDocumentUrl(); | |
179 // Page is identical to document => don't block | |
180 if (documentUrl == src) | |
181 { | |
182 // fall through | |
183 } | |
184 else if (CPluginSettings::GetInstance()->IsPluginEnabled() && !client->IsWhi telistedUrl(std::wstring(documentUrl))) | |
185 { | |
186 m_boundDomain = tab->GetDocumentUrl(); | |
187 m_contentType = CFilter::contentTypeAny; | |
188 if (tab != nullptr && tab->IsFrameCached(src)) | |
189 { | |
190 m_contentType = CFilter::contentTypeSubdocument; | |
191 } | |
192 else | |
193 { | |
194 m_contentType = GetContentType(mimeType, m_boundDomain, src); | |
195 } | |
196 } | |
197 } | |
198 | |
199 if (tab == nullptr) | |
200 { | |
201 m_contentType = GetContentType(mimeType, m_boundDomain, src); | |
202 } | |
203 | |
204 { | |
205 // Here is the heuristic which detects the requests issued by Flash.ocx. | |
206 // It turned out that the implementation from ''Flash.ocx'' (tested version is 15.0.0.152) | |
207 // returns quite minimal configuration in comparison with the implementation from Microsofts' | |
208 // libraries (see grfBINDF and bindInfo.dwOptions). The impl from MS often i ncludes something | |
209 // else. | |
210 ATL::CComPtr<IBindStatusCallback> bscb; | |
211 if (SUCCEEDED(QueryServiceFromClient(&bscb)) && !!bscb) | |
212 { | |
213 DWORD grfBINDF = 0; | |
214 BINDINFO bindInfo = {}; | |
215 bindInfo.cbSize = sizeof(bindInfo); | |
216 if (SUCCEEDED(bscb->GetBindInfo(&grfBINDF, &bindInfo)) | |
217 && (BINDF_ASYNCHRONOUS | BINDF_ASYNCSTORAGE| BINDF_PULLDATA) == grfBINDF | |
218 && (BINDINFO_OPTIONS_ENABLE_UTF8 | BINDINFO_OPTIONS_USE_IE_ENCODING) == bindInfo.dwOptions | |
219 ) | |
220 { | |
221 m_contentType = CFilter::EContentType::contentTypeObjectSubrequest; | |
222 } | |
223 } | |
224 } | |
225 | |
226 // The descision about EContentType::contentTypeAny is made later in | |
227 // WBPassthruSink::BeginningTransaction. Sometimes here we cannot detect the r equest type, but | |
228 // in WBPassthruSink::BeginningTransaction the header Accept is available whic h allows to | |
229 // obtain the "request type" in our terminology. | |
230 if (nullptr != client | |
231 && CFilter::EContentType::contentTypeAny != m_contentType | |
232 && client->ShouldBlock(static_cast<const wchar_t*>(src), m_contentType, m_bo undDomain, true)) | |
233 { | |
234 isBlocked = true; | |
235 } | |
236 | |
237 // For IE6 and earlier there is iframe back button issue, so avoid it. | |
238 if (isBlocked && client->GetIEVersion() > 6) | |
239 { | |
240 handled = true; | |
241 if (CFilter::EContentType::contentTypeImage == m_contentType) | |
242 { | |
243 // IE shows a cross that img is not loaded | |
244 return INET_E_REDIRECT_FAILED; | |
245 } | |
246 if (CFilter::EContentType::contentTypeSubdocument == m_contentType) | |
247 { | |
248 PassthroughAPP::CustomSinkStartPolicy<WBPassthru, WBPassthruSink>::GetProt ocol(this)->m_shouldSupplyCustomContent = true; | |
249 m_spInternetProtocolSink->ReportProgress(BINDSTATUS_MIMETYPEAVAILABLE, L"t ext/html"); | |
250 m_spInternetProtocolSink->ReportData(BSCF_FIRSTDATANOTIFICATION, 0, static _cast<ULONG>(g_blockedByABPPage.size())); | |
251 return S_OK; | |
252 } | |
253 if (CFilter::EContentType::contentTypeScript == m_contentType) | |
254 { | |
255 m_spInternetProtocolSink->ReportProgress(BINDSTATUS_MIMETYPEAVAILABLE, L"t ext/javascript"); | |
256 m_spInternetProtocolSink->ReportResult(INET_E_REDIRECTING, 301, L"data:"); | |
257 return INET_E_REDIRECT_FAILED; | |
258 } | |
259 if (CFilter::EContentType::contentTypeXmlHttpRequest == m_contentType) | |
260 { | |
261 m_spInternetProtocolSink->ReportResult(INET_E_REDIRECTING, 301, L"data:"); | |
262 return INET_E_REDIRECT_FAILED; | |
263 } | |
264 if (CFilter::EContentType::contentTypeAny != m_contentType) | |
265 { | |
266 m_spInternetProtocolSink->ReportResult(INET_E_REDIRECTING, 301, L"data:"); | |
267 return INET_E_REDIRECT_FAILED; | |
268 } | |
269 } | |
270 | |
271 return isBlocked ? S_FALSE : hr; | |
272 } | 130 } |
273 | 131 |
274 HRESULT WBPassthruSink::OnRead(void* pv, ULONG cb, ULONG* pcbRead) | 132 HRESULT WBPassthruSink::OnRead(void* pv, ULONG cb, ULONG* pcbRead) |
275 { | 133 { |
276 if (pv == nullptr) | 134 if (pv == nullptr) |
277 { | 135 { |
278 return E_POINTER; | 136 return E_POINTER; |
279 } | 137 } |
280 if (pcbRead == nullptr) | 138 if (pcbRead == nullptr) |
281 { | 139 { |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
328 IInternetProtocolSink::Switch with PD_FORCE_SWITCH flag in | 186 IInternetProtocolSink::Switch with PD_FORCE_SWITCH flag in |
329 PROTOCOLDATA::grfFlags, eventually URLMon will turn around and call | 187 PROTOCOLDATA::grfFlags, eventually URLMon will turn around and call |
330 IInternetProtocol::Continue on the main thread. | 188 IInternetProtocol::Continue on the main thread. |
331 | 189 |
332 Or, if you happen to have a window handy that was created on the main | 190 Or, if you happen to have a window handy that was created on the main |
333 thread, you can post yourself a message. | 191 thread, you can post yourself a message. |
334 " | 192 " |
335 */ | 193 */ |
336 return m_spInternetProtocolSink ? m_spInternetProtocolSink->Switch(pProtocolDa ta) : E_UNEXPECTED; | 194 return m_spInternetProtocolSink ? m_spInternetProtocolSink->Switch(pProtocolDa ta) : E_UNEXPECTED; |
337 } | 195 } |
196 std::string ExtractHttpAcceptHeader(IInternetProtocol* inernetProtocol) | |
Felix Dahlke
2014/11/04 16:13:25
internetProtocol with a t, I guess? Can you move t
| |
197 { | |
198 // Despite there being HTTP_QUERY_ACCEPT and other query info flags, they don' t work here, | |
199 // only HTTP_QUERY_RAW_HEADERS_CRLF | HTTP_QUERY_FLAG_REQUEST_HEADERS does dor k. | |
Felix Dahlke
2014/11/04 16:13:25
does dork? That a freudian? :D
| |
200 ATL::CComPtr<IWinInetHttpInfo> winInetHttpInfo; | |
201 HRESULT hr = inernetProtocol->QueryInterface(&winInetHttpInfo); | |
202 if (FAILED(hr)) | |
203 { | |
204 return ""; | |
205 } | |
206 DWORD size = 0; | |
207 DWORD flags = 0; | |
208 DWORD queryOption = HTTP_QUERY_RAW_HEADERS_CRLF | HTTP_QUERY_FLAG_REQUEST_HEAD ERS; | |
209 hr = winInetHttpInfo->QueryInfo(queryOption, /*buffer*/ nullptr, /*get size*/ &size, &flags, /*reserved*/ 0); | |
210 if (FAILED(hr)) | |
211 { | |
212 return ""; | |
213 } | |
214 std::string buf(size, '\0'); | |
215 hr = winInetHttpInfo->QueryInfo(queryOption, &buf[0], &size, &flags, 0); | |
216 if (FAILED(hr)) | |
217 { | |
218 return ""; | |
219 } | |
220 return ExtractHttpHeader<std::string>(buf, std::string("Accept"), "\r\n"); | |
221 } | |
222 | |
223 // This is the heuristic which detects the requests issued by Flash.ocx. | |
224 // It turned out that the implementation from ''Flash.ocx'' (tested version is 1 5.0.0.152) | |
225 // returns quite minimal configuration in comparison with the implementation fro m Microsofts' | |
226 // libraries (see grfBINDF and bindInfo.dwOptions). The impl from MS often inclu des something | |
227 // else. | |
228 bool WBPassthruSink::IsFlashRequest() | |
229 { | |
230 ATL::CComPtr<IBindStatusCallback> bscb; | |
231 if (SUCCEEDED(QueryServiceFromClient(&bscb)) && !!bscb) | |
232 { | |
233 DWORD grfBINDF = 0; | |
234 BINDINFO bindInfo = {}; | |
235 bindInfo.cbSize = sizeof(bindInfo); | |
236 if (SUCCEEDED(bscb->GetBindInfo(&grfBINDF, &bindInfo)) && | |
237 (BINDF_ASYNCHRONOUS | BINDF_ASYNCSTORAGE| BINDF_PULLDATA) == grfBINDF && | |
238 (BINDINFO_OPTIONS_ENABLE_UTF8 | BINDINFO_OPTIONS_USE_IE_ENCODING) == bindI nfo.dwOptions | |
239 ) | |
240 { | |
241 return true; | |
242 } | |
243 } | |
244 return false; | |
245 } | |
338 | 246 |
339 STDMETHODIMP WBPassthruSink::BeginningTransaction(LPCWSTR szURL, LPCWSTR szHeade rs, DWORD dwReserved, LPWSTR* pszAdditionalHeaders) | 247 STDMETHODIMP WBPassthruSink::BeginningTransaction(LPCWSTR szURL, LPCWSTR szHeade rs, DWORD dwReserved, LPWSTR* pszAdditionalHeaders) |
340 { | 248 { |
341 if (pszAdditionalHeaders) | 249 if (pszAdditionalHeaders) |
342 { | 250 { |
343 *pszAdditionalHeaders = nullptr; | 251 *pszAdditionalHeaders = nullptr; |
344 } | 252 } |
253 std::wstring src = szURL; | |
254 DEBUG_GENERAL(ToCString(src)); | |
345 | 255 |
346 CPluginClient* client = nullptr; | 256 CComPtr<IHttpNegotiate> httpNegotiate; |
347 if (CFilter::EContentType::contentTypeAny == m_contentType && (client = CPlugi nClient::GetInstance())) | 257 QueryServiceFromClient(&httpNegotiate); |
258 // This fills the pszAdditionalHeaders with more headers. One of which is the Referer header, which we need. | |
259 // There doesn't seem to be any other way to get this header before the reques t has been made. | |
260 HRESULT nativeHr = httpNegotiate ? httpNegotiate->BeginningTransaction(szURL, szHeaders, dwReserved, pszAdditionalHeaders) : S_OK; | |
261 | |
262 std::string acceptHeader = ExtractHttpAcceptHeader(m_spTargetProtocol); | |
Felix Dahlke
2014/11/04 16:13:25
I still think we can move this up, i.e. this and t
| |
263 m_contentType = GetContentTypeFromMimeType(ATL::CString(acceptHeader.c_str())) ; | |
264 if (*pszAdditionalHeaders != 0) | |
348 { | 265 { |
349 auto acceptHeader = [&]() -> std::string | 266 m_boundDomain = ExtractHttpHeader<std::wstring>(std::wstring(*pszAdditionalH eaders), std::wstring(L"Referer")).c_str(); |
267 } | |
268 m_boundDomain = TrimString(m_boundDomain); | |
269 CPluginTab* tab = CPluginClass::GetTab(::GetCurrentThreadId()); | |
270 CPluginClient* client = CPluginClient::GetInstance(); | |
271 | |
272 if (tab && client) | |
273 { | |
274 CString documentUrl = tab->GetDocumentUrl(); | |
275 // Page is identical to document => don't block | |
276 if (documentUrl == ToCString(src)) | |
350 { | 277 { |
351 // Despite there is HTTP_QUERY_ACCEPT and other query info flags, they don 't work here, | 278 return nativeHr; |
352 // only HTTP_QUERY_RAW_HEADERS_CRLF | HTTP_QUERY_FLAG_REQUEST_HEADERS does dork. | 279 } |
353 ATL::CComPtr<IWinInetHttpInfo> winInetHttpInfo; | 280 else if (CPluginSettings::GetInstance()->IsPluginEnabled() && !client->IsWhi telistedUrl(std::wstring(documentUrl))) |
354 HRESULT hr = m_spTargetProtocol->QueryInterface(&winInetHttpInfo); | 281 { |
355 if(FAILED(hr)) | 282 if (tab->IsFrameCached(ToCString(src))) |
356 { | 283 { |
357 return ""; | 284 m_contentType = CFilter::contentTypeSubdocument; |
358 } | 285 } |
359 DWORD size = 0; | |
360 DWORD flags = 0; | |
361 hr = winInetHttpInfo->QueryInfo(HTTP_QUERY_RAW_HEADERS_CRLF | HTTP_QUERY_F LAG_REQUEST_HEADERS, | |
362 /*buffer*/nullptr, /* get size */&size, &flags, /*reserved*/ 0); | |
363 if(FAILED(hr)) | |
364 { | |
365 return ""; | |
366 } | |
367 std::string buf(size, '\0'); | |
368 hr = winInetHttpInfo->QueryInfo(HTTP_QUERY_RAW_HEADERS_CRLF | HTTP_QUERY_F LAG_REQUEST_HEADERS, | |
369 &buf[0], &size, &flags, 0); | |
370 if(FAILED(hr)) | |
371 { | |
372 return ""; | |
373 } | |
374 char acceptHeader[] = "Accept:"; | |
375 auto acceptHeaderBeginsAt = buf.find(acceptHeader); | |
376 if (std::string::npos == acceptHeaderBeginsAt) | |
377 { | |
378 return ""; | |
379 } | |
380 acceptHeaderBeginsAt += sizeof(acceptHeader); | |
381 auto acceptHeaderEndsAt = buf.find("\n", acceptHeaderBeginsAt); | |
382 if (std::string::npos == acceptHeaderEndsAt) | |
383 { | |
384 return ""; | |
385 } | |
386 return buf.substr(acceptHeaderBeginsAt, acceptHeaderEndsAt - acceptHeaderB eginsAt); | |
387 }(); | |
388 m_contentType = GetContentTypeFromMimeType(ATL::CString(acceptHeader.c_str() )); | |
389 bool isBlocked = client->ShouldBlock(szURL, m_contentType, m_boundDomain, /* debug flag but must be set*/true); | |
390 if (isBlocked) | |
391 { | |
392 m_blockedInTransaction = true; | |
393 return E_ABORT; | |
394 } | 286 } |
395 } | 287 } |
396 CComPtr<IHttpNegotiate> spHttpNegotiate; | 288 |
397 QueryServiceFromClient(&spHttpNegotiate); | 289 if (IsFlashRequest()) |
398 return spHttpNegotiate ? spHttpNegotiate->BeginningTransaction(szURL, szHeader s,dwReserved, pszAdditionalHeaders) : S_OK; | 290 { |
291 m_contentType = CFilter::EContentType::contentTypeObjectSubrequest; | |
292 } | |
293 | |
294 m_blockedInTransaction = client->ShouldBlock(szURL, m_contentType, m_boundDoma in, /*debug flag but must be set*/true); | |
295 if (m_blockedInTransaction) | |
296 { | |
297 return E_ABORT; | |
298 } | |
299 return nativeHr; | |
399 } | 300 } |
400 | 301 |
401 STDMETHODIMP WBPassthruSink::OnResponse(DWORD dwResponseCode, LPCWSTR szResponse Headers, LPCWSTR szRequestHeaders, LPWSTR *pszAdditionalRequestHeaders) | 302 STDMETHODIMP WBPassthruSink::OnResponse(DWORD dwResponseCode, LPCWSTR szResponse Headers, LPCWSTR szRequestHeaders, LPWSTR *pszAdditionalRequestHeaders) |
402 { | 303 { |
403 if (pszAdditionalRequestHeaders) | 304 if (pszAdditionalRequestHeaders) |
404 { | 305 { |
405 *pszAdditionalRequestHeaders = 0; | 306 *pszAdditionalRequestHeaders = 0; |
406 } | 307 } |
407 | 308 |
408 CComPtr<IHttpNegotiate> spHttpNegotiate; | 309 CComPtr<IHttpNegotiate> spHttpNegotiate; |
(...skipping 15 matching lines...) Expand all Loading... | |
424 // Current method is called by the original protocol implementation and we a re intercepting the | 325 // Current method is called by the original protocol implementation and we a re intercepting the |
425 // call here and eating it, we will call the proper ReportResult later by ou rself. | 326 // call here and eating it, we will call the proper ReportResult later by ou rself. |
426 return S_OK; | 327 return S_OK; |
427 } | 328 } |
428 return BaseClass::ReportResult(hrResult, dwError, szResult); | 329 return BaseClass::ReportResult(hrResult, dwError, szResult); |
429 } | 330 } |
430 | 331 |
431 | 332 |
432 WBPassthru::WBPassthru() | 333 WBPassthru::WBPassthru() |
433 : m_shouldSupplyCustomContent(false) | 334 : m_shouldSupplyCustomContent(false) |
434 , m_hasOriginalStartCalled(false) | |
435 { | 335 { |
436 } | 336 } |
437 | 337 |
438 STDMETHODIMP WBPassthru::Start(LPCWSTR szUrl, IInternetProtocolSink *pOIProtSink , | 338 STDMETHODIMP WBPassthru::Start(LPCWSTR szUrl, IInternetProtocolSink *pOIProtSink , |
439 IInternetBindInfo *pOIBindInfo, DWORD grfPI, HANDLE_PTR dwReserved) | 339 IInternetBindInfo *pOIBindInfo, DWORD grfPI, HANDLE_PTR dwReserved) |
440 { | 340 { |
441 ATLASSERT(m_spInternetProtocol != 0); | 341 ATLASSERT(m_spInternetProtocol != 0); |
442 if (!m_spInternetProtocol) | 342 if (!m_spInternetProtocol) |
443 { | 343 { |
444 return E_UNEXPECTED; | 344 return E_UNEXPECTED; |
445 } | 345 } |
446 | 346 |
447 return OnStart(szUrl, pOIProtSink, pOIBindInfo, grfPI, dwReserved, m_spInterne tProtocol); | 347 return OnStart(szUrl, pOIProtSink, pOIBindInfo, grfPI, dwReserved, m_spInterne tProtocol); |
448 } | 348 } |
449 | 349 |
450 STDMETHODIMP WBPassthru::Read(/* [in, out] */ void *pv,/* [in] */ ULONG cb,/* [o ut] */ ULONG *pcbRead) | 350 STDMETHODIMP WBPassthru::Read(/* [in, out] */ void *pv,/* [in] */ ULONG cb,/* [o ut] */ ULONG *pcbRead) |
451 { | 351 { |
452 WBPassthruSink* pSink = GetSink(); | 352 WBPassthruSink* pSink = GetSink(); |
453 return pSink->OnRead(pv, cb, pcbRead); | 353 return pSink->OnRead(pv, cb, pcbRead); |
454 } | 354 } |
455 | 355 |
456 STDMETHODIMP WBPassthru::LockRequest(/* [in] */ DWORD options) | 356 STDMETHODIMP WBPassthru::LockRequest(/* [in] */ DWORD options) |
457 { | 357 { |
458 if (!m_hasOriginalStartCalled) | |
459 { | |
460 return S_OK; | |
461 } | |
462 return BaseClass::LockRequest(options); | 358 return BaseClass::LockRequest(options); |
463 } | 359 } |
464 | 360 |
465 STDMETHODIMP WBPassthru::UnlockRequest() | 361 STDMETHODIMP WBPassthru::UnlockRequest() |
466 { | 362 { |
467 if (!m_hasOriginalStartCalled) | |
468 { | |
469 return S_OK; | |
470 } | |
471 return BaseClass::UnlockRequest(); | 363 return BaseClass::UnlockRequest(); |
472 } | 364 } |
OLD | NEW |