Fix a couple of deadlocks caused by emitting ServersListChanged
authorCarl Hetherington <cth@carlh.net>
Tue, 12 Feb 2019 22:18:43 +0000 (22:18 +0000)
committerCarl Hetherington <cth@carlh.net>
Tue, 12 Feb 2019 22:18:43 +0000 (22:18 +0000)
with a lock on _servers_mutex; handlers to that signal may call
::servers() which tries to take a lock on the same mutex.

src/lib/encode_server_finder.cc

index 1837101b580a550fca5f53ba979c4882efd6eed1..6cdd8ce3cc11adb05062c9fd8fdc8744588e33b5 100644 (file)
@@ -149,10 +149,10 @@ try
                }
 
                /* Discard servers that we haven't seen for a while */
+               bool removed = false;
                {
                        boost::mutex::scoped_lock lm (_servers_mutex);
 
-                       bool removed = false;
                        list<EncodeServerDescription>::iterator i = _servers.begin();
                        while (i != _servers.end()) {
                                if (i->last_seen_seconds() > 2 * interval) {
@@ -165,10 +165,10 @@ try
                                        ++i;
                                }
                        }
+               }
 
-                       if (removed) {
-                               emit (boost::bind (boost::ref (ServersListChanged)));
-                       }
+               if (removed) {
+                       emit (boost::bind (boost::ref (ServersListChanged)));
                }
 
                boost::mutex::scoped_lock lm (_search_condition_mutex);
@@ -236,8 +236,10 @@ EncodeServerFinder::handle_accept (boost::system::error_code ec, shared_ptr<Sock
                (*found)->set_seen ();
        } else {
                EncodeServerDescription sd (ip, xml->number_child<int>("Threads"), xml->optional_number_child<int>("Version").get_value_or(0));
-               boost::mutex::scoped_lock lm (_servers_mutex);
-               _servers.push_back (sd);
+               {
+                       boost::mutex::scoped_lock lm (_servers_mutex);
+                       _servers.push_back (sd);
+               }
                emit (boost::bind (boost::ref (ServersListChanged)));
        }