After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 597835 - impossible problem: non-blocking race-free watches
impossible problem: non-blocking race-free watches
Status: RESOLVED FIXED
Product: dconf
Classification: Core
Component: dconf
git master
Other All
: Normal normal
: ---
Assigned To: dconf-maint
dconf-maint
: 620641 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2009-10-08 17:23 UTC by Allison Karlitskaya (desrt)
Modified: 2010-11-15 20:28 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Allison Karlitskaya (desrt) 2009-10-08 17:23:26 UTC
the proper behaviour when monitoring for a change in some variable is this pattern, _always in this order_

1) register your watch.
2) check the current state.

you may get an extra notice (ie: you get a change notification that was sent before you do your current-state check) but you can never have an out-of-date value.


if dconf is to have non-blocking watches (which it ought to) then there is a problem: the 'check current state' will likely complete before the watch is fully registered with the bus daemon.  consider the case of process A starting up while process B is already running (and making changes):


 DB starts with /some/key = false

 - process A says "watch" -> async dbus AddMatch sent
 - process A reads /some/key, and it is 'false'
 - process B changes /some/key to 'true' (sync, async, whatever)
 - dconf writer sends change notification for /some/key
 - dbus daemon emits changed signal to nobody (since nobody is watching yet)
 - dbus daemon receive AddMatch message and handles it

now the key is set to 'true' but A thinks that it is 'false'.

this is an *extremely* narrow window.  in practical reality you'd probably have to get extremely unlucky for this to even be vaguely possible.  unlucky happens, though, so it ought to be fixed somehow.
Comment 1 Allison Karlitskaya (desrt) 2010-06-02 12:07:57 UTC
the new file format with the shared memory look-aside gives us two abilities:

  1) the ability to check that no changes have occured
  2) the ability to intelligently report the changes that have occured to the shared region (by iteration)
  3) if the hash file itself changed, ability to detect this and signal that everything is changed.  quite rare, this case.

there's a good possibility that this impossible bug will be fixed soon.
Comment 2 Allison Karlitskaya (desrt) 2010-06-07 13:33:51 UTC
*** Bug 620641 has been marked as a duplicate of this bug. ***
Comment 3 Allison Karlitskaya (desrt) 2010-11-15 20:28:06 UTC
commit fbc39a75b3f1876ad11996a170f364803c022e0e
Author: Ryan Lortie <desrt@velocity.(none)>
Date:   Mon Nov 15 15:25:35 2010 -0500

    Rewrite GSettings backend
    
    The GSettings backend now has its own worker thread and all operations
    are fully asynchronous.  This significantly increases the startup
    performance of GSettings and substantially reduces our abuse of the
    GDBus API (thus improving code readability).
    
    Closes bug #597835.