Fix: error-query: uninitialized action_index value
[lttng-tools.git] / src / bin / lttng-sessiond / action-executor.c
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 */
80 struct lttng_dynamic_array *subitems;
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 *);
f2b3ef9f
JG
138static int action_executor_group_handler(struct action_executor *executor,
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[] = {
146 [LTTNG_ACTION_TYPE_NOTIFY] = action_executor_notify_handler,
147 [LTTNG_ACTION_TYPE_START_SESSION] = action_executor_start_session_handler,
148 [LTTNG_ACTION_TYPE_STOP_SESSION] = action_executor_stop_session_handler,
149 [LTTNG_ACTION_TYPE_ROTATE_SESSION] = action_executor_rotate_session_handler,
150 [LTTNG_ACTION_TYPE_SNAPSHOT_SESSION] = action_executor_snapshot_session_handler,
151 [LTTNG_ACTION_TYPE_GROUP] = action_executor_group_handler,
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{
163 struct action_work_subitem *subitem = element;
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
172 assert(action_type != LTTNG_ACTION_TYPE_UNKNOWN);
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;
229 struct action_executor *executor = user_data;
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) {
304 DBG("Session `%s` was not present at the moment the work item was enqueued for %s` action of trigger `%s`",
305 session_name, get_action_name(action),
306 get_trigger_name(work_item->trigger));
307 lttng_action_increase_execution_failure_count(action);
308 ret = 0;
309 goto end;
310 }
311
f2b3ef9f
JG
312 session_lock_list();
313 session = session_find_by_name(session_name);
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));
f2b3ef9f
JG
318 goto error_unlock_list;
319 }
320
72365501
JR
321 /*
322 * Check if the session id is the same as when the work item was
323 * enqueued.
324 */
325 if (session->id != LTTNG_OPTIONAL_GET(item->context.session_id)) {
326 DBG("Session id for session `%s` (id: %" PRIu64
327 " is not the same that was sampled (id: %" PRIu64
328 " at the moment the work item was enqueued for %s` action of trigger `%s`",
329 session_name, session->id,
330 LTTNG_OPTIONAL_GET(item->context.session_id),
331 get_action_name(action),
332 get_trigger_name(work_item->trigger));
333 ret = 0;
334 goto error_unlock_list;
335 }
336
f2b3ef9f
JG
337 session_lock(session);
338 if (!is_trigger_allowed_for_session(work_item->trigger, session)) {
339 goto error_dispose_session;
340 }
341
342 cmd_ret = cmd_start_trace(session);
343 switch (cmd_ret) {
344 case LTTNG_OK:
34f87583
JR
345 DBG("Successfully started session `%s` on behalf of trigger `%s`",
346 session_name, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
347 break;
348 case LTTNG_ERR_TRACE_ALREADY_STARTED:
34f87583
JR
349 DBG("Attempted to start session `%s` on behalf of trigger `%s` but it was already started",
350 session_name, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
351 break;
352 default:
34f87583
JR
353 WARN("Failed to start session `%s` on behalf of trigger `%s`: %s",
354 session_name, get_trigger_name(work_item->trigger),
f2b3ef9f 355 lttng_strerror(-cmd_ret));
2d57482c 356 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
357 break;
358 }
359
360error_dispose_session:
361 session_unlock(session);
362 session_put(session);
363error_unlock_list:
364 session_unlock_list();
365end:
366 return ret;
367}
368
2d57482c
JR
369static int action_executor_stop_session_handler(
370 struct action_executor *executor,
f2b3ef9f 371 const struct action_work_item *work_item,
72365501 372 struct action_work_subitem *item)
f2b3ef9f
JG
373{
374 int ret = 0;
375 const char *session_name;
376 enum lttng_action_status action_status;
377 struct ltt_session *session;
378 enum lttng_error_code cmd_ret;
72365501 379 struct lttng_action *action = item->action;
f2b3ef9f
JG
380
381 action_status = lttng_action_stop_session_get_session_name(
382 action, &session_name);
383 if (action_status != LTTNG_ACTION_STATUS_OK) {
384 ERR("Failed to get session name from `%s` action",
385 get_action_name(action));
386 ret = -1;
387 goto end;
388 }
389
72365501
JR
390 /*
391 * Validate if, at the moment the action was queued, the target session
392 * existed. If not, skip the action altogether.
393 */
394 if (!item->context.session_id.is_set) {
395 DBG("Session `%s` was not present at the moment the work item was enqueued for %s` action of trigger `%s`",
396 session_name, get_action_name(action),
397 get_trigger_name(work_item->trigger));
398 lttng_action_increase_execution_failure_count(action);
399 ret = 0;
400 goto end;
401 }
402
f2b3ef9f
JG
403 session_lock_list();
404 session = session_find_by_name(session_name);
405 if (!session) {
34f87583 406 DBG("Failed to find session `%s` by name while executing `%s` action of trigger `%s`",
f2b3ef9f 407 session_name, get_action_name(action),
34f87583 408 get_trigger_name(work_item->trigger));
2d57482c 409 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
410 goto error_unlock_list;
411 }
412
72365501
JR
413 /*
414 * Check if the session id is the same as when the work item was
415 * enqueued
416 */
417 if (session->id != LTTNG_OPTIONAL_GET(item->context.session_id)) {
418 DBG("Session id for session `%s` (id: %" PRIu64
419 " is not the same that was sampled (id: %" PRIu64
420 " at the moment the work item was enqueued for %s` action of trigger `%s`",
421 session_name, session->id,
422 LTTNG_OPTIONAL_GET(item->context.session_id),
423 get_action_name(action),
424 get_trigger_name(work_item->trigger));
425 ret = 0;
426 goto error_unlock_list;
427 }
428
f2b3ef9f
JG
429 session_lock(session);
430 if (!is_trigger_allowed_for_session(work_item->trigger, session)) {
431 goto error_dispose_session;
432 }
433
434 cmd_ret = cmd_stop_trace(session);
435 switch (cmd_ret) {
436 case LTTNG_OK:
34f87583
JR
437 DBG("Successfully stopped session `%s` on behalf of trigger `%s`",
438 session_name, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
439 break;
440 case LTTNG_ERR_TRACE_ALREADY_STOPPED:
34f87583
JR
441 DBG("Attempted to stop session `%s` on behalf of trigger `%s` but it was already stopped",
442 session_name, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
443 break;
444 default:
34f87583
JR
445 WARN("Failed to stop session `%s` on behalf of trigger `%s`: %s",
446 session_name, get_trigger_name(work_item->trigger),
f2b3ef9f 447 lttng_strerror(-cmd_ret));
2d57482c 448 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
449 break;
450 }
451
452error_dispose_session:
453 session_unlock(session);
454 session_put(session);
455error_unlock_list:
456 session_unlock_list();
457end:
458 return ret;
459}
460
2d57482c
JR
461static int action_executor_rotate_session_handler(
462 struct action_executor *executor,
f2b3ef9f 463 const struct action_work_item *work_item,
72365501 464 struct action_work_subitem *item)
f2b3ef9f
JG
465{
466 int ret = 0;
467 const char *session_name;
468 enum lttng_action_status action_status;
469 struct ltt_session *session;
470 enum lttng_error_code cmd_ret;
72365501 471 struct lttng_action *action = item->action;
f2b3ef9f
JG
472
473 action_status = lttng_action_rotate_session_get_session_name(
474 action, &session_name);
475 if (action_status != LTTNG_ACTION_STATUS_OK) {
476 ERR("Failed to get session name from `%s` action",
477 get_action_name(action));
478 ret = -1;
479 goto end;
480 }
481
72365501
JR
482 /*
483 * Validate if, at the moment the action was queued, the target session
484 * existed. If not, skip the action altogether.
485 */
486 if (!item->context.session_id.is_set) {
487 DBG("Session `%s` was not present at the moment the work item was enqueued for %s` action of trigger `%s`",
488 session_name, get_action_name(action),
489 get_trigger_name(work_item->trigger));
490 lttng_action_increase_execution_failure_count(action);
491 ret = 0;
492 goto end;
493 }
494
f2b3ef9f
JG
495 session_lock_list();
496 session = session_find_by_name(session_name);
497 if (!session) {
34f87583 498 DBG("Failed to find session `%s` by name while executing `%s` action of trigger `%s`",
f2b3ef9f 499 session_name, get_action_name(action),
34f87583 500 get_trigger_name(work_item->trigger));
2d57482c 501 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
502 goto error_unlock_list;
503 }
504
72365501
JR
505 /*
506 * Check if the session id is the same as when the work item was
507 * enqueued.
508 */
509 if (session->id != LTTNG_OPTIONAL_GET(item->context.session_id)) {
510 DBG("Session id for session `%s` (id: %" PRIu64
511 " is not the same that was sampled (id: %" PRIu64
512 " at the moment the work item was enqueued for %s` action of trigger `%s`",
513 session_name, session->id,
514 LTTNG_OPTIONAL_GET(item->context.session_id),
515 get_action_name(action),
516 get_trigger_name(work_item->trigger));
517 ret = 0;
518 goto error_unlock_list;
519 }
520
f2b3ef9f
JG
521 session_lock(session);
522 if (!is_trigger_allowed_for_session(work_item->trigger, session)) {
523 goto error_dispose_session;
524 }
525
526 cmd_ret = cmd_rotate_session(session, NULL, false,
527 LTTNG_TRACE_CHUNK_COMMAND_TYPE_MOVE_TO_COMPLETED);
528 switch (cmd_ret) {
529 case LTTNG_OK:
34f87583
JR
530 DBG("Successfully started rotation of session `%s` on behalf of trigger `%s`",
531 session_name, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
532 break;
533 case LTTNG_ERR_ROTATION_PENDING:
34f87583
JR
534 DBG("Attempted to start a rotation of session `%s` on behalf of trigger `%s` but a rotation is already ongoing",
535 session_name, get_trigger_name(work_item->trigger));
2d57482c 536 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
537 break;
538 case LTTNG_ERR_ROTATION_MULTIPLE_AFTER_STOP:
539 case LTTNG_ERR_ROTATION_AFTER_STOP_CLEAR:
34f87583
JR
540 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",
541 session_name, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
542 break;
543 default:
34f87583
JR
544 WARN("Failed to start a rotation of session `%s` on behalf of trigger `%s`: %s",
545 session_name, get_trigger_name(work_item->trigger),
f2b3ef9f 546 lttng_strerror(-cmd_ret));
2d57482c 547 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
548 break;
549 }
550
551error_dispose_session:
552 session_unlock(session);
553 session_put(session);
554error_unlock_list:
555 session_unlock_list();
556end:
557 return ret;
558}
559
2d57482c
JR
560static int action_executor_snapshot_session_handler(
561 struct action_executor *executor,
f2b3ef9f 562 const struct action_work_item *work_item,
72365501 563 struct action_work_subitem *item)
f2b3ef9f
JG
564{
565 int ret = 0;
566 const char *session_name;
567 enum lttng_action_status action_status;
568 struct ltt_session *session;
569 const struct lttng_snapshot_output default_snapshot_output = {
570 .max_size = UINT64_MAX,
571 };
572 const struct lttng_snapshot_output *snapshot_output =
573 &default_snapshot_output;
574 enum lttng_error_code cmd_ret;
72365501
JR
575 struct lttng_action *action = item->action;
576
577 /*
578 * Validate if, at the moment the action was queued, the target session
579 * existed. If not, skip the action altogether.
580 */
581 if (!item->context.session_id.is_set) {
42ef691e
JG
582 DBG("Session was not present at the moment the work item was enqueued for %s` action of trigger `%s`",
583 get_action_name(action),
72365501
JR
584 get_trigger_name(work_item->trigger));
585 lttng_action_increase_execution_failure_count(action);
586 ret = 0;
587 goto end;
588 }
f2b3ef9f
JG
589
590 action_status = lttng_action_snapshot_session_get_session_name(
591 action, &session_name);
592 if (action_status != LTTNG_ACTION_STATUS_OK) {
593 ERR("Failed to get session name from `%s` action",
594 get_action_name(action));
595 ret = -1;
596 goto end;
597 }
598
599 action_status = lttng_action_snapshot_session_get_output(
600 action, &snapshot_output);
601 if (action_status != LTTNG_ACTION_STATUS_OK &&
602 action_status != LTTNG_ACTION_STATUS_UNSET) {
603 ERR("Failed to get output from `%s` action",
604 get_action_name(action));
605 ret = -1;
606 goto end;
607 }
608
609 session_lock_list();
610 session = session_find_by_name(session_name);
611 if (!session) {
ca46af4e 612 DBG("Failed to find session `%s` by name while executing `%s` action of trigger `%s`",
f2b3ef9f 613 session_name, get_action_name(action),
ca46af4e 614 get_trigger_name(work_item->trigger));
2d57482c 615 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
616 goto error_unlock_list;
617 }
618
72365501
JR
619 /*
620 * Check if the session id is the same as when the work item was
621 * enqueued.
622 */
623 if (session->id != LTTNG_OPTIONAL_GET(item->context.session_id)) {
624 DBG("Session id for session `%s` (id: %" PRIu64
625 " is not the same that was sampled (id: %" PRIu64
626 " at the moment the work item was enqueued for %s` action of trigger `%s`",
627 session_name, session->id,
628 LTTNG_OPTIONAL_GET(item->context.session_id),
629 get_action_name(action),
630 get_trigger_name(work_item->trigger));
631 ret = 0;
632 goto error_unlock_list;
633 }
f2b3ef9f
JG
634
635 session_lock(session);
636 if (!is_trigger_allowed_for_session(work_item->trigger, session)) {
637 goto error_dispose_session;
638 }
639
640 cmd_ret = cmd_snapshot_record(session, snapshot_output, 0);
641 switch (cmd_ret) {
642 case LTTNG_OK:
34f87583
JR
643 DBG("Successfully recorded snapshot of session `%s` on behalf of trigger `%s`",
644 session_name, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
645 break;
646 default:
34f87583
JR
647 WARN("Failed to record snapshot of session `%s` on behalf of trigger `%s`: %s",
648 session_name, get_trigger_name(work_item->trigger),
f2b3ef9f 649 lttng_strerror(-cmd_ret));
2d57482c 650 lttng_action_increase_execution_failure_count(action);
f2b3ef9f
JG
651 break;
652 }
653
654error_dispose_session:
655 session_unlock(session);
656 session_put(session);
657error_unlock_list:
658 session_unlock_list();
659end:
660 return ret;
661}
662
663static int action_executor_group_handler(struct action_executor *executor,
664 const struct action_work_item *work_item,
72365501 665 struct action_work_subitem *item)
f2b3ef9f 666{
72365501
JR
667 ERR("Execution of a group action by the action executor should never occur");
668 abort();
f2b3ef9f
JG
669}
670
671static int action_executor_generic_handler(struct action_executor *executor,
672 const struct action_work_item *work_item,
72365501 673 struct action_work_subitem *item)
f2b3ef9f 674{
2d57482c 675 int ret;
72365501 676 struct lttng_action *action = item->action;
0e43bcbf
JG
677 const enum lttng_action_type action_type = lttng_action_get_type(action);
678
679 assert(action_type != LTTNG_ACTION_TYPE_UNKNOWN);
680
2d57482c
JR
681 lttng_action_increase_execution_request_count(action);
682 if (!lttng_action_should_execute(action)) {
683 DBG("Policy prevented execution of action `%s` of trigger `%s` action work item %" PRIu64,
684 get_action_name(action),
685 get_trigger_name(work_item->trigger),
686 work_item->id);
687 ret = 0;
688 goto end;
689 }
690
691 lttng_action_increase_execution_count(action);
2516f2d8 692 DBG("Executing action `%s` of trigger `%s` action work item %" PRIu64,
f2b3ef9f 693 get_action_name(action),
34f87583 694 get_trigger_name(work_item->trigger),
f2b3ef9f 695 work_item->id);
72365501 696 ret = action_executors[action_type](executor, work_item, item);
2d57482c
JR
697end:
698 return ret;
f2b3ef9f
JG
699}
700
701static int action_work_item_execute(struct action_executor *executor,
702 struct action_work_item *work_item)
703{
704 int ret;
72365501 705 size_t count, i;
f2b3ef9f 706
34f87583
JR
707 DBG("Starting execution of action work item %" PRIu64 " of trigger `%s`",
708 work_item->id, get_trigger_name(work_item->trigger));
72365501
JR
709
710 count = lttng_dynamic_array_get_count(work_item->subitems);
711 for (i = 0; i < count; i++) {
712 struct action_work_subitem *item;
713
714 item = lttng_dynamic_array_get_element(work_item->subitems, i);
715 ret = action_executor_generic_handler(
716 executor, work_item, item);
717 if (ret) {
718 goto end;
719 }
720 }
721end:
34f87583
JR
722 DBG("Completed execution of action work item %" PRIu64 " of trigger `%s`",
723 work_item->id, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
724 return ret;
725}
726
727static void action_work_item_destroy(struct action_work_item *work_item)
728{
729 lttng_trigger_put(work_item->trigger);
730 lttng_evaluation_destroy(work_item->evaluation);
731 notification_client_list_put(work_item->client_list);
72365501 732 lttng_dynamic_array_reset(work_item->subitems);
f2b3ef9f
JG
733 free(work_item);
734}
735
736static void *action_executor_thread(void *_data)
737{
738 struct action_executor *executor = _data;
739
740 assert(executor);
741
412d7227
SM
742 health_register(the_health_sessiond,
743 HEALTH_SESSIOND_TYPE_ACTION_EXECUTOR);
f2b3ef9f
JG
744
745 rcu_register_thread();
746 rcu_thread_online();
747
748 DBG("Entering work execution loop");
749 pthread_mutex_lock(&executor->work.lock);
750 while (!executor->should_quit) {
751 int ret;
752 struct action_work_item *work_item;
753
754 health_code_update();
755 if (executor->work.pending_count == 0) {
756 health_poll_entry();
757 DBG("No work items enqueued, entering wait");
758 pthread_cond_wait(&executor->work.cond,
759 &executor->work.lock);
760 DBG("Woke-up from wait");
761 health_poll_exit();
762 continue;
763 }
764
0db0f8e0 765 /* Pop item from front of the list with work lock held. */
f2b3ef9f
JG
766 work_item = cds_list_first_entry(&executor->work.list,
767 struct action_work_item, list_node);
768 cds_list_del(&work_item->list_node);
769 executor->work.pending_count--;
770
771 /*
772 * Work can be performed without holding the work lock,
773 * allowing new items to be queued.
774 */
775 pthread_mutex_unlock(&executor->work.lock);
d2a28b27
JR
776
777 /* Execute item only if a trigger is registered. */
778 lttng_trigger_lock(work_item->trigger);
779 if (!lttng_trigger_is_registered(work_item->trigger)) {
780 const char *trigger_name = NULL;
781 uid_t trigger_owner_uid;
782 enum lttng_trigger_status trigger_status;
783
0efb2ad7 784 trigger_name = get_trigger_name(work_item->trigger);
d2a28b27
JR
785
786 trigger_status = lttng_trigger_get_owner_uid(
787 work_item->trigger, &trigger_owner_uid);
788 assert(trigger_status == LTTNG_TRIGGER_STATUS_OK);
789
790 DBG("Work item skipped since the associated trigger is no longer registered: work item id = %" PRIu64 ", trigger name = '%s', trigger owner uid = %d",
791 work_item->id, trigger_name,
792 (int) trigger_owner_uid);
793 ret = 0;
794 goto skip_execute;
795 }
796
f2b3ef9f 797 ret = action_work_item_execute(executor, work_item);
d2a28b27
JR
798
799 skip_execute:
800 lttng_trigger_unlock(work_item->trigger);
f2b3ef9f
JG
801 action_work_item_destroy(work_item);
802 if (ret) {
803 /* Fatal error. */
804 break;
805 }
806
807 health_code_update();
808 pthread_mutex_lock(&executor->work.lock);
809 }
810
f5f5c54d
JG
811 if (executor->should_quit) {
812 pthread_mutex_unlock(&executor->work.lock);
813 }
f2b3ef9f
JG
814 DBG("Left work execution loop");
815
816 health_code_update();
817
818 rcu_thread_offline();
819 rcu_unregister_thread();
412d7227 820 health_unregister(the_health_sessiond);
f2b3ef9f
JG
821
822 return NULL;
823}
824
825static bool shutdown_action_executor_thread(void *_data)
826{
827 struct action_executor *executor = _data;
828
8db3acaf 829 pthread_mutex_lock(&executor->work.lock);
f2b3ef9f
JG
830 executor->should_quit = true;
831 pthread_cond_signal(&executor->work.cond);
8db3acaf 832 pthread_mutex_unlock(&executor->work.lock);
f2b3ef9f
JG
833 return true;
834}
835
836static void clean_up_action_executor_thread(void *_data)
837{
838 struct action_executor *executor = _data;
839
840 assert(cds_list_empty(&executor->work.list));
841
842 pthread_mutex_destroy(&executor->work.lock);
843 pthread_cond_destroy(&executor->work.cond);
844 free(executor);
845}
846
847struct action_executor *action_executor_create(
848 struct notification_thread_handle *handle)
849{
850 struct action_executor *executor = zmalloc(sizeof(*executor));
851
852 if (!executor) {
853 goto end;
854 }
855
856 CDS_INIT_LIST_HEAD(&executor->work.list);
857 pthread_cond_init(&executor->work.cond, NULL);
858 pthread_mutex_init(&executor->work.lock, NULL);
859 executor->notification_thread_handle = handle;
860
861 executor->thread = lttng_thread_create(THREAD_NAME,
862 action_executor_thread, shutdown_action_executor_thread,
863 clean_up_action_executor_thread, executor);
864end:
865 return executor;
866}
867
868void action_executor_destroy(struct action_executor *executor)
869{
870 struct action_work_item *work_item, *tmp;
871
872 /* TODO Wait for work list to drain? */
873 lttng_thread_shutdown(executor->thread);
874 pthread_mutex_lock(&executor->work.lock);
875 if (executor->work.pending_count != 0) {
876 WARN("%" PRIu64
877 " trigger action%s still queued for execution and will be discarded",
878 executor->work.pending_count,
879 executor->work.pending_count == 1 ? " is" :
880 "s are");
881 }
882
883 cds_list_for_each_entry_safe (
884 work_item, tmp, &executor->work.list, list_node) {
885 WARN("Discarding action work item %" PRIu64
34f87583
JR
886 " associated to trigger `%s`",
887 work_item->id, get_trigger_name(work_item->trigger));
f2b3ef9f
JG
888 cds_list_del(&work_item->list_node);
889 action_work_item_destroy(work_item);
890 }
891 pthread_mutex_unlock(&executor->work.lock);
892 lttng_thread_put(executor->thread);
893}
894
895/* RCU read-lock must be held by the caller. */
72365501 896enum action_executor_status action_executor_enqueue_trigger(
f2b3ef9f
JG
897 struct action_executor *executor,
898 struct lttng_trigger *trigger,
899 struct lttng_evaluation *evaluation,
900 const struct lttng_credentials *object_creds,
901 struct notification_client_list *client_list)
902{
72365501 903 int ret;
f2b3ef9f
JG
904 enum action_executor_status executor_status = ACTION_EXECUTOR_STATUS_OK;
905 const uint64_t work_item_id = executor->next_work_item_id++;
906 struct action_work_item *work_item;
907 bool signal = false;
72365501
JR
908 struct lttng_dynamic_array *subitems = NULL;
909
910 assert(trigger);
911
912 /* Build the array of action work subitems for the passed trigger. */
913 subitems = zmalloc(sizeof(*subitems));
914 if (!subitems) {
915 PERROR("Failed to allocate action executor subitems array: trigger name = `%s`",
916 get_trigger_name(trigger));
917 executor_status = ACTION_EXECUTOR_STATUS_ERROR;
918 goto error_unlock;
919 }
920
921 lttng_dynamic_array_init(subitems, sizeof(struct action_work_subitem),
922 action_work_subitem_destructor);
923
924 ret = populate_subitem_array_from_trigger(trigger, subitems);
925 if (ret) {
926 ERR("Failed to populate work item sub items on behalf of trigger: trigger name = `%s`",
927 get_trigger_name(trigger));
928 executor_status = ACTION_EXECUTOR_STATUS_ERROR;
929 goto error_unlock;
930 }
f2b3ef9f
JG
931
932 pthread_mutex_lock(&executor->work.lock);
933 /* Check for queue overflow. */
934 if (executor->work.pending_count >= MAX_QUEUED_WORK_COUNT) {
935 /* Most likely spammy, remove if it is the case. */
72365501
JR
936 DBG("Refusing to enqueue action for trigger (overflow): trigger name = `%s`, work item id = %" PRIu64,
937 get_trigger_name(trigger), work_item_id);
f2b3ef9f
JG
938 executor_status = ACTION_EXECUTOR_STATUS_OVERFLOW;
939 goto error_unlock;
940 }
941
942 work_item = zmalloc(sizeof(*work_item));
943 if (!work_item) {
72365501 944 PERROR("Failed to allocate action executor work item: trigger name = '%s'",
34f87583 945 get_trigger_name(trigger));
f2b3ef9f
JG
946 executor_status = ACTION_EXECUTOR_STATUS_ERROR;
947 goto error_unlock;
948 }
949
950 lttng_trigger_get(trigger);
951 if (client_list) {
952 const bool reference_acquired =
953 notification_client_list_get(client_list);
954
955 assert(reference_acquired);
956 }
957
958 *work_item = (typeof(*work_item)){
959 .id = work_item_id,
72365501
JR
960 /* Ownership transferred to the work item. */
961 .subitems = subitems,
f2b3ef9f
JG
962 .trigger = trigger,
963 /* Ownership transferred to the work item. */
964 .evaluation = evaluation,
965 .object_creds = {
966 .is_set = !!object_creds,
967 .value = object_creds ? *object_creds :
968 (typeof(work_item->object_creds.value)) {},
969 },
970 .client_list = client_list,
971 .list_node = CDS_LIST_HEAD_INIT(work_item->list_node),
972 };
973
974 evaluation = NULL;
72365501 975 subitems = NULL;
f2b3ef9f
JG
976 cds_list_add_tail(&work_item->list_node, &executor->work.list);
977 executor->work.pending_count++;
72365501 978 DBG("Enqueued action for trigger: trigger name = `%s`, work item id = %" PRIu64,
34f87583 979 get_trigger_name(trigger), work_item_id);
f2b3ef9f
JG
980 signal = true;
981
982error_unlock:
f2b3ef9f
JG
983 if (signal) {
984 pthread_cond_signal(&executor->work.cond);
985 }
8db3acaf 986 pthread_mutex_unlock(&executor->work.lock);
f2b3ef9f
JG
987
988 lttng_evaluation_destroy(evaluation);
72365501
JR
989 if (subitems) {
990 lttng_dynamic_array_reset(subitems);
991 free(subitems);
992 }
f2b3ef9f
JG
993 return executor_status;
994}
72365501
JR
995
996static int add_action_to_subitem_array(struct lttng_action *action,
997 struct lttng_dynamic_array *subitems)
998{
999 int ret;
1000 enum lttng_action_type type = lttng_action_get_type(action);
1001 const char *session_name = NULL;
1002 enum lttng_action_status status;
1003 struct action_work_subitem subitem = {
1004 .action = NULL,
1005 .context = {
1006 .session_id = LTTNG_OPTIONAL_INIT_UNSET,
1007 },
1008 };
1009
1010 assert(action);
1011 assert(subitems);
1012
1013 if (type == LTTNG_ACTION_TYPE_GROUP) {
1014 unsigned int count, i;
1015
702f26c8 1016 status = lttng_action_list_get_count(action, &count);
72365501
JR
1017 assert(status == LTTNG_ACTION_STATUS_OK);
1018
1019 for (i = 0; i < count; i++) {
1020 struct lttng_action *inner_action = NULL;
1021
702f26c8 1022 inner_action = lttng_action_list_borrow_mutable_at_index(
72365501
JR
1023 action, i);
1024 assert(inner_action);
1025 ret = add_action_to_subitem_array(
1026 inner_action, subitems);
1027 if (ret) {
1028 goto end;
1029 }
1030 }
1031
1032 /*
1033 * Go directly to the end since there is no need to add the
1034 * group action by itself to the subitems array.
1035 */
1036 goto end;
1037 }
1038
1039 /* Gather execution context. */
1040 switch (type) {
1041 case LTTNG_ACTION_TYPE_NOTIFY:
1042 break;
1043 case LTTNG_ACTION_TYPE_START_SESSION:
1044 status = lttng_action_start_session_get_session_name(
1045 action, &session_name);
1046 assert(status == LTTNG_ACTION_STATUS_OK);
1047 break;
1048 case LTTNG_ACTION_TYPE_STOP_SESSION:
1049 status = lttng_action_stop_session_get_session_name(
1050 action, &session_name);
1051 assert(status == LTTNG_ACTION_STATUS_OK);
1052 break;
1053 case LTTNG_ACTION_TYPE_ROTATE_SESSION:
1054 status = lttng_action_rotate_session_get_session_name(
1055 action, &session_name);
1056 assert(status == LTTNG_ACTION_STATUS_OK);
1057 break;
1058 case LTTNG_ACTION_TYPE_SNAPSHOT_SESSION:
1059 status = lttng_action_snapshot_session_get_session_name(
1060 action, &session_name);
1061 assert(status == LTTNG_ACTION_STATUS_OK);
1062 break;
1063 case LTTNG_ACTION_TYPE_GROUP:
1064 case LTTNG_ACTION_TYPE_UNKNOWN:
1065 /* Fallthrough */
1066 default:
1067 abort();
1068 break;
1069 }
1070
1071 /*
1072 * Fetch the session execution context info as needed.
1073 * Note that we could decide to not add an action for which we know the
1074 * execution will not happen (i.e no session exists for that name). For
1075 * now we leave the decision to skip to the action executor for sake of
1076 * simplicity and consistency.
1077 */
1078 if (session_name != NULL) {
1079 struct ltt_session *session = NULL;
1080
1081 session_lock_list();
1082 session = session_find_by_name(session_name);
1083 if (session) {
1084 LTTNG_OPTIONAL_SET(&subitem.context.session_id,
1085 session->id);
1086 session_put(session);
1087 }
1088
1089 session_unlock_list();
1090 }
1091
1092 /* Get a reference to the action. */
1093 lttng_action_get(action);
1094 subitem.action = action;
1095
1096 ret = lttng_dynamic_array_add_element(subitems, &subitem);
1097 if (ret) {
1098 ERR("Failed to add work subitem to the subitem array");
1099 lttng_action_put(action);
1100 ret = -1;
1101 goto end;
1102 }
1103
1104end:
1105 return ret;
1106}
1107
1108static int populate_subitem_array_from_trigger(struct lttng_trigger *trigger,
1109 struct lttng_dynamic_array *subitems)
1110{
1111 struct lttng_action *action;
1112
1113 action = lttng_trigger_get_action(trigger);
1114 assert(action);
1115
1116 return add_action_to_subitem_array(action, subitems);
1117}
This page took 0.073856 seconds and 4 git commands to generate.