configure: add '-Wredundant-decls' to warning flags
[lttng-tools.git] / src / bin / lttng-sessiond / action-executor.cpp
CommitLineData
f2b3ef9f
JG
1/*
2 * Copyright (C) 2020 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 */
7
8#include "action-executor.h"
9#include "cmd.h"
10#include "health-sessiond.h"
11#include "lttng-sessiond.h"
12#include "notification-thread-internal.h"
13#include "session.h"
14#include "thread.h"
72365501 15#include <common/dynamic-array.h>
f2b3ef9f
JG
16#include <common/macros.h>
17#include <common/optional.h>
18#include <lttng/action/action-internal.h>
ad63a966
JR
19#include <lttng/action/list-internal.h>
20#include <lttng/action/list.h>
2af3b9c9 21#include <lttng/action/notify-internal.h>
f2b3ef9f
JG
22#include <lttng/action/notify.h>
23#include <lttng/action/rotate-session.h>
24#include <lttng/action/snapshot-session.h>
25#include <lttng/action/start-session.h>
26#include <lttng/action/stop-session.h>
27#include <lttng/condition/evaluation.h>
670a26e4 28#include <lttng/condition/event-rule-matches-internal.h>
f2b3ef9f
JG
29#include <lttng/lttng-error.h>
30#include <lttng/trigger/trigger-internal.h>
31#include <pthread.h>
32#include <stdbool.h>
33#include <stddef.h>
34#include <urcu/list.h>
35
36#define THREAD_NAME "Action Executor"
37#define MAX_QUEUED_WORK_COUNT 8192
38
72365501
JR
39/*
40 * A work item is composed of a dynamic array of sub-items which
41 * represent a flattened, and augmented, version of a trigger's actions.
42 *
43 * We cannot rely solely on the trigger's actions since each action can have an
44 * execution context we need to comply with.
45 *
46 * The notion of execution context is required since for some actions the
47 * associated object are referenced by name and not by id. This can lead to
48 * a number of ambiguities when executing an action work item.
49 *
50 * For example, let's take a simple trigger such as:
51 * - condition: ust event a
52 * - action: start session S
53 *
54 * At time T, session S exists.
55 * At T + 1, the event A is hit.
56 * At T + 2, the tracer event notification is received and the work item is
57 * queued. Here session S have an id of 1.
58 * At T + 3, the session S is destroyed and a new session S is created, with a
59 * resulting id of 200.
60 * At T +4, the work item is popped from the queue and begin execution and will
61 * start session S with an id of 200 instead of the session S id 1 that was
62 * present at the queuing phase.
63 *
64 * The context to be respected is the one when the work item is queued. If the
65 * execution context is not the same at the moment of execution, we skip the
66 * execution of that sub-item.
67 *
68 * It is the same policy in regards to the validity of the associated
69 * trigger object at the moment of execution, if the trigger is found to be
70 * unregistered, the execution is skipped.
71 */
72
f2b3ef9f
JG
73struct action_work_item {
74 uint64_t id;
72365501
JR
75
76 /*
77 * The actions to be executed with their respective execution context.
78 * See struct `action_work_subitem`.
79 */
be65f802 80 struct lttng_dynamic_array subitems;
72365501
JR
81
82 /* Execution context data */
f2b3ef9f
JG
83 struct lttng_trigger *trigger;
84 struct lttng_evaluation *evaluation;
85 struct notification_client_list *client_list;
86 LTTNG_OPTIONAL(struct lttng_credentials) object_creds;
87 struct cds_list_head list_node;
88};
89
72365501
JR
90struct action_work_subitem {
91 struct lttng_action *action;
92 struct {
93 /* Used by actions targeting a session. */
94 LTTNG_OPTIONAL(uint64_t) session_id;
95 } context;
96};
97
f2b3ef9f
JG
98struct action_executor {
99 struct lttng_thread *thread;
100 struct notification_thread_handle *notification_thread_handle;
101 struct {
102 uint64_t pending_count;
103 struct cds_list_head list;
104 pthread_cond_t cond;
105 pthread_mutex_t lock;
106 } work;
107 bool should_quit;
108 uint64_t next_work_item_id;
109};
110
111/*
112 * Only return non-zero on a fatal error that should shut down the action
113 * executor.
114 */
115typedef int (*action_executor_handler)(struct action_executor *executor,
116 const struct action_work_item *,
72365501 117 struct action_work_subitem *item);
f2b3ef9f
JG
118
119static int action_executor_notify_handler(struct action_executor *executor,
120 const struct action_work_item *,
72365501 121 struct action_work_subitem *);
2d57482c
JR
122static int action_executor_start_session_handler(
123 struct action_executor *executor,
f2b3ef9f 124 const struct action_work_item *,
72365501 125 struct action_work_subitem *);
2d57482c
JR
126static int action_executor_stop_session_handler(
127 struct action_executor *executor,
f2b3ef9f 128 const struct action_work_item *,
72365501 129 struct action_work_subitem *);
2d57482c
JR
130static int action_executor_rotate_session_handler(
131 struct action_executor *executor,
f2b3ef9f 132 const struct action_work_item *,
72365501 133 struct action_work_subitem *);
2d57482c
JR
134static int action_executor_snapshot_session_handler(
135 struct action_executor *executor,
f2b3ef9f 136 const struct action_work_item *,
72365501 137 struct action_work_subitem *);
7c2fae7c 138static int action_executor_list_handler(struct action_executor *executor,
f2b3ef9f 139 const struct action_work_item *,
72365501 140 struct action_work_subitem *);
f2b3ef9f
JG
141static int action_executor_generic_handler(struct action_executor *executor,
142 const struct action_work_item *,
72365501 143 struct action_work_subitem *);
f2b3ef9f
JG
144
145static const action_executor_handler action_executors[] = {
7966af57
SM
146 action_executor_notify_handler,
147 action_executor_start_session_handler,
148 action_executor_stop_session_handler,
149 action_executor_rotate_session_handler,
150 action_executor_snapshot_session_handler,
151 action_executor_list_handler,
f2b3ef9f
JG
152};
153
72365501
JR
154/* Forward declaration */
155static int add_action_to_subitem_array(struct lttng_action *action,
156 struct lttng_dynamic_array *subitems);
157
158static int populate_subitem_array_from_trigger(struct lttng_trigger *trigger,
159 struct lttng_dynamic_array *subitems);
160
161static void action_work_subitem_destructor(void *element)
162{
7966af57 163 struct action_work_subitem *subitem = (action_work_subitem *) element;
72365501
JR
164
165 lttng_action_put(subitem->action);
166}
167
f2b3ef9f
JG
168static const char *get_action_name(const struct lttng_action *action)
169{
0e43bcbf
JG
170 const enum lttng_action_type action_type = lttng_action_get_type(action);
171
a0377dfe 172 LTTNG_ASSERT(action_type != LTTNG_ACTION_TYPE_UNKNOWN);
0e43bcbf 173
c0e2990d 174 return lttng_action_type_string(action_type);
f2b3ef9f
JG
175}
176
177/* Check if this trigger allowed to interect with a given session. */
178static bool is_trigger_allowed_for_session(const struct lttng_trigger *trigger,
179 struct ltt_session *session)
180{
181 bool is_allowed = false;
182 const struct lttng_credentials session_creds = {
ff588497
JR
183 .uid = LTTNG_OPTIONAL_INIT_VALUE(session->uid),
184 .gid = LTTNG_OPTIONAL_INIT_VALUE(session->gid),
f2b3ef9f
JG
185 };
186 /* Can never be NULL. */
187 const struct lttng_credentials *trigger_creds =
188 lttng_trigger_get_credentials(trigger);
189
ff588497
JR
190 is_allowed = (lttng_credentials_is_equal_uid(trigger_creds, &session_creds)) ||
191 (lttng_credentials_get_uid(trigger_creds) == 0);
f2b3ef9f 192 if (!is_allowed) {
ff588497 193 WARN("Trigger is not allowed to interact with session `%s`: session uid = %ld, session gid = %ld, trigger uid = %ld",
f2b3ef9f
JG
194 session->name,
195 (long int) session->uid,
196 (long int) session->gid,
ff588497 197 (long int) lttng_credentials_get_uid(trigger_creds));
f2b3ef9f
JG
198 }
199
200 return is_allowed;
201}
202
34f87583
JR
203static const char *get_trigger_name(const struct lttng_trigger *trigger)
204{
205 const char *trigger_name;
206 enum lttng_trigger_status trigger_status;
207
208 trigger_status = lttng_trigger_get_name(trigger, &trigger_name);
0efb2ad7
JG
209 switch (trigger_status) {
210 case LTTNG_TRIGGER_STATUS_OK:
211 break;
212 case LTTNG_TRIGGER_STATUS_UNSET:
213 trigger_name = "(anonymous)";
214 break;
215 default:
216 trigger_name = "(failed to get name)";
217 break;
218 }
34f87583
JR
219
220 return trigger_name;
221}
222
f2b3ef9f
JG
223static int client_handle_transmission_status(
224 struct notification_client *client,
225 enum client_transmission_status status,
226 void *user_data)
227{
228 int ret = 0;
7966af57 229 struct action_executor *executor = (action_executor *) user_data;
f2b3ef9f
JG
230 bool update_communication = true;
231
f2b3ef9f
JG
232 switch (status) {
233 case CLIENT_TRANSMISSION_STATUS_COMPLETE:
234 DBG("Successfully sent full notification to client, client_id = %" PRIu64,
235 client->id);
236 update_communication = false;
237 break;
238 case CLIENT_TRANSMISSION_STATUS_QUEUED:
239 DBG("Queued notification in client outgoing buffer, client_id = %" PRIu64,
240 client->id);
241 break;
242 case CLIENT_TRANSMISSION_STATUS_FAIL:
243 DBG("Communication error occurred while sending notification to client, client_id = %" PRIu64,
244 client->id);
f2b3ef9f
JG
245 break;
246 default:
247 ERR("Fatal error encoutered while sending notification to client, client_id = %" PRIu64,
248 client->id);
f2b3ef9f
JG
249 ret = -1;
250 goto end;
251 }
252
253 if (!update_communication) {
254 goto end;
255 }
256
6c24d3fd 257 /* Safe to read client's id without locking as it is immutable. */
f2b3ef9f
JG
258 ret = notification_thread_client_communication_update(
259 executor->notification_thread_handle, client->id,
260 status);
261end:
262 return ret;
263}
264
265static int action_executor_notify_handler(struct action_executor *executor,
266 const struct action_work_item *work_item,
72365501 267 struct action_work_subitem *item)
f2b3ef9f
JG
268{
269 return notification_client_list_send_evaluation(work_item->client_list,
52d55cf9 270 work_item->trigger,
f2b3ef9f 271 work_item->evaluation,
c203f058
JR
272 work_item->object_creds.is_set ?
273 &(work_item->object_creds.value) :
274 NULL,
64eafdf6 275 client_handle_transmission_status, executor);
f2b3ef9f
JG
276}
277
2d57482c
JR
278static int action_executor_start_session_handler(
279 struct action_executor *executor,
f2b3ef9f 280 const struct action_work_item *work_item,
72365501 281 struct action_work_subitem *item)
f2b3ef9f
JG
282{
283 int ret = 0;
284 const char *session_name;
285 enum lttng_action_status action_status;
286 struct ltt_session *session;
287 enum lttng_error_code cmd_ret;
72365501 288 struct lttng_action *action = item->action;
f2b3ef9f
JG
289
290 action_status = lttng_action_start_session_get_session_name(
291 action, &session_name);
292 if (action_status != LTTNG_ACTION_STATUS_OK) {
293 ERR("Failed to get session name from `%s` action",
294 get_action_name(action));
295 ret = -1;
296 goto end;
297 }
298
72365501
JR
299 /*
300 * Validate if at the moment of the action was queued the session
301 * existed. If not skip the action altogether.
302 */
303 if (!item->context.session_id.is_set) {
4ec6f5b6 304 DBG("Session `%s` was not present at the moment the work item was enqueued for `%s` action of trigger `%s`",
72365501
JR
305 session_name, get_action_name(action),
306 get_trigger_name(work_item->trigger));
307 lttng_action_increase_execution_failure_count(action);
72365501
JR
308 goto end;
309 }
310
f2b3ef9f 311 session_lock_list();
c9753f72 312 rcu_read_lock();
4a467a84 313 session = session_find_by_id(LTTNG_OPTIONAL_GET(item->context.session_id));
f2b3ef9f 314 if (!session) {
34f87583 315 DBG("Failed to find session `%s` by name while executing `%s` action of trigger `%s`",
f2b3ef9f 316 session_name, get_action_name(action),
34f87583 317 get_trigger_name(work_item->trigger));
4a467a84 318 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
319 goto error_unlock_list;
320 }
321
4a467a84
JR
322 session_lock(session);
323 if (session->destroyed) {
4ec6f5b6 324 DBG("Session `%s` with id = %" PRIu64 " is flagged as destroyed. Skipping: action = `%s`, trigger = `%s`",
4a467a84 325 session->name, session->id,
72365501
JR
326 get_action_name(action),
327 get_trigger_name(work_item->trigger));
4a467a84 328 goto error_unlock_session;
72365501
JR
329 }
330
f2b3ef9f 331 if (!is_trigger_allowed_for_session(work_item->trigger, session)) {
635e0160 332 goto error_unlock_session;
f2b3ef9f
JG
333 }
334
7966af57 335 cmd_ret = (lttng_error_code) cmd_start_trace(session);
f2b3ef9f
JG
336 switch (cmd_ret) {
337 case LTTNG_OK:
34f87583
JR
338 DBG("Successfully started session `%s` on behalf of trigger `%s`",
339 session_name, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
340 break;
341 case LTTNG_ERR_TRACE_ALREADY_STARTED:
34f87583
JR
342 DBG("Attempted to start session `%s` on behalf of trigger `%s` but it was already started",
343 session_name, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
344 break;
345 default:
34f87583
JR
346 WARN("Failed to start session `%s` on behalf of trigger `%s`: %s",
347 session_name, get_trigger_name(work_item->trigger),
f2b3ef9f 348 lttng_strerror(-cmd_ret));
2d57482c 349 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
350 break;
351 }
352
635e0160 353error_unlock_session:
f2b3ef9f
JG
354 session_unlock(session);
355 session_put(session);
356error_unlock_list:
c9753f72 357 rcu_read_unlock();
f2b3ef9f
JG
358 session_unlock_list();
359end:
360 return ret;
361}
362
2d57482c
JR
363static int action_executor_stop_session_handler(
364 struct action_executor *executor,
f2b3ef9f 365 const struct action_work_item *work_item,
72365501 366 struct action_work_subitem *item)
f2b3ef9f
JG
367{
368 int ret = 0;
369 const char *session_name;
370 enum lttng_action_status action_status;
371 struct ltt_session *session;
372 enum lttng_error_code cmd_ret;
72365501 373 struct lttng_action *action = item->action;
f2b3ef9f
JG
374
375 action_status = lttng_action_stop_session_get_session_name(
376 action, &session_name);
377 if (action_status != LTTNG_ACTION_STATUS_OK) {
378 ERR("Failed to get session name from `%s` action",
379 get_action_name(action));
380 ret = -1;
381 goto end;
382 }
383
72365501
JR
384 /*
385 * Validate if, at the moment the action was queued, the target session
386 * existed. If not, skip the action altogether.
387 */
388 if (!item->context.session_id.is_set) {
4ec6f5b6 389 DBG("Session `%s` was not present at the moment the work item was enqueued for `%s` action of trigger `%s`",
72365501
JR
390 session_name, get_action_name(action),
391 get_trigger_name(work_item->trigger));
392 lttng_action_increase_execution_failure_count(action);
72365501
JR
393 goto end;
394 }
395
f2b3ef9f 396 session_lock_list();
c9753f72 397 rcu_read_lock();
4a467a84 398 session = session_find_by_id(LTTNG_OPTIONAL_GET(item->context.session_id));
f2b3ef9f 399 if (!session) {
34f87583 400 DBG("Failed to find session `%s` by name while executing `%s` action of trigger `%s`",
f2b3ef9f 401 session_name, get_action_name(action),
34f87583 402 get_trigger_name(work_item->trigger));
2d57482c 403 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
404 goto error_unlock_list;
405 }
406
4a467a84
JR
407 session_lock(session);
408 if (session->destroyed) {
4ec6f5b6 409 DBG("Session `%s` with id = %" PRIu64 " is flagged as destroyed. Skipping: action = `%s`, trigger = `%s`",
4a467a84 410 session->name, session->id,
72365501
JR
411 get_action_name(action),
412 get_trigger_name(work_item->trigger));
4a467a84 413 goto error_unlock_session;
72365501
JR
414 }
415
f2b3ef9f 416 if (!is_trigger_allowed_for_session(work_item->trigger, session)) {
635e0160 417 goto error_unlock_session;
f2b3ef9f
JG
418 }
419
7966af57 420 cmd_ret = (lttng_error_code) cmd_stop_trace(session);
f2b3ef9f
JG
421 switch (cmd_ret) {
422 case LTTNG_OK:
34f87583
JR
423 DBG("Successfully stopped session `%s` on behalf of trigger `%s`",
424 session_name, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
425 break;
426 case LTTNG_ERR_TRACE_ALREADY_STOPPED:
34f87583
JR
427 DBG("Attempted to stop session `%s` on behalf of trigger `%s` but it was already stopped",
428 session_name, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
429 break;
430 default:
34f87583
JR
431 WARN("Failed to stop session `%s` on behalf of trigger `%s`: %s",
432 session_name, get_trigger_name(work_item->trigger),
f2b3ef9f 433 lttng_strerror(-cmd_ret));
2d57482c 434 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
435 break;
436 }
437
635e0160 438error_unlock_session:
f2b3ef9f
JG
439 session_unlock(session);
440 session_put(session);
441error_unlock_list:
c9753f72 442 rcu_read_unlock();
f2b3ef9f
JG
443 session_unlock_list();
444end:
445 return ret;
446}
447
2d57482c
JR
448static int action_executor_rotate_session_handler(
449 struct action_executor *executor,
f2b3ef9f 450 const struct action_work_item *work_item,
72365501 451 struct action_work_subitem *item)
f2b3ef9f
JG
452{
453 int ret = 0;
454 const char *session_name;
455 enum lttng_action_status action_status;
456 struct ltt_session *session;
457 enum lttng_error_code cmd_ret;
72365501 458 struct lttng_action *action = item->action;
f2b3ef9f
JG
459
460 action_status = lttng_action_rotate_session_get_session_name(
461 action, &session_name);
462 if (action_status != LTTNG_ACTION_STATUS_OK) {
463 ERR("Failed to get session name from `%s` action",
464 get_action_name(action));
465 ret = -1;
466 goto end;
467 }
468
72365501
JR
469 /*
470 * Validate if, at the moment the action was queued, the target session
471 * existed. If not, skip the action altogether.
472 */
473 if (!item->context.session_id.is_set) {
4ec6f5b6 474 DBG("Session `%s` was not present at the moment the work item was enqueued for `%s` action of trigger `%s`",
72365501
JR
475 session_name, get_action_name(action),
476 get_trigger_name(work_item->trigger));
477 lttng_action_increase_execution_failure_count(action);
72365501
JR
478 goto end;
479 }
480
f2b3ef9f 481 session_lock_list();
c9753f72 482 rcu_read_lock();
4a467a84 483 session = session_find_by_id(LTTNG_OPTIONAL_GET(item->context.session_id));
f2b3ef9f 484 if (!session) {
34f87583 485 DBG("Failed to find session `%s` by name while executing `%s` action of trigger `%s`",
f2b3ef9f 486 session_name, get_action_name(action),
34f87583 487 get_trigger_name(work_item->trigger));
2d57482c 488 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
489 goto error_unlock_list;
490 }
491
4a467a84
JR
492 session_lock(session);
493 if (session->destroyed) {
4ec6f5b6 494 DBG("Session `%s` with id = %" PRIu64 " is flagged as destroyed. Skipping: action = `%s`, trigger = `%s`",
4a467a84 495 session->name, session->id,
72365501
JR
496 get_action_name(action),
497 get_trigger_name(work_item->trigger));
4a467a84 498 goto error_unlock_session;
72365501
JR
499 }
500
f2b3ef9f 501 if (!is_trigger_allowed_for_session(work_item->trigger, session)) {
635e0160 502 goto error_unlock_session;
f2b3ef9f
JG
503 }
504
7966af57 505 cmd_ret = (lttng_error_code) cmd_rotate_session(session, NULL, false,
f2b3ef9f
JG
506 LTTNG_TRACE_CHUNK_COMMAND_TYPE_MOVE_TO_COMPLETED);
507 switch (cmd_ret) {
508 case LTTNG_OK:
34f87583
JR
509 DBG("Successfully started rotation of session `%s` on behalf of trigger `%s`",
510 session_name, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
511 break;
512 case LTTNG_ERR_ROTATION_PENDING:
34f87583
JR
513 DBG("Attempted to start a rotation of session `%s` on behalf of trigger `%s` but a rotation is already ongoing",
514 session_name, get_trigger_name(work_item->trigger));
2d57482c 515 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
516 break;
517 case LTTNG_ERR_ROTATION_MULTIPLE_AFTER_STOP:
518 case LTTNG_ERR_ROTATION_AFTER_STOP_CLEAR:
34f87583
JR
519 DBG("Attempted to start a rotation of session `%s` on behalf of trigger `%s` but a rotation has already been completed since the last stop or clear",
520 session_name, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
521 break;
522 default:
34f87583
JR
523 WARN("Failed to start a rotation of session `%s` on behalf of trigger `%s`: %s",
524 session_name, get_trigger_name(work_item->trigger),
f2b3ef9f 525 lttng_strerror(-cmd_ret));
2d57482c 526 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
527 break;
528 }
529
635e0160 530error_unlock_session:
f2b3ef9f
JG
531 session_unlock(session);
532 session_put(session);
533error_unlock_list:
c9753f72 534 rcu_read_unlock();
f2b3ef9f
JG
535 session_unlock_list();
536end:
537 return ret;
538}
539
2d57482c
JR
540static int action_executor_snapshot_session_handler(
541 struct action_executor *executor,
f2b3ef9f 542 const struct action_work_item *work_item,
72365501 543 struct action_work_subitem *item)
f2b3ef9f
JG
544{
545 int ret = 0;
546 const char *session_name;
547 enum lttng_action_status action_status;
548 struct ltt_session *session;
7966af57 549 lttng_snapshot_output default_snapshot_output;
f2b3ef9f
JG
550 const struct lttng_snapshot_output *snapshot_output =
551 &default_snapshot_output;
552 enum lttng_error_code cmd_ret;
72365501
JR
553 struct lttng_action *action = item->action;
554
7966af57
SM
555 default_snapshot_output.max_size = UINT64_MAX;
556
72365501
JR
557 /*
558 * Validate if, at the moment the action was queued, the target session
559 * existed. If not, skip the action altogether.
560 */
561 if (!item->context.session_id.is_set) {
4ec6f5b6 562 DBG("Session was not present at the moment the work item was enqueued for `%s` action of trigger `%s`",
42ef691e 563 get_action_name(action),
72365501
JR
564 get_trigger_name(work_item->trigger));
565 lttng_action_increase_execution_failure_count(action);
72365501
JR
566 goto end;
567 }
f2b3ef9f
JG
568
569 action_status = lttng_action_snapshot_session_get_session_name(
570 action, &session_name);
571 if (action_status != LTTNG_ACTION_STATUS_OK) {
572 ERR("Failed to get session name from `%s` action",
573 get_action_name(action));
574 ret = -1;
575 goto end;
576 }
577
578 action_status = lttng_action_snapshot_session_get_output(
579 action, &snapshot_output);
580 if (action_status != LTTNG_ACTION_STATUS_OK &&
581 action_status != LTTNG_ACTION_STATUS_UNSET) {
582 ERR("Failed to get output from `%s` action",
583 get_action_name(action));
584 ret = -1;
585 goto end;
586 }
587
588 session_lock_list();
c9753f72 589 rcu_read_lock();
4a467a84 590 session = session_find_by_id(LTTNG_OPTIONAL_GET(item->context.session_id));
f2b3ef9f 591 if (!session) {
ca46af4e 592 DBG("Failed to find session `%s` by name while executing `%s` action of trigger `%s`",
f2b3ef9f 593 session_name, get_action_name(action),
ca46af4e 594 get_trigger_name(work_item->trigger));
2d57482c 595 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
596 goto error_unlock_list;
597 }
598
4a467a84
JR
599 session_lock(session);
600 if (session->destroyed) {
4ec6f5b6 601 DBG("Session `%s` with id = %" PRIu64 " is flagged as destroyed. Skipping: action = `%s`, trigger = `%s`",
4a467a84 602 session->name, session->id,
72365501
JR
603 get_action_name(action),
604 get_trigger_name(work_item->trigger));
4a467a84 605 goto error_unlock_session;
72365501 606 }
f2b3ef9f 607
f2b3ef9f 608 if (!is_trigger_allowed_for_session(work_item->trigger, session)) {
635e0160 609 goto error_unlock_session;
f2b3ef9f
JG
610 }
611
7966af57 612 cmd_ret = (lttng_error_code) cmd_snapshot_record(session, snapshot_output, 0);
f2b3ef9f
JG
613 switch (cmd_ret) {
614 case LTTNG_OK:
34f87583
JR
615 DBG("Successfully recorded snapshot of session `%s` on behalf of trigger `%s`",
616 session_name, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
617 break;
618 default:
34f87583
JR
619 WARN("Failed to record snapshot of session `%s` on behalf of trigger `%s`: %s",
620 session_name, get_trigger_name(work_item->trigger),
f2b3ef9f 621 lttng_strerror(-cmd_ret));
2d57482c 622 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
623 break;
624 }
625
635e0160 626error_unlock_session:
f2b3ef9f
JG
627 session_unlock(session);
628 session_put(session);
629error_unlock_list:
c9753f72 630 rcu_read_unlock();
f2b3ef9f
JG
631 session_unlock_list();
632end:
633 return ret;
634}
635
7c2fae7c 636static int action_executor_list_handler(struct action_executor *executor,
f2b3ef9f 637 const struct action_work_item *work_item,
72365501 638 struct action_work_subitem *item)
f2b3ef9f 639{
7c2fae7c 640 ERR("Execution of a list action by the action executor should never occur");
72365501 641 abort();
f2b3ef9f
JG
642}
643
644static int action_executor_generic_handler(struct action_executor *executor,
645 const struct action_work_item *work_item,
72365501 646 struct action_work_subitem *item)
f2b3ef9f 647{
2d57482c 648 int ret;
72365501 649 struct lttng_action *action = item->action;
0e43bcbf
JG
650 const enum lttng_action_type action_type = lttng_action_get_type(action);
651
a0377dfe 652 LTTNG_ASSERT(action_type != LTTNG_ACTION_TYPE_UNKNOWN);
0e43bcbf 653
2d57482c
JR
654 lttng_action_increase_execution_request_count(action);
655 if (!lttng_action_should_execute(action)) {
656 DBG("Policy prevented execution of action `%s` of trigger `%s` action work item %" PRIu64,
657 get_action_name(action),
658 get_trigger_name(work_item->trigger),
659 work_item->id);
660 ret = 0;
661 goto end;
662 }
663
664 lttng_action_increase_execution_count(action);
2516f2d8 665 DBG("Executing action `%s` of trigger `%s` action work item %" PRIu64,
f2b3ef9f 666 get_action_name(action),
34f87583 667 get_trigger_name(work_item->trigger),
f2b3ef9f 668 work_item->id);
72365501 669 ret = action_executors[action_type](executor, work_item, item);
2d57482c
JR
670end:
671 return ret;
f2b3ef9f
JG
672}
673
674static int action_work_item_execute(struct action_executor *executor,
675 struct action_work_item *work_item)
676{
677 int ret;
72365501 678 size_t count, i;
f2b3ef9f 679
34f87583
JR
680 DBG("Starting execution of action work item %" PRIu64 " of trigger `%s`",
681 work_item->id, get_trigger_name(work_item->trigger));
72365501 682
be65f802 683 count = lttng_dynamic_array_get_count(&work_item->subitems);
72365501
JR
684 for (i = 0; i < count; i++) {
685 struct action_work_subitem *item;
686
7966af57 687 item = (action_work_subitem *) lttng_dynamic_array_get_element(&work_item->subitems, i);
72365501
JR
688 ret = action_executor_generic_handler(
689 executor, work_item, item);
690 if (ret) {
691 goto end;
692 }
693 }
694end:
34f87583
JR
695 DBG("Completed execution of action work item %" PRIu64 " of trigger `%s`",
696 work_item->id, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
697 return ret;
698}
699
700static void action_work_item_destroy(struct action_work_item *work_item)
701{
702 lttng_trigger_put(work_item->trigger);
703 lttng_evaluation_destroy(work_item->evaluation);
704 notification_client_list_put(work_item->client_list);
be65f802 705 lttng_dynamic_array_reset(&work_item->subitems);
f2b3ef9f
JG
706 free(work_item);
707}
708
709static void *action_executor_thread(void *_data)
710{
7966af57 711 struct action_executor *executor = (action_executor *) _data;
f2b3ef9f 712
a0377dfe 713 LTTNG_ASSERT(executor);
f2b3ef9f 714
412d7227
SM
715 health_register(the_health_sessiond,
716 HEALTH_SESSIOND_TYPE_ACTION_EXECUTOR);
f2b3ef9f
JG
717
718 rcu_register_thread();
719 rcu_thread_online();
720
721 DBG("Entering work execution loop");
722 pthread_mutex_lock(&executor->work.lock);
723 while (!executor->should_quit) {
da247508 724 int ret = 0;
f2b3ef9f
JG
725 struct action_work_item *work_item;
726
727 health_code_update();
728 if (executor->work.pending_count == 0) {
729 health_poll_entry();
730 DBG("No work items enqueued, entering wait");
731 pthread_cond_wait(&executor->work.cond,
732 &executor->work.lock);
733 DBG("Woke-up from wait");
734 health_poll_exit();
735 continue;
736 }
737
0db0f8e0 738 /* Pop item from front of the list with work lock held. */
f2b3ef9f
JG
739 work_item = cds_list_first_entry(&executor->work.list,
740 struct action_work_item, list_node);
741 cds_list_del(&work_item->list_node);
742 executor->work.pending_count--;
743
744 /*
745 * Work can be performed without holding the work lock,
746 * allowing new items to be queued.
747 */
748 pthread_mutex_unlock(&executor->work.lock);
d2a28b27
JR
749
750 /* Execute item only if a trigger is registered. */
751 lttng_trigger_lock(work_item->trigger);
752 if (!lttng_trigger_is_registered(work_item->trigger)) {
753 const char *trigger_name = NULL;
754 uid_t trigger_owner_uid;
755 enum lttng_trigger_status trigger_status;
756
0efb2ad7 757 trigger_name = get_trigger_name(work_item->trigger);
d2a28b27
JR
758
759 trigger_status = lttng_trigger_get_owner_uid(
760 work_item->trigger, &trigger_owner_uid);
a0377dfe 761 LTTNG_ASSERT(trigger_status == LTTNG_TRIGGER_STATUS_OK);
d2a28b27 762
4ec6f5b6 763 DBG("Work item skipped since the associated trigger is no longer registered: work item id = %" PRIu64 ", trigger name = `%s`, trigger owner uid = %d",
d2a28b27
JR
764 work_item->id, trigger_name,
765 (int) trigger_owner_uid);
766 ret = 0;
767 goto skip_execute;
768 }
769
f2b3ef9f 770 ret = action_work_item_execute(executor, work_item);
d2a28b27
JR
771
772 skip_execute:
773 lttng_trigger_unlock(work_item->trigger);
f2b3ef9f
JG
774 action_work_item_destroy(work_item);
775 if (ret) {
776 /* Fatal error. */
777 break;
778 }
779
780 health_code_update();
781 pthread_mutex_lock(&executor->work.lock);
782 }
783
f5f5c54d
JG
784 if (executor->should_quit) {
785 pthread_mutex_unlock(&executor->work.lock);
786 }
f2b3ef9f
JG
787 DBG("Left work execution loop");
788
789 health_code_update();
790
791 rcu_thread_offline();
792 rcu_unregister_thread();
412d7227 793 health_unregister(the_health_sessiond);
f2b3ef9f
JG
794
795 return NULL;
796}
797
798static bool shutdown_action_executor_thread(void *_data)
799{
7966af57 800 struct action_executor *executor = (action_executor *) _data;
f2b3ef9f 801
8db3acaf 802 pthread_mutex_lock(&executor->work.lock);
f2b3ef9f
JG
803 executor->should_quit = true;
804 pthread_cond_signal(&executor->work.cond);
8db3acaf 805 pthread_mutex_unlock(&executor->work.lock);
f2b3ef9f
JG
806 return true;
807}
808
809static void clean_up_action_executor_thread(void *_data)
810{
7966af57 811 struct action_executor *executor = (action_executor *) _data;
f2b3ef9f 812
a0377dfe 813 LTTNG_ASSERT(cds_list_empty(&executor->work.list));
f2b3ef9f
JG
814
815 pthread_mutex_destroy(&executor->work.lock);
816 pthread_cond_destroy(&executor->work.cond);
817 free(executor);
818}
819
820struct action_executor *action_executor_create(
821 struct notification_thread_handle *handle)
822{
7966af57 823 struct action_executor *executor = (action_executor *) zmalloc(sizeof(*executor));
f2b3ef9f
JG
824
825 if (!executor) {
826 goto end;
827 }
828
829 CDS_INIT_LIST_HEAD(&executor->work.list);
830 pthread_cond_init(&executor->work.cond, NULL);
831 pthread_mutex_init(&executor->work.lock, NULL);
832 executor->notification_thread_handle = handle;
833
834 executor->thread = lttng_thread_create(THREAD_NAME,
835 action_executor_thread, shutdown_action_executor_thread,
836 clean_up_action_executor_thread, executor);
837end:
838 return executor;
839}
840
841void action_executor_destroy(struct action_executor *executor)
842{
843 struct action_work_item *work_item, *tmp;
844
845 /* TODO Wait for work list to drain? */
846 lttng_thread_shutdown(executor->thread);
847 pthread_mutex_lock(&executor->work.lock);
848 if (executor->work.pending_count != 0) {
849 WARN("%" PRIu64
850 " trigger action%s still queued for execution and will be discarded",
851 executor->work.pending_count,
852 executor->work.pending_count == 1 ? " is" :
853 "s are");
854 }
855
856 cds_list_for_each_entry_safe (
857 work_item, tmp, &executor->work.list, list_node) {
858 WARN("Discarding action work item %" PRIu64
34f87583
JR
859 " associated to trigger `%s`",
860 work_item->id, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
861 cds_list_del(&work_item->list_node);
862 action_work_item_destroy(work_item);
863 }
864 pthread_mutex_unlock(&executor->work.lock);
865 lttng_thread_put(executor->thread);
866}
867
868/* RCU read-lock must be held by the caller. */
72365501 869enum action_executor_status action_executor_enqueue_trigger(
f2b3ef9f
JG
870 struct action_executor *executor,
871 struct lttng_trigger *trigger,
872 struct lttng_evaluation *evaluation,
873 const struct lttng_credentials *object_creds,
874 struct notification_client_list *client_list)
875{
72365501 876 int ret;
f2b3ef9f
JG
877 enum action_executor_status executor_status = ACTION_EXECUTOR_STATUS_OK;
878 const uint64_t work_item_id = executor->next_work_item_id++;
879 struct action_work_item *work_item;
880 bool signal = false;
72365501 881
a0377dfe 882 LTTNG_ASSERT(trigger);
48b7cdc2 883 ASSERT_RCU_READ_LOCKED();
72365501 884
f2b3ef9f
JG
885 pthread_mutex_lock(&executor->work.lock);
886 /* Check for queue overflow. */
887 if (executor->work.pending_count >= MAX_QUEUED_WORK_COUNT) {
888 /* Most likely spammy, remove if it is the case. */
72365501
JR
889 DBG("Refusing to enqueue action for trigger (overflow): trigger name = `%s`, work item id = %" PRIu64,
890 get_trigger_name(trigger), work_item_id);
f2b3ef9f
JG
891 executor_status = ACTION_EXECUTOR_STATUS_OVERFLOW;
892 goto error_unlock;
893 }
894
7966af57 895 work_item = (action_work_item *) zmalloc(sizeof(*work_item));
f2b3ef9f 896 if (!work_item) {
4ec6f5b6 897 PERROR("Failed to allocate action executor work item: trigger name = `%s`",
34f87583 898 get_trigger_name(trigger));
f2b3ef9f
JG
899 executor_status = ACTION_EXECUTOR_STATUS_ERROR;
900 goto error_unlock;
901 }
902
903 lttng_trigger_get(trigger);
904 if (client_list) {
905 const bool reference_acquired =
906 notification_client_list_get(client_list);
907
a0377dfe 908 LTTNG_ASSERT(reference_acquired);
f2b3ef9f
JG
909 }
910
7966af57
SM
911 work_item->id = work_item_id;
912 work_item->trigger = trigger;
f2b3ef9f 913
7966af57
SM
914 /* Ownership transferred to the work item. */
915 work_item->evaluation = evaluation;
f2b3ef9f 916 evaluation = NULL;
be65f802 917
7966af57
SM
918 work_item->client_list = client_list;
919 work_item->object_creds.is_set = !!object_creds;
920 if (object_creds) {
921 work_item->object_creds.value = *object_creds;
922 }
923
924 CDS_INIT_LIST_HEAD(&work_item->list_node);
925
be65f802
JG
926 /* Build the array of action work subitems for the passed trigger. */
927 lttng_dynamic_array_init(&work_item->subitems,
928 sizeof(struct action_work_subitem),
929 action_work_subitem_destructor);
930
931 ret = populate_subitem_array_from_trigger(
932 trigger, &work_item->subitems);
933 if (ret) {
934 ERR("Failed to populate work item sub items on behalf of trigger: trigger name = `%s`",
935 get_trigger_name(trigger));
936 executor_status = ACTION_EXECUTOR_STATUS_ERROR;
937 goto error_unlock;
938 }
939
f2b3ef9f
JG
940 cds_list_add_tail(&work_item->list_node, &executor->work.list);
941 executor->work.pending_count++;
72365501 942 DBG("Enqueued action for trigger: trigger name = `%s`, work item id = %" PRIu64,
34f87583 943 get_trigger_name(trigger), work_item_id);
f2b3ef9f
JG
944 signal = true;
945
946error_unlock:
f2b3ef9f
JG
947 if (signal) {
948 pthread_cond_signal(&executor->work.cond);
949 }
950
be65f802 951 pthread_mutex_unlock(&executor->work.lock);
f2b3ef9f
JG
952 lttng_evaluation_destroy(evaluation);
953 return executor_status;
954}
72365501
JR
955
956static int add_action_to_subitem_array(struct lttng_action *action,
957 struct lttng_dynamic_array *subitems)
958{
da247508 959 int ret = 0;
72365501
JR
960 enum lttng_action_type type = lttng_action_get_type(action);
961 const char *session_name = NULL;
962 enum lttng_action_status status;
963 struct action_work_subitem subitem = {
964 .action = NULL,
965 .context = {
966 .session_id = LTTNG_OPTIONAL_INIT_UNSET,
967 },
968 };
969
a0377dfe
FD
970 LTTNG_ASSERT(action);
971 LTTNG_ASSERT(subitems);
72365501 972
7c2fae7c 973 if (type == LTTNG_ACTION_TYPE_LIST) {
72365501
JR
974 unsigned int count, i;
975
702f26c8 976 status = lttng_action_list_get_count(action, &count);
a0377dfe 977 LTTNG_ASSERT(status == LTTNG_ACTION_STATUS_OK);
72365501
JR
978
979 for (i = 0; i < count; i++) {
980 struct lttng_action *inner_action = NULL;
981
702f26c8 982 inner_action = lttng_action_list_borrow_mutable_at_index(
72365501 983 action, i);
a0377dfe 984 LTTNG_ASSERT(inner_action);
72365501
JR
985 ret = add_action_to_subitem_array(
986 inner_action, subitems);
987 if (ret) {
988 goto end;
989 }
990 }
991
992 /*
993 * Go directly to the end since there is no need to add the
7c2fae7c 994 * list action by itself to the subitems array.
72365501
JR
995 */
996 goto end;
997 }
998
999 /* Gather execution context. */
1000 switch (type) {
1001 case LTTNG_ACTION_TYPE_NOTIFY:
1002 break;
1003 case LTTNG_ACTION_TYPE_START_SESSION:
1004 status = lttng_action_start_session_get_session_name(
1005 action, &session_name);
a0377dfe 1006 LTTNG_ASSERT(status == LTTNG_ACTION_STATUS_OK);
72365501
JR
1007 break;
1008 case LTTNG_ACTION_TYPE_STOP_SESSION:
1009 status = lttng_action_stop_session_get_session_name(
1010 action, &session_name);
a0377dfe 1011 LTTNG_ASSERT(status == LTTNG_ACTION_STATUS_OK);
72365501
JR
1012 break;
1013 case LTTNG_ACTION_TYPE_ROTATE_SESSION:
1014 status = lttng_action_rotate_session_get_session_name(
1015 action, &session_name);
a0377dfe 1016 LTTNG_ASSERT(status == LTTNG_ACTION_STATUS_OK);
72365501
JR
1017 break;
1018 case LTTNG_ACTION_TYPE_SNAPSHOT_SESSION:
1019 status = lttng_action_snapshot_session_get_session_name(
1020 action, &session_name);
a0377dfe 1021 LTTNG_ASSERT(status == LTTNG_ACTION_STATUS_OK);
72365501 1022 break;
7c2fae7c 1023 case LTTNG_ACTION_TYPE_LIST:
72365501
JR
1024 case LTTNG_ACTION_TYPE_UNKNOWN:
1025 /* Fallthrough */
1026 default:
1027 abort();
1028 break;
1029 }
1030
1031 /*
1032 * Fetch the session execution context info as needed.
1033 * Note that we could decide to not add an action for which we know the
1034 * execution will not happen (i.e no session exists for that name). For
1035 * now we leave the decision to skip to the action executor for sake of
1036 * simplicity and consistency.
1037 */
1038 if (session_name != NULL) {
e1bbf989 1039 uint64_t session_id;
72365501 1040
e1bbf989
JR
1041 /*
1042 * Instantaneous sampling of the session id if present.
1043 *
1044 * This method is preferred over `sessiond_find_by_name` then
1045 * fetching the session'd id since `sessiond_find_by_name`
1046 * requires the session list lock to be taken.
1047 *
1048 * Taking the session list lock can lead to a deadlock
1049 * between the action executor and the notification thread
1050 * (caller of add_action_to_subitem_array). It is okay if the
1051 * session state changes between the enqueuing time and the
1052 * execution time. The execution context is validated at
1053 * execution time.
1054 */
1055 if (sample_session_id_by_name(session_name, &session_id)) {
72365501 1056 LTTNG_OPTIONAL_SET(&subitem.context.session_id,
e1bbf989 1057 session_id);
72365501 1058 }
72365501
JR
1059 }
1060
1061 /* Get a reference to the action. */
1062 lttng_action_get(action);
1063 subitem.action = action;
1064
1065 ret = lttng_dynamic_array_add_element(subitems, &subitem);
1066 if (ret) {
1067 ERR("Failed to add work subitem to the subitem array");
1068 lttng_action_put(action);
1069 ret = -1;
1070 goto end;
1071 }
1072
1073end:
1074 return ret;
1075}
1076
1077static int populate_subitem_array_from_trigger(struct lttng_trigger *trigger,
1078 struct lttng_dynamic_array *subitems)
1079{
1080 struct lttng_action *action;
1081
1082 action = lttng_trigger_get_action(trigger);
a0377dfe 1083 LTTNG_ASSERT(action);
72365501
JR
1084
1085 return add_action_to_subitem_array(action, subitems);
1086}
This page took 0.08876 seconds and 4 git commands to generate.