notification: add/remove tracer event source
[lttng-tools.git] / src / bin / lttng-sessiond / notification-thread-commands.h
CommitLineData
ab0ee2ca 1/*
ab5be9fa 2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
ab0ee2ca 3 *
ab5be9fa 4 * SPDX-License-Identifier: GPL-2.0-only
ab0ee2ca 5 *
ab0ee2ca
JG
6 */
7
8#ifndef NOTIFICATION_THREAD_COMMANDS_H
9#define NOTIFICATION_THREAD_COMMANDS_H
10
11#include <lttng/domain.h>
12#include <lttng/lttng-error.h>
13#include <urcu/rculfhash.h>
14#include "notification-thread.h"
8abe313a
JG
15#include "notification-thread-internal.h"
16#include "notification-thread-events.h"
8ada111f 17#include <common/waiter.h>
0ab399e0 18#include <stdbool.h>
ab0ee2ca
JG
19
20struct notification_thread_data;
21struct lttng_trigger;
22
23enum notification_thread_command_type {
24 NOTIFICATION_COMMAND_TYPE_REGISTER_TRIGGER,
25 NOTIFICATION_COMMAND_TYPE_UNREGISTER_TRIGGER,
26 NOTIFICATION_COMMAND_TYPE_ADD_CHANNEL,
27 NOTIFICATION_COMMAND_TYPE_REMOVE_CHANNEL,
731c1b12
JG
28 NOTIFICATION_COMMAND_TYPE_SESSION_ROTATION_ONGOING,
29 NOTIFICATION_COMMAND_TYPE_SESSION_ROTATION_COMPLETED,
d02d7404
JR
30 NOTIFICATION_COMMAND_TYPE_ADD_TRACER_EVENT_SOURCE,
31 NOTIFICATION_COMMAND_TYPE_REMOVE_TRACER_EVENT_SOURCE,
fbc9f37d 32 NOTIFICATION_COMMAND_TYPE_LIST_TRIGGERS,
ab0ee2ca 33 NOTIFICATION_COMMAND_TYPE_QUIT,
f2b3ef9f 34 NOTIFICATION_COMMAND_TYPE_CLIENT_COMMUNICATION_UPDATE,
ab0ee2ca
JG
35};
36
ab0ee2ca
JG
37struct notification_thread_command {
38 struct cds_list_head cmd_list_node;
39
40 enum notification_thread_command_type type;
41 union {
42 /* Register/Unregister trigger. */
43 struct lttng_trigger *trigger;
44 /* Add channel. */
8abe313a
JG
45 struct {
46 struct {
47 const char *name;
48 uid_t uid;
49 gid_t gid;
50 } session;
51 struct {
52 const char *name;
53 enum lttng_domain_type domain;
54 uint64_t key;
55 uint64_t capacity;
56 } channel;
57 } add_channel;
ab0ee2ca
JG
58 /* Remove channel. */
59 struct {
60 uint64_t key;
61 enum lttng_domain_type domain;
62 } remove_channel;
731c1b12
JG
63 struct {
64 const char *session_name;
65 uid_t uid;
66 gid_t gid;
67 uint64_t trace_archive_chunk_id;
68 struct lttng_trace_archive_location *location;
69 } session_rotation;
d02d7404
JR
70 /* Add/Remove tracer event source fd. */
71 struct {
72 int tracer_event_source_fd;
73 enum lttng_domain_type domain;
74 } tracer_event_source;
fbc9f37d
JR
75 /* List triggers. */
76 struct {
77 /* Credentials of the requesting user. */
78 uid_t uid;
79 } list_triggers;
f2b3ef9f
JG
80 /* Client communication update. */
81 struct {
82 notification_client_id id;
83 enum client_transmission_status status;
84 } client_communication_update;
85
ab0ee2ca
JG
86 } parameters;
87
fbc9f37d
JR
88 union {
89 struct {
90 struct lttng_triggers *triggers;
91 } list_triggers;
92 } reply;
8ada111f
JG
93 /* lttng_waiter on which to wait for command reply (optional). */
94 struct lttng_waiter reply_waiter;
ab0ee2ca 95 enum lttng_error_code reply_code;
0ab399e0 96 bool is_async;
ab0ee2ca
JG
97};
98
99enum lttng_error_code notification_thread_command_register_trigger(
100 struct notification_thread_handle *handle,
101 struct lttng_trigger *trigger);
102
103enum lttng_error_code notification_thread_command_unregister_trigger(
104 struct notification_thread_handle *handle,
105 struct lttng_trigger *trigger);
106
107enum lttng_error_code notification_thread_command_add_channel(
108 struct notification_thread_handle *handle,
731c1b12 109 char *session_name, uid_t session_uid, gid_t session_gid,
ab0ee2ca
JG
110 char *channel_name, uint64_t key,
111 enum lttng_domain_type domain, uint64_t capacity);
112
113enum lttng_error_code notification_thread_command_remove_channel(
114 struct notification_thread_handle *handle,
115 uint64_t key, enum lttng_domain_type domain);
116
731c1b12
JG
117enum lttng_error_code notification_thread_command_session_rotation_ongoing(
118 struct notification_thread_handle *handle,
119 const char *session_name, uid_t session_uid, gid_t session_gid,
120 uint64_t trace_archive_chunk_id);
121
122/* Ownership of location is transferred. */
123enum lttng_error_code notification_thread_command_session_rotation_completed(
124 struct notification_thread_handle *handle,
125 const char *session_name, uid_t session_uid, gid_t session_gid,
126 uint64_t trace_archive_chunk_id,
127 struct lttng_trace_archive_location *location);
128
fbc9f37d
JR
129/*
130 * Return the set of triggers visible to a given client.
131 *
132 * The trigger objects contained in the set are the actual trigger instances
133 * used by the notification subsystem (i.e. not a copy). Given that the command
134 * is only used to serialize the triggers, this is fine: the properties that
135 * are serialized are immutable over the lifetime of the triggers.
136 *
137 * Moreover, the lifetime of the trigger instances is protected through
138 * reference counting (references are held by the trigger set).
139 *
140 * The caller has the exclusive ownership of the returned trigger set.
141 */
142enum lttng_error_code notification_thread_command_list_triggers(
143 struct notification_thread_handle *handle,
144 uid_t client_uid,
145 struct lttng_triggers **triggers);
146
d02d7404
JR
147/*
148 * The ownership of trigger_event_application_pipe is _not_ transferred to
149 * the notification thread.
150 */
151enum lttng_error_code notification_thread_command_add_tracer_event_source(
152 struct notification_thread_handle *handle,
153 int tracer_event_source_fd,
154 enum lttng_domain_type domain);
155
156enum lttng_error_code notification_thread_command_remove_tracer_event_source(
157 struct notification_thread_handle *handle,
158 int tracer_event_source_fd);
159
ab0ee2ca
JG
160void notification_thread_command_quit(
161 struct notification_thread_handle *handle);
162
163#endif /* NOTIFICATION_THREAD_COMMANDS_H */
This page took 0.040981 seconds and 4 git commands to generate.