Opened on 12/17/2015 at 03:43:30 PM

Last modified on 10/08/2019 at 05:45:17 PM

#3433 new defect

Create effective atomicity between external interfaces such as events and factories

Reported by: eric@adblockplus.org Assignee:
Priority: P3 Milestone:
Module: Adblock-Plus-for-Internet-Explorer Keywords:
Cc: Blocked By:
Blocking: #3382 Platform: Internet Explorer
Ready: no Confidential: no
Tester: Unknown Verified working: no
Review URL(s):

Description

Background

The plugin relies on multiple source of external events to function, and these events must all be present for proper operation. Principal among these are COM events from the BHO site, a IWebBrowser2 interface, and the two factories for APP protocols. Ideally, these should be enable and disabled atomically, so that it's never the case that one is on and one is off. In our present code, though, there are potential race conditions where this situation is possible.

It's actually more complicated than that, since the APP factories are registered on a per-process basis, the protocol instances from these factories are on the basis of a policy inside IE, and the COM events on a per-instance basis.

Unfortunately, there's nothing like a transaction manager that can provide atomicity through an API. Instead, we'll need to simulate the effect of an atomic change by altering the behavior of the components, allowing them both a "do nothing" and "do something" state. We may not be able to atomically change the registrations, but we can atomically change between enabled and disabled states.

What to change

For each relevant component, add an enable-disable flag to the appropriate class definition. For each of these flags, implement an appropriate "do-nothing" behavior. For COM events, that means simply ignoring the events. For APP factories, it's rather more complicated. We can unregister the factories entirely, have the factory provide only a default implementation, have the factory provide disabled protocol objects, or some combination of these.

Create a facility that enables the desired atomicity. That facility can take most any form, but it should be properly encapsulated so that the changes are always made consistently.

Ensure atomicity in all the situation where it matters: around life cycle events (construction/destruction/SetSite), disabling because of an error condition (for example, failure of detached initialization), enabling/disabling by explicit user action.

Attachments (0)

Change History (2)

comment:1 Changed on 01/08/2016 at 02:02:07 PM by eric@adblockplus.org

  • Priority changed from Unknown to P3

comment:2 Changed on 10/07/2019 at 08:38:44 AM by ansonn

spam

Last edited on 10/08/2019 at 05:45:17 PM by kzar

Add Comment

Modify Ticket

Change Properties
Action
as new .
as The resolution will be set. Next status will be 'closed'.
to The owner will be changed from (none).
Next status will be 'reviewing'.
 
Note: See TracTickets for help on using tickets.