[Libguestfs] [PATCH nbdkit 3/3] server: Wait for connection threads to exit before unloading plugins.

Richard W.M. Jones rjones at redhat.com
Mon Nov 4 15:42:34 UTC 2019


A frequent cause of crashes on shutdown happens when the quit signal
has been received and the main thread and other threads race each
other at shutdown.  As in the typical stack trace below what happens
is that the main thread unloads the plugins while they are still being
used by one of the connection threads, causing the connection thread
to segfault after calling dlclosed functions.

To avoid this simply count the number of connection threads we create,
and at exit in the main thread wait until this count drops to 0 before
we actually start unloading anything.

  Thread 2 (Thread 0x7f8fb054ea40 (LWP 3105233)):
  #0  _asn1_set_down (down=0x5633dd26c010, node=0x5633dd26be70) at parser_aux.h:116
  #1  asn1_delete_structure2 (structure=structure at entry=0x7f8fb0dd3fa0 <_gnutls_pkix1_asn>, flags=flags at entry=0) at structure.c:328
  #2  0x00007f8fb06e702b in asn1_delete_structure (structure=structure at entry=0x7f8fb0dd3fa0 <_gnutls_pkix1_asn>) at structure.c:293
  #3  0x00007f8fb0c66544 in _gnutls_global_deinit (destructor=1) at global.c:419
  #4  0x00007f8fb0e0d13b in _dl_fini () at dl-fini.c:138
  #5  0x00007f8fb0a0ae87 in __run_exit_handlers (status=0, listp=0x7f8fb0b8e578 <__exit_funcs>, run_list_atexit=run_list_atexit at entry=true, run_dtors=run_dtors at entry=true) at exit.c:108
  #6  0x00007f8fb0a0b040 in __GI_exit (status=<optimized out>) at exit.c:139
  #7  0x00005633d47626ee in main (argc=<optimized out>, argv=0x7ffecd6115d8) at main.c:705

  Thread 1 (Thread 0x7f8fb054d700 (LWP 3105257)):
  #0  backend_finalize (b=<optimized out>, conn=conn at entry=0x5633dd287c40) at backend.c:227
  #1  0x00005633d476579f in handle_single_connection (sockin=<optimized out>, sockout=<optimized out>) at connections.c:222
  #2  0x00005633d476e9e9 in start_thread (datav=0x5633dd269620) at sockets.c:351
  #3  0x00007f8fb0b9e4e2 in start_thread (arg=<optimized out>) at pthread_create.c:479
  #4  0x00007f8fb0acd643 in clone () at ../sysdeps/unix/sysv/linux/x86_64/clone.S:95
---
 server/sockets.c | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/server/sockets.c b/server/sockets.c
index 11bab6c..3351286 100644
--- a/server/sockets.c
+++ b/server/sockets.c
@@ -322,6 +322,17 @@ bind_vsock (size_t *nr_socks)
 #endif
 }
 
+/* This counts the number of connection threads running (note: not the
+ * number of worker threads, each connection thread will start many
+ * worker independent threads in the current implementation).  The
+ * purpose of this is so we can wait for all the connection threads to
+ * exit before we return from accept_incoming_connections, so that
+ * unload-time actions happen with no connections open.
+ */
+static pthread_mutex_t count_mutex = PTHREAD_MUTEX_INITIALIZER;
+static pthread_cond_t count_cond = PTHREAD_COND_INITIALIZER;
+static unsigned count = 0;
+
 struct thread_data {
   int sock;
   size_t instance_num;
@@ -334,6 +345,10 @@ start_thread (void *datav)
 
   debug ("accepted connection");
 
+  pthread_mutex_lock (&count_mutex);
+  count++;
+  pthread_mutex_unlock (&count_mutex);
+
   /* Set thread-local data. */
   threadlocal_new_server_thread ();
   threadlocal_set_instance_num (data->instance_num);
@@ -341,6 +356,12 @@ start_thread (void *datav)
   handle_single_connection (data->sock, data->sock);
 
   free (data);
+
+  pthread_mutex_lock (&count_mutex);
+  count--;
+  pthread_cond_signal (&count_cond);
+  pthread_mutex_unlock (&count_mutex);
+
   return NULL;
 }
 
@@ -467,10 +488,24 @@ void
 accept_incoming_connections (int *socks, size_t nr_socks)
 {
   size_t i;
+  int err;
 
   while (!quit)
     check_sockets_and_quit_fd (socks, nr_socks);
 
+  /* Wait for all threads to exit. */
+  pthread_mutex_lock (&count_mutex);
+  for (;;) {
+    if (count == 0)
+      break;
+    err = pthread_cond_wait (&count_cond, &count_mutex);
+    if (err != 0) {
+      errno = err;
+      perror ("pthread_cond_wait");
+    }
+  }
+  pthread_mutex_unlock (&count_mutex);
+
   for (i = 0; i < nr_socks; ++i)
     close (socks[i]);
   free (socks);
-- 
2.23.0




More information about the Libguestfs mailing list