Merge pull request #23365 from yashykt/deadlockws

Fix possible deadlock in RemoveExternalConnectivityWatcher
pull/23391/head
Yash Tibrewal 4 years ago committed by GitHub
commit 013f0acf3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 16
      src/core/ext/filters/client_channel/client_channel.cc

@ -184,12 +184,18 @@ class ChannelData {
void RemoveExternalConnectivityWatcher(grpc_closure* on_complete, void RemoveExternalConnectivityWatcher(grpc_closure* on_complete,
bool cancel) { bool cancel) {
MutexLock lock(&external_watchers_mu_); ExternalConnectivityWatcher* watcher = nullptr;
auto it = external_watchers_.find(on_complete); {
if (it != external_watchers_.end()) { MutexLock lock(&external_watchers_mu_);
if (cancel) it->second->Cancel(); auto it = external_watchers_.find(on_complete);
external_watchers_.erase(it); if (it != external_watchers_.end()) {
watcher = it->second;
external_watchers_.erase(it);
}
} }
// watcher->Cancel() will hop into the WorkSerializer, so we have to unlock
// the mutex before calling it.
if (watcher != nullptr && cancel) watcher->Cancel();
} }
int NumExternalConnectivityWatchers() const { int NumExternalConnectivityWatchers() const {

Loading…
Cancel
Save