Compile liblttng-ust-baddr c files into liblttng-ust
[lttng-ust.git] / liblttng-ust / lttng-ust-comm.c
index 597712bc1313057daaa4ee32730b46c3951eb78d..b99bf00edec2df760df075f0ad77597a3e1a54d1 100644 (file)
@@ -34,6 +34,7 @@
 #include <time.h>
 #include <assert.h>
 #include <signal.h>
+#include <dlfcn.h>
 #include <urcu/uatomic.h>
 #include <urcu/futex.h>
 #include <urcu/compiler.h>
@@ -51,6 +52,7 @@
 #include "lttng-tracer-core.h"
 #include "compat.h"
 #include "../libringbuffer/tlsfixup.h"
+#include "lttng-ust-baddr.h"
 
 /*
  * Has lttng ust comm constructor been called ?
@@ -106,6 +108,7 @@ struct sock_info {
 
        char wait_shm_path[PATH_MAX];
        char *wait_shm_mmap;
+       struct lttng_session *session_enabled;
 };
 
 /* Socket from app (connect) to session daemon (listen) for communication */
@@ -122,6 +125,8 @@ struct sock_info global_apps = {
        .notify_socket = -1,
 
        .wait_shm_path = "/" LTTNG_UST_WAIT_FILENAME,
+
+       .session_enabled = NULL,
 };
 
 /* TODO: allow global_apps_sock_path override */
@@ -135,6 +140,8 @@ struct sock_info local_apps = {
 
        .socket = -1,
        .notify_socket = -1,
+
+       .session_enabled = NULL,
 };
 
 static int wait_poll_fallback;
@@ -1206,6 +1213,14 @@ restart:
                        ret = handle_message(sock_info, sock, &lum);
                        if (ret) {
                                ERR("Error handling message for %s socket", sock_info->name);
+                       } else {
+                               struct lttng_session *session;
+
+                               session = sock_info->session_enabled;
+                               if (session) {
+                                       sock_info->session_enabled = NULL;
+                                       lttng_ust_baddr_statedump(session);
+                               }
                        }
                        continue;
                default:
@@ -1519,3 +1534,10 @@ void ust_after_fork_child(sigset_t *restore_sigset)
        ust_after_fork_common(restore_sigset);
        lttng_ust_init();
 }
+
+void lttng_ust_sockinfo_session_enabled(void *owner,
+               struct lttng_session *session_enabled)
+{
+       struct sock_info *sock_info = owner;
+       sock_info->session_enabled = session_enabled;
+}
This page took 0.024558 seconds and 4 git commands to generate.