Run clang-format on the whole tree
[lttng-tools.git] / src / bin / lttng-sessiond / notification-thread-events.cpp
index 64c3fc4f3f03d1d1116b04237a03cbbb4c8cbd83..8c009f748cc39f28129759ff46a1fc2bccfb2303 100644 (file)
@@ -8,47 +8,46 @@
 #include "lttng/action/action.h"
 #include "lttng/trigger/trigger-internal.hpp"
 #define _LGPL_SOURCE
-#include <urcu.h>
-#include <urcu/rculfhash.h>
+#include "condition-internal.hpp"
+#include "event-notifier-error-accounting.hpp"
+#include "kernel.hpp"
+#include "lttng-sessiond.hpp"
+#include "notification-thread-commands.hpp"
+#include "notification-thread-events.hpp"
+#include "notification-thread.hpp"
 
 #include <common/defaults.hpp>
+#include <common/dynamic-buffer.hpp>
 #include <common/error.hpp>
 #include <common/futex.hpp>
-#include <common/unix.hpp>
-#include <common/dynamic-buffer.hpp>
 #include <common/hashtable/utils.hpp>
-#include <common/sessiond-comm/sessiond-comm.hpp>
 #include <common/macros.hpp>
-#include <lttng/condition/condition.h>
+#include <common/sessiond-comm/sessiond-comm.hpp>
+#include <common/unix.hpp>
+
 #include <lttng/action/action-internal.hpp>
 #include <lttng/action/list-internal.hpp>
-#include <lttng/domain-internal.hpp>
-#include <lttng/notification/notification-internal.hpp>
-#include <lttng/condition/condition-internal.hpp>
 #include <lttng/condition/buffer-usage-internal.hpp>
+#include <lttng/condition/condition-internal.hpp>
+#include <lttng/condition/condition.h>
+#include <lttng/condition/event-rule-matches-internal.hpp>
 #include <lttng/condition/session-consumed-size-internal.hpp>
 #include <lttng/condition/session-rotation-internal.hpp>
-#include <lttng/condition/event-rule-matches-internal.hpp>
 #include <lttng/domain-internal.hpp>
-#include <lttng/notification/channel-internal.hpp>
-#include <lttng/trigger/trigger-internal.hpp>
 #include <lttng/event-rule/event-rule-internal.hpp>
 #include <lttng/location-internal.hpp>
+#include <lttng/notification/channel-internal.hpp>
+#include <lttng/notification/notification-internal.hpp>
+#include <lttng/trigger/trigger-internal.hpp>
 
+#include <fcntl.h>
+#include <inttypes.h>
 #include <time.h>
 #include <unistd.h>
-#include <inttypes.h>
-#include <fcntl.h>
-
-#include "condition-internal.hpp"
-#include "event-notifier-error-accounting.hpp"
-#include "notification-thread.hpp"
-#include "notification-thread-events.hpp"
-#include "notification-thread-commands.hpp"
-#include "lttng-sessiond.hpp"
-#include "kernel.hpp"
+#include <urcu.h>
+#include <urcu/rculfhash.h>
 
-#define CLIENT_POLL_EVENTS_IN (LPOLLIN | LPOLLRDHUP)
+#define CLIENT_POLL_EVENTS_IN    (LPOLLIN | LPOLLRDHUP)
 #define CLIENT_POLL_EVENTS_IN_OUT (CLIENT_POLL_EVENTS_IN | LPOLLOUT)
 
 /* The tracers currently limit the capture size to PIPE_BUF (4kb on linux). */
@@ -141,167 +140,138 @@ struct channel_state_sample {
 
 static unsigned long hash_channel_key(struct channel_key *key);
 static int evaluate_buffer_condition(const struct lttng_condition *condition,
-               struct lttng_evaluation **evaluation,
-               const struct notification_thread_state *state,
-               const struct channel_state_sample *previous_sample,
-               const struct channel_state_sample *latest_sample,
-               struct channel_info *channel_info);
-static
-int send_evaluation_to_clients(const struct lttng_trigger *trigger,
-               const struct lttng_evaluation *evaluation,
-               struct notification_client_list *client_list,
-               struct notification_thread_state *state,
-               uid_t channel_uid, gid_t channel_gid);
-
+                                    struct lttng_evaluation **evaluation,
+                                    const struct notification_thread_state *state,
+                                    const struct channel_state_sample *previous_sample,
+                                    const struct channel_state_sample *latest_sample,
+                                    struct channel_info *channel_info);
+static int send_evaluation_to_clients(const struct lttng_trigger *trigger,
+                                     const struct lttng_evaluation *evaluation,
+                                     struct notification_client_list *client_list,
+                                     struct notification_thread_state *state,
+                                     uid_t channel_uid,
+                                     gid_t channel_gid);
 
 /* session_info API */
-static
-void session_info_destroy(void *_data);
-static
-void session_info_get(struct session_info *session_info);
-static
-void session_info_put(struct session_info *session_info);
-static
-struct session_info *session_info_create(uint64_t id,
-               const char *name,
-               uid_t uid,
-               gid_t gid,
-               struct lttng_session_trigger_list *trigger_list,
-               struct cds_lfht *sessions_ht);
-static void session_info_add_channel(
-               struct session_info *session_info, struct channel_info *channel_info);
-static
-void session_info_remove_channel(struct session_info *session_info,
-               struct channel_info *channel_info);
+static void session_info_destroy(void *_data);
+static void session_info_get(struct session_info *session_info);
+static void session_info_put(struct session_info *session_info);
+static struct session_info *session_info_create(uint64_t id,
+                                               const char *name,
+                                               uid_t uid,
+                                               gid_t gid,
+                                               struct lttng_session_trigger_list *trigger_list,
+                                               struct cds_lfht *sessions_ht);
+static void session_info_add_channel(struct session_info *session_info,
+                                    struct channel_info *channel_info);
+static void session_info_remove_channel(struct session_info *session_info,
+                                       struct channel_info *channel_info);
 
 /* lttng_session_trigger_list API */
-static
-struct lttng_session_trigger_list *lttng_session_trigger_list_create(
-               const char *session_name,
-               struct cds_lfht *session_triggers_ht);
-static
-struct lttng_session_trigger_list *lttng_session_trigger_list_build(
-               const struct notification_thread_state *state,
-               const char *session_name);
-static
-void lttng_session_trigger_list_destroy(
-               struct lttng_session_trigger_list *list);
-static
-int lttng_session_trigger_list_add(struct lttng_session_trigger_list *list,
-               struct lttng_trigger *trigger);
-
-static
-int client_handle_transmission_status(
-               struct notification_client *client,
-               enum client_transmission_status transmission_status,
-               struct notification_thread_state *state);
-
-static
-int handle_one_event_notifier_notification(
-               struct notification_thread_state *state,
-               int pipe, enum lttng_domain_type domain);
-
-static
-void free_lttng_trigger_ht_element_rcu(struct rcu_head *node);
-
-static
-int match_client_socket(struct cds_lfht_node *node, const void *key)
+static struct lttng_session_trigger_list *
+lttng_session_trigger_list_create(const char *session_name, struct cds_lfht *session_triggers_ht);
+static struct lttng_session_trigger_list *
+lttng_session_trigger_list_build(const struct notification_thread_state *state,
+                                const char *session_name);
+static void lttng_session_trigger_list_destroy(struct lttng_session_trigger_list *list);
+static int lttng_session_trigger_list_add(struct lttng_session_trigger_list *list,
+                                         struct lttng_trigger *trigger);
+
+static int client_handle_transmission_status(struct notification_client *client,
+                                            enum client_transmission_status transmission_status,
+                                            struct notification_thread_state *state);
+
+static int handle_one_event_notifier_notification(struct notification_thread_state *state,
+                                                 int pipe,
+                                                 enum lttng_domain_type domain);
+
+static void free_lttng_trigger_ht_element_rcu(struct rcu_head *node);
+
+static int match_client_socket(struct cds_lfht_node *node, const void *key)
 {
        /* This double-cast is intended to supress pointer-to-cast warning. */
        const int socket = (int) (intptr_t) key;
-       const struct notification_client *client = caa_container_of(node,
-                       struct notification_client, client_socket_ht_node);
+       const struct notification_client *client =
+               caa_container_of(node, struct notification_client, client_socket_ht_node);
 
        return client->socket == socket;
 }
 
-static
-int match_client_id(struct cds_lfht_node *node, const void *key)
+static int match_client_id(struct cds_lfht_node *node, const void *key)
 {
        /* This double-cast is intended to supress pointer-to-cast warning. */
        const notification_client_id id = *((notification_client_id *) key);
-       const struct notification_client *client = lttng::utils::container_of(
-                       node, &notification_client::client_id_ht_node);
+       const struct notification_client *client =
+               lttng::utils::container_of(node, &notification_client::client_id_ht_node);
 
        return client->id == id;
 }
 
-static
-int match_channel_trigger_list(struct cds_lfht_node *node, const void *key)
+static int match_channel_trigger_list(struct cds_lfht_node *node, const void *key)
 {
        struct channel_key *channel_key = (struct channel_key *) key;
        struct lttng_channel_trigger_list *trigger_list;
 
-       trigger_list = caa_container_of(node, struct lttng_channel_trigger_list,
-                       channel_triggers_ht_node);
+       trigger_list =
+               caa_container_of(node, struct lttng_channel_trigger_list, channel_triggers_ht_node);
 
        return !!((channel_key->key == trigger_list->channel_key.key) &&
-                       (channel_key->domain == trigger_list->channel_key.domain));
+                 (channel_key->domain == trigger_list->channel_key.domain));
 }
 
-static
-int match_session_trigger_list(struct cds_lfht_node *node, const void *key)
+static int match_session_trigger_list(struct cds_lfht_node *node, const void *key)
 {
        const char *session_name = (const char *) key;
        struct lttng_session_trigger_list *trigger_list;
 
-       trigger_list = caa_container_of(node, struct lttng_session_trigger_list,
-                       session_triggers_ht_node);
+       trigger_list =
+               caa_container_of(node, struct lttng_session_trigger_list, session_triggers_ht_node);
 
        return !!(strcmp(trigger_list->session_name, session_name) == 0);
 }
 
-static
-int match_channel_state_sample(struct cds_lfht_node *node, const void *key)
+static int match_channel_state_sample(struct cds_lfht_node *node, const void *key)
 {
        struct channel_key *channel_key = (struct channel_key *) key;
        struct channel_state_sample *sample;
 
-       sample = caa_container_of(node, struct channel_state_sample,
-                       channel_state_ht_node);
+       sample = caa_container_of(node, struct channel_state_sample, channel_state_ht_node);
 
        return !!((channel_key->key == sample->key.key) &&
-                       (channel_key->domain == sample->key.domain));
+                 (channel_key->domain == sample->key.domain));
 }
 
-static
-int match_channel_info(struct cds_lfht_node *node, const void *key)
+static int match_channel_info(struct cds_lfht_node *node, const void *key)
 {
        struct channel_key *channel_key = (struct channel_key *) key;
        struct channel_info *channel_info;
 
-       channel_info = caa_container_of(node, struct channel_info,
-                       channels_ht_node);
+       channel_info = caa_container_of(node, struct channel_info, channels_ht_node);
 
        return !!((channel_key->key == channel_info->key.key) &&
-                       (channel_key->domain == channel_info->key.domain));
+                 (channel_key->domain == channel_info->key.domain));
 }
 
-static
-int match_trigger(struct cds_lfht_node *node, const void *key)
+static int match_trigger(struct cds_lfht_node *node, const void *key)
 {
        struct lttng_trigger *trigger_key = (struct lttng_trigger *) key;
        struct lttng_trigger_ht_element *trigger_ht_element;
 
-       trigger_ht_element = caa_container_of(node, struct lttng_trigger_ht_element,
-                       node);
+       trigger_ht_element = caa_container_of(node, struct lttng_trigger_ht_element, node);
 
        return !!lttng_trigger_is_equal(trigger_key, trigger_ht_element->trigger);
 }
 
-static
-int match_trigger_token(struct cds_lfht_node *node, const void *key)
+static int match_trigger_token(struct cds_lfht_node *node, const void *key)
 {
        const uint64_t *_key = (uint64_t *) key;
        struct notification_trigger_tokens_ht_element *element;
 
-       element = caa_container_of(node,
-                       struct notification_trigger_tokens_ht_element, node);
+       element = caa_container_of(node, struct notification_trigger_tokens_ht_element, node);
        return *_key == element->token;
 }
 
-static
-int match_client_list_condition(struct cds_lfht_node *node, const void *key)
+static int match_client_list_condition(struct cds_lfht_node *node, const void *key)
 {
        struct lttng_condition *condition_key = (struct lttng_condition *) key;
        struct notification_client_list *client_list;
@@ -309,52 +279,46 @@ int match_client_list_condition(struct cds_lfht_node *node, const void *key)
 
        LTTNG_ASSERT(condition_key);
 
-       client_list = caa_container_of(node, struct notification_client_list,
-                       notification_trigger_clients_ht_node);
+       client_list = caa_container_of(
+               node, struct notification_client_list, notification_trigger_clients_ht_node);
        condition = client_list->condition;
 
        return !!lttng_condition_is_equal(condition_key, condition);
 }
 
-static
-int match_session_info(struct cds_lfht_node *node, const void *key)
+static int match_session_info(struct cds_lfht_node *node, const void *key)
 {
        const auto session_id = *((uint64_t *) key);
-       const auto *session_info = lttng::utils::container_of(
-               node, &session_info::sessions_ht_node);
+       const auto *session_info =
+               lttng::utils::container_of(node, &session_info::sessions_ht_node);
 
        return session_id == session_info->id;
 }
 
-static
-unsigned long hash_session_info_id(uint64_t id)
+static unsigned long hash_session_info_id(uint64_t id)
 {
        return hash_key_u64(&id, lttng_ht_seed);
 }
 
-static
-unsigned long hash_session_info(const struct session_info *session_info)
+static unsigned long hash_session_info(const struct session_info *session_info)
 {
        return hash_session_info_id(session_info->id);
 }
 
