]> granicus.if.org Git - libevent/commit
Fix race caused by event_active
authorvjpai <vpai@google.com>
Mon, 22 Sep 2014 19:19:37 +0000 (12:19 -0700)
committerNick Mathewson <nickm@torproject.org>
Mon, 1 Dec 2014 00:24:15 +0000 (19:24 -0500)
commit3c7d6fcaff330ff0f18e776da84ed836bf580d45
treea1703cdf226ff5a78808721ce951bf14b3f6a109
parentb34e4ac3a4261421285b4b3c98c749e07c14227e
Fix race caused by event_active

There is a race between manual event_active and natural event activation. If both happen at the same time on the same FD, they would both be protected by the same event base lock except for 1 LoC where the fields of struct event are read without any kind of lock. This commit does those reads into local variables inside the lock and then invokes the callback with those local arguments outside the lock. In 2.0-stable, none of this is inside the lock; in HEAD, only the callback is read inside the lock. This gets the callback and all 3 arguments inside the lock before calling it outside the lock.
event.c