-static
-struct session_info *get_session_info_by_id(
-               const struct notification_thread_state *state, uint64_t id)
+static struct session_info *get_session_info_by_id(const struct notification_thread_state *state,
+                                                  uint64_t id)
 {
        struct cds_lfht_iter iter;
        struct cds_lfht_node *node;
        lttng::urcu::read_lock_guard read_lock_guard;
 
-       cds_lfht_lookup(state->sessions_ht,
-                       hash_session_info_id(id),
-                       match_session_info,
-                       &id,
-                       &iter);
+       cds_lfht_lookup(
+               state->sessions_ht, hash_session_info_id(id), match_session_info, &id, &iter);
        node = cds_lfht_iter_get_node(&iter);
 
        if (node) {
-               auto session_info = lttng::utils::container_of(node, &session_info::sessions_ht_node);
+               auto session_info =
+                       lttng::utils::container_of(node, &session_info::sessions_ht_node);
 
                session_info_get(session_info);
                return session_info;
@@ -363,9 +327,8 @@ struct session_info *get_session_info_by_id(
        return NULL;
 }
 
-static
-struct session_info *get_session_info_by_name(
-               const struct notification_thread_state *state, const char *name)
+static struct session_info *get_session_info_by_name(const struct notification_thread_state *state,
+                                                    const char *name)
 {
        uint64_t session_id;
        const auto found = sample_session_id_by_name(name, &session_id);
@@ -373,9 +336,7 @@ struct session_info *get_session_info_by_name(
        return found ? get_session_info_by_id(state, session_id) : NULL;
 }
 
-static
-const char *notification_command_type_str(
-               enum notification_thread_command_type type)
+static const char *notification_command_type_str(enum notification_thread_command_type type)
 {
        switch (type) {
        case NOTIFICATION_COMMAND_TYPE_REGISTER_TRIGGER:
@@ -415,9 +376,7 @@ const char *notification_command_type_str(
  * Match trigger based on name and credentials only.
  * Name duplication is NOT allowed for the same uid.
  */
-static
-int match_trigger_by_name_uid(struct cds_lfht_node *node,
-               const void *key)
+static int match_trigger_by_name_uid(struct cds_lfht_node *node, const void *key)
 {
        bool match = false;
        const char *element_trigger_name;
@@ -425,17 +384,12 @@ int match_trigger_by_name_uid(struct cds_lfht_node *node,
        enum lttng_trigger_status status;
        const struct lttng_credentials *key_creds;
        const struct lttng_credentials *node_creds;
-       const struct lttng_trigger *trigger_key =
-                       (const struct lttng_trigger *) key;
+       const struct lttng_trigger *trigger_key = (const struct lttng_trigger *) key;
        const struct lttng_trigger_ht_element *trigger_ht_element =
-                       caa_container_of(node,
-                               struct lttng_trigger_ht_element,
-                               node_by_name_uid);
+               caa_container_of(node, struct lttng_trigger_ht_element, node_by_name_uid);
 
-       status = lttng_trigger_get_name(trigger_ht_element->trigger,
-                       &element_trigger_name);
-       element_trigger_name = status == LTTNG_TRIGGER_STATUS_OK ?
-                       element_trigger_name : NULL;
+       status = lttng_trigger_get_name(trigger_ht_element->trigger, &element_trigger_name);
+       element_trigger_name = status == LTTNG_TRIGGER_STATUS_OK ? element_trigger_name : NULL;
 
        status = lttng_trigger_get_name(trigger_key, &key_name);
        key_name = status == LTTNG_TRIGGER_STATUS_OK ? key_name : NULL;
@@ -467,8 +421,7 @@ end:
 /*
  * Hash trigger based on name and credentials only.
  */
-static
-unsigned long hash_trigger_by_name_uid(const struct lttng_trigger *trigger)
+static unsigned long hash_trigger_by_name_uid(const struct lttng_trigger *trigger)
 {
        unsigned long hash = 0;
        const struct lttng_credentials *trigger_creds;
@@ -482,29 +435,26 @@ unsigned long hash_trigger_by_name_uid(const struct lttng_trigger *trigger)
 
        trigger_creds = lttng_trigger_get_credentials(trigger);
        hash ^= hash_key_ulong((void *) (unsigned long) LTTNG_OPTIONAL_GET(trigger_creds->uid),
-                       lttng_ht_seed);
+                              lttng_ht_seed);
 
        return hash;
 }
 
-static
-unsigned long hash_channel_key(struct channel_key *key)
+static unsigned long hash_channel_key(struct channel_key *key)
 {
        unsigned long key_hash = hash_key_u64(&key->key, lttng_ht_seed);
-       unsigned long domain_hash = hash_key_ulong(
-               (void *) (unsigned long) key->domain, lttng_ht_seed);
+       unsigned long domain_hash =
+               hash_key_ulong((void *) (unsigned long) key->domain, lttng_ht_seed);
 
        return key_hash ^ domain_hash;
 }
 
-static
-unsigned long hash_client_socket(int socket)
+static unsigned long hash_client_socket(int socket)
 {
        return hash_key_ulong((void *) (unsigned long) socket, lttng_ht_seed);
 }
 
-static
-unsigned long hash_client_id(notification_client_id id)
+static unsigned long hash_client_id(notification_client_id id)
 {
        return hash_key_u64(&id, lttng_ht_seed);
 }
@@ -517,9 +467,7 @@ unsigned long hash_client_id(notification_client_id id)
  * For instance, a condition bound to a channel will be evaluated everytime
  * the channel's state is changed by a channel monitoring sample.
  */
-static
-enum lttng_object_type get_condition_binding_object(
-               const struct lttng_condition *condition)
+static enum lttng_object_type get_condition_binding_object(const struct lttng_condition *condition)
 {
        switch (lttng_condition_get_type(condition)) {
        case LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW:
@@ -536,22 +484,19 @@ enum lttng_object_type get_condition_binding_object(
        }
 }
 
-static
-void free_channel_info_rcu(struct rcu_head *node)
+static void free_channel_info_rcu(struct rcu_head *node)
 {
        free(lttng::utils::container_of(node, &channel_info::rcu_node));
 }
 
-static
-void channel_info_destroy(struct channel_info *channel_info)
+static void channel_info_destroy(struct channel_info *channel_info)
 {
        if (!channel_info) {
                return;
        }
 
        if (channel_info->session_info) {
-               session_info_remove_channel(channel_info->session_info,
-                               channel_info);
+               session_info_remove_channel(channel_info->session_info, channel_info);
                session_info_put(channel_info->session_info);
        }
        if (channel_info->name) {
@@ -560,15 +505,13 @@ void channel_info_destroy(struct channel_info *channel_info)
        call_rcu(&channel_info->rcu_node, free_channel_info_rcu);
 }
 
-static
-void free_session_info_rcu(struct rcu_head *node)
+static void free_session_info_rcu(struct rcu_head *node)
 {
        free(lttng::utils::container_of(node, &session_info::rcu_node));
 }
 
 /* Don't call directly, use the ref-counting mechanism. */
-static
-void session_info_destroy(void *_data)
+static void session_info_destroy(void *_data)
 {
        struct session_info *session_info = (struct session_info *) _data;
        int ret;
@@ -583,16 +526,14 @@ void session_info_destroy(void *_data)
        lttng_session_trigger_list_destroy(session_info->trigger_list);
 
        rcu_read_lock();
-       cds_lfht_del(session_info->sessions_ht,
-                       &session_info->sessions_ht_node);
+       cds_lfht_del(session_info->sessions_ht, &session_info->sessions_ht_node);
        rcu_read_unlock();
        free(session_info->name);
        lttng_trace_archive_location_put(session_info->last_state_sample.rotation.location);
        call_rcu(&session_info->rcu_node, free_session_info_rcu);
 }
 
-static
-void session_info_get(struct session_info *session_info)
+static void session_info_get(struct session_info *session_info)
 {
        if (!session_info) {
                return;
@@ -600,8 +541,7 @@ void session_info_get(struct session_info *session_info)
        lttng_ref_get(&session_info->ref);
 }
 
-static
-void session_info_put(struct session_info *session_info)
+static void session_info_put(struct session_info *session_info)
 {
        if (!session_info) {
                return;
@@ -609,13 +549,12 @@ void session_info_put(struct session_info *session_info)
        lttng_ref_put(&session_info->ref);
 }
 
-static
-struct session_info *session_info_create(uint64_t id,
-               const char *name,
-               uid_t uid,
-               gid_t gid,
-               struct lttng_session_trigger_list *trigger_list,
-               struct cds_lfht *sessions_ht)
+static struct session_info *session_info_create(uint64_t id,
+                                               const char *name,
+                                               uid_t uid,
+                                               gid_t gid,
+                                               struct lttng_session_trigger_list *trigger_list,
+                                               struct cds_lfht *sessions_ht)
 {
        struct session_info *session_info;
 
@@ -628,8 +567,8 @@ struct session_info *session_info_create(uint64_t id,
 
        lttng_ref_init(&session_info->ref, session_info_destroy);
 
-       session_info->channel_infos_ht = cds_lfht_new(DEFAULT_HT_SIZE,
-                       1, 0, CDS_LFHT_AUTO_RESIZE | CDS_LFHT_ACCOUNTING, NULL);
+       session_info->channel_infos_ht = cds_lfht_new(
+               DEFAULT_HT_SIZE, 1, 0, CDS_LFHT_AUTO_RESIZE | CDS_LFHT_ACCOUNTING, NULL);
        if (!session_info->channel_infos_ht) {
                goto error;
        }
@@ -652,31 +591,28 @@ error:
        return NULL;
 }
 
-static
-void session_info_add_channel(struct session_info *session_info,
-               struct channel_info *channel_info)
+static void session_info_add_channel(struct session_info *session_info,
+                                    struct channel_info *channel_info)
 {
        rcu_read_lock();
        cds_lfht_add(session_info->channel_infos_ht,
-                       hash_channel_key(&channel_info->key),
-                       &channel_info->session_info_channels_ht_node);
+                    hash_channel_key(&channel_info->key),
+                    &channel_info->session_info_channels_ht_node);
        rcu_read_unlock();
 }
 
-static
-void session_info_remove_channel(struct session_info *session_info,
-               struct channel_info *channel_info)
+static void session_info_remove_channel(struct session_info *session_info,
+                                       struct channel_info *channel_info)
 {
        rcu_read_lock();
-       cds_lfht_del(session_info->channel_infos_ht,
-                       &channel_info->session_info_channels_ht_node);
+       cds_lfht_del(session_info->channel_infos_ht, &channel_info->session_info_channels_ht_node);
        rcu_read_unlock();
 }
 
-static
-struct channel_info *channel_info_create(const char *channel_name,
-               struct channel_key *channel_key, uint64_t channel_capacity,
-               struct session_info *session_info)
+static struct channel_info *channel_info_create(const char *channel_name,
+                                               struct channel_key *channel_key,
+                                               uint64_t channel_capacity,
+                                               struct session_info *session_info)
 {
        struct channel_info *channel_info = zmalloc<struct channel_info>();
 
@@ -714,18 +650,15 @@ bool notification_client_list_get(struct notification_client_list *list)
        return urcu_ref_get_unless_zero(&list->ref);
 }
 
-static
-void free_notification_client_list_rcu(struct rcu_head *node)
+static void free_notification_client_list_rcu(struct rcu_head *node)
 {
-       free(caa_container_of(node, struct notification_client_list,
-                       rcu_node));
+       free(caa_container_of(node, struct notification_client_list, rcu_node));
 }
 
-static
-void notification_client_list_release(struct urcu_ref *list_ref)
+static void notification_client_list_release(struct urcu_ref *list_ref)
 {
        struct notification_client_list *list =
-                       lttng::utils::container_of(list_ref, &notification_client_list::ref);
+               lttng::utils::container_of(list_ref, &notification_client_list::ref);
        struct notification_client_list_element *client_list_element, *tmp;
 
        lttng_condition_put(list->condition);
@@ -734,12 +667,11 @@ void notification_client_list_release(struct urcu_ref *list_ref)
                rcu_read_lock();
 
                cds_lfht_del(list->notification_trigger_clients_ht,
-                               &list->notification_trigger_clients_ht_node);
+                            &list->notification_trigger_clients_ht_node);
                rcu_read_unlock();
                list->notification_trigger_clients_ht = NULL;
        }
-       cds_list_for_each_entry_safe(client_list_element, tmp,
-                                    &list->clients_list, node) {
+       cds_list_for_each_entry_safe (client_list_element, tmp, &list->clients_list, node) {
                free(client_list_element);
        }
 
@@ -749,18 +681,14 @@ void notification_client_list_release(struct urcu_ref *list_ref)
        call_rcu(&list->rcu_node, free_notification_client_list_rcu);
 }
 
-static
-bool condition_applies_to_client(const struct lttng_condition *condition,
-               struct notification_client *client)
+static bool condition_applies_to_client(const struct lttng_condition *condition,
+                                       struct notification_client *client)
 {
        bool applies = false;
        struct lttng_condition_list_element *condition_list_element;
 
-       cds_list_for_each_entry(condition_list_element, &client->condition_list,
-                       node) {
-               applies = lttng_condition_is_equal(
-                               condition_list_element->condition,
-                               condition);
+       cds_list_for_each_entry (condition_list_element, &client->condition_list, node) {
+               applies = lttng_condition_is_equal(condition_list_element->condition, condition);
                if (applies) {
                        break;
                }
@@ -769,10 +697,9 @@ bool condition_applies_to_client(const struct lttng_condition *condition,
        return applies;
 }
 
-static
-struct notification_client_list *notification_client_list_create(
-               struct notification_thread_state *state,
-               const struct lttng_condition *condition)
+static struct notification_client_list *
+notification_client_list_create(struct notification_thread_state *state,
+                               const struct lttng_condition *condition)
 {
        struct notification_client *client;
        struct cds_lfht_iter iter;
@@ -802,8 +729,7 @@ struct notification_client_list *notification_client_list_create(
        client_list->condition = lttng_condition_copy(condition);
 
        /* Build a list of clients to which this new condition applies. */
-       cds_lfht_for_each_entry (state->client_socket_ht, &iter, client,
-                       client_socket_ht_node) {
+       cds_lfht_for_each_entry (state->client_socket_ht, &iter, client, client_socket_ht_node) {
                struct notification_client_list_element *client_list_element;
 
                if (!condition_applies_to_client(condition, client)) {
@@ -820,18 +746,17 @@ struct notification_client_list *notification_client_list_create(
                cds_list_add(&client_list_element->node, &client_list->clients_list);
        }
 
-       client_list->notification_trigger_clients_ht =
-                       state->notification_trigger_clients_ht;
+       client_list->notification_trigger_clients_ht = state->notification_trigger_clients_ht;
 
        rcu_read_lock();
        /*
         * Add the client list to the global list of client list.
         */
        cds_lfht_add_unique(state->notification_trigger_clients_ht,
-                       lttng_condition_hash(client_list->condition),
-                       match_client_list_condition,
-                       client_list->condition,
-                       &client_list->notification_trigger_clients_ht_node);
+                           lttng_condition_hash(client_list->condition),
+                           match_client_list_condition,
+                           client_list->condition,
+                           &client_list->notification_trigger_clients_ht_node);
        rcu_read_unlock();
        goto end;
 
@@ -852,10 +777,9 @@ void notification_client_list_put(struct notification_client_list *list)
 }
 
 /* Provides a reference to the returned list. */
-static
-struct notification_client_list *get_client_list_from_condition(
-       struct notification_thread_state *state,
-       const struct lttng_condition *condition)
+static struct notification_client_list *
+get_client_list_from_condition(struct notification_thread_state *state,
+                              const struct lttng_condition *condition)
 {
        struct cds_lfht_node *node;
        struct cds_lfht_iter iter;
@@ -869,8 +793,8 @@ struct notification_client_list *get_client_list_from_condition(
                        &iter);
        node = cds_lfht_iter_get_node(&iter);
        if (node) {
-               list = lttng::utils::container_of(node,
-                               &notification_client_list::notification_trigger_clients_ht_node);
+               list = lttng::utils::container_of(
+                       node, &notification_client_list::notification_trigger_clients_ht_node);
                list = notification_client_list_get(list) ? list : NULL;
        }
 
@@ -878,12 +802,11 @@ struct notification_client_list *get_client_list_from_condition(
        return list;
 }
 
-static
-int evaluate_channel_condition_for_client(
-               const struct lttng_condition *condition,
-               struct notification_thread_state *state,
-               struct lttng_evaluation **evaluation,
-               uid_t *session_uid, gid_t *session_gid)
+static int evaluate_channel_condition_for_client(const struct lttng_condition *condition,
+                                                struct notification_thread_state *state,
+                                                struct lttng_evaluation **evaluation,
+                                                uid_t *session_uid,
+                                                gid_t *session_gid)
 {
        int ret;
        struct cds_lfht_iter iter;
@@ -896,18 +819,16 @@ int evaluate_channel_condition_for_client(
        rcu_read_lock();
 
        /* Find the channel associated with the condition. */
-       cds_lfht_for_each_entry(state->channel_triggers_ht, &iter,
-                       channel_trigger_list, channel_triggers_ht_node) {
+       cds_lfht_for_each_entry (
+               state->channel_triggers_ht, &iter, channel_trigger_list, channel_triggers_ht_node) {
                struct lttng_trigger_list_element *element;
 
-               cds_list_for_each_entry(element, &channel_trigger_list->list, node) {
+               cds_list_for_each_entry (element, &channel_trigger_list->list, node) {
                        const struct lttng_condition *current_condition =
-                                       lttng_trigger_get_const_condition(
-                                               element->trigger);
+                               lttng_trigger_get_const_condition(element->trigger);
 
                        LTTNG_ASSERT(current_condition);
-                       if (!lttng_condition_is_equal(condition,
-                                       current_condition)) {
+                       if (!lttng_condition_is_equal(condition, current_condition)) {
                                continue;
                        }
 
@@ -921,7 +842,7 @@ int evaluate_channel_condition_for_client(
                }
        }
 
-       if (!channel_key){
+       if (!channel_key) {
                /* No channel found; normal exit. */
                DBG("No known channel associated with newly subscribed-to condition");
                ret = 0;
@@ -936,8 +857,7 @@ int evaluate_channel_condition_for_client(
                        &iter);
        node = cds_lfht_iter_get_node(&iter);
        LTTNG_ASSERT(node);
-       channel_info = caa_container_of(node, struct channel_info,
-                       channels_ht_node);
+       channel_info = caa_container_of(node, struct channel_info, channels_ht_node);
 
        /* Retrieve the channel's last sample, if it exists. */
        cds_lfht_lookup(state->channel_state_ht,
@@ -947,9 +867,8 @@ int evaluate_channel_condition_for_client(
                        &iter);
        node = cds_lfht_iter_get_node(&iter);
        if (node) {
-               last_sample = caa_container_of(node,
-                               struct channel_state_sample,
-                               channel_state_ht_node);
+               last_sample =
+                       caa_container_of(node, struct channel_state_sample, channel_state_ht_node);
        } else {
                /* Nothing to evaluate, no sample was ever taken. Normal exit */
                DBG("No channel sample associated with newly subscribed-to condition");
@@ -957,9 +876,8 @@ int evaluate_channel_condition_for_client(
                goto end;
        }
 
-       ret = evaluate_buffer_condition(condition, evaluation, state,
-                       NULL, last_sample,
-                       channel_info);
+       ret = evaluate_buffer_condition(
+               condition, evaluation, state, NULL, last_sample, channel_info);
        if (ret) {
                WARN("Fatal error occurred while evaluating a newly subscribed-to condition");
                goto end;
@@ -972,8 +890,7 @@ end:
        return ret;
 }
 
-static
-const char *get_condition_session_name(const struct lttng_condition *condition)
+static const char *get_condition_session_name(const struct lttng_condition *condition)
 {
        const char *session_name = NULL;
        enum lttng_condition_status status;
@@ -981,17 +898,16 @@ const char *get_condition_session_name(const struct lttng_condition *condition)
        switch (lttng_condition_get_type(condition)) {
        case LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW:
        case LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH:
-               status = lttng_condition_buffer_usage_get_session_name(
-                               condition, &session_name);
+               status = lttng_condition_buffer_usage_get_session_name(condition, &session_name);
                break;
        case LTTNG_CONDITION_TYPE_SESSION_CONSUMED_SIZE:
-               status = lttng_condition_session_consumed_size_get_session_name(
-                               condition, &session_name);
+               status = lttng_condition_session_consumed_size_get_session_name(condition,
+                                                                               &session_name);
                break;
        case LTTNG_CONDITION_TYPE_SESSION_ROTATION_ONGOING:
        case LTTNG_CONDITION_TYPE_SESSION_ROTATION_COMPLETED:
-               status = lttng_condition_session_rotation_get_session_name(
-                               condition, &session_name);
+               status =
+                       lttng_condition_session_rotation_get_session_name(condition, &session_name);
                break;
        default:
                abort();
@@ -1004,27 +920,26 @@ end:
        return session_name;
 }
 
-static
-bool evaluate_session_rotation_ongoing_condition(const struct lttng_condition *condition
-               __attribute__((unused)),
-               const struct session_state_sample *sample)
+static bool evaluate_session_rotation_ongoing_condition(const struct lttng_condition *condition
+                                                       __attribute__((unused)),
+                                                       const struct session_state_sample *sample)
 {
        return sample->rotation.ongoing;
 }
 
-static
-bool evaluate_session_consumed_size_condition(
-               const struct lttng_condition *condition,
-               const struct session_state_sample *sample)
+static bool evaluate_session_consumed_size_condition(const struct lttng_condition *condition,
+                                                    const struct session_state_sample *sample)
 {
        uint64_t threshold;
        const struct lttng_condition_session_consumed_size *size_condition =
-                       lttng::utils::container_of(condition,
-                               &lttng_condition_session_consumed_size::parent);
+               lttng::utils::container_of(condition,
+                                          &lttng_condition_session_consumed_size::parent);
 
        threshold = size_condition->consumed_threshold_bytes.value;
-       DBG("Session consumed size condition being evaluated: threshold = %" PRIu64 ", current size = %" PRIu64,
-                       threshold, sample->consumed_data_size);
+       DBG("Session consumed size condition being evaluated: threshold = %" PRIu64
+           ", current size = %" PRIu64,
+           threshold,
+           sample->consumed_data_size);
        return sample->consumed_data_size >= threshold;
 }
 
@@ -1033,12 +948,10 @@ bool evaluate_session_consumed_size_condition(
  * state transition. A client subscribed or a trigger was registered and
  * we wish to perform an initial evaluation.
  */
-static
-int evaluate_session_condition(
-               const struct lttng_condition *condition,
-               const struct session_info *session_info,
-               const struct session_state_sample *new_state,
-               struct lttng_evaluation **evaluation)
+static int evaluate_session_condition(const struct lttng_condition *condition,
+                                     const struct session_info *session_info,
+                                     const struct session_state_sample *new_state,
+                                     struct lttng_evaluation **evaluation)
 {
        int ret;
        bool previous_result, newest_result;
@@ -1047,25 +960,25 @@ int evaluate_session_condition(
        case LTTNG_CONDITION_TYPE_SESSION_ROTATION_ONGOING:
                if (new_state) {
                        previous_result = evaluate_session_rotation_ongoing_condition(
-                                       condition, &session_info->last_state_sample);
-                       newest_result = evaluate_session_rotation_ongoing_condition(
-                                       condition, new_state);
+                               condition, &session_info->last_state_sample);
+                       newest_result =
+                               evaluate_session_rotation_ongoing_condition(condition, new_state);
                } else {
                        previous_result = false;
                        newest_result = evaluate_session_rotation_ongoing_condition(
-                                       condition, &session_info->last_state_sample);
+                               condition, &session_info->last_state_sample);
                }
                break;
        case LTTNG_CONDITION_TYPE_SESSION_CONSUMED_SIZE:
                if (new_state) {
                        previous_result = evaluate_session_consumed_size_condition(
-                                       condition, &session_info->last_state_sample);
-                       newest_result = evaluate_session_consumed_size_condition(
-                                       condition, new_state);
+                               condition, &session_info->last_state_sample);
+                       newest_result =
+                               evaluate_session_consumed_size_condition(condition, new_state);
                } else {
                        previous_result = false;
                        newest_result = evaluate_session_consumed_size_condition(
-                                       condition, &session_info->last_state_sample);
+                               condition, &session_info->last_state_sample);
                }
                break;
        case LTTNG_CONDITION_TYPE_SESSION_ROTATION_COMPLETED:
@@ -1098,9 +1011,8 @@ int evaluate_session_condition(
        switch (lttng_condition_get_type(condition)) {
        case LTTNG_CONDITION_TYPE_SESSION_ROTATION_ONGOING:
        {
-               const auto rotation_id = new_state ?
-                               new_state->rotation.id :
-                                     session_info->last_state_sample.rotation.id;
+               const auto rotation_id = new_state ? new_state->rotation.id :
+                                                    session_info->last_state_sample.rotation.id;
 
                *evaluation = lttng_evaluation_session_rotation_ongoing_create(rotation_id);
                break;
@@ -1112,17 +1024,17 @@ int evaluate_session_condition(
 
                /* Callee acquires a reference to location. */
                *evaluation = lttng_evaluation_session_rotation_completed_create(
-                               rotation_id, sample.rotation.location);
+                       rotation_id, sample.rotation.location);
                break;
        }
        case LTTNG_CONDITION_TYPE_SESSION_CONSUMED_SIZE:
        {
                const auto latest_session_consumed_total = new_state ?
-                               new_state->consumed_data_size :
-                                     session_info->last_state_sample.consumed_data_size;
+                       new_state->consumed_data_size :
+                       session_info->last_state_sample.consumed_data_size;
 
                *evaluation = lttng_evaluation_session_consumed_size_create(
-                               latest_session_consumed_total);
+                       latest_session_consumed_total);
                break;
        }
        default:
@@ -1132,7 +1044,7 @@ int evaluate_session_condition(
        if (!*evaluation) {
                /* Fatal error. */
                ERR("Failed to create session condition evaluation: session name = `%s`",
-                               session_info->name);
+                   session_info->name);
                ret = -1;
                goto end;
        }
@@ -1142,11 +1054,10 @@ end:
        return ret;
 }
 
-static
-int evaluate_condition_for_client(const struct lttng_trigger *trigger,
-               const struct lttng_condition *condition,
-               struct notification_client *client,
-               struct notification_thread_state *state)
+static int evaluate_condition_for_client(const struct lttng_trigger *trigger,
+                                        const struct lttng_condition *condition,
+                                        struct notification_client *client,
+                                        struct notification_thread_state *state)
 {
        int ret;
        struct lttng_evaluation *evaluation = NULL;
@@ -1178,7 +1089,7 @@ int evaluate_condition_for_client(const struct lttng_trigger *trigger,
                if (!session_info) {
                        /* Not an error, the session doesn't exist yet. */
                        DBG("Session not found while evaluating session condition for client: session name = `%s`",
-                                       session_name);
+                           session_name);
                        ret = 0;
                        goto end;
                }
@@ -1191,8 +1102,8 @@ int evaluate_condition_for_client(const struct lttng_trigger *trigger,
                break;
        }
        case LTTNG_OBJECT_TYPE_CHANNEL:
-               ret = evaluate_channel_condition_for_client(condition, state,
-                               &evaluation, &object_uid, &object_gid);
+               ret = evaluate_channel_condition_for_client(
+                       condition, state, &evaluation, &object_uid, &object_gid);
                break;
        case LTTNG_OBJECT_TYPE_NONE:
                DBG("Newly subscribed-to condition not bound to object, nothing to evaluate");
@@ -1227,34 +1138,31 @@ int evaluate_condition_for_client(const struct lttng_trigger *trigger,
 
        /* Send evaluation result to the newly-subscribed client. */
        DBG("Newly subscribed-to condition evaluated to true, notifying client");
-       ret = send_evaluation_to_clients(trigger, evaluation, &client_list,
-                       state, object_uid, object_gid);
+       ret = send_evaluation_to_clients(
+               trigger, evaluation, &client_list, state, object_uid, object_gid);
 
 end:
        return ret;
 }
 
-static
-int notification_thread_client_subscribe(struct notification_client *client,
-               struct lttng_condition *condition,
-               struct notification_thread_state *state,
-               enum lttng_notification_channel_status *_status)
+static int notification_thread_client_subscribe(struct notification_client *client,
+                                               struct lttng_condition *condition,
+                                               struct notification_thread_state *state,
+                                               enum lttng_notification_channel_status *_status)
 {
        int ret = 0;
        struct notification_client_list *client_list = NULL;
        struct lttng_condition_list_element *condition_list_element = NULL;
        struct notification_client_list_element *client_list_element = NULL;
        struct lttng_trigger_ht_element *trigger_ht_element;
-       enum lttng_notification_channel_status status =
-                       LTTNG_NOTIFICATION_CHANNEL_STATUS_OK;
+       enum lttng_notification_channel_status status = LTTNG_NOTIFICATION_CHANNEL_STATUS_OK;
 
        /*
         * Ensure that the client has not already subscribed to this condition
         * before.
         */
-       cds_list_for_each_entry(condition_list_element, &client->condition_list, node) {
-               if (lttng_condition_is_equal(condition_list_element->condition,
-                               condition)) {
+       cds_list_for_each_entry (condition_list_element, &client->condition_list, node) {
+               if (lttng_condition_is_equal(condition_list_element->condition, condition)) {
                        status = LTTNG_NOTIFICATION_CHANNEL_STATUS_ALREADY_SUBSCRIBED;
                        goto end;
                }
@@ -1279,8 +1187,7 @@ int notification_thread_client_subscribe(struct notification_client *client,
        condition = NULL;
        cds_list_add(&condition_list_element->node, &client->condition_list);
 
-       client_list = get_client_list_from_condition(
-                       state, condition_list_element->condition);
+       client_list = get_client_list_from_condition(state, condition_list_element->condition);
        if (!client_list) {
                /*
                 * No notification-emiting trigger registered with this
@@ -1302,10 +1209,12 @@ int notification_thread_client_subscribe(struct notification_client *client,
         * all triggers that have a `notify` action that have this condition.
         */
        pthread_mutex_lock(&client_list->lock);
-       cds_list_for_each_entry(trigger_ht_element,
-                       &client_list->triggers_list, client_list_trigger_node) {
-               if (evaluate_condition_for_client(trigger_ht_element->trigger, condition_list_element->condition,
-                               client, state)) {
+       cds_list_for_each_entry (
+               trigger_ht_element, &client_list->triggers_list, client_list_trigger_node) {
+               if (evaluate_condition_for_client(trigger_ht_element->trigger,
+                                                 condition_list_element->condition,
+                                                 client,
+                                                 state)) {
                        WARN("Evaluation of a condition on client subscription failed, aborting.");
                        ret = -1;
                        free(client_list_element);
@@ -1342,27 +1251,21 @@ error:
        return ret;
 }
 
-static
-int notification_thread_client_unsubscribe(
-               struct notification_client *client,
-               struct lttng_condition *condition,
-               struct notification_thread_state *state,
-               enum lttng_notification_channel_status *_status)
+static int notification_thread_client_unsubscribe(struct notification_client *client,
+                                                 struct lttng_condition *condition,
+                                                 struct notification_thread_state *state,
+                                                 enum lttng_notification_channel_status *_status)
 {
        struct notification_client_list *client_list;
-       struct lttng_condition_list_element *condition_list_element,
-                       *condition_tmp;
-       struct notification_client_list_element *client_list_element,
-                       *client_tmp;
+       struct lttng_condition_list_element *condition_list_element, *condition_tmp;
+       struct notification_client_list_element *client_list_element, *client_tmp;
        bool condition_found = false;
-       enum lttng_notification_channel_status status =
-                       LTTNG_NOTIFICATION_CHANNEL_STATUS_OK;
+       enum lttng_notification_channel_status status = LTTNG_NOTIFICATION_CHANNEL_STATUS_OK;
 
        /* Remove the condition from the client's condition list. */
-       cds_list_for_each_entry_safe(condition_list_element, condition_tmp,
-                       &client->condition_list, node) {
-               if (!lttng_condition_is_equal(condition_list_element->condition,
-                               condition)) {
+       cds_list_for_each_entry_safe (
+               condition_list_element, condition_tmp, &client->condition_list, node) {
+               if (!lttng_condition_is_equal(condition_list_element->condition, condition)) {
                        continue;
                }
 
@@ -1373,8 +1276,7 @@ int notification_thread_client_unsubscribe(
                 * will be destroyed at the end.
                 */
                if (condition != condition_list_element->condition) {
-                       lttng_condition_destroy(
-                                       condition_list_element->condition);
+                       lttng_condition_destroy(condition_list_element->condition);
                }
                free(condition_list_element);
                condition_found = true;
@@ -1396,8 +1298,8 @@ int notification_thread_client_unsubscribe(
        }
 
        pthread_mutex_lock(&client_list->lock);
-       cds_list_for_each_entry_safe(client_list_element, client_tmp,
-                       &client_list->clients_list, node) {
+       cds_list_for_each_entry_safe (
+               client_list_element, client_tmp, &client_list->clients_list, node) {
                if (client_list_element->client->id != client->id) {
                        continue;
                }
@@ -1416,14 +1318,12 @@ end:
        return 0;
 }
 
-static
-void free_notification_client_rcu(struct rcu_head *node)
+static void free_notification_client_rcu(struct rcu_head *node)
 {
        free(lttng::utils::container_of(node, &notification_client::rcu_node));
 }
 
-static
-void notification_client_destroy(struct notification_client *client)
+static void notification_client_destroy(struct notification_client *client)
 {
        if (!client) {
                return;
@@ -1448,9 +1348,8 @@ void notification_client_destroy(struct notification_client *client)
  * Call with rcu_read_lock held (and hold for the lifetime of the returned
  * client pointer).
  */
-static
-struct notification_client *get_client_from_socket(int socket,
-               struct notification_thread_state *state)
+static struct notification_client *get_client_from_socket(int socket,
+                                                         struct notification_thread_state *state)
 {
        struct cds_lfht_iter iter;
        struct cds_lfht_node *node;
@@ -1468,8 +1367,7 @@ struct notification_client *get_client_from_socket(int socket,
                goto end;
        }
 
-       client = caa_container_of(node, struct notification_client,
-                       client_socket_ht_node);
+       client = caa_container_of(node, struct notification_client, client_socket_ht_node);
 end:
        return client;
 }
@@ -1478,9 +1376,8 @@ end:
  * Call with rcu_read_lock held (and hold for the lifetime of the returned
  * client pointer).
  */
-static
-struct notification_client *get_client_from_id(notification_client_id id,
-               struct notification_thread_state *state)
+static struct notification_client *get_client_from_id(notification_client_id id,
+                                                     struct notification_thread_state *state)
 {
        struct cds_lfht_iter iter;
        struct cds_lfht_node *node;
@@ -1488,45 +1385,35 @@ struct notification_client *get_client_from_id(notification_client_id id,
 
        ASSERT_RCU_READ_LOCKED();
 
-       cds_lfht_lookup(state->client_id_ht,
-                       hash_client_id(id),
-                       match_client_id,
-                       &id,
-                       &iter);
+       cds_lfht_lookup(state->client_id_ht, hash_client_id(id), match_client_id, &id, &iter);
        node = cds_lfht_iter_get_node(&iter);
        if (!node) {
                goto end;
        }
 
-       client = caa_container_of(node, struct notification_client,
-                       client_id_ht_node);
+       client = caa_container_of(node, struct notification_client, client_id_ht_node);
 end:
        return client;
 }
 
-static
-bool buffer_usage_condition_applies_to_channel(
-               const struct lttng_condition *condition,
-               const struct channel_info *channel_info)
+static bool buffer_usage_condition_applies_to_channel(const struct lttng_condition *condition,
+                                                     const struct channel_info *channel_info)
 {
        enum lttng_condition_status status;
        enum lttng_domain_type condition_domain;
        const char *condition_session_name = NULL;
        const char *condition_channel_name = NULL;
 
-       status = lttng_condition_buffer_usage_get_domain_type(condition,
-                       &condition_domain);
+       status = lttng_condition_buffer_usage_get_domain_type(condition, &condition_domain);
        LTTNG_ASSERT(status == LTTNG_CONDITION_STATUS_OK);
        if (channel_info->key.domain != condition_domain) {
                goto fail;
        }
 
-       status = lttng_condition_buffer_usage_get_session_name(
-                       condition, &condition_session_name);
+       status = lttng_condition_buffer_usage_get_session_name(condition, &condition_session_name);
        LTTNG_ASSERT((status == LTTNG_CONDITION_STATUS_OK) && condition_session_name);
 
-       status = lttng_condition_buffer_usage_get_channel_name(
-                       condition, &condition_channel_name);
+       status = lttng_condition_buffer_usage_get_channel_name(condition, &condition_channel_name);
        LTTNG_ASSERT((status == LTTNG_CONDITION_STATUS_OK) && condition_channel_name);
 
        if (strcmp(channel_info->session_info->name, condition_session_name)) {
@@ -1541,9 +1428,8 @@ fail:
        return false;
 }
 
-static
-bool trigger_applies_to_channel(const struct lttng_trigger *trigger,
-               const struct channel_info *channel_info)
+static bool trigger_applies_to_channel(const struct lttng_trigger *trigger,
+                                      const struct channel_info *channel_info)
 {
        const struct lttng_condition *condition;
        bool trigger_applies;
@@ -1556,8 +1442,8 @@ bool trigger_applies_to_channel(const struct lttng_trigger *trigger,
        switch (lttng_condition_get_type(condition)) {
        case LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW:
        case LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH:
-               trigger_applies = buffer_usage_condition_applies_to_channel(
-                               condition, channel_info);
+               trigger_applies =
+                       buffer_usage_condition_applies_to_channel(condition, channel_info);
                break;
        default:
                goto fail;
@@ -1569,10 +1455,8 @@ fail:
 }
 
 /* Must be called with RCU read lock held. */
-static
-struct lttng_session_trigger_list *get_session_trigger_list(
-               struct notification_thread_state *state,
-               const char *session_name)
+static struct lttng_session_trigger_list *
+get_session_trigger_list(struct notification_thread_state *state, const char *session_name)
 {
        struct lttng_session_trigger_list *list = NULL;
        struct cds_lfht_node *node;
@@ -1592,13 +1476,11 @@ struct lttng_session_trigger_list *get_session_trigger_list(
                 * will be initialized when the session is created.
                 */
                DBG("No trigger list found for session \"%s\" as it is not yet known to the notification system",
-                               session_name);
+                   session_name);
                goto end;
        }
 
-       list = caa_container_of(node,
-                       struct lttng_session_trigger_list,
-                       session_triggers_ht_node);
+       list = caa_container_of(node, struct lttng_session_trigger_list, session_triggers_ht_node);
 end:
        return list;
 }
@@ -1607,10 +1489,8 @@ end:
  * Allocate an empty lttng_session_trigger_list for the session named
  * 'session_name'.
  */
-static
-struct lttng_session_trigger_list *lttng_session_trigger_list_create(
-               const char *session_name,
-               struct cds_lfht *session_triggers_ht)
+static struct lttng_session_trigger_list *
+lttng_session_trigger_list_create(const char *session_name, struct cds_lfht *session_triggers_ht)
 {
        struct lttng_session_trigger_list *list = NULL;
        char *session_name_copy = strdup(session_name);
@@ -1634,49 +1514,43 @@ struct lttng_session_trigger_list *lttng_session_trigger_list_create(
        rcu_read_lock();
        /* Publish the list through the session_triggers_ht. */
        cds_lfht_add(session_triggers_ht,
-                       hash_key_str(session_name, lttng_ht_seed),
-                       &list->session_triggers_ht_node);
+                    hash_key_str(session_name, lttng_ht_seed),
+                    &list->session_triggers_ht_node);
        rcu_read_unlock();
 end:
        return list;
 }
 
-static
-void free_session_trigger_list_rcu(struct rcu_head *node)
+static void free_session_trigger_list_rcu(struct rcu_head *node)
 {
        struct lttng_session_trigger_list *list =
-                       caa_container_of(node, struct lttng_session_trigger_list, rcu_node);
+               caa_container_of(node, struct lttng_session_trigger_list, rcu_node);
 
        free(list->session_name);
        free(list);
 }
 
-static
-void lttng_session_trigger_list_destroy(struct lttng_session_trigger_list *list)
+static void lttng_session_trigger_list_destroy(struct lttng_session_trigger_list *list)
 {
        struct lttng_trigger_list_element *trigger_list_element, *tmp;
 
        /* Empty the list element by element, and then free the list itself. */
-       cds_list_for_each_entry_safe(trigger_list_element, tmp,
-                       &list->list, node) {
+       cds_list_for_each_entry_safe (trigger_list_element, tmp, &list->list, node) {
                cds_list_del(&trigger_list_element->node);
                free(trigger_list_element);
        }
        rcu_read_lock();
        /* Unpublish the list from the session_triggers_ht. */
-       cds_lfht_del(list->session_triggers_ht,
-                       &list->session_triggers_ht_node);
+       cds_lfht_del(list->session_triggers_ht, &list->session_triggers_ht_node);
        rcu_read_unlock();
        call_rcu(&list->rcu_node, free_session_trigger_list_rcu);
 }
 
-static
-int lttng_session_trigger_list_add(struct lttng_session_trigger_list *list,
-               struct lttng_trigger *trigger)
+static int lttng_session_trigger_list_add(struct lttng_session_trigger_list *list,
+                                         struct lttng_trigger *trigger)
 {
        int ret = 0;
-       struct lttng_trigger_list_element *new_element =
-                       zmalloc<lttng_trigger_list_element>();
+       struct lttng_trigger_list_element *new_element = zmalloc<lttng_trigger_list_element>();
 
        if (!new_element) {
                ret = -1;
@@ -1689,9 +1563,8 @@ end:
        return ret;
 }
 
-static
-bool trigger_applies_to_session(const struct lttng_trigger *trigger,
-               const char *session_name)
+static bool trigger_applies_to_session(const struct lttng_trigger *trigger,
+                                      const char *session_name)
 {
        bool applies = false;
        const struct lttng_condition *condition;
@@ -1720,31 +1593,28 @@ end:
  * Allocate and initialize an lttng_session_trigger_list which contains
  * all triggers that apply to the session named 'session_name'.
  */
-static
-struct lttng_session_trigger_list *lttng_session_trigger_list_build(
-               const struct notification_thread_state *state,
-               const char *session_name)
+static struct lttng_session_trigger_list *
+lttng_session_trigger_list_build(const struct notification_thread_state *state,
+                                const char *session_name)
 {
        int trigger_count = 0;
        struct lttng_session_trigger_list *session_trigger_list = NULL;
        struct lttng_trigger_ht_element *trigger_ht_element = NULL;
        struct cds_lfht_iter iter;
 
-       session_trigger_list = lttng_session_trigger_list_create(session_name,
-                       state->session_triggers_ht);
+       session_trigger_list =
+               lttng_session_trigger_list_create(session_name, state->session_triggers_ht);
 
        /* Add all triggers applying to the session named 'session_name'. */
-       cds_lfht_for_each_entry(state->triggers_ht, &iter, trigger_ht_element,
-                       node) {
+       cds_lfht_for_each_entry (state->triggers_ht, &iter, trigger_ht_element, node) {
                int ret;
 
-               if (!trigger_applies_to_session(trigger_ht_element->trigger,
-                               session_name)) {
+               if (!trigger_applies_to_session(trigger_ht_element->trigger, session_name)) {
                        continue;
                }
 
                ret = lttng_session_trigger_list_add(session_trigger_list,
-                               trigger_ht_element->trigger);
+                                                    trigger_ht_element->trigger);
                if (ret) {
                        goto error;
                }
@@ -1752,20 +1622,18 @@ struct lttng_session_trigger_list *lttng_session_trigger_list_build(
                trigger_count++;
        }
 
-       DBG("Found %i triggers that apply to newly created session",
-                       trigger_count);
+       DBG("Found %i triggers that apply to newly created session", trigger_count);
        return session_trigger_list;
 error:
        lttng_session_trigger_list_destroy(session_trigger_list);
        return NULL;
 }
 
-static
-struct session_info *create_and_publish_session_info(struct notification_thread_state *state,
-               uint64_t id,
-               const char *name,
-               uid_t uid,
-               gid_t gid)
+static struct session_info *create_and_publish_session_info(struct notification_thread_state *state,
+                                                           uint64_t id,
+                                                           const char *name,
+                                                           uid_t uid,
+                                                           gid_t gid)
 {
        struct session_info *session = NULL;
        struct lttng_session_trigger_list *trigger_list;
@@ -1776,11 +1644,12 @@ struct session_info *create_and_publish_session_info(struct notification_thread_
                goto error;
        }
 
-       session = session_info_create(id, name, uid, gid, trigger_list,
-                       state->sessions_ht);
+       session = session_info_create(id, name, uid, gid, trigger_list, state->sessions_ht);
        if (!session) {
                ERR("Failed to allocation session info for session \"%s\" (uid = %i, gid = %i)",
-                               name, uid, gid);
+                   name,
+                   uid,
+                   gid);
                lttng_session_trigger_list_destroy(trigger_list);
                goto error;
        }
@@ -1788,8 +1657,11 @@ struct session_info *create_and_publish_session_info(struct notification_thread_
        /* Transferred ownership to the new session. */
        trigger_list = NULL;
 
-       if (cds_lfht_add_unique(state->sessions_ht, hash_session_info(session), match_session_info,
-                           &id, &session->sessions_ht_node) != &session->sessions_ht_node) {
+       if (cds_lfht_add_unique(state->sessions_ht,
+                               hash_session_info(session),
+                               match_session_info,
+                               &id,
+                               &session->sessions_ht_node) != &session->sessions_ht_node) {
                ERR("Duplicate session found: name = `%s`, id = %" PRIu64, name, id);
                goto error;
        }
@@ -1802,14 +1674,13 @@ error:
        return NULL;
 }
 
-static
-int handle_notification_thread_command_add_channel(struct notification_thread_state *state,
-               uint64_t session_id,
-               const char *channel_name,
-               enum lttng_domain_type channel_domain,
-               uint64_t channel_key_int,
-               uint64_t channel_capacity,
-               enum lttng_error_code *cmd_result)
+static int handle_notification_thread_command_add_channel(struct notification_thread_state *state,
+                                                         uint64_t session_id,
+                                                         const char *channel_name,
+                                                         enum lttng_domain_type channel_domain,
+                                                         uint64_t channel_key_int,
+                                                         uint64_t channel_capacity,
+                                                         enum lttng_error_code *cmd_result)
 {
        struct cds_list_head trigger_list;
        struct channel_info *new_channel_info = NULL;
@@ -1823,9 +1694,12 @@ int handle_notification_thread_command_add_channel(struct notification_thread_st
        struct cds_lfht_iter iter;
        struct session_info *session_info = NULL;
 
-       DBG("Adding channel: channel name = `%s`, session id = %" PRIu64 ", channel key = %" PRIu64 ", domain = %s",
-                       channel_name, session_id, channel_key_int,
-                       lttng_domain_type_str(channel_domain));
+       DBG("Adding channel: channel name = `%s`, session id = %" PRIu64 ", channel key = %" PRIu64
+           ", domain = %s",
+           channel_name,
+           session_id,
+           channel_key_int,
+           lttng_domain_type_str(channel_domain));
 
        CDS_INIT_LIST_HEAD(&trigger_list);
 
@@ -1833,24 +1707,22 @@ int handle_notification_thread_command_add_channel(struct notification_thread_st
        if (!session_info) {
                /* Fatal logic error. */
                ERR("Failed to find session while adding channel: session id = %" PRIu64,
-                               session_id);
+                   session_id);
                goto error;
        }
 
-       new_channel_info = channel_info_create(channel_name, &channel_key,
-                       channel_capacity, session_info);
+       new_channel_info =
+               channel_info_create(channel_name, &channel_key, channel_capacity, session_info);
        if (!new_channel_info) {
                goto error;
        }
 
        rcu_read_lock();
        /* Build a list of all triggers applying to the new channel. */
-       cds_lfht_for_each_entry(state->triggers_ht, &iter, trigger_ht_element,
-                       node) {
+       cds_lfht_for_each_entry (state->triggers_ht, &iter, trigger_ht_element, node) {
                struct lttng_trigger_list_element *new_element;
 
-               if (!trigger_applies_to_channel(trigger_ht_element->trigger,
-                               new_channel_info)) {
+               if (!trigger_applies_to_channel(trigger_ht_element->trigger, new_channel_info)) {
                        continue;
                }
 
@@ -1866,8 +1738,7 @@ int handle_notification_thread_command_add_channel(struct notification_thread_st
        }
        rcu_read_unlock();
 
-       DBG("Found %i triggers that apply to newly added channel",
-                       trigger_count);
+       DBG("Found %i triggers that apply to newly added channel", trigger_count);
        channel_trigger_list = zmalloc<lttng_channel_trigger_list>();
        if (!channel_trigger_list) {
                goto error;
@@ -1880,15 +1751,15 @@ int handle_notification_thread_command_add_channel(struct notification_thread_st
        rcu_read_lock();
        /* Add channel to the channel_ht which owns the channel_infos. */
        cds_lfht_add(state->channels_ht,
-                       hash_channel_key(&new_channel_info->key),
-                       &new_channel_info->channels_ht_node);
+                    hash_channel_key(&new_channel_info->key),
+                    &new_channel_info->channels_ht_node);
        /*
         * Add the list of triggers associated with this channel to the
         * channel_triggers_ht.
         */
        cds_lfht_add(state->channel_triggers_ht,
-                       hash_channel_key(&new_channel_info->key),
-                       &channel_trigger_list->channel_triggers_ht_node);
+                    hash_channel_key(&new_channel_info->key),
+                    &channel_trigger_list->channel_triggers_ht_node);
        rcu_read_unlock();
        session_info_put(session_info);
        *cmd_result = LTTNG_OK;
@@ -1899,23 +1770,31 @@ error:
        return 1;
 }
 
-static
-int handle_notification_thread_command_add_session(struct notification_thread_state *state,
-               uint64_t session_id,
-               const char *session_name,
-               uid_t session_uid,
-               gid_t session_gid,
-               enum lttng_error_code *cmd_result)
+static int handle_notification_thread_command_add_session(struct notification_thread_state *state,
+                                                         uint64_t session_id,
+                                                         const char *session_name,
+                                                         uid_t session_uid,
+                                                         gid_t session_gid,
+                                                         enum lttng_error_code *cmd_result)
 {
        int ret;
 
-       DBG("Adding session: session name = `%s`, session id = %" PRIu64 ", session uid = %d, session gid = %d",
-                       session_name, session_id, session_uid, session_gid);
+       DBG("Adding session: session name = `%s`, session id = %" PRIu64
+           ", session uid = %d, session gid = %d",
+           session_name,
+           session_id,
+           session_uid,
+           session_gid);
 
-       auto session = create_and_publish_session_info(state, session_id, session_name, session_uid, session_gid);
+       auto session = create_and_publish_session_info(
+               state, session_id, session_name, session_uid, session_gid);
        if (!session) {
-               PERROR("Failed to add session: session name = `%s`, session id = %" PRIu64 ", session uid = %d, session gid = %d",
-                               session_name, session_id, session_uid, session_gid);
+               PERROR("Failed to add session: session name = `%s`, session id = %" PRIu64
+                      ", session uid = %d, session gid = %d",
+                      session_name,
+                      session_id,
+                      session_uid,
+                      session_gid);
                ret = -1;
                *cmd_result = LTTNG_ERR_NOMEM;
                goto end;
@@ -1933,11 +1812,10 @@ end:
        return ret;
 }
 
-static
-int handle_notification_thread_command_remove_session(
-               struct notification_thread_state *state,
-               uint64_t session_id,
-               enum lttng_error_code *cmd_result)
+static int
+handle_notification_thread_command_remove_session(struct notification_thread_state *state,
+                                                 uint64_t session_id,
+                                                 enum lttng_error_code *cmd_result)
 {
        int ret;
 
@@ -1960,25 +1838,21 @@ end:
        return ret;
 }
 
-static
-void free_channel_trigger_list_rcu(struct rcu_head *node)
+static void free_channel_trigger_list_rcu(struct rcu_head *node)
 {
-       free(caa_container_of(node, struct lttng_channel_trigger_list,
-                       rcu_node));
+       free(caa_container_of(node, struct lttng_channel_trigger_list, rcu_node));
 }
 
-static
-void free_channel_state_sample_rcu(struct rcu_head *node)
+static void free_channel_state_sample_rcu(struct rcu_head *node)
 {
-       free(caa_container_of(node, struct channel_state_sample,
-                       rcu_node));
+       free(caa_container_of(node, struct channel_state_sample, rcu_node));
 }
 
-static
-int handle_notification_thread_command_remove_channel(
-       struct notification_thread_state *state,
-       uint64_t channel_key, enum lttng_domain_type domain,
-       enum lttng_error_code *cmd_result)
+static int
+handle_notification_thread_command_remove_channel(struct notification_thread_state *state,
+                                                 uint64_t channel_key,
+                                                 enum lttng_domain_type domain,
+                                                 enum lttng_error_code *cmd_result)
 {
        struct cds_lfht_node *node;
        struct cds_lfht_iter iter;
@@ -1988,7 +1862,8 @@ int handle_notification_thread_command_remove_channel(
        struct channel_info *channel_info;
 
        DBG("Removing channel key = %" PRIu64 " in %s domain",
-                       channel_key, lttng_domain_type_str(domain));
+           channel_key,
+           lttng_domain_type_str(domain));
 
        rcu_read_lock();
 
@@ -2008,10 +1883,9 @@ int handle_notification_thread_command_remove_channel(
        }
 
        /* Free the list of triggers associated with this channel. */
-       trigger_list = caa_container_of(node, struct lttng_channel_trigger_list,
-                       channel_triggers_ht_node);
-       cds_list_for_each_entry_safe(trigger_list_element, tmp,
-                       &trigger_list->list, node) {
+       trigger_list =
+               caa_container_of(node, struct lttng_channel_trigger_list, channel_triggers_ht_node);
+       cds_list_for_each_entry_safe (trigger_list_element, tmp, &trigger_list->list, node) {
                cds_list_del(&trigger_list_element->node);
                free(trigger_list_element);
        }
@@ -2030,24 +1904,19 @@ int handle_notification_thread_command_remove_channel(
         * received a sample.
         */
        if (node) {
-               struct channel_state_sample *sample = caa_container_of(node,
-                               struct channel_state_sample,
-                               channel_state_ht_node);
+               struct channel_state_sample *sample =
+                       caa_container_of(node, struct channel_state_sample, channel_state_ht_node);
 
                cds_lfht_del(state->channel_state_ht, node);
                call_rcu(&sample->rcu_node, free_channel_state_sample_rcu);
        }
 
        /* Remove the channel from the channels_ht and free it. */
-       cds_lfht_lookup(state->channels_ht,
-                       hash_channel_key(&key),
-                       match_channel_info,
-                       &key,
-                       &iter);
+       cds_lfht_lookup(
+               state->channels_ht, hash_channel_key(&key), match_channel_info, &key, &iter);
        node = cds_lfht_iter_get_node(&iter);
        LTTNG_ASSERT(node);
-       channel_info = caa_container_of(node, struct channel_info,
-                       channels_ht_node);
+       channel_info = caa_container_of(node, struct channel_info, channels_ht_node);
        cds_lfht_del(state->channels_ht, node);
        channel_info_destroy(channel_info);
 end:
@@ -2056,14 +1925,13 @@ end:
        return 0;
 }
 
-static
-int handle_notification_thread_command_session_rotation(
-       struct notification_thread_state *state,
-       enum notification_thread_command_type cmd_type,
-       uint64_t session_id,
-       uint64_t trace_archive_chunk_id,
-       struct lttng_trace_archive_location *location,
-       enum lttng_error_code *_cmd_result)
+static int
+handle_notification_thread_command_session_rotation(struct notification_thread_state *state,
+                                                   enum notification_thread_command_type cmd_type,
+                                                   uint64_t session_id,
+                                                   uint64_t trace_archive_chunk_id,
+                                                   struct lttng_trace_archive_location *location,
+                                                   enum lttng_error_code *_cmd_result)
 {
        int ret = 0;
        enum lttng_error_code cmd_result = LTTNG_OK;
@@ -2079,7 +1947,7 @@ int handle_notification_thread_command_session_rotation(
        if (!session_info) {
                /* Fatal logic error. */
                ERR("Failed to find session while handling rotation state change: session id = %" PRIu64,
-                               session_id);
+                   session_id);
                ret = -1;
                cmd_result = LTTNG_ERR_FATAL;
                goto end;
@@ -2099,14 +1967,13 @@ int handle_notification_thread_command_session_rotation(
        };
 
        new_session_state.rotation.ongoing = cmd_type ==
-                       NOTIFICATION_COMMAND_TYPE_SESSION_ROTATION_ONGOING;
+               NOTIFICATION_COMMAND_TYPE_SESSION_ROTATION_ONGOING;
        new_session_state.rotation.id = trace_archive_chunk_id;
 
        trigger_list = get_session_trigger_list(state, session_info->name);
        LTTNG_ASSERT(trigger_list);
 
-       cds_list_for_each_entry(trigger_list_element, &trigger_list->list,
-                       node) {
+       cds_list_for_each_entry (trigger_list_element, &trigger_list->list, node) {
                const struct lttng_condition *condition;
                struct lttng_trigger *trigger;
                struct notification_client_list *client_list;
@@ -2118,7 +1985,7 @@ int handle_notification_thread_command_session_rotation(
                LTTNG_ASSERT(condition);
 
                ret = evaluate_session_condition(
-                               condition, session_info, &new_session_state, &evaluation);
+                       condition, session_info, &new_session_state, &evaluation);
                if (ret) {
                        ret = -1;
                        cmd_result = LTTNG_ERR_NOMEM;
@@ -2136,8 +2003,7 @@ int handle_notification_thread_command_session_rotation(
                 */
                client_list = get_client_list_from_condition(state, condition);
                executor_status = action_executor_enqueue_trigger(
-                               state->executor, trigger, evaluation,
-                               &session_creds, client_list);
+                       state->executor, trigger, evaluation, &session_creds, client_list);
                notification_client_list_put(client_list);
                evaluation = NULL;
                switch (executor_status) {
@@ -2180,12 +2046,11 @@ end:
        return ret;
 }
 
-static
-int handle_notification_thread_command_add_tracer_event_source(
-               struct notification_thread_state *state,
-               int tracer_event_source_fd,
-               enum lttng_domain_type domain_type,
-               enum lttng_error_code *_cmd_result)
+static int
+handle_notification_thread_command_add_tracer_event_source(struct notification_thread_state *state,
+                                                          int tracer_event_source_fd,
+                                                          enum lttng_domain_type domain_type,
+                                                          enum lttng_error_code *_cmd_result)
 {
        int ret = 0;
        enum lttng_error_code cmd_result = LTTNG_OK;
@@ -2204,15 +2069,15 @@ int handle_notification_thread_command_add_tracer_event_source(
        cds_list_add(&element->node, &state->tracer_event_sources_list);
 
        DBG3("Adding tracer event source fd to poll set: tracer_event_source_fd = %d, domain = '%s'",
-                       tracer_event_source_fd,
-                       lttng_domain_type_str(domain_type));
+            tracer_event_source_fd,
+            lttng_domain_type_str(domain_type));
 
        /* Adding the read side pipe to the event poll. */
        ret = lttng_poll_add(&state->events, tracer_event_source_fd, LPOLLPRI | LPOLLIN);
        if (ret < 0) {
                ERR("Failed to add tracer event source to poll set: tracer_event_source_fd = %d, domain = '%s'",
-                               tracer_event_source_fd,
-                               lttng_domain_type_str(element->domain));
+                   tracer_event_source_fd,
+                   lttng_domain_type_str(element->domain));
                cds_list_del(&element->node);
                free(element);
                goto end;
@@ -2225,10 +2090,9 @@ end:
        return ret;
 }
 
-static
-int drain_event_notifier_notification_pipe(
-               struct notification_thread_state *state,
-               int pipe, enum lttng_domain_type domain)
+static int drain_event_notifier_notification_pipe(struct notification_thread_state *state,
+                                                 int pipe,
+                                                 enum lttng_domain_type domain)
 {
        struct lttng_poll_event events = {};
        int ret;
@@ -2242,7 +2106,7 @@ int drain_event_notifier_notification_pipe(
        ret = lttng_poll_add(&events, pipe, LPOLLIN);
        if (ret < 0) {
                ERR("Error adding fd event notifier notification pipe to lttng_poll_event: fd = %d",
-                               pipe);
+                   pipe);
                goto end;
        }
 
@@ -2270,7 +2134,7 @@ int drain_event_notifier_notification_pipe(
                ret = handle_one_event_notifier_notification(state, pipe, domain);
                if (ret) {
                        ERR("Error consuming an event notifier notification from pipe: fd = %d",
-                                       pipe);
+                           pipe);
                }
        }
 end:
@@ -2278,15 +2142,13 @@ end:
        return ret;
 }
 
-static
-struct notification_event_tracer_event_source_element *
+static struct notification_event_tracer_event_source_element *
 find_tracer_event_source_element(struct notification_thread_state *state,
-               int tracer_event_source_fd)
+                                int tracer_event_source_fd)
 {
        struct notification_event_tracer_event_source_element *source_element;
 
-       cds_list_for_each_entry(source_element,
-                       &state->tracer_event_sources_list, node) {
+       cds_list_for_each_entry (source_element, &state->tracer_event_sources_list, node) {
                if (source_element->fd == tracer_event_source_fd) {
                        goto end;
                }
@@ -2297,25 +2159,24 @@ end:
        return source_element;
 }
 
-static
-int remove_tracer_event_source_from_pollset(
-               struct notification_thread_state *state,
-               struct notification_event_tracer_event_source_element *source_element)
+static int remove_tracer_event_source_from_pollset(
+       struct notification_thread_state *state,
+       struct notification_event_tracer_event_source_element *source_element)
 {
        int ret = 0;
 
        LTTNG_ASSERT(source_element->is_fd_in_poll_set);
 
        DBG3("Removing tracer event source from poll set: tracer_event_source_fd = %d, domain = '%s'",
-                       source_element->fd,
-                       lttng_domain_type_str(source_element->domain));
+            source_element->fd,
+            lttng_domain_type_str(source_element->domain));
 
        /* Removing the fd from the event poll set. */
        ret = lttng_poll_del(&state->events, source_element->fd);
        if (ret < 0) {
                ERR("Failed to remove tracer event source from poll set: tracer_event_source_fd = %d, domain = '%s'",
-                               source_element->fd,
-                               lttng_domain_type_str(source_element->domain));
+                   source_element->fd,
+                   lttng_domain_type_str(source_element->domain));
                ret = -1;
                goto end;
        }
@@ -2328,12 +2189,12 @@ int remove_tracer_event_source_from_pollset(
         */
        state->restart_poll = true;
 
-       ret = drain_event_notifier_notification_pipe(state, source_element->fd,
-                       source_element->domain);
+       ret = drain_event_notifier_notification_pipe(
+               state, source_element->fd, source_element->domain);
        if (ret) {
                ERR("Error draining event notifier notification: tracer_event_source_fd = %d, domain = %s",
-                               source_element->fd,
-                               lttng_domain_type_str(source_element->domain));
+                   source_element->fd,
+                   lttng_domain_type_str(source_element->domain));
                ret = -1;
                goto end;
        }
@@ -2342,15 +2203,13 @@ end:
        return ret;
 }
 
-int handle_notification_thread_tracer_event_source_died(
-               struct notification_thread_state *state,
-               int tracer_event_source_fd)
+int handle_notification_thread_tracer_event_source_died(struct notification_thread_state *state,
+                                                       int tracer_event_source_fd)
 {
        int ret = 0;
        struct notification_event_tracer_event_source_element *source_element;
 
-       source_element = find_tracer_event_source_element(state,
-                       tracer_event_source_fd);
+       source_element = find_tracer_event_source_element(state, tracer_event_source_fd);
 
        LTTNG_ASSERT(source_element);
 
@@ -2362,18 +2221,16 @@ int handle_notification_thread_tracer_event_source_died(
        return ret;
 }
 
-static
-int handle_notification_thread_command_remove_tracer_event_source(
-               struct notification_thread_state *state,
-               int tracer_event_source_fd,
-               enum lttng_error_code *_cmd_result)
+static int handle_notification_thread_command_remove_tracer_event_source(
+       struct notification_thread_state *state,
+       int tracer_event_source_fd,
+       enum lttng_error_code *_cmd_result)
 {
        int ret = 0;
        enum lttng_error_code cmd_result = LTTNG_OK;
        struct notification_event_tracer_event_source_element *source_element = NULL;
 
-       source_element = find_tracer_event_source_element(state,
-                       tracer_event_source_fd);
+       source_element = find_tracer_event_source_element(state, tracer_event_source_fd);
 
        LTTNG_ASSERT(source_element);
 
@@ -2397,12 +2254,13 @@ end:
        return ret;
 }
 
-static int handle_notification_thread_command_list_triggers(
-               struct notification_thread_handle *handle __attribute__((unused)),
-               struct notification_thread_state *state,
-               uid_t client_uid,
-               struct lttng_triggers **triggers,
-               enum lttng_error_code *_cmd_result)
+static int
+handle_notification_thread_command_list_triggers(struct notification_thread_handle *handle
+                                                __attribute__((unused)),
+                                                struct notification_thread_state *state,
+                                                uid_t client_uid,
+                                                struct lttng_triggers **triggers,
+                                                enum lttng_error_code *_cmd_result)
 {
        int ret = 0;
        enum lttng_error_code cmd_result = LTTNG_OK;
@@ -2420,8 +2278,7 @@ static int handle_notification_thread_command_list_triggers(
                goto end;
        }
 
-       cds_lfht_for_each_entry(state->triggers_ht, &iter,
-                       trigger_ht_element, node) {
+       cds_lfht_for_each_entry (state->triggers_ht, &iter, trigger_ht_element, node) {
                /*
                 * Only return the triggers to which the client has access.
                 * The root user has visibility over all triggers.
@@ -2431,8 +2288,7 @@ static int handle_notification_thread_command_list_triggers(
                        continue;
                }
 
-               ret = lttng_triggers_add(local_triggers,
-                               trigger_ht_element->trigger);
+               ret = lttng_triggers_add(local_triggers, trigger_ht_element->trigger);
                if (ret < 0) {
                        /* Not a fatal error. */
                        ret = 0;
@@ -2453,8 +2309,8 @@ end:
 }
 
 static inline void get_trigger_info_for_log(const struct lttng_trigger *trigger,
-               const char **trigger_name,
-               uid_t *trigger_owner_uid)
+                                           const char **trigger_name,
+                                           uid_t *trigger_owner_uid)
 {
        enum lttng_trigger_status trigger_status;
 
@@ -2469,16 +2325,14 @@ static inline void get_trigger_info_for_log(const struct lttng_trigger *trigger,
                abort();
        }
 
-       trigger_status = lttng_trigger_get_owner_uid(trigger,
-                       trigger_owner_uid);
+       trigger_status = lttng_trigger_get_owner_uid(trigger, trigger_owner_uid);
        LTTNG_ASSERT(trigger_status == LTTNG_TRIGGER_STATUS_OK);
 }
 
-static int handle_notification_thread_command_get_trigger(
-               struct notification_thread_state *state,
-               const struct lttng_trigger *trigger,
-               struct lttng_trigger **registered_trigger,
-               enum lttng_error_code *_cmd_result)
+static int handle_notification_thread_command_get_trigger(struct notification_thread_state *state,
+                                                         const struct lttng_trigger *trigger,
+                                                         struct lttng_trigger **registered_trigger,
+                                                         enum lttng_error_code *_cmd_result)
 {
        int ret = -1;
        struct cds_lfht_iter iter;
@@ -2489,10 +2343,8 @@ static int handle_notification_thread_command_get_trigger(
 
        rcu_read_lock();
 
-       cds_lfht_for_each_entry(
-                       state->triggers_ht, &iter, trigger_ht_element, node) {
-               if (lttng_trigger_is_equal(
-                                   trigger, trigger_ht_element->trigger)) {
+       cds_lfht_for_each_entry (state->triggers_ht, &iter, trigger_ht_element, node) {
+               if (lttng_trigger_is_equal(trigger, trigger_ht_element->trigger)) {
                        /* Take one reference on the return trigger. */
                        *registered_trigger = trigger_ht_element->trigger;
                        lttng_trigger_get(*registered_trigger);
@@ -2505,7 +2357,8 @@ static int handle_notification_thread_command_get_trigger(
        /* Not a fatal error if the trigger is not found. */
        get_trigger_info_for_log(trigger, &trigger_name, &trigger_owner_uid);
        DBG("Failed to retrieve registered version of trigger: trigger name = '%s', trigger owner uid = %d",
-                       trigger_name, (int) trigger_owner_uid);
+           trigger_name,
+           (int) trigger_owner_uid);
 
        ret = 0;
 
@@ -2515,8 +2368,7 @@ end:
        return ret;
 }
 
-static
-bool condition_is_supported(struct lttng_condition *condition)
+static bool condition_is_supported(struct lttng_condition *condition)
 {
        bool is_supported;
 
@@ -2527,8 +2379,7 @@ bool condition_is_supported(struct lttng_condition *condition)
                int ret;
                enum lttng_domain_type domain;
 
-               ret = lttng_condition_buffer_usage_get_domain_type(condition,
-                               &domain);
+               ret = lttng_condition_buffer_usage_get_domain_type(condition, &domain);
                LTTNG_ASSERT(ret == 0);
 
                if (domain != LTTNG_DOMAIN_KERNEL) {
@@ -2551,8 +2402,7 @@ bool condition_is_supported(struct lttng_condition *condition)
                const struct lttng_event_rule *event_rule;
                enum lttng_domain_type domain;
                const enum lttng_condition_status status =
-                               lttng_condition_event_rule_matches_get_rule(
-                                               condition, &event_rule);
+                       lttng_condition_event_rule_matches_get_rule(condition, &event_rule);
 
                LTTNG_ASSERT(status == LTTNG_CONDITION_STATUS_OK);
 
@@ -2580,9 +2430,8 @@ end:
 }
 
 /* Must be called with RCU read lock held. */
-static
-int bind_trigger_to_matching_session(struct lttng_trigger *trigger,
-               struct notification_thread_state *state)
+static int bind_trigger_to_matching_session(struct lttng_trigger *trigger,
+                                           struct notification_thread_state *state)
 {
        int ret = 0;
        const struct lttng_condition *condition;
@@ -2597,22 +2446,19 @@ int bind_trigger_to_matching_session(struct lttng_trigger *trigger,
        trigger_list = get_session_trigger_list(state, session_name);
        if (!trigger_list) {
                DBG("Unable to bind trigger applying to session \"%s\" as it is not yet known to the notification system",
-                               session_name);
+                   session_name);
                goto end;
-
        }
 
-       DBG("Newly registered trigger bound to session \"%s\"",
-                       session_name);
+       DBG("Newly registered trigger bound to session \"%s\"", session_name);
        ret = lttng_session_trigger_list_add(trigger_list, trigger);
 end:
        return ret;
 }
 
 /* Must be called with RCU read lock held. */
-static
-int bind_trigger_to_matching_channels(struct lttng_trigger *trigger,
-               struct notification_thread_state *state)
+static int bind_trigger_to_matching_channels(struct lttng_trigger *trigger,
+                                            struct notification_thread_state *state)
 {
        int ret = 0;
        struct cds_lfht_node *node;
@@ -2621,8 +2467,7 @@ int bind_trigger_to_matching_channels(struct lttng_trigger *trigger,
 
        ASSERT_RCU_READ_LOCKED();
 
-       cds_lfht_for_each_entry(state->channels_ht, &iter, channel,
-                       channels_ht_node) {
+       cds_lfht_for_each_entry (state->channels_ht, &iter, channel, channels_ht_node) {
                struct lttng_trigger_list_element *trigger_list_element;
                struct lttng_channel_trigger_list *trigger_list;
                struct cds_lfht_iter lookup_iter;
@@ -2638,9 +2483,8 @@ int bind_trigger_to_matching_channels(struct lttng_trigger *trigger,
                                &lookup_iter);
                node = cds_lfht_iter_get_node(&lookup_iter);
                LTTNG_ASSERT(node);
-               trigger_list = caa_container_of(node,
-                               struct lttng_channel_trigger_list,
-                               channel_triggers_ht_node);
+               trigger_list = caa_container_of(
+                       node, struct lttng_channel_trigger_list, channel_triggers_ht_node);
 
                trigger_list_element = zmalloc<lttng_trigger_list_element>();
                if (!trigger_list_element) {
@@ -2650,21 +2494,18 @@ int bind_trigger_to_matching_channels(struct lttng_trigger *trigger,
                CDS_INIT_LIST_HEAD(&trigger_list_element->node);
                trigger_list_element->trigger = trigger;
                cds_list_add(&trigger_list_element->node, &trigger_list->list);
-               DBG("Newly registered trigger bound to channel \"%s\"",
-                               channel->name);
+               DBG("Newly registered trigger bound to channel \"%s\"", channel->name);
        }
 end:
        return ret;
 }
 
-static
-bool is_trigger_action_notify(const struct lttng_trigger *trigger)
+static bool is_trigger_action_notify(const struct lttng_trigger *trigger)
 {
        bool is_notify = false;
        unsigned int i, count;
        enum lttng_action_status action_status;
-       const struct lttng_action *action =
-                       lttng_trigger_get_const_action(trigger);
+       const struct lttng_action *action = lttng_trigger_get_const_action(trigger);
        enum lttng_action_type action_type;
 
        LTTNG_ASSERT(action);
@@ -2680,9 +2521,7 @@ bool is_trigger_action_notify(const struct lttng_trigger *trigger)
        LTTNG_ASSERT(action_status == LTTNG_ACTION_STATUS_OK);
 
        for (i = 0; i < count; i++) {
-               const struct lttng_action *inner_action =
-                               lttng_action_list_get_at_index(
-                                               action, i);
+               const struct lttng_action *inner_action = lttng_action_list_get_at_index(action, i);
 
                action_type = lttng_action_get_type(inner_action);
                if (action_type == LTTNG_ACTION_TYPE_NOTIFY) {
@@ -2696,7 +2535,7 @@ end:
 }
 
 static bool trigger_name_taken(struct notification_thread_state *state,
-               const struct lttng_trigger *trigger)
+                              const struct lttng_trigger *trigger)
 {
        struct cds_lfht_iter iter;
 
@@ -2712,18 +2551,17 @@ static bool trigger_name_taken(struct notification_thread_state *state,
        return !!cds_lfht_iter_get_node(&iter);
 }
 
-static
-enum lttng_error_code generate_trigger_name(
-               struct notification_thread_state *state,
-               struct lttng_trigger *trigger, const char **name)
+static enum lttng_error_code generate_trigger_name(struct notification_thread_state *state,
+                                                  struct lttng_trigger *trigger,
+                                                  const char **name)
 {
        enum lttng_error_code ret_code = LTTNG_OK;
        bool taken = false;
        enum lttng_trigger_status status;
 
        do {
-               const int ret = lttng_trigger_generate_name(trigger,
-                               state->trigger_id.name_offset++);
+               const int ret =
+                       lttng_trigger_generate_name(trigger, state->trigger_id.name_offset++);
                if (ret) {
                        /* The only reason this can fail right now. */
                        ret_code = LTTNG_ERR_NOMEM;
@@ -2739,10 +2577,9 @@ enum lttng_error_code generate_trigger_name(
        return ret_code;
 }
 
-static inline
-void notif_thread_state_remove_trigger_ht_elem(
-               struct notification_thread_state *state,
-               struct lttng_trigger_ht_element *trigger_ht_element)
+static inline void
+notif_thread_state_remove_trigger_ht_elem(struct notification_thread_state *state,
+                                         struct lttng_trigger_ht_element *trigger_ht_element)
 {
        LTTNG_ASSERT(state);
        LTTNG_ASSERT(trigger_ht_element);
@@ -2751,10 +2588,8 @@ void notif_thread_state_remove_trigger_ht_elem(
        cds_lfht_del(state->triggers_by_name_uid_ht, &trigger_ht_element->node_by_name_uid);
 }
 
-static
-enum lttng_error_code setup_tracer_notifier(
-               struct notification_thread_state *state,
-               struct lttng_trigger *trigger)
+static enum lttng_error_code setup_tracer_notifier(struct notification_thread_state *state,
+                                                  struct lttng_trigger *trigger)
 {
        enum lttng_error_code ret;
        enum event_notifier_error_accounting_status error_accounting_status;
@@ -2775,19 +2610,20 @@ enum lttng_error_code setup_tracer_notifier(
        trigger_tokens_ht_element->trigger = trigger;
 
        node = cds_lfht_add_unique(state->trigger_tokens_ht,
-                       hash_key_u64(&trigger_tokens_ht_element->token, lttng_ht_seed),
-                       match_trigger_token,
-                       &trigger_tokens_ht_element->token,
-                       &trigger_tokens_ht_element->node);
+                                  hash_key_u64(&trigger_tokens_ht_element->token, lttng_ht_seed),
+                                  match_trigger_token,
+                                  &trigger_tokens_ht_element->token,
+                                  &trigger_tokens_ht_element->node);
        if (node != &trigger_tokens_ht_element->node) {
                ret = LTTNG_ERR_TRIGGER_EXISTS;
                goto error_free_ht_element;
        }
 
        error_accounting_status = event_notifier_error_accounting_register_event_notifier(
-                       trigger, &error_counter_index);
+               trigger, &error_counter_index);
        if (error_accounting_status != EVENT_NOTIFIER_ERROR_ACCOUNTING_STATUS_OK) {
-               if (error_accounting_status == EVENT_NOTIFIER_ERROR_ACCOUNTING_STATUS_NO_INDEX_AVAILABLE) {
+               if (error_accounting_status ==
+                   EVENT_NOTIFIER_ERROR_ACCOUNTING_STATUS_NO_INDEX_AVAILABLE) {
                        DBG("Trigger list error accounting counter full.");
                        ret = LTTNG_ERR_EVENT_NOTIFIER_ERROR_ACCOUNTING_FULL;
                } else {
@@ -2798,8 +2634,7 @@ enum lttng_error_code setup_tracer_notifier(
                goto error_remove_ht_element;
        }
 
-       lttng_condition_event_rule_matches_set_error_counter_index(
-                       condition, error_counter_index);
+       lttng_condition_event_rule_matches_set_error_counter_index(condition, error_counter_index);
 
        ret = LTTNG_OK;
        goto end;
@@ -2827,27 +2662,25 @@ end:
  * If a non-fatal error occurs, just set the cmd_result to the appropriate
  * error code.
  */
-static
-int handle_notification_thread_command_register_trigger(
-               struct notification_thread_state *state,
-               struct lttng_trigger *trigger,
-               bool is_trigger_anonymous,
-               enum lttng_error_code *cmd_result)
+static int
+handle_notification_thread_command_register_trigger(struct notification_thread_state *state,
+                                                   struct lttng_trigger *trigger,
+                                                   bool is_trigger_anonymous,
+                                                   enum lttng_error_code *cmd_result)
 {
        int ret = 0;
        struct lttng_condition *condition;
        struct notification_client_list *client_list = NULL;
        struct lttng_trigger_ht_element *trigger_ht_element = NULL;
        struct cds_lfht_node *node;
-       const chartrigger_name;
+       const char *trigger_name;
        bool free_trigger = true;
        struct lttng_evaluation *evaluation = NULL;
        struct lttng_credentials object_creds;
        uid_t object_uid;
        gid_t object_gid;
        enum action_executor_status executor_status;
-       const uint64_t trigger_tracer_token =
-                       state->trigger_id.next_tracer_token++;
+       const uint64_t trigger_tracer_token = state->trigger_id.next_tracer_token++;
 
        rcu_read_lock();
 
@@ -2855,11 +2688,9 @@ int handle_notification_thread_command_register_trigger(
        lttng_trigger_set_tracer_token(trigger, trigger_tracer_token);
 
        if (!is_trigger_anonymous) {
-               if (lttng_trigger_get_name(trigger, &trigger_name) ==
-                               LTTNG_TRIGGER_STATUS_UNSET) {
+               if (lttng_trigger_get_name(trigger, &trigger_name) == LTTNG_TRIGGER_STATUS_UNSET) {
                        const enum lttng_error_code ret_code =
-                                       generate_trigger_name(state, trigger,
-                                                       &trigger_name);
+                               generate_trigger_name(state, trigger, &trigger_name);
 
                        if (ret_code != LTTNG_OK) {
                                /* Fatal error. */
@@ -2898,10 +2729,10 @@ int handle_notification_thread_command_register_trigger(
        trigger_ht_element->trigger = trigger;
 
        node = cds_lfht_add_unique(state->triggers_ht,
-                       lttng_condition_hash(condition),
-                       match_trigger,
-                       trigger,
-                       &trigger_ht_element->node);
+                                  lttng_condition_hash(condition),
+                                  match_trigger,
+                                  trigger,
+                                  &trigger_ht_element->node);
        if (node != &trigger_ht_element->node) {
                /* Not a fatal error, simply report it to the client. */
                *cmd_result = LTTNG_ERR_TRIGGER_EXISTS;
@@ -2909,10 +2740,10 @@ int handle_notification_thread_command_register_trigger(
        }
 
        node = cds_lfht_add_unique(state->triggers_by_name_uid_ht,
-                       hash_trigger_by_name_uid(trigger),
-                       match_trigger_by_name_uid,
-                       trigger,
-                       &trigger_ht_element->node_by_name_uid);
+                                  hash_trigger_by_name_uid(trigger),
+                                  match_trigger_by_name_uid,
+                                  trigger,
+                                  &trigger_ht_element->node_by_name_uid);
        if (node != &trigger_ht_element->node_by_name_uid) {
                /* Internal error: add to triggers_ht should have failed. */
                ret = -1;
@@ -2931,8 +2762,7 @@ int handle_notification_thread_command_register_trigger(
 
                error_code = setup_tracer_notifier(state, trigger);
                if (error_code != LTTNG_OK) {
-                       notif_thread_state_remove_trigger_ht_elem(state,
-                                       trigger_ht_element);
+                       notif_thread_state_remove_trigger_ht_elem(state, trigger_ht_element);
                        if (error_code == LTTNG_ERR_NOMEM) {
                                ret = -1;
                        } else {
@@ -2963,7 +2793,8 @@ int handle_notification_thread_command_register_trigger(
                         */
                        client_list = notification_client_list_create(state, condition);
                        if (!client_list) {
-                               ERR("Error creating notification client list for trigger %s", trigger->name);
+                               ERR("Error creating notification client list for trigger %s",
+                                   trigger->name);
                                ret = -1;
                                goto error_free_ht_element;
                        }
@@ -2972,7 +2803,8 @@ int handle_notification_thread_command_register_trigger(
                CDS_INIT_LIST_HEAD(&trigger_ht_element->client_list_trigger_node);
 
                pthread_mutex_lock(&client_list->lock);
-               cds_list_add(&trigger_ht_element->client_list_trigger_node, &client_list->triggers_list);
+               cds_list_add(&trigger_ht_element->client_list_trigger_node,
+                            &client_list->triggers_list);
                pthread_mutex_unlock(&client_list->lock);
        }
 
@@ -3047,7 +2879,7 @@ int handle_notification_thread_command_register_trigger(
                if (!session_info) {
                        /* Not an error, the session doesn't exist yet. */
                        DBG("Session not found while evaluating session condition during registration of trigger: session name = `%s`",
-                                       session_name);
+                           session_name);
                        ret = 0;
                        goto success;
                }
@@ -3060,9 +2892,8 @@ int handle_notification_thread_command_register_trigger(
                break;
        }
        case LTTNG_OBJECT_TYPE_CHANNEL:
-               ret = evaluate_channel_condition_for_client(condition, state,
-                               &evaluation, &object_uid,
-                               &object_gid);
+               ret = evaluate_channel_condition_for_client(
+                       condition, state, &evaluation, &object_uid, &object_gid);
                LTTNG_OPTIONAL_SET(&object_creds.uid, object_uid);
                LTTNG_OPTIONAL_SET(&object_creds.gid, object_gid);
                break;
@@ -3080,8 +2911,7 @@ int handle_notification_thread_command_register_trigger(
                goto error_free_ht_element;
        }
 
-       DBG("Newly registered trigger's condition evaluated to %s",
-                       evaluation ? "true" : "false");
+       DBG("Newly registered trigger's condition evaluated to %s", evaluation ? "true" : "false");
        if (!evaluation) {
                /* Evaluation yielded nothing. Normal exit. */
                ret = 0;
@@ -3092,8 +2922,8 @@ int handle_notification_thread_command_register_trigger(
         * Ownership of `evaluation` transferred to the action executor
         * no matter the result.
         */
-       executor_status = action_executor_enqueue_trigger(state->executor,
-                       trigger, evaluation, &object_creds, client_list);
+       executor_status = action_executor_enqueue_trigger(
+               state->executor, trigger, evaluation, &object_creds, client_list);
        evaluation = NULL;
        switch (executor_status) {
        case ACTION_EXECUTOR_STATUS_OK:
@@ -3124,14 +2954,14 @@ int handle_notification_thread_command_register_trigger(
 success:
        *cmd_result = LTTNG_OK;
        DBG("Registered trigger: name = `%s`, tracer token = %" PRIu64,
-                       trigger_name, trigger_tracer_token);
+           trigger_name,
+           trigger_tracer_token);
        goto end;
 
 error_free_ht_element:
        if (trigger_ht_element) {
                /* Delayed removal due to RCU constraint on delete. */
-               call_rcu(&trigger_ht_element->rcu_node,
-                               free_lttng_trigger_ht_element_rcu);
+               call_rcu(&trigger_ht_element->rcu_node, free_lttng_trigger_ht_element_rcu);
        }
 error:
        if (free_trigger) {
@@ -3147,54 +2977,44 @@ end:
        return ret;
 }
 
-static
-void free_lttng_trigger_ht_element_rcu(struct rcu_head *node)
+static void free_lttng_trigger_ht_element_rcu(struct rcu_head *node)
 {
-       free(caa_container_of(node, struct lttng_trigger_ht_element,
-                       rcu_node));
+       free(caa_container_of(node, struct lttng_trigger_ht_element, rcu_node));
 }
 
-static
-void free_notification_trigger_tokens_ht_element_rcu(struct rcu_head *node)
+static void free_notification_trigger_tokens_ht_element_rcu(struct rcu_head *node)
 {
-       free(caa_container_of(node, struct notification_trigger_tokens_ht_element,
-                       rcu_node));
+       free(caa_container_of(node, struct notification_trigger_tokens_ht_element, rcu_node));
 }
 
-static
-void teardown_tracer_notifier(struct notification_thread_state *state,
-               const struct lttng_trigger *trigger)
+static void teardown_tracer_notifier(struct notification_thread_state *state,
+                                    const struct lttng_trigger *trigger)
 {
        struct cds_lfht_iter iter;
        struct notification_trigger_tokens_ht_element *trigger_tokens_ht_element;
 
-       cds_lfht_for_each_entry(state->trigger_tokens_ht, &iter,
-                       trigger_tokens_ht_element, node) {
-
-               if (!lttng_trigger_is_equal(trigger,
-                                       trigger_tokens_ht_element->trigger)) {
+       cds_lfht_for_each_entry (state->trigger_tokens_ht, &iter, trigger_tokens_ht_element, node) {
+               if (!lttng_trigger_is_equal(trigger, trigger_tokens_ht_element->trigger)) {
                        continue;
                }
 
                event_notifier_error_accounting_unregister_event_notifier(
-                               trigger_tokens_ht_element->trigger);
+                       trigger_tokens_ht_element->trigger);
 
                /* TODO talk to all app and remove it */
                DBG("Removed trigger from tokens_ht");
-               cds_lfht_del(state->trigger_tokens_ht,
-                               &trigger_tokens_ht_element->node);
+               cds_lfht_del(state->trigger_tokens_ht, &trigger_tokens_ht_element->node);
 
                call_rcu(&trigger_tokens_ht_element->rcu_node,
-                               free_notification_trigger_tokens_ht_element_rcu);
+                        free_notification_trigger_tokens_ht_element_rcu);
 
                break;
        }
 }
 
-static
-void remove_trigger_from_session_trigger_list(
-       struct lttng_session_trigger_list *trigger_list,
-       const struct lttng_trigger *trigger)
+static void
+remove_trigger_from_session_trigger_list(struct lttng_session_trigger_list *trigger_list,
+                                        const struct lttng_trigger *trigger)
 {
        bool found = false;
        struct lttng_trigger_list_element *trigger_element, *tmp;
@@ -3214,33 +3034,28 @@ void remove_trigger_from_session_trigger_list(
 
        if (!found) {
                ERR("Failed to find trigger associated with session: session name = `%s`",
-                               trigger_list->session_name);
+                   trigger_list->session_name);
        }
 
        LTTNG_ASSERT(found);
 }
 
-static
-int handle_notification_thread_command_unregister_trigger(
-               struct notification_thread_state *state,
-               const struct lttng_trigger *trigger,
-               enum lttng_error_code *_cmd_reply)
+static int
+handle_notification_thread_command_unregister_trigger(struct notification_thread_state *state,
+                                                     const struct lttng_trigger *trigger,
+                                                     enum lttng_error_code *_cmd_reply)
 {
        struct cds_lfht_iter iter;
        struct cds_lfht_node *triggers_ht_node;
        struct notification_client_list *client_list;
        struct lttng_trigger_ht_element *trigger_ht_element = NULL;
-       const struct lttng_condition *condition = lttng_trigger_get_const_condition(
-                       trigger);
+       const struct lttng_condition *condition = lttng_trigger_get_const_condition(trigger);
        enum lttng_error_code cmd_reply;
 
        rcu_read_lock();
 
-       cds_lfht_lookup(state->triggers_ht,
-                       lttng_condition_hash(condition),
-                       match_trigger,
-                       trigger,
-                       &iter);
+       cds_lfht_lookup(
+               state->triggers_ht, lttng_condition_hash(condition), match_trigger, trigger, &iter);
        triggers_ht_node = cds_lfht_iter_get_node(&iter);
        if (!triggers_ht_node) {
                cmd_reply = LTTNG_ERR_TRIGGER_NOT_FOUND;
@@ -3249,8 +3064,8 @@ int handle_notification_thread_command_unregister_trigger(
                cmd_reply = LTTNG_OK;
        }
 
-       trigger_ht_element = caa_container_of(triggers_ht_node,
-                       struct lttng_trigger_ht_element, node);
+       trigger_ht_element =
+               caa_container_of(triggers_ht_node, struct lttng_trigger_ht_element, node);
 
        switch (get_condition_binding_object(condition)) {
        case LTTNG_OBJECT_TYPE_CHANNEL:
@@ -3266,12 +3081,12 @@ int handle_notification_thread_command_unregister_trigger(
                 *
                 * Iterate on all lists since we don't know the target channels' keys.
                 */
-               cds_lfht_for_each_entry(state->channel_triggers_ht, &iter, trigger_list,
-                               channel_triggers_ht_node) {
+               cds_lfht_for_each_entry (
+                       state->channel_triggers_ht, &iter, trigger_list, channel_triggers_ht_node) {
                        struct lttng_trigger_list_element *trigger_element, *tmp;
 
-                       cds_list_for_each_entry_safe(
-                                       trigger_element, tmp, &trigger_list->list, node) {
+                       cds_list_for_each_entry_safe (
+                               trigger_element, tmp, &trigger_list->list, node) {
                                if (!lttng_trigger_is_equal(trigger, trigger_element->trigger)) {
                                        continue;
                                }
@@ -3287,8 +3102,8 @@ int handle_notification_thread_command_unregister_trigger(
        }
        case LTTNG_OBJECT_TYPE_SESSION:
        {
-               auto session = get_session_info_by_name(
-                               state, get_condition_session_name(condition));
+               auto session =
+                       get_session_info_by_name(state, get_condition_session_name(condition));
 
                /* Session doesn't exist, no trigger to remove. */
                if (!session) {
@@ -3341,9 +3156,8 @@ end:
        return 0;
 }
 
-static
-int pop_cmd_queue(struct notification_thread_handle *handle,
-               struct notification_thread_command **cmd)
+static int pop_cmd_queue(struct notification_thread_handle *handle,
+                        struct notification_thread_command **cmd)
 {
        int ret;
        uint64_t counter;
@@ -3355,8 +3169,8 @@ int pop_cmd_queue(struct notification_thread_handle *handle,
                goto error_unlock;
        }
 
-       *cmd = cds_list_first_entry(&handle->cmd_queue.list,
-                       struct notification_thread_command, cmd_list_node);
+       *cmd = cds_list_first_entry(
+               &handle->cmd_queue.list, struct notification_thread_command, cmd_list_node);
        cds_list_del(&((*cmd)->cmd_list_node));
        ret = 0;
 
@@ -3366,9 +3180,8 @@ error_unlock:
 }
 
 /* Returns 0 on success, 1 on exit requested, negative value on error. */
-int handle_notification_thread_command(
-               struct notification_thread_handle *handle,
-               struct notification_thread_state *state)
+int handle_notification_thread_command(struct notification_thread_handle *handle,
+                                      struct notification_thread_state *state)
 {
        int ret;
        struct notification_thread_command *cmd;
@@ -3378,81 +3191,82 @@ int handle_notification_thread_command(
                goto error;
        }
 
-       DBG("Received `%s` command",
-                       notification_command_type_str(cmd->type));
+       DBG("Received `%s` command", notification_command_type_str(cmd->type));
        switch (cmd->type) {
        case NOTIFICATION_COMMAND_TYPE_REGISTER_TRIGGER:
-               ret = handle_notification_thread_command_register_trigger(state,
-                               cmd->parameters.register_trigger.trigger,
-                               cmd->parameters.register_trigger.is_trigger_anonymous,
-                               &cmd->reply_code);
+               ret = handle_notification_thread_command_register_trigger(
+                       state,
+                       cmd->parameters.register_trigger.trigger,
+                       cmd->parameters.register_trigger.is_trigger_anonymous,
+                       &cmd->reply_code);
                break;
        case NOTIFICATION_COMMAND_TYPE_UNREGISTER_TRIGGER:
                ret = handle_notification_thread_command_unregister_trigger(
-                               state,
-                               cmd->parameters.unregister_trigger.trigger,
-                               &cmd->reply_code);
+                       state, cmd->parameters.unregister_trigger.trigger, &cmd->reply_code);
                break;
        case NOTIFICATION_COMMAND_TYPE_ADD_CHANNEL:
                ret = handle_notification_thread_command_add_channel(
-                               state,
-                               cmd->parameters.add_channel.session.id,
-                               cmd->parameters.add_channel.channel.name,
-                               cmd->parameters.add_channel.channel.domain,
-                               cmd->parameters.add_channel.channel.key,
-                               cmd->parameters.add_channel.channel.capacity,
-                               &cmd->reply_code);
+                       state,
+                       cmd->parameters.add_channel.session.id,
+                       cmd->parameters.add_channel.channel.name,
+                       cmd->parameters.add_channel.channel.domain,
+                       cmd->parameters.add_channel.channel.key,
+                       cmd->parameters.add_channel.channel.capacity,
+                       &cmd->reply_code);
                break;
        case NOTIFICATION_COMMAND_TYPE_REMOVE_CHANNEL:
                ret = handle_notification_thread_command_remove_channel(
-                               state, cmd->parameters.remove_channel.key,
-                               cmd->parameters.remove_channel.domain,
-                               &cmd->reply_code);
+                       state,
+                       cmd->parameters.remove_channel.key,
+                       cmd->parameters.remove_channel.domain,
+                       &cmd->reply_code);
                break;
        case NOTIFICATION_COMMAND_TYPE_ADD_SESSION:
-               ret = handle_notification_thread_command_add_session(state,
-                               cmd->parameters.add_session.session_id,
-                               cmd->parameters.add_session.session_name,
-                               cmd->parameters.add_session.session_uid,
-                               cmd->parameters.add_session.session_gid, &cmd->reply_code);
+               ret = handle_notification_thread_command_add_session(
+                       state,
+                       cmd->parameters.add_session.session_id,
+                       cmd->parameters.add_session.session_name,
+                       cmd->parameters.add_session.session_uid,
+                       cmd->parameters.add_session.session_gid,
+                       &cmd->reply_code);
                break;
        case NOTIFICATION_COMMAND_TYPE_REMOVE_SESSION:
                ret = handle_notification_thread_command_remove_session(
-                               state, cmd->parameters.remove_session.session_id, &cmd->reply_code);
+                       state, cmd->parameters.remove_session.session_id, &cmd->reply_code);
                break;
        case NOTIFICATION_COMMAND_TYPE_SESSION_ROTATION_ONGOING:
        case NOTIFICATION_COMMAND_TYPE_SESSION_ROTATION_COMPLETED:
                ret = handle_notification_thread_command_session_rotation(
-                               state,
-                               cmd->type,
-                               cmd->parameters.session_rotation.session_id,
-                               cmd->parameters.session_rotation.trace_archive_chunk_id,
-                               cmd->parameters.session_rotation.location,
-                               &cmd->reply_code);
+                       state,
+                       cmd->type,
+                       cmd->parameters.session_rotation.session_id,
+                       cmd->parameters.session_rotation.trace_archive_chunk_id,
+                       cmd->parameters.session_rotation.location,
+                       &cmd->reply_code);
                break;
        case NOTIFICATION_COMMAND_TYPE_ADD_TRACER_EVENT_SOURCE:
                ret = handle_notification_thread_command_add_tracer_event_source(
-                               state,
-                               cmd->parameters.tracer_event_source.tracer_event_source_fd,
-                               cmd->parameters.tracer_event_source.domain,
-                               &cmd->reply_code);
+                       state,
+                       cmd->parameters.tracer_event_source.tracer_event_source_fd,
+                       cmd->parameters.tracer_event_source.domain,
+                       &cmd->reply_code);
                break;
        case NOTIFICATION_COMMAND_TYPE_REMOVE_TRACER_EVENT_SOURCE:
                ret = handle_notification_thread_command_remove_tracer_event_source(
-                               state,
-                               cmd->parameters.tracer_event_source.tracer_event_source_fd,
-                               &cmd->reply_code);
+                       state,
+                       cmd->parameters.tracer_event_source.tracer_event_source_fd,
+                       &cmd->reply_code);
                break;
        case NOTIFICATION_COMMAND_TYPE_LIST_TRIGGERS:
        {
                struct lttng_triggers *triggers = NULL;
 
                ret = handle_notification_thread_command_list_triggers(
-                               handle,
-                               state,
-                               cmd->parameters.list_triggers.uid,
-                               &triggers,
-                               &cmd->reply_code);
+                       handle,
+                       state,
+                       cmd->parameters.list_triggers.uid,
+                       &triggers,
+                       &cmd->reply_code);
                cmd->reply.list_triggers.triggers = triggers;
                ret = 0;
                break;
@@ -3465,19 +3279,17 @@ int handle_notification_thread_command(
        {
                struct lttng_trigger *trigger = NULL;
 
-               ret = handle_notification_thread_command_get_trigger(state,
-                               cmd->parameters.get_trigger.trigger, &trigger,
-                               &cmd->reply_code);
+               ret = handle_notification_thread_command_get_trigger(
+                       state, cmd->parameters.get_trigger.trigger, &trigger, &cmd->reply_code);
                cmd->reply.get_trigger.trigger = trigger;
                break;
        }
        case NOTIFICATION_COMMAND_TYPE_CLIENT_COMMUNICATION_UPDATE:
        {
                const enum client_transmission_status client_status =
-                               cmd->parameters.client_communication_update
-                                               .status;
+                       cmd->parameters.client_communication_update.status;
                const notification_client_id client_id =
-                               cmd->parameters.client_communication_update.id;
+                       cmd->parameters.client_communication_update.id;
                struct notification_client *client;
 
                rcu_read_lock();
@@ -3490,11 +3302,10 @@ int handle_notification_thread_command(
                         * gracefully while this command was queued.
                         */
                        DBG("Failed to find notification client to update communication status, client id = %" PRIu64,
-                                       client_id);
+                           client_id);
                        ret = 0;
                } else {
-                       ret = client_handle_transmission_status(
-                                       client, client_status, state);
+                       ret = client_handle_transmission_status(client, client_status, state);
                }
                rcu_read_unlock();
                break;
@@ -3524,8 +3335,7 @@ error:
        return -1;
 }
 
-static
-int socket_set_non_blocking(int socket)
+static int socket_set_non_blocking(int socket)
 {
        int ret, flags;
 
@@ -3547,29 +3357,24 @@ end:
        return ret;
 }
 
-static
-int client_reset_inbound_state(struct notification_client *client)
+static int client_reset_inbound_state(struct notification_client *client)
 {
        int ret;
 
-
        lttng_payload_clear(&client->communication.inbound.payload);
 
        client->communication.inbound.bytes_to_receive =
-                       sizeof(struct lttng_notification_channel_message);
-       client->communication.inbound.msg_type =
-                       LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_UNKNOWN;
+               sizeof(struct lttng_notification_channel_message);
+       client->communication.inbound.msg_type = LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_UNKNOWN;
        LTTNG_SOCK_SET_UID_CRED(&client->communication.inbound.creds, -1);
        LTTNG_SOCK_SET_GID_CRED(&client->communication.inbound.creds, -1);
-       ret = lttng_dynamic_buffer_set_size(
-                       &client->communication.inbound.payload.buffer,
-                       client->communication.inbound.bytes_to_receive);
+       ret = lttng_dynamic_buffer_set_size(&client->communication.inbound.payload.buffer,
+                                           client->communication.inbound.bytes_to_receive);
 
        return ret;
 }
 
-int handle_notification_thread_client_connect(
-               struct notification_thread_state *state)
+int handle_notification_thread_client_connect(struct notification_thread_state *state)
 {
        int ret;
        struct notification_client *client;
@@ -3620,23 +3425,20 @@ int handle_notification_thread_client_connect(
        }
 
        client->communication.current_poll_events = CLIENT_POLL_EVENTS_IN;
-       ret = lttng_poll_add(&state->events, client->socket,
-                       client->communication.current_poll_events);
+       ret = lttng_poll_add(
+               &state->events, client->socket, client->communication.current_poll_events);
        if (ret < 0) {
                ERR("Failed to add notification channel client socket to poll set");
                ret = 0;
                goto error;
        }
-       DBG("Added new notification channel client socket (%i) to poll set",
-                       client->socket);
+       DBG("Added new notification channel client socket (%i) to poll set", client->socket);
 
        rcu_read_lock();
        cds_lfht_add(state->client_socket_ht,
-                       hash_client_socket(client->socket),
-                       &client->client_socket_ht_node);
-       cds_lfht_add(state->client_id_ht,
-                       hash_client_id(client->id),
-                       &client->client_id_ht_node);
+                    hash_client_socket(client->socket),
+                    &client->client_socket_ht_node);
+       cds_lfht_add(state->client_id_ht, hash_client_id(client->id), &client->client_id_ht_node);
        rcu_read_unlock();
 
        return ret;
@@ -3650,10 +3452,8 @@ error:
  * RCU read-lock must be held by the caller.
  * Client lock must _not_ be held by the caller.
  */
-static
-int notification_thread_client_disconnect(
-               struct notification_client *client,
-               struct notification_thread_state *state)
+static int notification_thread_client_disconnect(struct notification_client *client,
+                                                struct notification_thread_state *state)
 {
        int ret;
        struct lttng_condition_list_element *condition_list_element, *tmp;
@@ -3669,15 +3469,13 @@ int notification_thread_client_disconnect(
 
        ret = lttng_poll_del(&state->events, client->socket);
        if (ret) {
-               ERR("Failed to remove client socket %d from poll set",
-                               client->socket);
+               ERR("Failed to remove client socket %d from poll set", client->socket);
        }
 
        /* Release all conditions to which the client was subscribed. */
-       cds_list_for_each_entry_safe(condition_list_element, tmp,
-                       &client->condition_list, node) {
-               (void) notification_thread_client_unsubscribe(client,
-                               condition_list_element->condition, state, NULL);
+       cds_list_for_each_entry_safe (condition_list_element, tmp, &client->condition_list, node) {
+               (void) notification_thread_client_unsubscribe(
+                       client, condition_list_element->condition, state, NULL);
        }
 
        /*
@@ -3688,20 +3486,18 @@ int notification_thread_client_disconnect(
        return ret;
 }
 
-int handle_notification_thread_client_disconnect(
-               int client_socket, struct notification_thread_state *state)
+int handle_notification_thread_client_disconnect(int client_socket,
+                                                struct notification_thread_state *state)
 {
        int ret = 0;
        struct notification_client *client;
 
        rcu_read_lock();
-       DBG("Closing client connection (socket fd = %i)",
-                       client_socket);
+       DBG("Closing client connection (socket fd = %i)", client_socket);
        client = get_client_from_socket(client_socket, state);
        if (!client) {
                /* Internal state corruption, fatal error. */
-               ERR("Unable to find client (socket fd = %i)",
-                               client_socket);
+               ERR("Unable to find client (socket fd = %i)", client_socket);
                ret = -1;
                goto end;
        }
@@ -3712,8 +3508,7 @@ end:
        return ret;
 }
 
-int handle_notification_thread_client_disconnect_all(
-               struct notification_thread_state *state)
+int handle_notification_thread_client_disconnect_all(struct notification_thread_state *state)
 {
        struct cds_lfht_iter iter;
        struct notification_client *client;
@@ -3721,12 +3516,10 @@ int handle_notification_thread_client_disconnect_all(
 
        rcu_read_lock();
        DBG("Closing all client connections");
-       cds_lfht_for_each_entry(state->client_socket_ht, &iter, client,
-                       client_socket_ht_node) {
+       cds_lfht_for_each_entry (state->client_socket_ht, &iter, client, client_socket_ht_node) {
                int ret;
 
-               ret = notification_thread_client_disconnect(
-                               client, state);
+               ret = notification_thread_client_disconnect(client, state);
                if (ret) {
                        error_encoutered = true;
                }
@@ -3735,18 +3528,16 @@ int handle_notification_thread_client_disconnect_all(
        return error_encoutered ? 1 : 0;
 }
 
-int handle_notification_thread_trigger_unregister_all(
-               struct notification_thread_state *state)
+int handle_notification_thread_trigger_unregister_all(struct notification_thread_state *state)
 {
        bool error_occurred = false;
        struct cds_lfht_iter iter;
        struct lttng_trigger_ht_element *trigger_ht_element;
 
        rcu_read_lock();
-       cds_lfht_for_each_entry(state->triggers_ht, &iter, trigger_ht_element,
-                       node) {
+       cds_lfht_for_each_entry (state->triggers_ht, &iter, trigger_ht_element, node) {
                int ret = handle_notification_thread_command_unregister_trigger(
-                               state, trigger_ht_element->trigger, NULL);
+                       state, trigger_ht_element->trigger, NULL);
                if (ret) {
                        error_occurred = true;
                }
@@ -3755,23 +3546,19 @@ int handle_notification_thread_trigger_unregister_all(
        return error_occurred ? -1 : 0;
 }
 
-static
-bool client_has_outbound_data_left(
-               const struct notification_client *client)
+static bool client_has_outbound_data_left(const struct notification_client *client)
 {
-       const struct lttng_payload_view pv = lttng_payload_view_from_payload(
-                       &client->communication.outbound.payload, 0, -1);
+       const struct lttng_payload_view pv =
+               lttng_payload_view_from_payload(&client->communication.outbound.payload, 0, -1);
        const bool has_data = pv.buffer.size != 0;
        const bool has_fds = lttng_payload_view_get_fd_handle_count(&pv);
 
        return has_data || has_fds;
 }
 
-static
-int client_handle_transmission_status(
-               struct notification_client *client,
-               enum client_transmission_status transmission_status,
-               struct notification_thread_state *state)
+static int client_handle_transmission_status(struct notification_client *client,
+                                            enum client_transmission_status transmission_status,
+                                            struct notification_thread_state *state)
 {
        int ret = 0;
 
@@ -3806,15 +3593,14 @@ int client_handle_transmission_status(
                pthread_mutex_lock(&client->lock);
                current_poll_events = client->communication.current_poll_events;
                new_poll_events = client_has_outbound_data_left(client) ?
-                               CLIENT_POLL_EVENTS_IN_OUT :
-                                     CLIENT_POLL_EVENTS_IN;
+                       CLIENT_POLL_EVENTS_IN_OUT :
+                       CLIENT_POLL_EVENTS_IN;
                client->communication.current_poll_events = new_poll_events;
                pthread_mutex_unlock(&client->lock);
 
                /* Update the monitored event set only if it changed. */
                if (current_poll_events != new_poll_events) {
-                       ret = lttng_poll_mod(&state->events, client->socket,
-                                       new_poll_events);
+                       ret = lttng_poll_mod(&state->events, client->socket, new_poll_events);
                        if (ret) {
                                goto end;
                        }
@@ -3839,17 +3625,15 @@ end:
 }
 
 /* Client lock must be acquired by caller. */
-static
-enum client_transmission_status client_flush_outgoing_queue(
-               struct notification_client *client)
+static enum client_transmission_status
+client_flush_outgoing_queue(struct notification_client *client)
 {
        ssize_t ret;
        size_t to_send_count;
        enum client_transmission_status status;
-       struct lttng_payload_view pv = lttng_payload_view_from_payload(
-                       &client->communication.outbound.payload, 0, -1);
-       const int fds_to_send_count =
-                       lttng_payload_view_get_fd_handle_count(&pv);
+       struct lttng_payload_view pv =
+               lttng_payload_view_from_payload(&client->communication.outbound.payload, 0, -1);
+       const int fds_to_send_count = lttng_payload_view_get_fd_handle_count(&pv);
 
        ASSERT_LOCKED(client->lock);
 
@@ -3869,24 +3653,19 @@ enum client_transmission_status client_flush_outgoing_queue(
 
        /* Send data. */
        to_send_count = pv.buffer.size;
-       DBG("Flushing client (socket fd = %i) outgoing queue",
-                       client->socket);
+       DBG("Flushing client (socket fd = %i) outgoing queue", client->socket);
 
-       ret = lttcomm_send_unix_sock_non_block(client->socket,
-                       pv.buffer.data,
-                       to_send_count);
+       ret = lttcomm_send_unix_sock_non_block(client->socket, pv.buffer.data, to_send_count);
        if ((ret >= 0 && ret < to_send_count)) {
                DBG("Client (socket fd = %i) outgoing queue could not be completely flushed",
-                               client->socket);
+                   client->socket);
                to_send_count -= std::max(ret, (ssize_t) 0);
 
                memmove(client->communication.outbound.payload.buffer.data,
-                               pv.buffer.data +
-                               pv.buffer.size - to_send_count,
-                               to_send_count);
-               ret = lttng_dynamic_buffer_set_size(
-                               &client->communication.outbound.payload.buffer,
-                               to_send_count);
+                       pv.buffer.data + pv.buffer.size - to_send_count,
+                       to_send_count);
+               ret = lttng_dynamic_buffer_set_size(&client->communication.outbound.payload.buffer,
+                                                   to_send_count);
                if (ret) {
                        goto error;
                }
@@ -3896,7 +3675,7 @@ enum client_transmission_status client_flush_outgoing_queue(
        } else if (ret < 0) {
                /* Generic error, disable the client's communication. */
                ERR("Failed to flush outgoing queue, disconnecting client (socket fd = %i)",
-                               client->socket);
+                   client->socket);
                client->communication.active = false;
                status = CLIENT_TRANSMISSION_STATUS_FAIL;
                goto end;
@@ -3909,8 +3688,8 @@ enum client_transmission_status client_flush_outgoing_queue(
                 * direct caller knows that the transmission is complete, we
                 * need to set the buffer size to zero.
                 */
-               ret = lttng_dynamic_buffer_set_size(
-                               &client->communication.outbound.payload.buffer, 0);
+               ret = lttng_dynamic_buffer_set_size(&client->communication.outbound.payload.buffer,
+                                                   0);
                if (ret) {
                        goto error;
                }
@@ -3923,12 +3702,11 @@ send_fds:
                goto end;
        }
 
-       ret = lttcomm_send_payload_view_fds_unix_sock_non_block(
-                       client->socket, &pv);
+       ret = lttcomm_send_payload_view_fds_unix_sock_non_block(client->socket, &pv);
        if (ret < 0) {
                /* Generic error, disable the client's communication. */
                ERR("Failed to flush outgoing fds queue, disconnecting client (socket fd = %i)",
-                               client->socket);
+                   client->socket);
                client->communication.active = false;
                status = CLIENT_TRANSMISSION_STATUS_FAIL;
                goto end;
@@ -3945,8 +3723,7 @@ send_fds:
                 * need to clear the _fd_array for the queuing check.
                 */
                lttng_dynamic_pointer_array_clear(
-                               &client->communication.outbound.payload
-                                                ._fd_handles);
+                       &client->communication.outbound.payload._fd_handles);
        }
 
 end:
@@ -3962,10 +3739,9 @@ error:
 }
 
 /* Client lock must _not_ be held by the caller. */
-static
-int client_send_command_reply(struct notification_client *client,
-               struct notification_thread_state *state,
-               enum lttng_notification_channel_status status)
+static int client_send_command_reply(struct notification_client *client,
+                                    struct notification_thread_state *state,
+                                    enum lttng_notification_channel_status status)
 {
        int ret;
        struct lttng_notification_channel_command_reply reply = {
@@ -3991,8 +3767,7 @@ int client_send_command_reply(struct notification_client *client,
 
        /* Enqueue buffer to outgoing queue and flush it. */
        ret = lttng_dynamic_buffer_append(
-                       &client->communication.outbound.payload.buffer,
-                       buffer, sizeof(buffer));
+               &client->communication.outbound.payload.buffer, buffer, sizeof(buffer));
        if (ret) {
                goto error_unlock;
        }
@@ -4005,8 +3780,7 @@ int client_send_command_reply(struct notification_client *client,
        }
 
        pthread_mutex_unlock(&client->lock);
-       ret = client_handle_transmission_status(
-                       client, transmission_status, state);
+       ret = client_handle_transmission_status(client, transmission_status, state);
        if (ret) {
                goto error;
        }
@@ -4018,9 +3792,9 @@ error:
        return -1;
 }
 
-static
-int client_handle_message_unknown(struct notification_client *client,
-               struct notification_thread_state *state __attribute__((unused)))
+static int client_handle_message_unknown(struct notification_client *client,
+                                        struct notification_thread_state *state
+                                        __attribute__((unused)))
 {
        int ret;
        /*
@@ -4032,12 +3806,10 @@ int client_handle_message_unknown(struct notification_client *client,
 
        LTTNG_ASSERT(sizeof(*msg) == client->communication.inbound.payload.buffer.size);
        msg = (const struct lttng_notification_channel_message *)
-                             client->communication.inbound.payload.buffer.data;
+                     client->communication.inbound.payload.buffer.data;
 
-       if (msg->size == 0 ||
-                       msg->size > DEFAULT_MAX_NOTIFICATION_CLIENT_MESSAGE_PAYLOAD_SIZE) {
-               ERR("Invalid notification channel message: length = %u",
-                               msg->size);
+       if (msg->size == 0 || msg->size > DEFAULT_MAX_NOTIFICATION_CLIENT_MESSAGE_PAYLOAD_SIZE) {
+               ERR("Invalid notification channel message: length = %u", msg->size);
                ret = -1;
                goto end;
        }
@@ -4056,9 +3828,9 @@ int client_handle_message_unknown(struct notification_client *client,
        client->communication.inbound.bytes_to_receive = msg->size;
        client->communication.inbound.fds_to_receive = msg->fds;
        client->communication.inbound.msg_type =
-                       (enum lttng_notification_channel_message_type) msg->type;
-       ret = lttng_dynamic_buffer_set_size(
-                       &client->communication.inbound.payload.buffer, msg->size);
+               (enum lttng_notification_channel_message_type) msg->type;
+       ret = lttng_dynamic_buffer_set_size(&client->communication.inbound.payload.buffer,
+                                           msg->size);
 
        /* msg is not valid anymore due to lttng_dynamic_buffer_set_size. */
        msg = NULL;
@@ -4066,19 +3838,17 @@ end:
        return ret;
 }
 
-static
-int client_handle_message_handshake(struct notification_client *client,
-               struct notification_thread_state *state)
+static int client_handle_message_handshake(struct notification_client *client,
+                                          struct notification_thread_state *state)
 {
        int ret;
        struct lttng_notification_channel_command_handshake *handshake_client;
        const struct lttng_notification_channel_command_handshake handshake_reply = {
-                       .major = LTTNG_NOTIFICATION_CHANNEL_VERSION_MAJOR,
-                       .minor = LTTNG_NOTIFICATION_CHANNEL_VERSION_MINOR,
+               .major = LTTNG_NOTIFICATION_CHANNEL_VERSION_MAJOR,
+               .minor = LTTNG_NOTIFICATION_CHANNEL_VERSION_MINOR,
        };
        struct lttng_notification_channel_message msg_header;
-       enum lttng_notification_channel_status status =
-                       LTTNG_NOTIFICATION_CHANNEL_STATUS_OK;
+       enum lttng_notification_channel_status status = LTTNG_NOTIFICATION_CHANNEL_STATUS_OK;
        char send_buffer[sizeof(msg_header) + sizeof(handshake_reply)];
 
        msg_header.type = LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_HANDSHAKE;
@@ -4086,13 +3856,10 @@ int client_handle_message_handshake(struct notification_client *client,
        msg_header.fds = 0;
 
        memcpy(send_buffer, &msg_header, sizeof(msg_header));
-       memcpy(send_buffer + sizeof(msg_header), &handshake_reply,
-                       sizeof(handshake_reply));
+       memcpy(send_buffer + sizeof(msg_header), &handshake_reply, sizeof(handshake_reply));
 
-       handshake_client =
-                       (struct lttng_notification_channel_command_handshake *)
-                                       client->communication.inbound.payload.buffer
-                                                       .data;
+       handshake_client = (struct lttng_notification_channel_command_handshake *)
+                                  client->communication.inbound.payload.buffer.data;
        client->major = handshake_client->major;
        client->minor = handshake_client->minor;
        if (!client->communication.inbound.creds_received) {
@@ -4101,26 +3868,25 @@ int client_handle_message_handshake(struct notification_client *client,
                goto end;
        }
 
-       client->uid = LTTNG_SOCK_GET_UID_CRED(
-                       &client->communication.inbound.creds);
-       client->gid = LTTNG_SOCK_GET_GID_CRED(
-                       &client->communication.inbound.creds);
-       client->is_sessiond = LTTNG_SOCK_GET_PID_CRED(&client->communication.inbound.creds) == getpid();
+       client->uid = LTTNG_SOCK_GET_UID_CRED(&client->communication.inbound.creds);
+       client->gid = LTTNG_SOCK_GET_GID_CRED(&client->communication.inbound.creds);
+       client->is_sessiond = LTTNG_SOCK_GET_PID_CRED(&client->communication.inbound.creds) ==
+               getpid();
        DBG("Received handshake from client: uid = %u, gid = %u, protocol version = %i.%i, client is sessiond = %s",
-                       client->uid, client->gid, (int) client->major,
-                       (int) client->minor,
-                       client->is_sessiond ? "true" : "false");
+           client->uid,
+           client->gid,
+           (int) client->major,
+           (int) client->minor,
+           client->is_sessiond ? "true" : "false");
 
-       if (handshake_client->major !=
-                       LTTNG_NOTIFICATION_CHANNEL_VERSION_MAJOR) {
+       if (handshake_client->major != LTTNG_NOTIFICATION_CHANNEL_VERSION_MAJOR) {
                status = LTTNG_NOTIFICATION_CHANNEL_STATUS_UNSUPPORTED_VERSION;
        }
 
        pthread_mutex_lock(&client->lock);
        /* Outgoing queue will be flushed when the command reply is sent. */
        ret = lttng_dynamic_buffer_append(
-                       &client->communication.outbound.payload.buffer, send_buffer,
-                       sizeof(send_buffer));
+               &client->communication.outbound.payload.buffer, send_buffer, sizeof(send_buffer));
        if (ret) {
                ERR("Failed to send protocol version to notification channel client");
                goto end_unlock;
@@ -4151,20 +3917,15 @@ end:
        return ret;
 }
 
-static
-int client_handle_message_subscription(
-               struct notification_client *client,
-               enum lttng_notification_channel_message_type msg_type,
-               struct notification_thread_state *state)
+static int client_handle_message_subscription(struct notification_client *client,
+                                             enum lttng_notification_channel_message_type msg_type,
+                                             struct notification_thread_state *state)
 {
        int ret;
        struct lttng_condition *condition;
-       enum lttng_notification_channel_status status =
-                       LTTNG_NOTIFICATION_CHANNEL_STATUS_OK;
+       enum lttng_notification_channel_status status = LTTNG_NOTIFICATION_CHANNEL_STATUS_OK;
        struct lttng_payload_view condition_view =
-                       lttng_payload_view_from_payload(
-                                       &client->communication.inbound.payload,
-                                       0, -1);
+               lttng_payload_view_from_payload(&client->communication.inbound.payload, 0, -1);
        size_t expected_condition_size;
 
        /*
@@ -4181,11 +3942,9 @@ int client_handle_message_subscription(
 
        /* Ownership of condition is always transferred. */
        if (msg_type == LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_SUBSCRIBE) {
-               ret = notification_thread_client_subscribe(
-                               client, condition, state, &status);
+               ret = notification_thread_client_subscribe(client, condition, state, &status);
        } else {
-               ret = notification_thread_client_unsubscribe(
-                               client, condition, state, &status);
+               ret = notification_thread_client_unsubscribe(client, condition, state, &status);
        }
 
        if (ret) {
@@ -4209,17 +3968,16 @@ end:
        return ret;
 }
 
-static
-int client_dispatch_message(struct notification_client *client,
-               struct notification_thread_state *state)
+static int client_dispatch_message(struct notification_client *client,
+                                  struct notification_thread_state *state)
 {
        int ret = 0;
 
        if (client->communication.inbound.msg_type !=
-                       LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_HANDSHAKE &&
-                       client->communication.inbound.msg_type !=
-                               LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_UNKNOWN &&
-                       !client->validated) {
+                   LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_HANDSHAKE &&
+           client->communication.inbound.msg_type !=
+                   LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_UNKNOWN &&
+           !client->validated) {
                WARN("client attempted a command before handshake");
                ret = -1;
                goto end;
@@ -4239,8 +3997,8 @@ int client_dispatch_message(struct notification_client *client,
        case LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_SUBSCRIBE:
        case LTTNG_NOTIFICATION_CHANNEL_MESSAGE_TYPE_UNSUBSCRIBE:
        {
-               ret = client_handle_message_subscription(client,
-                               client->communication.inbound.msg_type, state);
+               ret = client_handle_message_subscription(
+                       client, client->communication.inbound.msg_type, state);
                break;
        }
        default:
@@ -4251,8 +4009,7 @@ end:
 }
 
 /* Incoming data from client. */
-int handle_notification_thread_client_in(
-               struct notification_thread_state *state, int socket)
+int handle_notification_thread_client_in(struct notification_thread_state *state, int socket)
 {
        int ret = 0;
        struct notification_client *client;
@@ -4268,26 +4025,28 @@ int handle_notification_thread_client_in(
        }
 
        if (client->communication.inbound.bytes_to_receive == 0 &&
-                       client->communication.inbound.fds_to_receive != 0) {
+           client->communication.inbound.fds_to_receive != 0) {
                /* Only FDs left to receive. */
                goto receive_fds;
        }
 
        offset = client->communication.inbound.payload.buffer.size -
-                       client->communication.inbound.bytes_to_receive;
+               client->communication.inbound.bytes_to_receive;
        if (client->communication.inbound.expect_creds) {
-               recv_ret = lttcomm_recv_creds_unix_sock(socket,
-                               client->communication.inbound.payload.buffer.data + offset,
-                               client->communication.inbound.bytes_to_receive,
-                               &client->communication.inbound.creds);
+               recv_ret = lttcomm_recv_creds_unix_sock(
+                       socket,
+                       client->communication.inbound.payload.buffer.data + offset,
+                       client->communication.inbound.bytes_to_receive,
+                       &client->communication.inbound.creds);
                if (recv_ret > 0) {
                        client->communication.inbound.expect_creds = false;
                        client->communication.inbound.creds_received = true;
                }
        } else {
-               recv_ret = lttcomm_recv_unix_sock_non_block(socket,
-                               client->communication.inbound.payload.buffer.data + offset,
-                               client->communication.inbound.bytes_to_receive);
+               recv_ret = lttcomm_recv_unix_sock_non_block(
+                       socket,
+                       client->communication.inbound.payload.buffer.data + offset,
+                       client->communication.inbound.bytes_to_receive);
        }
        if (recv_ret >= 0) {
                client->communication.inbound.bytes_to_receive -= recv_ret;
@@ -4307,9 +4066,9 @@ receive_fds:
        /* Receive fds. */
        if (client->communication.inbound.fds_to_receive != 0) {
                ret = lttcomm_recv_payload_fds_unix_sock_non_block(
-                               client->socket,
-                               client->communication.inbound.fds_to_receive,
-                               &client->communication.inbound.payload);
+                       client->socket,
+                       client->communication.inbound.fds_to_receive,
+                       &client->communication.inbound.payload);
                if (ret > 0) {
                        /*
                         * Fds received. non blocking fds passing is all
@@ -4317,9 +4076,7 @@ receive_fds:
                         */
                        ssize_t expected_size;
 
-                       expected_size = sizeof(int) *
-                                       client->communication.inbound
-                                                       .fds_to_receive;
+                       expected_size = sizeof(int) * client->communication.inbound.fds_to_receive;
                        LTTNG_ASSERT(ret == expected_size);
                        client->communication.inbound.fds_to_receive = 0;
                } else if (ret == 0) {
@@ -4333,7 +4090,7 @@ receive_fds:
 
        /* At this point the message is complete.*/
        LTTNG_ASSERT(client->communication.inbound.bytes_to_receive == 0 &&
-                       client->communication.inbound.fds_to_receive == 0);
+                    client->communication.inbound.fds_to_receive == 0);
        ret = client_dispatch_message(client, state);
        if (ret) {
                /*
@@ -4353,8 +4110,7 @@ error_disconnect_client:
 }
 
 /* Client ready to receive outgoing data. */
-int handle_notification_thread_client_out(
-               struct notification_thread_state *state, int socket)
+int handle_notification_thread_client_out(struct notification_thread_state *state, int socket)
 {
        int ret;
        struct notification_client *client;
@@ -4412,8 +4168,7 @@ int handle_notification_thread_client_out(
        }
        pthread_mutex_unlock(&client->lock);
 
-       ret = client_handle_transmission_status(
-                       client, transmission_status, state);
+       ret = client_handle_transmission_status(client, transmission_status, state);
        if (ret) {
                goto end;
        }
@@ -4422,16 +4177,15 @@ end:
        return ret;
 }
 
-static
-bool evaluate_buffer_usage_condition(const struct lttng_condition *condition,
-               const struct channel_state_sample *sample,
-               uint64_t buffer_capacity)
+static bool evaluate_buffer_usage_condition(const struct lttng_condition *condition,
+                                           const struct channel_state_sample *sample,
+                                           uint64_t buffer_capacity)
 {
        bool result = false;
        uint64_t threshold;
        enum lttng_condition_type condition_type;
-       const struct lttng_condition_buffer_usage *use_condition = lttng::utils::container_of(
-                       condition, &lttng_condition_buffer_usage::parent);
+       const struct lttng_condition_buffer_usage *use_condition =
+               lttng::utils::container_of(condition, &lttng_condition_buffer_usage::parent);
 
        if (use_condition->threshold_bytes.set) {
                threshold = use_condition->threshold_bytes.value;
@@ -4449,13 +4203,15 @@ bool evaluate_buffer_usage_condition(const struct lttng_condition *condition,
                 * that all channels matching my_chann* have the same size...)
                 */
                threshold = (uint64_t) (use_condition->threshold_ratio.value *
-                               (double) buffer_capacity);
+                                       (double) buffer_capacity);
        }
 
        condition_type = lttng_condition_get_type(condition);
        if (condition_type == LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW) {
-               DBG("Low buffer usage condition being evaluated: threshold = %" PRIu64 ", highest usage = %" PRIu64,
-                               threshold, sample->highest_usage);
+               DBG("Low buffer usage condition being evaluated: threshold = %" PRIu64
+                   ", highest usage = %" PRIu64,
+                   threshold,
+                   sample->highest_usage);
 
                /*
                 * The low condition should only be triggered once _all_ of the
@@ -4465,8 +4221,10 @@ bool evaluate_buffer_usage_condition(const struct lttng_condition *condition,
                        result = true;
                }
        } else {
-               DBG("High buffer usage condition being evaluated: threshold = %" PRIu64 ", highest usage = %" PRIu64,
-                               threshold, sample->highest_usage);
+               DBG("High buffer usage condition being evaluated: threshold = %" PRIu64
+                   ", highest usage = %" PRIu64,
+                   threshold,
+                   sample->highest_usage);
 
                /*
                 * For high buffer usage scenarios, we want to trigger whenever
@@ -4480,13 +4238,13 @@ bool evaluate_buffer_usage_condition(const struct lttng_condition *condition,
        return result;
 }
 
-static
-int evaluate_buffer_condition(const struct lttng_condition *condition,
-               struct lttng_evaluation **evaluation,
-               const struct notification_thread_state *state __attribute__((unused)),
-               const struct channel_state_sample *previous_sample,
-               const struct channel_state_sample *latest_sample,
-               struct channel_info *channel_info)
+static int evaluate_buffer_condition(const struct lttng_condition *condition,
+                                    struct lttng_evaluation **evaluation,
+                                    const struct notification_thread_state *state
+                                    __attribute__((unused)),
+                                    const struct channel_state_sample *previous_sample,
+                                    const struct channel_state_sample *latest_sample,
+                                    struct channel_info *channel_info)
 {
        int ret = 0;
        enum lttng_condition_type condition_type;
@@ -4500,21 +4258,18 @@ int evaluate_buffer_condition(const struct lttng_condition *condition,
        case LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW:
        case LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH:
                if (caa_likely(previous_sample_available)) {
-                       previous_sample_result =
-                               evaluate_buffer_usage_condition(condition,
-                                       previous_sample, channel_info->capacity);
+                       previous_sample_result = evaluate_buffer_usage_condition(
+                               condition, previous_sample, channel_info->capacity);
                }
                latest_sample_result = evaluate_buffer_usage_condition(
-                               condition, latest_sample,
-                               channel_info->capacity);
+                       condition, latest_sample, channel_info->capacity);
                break;
        default:
                /* Unknown condition type; internal error. */
                abort();
        }
 
-       if (!latest_sample_result ||
-                       (previous_sample_result == latest_sample_result)) {
+       if (!latest_sample_result || (previous_sample_result == latest_sample_result)) {
                /*
                 * Only trigger on a condition evaluation transition.
                 *
@@ -4532,9 +4287,7 @@ int evaluate_buffer_condition(const struct lttng_condition *condition,
        case LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW:
        case LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH:
                *evaluation = lttng_evaluation_buffer_usage_create(
-                               condition_type,
-                               latest_sample->highest_usage,
-                               channel_info->capacity);
+                       condition_type, latest_sample->highest_usage, channel_info->capacity);
                break;
        default:
                abort();
@@ -4548,8 +4301,7 @@ end:
        return ret;
 }
 
-static
-int client_notification_overflow(struct notification_client *client)
+static int client_notification_overflow(struct notification_client *client)
 {
        int ret = 0;
        struct lttng_notification_channel_message msg;
@@ -4560,8 +4312,7 @@ int client_notification_overflow(struct notification_client *client)
 
        ASSERT_LOCKED(client->lock);
 
-       DBG("Dropping notification addressed to client (socket fd = %i)",
-                       client->socket);
+       DBG("Dropping notification addressed to client (socket fd = %i)", client->socket);
        if (client->communication.outbound.dropped_notification) {
                /*
                 * The client already has a "notification dropped" message
@@ -4573,31 +4324,29 @@ int client_notification_overflow(struct notification_client *client)
 
        client->communication.outbound.dropped_notification = true;
        ret = lttng_dynamic_buffer_append(
-                       &client->communication.outbound.payload.buffer, &msg,
-                       sizeof(msg));
+               &client->communication.outbound.payload.buffer, &msg, sizeof(msg));
        if (ret) {
                PERROR("Failed to enqueue \"dropped notification\" message in client's (socket fd = %i) outgoing queue",
-                               client->socket);
+                      client->socket);
        }
 end:
        return ret;
 }
 
-static int client_handle_transmission_status_wrapper(
-               struct notification_client *client,
-               enum client_transmission_status status,
-               void *user_data)
+static int client_handle_transmission_status_wrapper(struct notification_client *client,
+                                                    enum client_transmission_status status,
+                                                    void *user_data)
 {
-       return client_handle_transmission_status(client, status,
-                       (struct notification_thread_state *) user_data);
+       return client_handle_transmission_status(
+               client, status, (struct notification_thread_state *) user_data);
 }
 
-static
-int send_evaluation_to_clients(const struct lttng_trigger *trigger,
-               const struct lttng_evaluation *evaluation,
-               struct notification_client_list* client_list,
-               struct notification_thread_state *state,
-               uid_t object_uid, gid_t object_gid)
+static int send_evaluation_to_clients(const struct lttng_trigger *trigger,
+                                     const struct lttng_evaluation *evaluation,
+                                     struct notification_client_list *client_list,
+                                     struct notification_thread_state *state,
+                                     uid_t object_uid,
+                                     gid_t object_gid)
 {
        const struct lttng_credentials creds = {
                .uid = LTTNG_OPTIONAL_INIT_VALUE(object_uid),
@@ -4605,9 +4354,11 @@ int send_evaluation_to_clients(const struct lttng_trigger *trigger,
        };
 
        return notification_client_list_send_evaluation(client_list,
-                       trigger, evaluation,
-                       &creds,
-                       client_handle_transmission_status_wrapper, state);
+                                                       trigger,
+                                                       evaluation,
+                                                       &creds,
+                                                       client_handle_transmission_status_wrapper,
+                                                       state);
 }
 
 /*
@@ -4643,13 +4394,12 @@ int send_evaluation_to_clients(const struct lttng_trigger *trigger,
  * interference from external users (those could, for instance, unregister
  * their triggers).
  */
-int notification_client_list_send_evaluation(
-               struct notification_client_list *client_list,
-               const struct lttng_trigger *trigger,
-               const struct lttng_evaluation *evaluation,
-               const struct lttng_credentials *source_object_creds,
-               report_client_transmission_result_cb client_report,
-               void *user_data)
+int notification_client_list_send_evaluation(struct notification_client_list *client_list,
+                                            const struct lttng_trigger *trigger,
+                                            const struct lttng_evaluation *evaluation,
+                                            const struct lttng_credentials *source_object_creds,
+                                            report_client_transmission_result_cb client_report,
+                                            void *user_data)
 {
        int ret = 0;
        struct lttng_payload msg_payload;
@@ -4659,8 +4409,7 @@ int notification_client_list_send_evaluation(
                .evaluation = (struct lttng_evaluation *) evaluation,
        };
        struct lttng_notification_channel_message msg_header;
-       const struct lttng_credentials *trigger_creds =
-                       lttng_trigger_get_credentials(trigger);
+       const struct lttng_credentials *trigger_creds = lttng_trigger_get_credentials(trigger);
 
        lttng_payload_init(&msg_payload);
 
@@ -4668,8 +4417,7 @@ int notification_client_list_send_evaluation(
        msg_header.size = 0;
        msg_header.fds = 0;
 
-       ret = lttng_dynamic_buffer_append(&msg_payload.buffer, &msg_header,
-                       sizeof(msg_header));
+       ret = lttng_dynamic_buffer_append(&msg_payload.buffer, &msg_header, sizeof(msg_header));
        if (ret) {
                goto end;
        }
@@ -4682,26 +4430,22 @@ int notification_client_list_send_evaluation(
        }
 
        /* Update payload size. */
-       ((struct lttng_notification_channel_message *) msg_payload.buffer.data)
-                       ->size = (uint32_t)(
-                       msg_payload.buffer.size - sizeof(msg_header));
+       ((struct lttng_notification_channel_message *) msg_payload.buffer.data)->size =
+               (uint32_t) (msg_payload.buffer.size - sizeof(msg_header));
 
        /* Update the payload number of fds. */
        {
-               const struct lttng_payload_view pv = lttng_payload_view_from_payload(
-                               &msg_payload, 0, -1);
+               const struct lttng_payload_view pv =
+                       lttng_payload_view_from_payload(&msg_payload, 0, -1);
 
-               ((struct lttng_notification_channel_message *)
-                               msg_payload.buffer.data)->fds = (uint32_t)
-                               lttng_payload_view_get_fd_handle_count(&pv);
+               ((struct lttng_notification_channel_message *) msg_payload.buffer.data)->fds =
+                       (uint32_t) lttng_payload_view_get_fd_handle_count(&pv);
        }
 
        pthread_mutex_lock(&client_list->lock);
-       cds_list_for_each_entry_safe(client_list_element, tmp,
-                       &client_list->clients_list, node) {
+       cds_list_for_each_entry_safe (client_list_element, tmp, &client_list->clients_list, node) {
                enum client_transmission_status transmission_status;
-               struct notification_client *client =
-                               client_list_element->client;
+               struct notification_client *client = client_list_element->client;
 
                ret = 0;
                pthread_mutex_lock(&client->lock);
@@ -4725,8 +4469,8 @@ int notification_client_list_send_evaluation(
 
                if (source_object_creds) {
                        if (client->uid != lttng_credentials_get_uid(source_object_creds) &&
-                                       client->gid != lttng_credentials_get_gid(source_object_creds) &&
-                                       client->uid != 0) {
+                           client->gid != lttng_credentials_get_gid(source_object_creds) &&
+                           client->uid != 0) {
                                /*
                                 * Client is not allowed to monitor this
                                 * object.
@@ -4742,7 +4486,8 @@ int notification_client_list_send_evaluation(
                }
 
                DBG("Sending notification to client (fd = %i, %zu bytes)",
-                               client->socket, msg_payload.buffer.size);
+                   client->socket,
+                   msg_payload.buffer.size);
 
                if (client_has_outbound_data_left(client)) {
                        /*
@@ -4775,7 +4520,7 @@ int notification_client_list_send_evaluation(
 
                continue;
 
-skip_client:
+       skip_client:
                pthread_mutex_unlock(&client->lock);
                if (ret) {
                        /* Fatal error. */
@@ -4791,9 +4536,8 @@ end:
        return ret;
 }
 
-static
-struct lttng_event_notifier_notification *recv_one_event_notifier_notification(
-               int notification_pipe_read_fd, enum lttng_domain_type domain)
+static struct lttng_event_notifier_notification *
+recv_one_event_notifier_notification(int notification_pipe_read_fd, enum lttng_domain_type domain)
 {
        int ret;
        uint64_t token;
@@ -4807,7 +4551,7 @@ struct lttng_event_notifier_notification *recv_one_event_notifier_notification(
        struct lttng_kernel_abi_event_notifier_notification kernel_notification;
 
        /* Init lttng_event_notifier_notification */
-       switch(domain) {
+       switch (domain) {
        case LTTNG_DOMAIN_UST:
                reception_buffer = (void *) &ust_notification;
                reception_size = sizeof(ust_notification);
@@ -4824,16 +4568,17 @@ struct lttng_event_notifier_notification *recv_one_event_notifier_notification(
         * The monitoring pipe only holds messages smaller than PIPE_BUF,
         * ensuring that read/write of tracer notifications are atomic.
         */
-       ret = lttng_read(notification_pipe_read_fd, reception_buffer,
-                       reception_size);
+       ret = lttng_read(notification_pipe_read_fd, reception_buffer, reception_size);
        if (ret != reception_size) {
                PERROR("Failed to read from event source notification pipe: fd = %d, size to read = %zu, ret = %d",
-                               notification_pipe_read_fd, reception_size, ret);
+                      notification_pipe_read_fd,
+                      reception_size,
+                      ret);
                ret = -1;
                goto end;
        }
 
-       switch(domain) {
+       switch (domain) {
        case LTTNG_DOMAIN_UST:
                token = ust_notification.token;
                capture_buffer_size = ust_notification.capture_buf_size;
@@ -4853,7 +4598,8 @@ struct lttng_event_notifier_notification *recv_one_event_notifier_notification(
 
        if (capture_buffer_size > MAX_CAPTURE_SIZE) {
                ERR("Event notifier has a capture payload size which exceeds the maximum allowed size: capture_payload_size = %zu bytes, max allowed size = %d bytes",
-                               capture_buffer_size, MAX_CAPTURE_SIZE);
+                   capture_buffer_size,
+                   MAX_CAPTURE_SIZE);
                goto end;
        }
 
@@ -4866,14 +4612,13 @@ struct lttng_event_notifier_notification *recv_one_event_notifier_notification(
        /* Fetch additional payload (capture). */
        ret = lttng_read(notification_pipe_read_fd, capture_buffer, capture_buffer_size);
        if (ret != capture_buffer_size) {
-               ERR("Failed to read from event source pipe (fd = %i)",
-                               notification_pipe_read_fd);
+               ERR("Failed to read from event source pipe (fd = %i)", notification_pipe_read_fd);
                goto end;
        }
 
 skip_capture:
-       notification = lttng_event_notifier_notification_create(token, domain,
-                       capture_buffer, capture_buffer_size);
+       notification = lttng_event_notifier_notification_create(
+               token, domain, capture_buffer, capture_buffer_size);
        if (notification == NULL) {
                goto end;
        }
@@ -4888,9 +4633,9 @@ end:
        return notification;
 }
 
-static
-int dispatch_one_event_notifier_notification(struct notification_thread_state *state,
-               struct lttng_event_notifier_notification *notification)
+static int
+dispatch_one_event_notifier_notification(struct notification_thread_state *state,
+                                        struct lttng_event_notifier_notification *notification)
 {
        struct cds_lfht_node *node;
        struct cds_lfht_iter iter;
@@ -4905,7 +4650,9 @@ int dispatch_one_event_notifier_notification(struct notification_thread_state *s
        rcu_read_lock();
        cds_lfht_lookup(state->trigger_tokens_ht,
                        hash_key_u64(&notification->tracer_token, lttng_ht_seed),
-                       match_trigger_token, &notification->tracer_token, &iter);
+                       match_trigger_token,
+                       &notification->tracer_token,
+                       &iter);
        node = cds_lfht_iter_get_node(&iter);
        if (caa_unlikely(!node)) {
                /*
@@ -4918,13 +4665,11 @@ int dispatch_one_event_notifier_notification(struct notification_thread_state *s
                goto end_unlock;
        }
 
-       element = caa_container_of(node,
-                       struct notification_trigger_tokens_ht_element,
-                       node);
+       element = caa_container_of(node, struct notification_trigger_tokens_ht_element, node);
 
        if (lttng_condition_event_rule_matches_get_capture_descriptor_count(
-                           lttng_trigger_get_const_condition(element->trigger),
-                           &capture_count) != LTTNG_CONDITION_STATUS_OK) {
+                   lttng_trigger_get_const_condition(element->trigger), &capture_count) !=
+           LTTNG_CONDITION_STATUS_OK) {
                ERR("Failed to get capture count");
                ret = -1;
                goto end;
@@ -4937,11 +4682,11 @@ int dispatch_one_event_notifier_notification(struct notification_thread_state *s
        }
 
        evaluation = lttng_evaluation_event_rule_matches_create(
-                       lttng::utils::container_of(lttng_trigger_get_const_condition(
-                                                    element->trigger),
-                                       &lttng_condition_event_rule_matches::parent),
-                       notification->capture_buffer,
-                       notification->capture_buf_size, false);
+               lttng::utils::container_of(lttng_trigger_get_const_condition(element->trigger),
+                                          &lttng_condition_event_rule_matches::parent),
+               notification->capture_buffer,
+               notification->capture_buf_size,
+               false);
 
        if (evaluation == NULL) {
                ERR("Failed to create event rule matches evaluation while creating and enqueuing action executor job");
@@ -4949,18 +4694,17 @@ int dispatch_one_event_notifier_notification(struct notification_thread_state *s
                goto end_unlock;
        }
 
-       client_list = get_client_list_from_condition(state,
-                       lttng_trigger_get_const_condition(element->trigger));
-       executor_status = action_executor_enqueue_trigger(state->executor,
-                       element->trigger, evaluation, NULL, client_list);
+       client_list = get_client_list_from_condition(
+               state, lttng_trigger_get_const_condition(element->trigger));
+       executor_status = action_executor_enqueue_trigger(
+               state->executor, element->trigger, evaluation, NULL, client_list);
        switch (executor_status) {
        case ACTION_EXECUTOR_STATUS_OK:
                ret = 0;
                break;
        case ACTION_EXECUTOR_STATUS_OVERFLOW:
        {
-               struct notification_client_list_element *client_list_element,
-                               *tmp;
+               struct notification_client_list_element *client_list_element, *tmp;
 
                /*
                 * Not a fatal error; this is expected and simply means the
@@ -4975,11 +4719,10 @@ int dispatch_one_event_notifier_notification(struct notification_thread_state *s
 
                /* Warn clients that a notification (or more) was dropped. */
                pthread_mutex_lock(&client_list->lock);
-               cds_list_for_each_entry_safe(client_list_element, tmp,
-                               &client_list->clients_list, node) {
+               cds_list_for_each_entry_safe (
+                       client_list_element, tmp, &client_list->clients_list, node) {
                        enum client_transmission_status transmission_status;
-                       struct notification_client *client =
-                                       client_list_element->client;
+                       struct notification_client *client = client_list_element->client;
 
                        pthread_mutex_lock(&client->lock);
                        ret = client_notification_overflow(client);
@@ -4988,15 +4731,13 @@ int dispatch_one_event_notifier_notification(struct notification_thread_state *s
                                goto next_client;
                        }
 
-                       transmission_status =
-                                       client_flush_outgoing_queue(client);
-                       ret = client_handle_transmission_status(
-                                       client, transmission_status, state);
+                       transmission_status = client_flush_outgoing_queue(client);
+                       ret = client_handle_transmission_status(client, transmission_status, state);
                        if (ret) {
                                /* Fatal error. */
                                goto next_client;
                        }
-next_client:
+               next_client:
                        pthread_mutex_unlock(&client->lock);
                        if (ret) {
                                break;
@@ -5024,10 +4765,9 @@ end:
        return ret;
 }
 
-static
-int handle_one_event_notifier_notification(
-               struct notification_thread_state *state,
-               int pipe, enum lttng_domain_type domain)
+static int handle_one_event_notifier_notification(struct notification_thread_state *state,
+                                                 int pipe,
+                                                 enum lttng_domain_type domain)
 {
        int ret = 0;
        struct lttng_event_notifier_notification *notification = NULL;
@@ -5036,14 +4776,16 @@ int handle_one_event_notifier_notification(
        if (notification == NULL) {
                /* Reception failed, don't consider it fatal. */
                ERR("Error receiving an event notifier notification from tracer: fd = %i, domain = %s",
-                               pipe, lttng_domain_type_str(domain));
+                   pipe,
+                   lttng_domain_type_str(domain));
                goto end;
        }
 
        ret = dispatch_one_event_notifier_notification(state, notification);
        if (ret) {
                ERR("Error dispatching an event notifier notification from tracer: fd = %i, domain = %s",
-                               pipe, lttng_domain_type_str(domain));
+                   pipe,
+                   lttng_domain_type_str(domain));
                goto end;
        }
 
@@ -5053,14 +4795,15 @@ end:
 }
 
 int handle_notification_thread_event_notification(struct notification_thread_state *state,
-               int pipe, enum lttng_domain_type domain)
+                                                 int pipe,
+                                                 enum lttng_domain_type domain)
 {
        return handle_one_event_notifier_notification(state, pipe, domain);
 }
 
-int handle_notification_thread_channel_sample(
-               struct notification_thread_state *state, int pipe,
-               enum lttng_domain_type domain)
+int handle_notification_thread_channel_sample(struct notification_thread_state *state,
+                                             int pipe,
+                                             enum lttng_domain_type domain)
 {
        int ret = 0;
        struct lttcomm_consumer_channel_monitor_msg sample_msg;
@@ -5083,8 +4826,7 @@ int handle_notification_thread_channel_sample(
         */
        ret = lttng_read(pipe, &sample_msg, sizeof(sample_msg));
        if (ret != sizeof(sample_msg)) {
-               ERR("Failed to read from monitoring pipe (fd = %i)",
-                               pipe);
+               ERR("Failed to read from monitoring pipe (fd = %i)", pipe);
                ret = -1;
                goto end;
        }
@@ -5100,7 +4842,7 @@ int handle_notification_thread_channel_sample(
        session = get_session_info_by_id(state, sample_msg.session_id);
        if (!session) {
                DBG("Received a sample for an unknown session from consumerd: session id = %" PRIu64,
-                               sample_msg.session_id);
+                   sample_msg.session_id);
                goto end_unlock;
        }
 
@@ -5113,8 +4855,7 @@ int handle_notification_thread_channel_sample(
 
        session_trigger_list = get_session_trigger_list(state, session->name);
        LTTNG_ASSERT(session_trigger_list);
-       cds_list_for_each_entry(trigger_list_element, &session_trigger_list->list,
-                       node) {
+       cds_list_for_each_entry (trigger_list_element, &session_trigger_list->list, node) {
                const struct lttng_condition *condition;
                struct lttng_trigger *trigger;
                struct notification_client_list *client_list = NULL;
@@ -5127,7 +4868,7 @@ int handle_notification_thread_channel_sample(
                LTTNG_ASSERT(condition);
 
                ret = evaluate_session_condition(
-                               condition, session, &session_new_sample, &evaluation);
+                       condition, session, &session_new_sample, &evaluation);
                if (caa_unlikely(ret)) {
                        break;
                }
@@ -5143,8 +4884,7 @@ int handle_notification_thread_channel_sample(
                 */
                client_list = get_client_list_from_condition(state, condition);
                executor_status = action_executor_enqueue_trigger(
-                               state->executor, trigger, evaluation,
-                               &session_creds, client_list);
+                       state->executor, trigger, evaluation, &session_creds, client_list);
                notification_client_list_put(client_list);
                evaluation = NULL;
                switch (executor_status) {
@@ -5188,21 +4928,23 @@ int handle_notification_thread_channel_sample(
                 * channel's destruction before we get a chance to process that
                 * sample.
                 */
-               DBG("Received a sample for an unknown channel from consumerd, key = %" PRIu64 " in %s domain",
-                               channel_new_sample.key.key,
-                               lttng_domain_type_str(domain));
+               DBG("Received a sample for an unknown channel from consumerd, key = %" PRIu64
+                   " in %s domain",
+                   channel_new_sample.key.key,
+                   lttng_domain_type_str(domain));
                goto end_unlock;
        }
 
-       channel_info = caa_container_of(node, struct channel_info,
-                       channels_ht_node);
-       DBG("Handling channel sample for channel %s (key = %" PRIu64 ") in session %s (highest usage = %" PRIu64 ", lowest usage = %" PRIu64", consumed since last sample = %" PRIu64")",
-                       channel_info->name,
-                       channel_new_sample.key.key,
-                       channel_info->session_info->name,
-                       channel_new_sample.highest_usage,
-                       channel_new_sample.lowest_usage,
-                       sample_msg.consumed_since_last_sample);
+       channel_info = caa_container_of(node, struct channel_info, channels_ht_node);
+       DBG("Handling channel sample for channel %s (key = %" PRIu64
+           ") in session %s (highest usage = %" PRIu64 ", lowest usage = %" PRIu64
+           ", consumed since last sample = %" PRIu64 ")",
+           channel_info->name,
+           channel_new_sample.key.key,
+           channel_info->session_info->name,
+           channel_new_sample.highest_usage,
+           channel_new_sample.lowest_usage,
+           sample_msg.consumed_since_last_sample);
 
        /* Retrieve the channel's last sample, if it exists, and update it. */
        cds_lfht_lookup(state->channel_state_ht,
@@ -5215,12 +4957,10 @@ int handle_notification_thread_channel_sample(
                struct channel_state_sample *stored_sample;
 
                /* Update the sample stored. */
-               stored_sample = caa_container_of(node,
-                               struct channel_state_sample,
-                               channel_state_ht_node);
+               stored_sample =
+                       caa_container_of(node, struct channel_state_sample, channel_state_ht_node);
 
-               memcpy(&channel_previous_sample, stored_sample,
-                               sizeof(channel_previous_sample));
+               memcpy(&channel_previous_sample, stored_sample, sizeof(channel_previous_sample));
                stored_sample->highest_usage = channel_new_sample.highest_usage;
                stored_sample->lowest_usage = channel_new_sample.lowest_usage;
                previous_sample_available = true;
@@ -5240,8 +4980,8 @@ int handle_notification_thread_channel_sample(
                memcpy(stored_sample, &channel_new_sample, sizeof(*stored_sample));
                cds_lfht_node_init(&stored_sample->channel_state_ht_node);
                cds_lfht_add(state->channel_state_ht,
-                               hash_channel_key(&stored_sample->key),
-                               &stored_sample->channel_state_ht_node);
+                            hash_channel_key(&stored_sample->key),
+                            &stored_sample->channel_state_ht_node);
        }
 
        /* Find triggers associated with this channel. */
@@ -5253,15 +4993,14 @@ int handle_notification_thread_channel_sample(
        node = cds_lfht_iter_get_node(&iter);
        LTTNG_ASSERT(node);
 
-       channel_creds = (typeof(channel_creds)) {
+       channel_creds = (typeof(channel_creds)){
                .uid = LTTNG_OPTIONAL_INIT_VALUE(channel_info->session_info->uid),
                .gid = LTTNG_OPTIONAL_INIT_VALUE(channel_info->session_info->gid),
        };
 
-       channel_trigger_list = caa_container_of(node, struct lttng_channel_trigger_list,
-                       channel_triggers_ht_node);
-       cds_list_for_each_entry(trigger_list_element, &channel_trigger_list->list,
-                       node) {
+       channel_trigger_list =
+               caa_container_of(node, struct lttng_channel_trigger_list, channel_triggers_ht_node);
+       cds_list_for_each_entry (trigger_list_element, &channel_trigger_list->list, node) {
                const struct lttng_condition *condition;
                struct lttng_trigger *trigger;
                struct notification_client_list *client_list = NULL;
@@ -5273,10 +5012,13 @@ int handle_notification_thread_channel_sample(
                condition = lttng_trigger_get_const_condition(trigger);
                LTTNG_ASSERT(condition);
 
-               ret = evaluate_buffer_condition(condition, &evaluation, state,
-                               previous_sample_available ? &channel_previous_sample : NULL,
-                               &channel_new_sample,
-                               channel_info);
+               ret = evaluate_buffer_condition(
+                       condition,
+                       &evaluation,
+                       state,
+                       previous_sample_available ? &channel_previous_sample : NULL,
+                       &channel_new_sample,
+                       channel_info);
                if (caa_unlikely(ret)) {
                        break;
                }
@@ -5292,8 +5034,7 @@ int handle_notification_thread_channel_sample(
                 */
                client_list = get_client_list_from_condition(state, condition);
                executor_status = action_executor_enqueue_trigger(
-                               state->executor, trigger, evaluation,
-                               &channel_creds, client_list);
+                       state->executor, trigger, evaluation, &channel_creds, client_list);
                notification_client_list_put(client_list);
                evaluation = NULL;
                switch (executor_status) {
This page took 0.112273 seconds and 4 git commands to generate.